Paymill_Paymill - Version 3.9.0

Version Notes

* add webhook support for the following events (refund.succeeded, transaction.succeeded, chargeback.executed)

Download this release

Release Info

Developer PayIntelligent
Extension Paymill_Paymill
Version 3.9.0
Comparing to
See all releases


Code changes from version 3.8.1 to 3.9.0

Files changed (43) hide show
  1. app/code/community/Paymill/Paymill/Block/Adminhtml/Hook.php +43 -0
  2. app/code/community/Paymill/Paymill/Block/Adminhtml/Hook/Edit.php +38 -0
  3. app/code/community/Paymill/Paymill/Block/Adminhtml/Hook/Edit/Form.php +56 -0
  4. app/code/community/Paymill/Paymill/Block/Adminhtml/Hook/Grid.php +165 -0
  5. app/code/community/Paymill/Paymill/Helper/HookHelper.php +60 -0
  6. app/code/community/Paymill/Paymill/Helper/PaymentHelper.php +27 -0
  7. app/code/community/Paymill/Paymill/Helper/RefundHelper.php +21 -0
  8. app/code/community/Paymill/Paymill/Model/Method/MethodModelAbstract.php +1 -1
  9. app/code/community/Paymill/Paymill/Model/Observer.php +1 -19
  10. app/code/community/Paymill/Paymill/Model/Source/Hooks.php +44 -0
  11. app/code/community/Paymill/Paymill/controllers/Adminhtml/HookController.php +88 -0
  12. app/code/community/Paymill/Paymill/controllers/Adminhtml/LogController.php +1 -1
  13. app/code/community/Paymill/Paymill/controllers/HookController.php +125 -0
  14. app/code/community/Paymill/Paymill/etc/adminhtml.xml +5 -0
  15. app/code/community/Paymill/Paymill/etc/config.xml +1 -1
  16. app/code/community/Paymill/Paymill/etc/system.xml +3 -3
  17. app/design/adminhtml/base/default/layout/paymill.xml +9 -0
  18. app/locale/de_AT/Paymill_Paymill.csv +11 -1
  19. app/locale/de_CH/Paymill_Paymill.csv +11 -1
  20. app/locale/de_DE/Paymill_Paymill.csv +11 -1
  21. app/locale/en_AU/Paymill_Paymill.csv +11 -1
  22. app/locale/en_CA/Paymill_Paymill.csv +11 -1
  23. app/locale/en_GB/Paymill_Paymill.csv +11 -1
  24. app/locale/en_IE/Paymill_Paymill.csv +11 -1
  25. app/locale/en_NZ/Paymill_Paymill.csv +11 -1
  26. app/locale/en_US/Paymill_Paymill.csv +11 -1
  27. app/locale/en_ZA/Paymill_Paymill.csv +11 -1
  28. app/locale/es_AR/Paymill_Paymill.csv +11 -1
  29. app/locale/es_CL/Paymill_Paymill.csv +147 -0
  30. app/locale/es_CO/Paymill_Paymill.csv +147 -0
  31. app/locale/es_CR/Paymill_Paymill.csv +147 -0
  32. app/locale/es_ES/Paymill_Paymill.csv +11 -1
  33. app/locale/es_MX/Paymill_Paymill.csv +147 -0
  34. app/locale/es_PE/Paymill_Paymill.csv +147 -0
  35. app/locale/es_VE/Paymill_Paymill.csv +147 -0
  36. app/locale/fr_CA/Paymill_Paymill.csv +145 -0
  37. app/locale/fr_FR/Paymill_Paymill.csv +145 -0
  38. app/locale/it_CH/Paymill_Paymill.csv +147 -0
  39. app/locale/it_IT/Paymill_Paymill.csv +147 -0
  40. app/locale/pt_BR/Paymill_Paymill.csv +147 -0
  41. app/locale/pt_PT/Paymill_Paymill.csv +147 -0
  42. js/paymill/Paymill.js +19 -4
  43. package.xml +5 -5
app/code/community/Paymill/Paymill/Block/Adminhtml/Hook.php ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Magento
5
+ *
6
+ * NOTICE OF LICENSE
7
+ *
8
+ * This source file is subject to the Open Software License (OSL 3.0)
9
+ * that is bundled with this package in the file LICENSE.txt.
10
+ * It is also available through the world-wide-web at this URL:
11
+ * http://opensource.org/licenses/osl-3.0.php
12
+ * If you did not receive a copy of the license and are unable to
13
+ * obtain it through the world-wide-web, please send an email
14
+ * to license@magentocommerce.com so we can send you a copy immediately.
15
+ *
16
+ * @category Paymill
17
+ * @package Paymill_Paymill
18
+ * @copyright Copyright (c) 2013 PAYMILL GmbH (https://paymill.com/en-gb/)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
+ */
21
+ class Paymill_Paymill_Block_Adminhtml_Hook extends Mage_Adminhtml_Block_Widget_Grid_Container
22
+ {
23
+
24
+ /**
25
+ * Construct
26
+ */
27
+ public function __construct()
28
+ {
29
+ $this->_blockGroup = 'paymill';
30
+ $this->_controller = 'adminhtml_hook';
31
+ $this->_headerText = Mage::helper('paymill')->__('Webhooks');
32
+ parent::__construct();
33
+ }
34
+
35
+ /**
36
+ * @see Mage_Adminhtml_Block_Widget_Grid_Container::_prepareLayout()
37
+ */
38
+ protected function _prepareLayout()
39
+ {
40
+ return parent::_prepareLayout();
41
+ }
42
+
43
+ }
app/code/community/Paymill/Paymill/Block/Adminhtml/Hook/Edit.php ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Magento
5
+ *
6
+ * NOTICE OF LICENSE
7
+ *
8
+ * This source file is subject to the Open Software License (OSL 3.0)
9
+ * that is bundled with this package in the file LICENSE.txt.
10
+ * It is also available through the world-wide-web at this URL:
11
+ * http://opensource.org/licenses/osl-3.0.php
12
+ * If you did not receive a copy of the license and are unable to
13
+ * obtain it through the world-wide-web, please send an email
14
+ * to license@magentocommerce.com so we can send you a copy immediately.
15
+ *
16
+ * @category Paymill
17
+ * @package Paymill_Paymill
18
+ * @copyright Copyright (c) 2013 PAYMILL GmbH (https://paymill.com/en-gb/)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
+ */
21
+ class Paymill_Paymill_Block_Adminhtml_Hook_Edit extends Mage_Adminhtml_Block_Widget_Form_Container
22
+ {
23
+ public function __construct()
24
+ {
25
+ parent::__construct();
26
+
27
+ $this->_controller = 'adminhtml_hook';
28
+ $this->_blockGroup = 'paymill';
29
+ $this->_updateButton('save', 'label', Mage::helper('paymill')->__('save_hook'));
30
+ $this->_removeButton('delete');
31
+ $this->_removeButton('back');
32
+ }
33
+
34
+ public function getHeaderText()
35
+ {
36
+ return Mage::helper('paymill')->__('Hook');
37
+ }
38
+ }
app/code/community/Paymill/Paymill/Block/Adminhtml/Hook/Edit/Form.php ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Magento
5
+ *
6
+ * NOTICE OF LICENSE
7
+ *
8
+ * This source file is subject to the Open Software License (OSL 3.0)
9
+ * that is bundled with this package in the file LICENSE.txt.
10
+ * It is also available through the world-wide-web at this URL:
11
+ * http://opensource.org/licenses/osl-3.0.php
12
+ * If you did not receive a copy of the license and are unable to
13
+ * obtain it through the world-wide-web, please send an email
14
+ * to license@magentocommerce.com so we can send you a copy immediately.
15
+ *
16
+ * @category Paymill
17
+ * @package Paymill_Paymill
18
+ * @copyright Copyright (c) 2013 PAYMILL GmbH (https://paymill.com/en-gb/)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
+ */
21
+ class Paymill_Paymill_Block_Adminhtml_Hook_Edit_Form extends Mage_Adminhtml_Block_Widget_Form
22
+ {
23
+ protected function _prepareForm()
24
+ {
25
+ $form = new Varien_Data_Form();
26
+
27
+ $fieldset = $form->addFieldset('base_fieldset', array('legend' => Mage::helper('paymill')->__('hook_data')));
28
+
29
+ $fieldset->addField('hook_url', 'text', array(
30
+ 'name' => 'hook_url',
31
+ 'class' => 'required-entry',
32
+ 'label' => Mage::helper('paymill')->__('hook_url'),
33
+ 'title' => Mage::helper('paymill')->__('hook_url'),
34
+ 'required' => true,
35
+ 'value' => Mage::getUrl('paymill/hook/execute', array('_secure' => true))
36
+ ));
37
+
38
+ $fieldset->addField('hook_types', 'multiselect', array(
39
+ 'label' => Mage::helper('paymill')->__('hook_types'),
40
+ 'class' => 'required-entry',
41
+ 'required' => true,
42
+ 'name' => 'hook_types',
43
+ 'values' => Mage::getSingleton('paymill/source_hooks')->toOptionArray(),
44
+ 'value' => array('refund.succeeded', 'transaction.succeeded', 'chargeback.executed')
45
+ ));
46
+
47
+ $form->setAction($this->getUrl('*/*/save'));
48
+ $form->setMethod('post');
49
+ $form->setUseContainer(true);
50
+ $form->setId('edit_form');
51
+
52
+ $this->setForm($form);
53
+
54
+ return parent::_prepareForm();
55
+ }
56
+ }
app/code/community/Paymill/Paymill/Block/Adminhtml/Hook/Grid.php ADDED
@@ -0,0 +1,165 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Magento
5
+ *
6
+ * NOTICE OF LICENSE
7
+ *
8
+ * This source file is subject to the Open Software License (OSL 3.0)
9
+ * that is bundled with this package in the file LICENSE.txt.
10
+ * It is also available through the world-wide-web at this URL:
11
+ * http://opensource.org/licenses/osl-3.0.php
12
+ * If you did not receive a copy of the license and are unable to
13
+ * obtain it through the world-wide-web, please send an email
14
+ * to license@magentocommerce.com so we can send you a copy immediately.
15
+ *
16
+ * @category Paymill
17
+ * @package Paymill_Paymill
18
+ * @copyright Copyright (c) 2013 PAYMILL GmbH (https://paymill.com/en-gb/)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
+ */
21
+ class Paymill_Paymill_Block_Adminhtml_Hook_Grid extends Mage_Adminhtml_Block_Widget_Grid
22
+ {
23
+
24
+ /**
25
+ * Is filter allowed
26
+ *
27
+ * @var boolean
28
+ */
29
+ protected $_isFilterAllowed = true;
30
+
31
+ /**
32
+ * Is sortable
33
+ *
34
+ * @var boolean
35
+ */
36
+ protected $_isSortable = true;
37
+
38
+ /**
39
+ * Construct
40
+ */
41
+ public function __construct()
42
+ {
43
+ parent::__construct();
44
+ $this->setId('hook_grid');
45
+ $this->setDefaultSort('id');
46
+ $this->setDefaultDir('DESC');
47
+ $this->setSaveParametersInSession(true);
48
+ }
49
+
50
+ /**
51
+ * Is filter allowed
52
+ */
53
+ protected function _isFilterAllowed()
54
+ {
55
+ return $this->_isFilterAllowed;
56
+ }
57
+
58
+ /**
59
+ * Is sortable
60
+ */
61
+ protected function _isSortable()
62
+ {
63
+ return $this->_isSortable;
64
+ }
65
+
66
+ /**
67
+ * Retrive massaction block
68
+ *
69
+ * @return Mage_Adminhtml_Block_Widget_Grid_Massaction
70
+ */
71
+ public function getMassactionBlock()
72
+ {
73
+ return $this->getChild('massaction')->setErrorText(Mage::helper('paymill')->__('paymill_error_text_no_entry_selected'));
74
+ }
75
+
76
+ /**
77
+ * Prepare Collection
78
+ *
79
+ * @return Paymill_Paymill_Block_Adminhtml_Log_Grid
80
+ */
81
+ protected function _prepareCollection()
82
+ {
83
+ $this->setCollection($this->_getHookCollection());
84
+ return parent::_prepareCollection();
85
+ }
86
+
87
+ /**
88
+ * Retrieve config data
89
+ *
90
+ * @return stdClass
91
+ */
92
+ protected function _getHookCollection()
93
+ {
94
+ $data = Mage::helper("paymill/hookHelper")->getAllHooks();
95
+
96
+ if ($data) {
97
+ $collection = new Varien_Data_Collection();
98
+ foreach ($data as $value) {
99
+ $obj = new Varien_Object();
100
+ $obj->addData(array(
101
+ 'id' => $value['id'],
102
+ 'target' => !array_key_exists('url', $value) ? $value['email'] : $value['url'],
103
+ 'live' => $value['livemode'] ? 'live' : 'test',
104
+ 'event_types' => implode(', ', $value['event_types'])
105
+ ));
106
+
107
+ $collection->addItem($obj);
108
+ }
109
+
110
+ return $collection;
111
+ }
112
+
113
+ return null;
114
+ }
115
+
116
+ /**
117
+ * Prepare Columns
118
+ *
119
+ * @return Paymill_Paymill_Block_Adminhtml_Log_Grid
120
+ */
121
+ protected function _prepareColumns()
122
+ {
123
+ $this->addColumn('id', array(
124
+ 'header' => Mage::helper('paymill')->__('paymill_backend_hook_id'),
125
+ 'index' => 'id',
126
+ ));
127
+
128
+ $this->addColumn('event_types', array(
129
+ 'header' => Mage::helper('paymill')->__('paymill_backend_hook_event_types'),
130
+ 'index' => 'event_types',
131
+ ));
132
+
133
+ $this->addColumn('target', array(
134
+ 'header' => Mage::helper('paymill')->__('paymill_backend_hook_target'),
135
+ 'index' => 'target',
136
+ ));
137
+
138
+ $this->addColumn('live', array(
139
+ 'header' => Mage::helper('paymill')->__('paymill_backend_hook_live'),
140
+ 'index' => 'live',
141
+ ));
142
+
143
+ return parent::_prepareColumns();
144
+ }
145
+
146
+ /**
147
+ * Prepares Massaction for deletion of Logentries
148
+ *
149
+ * @return Paymill_Paymill_Block_Adminhtml_Log_Grid
150
+ */
151
+ protected function _prepareMassaction()
152
+ {
153
+ $this->setMassactionIdField('id');
154
+ $this->getMassactionBlock()->setFormFieldName('hook_id');
155
+
156
+ $this->getMassactionBlock()->addItem('delete', array(
157
+ 'label' => Mage::helper('paymill')->__('paymill_action_delete'),
158
+ 'url' => $this->getUrl('*/*/massDelete'),
159
+ 'confirm' => Mage::helper('paymill')->__('paymill_dialog_confirm'),
160
+ ));
161
+
162
+ return $this;
163
+ }
164
+
165
+ }
app/code/community/Paymill/Paymill/Helper/HookHelper.php ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Magento
5
+ *
6
+ * NOTICE OF LICENSE
7
+ *
8
+ * This source file is subject to the Open Software License (OSL 3.0)
9
+ * that is bundled with this package in the file LICENSE.txt.
10
+ * It is also available through the world-wide-web at this URL:
11
+ * http://opensource.org/licenses/osl-3.0.php
12
+ * If you did not receive a copy of the license and are unable to
13
+ * obtain it through the world-wide-web, please send an email
14
+ * to license@magentocommerce.com so we can send you a copy immediately.
15
+ *
16
+ * @category Paymill
17
+ * @package Paymill_Paymill
18
+ * @copyright Copyright (c) 2013 PAYMILL GmbH (https://paymill.com/en-gb/)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
+ */
21
+
22
+ class Paymill_Paymill_Helper_HookHelper extends Mage_Core_Helper_Abstract
23
+ {
24
+ /**
25
+ * Webhooks service
26
+ * @var \Services_Paymill_Webhooks
27
+ */
28
+ private $_hooks;
29
+
30
+ private function _initHooks()
31
+ {
32
+ $this->_hooks = new Services_Paymill_Webhooks(
33
+ trim(Mage::helper('paymill/optionHelper')->getPrivateKey()),
34
+ Mage::helper('paymill')->getApiUrl()
35
+ );
36
+
37
+ return $this;
38
+ }
39
+
40
+ public function createHook(array $params)
41
+ {
42
+ $this->_initHooks();
43
+
44
+ $result = $this->_hooks->create($params);
45
+ }
46
+
47
+ public function getAllHooks()
48
+ {
49
+ $this->_initHooks();
50
+
51
+ return $this->_hooks->get();
52
+ }
53
+
54
+ public function deleteHook($id)
55
+ {
56
+ $this->_initHooks();
57
+
58
+ $this->_hooks->delete($id);
59
+ }
60
+ }
app/code/community/Paymill/Paymill/Helper/PaymentHelper.php CHANGED
@@ -180,6 +180,33 @@ class Paymill_Paymill_Helper_PaymentHelper extends Mage_Core_Helper_Abstract
180
 
181
  return $orderId;
182
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
183
 
184
  /**
185
  * Returns an instance of the paymentProcessor class.
180
 
181
  return $orderId;
182
  }
183
+
184
+ public function invoice(Mage_Sales_Model_Order $order, $transactionId)
185
+ {
186
+ if ($order->canInvoice()) {
187
+ $invoice = $order->prepareInvoice();
188
+
189
+ $invoice->setRequestedCaptureCase(Mage_Sales_Model_Order_Invoice::CAPTURE_OFFLINE);
190
+ $invoice->register();
191
+
192
+ Mage::getModel('core/resource_transaction')
193
+ ->addObject($invoice)
194
+ ->addObject($invoice->getOrder())
195
+ ->save();
196
+
197
+ $invoice->setTransactionId($transactionId);
198
+
199
+ $invoice->pay();
200
+
201
+ $invoice->save();
202
+
203
+ $invoice->sendEmail(Mage::getStoreConfig('payment/paymill_creditcard/send_invoice_mail', Mage::app()->getStore()->getStoreId()), '');
204
+ } else {
205
+ foreach ($order->getInvoiceCollection() as $invoice) {
206
+ $invoice->pay()->save();
207
+ }
208
+ }
209
+ }
210
 
211
  /**
212
  * Returns an instance of the paymentProcessor class.
app/code/community/Paymill/Paymill/Helper/RefundHelper.php CHANGED
@@ -86,5 +86,26 @@ class Paymill_Paymill_Helper_RefundHelper extends Mage_Core_Helper_Abstract
86
  //Validate Refund and return feedback
87
  return $this->validateRefund($refund);
88
  }
 
 
 
 
89
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90
  }
86
  //Validate Refund and return feedback
87
  return $this->validateRefund($refund);
88
  }
89
+
90
+ public function creditmemo(Mage_Sales_Model_Order $order, $refundId)
91
+ {
92
+ if ($order->canCreditmemo()) {
93
 
94
+ $service = Mage::getModel('sales/service_order', $order);
95
+ $creditmemo = $service->prepareCreditmemo();
96
+
97
+ $creditmemo->setOfflineRequested(true);
98
+
99
+ $creditmemo->register();
100
+
101
+ Mage::getModel('core/resource_transaction')
102
+ ->addObject($creditmemo)
103
+ ->addObject($creditmemo->getOrder())
104
+ ->save();
105
+
106
+ $creditmemo->setTransactionId($refundId);
107
+
108
+ $creditmemo->save();
109
+ }
110
+ }
111
  }
app/code/community/Paymill/Paymill/Model/Method/MethodModelAbstract.php CHANGED
@@ -294,7 +294,7 @@ abstract class Paymill_Paymill_Model_Method_MethodModelAbstract extends Mage_Pay
294
  private function _getPrenotificationDate($order)
295
  {
296
  $dateTime = new DateTime($order->getCreatedAt());
297
- $dateTime->modify('+' . Mage::helper('paymill/optionHelper')->getPrenotificationDays() . ' day');
298
  $date = Mage::app()->getLocale()->storeDate(
299
  $order->getStore(),
300
  Varien_Date::toTimestamp($dateTime->format('Y-m-d H:i:s')),
294
  private function _getPrenotificationDate($order)
295
  {
296
  $dateTime = new DateTime($order->getCreatedAt());
297
+ $dateTime->modify('+' . (int) Mage::helper('paymill/optionHelper')->getPrenotificationDays() . ' day');
298
  $date = Mage::app()->getLocale()->storeDate(
299
  $order->getStore(),
300
  Varien_Date::toTimestamp($dateTime->format('Y-m-d H:i:s')),
app/code/community/Paymill/Paymill/Model/Observer.php CHANGED
@@ -36,25 +36,7 @@ class Paymill_Paymill_Model_Observer
36
  if (array_key_exists('paymillPreauthId', $data) && !empty($data['paymillPreauthId'])) {
37
  Mage::helper('paymill/loggingHelper')->log("Debug", "No Invoice generated, since the transaction is flagged as preauth");
38
  } else {
39
- if ($order->canInvoice()) {
40
- $invoice = $order->prepareInvoice();
41
-
42
- $invoice->register();
43
- Mage::getModel('core/resource_transaction')
44
- ->addObject($invoice)
45
- ->addObject($invoice->getOrder())
46
- ->save();
47
-
48
- $invoice->setTransactionId($data['paymillTransactionId']);
49
-
50
- $invoice->pay()->save();
51
-
52
- $invoice->sendEmail(Mage::getStoreConfig('payment/paymill_creditcard/send_invoice_mail', Mage::app()->getStore()->getStoreId()), '');
53
- } else {
54
- foreach ($order->getInvoiceCollection() as $invoice) {
55
- $invoice->pay()->save();
56
- }
57
- }
58
  }
59
  }
60
  }
36
  if (array_key_exists('paymillPreauthId', $data) && !empty($data['paymillPreauthId'])) {
37
  Mage::helper('paymill/loggingHelper')->log("Debug", "No Invoice generated, since the transaction is flagged as preauth");
38
  } else {
39
+ Mage::helper('paymill/paymentHelper')->invoice($order, $data['paymillTransactionId']);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
40
  }
41
  }
42
  }
app/code/community/Paymill/Paymill/Model/Source/Hooks.php ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Magento
5
+ *
6
+ * NOTICE OF LICENSE
7
+ *
8
+ * This source file is subject to the Open Software License (OSL 3.0)
9
+ * that is bundled with this package in the file LICENSE.txt.
10
+ * It is also available through the world-wide-web at this URL:
11
+ * http://opensource.org/licenses/osl-3.0.php
12
+ * If you did not receive a copy of the license and are unable to
13
+ * obtain it through the world-wide-web, please send an email
14
+ * to license@magentocommerce.com so we can send you a copy immediately.
15
+ *
16
+ * @category Paymill
17
+ * @package Paymill_Paymill
18
+ * @copyright Copyright (c) 2013 PAYMILL GmbH (https://paymill.com/en-gb/)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
+ */
21
+
22
+ class Paymill_Paymill_Model_Source_Hooks
23
+ {
24
+ /**
25
+ * Define which Creditcard Logos are shown for payment
26
+ *
27
+ * @return array
28
+ */
29
+ public function toOptionArray()
30
+ {
31
+ return array(
32
+ array(
33
+ 'label' => Mage::helper('paymill')->__('refund.succeeded'),
34
+ 'value' => 'refund.succeeded'
35
+ ), array(
36
+ 'label' => Mage::helper('paymill')->__('transaction.succeeded'),
37
+ 'value' => 'transaction.succeeded'
38
+ ), array(
39
+ 'label' => Mage::helper('paymill')->__('chargeback.executed'),
40
+ 'value' => 'chargeback.executed'
41
+ )
42
+ );
43
+ }
44
+ }
app/code/community/Paymill/Paymill/controllers/Adminhtml/HookController.php ADDED
@@ -0,0 +1,88 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Magento
5
+ *
6
+ * NOTICE OF LICENSE
7
+ *
8
+ * This source file is subject to the Open Software License (OSL 3.0)
9
+ * that is bundled with this package in the file LICENSE.txt.
10
+ * It is also available through the world-wide-web at this URL:
11
+ * http://opensource.org/licenses/osl-3.0.php
12
+ * If you did not receive a copy of the license and are unable to
13
+ * obtain it through the world-wide-web, please send an email
14
+ * to license@magentocommerce.com so we can send you a copy immediately.
15
+ *
16
+ * @category Paymill
17
+ * @package Paymill_Paymill
18
+ * @copyright Copyright (c) 2013 PAYMILL GmbH (https://paymill.com/en-gb/)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
+ */
21
+ class Paymill_Paymill_Adminhtml_HookController extends Mage_Adminhtml_Controller_Action
22
+ {
23
+
24
+ /**
25
+ * Initialize hooks view
26
+ *
27
+ * @return Paymill_Paymill_Adminhtml_HookController
28
+ */
29
+ protected function _initAction()
30
+ {
31
+ $this->loadLayout()->_setActiveMenu('hooks/paymill_hook');
32
+ return $this;
33
+ }
34
+
35
+ /**
36
+ * Action initially called
37
+ */
38
+ public function indexAction()
39
+ {
40
+ $this->_initAction()->renderLayout();
41
+ }
42
+
43
+ public function newAction()
44
+ {
45
+ $this->_initAction();
46
+
47
+ $this->_addContent($this->getLayout()->createBlock('paymill/adminhtml_hook_edit'));
48
+ $this->renderLayout();
49
+ }
50
+
51
+ public function saveAction()
52
+ {
53
+ $post = $this->getRequest()->getPost();
54
+ if (is_array($post) && array_key_exists('hook_url', $post) && array_key_exists('hook_types', $post)) {
55
+ Mage::helper("paymill/hookHelper")->createHook(array(
56
+ 'url' => $post['hook_url'],
57
+ 'event_types' => $post['hook_types']
58
+ ));
59
+ }
60
+
61
+ $this->_redirect('*/*/index');
62
+ }
63
+
64
+ /**
65
+ * Normal Magento delete mass action for selected entries
66
+ */
67
+ public function massDeleteAction()
68
+ {
69
+ $hookIds = $this->getRequest()->getParam('hook_id');
70
+
71
+ if (!is_array($hookIds)) {
72
+ Mage::getSingleton('adminhtml/session')->addError(Mage::helper('paymill')->__('paymill_error_text_no_entry_selected'));
73
+ } else {
74
+ try {
75
+ foreach ($hookIds as $hookId) {
76
+ Mage::helper("paymill/hookHelper")->deleteHook($hookId);
77
+ }
78
+
79
+ Mage::getSingleton('adminhtml/session')->addSuccess(Mage::helper('paymill')->__("paymill_hook_action_success"));
80
+ } catch (Exception $e) {
81
+ Mage::getSingleton('adminhtml/session')->addError($e->getMessage());
82
+ }
83
+ }
84
+
85
+ $this->_redirect('*/*/index');
86
+ }
87
+
88
+ }
app/code/community/Paymill/Paymill/controllers/Adminhtml/LogController.php CHANGED
@@ -55,7 +55,7 @@ class Paymill_Paymill_Adminhtml_LogController extends Mage_Adminhtml_Controller_
55
  $this->_addContent($this->getLayout()->createBlock('paymill/adminhtml_log_view'));
56
  $this->renderLayout();
57
  } else {
58
- Mage::getSingleton('adminhtml/session')->addError(Mage::helper('ratepay')->__('Item does not exist'));
59
  $this->_redirect('*/*/');
60
  }
61
  }
55
  $this->_addContent($this->getLayout()->createBlock('paymill/adminhtml_log_view'));
56
  $this->renderLayout();
57
  } else {
58
+ Mage::getSingleton('adminhtml/session')->addError(Mage::helper('paymill')->__('Item does not exist'));
59
  $this->_redirect('*/*/');
60
  }
61
  }
app/code/community/Paymill/Paymill/controllers/HookController.php ADDED
@@ -0,0 +1,125 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Magento
5
+ *
6
+ * NOTICE OF LICENSE
7
+ *
8
+ * This source file is subject to the Open Software License (OSL 3.0)
9
+ * that is bundled with this package in the file LICENSE.txt.
10
+ * It is also available through the world-wide-web at this URL:
11
+ * http://opensource.org/licenses/osl-3.0.php
12
+ * If you did not receive a copy of the license and are unable to
13
+ * obtain it through the world-wide-web, please send an email
14
+ * to license@magentocommerce.com so we can send you a copy immediately.
15
+ *
16
+ * @category Paymill
17
+ * @package Paymill_Paymill
18
+ * @copyright Copyright (c) 2013 PAYMILL GmbH (https://paymill.com/en-gb/)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
+ */
21
+ class Paymill_Paymill_HookController extends Mage_Core_Controller_Front_Action
22
+ {
23
+ private $_eventType = '';
24
+
25
+ public function executeAction()
26
+ {
27
+ $data = json_decode($this->getRequest()->getRawBody(), true);
28
+ if ($data && $this->_validateRequest($data)) {
29
+ $eventResource = $data['event']['event_resource'];
30
+ $this->_eventType = $data['event']['event_type'];
31
+ switch ($this->_eventType) {
32
+ case 'transaction.succeeded':
33
+ $this->_transactionSucceededAction($eventResource);
34
+ break;
35
+ case 'refund.succeeded':
36
+ $this->_refundSucceededAction($eventResource);
37
+ break;
38
+ case 'chargeback.executed':
39
+ $this->_chargebackExecutedAction($eventResource);
40
+ break;
41
+ }
42
+ }
43
+ }
44
+
45
+ private function _transactionSucceededAction(array $data)
46
+ {
47
+ $order = $this->getOrder($data);
48
+
49
+ if ((int) Mage::helper('paymill/paymentHelper')->getAmount($order) === (int) $data['amount']) {
50
+ Mage::helper('paymill/paymentHelper')->invoice($order, $data['id']);
51
+ }
52
+
53
+ $order->addStatusHistoryComment(
54
+ $this->_eventType . ' event executed. ' . $data['amount'] / 100 . ' ' . $data['currency'] . ' captured.'
55
+ )->save();
56
+ }
57
+
58
+ private function _refundSucceededAction(array $data)
59
+ {
60
+ $order = $this->getOrder($data['transaction']);
61
+
62
+ if ((int) Mage::helper('paymill/paymentHelper')->getAmount($order) === (int) $data['amount']) {
63
+ Mage::helper('paymill/refundHelper')->creditmemo($order, $data['id']);
64
+ }
65
+
66
+ $order->addStatusHistoryComment(
67
+ $this->_eventType . ' event executed. ' . $data['amount'] / 100 . ' ' . $data['transaction']['currency'] . ' refunded.'
68
+ )->save();
69
+ }
70
+
71
+ private function _chargebackExecutedAction(array $data)
72
+ {
73
+ $order = $this->getOrder($data['transaction']);
74
+ Mage::helper('paymill/refundHelper')->creditmemo($order, $data['id']);
75
+
76
+ $order->addStatusHistoryComment(
77
+ $this->_eventType . ' event executed. ' . $data['amount'] / 100 . ' ' . $data['transaction']['currency'] . ' chargeback received.'
78
+ )->save();
79
+ }
80
+
81
+ private function _validateRequest($data)
82
+ {
83
+ $valid = false;
84
+ if (!is_null($data) && isset($data['event']) && isset($data['event']['event_resource'])) {
85
+
86
+ $transactionId = $data['event']['event_resource']['id'];
87
+
88
+ if (substr($transactionId, 0, 4) !== 'tran') {
89
+ $transactionId = $data['event']['event_resource']['transaction']['id'];
90
+ }
91
+
92
+ $transactionObject = new Services_Paymill_Transactions(
93
+ trim(Mage::helper('paymill/optionHelper')->getPrivateKey()),
94
+ Mage::helper('paymill')->getApiUrl()
95
+ );
96
+
97
+ $transaction = $transactionObject->getOne($transactionId);
98
+
99
+ if (isset($transaction['id']) && ($transaction['id'] === $transactionId)) {
100
+ $valid = true;
101
+ }
102
+ }
103
+
104
+ return $valid;
105
+ }
106
+
107
+ private function getOrder(array $data)
108
+ {
109
+ $description = '';
110
+
111
+ if (array_key_exists('description', $data)) {
112
+ $description = $data['description'];
113
+ }
114
+
115
+ if (empty($description) && array_key_exists('transaction', $data)) {
116
+ $description = $data['transaction']['description'];
117
+ }
118
+
119
+ if (empty($description) && array_key_exists('preauthorization', $data)) {
120
+ $description = $data['preauthorization']['description'];
121
+ }
122
+
123
+ return Mage::getModel('sales/order')->loadByIncrementId(substr($description, 0, 9));
124
+ }
125
+ }
app/code/community/Paymill/Paymill/etc/adminhtml.xml CHANGED
@@ -10,6 +10,11 @@
10
  <sort_order>10</sort_order>
11
  <action>paymill/adminhtml_log</action>
12
  </paymill_log>
 
 
 
 
 
13
  </children>
14
  </logs>
15
  </menu>
10
  <sort_order>10</sort_order>
11
  <action>paymill/adminhtml_log</action>
12
  </paymill_log>
13
+ <paymill_hook translate="title" module="paymill">
14
+ <title>Webhooks</title>
15
+ <sort_order>10</sort_order>
16
+ <action>paymill/adminhtml_hook</action>
17
+ </paymill_hook>
18
  </children>
19
  </logs>
20
  </menu>
app/code/community/Paymill/Paymill/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <Paymill_Paymill>
5
- <version>3.8.1</version>
6
  </Paymill_Paymill>
7
  </modules>
8
 
2
  <config>
3
  <modules>
4
  <Paymill_Paymill>
5
+ <version>3.9.0</version>
6
  </Paymill_Paymill>
7
  </modules>
8
 
app/code/community/Paymill/Paymill/etc/system.xml CHANGED
@@ -11,7 +11,7 @@
11
  <sort_order>700</sort_order>
12
  <fields>
13
  <version>
14
- <label>v3.8.1</label>
15
  <sort_order>1</sort_order>
16
  <frontend_model>adminhtml/system_config_form_field_heading</frontend_model>
17
  <frontend_type>label</frontend_type>
@@ -105,7 +105,7 @@
105
  <sort_order>800</sort_order>
106
  <fields>
107
  <version>
108
- <label>v3.8.1</label>
109
  <sort_order>100</sort_order>
110
  <frontend_model>adminhtml/system_config_form_field_heading</frontend_model>
111
  <frontend_type>label</frontend_type>
@@ -226,7 +226,7 @@
226
  <sort_order>800</sort_order>
227
  <fields>
228
  <version>
229
- <label>v3.8.1</label>
230
  <sort_order>100</sort_order>
231
  <frontend_model>adminhtml/system_config_form_field_heading</frontend_model>
232
  <frontend_type>label</frontend_type>
11
  <sort_order>700</sort_order>
12
  <fields>
13
  <version>
14
+ <label>v3.9.0</label>
15
  <sort_order>1</sort_order>
16
  <frontend_model>adminhtml/system_config_form_field_heading</frontend_model>
17
  <frontend_type>label</frontend_type>
105
  <sort_order>800</sort_order>
106
  <fields>
107
  <version>
108
+ <label>v3.9.0</label>
109
  <sort_order>100</sort_order>
110
  <frontend_model>adminhtml/system_config_form_field_heading</frontend_model>
111
  <frontend_type>label</frontend_type>
226
  <sort_order>800</sort_order>
227
  <fields>
228
  <version>
229
+ <label>v3.9.0</label>
230
  <sort_order>100</sort_order>
231
  <frontend_model>adminhtml/system_config_form_field_heading</frontend_model>
232
  <frontend_type>label</frontend_type>
app/design/adminhtml/base/default/layout/paymill.xml CHANGED
@@ -9,4 +9,13 @@
9
  <update handle="formkey"/>
10
  <block type="paymill/adminhtml_log_grid" name="adminhtml_log.grid" output="toHtml" />
11
  </paymill_adminhtml_log_grid>
 
 
 
 
 
 
 
 
 
12
  </layout>
9
  <update handle="formkey"/>
10
  <block type="paymill/adminhtml_log_grid" name="adminhtml_log.grid" output="toHtml" />
11
  </paymill_adminhtml_log_grid>
12
+ <paymill_adminhtml_hook_index>
13
+ <reference name="content">
14
+ <block type="paymill/adminhtml_hook" name="adminhtml_hook.grid.container" />
15
+ </reference>
16
+ </paymill_adminhtml_hook_index>
17
+ <paymill_adminhtml_hook_grid>
18
+ <update handle="formkey"/>
19
+ <block type="paymill/adminhtml_hook_grid" name="adminhtml_hook.grid" output="toHtml" />
20
+ </paymill_adminhtml_hook_grid>
21
  </layout>
app/locale/de_AT/Paymill_Paymill.csv CHANGED
@@ -134,4 +134,14 @@ base_currency, "Basis Währung"
134
  order_currency, "Bestell Währung"
135
  paymill_token_creation_identifier_id, "Button selector zur Tokenerstellung"
136
  paymill_token_creation_identifier_id_tooltip, "Hier kann ein Prototype selector angegeben werden, dieser bekommt im Checkout ein Click Event zur Tokenerstellung zugewiesen."
137
- paymill_expert_settings, "Experten Einstellungen"
 
 
 
 
 
 
 
 
 
 
134
  order_currency, "Bestell Währung"
135
  paymill_token_creation_identifier_id, "Button selector zur Tokenerstellung"
136
  paymill_token_creation_identifier_id_tooltip, "Hier kann ein Prototype selector angegeben werden, dieser bekommt im Checkout ein Click Event zur Tokenerstellung zugewiesen."
137
+ paymill_expert_settings, "Experten Einstellungen"
138
+ paymill_backend_hook_id, "Hook ID"
139
+ paymill_backend_hook_event_types, "Event Typen"
140
+ paymill_backend_hook_target, "Ziel"
141
+ paymill_backend_hook_live, "Live oder Test"
142
+ hook_url, "Hook URL"
143
+ hook_types, "Event Typen"
144
+ hook_data, "Hook Daten"
145
+ save_hook, "Hook speichern"
146
+ paymill_hook_action_success, "Das löschen war erfolgreich"
147
+ paymill_error_text_no_entry_selected, "Kein Eintrag ausgewählt"
app/locale/de_CH/Paymill_Paymill.csv CHANGED
@@ -134,4 +134,14 @@ base_currency, "Basis Währung"
134
  order_currency, "Bestell Währung"
135
  paymill_token_creation_identifier_id, "Button selector zur Tokenerstellung"
136
  paymill_token_creation_identifier_id_tooltip, "Hier kann ein Prototype selector angegeben werden, dieser bekommt im Checkout ein Click Event zur Tokenerstellung zugewiesen."
137
- paymill_expert_settings, "Experten Einstellungen"
 
 
 
 
 
 
 
 
 
 
134
  order_currency, "Bestell Währung"
135
  paymill_token_creation_identifier_id, "Button selector zur Tokenerstellung"
136
  paymill_token_creation_identifier_id_tooltip, "Hier kann ein Prototype selector angegeben werden, dieser bekommt im Checkout ein Click Event zur Tokenerstellung zugewiesen."
137
+ paymill_expert_settings, "Experten Einstellungen"
138
+ paymill_backend_hook_id, "Hook ID"
139
+ paymill_backend_hook_event_types, "Event Typen"
140
+ paymill_backend_hook_target, "Ziel"
141
+ paymill_backend_hook_live, "Live oder Test"
142
+ hook_url, "Hook URL"
143
+ hook_types, "Event Typen"
144
+ hook_data, "Hook Daten"
145
+ save_hook, "Hook speichern"
146
+ paymill_hook_action_success, "Das löschen war erfolgreich"
147
+ paymill_error_text_no_entry_selected, "Kein Eintrag ausgewählt"
app/locale/de_DE/Paymill_Paymill.csv CHANGED
@@ -134,4 +134,14 @@ base_currency, "Basis Währung"
134
  order_currency, "Bestell Währung"
135
  paymill_token_creation_identifier_id, "Button selector zur Tokenerstellung"
136
  paymill_token_creation_identifier_id_tooltip, "Hier kann ein Prototype selector angegeben werden, dieser bekommt im Checkout ein Click Event zur Tokenerstellung zugewiesen."
137
- paymill_expert_settings, "Experten Einstellungen"
 
 
 
 
 
 
 
 
 
 
134
  order_currency, "Bestell Währung"
135
  paymill_token_creation_identifier_id, "Button selector zur Tokenerstellung"
136
  paymill_token_creation_identifier_id_tooltip, "Hier kann ein Prototype selector angegeben werden, dieser bekommt im Checkout ein Click Event zur Tokenerstellung zugewiesen."
137
+ paymill_expert_settings, "Experten Einstellungen"
138
+ paymill_backend_hook_id, "Hook ID"
139
+ paymill_backend_hook_event_types, "Event Typen"
140
+ paymill_backend_hook_target, "Ziel"
141
+ paymill_backend_hook_live, "Live oder Test"
142
+ hook_url, "Hook URL"
143
+ hook_types, "Event Typen"
144
+ hook_data, "Hook Daten"
145
+ save_hook, "Hook speichern"
146
+ paymill_hook_action_success, "Das löschen war erfolgreich"
147
+ paymill_error_text_no_entry_selected, "Kein Eintrag ausgewählt"
app/locale/en_AU/Paymill_Paymill.csv CHANGED
@@ -134,4 +134,14 @@ base_currency, "base currency"
134
  order_currency, "order currency"
135
  paymill_token_creation_identifier_id, "Button selector for token creation"
136
  paymill_token_creation_identifier_id_tooltip, "You can add a prototype selector to identify your checkout button, to this button a click event for the token creation is added."
137
- paymill_expert_settings, "Expert settings"
 
 
 
 
 
 
 
 
 
 
134
  order_currency, "order currency"
135
  paymill_token_creation_identifier_id, "Button selector for token creation"
136
  paymill_token_creation_identifier_id_tooltip, "You can add a prototype selector to identify your checkout button, to this button a click event for the token creation is added."
137
+ paymill_expert_settings, "Expert settings"
138
+ paymill_backend_hook_id, "Hook ID"
139
+ paymill_backend_hook_event_types, "Event types"
140
+ paymill_backend_hook_target, "Target"
141
+ paymill_backend_hook_live, "Live or Test"
142
+ hook_url, "Hook URL"
143
+ hook_types, "Event types"
144
+ hook_data, "Hook data"
145
+ save_hook, "save hook"
146
+ paymill_hook_action_success, "The delete was successful"
147
+ paymill_error_text_no_entry_selected, "No entry selected"
app/locale/en_CA/Paymill_Paymill.csv CHANGED
@@ -134,4 +134,14 @@ base_currency, "base currency"
134
  order_currency, "order currency"
135
  paymill_token_creation_identifier_id, "Button selector for token creation"
136
  paymill_token_creation_identifier_id_tooltip, "You can add a prototype selector to identify your checkout button, to this button a click event for the token creation is added."
137
- paymill_expert_settings, "Expert settings"
 
 
 
 
 
 
 
 
 
 
134
  order_currency, "order currency"
135
  paymill_token_creation_identifier_id, "Button selector for token creation"
136
  paymill_token_creation_identifier_id_tooltip, "You can add a prototype selector to identify your checkout button, to this button a click event for the token creation is added."
137
+ paymill_expert_settings, "Expert settings"
138
+ paymill_backend_hook_id, "Hook ID"
139
+ paymill_backend_hook_event_types, "Event types"
140
+ paymill_backend_hook_target, "Target"
141
+ paymill_backend_hook_live, "Live or Test"
142
+ hook_url, "Hook URL"
143
+ hook_types, "Event types"
144
+ hook_data, "Hook data"
145
+ save_hook, "save hook"
146
+ paymill_hook_action_success, "The delete was successful"
147
+ paymill_error_text_no_entry_selected, "No entry selected"
app/locale/en_GB/Paymill_Paymill.csv CHANGED
@@ -134,4 +134,14 @@ base_currency, "base currency"
134
  order_currency, "order currency"
135
  paymill_token_creation_identifier_id, "Button selector for token creation"
136
  paymill_token_creation_identifier_id_tooltip, "You can add a prototype selector to identify your checkout button, to this button a click event for the token creation is added."
137
- paymill_expert_settings, "Expert settings"
 
 
 
 
 
 
 
 
 
 
134
  order_currency, "order currency"
135
  paymill_token_creation_identifier_id, "Button selector for token creation"
136
  paymill_token_creation_identifier_id_tooltip, "You can add a prototype selector to identify your checkout button, to this button a click event for the token creation is added."
137
+ paymill_expert_settings, "Expert settings"
138
+ paymill_backend_hook_id, "Hook ID"
139
+ paymill_backend_hook_event_types, "Event types"
140
+ paymill_backend_hook_target, "Target"
141
+ paymill_backend_hook_live, "Live or Test"
142
+ hook_url, "Hook URL"
143
+ hook_types, "Event types"
144
+ hook_data, "Hook data"
145
+ save_hook, "save hook"
146
+ paymill_hook_action_success, "The delete was successful"
147
+ paymill_error_text_no_entry_selected, "No entry selected"
app/locale/en_IE/Paymill_Paymill.csv CHANGED
@@ -134,4 +134,14 @@ base_currency, "base currency"
134
  order_currency, "order currency"
135
  paymill_token_creation_identifier_id, "Button selector for token creation"
136
  paymill_token_creation_identifier_id_tooltip, "You can add a prototype selector to identify your checkout button, to this button a click event for the token creation is added."
137
- paymill_expert_settings, "Expert settings"
 
 
 
 
 
 
 
 
 
 
134
  order_currency, "order currency"
135
  paymill_token_creation_identifier_id, "Button selector for token creation"
136
  paymill_token_creation_identifier_id_tooltip, "You can add a prototype selector to identify your checkout button, to this button a click event for the token creation is added."
137
+ paymill_expert_settings, "Expert settings"
138
+ paymill_backend_hook_id, "Hook ID"
139
+ paymill_backend_hook_event_types, "Event types"
140
+ paymill_backend_hook_target, "Target"
141
+ paymill_backend_hook_live, "Live or Test"
142
+ hook_url, "Hook URL"
143
+ hook_types, "Event types"
144
+ hook_data, "Hook data"
145
+ save_hook, "save hook"
146
+ paymill_hook_action_success, "The delete was successful"
147
+ paymill_error_text_no_entry_selected, "No entry selected"
app/locale/en_NZ/Paymill_Paymill.csv CHANGED
@@ -134,4 +134,14 @@ base_currency, "base currency"
134
  order_currency, "order currency"
135
  paymill_token_creation_identifier_id, "Button selector for token creation"
136
  paymill_token_creation_identifier_id_tooltip, "You can add a prototype selector to identify your checkout button, to this button a click event for the token creation is added."
137
- paymill_expert_settings, "Expert settings"
 
 
 
 
 
 
 
 
 
 
134
  order_currency, "order currency"
135
  paymill_token_creation_identifier_id, "Button selector for token creation"
136
  paymill_token_creation_identifier_id_tooltip, "You can add a prototype selector to identify your checkout button, to this button a click event for the token creation is added."
137
+ paymill_expert_settings, "Expert settings"
138
+ paymill_backend_hook_id, "Hook ID"
139
+ paymill_backend_hook_event_types, "Event types"
140
+ paymill_backend_hook_target, "Target"
141
+ paymill_backend_hook_live, "Live or Test"
142
+ hook_url, "Hook URL"
143
+ hook_types, "Event types"
144
+ hook_data, "Hook data"
145
+ save_hook, "save hook"
146
+ paymill_hook_action_success, "The delete was successful"
147
+ paymill_error_text_no_entry_selected, "No entry selected"
app/locale/en_US/Paymill_Paymill.csv CHANGED
@@ -134,4 +134,14 @@ base_currency, "base currency"
134
  order_currency, "order currency"
135
  paymill_token_creation_identifier_id, "Button selector for token creation"
136
  paymill_token_creation_identifier_id_tooltip, "You can add a prototype selector to identify your checkout button, to this button a click event for the token creation is added."
137
- paymill_expert_settings, "Expert settings"
 
 
 
 
 
 
 
 
 
 
134
  order_currency, "order currency"
135
  paymill_token_creation_identifier_id, "Button selector for token creation"
136
  paymill_token_creation_identifier_id_tooltip, "You can add a prototype selector to identify your checkout button, to this button a click event for the token creation is added."
137
+ paymill_expert_settings, "Expert settings"
138
+ paymill_backend_hook_id, "Hook ID"
139
+ paymill_backend_hook_event_types, "Event types"
140
+ paymill_backend_hook_target, "Target"
141
+ paymill_backend_hook_live, "Live or Test"
142
+ hook_url, "Hook URL"
143
+ hook_types, "Event types"
144
+ hook_data, "Hook data"
145
+ save_hook, "save hook"
146
+ paymill_hook_action_success, "The delete was successful"
147
+ paymill_error_text_no_entry_selected, "No entry selected"
app/locale/en_ZA/Paymill_Paymill.csv CHANGED
@@ -134,4 +134,14 @@ base_currency, "base currency"
134
  order_currency, "order currency"
135
  paymill_token_creation_identifier_id, "Button selector for token creation"
136
  paymill_token_creation_identifier_id_tooltip, "You can add a prototype selector to identify your checkout button, to this button a click event for the token creation is added."
137
- paymill_expert_settings, "Expert settings"
 
 
 
 
 
 
 
 
 
 
134
  order_currency, "order currency"
135
  paymill_token_creation_identifier_id, "Button selector for token creation"
136
  paymill_token_creation_identifier_id_tooltip, "You can add a prototype selector to identify your checkout button, to this button a click event for the token creation is added."
137
+ paymill_expert_settings, "Expert settings"
138
+ paymill_backend_hook_id, "Hook ID"
139
+ paymill_backend_hook_event_types, "Event types"
140
+ paymill_backend_hook_target, "Target"
141
+ paymill_backend_hook_live, "Live or Test"
142
+ hook_url, "Hook URL"
143
+ hook_types, "Event types"
144
+ hook_data, "Hook data"
145
+ save_hook, "save hook"
146
+ paymill_hook_action_success, "The delete was successful"
147
+ paymill_error_text_no_entry_selected, "No entry selected"
app/locale/es_AR/Paymill_Paymill.csv CHANGED
@@ -134,4 +134,14 @@ base_currency, "base currency"
134
  order_currency, "order currency"
135
  paymill_token_creation_identifier_id, "Button selector for token creation"
136
  paymill_token_creation_identifier_id_tooltip, "You can add a prototype selector to identify your checkout button, to this button a click event for the token creation is added."#
137
- paymill_expert_settings, "Expert settings"
 
 
 
 
 
 
 
 
 
 
134
  order_currency, "order currency"
135
  paymill_token_creation_identifier_id, "Button selector for token creation"
136
  paymill_token_creation_identifier_id_tooltip, "You can add a prototype selector to identify your checkout button, to this button a click event for the token creation is added."#
137
+ paymill_expert_settings, "Expert settings"
138
+ paymill_backend_hook_id, "Hook ID"
139
+ paymill_backend_hook_event_types, "Event types"
140
+ paymill_backend_hook_target, "Target"
141
+ paymill_backend_hook_live, "Live or Test"
142
+ hook_url, "Hook URL"
143
+ hook_types, "Event types"
144
+ hook_data, "Hook data"
145
+ save_hook, "save hook"
146
+ paymill_hook_action_success, "The delete was successful"
147
+ paymill_error_text_no_entry_selected, "No entry selected"
app/locale/es_CL/Paymill_Paymill.csv ADDED
@@ -0,0 +1,147 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ paymill_Amount,Cantidad
2
+ paymill_accepted_currency,"Monedas aceptadas"
3
+ paymill_opt_Enabled,Activar
4
+ paymill_opt_Countries,"Países aceptados"
5
+ paymill_Activate_Debugging,"Activar debugging"
6
+ paymill_fc_active,"Activar la compra rápida"
7
+ paymill_Activate_Logging,"Activar el registro"
8
+ paymill_preAuth_active,"Autorizar previamente las transacciones durante el proceso de compra. Los cargos se llevarán a cabo una vez generadas las facturas."
9
+ paymill_private_key_comment,"Puedes encontrar tu clave privada en el Cockpit de PAYMILL"
10
+ paymill_Private_Key,"Clave privada"
11
+ paymill_public_key_comment,"Puede encontrar su clave pública en el Cockpit de PAYMILL"
12
+ paymill_Public_Key,"Clave pública"
13
+ paymill_Show_Label,"Mostrar el logo de PAYMILL durante el proceso de compra."
14
+ paymill_opt_Sort,Secuencia
15
+ paymill_token_tolerace_tooltip,"Cantidad adicional que se cargará cuando se genere el Token de PAYMILL. Esto es para evitar desviaciones en el 3D Secure"
16
+ paymill_token_tolerace_comment,"Cantidad adicional que se cargará cuando se genere el Token de PAYMILL. Esto es para evitar desviaciones en el 3D Secure"
17
+ paymill_token_tolerace,"Tolerancia del Token"
18
+ paymill_Currency,Moneda
19
+ paymill_error_text_invalid_cvc,"CVC inválido"
20
+ PAYMILL_field_invalid_card_cvc,"CVC inválido"
21
+ paymill_error_text_invalid_holder_cc,"Por favor, introduce el nombre del titular de la tarjeta"
22
+ PAYMILL_field_invalid_card_holder,"Por favor, introduce el nombre del titular de la tarjeta"
23
+ paymill_error_text_invalid_number_cc,"Por favor, introduce un número válido de tarjeta de crédito."
24
+ PAYMILL_field_invalid_card_number,"Por favor, introduce un número válido de tarjeta de crédito."
25
+ paymill_error_text_invalid_expdate,"Fecha de expiración inválida"
26
+ PAYMILL_field_invalid_bank_code,"Por favor, introduce un código bancario válido de domiciliación bancaria."
27
+ paymill_error_text_invalid_bankcode,"Por favor, introduce un código bancario válido de domiciliación bancaria."
28
+ paymill_error_text_invalid_holder_elv,"Por favor, introduce el nombre del titular de la cuenta para la domiciliación bancaria."
29
+ PAYMILL_field_invalid_account_holder,"Por favor, introduce el nombre del titular de la cuenta para la domiciliación bancaria."
30
+ paymill_error_text_invalid_number_elv,"Por favor, introduce un número válido de la cuenta para la domiciliación bancaria."
31
+ PAYMILL_field_invalid_account_number,"Por favor, introduce un número válido de la cuenta para la domiciliación bancaria."
32
+ paymill_error_text_invalid_payment,"El método de pago no se ha podido identificar. Por favor, contacta con nuestro equipo de soporte."
33
+ paymill_dialog_confirm,"¿Estás seguro?"
34
+ paymill_slogan,"Pagos seguros con tarjeta de crédito gestionados por"
35
+ paymill_slogan_elv,"Domiciliación bancaria gestionada por"
36
+ paymill_credit_card,"Tarjeta de crédito"
37
+ paymill_creditcard,"Tarjeta de crédito"
38
+ paymill_3ds_cancel,Cancelar
39
+ paymill_Cvc,"Código CVC"
40
+ paymill_Holder,"Titular de la tarjeta"
41
+ paymill_Number,"Número de tarjeta"
42
+ paymill_Date,"Válida hasta"
43
+ paymill_cvc_tooltip,"El código CVV o CVC es una medida de seguridad de las tarjetas de crédito. Normalmente es un número de tres a cuatro dígitos de longitud. En las tarjetas de crédito VISA, se le llama código CVV. Se puede encontrar este mismo código en las tarjetas de crédito MasterCard -donde se le llama CVC. CVC es la abreviatura de ""código de validez de la tarjeta"". El código CVV, por otro lado, es la abreviatura de ""código de valor de verificación de la tarjeta"". Parecidas a MasterCard y Visa, otras tarjetas como Diners Club, Discover y JCB contienen un número de tres dígitos que se encuentra normalmente en el reverso de la tarjeta de crédito. Las tarjetas MAESTRO pueden tener o no el código CVV de tres dígitos. En caso de usar una tarjeta MAESTRO sin CVV, puede introducir 000 en el formulario en su lugar. American Express usa el CID (número de identificación de la tarjeta). El CID es un número de cuatro dígitos que normalmente se encuentra en el anverso de la tarjeta, arriba a la derecha del número de la tarjeta de crédito."
44
+ paymill_directdebit,"Domiciliación bancaria"
45
+ paymill_direct_debit,"Domiciliación bancaria"
46
+ paymill_bankcode,"Código bancario"
47
+ paymill_account,"Número de cuenta"
48
+ paymill_backend_log_entry_date,"Fecha de registro"
49
+ paymill_backend_log_dev_info,"Desarrollador de informes"
50
+ paymill_backend_log_id,Identificación
51
+ paymill_backend_log_merchant_info,"Información del comerciante"
52
+ paymill_log,"Registro de PAYMILL"
53
+ paymill_backend_log_version,"Versión del módulo"
54
+ paymill_credit_card_label,"Pagos con tarjeta de crédito PAYMILL"
55
+ paymill_direct_debit_label,"Pagos con dedomiciliación bancaria PAYMILL"
56
+ paymill_activate_sepa,"Mostrar solicitud SEPA"
57
+ paymill_Basic_Setting,"Configuración Básica Paymill"
58
+ paymill_iban,IBAN
59
+ paymill_bic,BIC
60
+ paymill_public_key_tooltip,"Por favor, introduzca una clave pública válida"
61
+ paymill_private_key_tooltip,"Por favor, introduzca una clave privada válida"
62
+ paymill_error_text_invalid_token,"El siguiente error ha ocurrido:"
63
+ paymill_error_text_no_entry_selected,"Por favor, seleccione una entrada"
64
+ paymill_action_delete,"Borrar entrada"
65
+ paymill_backend_log_dev_info_additional,"Información Adicional del Desarrollador"
66
+ paymill_checkout_generating_invoice,"Se está generando la factura"
67
+ paymill_log_action_success,"Acción correcta"
68
+ paymill_checkout_desc,"Texto descriptivo"
69
+ "General undefined response.","General undefined response."
70
+ "Still waiting on something.","Still waiting on something."
71
+ "General success response.","General success response."
72
+ "General problem with data.","General problem with data."
73
+ "General problem with payment data.","General problem with payment data."
74
+ "Problem with credit card data.","Problem with credit card data."
75
+ "Problem with cvv.","Problem with cvv."
76
+ "Card expired or not yet valid.","Card expired or not yet valid."
77
+ "Limit exceeded.","Limit exceeded."
78
+ "Card invalid.","Card invalid."
79
+ "Expiry date not valid.","Expiry date not valid."
80
+ "Credit card brand required.","Credit card brand required."
81
+ "Problem with bank account data.","Problem with bank account data."
82
+ "Bank account data combination mismatch.","Bank account data combination mismatch."
83
+ "User authentication failed.","User authentication failed."
84
+ "Problem with 3d secure data.","Problem with 3d secure data."
85
+ "Currency / amount mismatch","Currency / amount mismatch"
86
+ "Problem with input data.","Problem with input data."
87
+ "Amount too low or zero.","Amount too low or zero."
88
+ "Usage field too long.","Usage field too long."
89
+ "Currency not allowed.","Currency not allowed."
90
+ "General problem with backend.","General problem with backend."
91
+ "Country blacklisted.","Country blacklisted."
92
+ "Technical error with credit card.","Technical error with credit card."
93
+ "Error limit exceeded.","Error limit exceeded."
94
+ "Card declined by authorization system.","Card declined by authorization system."
95
+ "Manipulation or stolen card.","Manipulation or stolen card."
96
+ "Card restricted.","Card restricted"
97
+ "Invalid card configuration data.","Invalid card configuration data."
98
+ "Technical error with bank account.","Technical error with bank account."
99
+ "Card blacklisted.","Card blacklisted."
100
+ "Technical error with 3D secure.","Technical error with 3D secure."
101
+ "Decline because of risk issues.","Decline because of risk issues."
102
+ "General timeout.","General timeout."
103
+ "Timeout on side of the acquirer.","Timeout on side of the acquirer."
104
+ "Risk management transaction timeout.","Risk management transaction timeout"
105
+ "Duplicate transaction.","Duplicate transaction."
106
+ PAYMILL_internal_server_error,"The communication with the psp failed."
107
+ PAYMILL_invalid_public_key,"The public key is invalid."
108
+ PAYMILL_invalid_payment_data,"Paymentmethod, card type currency or country not authorized"
109
+ PAYMILL_unknown_error,"Unknown Error"
110
+ PAYMILL_3ds_cancelled,"3-D Secure process has been canceled by the user"
111
+ PAYMILL_field_invalid_card_exp_year,"Invalid Expiry Year"
112
+ PAYMILL_field_invalid_card_exp_month,"Invalid Expiry Month"
113
+ PAYMILL_field_invalid_card_exp,"Credit Card not valid"
114
+ PAYMILL_field_invalid_amount_int,"Missing amount for 3-D Secure"
115
+ PAYMILL_field_field_invalid_amount,"Missing amount for 3-D Secure"
116
+ PAYMILL_field_field_field_invalid_currency,"Invalid currency for 3-D Secure"
117
+ PAYMILL_field_invalid_iban,"Invalid IBAN"
118
+ PAYMILL_field_invalid_bic,"Invalid BIC"
119
+ PAYMILL_field_invalid_country,"Invalid country for sepa transactions"
120
+ PAYMILL_field_invalid_bank_data,"Invalid bank data"
121
+ paymill_send_invoice_mail,"Enviar factura por correo"
122
+ paymill_error_text_invalid_iban_elv,"Por favor, introduzca un IBAN válido"
123
+ paymill_error_text_invalid_bic,"Por favor, introduzca un BIC válido."
124
+ paymill_accepted_creditcards,"Tipo de tarjetas de crédito aceptadas"
125
+ paymill_feedback_error_directdebit_number_iban,"Por favor, indique un código bancario o identificación válida"
126
+ paymill_feedback_error_directdebit_bankcode_bic,"Por favor, indique un número de cuenta o IBAN válido"
127
+ paymill_prenotification,"Días hasta el cargo en cuenta."
128
+ paymill_prenotification_text,"El cargo en cuenta automático se realiza en la fecha siguiente:"
129
+ paymill_show_creditcards,"Show creditcard logos"
130
+ paymill_select_creditcards,"Select creditcard logos"
131
+ paymill_base_or_order_currency, "Shop base currency"
132
+ paymill_paymill_base_or_order_currency_tooltip, "The currency which should be used to create and manage the order, shop base or order currency"
133
+ base_currency, "base currency"
134
+ order_currency, "order currency"
135
+ paymill_token_creation_identifier_id, "Button selector for token creation"
136
+ paymill_token_creation_identifier_id_tooltip, "You can add a prototype selector to identify your checkout button, to this button a click event for the token creation is added."
137
+ paymill_expert_settings, "Expert settings"
138
+ paymill_backend_hook_id, "Hook ID"
139
+ paymill_backend_hook_event_types, "Event types"
140
+ paymill_backend_hook_target, "Target"
141
+ paymill_backend_hook_live, "Live or Test"
142
+ hook_url, "Hook URL"
143
+ hook_types, "Event types"
144
+ hook_data, "Hook data"
145
+ save_hook, "save hook"
146
+ paymill_hook_action_success, "The delete was successful"
147
+ paymill_error_text_no_entry_selected, "No entry selected"
app/locale/es_CO/Paymill_Paymill.csv ADDED
@@ -0,0 +1,147 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ paymill_Amount,Cantidad
2
+ paymill_accepted_currency,"Monedas aceptadas"
3
+ paymill_opt_Enabled,Activar
4
+ paymill_opt_Countries,"Países aceptados"
5
+ paymill_Activate_Debugging,"Activar debugging"
6
+ paymill_fc_active,"Activar la compra rápida"
7
+ paymill_Activate_Logging,"Activar el registro"
8
+ paymill_preAuth_active,"Autorizar previamente las transacciones durante el proceso de compra. Los cargos se llevarán a cabo una vez generadas las facturas."
9
+ paymill_private_key_comment,"Puedes encontrar tu clave privada en el Cockpit de PAYMILL"
10
+ paymill_Private_Key,"Clave privada"
11
+ paymill_public_key_comment,"Puede encontrar su clave pública en el Cockpit de PAYMILL"
12
+ paymill_Public_Key,"Clave pública"
13
+ paymill_Show_Label,"Mostrar el logo de PAYMILL durante el proceso de compra."
14
+ paymill_opt_Sort,Secuencia
15
+ paymill_token_tolerace_tooltip,"Cantidad adicional que se cargará cuando se genere el Token de PAYMILL. Esto es para evitar desviaciones en el 3D Secure"
16
+ paymill_token_tolerace_comment,"Cantidad adicional que se cargará cuando se genere el Token de PAYMILL. Esto es para evitar desviaciones en el 3D Secure"
17
+ paymill_token_tolerace,"Tolerancia del Token"
18
+ paymill_Currency,Moneda
19
+ paymill_error_text_invalid_cvc,"CVC inválido"
20
+ PAYMILL_field_invalid_card_cvc,"CVC inválido"
21
+ paymill_error_text_invalid_holder_cc,"Por favor, introduce el nombre del titular de la tarjeta"
22
+ PAYMILL_field_invalid_card_holder,"Por favor, introduce el nombre del titular de la tarjeta"
23
+ paymill_error_text_invalid_number_cc,"Por favor, introduce un número válido de tarjeta de crédito."
24
+ PAYMILL_field_invalid_card_number,"Por favor, introduce un número válido de tarjeta de crédito."
25
+ paymill_error_text_invalid_expdate,"Fecha de expiración inválida"
26
+ PAYMILL_field_invalid_bank_code,"Por favor, introduce un código bancario válido de domiciliación bancaria."
27
+ paymill_error_text_invalid_bankcode,"Por favor, introduce un código bancario válido de domiciliación bancaria."
28
+ paymill_error_text_invalid_holder_elv,"Por favor, introduce el nombre del titular de la cuenta para la domiciliación bancaria."
29
+ PAYMILL_field_invalid_account_holder,"Por favor, introduce el nombre del titular de la cuenta para la domiciliación bancaria."
30
+ paymill_error_text_invalid_number_elv,"Por favor, introduce un número válido de la cuenta para la domiciliación bancaria."
31
+ PAYMILL_field_invalid_account_number,"Por favor, introduce un número válido de la cuenta para la domiciliación bancaria."
32
+ paymill_error_text_invalid_payment,"El método de pago no se ha podido identificar. Por favor, contacta con nuestro equipo de soporte."
33
+ paymill_dialog_confirm,"¿Estás seguro?"
34
+ paymill_slogan,"Pagos seguros con tarjeta de crédito gestionados por"
35
+ paymill_slogan_elv,"Domiciliación bancaria gestionada por"
36
+ paymill_credit_card,"Tarjeta de crédito"
37
+ paymill_creditcard,"Tarjeta de crédito"
38
+ paymill_3ds_cancel,Cancelar
39
+ paymill_Cvc,"Código CVC"
40
+ paymill_Holder,"Titular de la tarjeta"
41
+ paymill_Number,"Número de tarjeta"
42
+ paymill_Date,"Válida hasta"
43
+ paymill_cvc_tooltip,"El código CVV o CVC es una medida de seguridad de las tarjetas de crédito. Normalmente es un número de tres a cuatro dígitos de longitud. En las tarjetas de crédito VISA, se le llama código CVV. Se puede encontrar este mismo código en las tarjetas de crédito MasterCard -donde se le llama CVC. CVC es la abreviatura de ""código de validez de la tarjeta"". El código CVV, por otro lado, es la abreviatura de ""código de valor de verificación de la tarjeta"". Parecidas a MasterCard y Visa, otras tarjetas como Diners Club, Discover y JCB contienen un número de tres dígitos que se encuentra normalmente en el reverso de la tarjeta de crédito. Las tarjetas MAESTRO pueden tener o no el código CVV de tres dígitos. En caso de usar una tarjeta MAESTRO sin CVV, puede introducir 000 en el formulario en su lugar. American Express usa el CID (número de identificación de la tarjeta). El CID es un número de cuatro dígitos que normalmente se encuentra en el anverso de la tarjeta, arriba a la derecha del número de la tarjeta de crédito."
44
+ paymill_directdebit,"Domiciliación bancaria"
45
+ paymill_direct_debit,"Domiciliación bancaria"
46
+ paymill_bankcode,"Código bancario"
47
+ paymill_account,"Número de cuenta"
48
+ paymill_backend_log_entry_date,"Fecha de registro"
49
+ paymill_backend_log_dev_info,"Desarrollador de informes"
50
+ paymill_backend_log_id,Identificación
51
+ paymill_backend_log_merchant_info,"Información del comerciante"
52
+ paymill_log,"Registro de PAYMILL"
53
+ paymill_backend_log_version,"Versión del módulo"
54
+ paymill_credit_card_label,"Pagos con tarjeta de crédito PAYMILL"
55
+ paymill_direct_debit_label,"Pagos con dedomiciliación bancaria PAYMILL"
56
+ paymill_activate_sepa,"Mostrar solicitud SEPA"
57
+ paymill_Basic_Setting,"Configuración Básica Paymill"
58
+ paymill_iban,IBAN
59
+ paymill_bic,BIC
60
+ paymill_public_key_tooltip,"Por favor, introduzca una clave pública válida"
61
+ paymill_private_key_tooltip,"Por favor, introduzca una clave privada válida"
62
+ paymill_error_text_invalid_token,"El siguiente error ha ocurrido:"
63
+ paymill_error_text_no_entry_selected,"Por favor, seleccione una entrada"
64
+ paymill_action_delete,"Borrar entrada"
65
+ paymill_backend_log_dev_info_additional,"Información Adicional del Desarrollador"
66
+ paymill_checkout_generating_invoice,"Se está generando la factura"
67
+ paymill_log_action_success,"Acción correcta"
68
+ paymill_checkout_desc,"Texto descriptivo"
69
+ "General undefined response.","General undefined response."
70
+ "Still waiting on something.","Still waiting on something."
71
+ "General success response.","General success response."
72
+ "General problem with data.","General problem with data."
73
+ "General problem with payment data.","General problem with payment data."
74
+ "Problem with credit card data.","Problem with credit card data."
75
+ "Problem with cvv.","Problem with cvv."
76
+ "Card expired or not yet valid.","Card expired or not yet valid."
77
+ "Limit exceeded.","Limit exceeded."
78
+ "Card invalid.","Card invalid."
79
+ "Expiry date not valid.","Expiry date not valid."
80
+ "Credit card brand required.","Credit card brand required."
81
+ "Problem with bank account data.","Problem with bank account data."
82
+ "Bank account data combination mismatch.","Bank account data combination mismatch."
83
+ "User authentication failed.","User authentication failed."
84
+ "Problem with 3d secure data.","Problem with 3d secure data."
85
+ "Currency / amount mismatch","Currency / amount mismatch"
86
+ "Problem with input data.","Problem with input data."
87
+ "Amount too low or zero.","Amount too low or zero."
88
+ "Usage field too long.","Usage field too long."
89
+ "Currency not allowed.","Currency not allowed."
90
+ "General problem with backend.","General problem with backend."
91
+ "Country blacklisted.","Country blacklisted."
92
+ "Technical error with credit card.","Technical error with credit card."
93
+ "Error limit exceeded.","Error limit exceeded."
94
+ "Card declined by authorization system.","Card declined by authorization system."
95
+ "Manipulation or stolen card.","Manipulation or stolen card."
96
+ "Card restricted.","Card restricted"
97
+ "Invalid card configuration data.","Invalid card configuration data."
98
+ "Technical error with bank account.","Technical error with bank account."
99
+ "Card blacklisted.","Card blacklisted."
100
+ "Technical error with 3D secure.","Technical error with 3D secure."
101
+ "Decline because of risk issues.","Decline because of risk issues."
102
+ "General timeout.","General timeout."
103
+ "Timeout on side of the acquirer.","Timeout on side of the acquirer."
104
+ "Risk management transaction timeout.","Risk management transaction timeout"
105
+ "Duplicate transaction.","Duplicate transaction."
106
+ PAYMILL_internal_server_error,"The communication with the psp failed."
107
+ PAYMILL_invalid_public_key,"The public key is invalid."
108
+ PAYMILL_invalid_payment_data,"Paymentmethod, card type currency or country not authorized"
109
+ PAYMILL_unknown_error,"Unknown Error"
110
+ PAYMILL_3ds_cancelled,"3-D Secure process has been canceled by the user"
111
+ PAYMILL_field_invalid_card_exp_year,"Invalid Expiry Year"
112
+ PAYMILL_field_invalid_card_exp_month,"Invalid Expiry Month"
113
+ PAYMILL_field_invalid_card_exp,"Credit Card not valid"
114
+ PAYMILL_field_invalid_amount_int,"Missing amount for 3-D Secure"
115
+ PAYMILL_field_field_invalid_amount,"Missing amount for 3-D Secure"
116
+ PAYMILL_field_field_field_invalid_currency,"Invalid currency for 3-D Secure"
117
+ PAYMILL_field_invalid_iban,"Invalid IBAN"
118
+ PAYMILL_field_invalid_bic,"Invalid BIC"
119
+ PAYMILL_field_invalid_country,"Invalid country for sepa transactions"
120
+ PAYMILL_field_invalid_bank_data,"Invalid bank data"
121
+ paymill_send_invoice_mail,"Enviar factura por correo"
122
+ paymill_error_text_invalid_iban_elv,"Por favor, introduzca un IBAN válido"
123
+ paymill_error_text_invalid_bic,"Por favor, introduzca un BIC válido."
124
+ paymill_accepted_creditcards,"Tipo de tarjetas de crédito aceptadas"
125
+ paymill_feedback_error_directdebit_number_iban,"Por favor, indique un código bancario o identificación válida"
126
+ paymill_feedback_error_directdebit_bankcode_bic,"Por favor, indique un número de cuenta o IBAN válido"
127
+ paymill_prenotification,"Días hasta el cargo en cuenta."
128
+ paymill_prenotification_text,"El cargo en cuenta automático se realiza en la fecha siguiente:"
129
+ paymill_show_creditcards,"Show creditcard logos"
130
+ paymill_select_creditcards,"Select creditcard logos"
131
+ paymill_base_or_order_currency, "Shop base currency"
132
+ paymill_paymill_base_or_order_currency_tooltip, "The currency which should be used to create and manage the order, shop base or order currency"
133
+ base_currency, "base currency"
134
+ order_currency, "order currency"
135
+ paymill_token_creation_identifier_id, "Button selector for token creation"
136
+ paymill_token_creation_identifier_id_tooltip, "You can add a prototype selector to identify your checkout button, to this button a click event for the token creation is added."
137
+ paymill_expert_settings, "Expert settings"
138
+ paymill_backend_hook_id, "Hook ID"
139
+ paymill_backend_hook_event_types, "Event types"
140
+ paymill_backend_hook_target, "Target"
141
+ paymill_backend_hook_live, "Live or Test"
142
+ hook_url, "Hook URL"
143
+ hook_types, "Event types"
144
+ hook_data, "Hook data"
145
+ save_hook, "save hook"
146
+ paymill_hook_action_success, "The delete was successful"
147
+ paymill_error_text_no_entry_selected, "No entry selected"
app/locale/es_CR/Paymill_Paymill.csv ADDED
@@ -0,0 +1,147 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ paymill_Amount,Cantidad
2
+ paymill_accepted_currency,"Monedas aceptadas"
3
+ paymill_opt_Enabled,Activar
4
+ paymill_opt_Countries,"Países aceptados"
5
+ paymill_Activate_Debugging,"Activar debugging"
6
+ paymill_fc_active,"Activar la compra rápida"
7
+ paymill_Activate_Logging,"Activar el registro"
8
+ paymill_preAuth_active,"Autorizar previamente las transacciones durante el proceso de compra. Los cargos se llevarán a cabo una vez generadas las facturas."
9
+ paymill_private_key_comment,"Puedes encontrar tu clave privada en el Cockpit de PAYMILL"
10
+ paymill_Private_Key,"Clave privada"
11
+ paymill_public_key_comment,"Puede encontrar su clave pública en el Cockpit de PAYMILL"
12
+ paymill_Public_Key,"Clave pública"
13
+ paymill_Show_Label,"Mostrar el logo de PAYMILL durante el proceso de compra."
14
+ paymill_opt_Sort,Secuencia
15
+ paymill_token_tolerace_tooltip,"Cantidad adicional que se cargará cuando se genere el Token de PAYMILL. Esto es para evitar desviaciones en el 3D Secure"
16
+ paymill_token_tolerace_comment,"Cantidad adicional que se cargará cuando se genere el Token de PAYMILL. Esto es para evitar desviaciones en el 3D Secure"
17
+ paymill_token_tolerace,"Tolerancia del Token"
18
+ paymill_Currency,Moneda
19
+ paymill_error_text_invalid_cvc,"CVC inválido"
20
+ PAYMILL_field_invalid_card_cvc,"CVC inválido"
21
+ paymill_error_text_invalid_holder_cc,"Por favor, introduce el nombre del titular de la tarjeta"
22
+ PAYMILL_field_invalid_card_holder,"Por favor, introduce el nombre del titular de la tarjeta"
23
+ paymill_error_text_invalid_number_cc,"Por favor, introduce un número válido de tarjeta de crédito."
24
+ PAYMILL_field_invalid_card_number,"Por favor, introduce un número válido de tarjeta de crédito."
25
+ paymill_error_text_invalid_expdate,"Fecha de expiración inválida"
26
+ PAYMILL_field_invalid_bank_code,"Por favor, introduce un código bancario válido de domiciliación bancaria."
27
+ paymill_error_text_invalid_bankcode,"Por favor, introduce un código bancario válido de domiciliación bancaria."
28
+ paymill_error_text_invalid_holder_elv,"Por favor, introduce el nombre del titular de la cuenta para la domiciliación bancaria."
29
+ PAYMILL_field_invalid_account_holder,"Por favor, introduce el nombre del titular de la cuenta para la domiciliación bancaria."
30
+ paymill_error_text_invalid_number_elv,"Por favor, introduce un número válido de la cuenta para la domiciliación bancaria."
31
+ PAYMILL_field_invalid_account_number,"Por favor, introduce un número válido de la cuenta para la domiciliación bancaria."
32
+ paymill_error_text_invalid_payment,"El método de pago no se ha podido identificar. Por favor, contacta con nuestro equipo de soporte."
33
+ paymill_dialog_confirm,"¿Estás seguro?"
34
+ paymill_slogan,"Pagos seguros con tarjeta de crédito gestionados por"
35
+ paymill_slogan_elv,"Domiciliación bancaria gestionada por"
36
+ paymill_credit_card,"Tarjeta de crédito"
37
+ paymill_creditcard,"Tarjeta de crédito"
38
+ paymill_3ds_cancel,Cancelar
39
+ paymill_Cvc,"Código CVC"
40
+ paymill_Holder,"Titular de la tarjeta"
41
+ paymill_Number,"Número de tarjeta"
42
+ paymill_Date,"Válida hasta"
43
+ paymill_cvc_tooltip,"El código CVV o CVC es una medida de seguridad de las tarjetas de crédito. Normalmente es un número de tres a cuatro dígitos de longitud. En las tarjetas de crédito VISA, se le llama código CVV. Se puede encontrar este mismo código en las tarjetas de crédito MasterCard -donde se le llama CVC. CVC es la abreviatura de ""código de validez de la tarjeta"". El código CVV, por otro lado, es la abreviatura de ""código de valor de verificación de la tarjeta"". Parecidas a MasterCard y Visa, otras tarjetas como Diners Club, Discover y JCB contienen un número de tres dígitos que se encuentra normalmente en el reverso de la tarjeta de crédito. Las tarjetas MAESTRO pueden tener o no el código CVV de tres dígitos. En caso de usar una tarjeta MAESTRO sin CVV, puede introducir 000 en el formulario en su lugar. American Express usa el CID (número de identificación de la tarjeta). El CID es un número de cuatro dígitos que normalmente se encuentra en el anverso de la tarjeta, arriba a la derecha del número de la tarjeta de crédito."
44
+ paymill_directdebit,"Domiciliación bancaria"
45
+ paymill_direct_debit,"Domiciliación bancaria"
46
+ paymill_bankcode,"Código bancario"
47
+ paymill_account,"Número de cuenta"
48
+ paymill_backend_log_entry_date,"Fecha de registro"
49
+ paymill_backend_log_dev_info,"Desarrollador de informes"
50
+ paymill_backend_log_id,Identificación
51
+ paymill_backend_log_merchant_info,"Información del comerciante"
52
+ paymill_log,"Registro de PAYMILL"
53
+ paymill_backend_log_version,"Versión del módulo"
54
+ paymill_credit_card_label,"Pagos con tarjeta de crédito PAYMILL"
55
+ paymill_direct_debit_label,"Pagos con dedomiciliación bancaria PAYMILL"
56
+ paymill_activate_sepa,"Mostrar solicitud SEPA"
57
+ paymill_Basic_Setting,"Configuración Básica Paymill"
58
+ paymill_iban,IBAN
59
+ paymill_bic,BIC
60
+ paymill_public_key_tooltip,"Por favor, introduzca una clave pública válida"
61
+ paymill_private_key_tooltip,"Por favor, introduzca una clave privada válida"
62
+ paymill_error_text_invalid_token,"El siguiente error ha ocurrido:"
63
+ paymill_error_text_no_entry_selected,"Por favor, seleccione una entrada"
64
+ paymill_action_delete,"Borrar entrada"
65
+ paymill_backend_log_dev_info_additional,"Información Adicional del Desarrollador"
66
+ paymill_checkout_generating_invoice,"Se está generando la factura"
67
+ paymill_log_action_success,"Acción correcta"
68
+ paymill_checkout_desc,"Texto descriptivo"
69
+ "General undefined response.","General undefined response."
70
+ "Still waiting on something.","Still waiting on something."
71
+ "General success response.","General success response."
72
+ "General problem with data.","General problem with data."
73
+ "General problem with payment data.","General problem with payment data."
74
+ "Problem with credit card data.","Problem with credit card data."
75
+ "Problem with cvv.","Problem with cvv."
76
+ "Card expired or not yet valid.","Card expired or not yet valid."
77
+ "Limit exceeded.","Limit exceeded."
78
+ "Card invalid.","Card invalid."
79
+ "Expiry date not valid.","Expiry date not valid."
80
+ "Credit card brand required.","Credit card brand required."
81
+ "Problem with bank account data.","Problem with bank account data."
82
+ "Bank account data combination mismatch.","Bank account data combination mismatch."
83
+ "User authentication failed.","User authentication failed."
84
+ "Problem with 3d secure data.","Problem with 3d secure data."
85
+ "Currency / amount mismatch","Currency / amount mismatch"
86
+ "Problem with input data.","Problem with input data."
87
+ "Amount too low or zero.","Amount too low or zero."
88
+ "Usage field too long.","Usage field too long."
89
+ "Currency not allowed.","Currency not allowed."
90
+ "General problem with backend.","General problem with backend."
91
+ "Country blacklisted.","Country blacklisted."
92
+ "Technical error with credit card.","Technical error with credit card."
93
+ "Error limit exceeded.","Error limit exceeded."
94
+ "Card declined by authorization system.","Card declined by authorization system."
95
+ "Manipulation or stolen card.","Manipulation or stolen card."
96
+ "Card restricted.","Card restricted"
97
+ "Invalid card configuration data.","Invalid card configuration data."
98
+ "Technical error with bank account.","Technical error with bank account."
99
+ "Card blacklisted.","Card blacklisted."
100
+ "Technical error with 3D secure.","Technical error with 3D secure."
101
+ "Decline because of risk issues.","Decline because of risk issues."
102
+ "General timeout.","General timeout."
103
+ "Timeout on side of the acquirer.","Timeout on side of the acquirer."
104
+ "Risk management transaction timeout.","Risk management transaction timeout"
105
+ "Duplicate transaction.","Duplicate transaction."
106
+ PAYMILL_internal_server_error,"The communication with the psp failed."
107
+ PAYMILL_invalid_public_key,"The public key is invalid."
108
+ PAYMILL_invalid_payment_data,"Paymentmethod, card type currency or country not authorized"
109
+ PAYMILL_unknown_error,"Unknown Error"
110
+ PAYMILL_3ds_cancelled,"3-D Secure process has been canceled by the user"
111
+ PAYMILL_field_invalid_card_exp_year,"Invalid Expiry Year"
112
+ PAYMILL_field_invalid_card_exp_month,"Invalid Expiry Month"
113
+ PAYMILL_field_invalid_card_exp,"Credit Card not valid"
114
+ PAYMILL_field_invalid_amount_int,"Missing amount for 3-D Secure"
115
+ PAYMILL_field_field_invalid_amount,"Missing amount for 3-D Secure"
116
+ PAYMILL_field_field_field_invalid_currency,"Invalid currency for 3-D Secure"
117
+ PAYMILL_field_invalid_iban,"Invalid IBAN"
118
+ PAYMILL_field_invalid_bic,"Invalid BIC"
119
+ PAYMILL_field_invalid_country,"Invalid country for sepa transactions"
120
+ PAYMILL_field_invalid_bank_data,"Invalid bank data"
121
+ paymill_send_invoice_mail,"Enviar factura por correo"
122
+ paymill_error_text_invalid_iban_elv,"Por favor, introduzca un IBAN válido"
123
+ paymill_error_text_invalid_bic,"Por favor, introduzca un BIC válido."
124
+ paymill_accepted_creditcards,"Tipo de tarjetas de crédito aceptadas"
125
+ paymill_feedback_error_directdebit_number_iban,"Por favor, indique un código bancario o identificación válida"
126
+ paymill_feedback_error_directdebit_bankcode_bic,"Por favor, indique un número de cuenta o IBAN válido"
127
+ paymill_prenotification,"Días hasta el cargo en cuenta."
128
+ paymill_prenotification_text,"El cargo en cuenta automático se realiza en la fecha siguiente:"
129
+ paymill_show_creditcards,"Show creditcard logos"
130
+ paymill_select_creditcards,"Select creditcard logos"
131
+ paymill_base_or_order_currency, "Shop base currency"
132
+ paymill_paymill_base_or_order_currency_tooltip, "The currency which should be used to create and manage the order, shop base or order currency"
133
+ base_currency, "base currency"
134
+ order_currency, "order currency"
135
+ paymill_token_creation_identifier_id, "Button selector for token creation"
136
+ paymill_token_creation_identifier_id_tooltip, "You can add a prototype selector to identify your checkout button, to this button a click event for the token creation is added."
137
+ paymill_expert_settings, "Expert settings"
138
+ paymill_backend_hook_id, "Hook ID"
139
+ paymill_backend_hook_event_types, "Event types"
140
+ paymill_backend_hook_target, "Target"
141
+ paymill_backend_hook_live, "Live or Test"
142
+ hook_url, "Hook URL"
143
+ hook_types, "Event types"
144
+ hook_data, "Hook data"
145
+ save_hook, "save hook"
146
+ paymill_hook_action_success, "The delete was successful"
147
+ paymill_error_text_no_entry_selected, "No entry selected"
app/locale/es_ES/Paymill_Paymill.csv CHANGED
@@ -134,4 +134,14 @@ base_currency, "base currency"
134
  order_currency, "order currency"
135
  paymill_token_creation_identifier_id, "Button selector for token creation"
136
  paymill_token_creation_identifier_id_tooltip, "You can add a prototype selector to identify your checkout button, to this button a click event for the token creation is added."
137
- paymill_expert_settings, "Expert settings"
 
 
 
 
 
 
 
 
 
 
134
  order_currency, "order currency"
135
  paymill_token_creation_identifier_id, "Button selector for token creation"
136
  paymill_token_creation_identifier_id_tooltip, "You can add a prototype selector to identify your checkout button, to this button a click event for the token creation is added."
137
+ paymill_expert_settings, "Expert settings"
138
+ paymill_backend_hook_id, "Hook ID"
139
+ paymill_backend_hook_event_types, "Event types"
140
+ paymill_backend_hook_target, "Target"
141
+ paymill_backend_hook_live, "Live or Test"
142
+ hook_url, "Hook URL"
143
+ hook_types, "Event types"
144
+ hook_data, "Hook data"
145
+ save_hook, "save hook"
146
+ paymill_hook_action_success, "The delete was successful"
147
+ paymill_error_text_no_entry_selected, "No entry selected"
app/locale/es_MX/Paymill_Paymill.csv ADDED
@@ -0,0 +1,147 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ paymill_Amount,Cantidad
2
+ paymill_accepted_currency,"Monedas aceptadas"
3
+ paymill_opt_Enabled,Activar
4
+ paymill_opt_Countries,"Países aceptados"
5
+ paymill_Activate_Debugging,"Activar debugging"
6
+ paymill_fc_active,"Activar la compra rápida"
7
+ paymill_Activate_Logging,"Activar el registro"
8
+ paymill_preAuth_active,"Autorizar previamente las transacciones durante el proceso de compra. Los cargos se llevarán a cabo una vez generadas las facturas."
9
+ paymill_private_key_comment,"Puedes encontrar tu clave privada en el Cockpit de PAYMILL"
10
+ paymill_Private_Key,"Clave privada"
11
+ paymill_public_key_comment,"Puede encontrar su clave pública en el Cockpit de PAYMILL"
12
+ paymill_Public_Key,"Clave pública"
13
+ paymill_Show_Label,"Mostrar el logo de PAYMILL durante el proceso de compra."
14
+ paymill_opt_Sort,Secuencia
15
+ paymill_token_tolerace_tooltip,"Cantidad adicional que se cargará cuando se genere el Token de PAYMILL. Esto es para evitar desviaciones en el 3D Secure"
16
+ paymill_token_tolerace_comment,"Cantidad adicional que se cargará cuando se genere el Token de PAYMILL. Esto es para evitar desviaciones en el 3D Secure"
17
+ paymill_token_tolerace,"Tolerancia del Token"
18
+ paymill_Currency,Moneda
19
+ paymill_error_text_invalid_cvc,"CVC inválido"
20
+ PAYMILL_field_invalid_card_cvc,"CVC inválido"
21
+ paymill_error_text_invalid_holder_cc,"Por favor, introduce el nombre del titular de la tarjeta"
22
+ PAYMILL_field_invalid_card_holder,"Por favor, introduce el nombre del titular de la tarjeta"
23
+ paymill_error_text_invalid_number_cc,"Por favor, introduce un número válido de tarjeta de crédito."
24
+ PAYMILL_field_invalid_card_number,"Por favor, introduce un número válido de tarjeta de crédito."
25
+ paymill_error_text_invalid_expdate,"Fecha de expiración inválida"
26
+ PAYMILL_field_invalid_bank_code,"Por favor, introduce un código bancario válido de domiciliación bancaria."
27
+ paymill_error_text_invalid_bankcode,"Por favor, introduce un código bancario válido de domiciliación bancaria."
28
+ paymill_error_text_invalid_holder_elv,"Por favor, introduce el nombre del titular de la cuenta para la domiciliación bancaria."
29
+ PAYMILL_field_invalid_account_holder,"Por favor, introduce el nombre del titular de la cuenta para la domiciliación bancaria."
30
+ paymill_error_text_invalid_number_elv,"Por favor, introduce un número válido de la cuenta para la domiciliación bancaria."
31
+ PAYMILL_field_invalid_account_number,"Por favor, introduce un número válido de la cuenta para la domiciliación bancaria."
32
+ paymill_error_text_invalid_payment,"El método de pago no se ha podido identificar. Por favor, contacta con nuestro equipo de soporte."
33
+ paymill_dialog_confirm,"¿Estás seguro?"
34
+ paymill_slogan,"Pagos seguros con tarjeta de crédito gestionados por"
35
+ paymill_slogan_elv,"Domiciliación bancaria gestionada por"
36
+ paymill_credit_card,"Tarjeta de crédito"
37
+ paymill_creditcard,"Tarjeta de crédito"
38
+ paymill_3ds_cancel,Cancelar
39
+ paymill_Cvc,"Código CVC"
40
+ paymill_Holder,"Titular de la tarjeta"
41
+ paymill_Number,"Número de tarjeta"
42
+ paymill_Date,"Válida hasta"
43
+ paymill_cvc_tooltip,"El código CVV o CVC es una medida de seguridad de las tarjetas de crédito. Normalmente es un número de tres a cuatro dígitos de longitud. En las tarjetas de crédito VISA, se le llama código CVV. Se puede encontrar este mismo código en las tarjetas de crédito MasterCard -donde se le llama CVC. CVC es la abreviatura de ""código de validez de la tarjeta"". El código CVV, por otro lado, es la abreviatura de ""código de valor de verificación de la tarjeta"". Parecidas a MasterCard y Visa, otras tarjetas como Diners Club, Discover y JCB contienen un número de tres dígitos que se encuentra normalmente en el reverso de la tarjeta de crédito. Las tarjetas MAESTRO pueden tener o no el código CVV de tres dígitos. En caso de usar una tarjeta MAESTRO sin CVV, puede introducir 000 en el formulario en su lugar. American Express usa el CID (número de identificación de la tarjeta). El CID es un número de cuatro dígitos que normalmente se encuentra en el anverso de la tarjeta, arriba a la derecha del número de la tarjeta de crédito."
44
+ paymill_directdebit,"Domiciliación bancaria"
45
+ paymill_direct_debit,"Domiciliación bancaria"
46
+ paymill_bankcode,"Código bancario"
47
+ paymill_account,"Número de cuenta"
48
+ paymill_backend_log_entry_date,"Fecha de registro"
49
+ paymill_backend_log_dev_info,"Desarrollador de informes"
50
+ paymill_backend_log_id,Identificación
51
+ paymill_backend_log_merchant_info,"Información del comerciante"
52
+ paymill_log,"Registro de PAYMILL"
53
+ paymill_backend_log_version,"Versión del módulo"
54
+ paymill_credit_card_label,"Pagos con tarjeta de crédito PAYMILL"
55
+ paymill_direct_debit_label,"Pagos con dedomiciliación bancaria PAYMILL"
56
+ paymill_activate_sepa,"Mostrar solicitud SEPA"
57
+ paymill_Basic_Setting,"Configuración Básica Paymill"
58
+ paymill_iban,IBAN
59
+ paymill_bic,BIC
60
+ paymill_public_key_tooltip,"Por favor, introduzca una clave pública válida"
61
+ paymill_private_key_tooltip,"Por favor, introduzca una clave privada válida"
62
+ paymill_error_text_invalid_token,"El siguiente error ha ocurrido:"
63
+ paymill_error_text_no_entry_selected,"Por favor, seleccione una entrada"
64
+ paymill_action_delete,"Borrar entrada"
65
+ paymill_backend_log_dev_info_additional,"Información Adicional del Desarrollador"
66
+ paymill_checkout_generating_invoice,"Se está generando la factura"
67
+ paymill_log_action_success,"Acción correcta"
68
+ paymill_checkout_desc,"Texto descriptivo"
69
+ "General undefined response.","General undefined response."
70
+ "Still waiting on something.","Still waiting on something."
71
+ "General success response.","General success response."
72
+ "General problem with data.","General problem with data."
73
+ "General problem with payment data.","General problem with payment data."
74
+ "Problem with credit card data.","Problem with credit card data."
75
+ "Problem with cvv.","Problem with cvv."
76
+ "Card expired or not yet valid.","Card expired or not yet valid."
77
+ "Limit exceeded.","Limit exceeded."
78
+ "Card invalid.","Card invalid."
79
+ "Expiry date not valid.","Expiry date not valid."
80
+ "Credit card brand required.","Credit card brand required."
81
+ "Problem with bank account data.","Problem with bank account data."
82
+ "Bank account data combination mismatch.","Bank account data combination mismatch."
83
+ "User authentication failed.","User authentication failed."
84
+ "Problem with 3d secure data.","Problem with 3d secure data."
85
+ "Currency / amount mismatch","Currency / amount mismatch"
86
+ "Problem with input data.","Problem with input data."
87
+ "Amount too low or zero.","Amount too low or zero."
88
+ "Usage field too long.","Usage field too long."
89
+ "Currency not allowed.","Currency not allowed."
90
+ "General problem with backend.","General problem with backend."
91
+ "Country blacklisted.","Country blacklisted."
92
+ "Technical error with credit card.","Technical error with credit card."
93
+ "Error limit exceeded.","Error limit exceeded."
94
+ "Card declined by authorization system.","Card declined by authorization system."
95
+ "Manipulation or stolen card.","Manipulation or stolen card."
96
+ "Card restricted.","Card restricted"
97
+ "Invalid card configuration data.","Invalid card configuration data."
98
+ "Technical error with bank account.","Technical error with bank account."
99
+ "Card blacklisted.","Card blacklisted."
100
+ "Technical error with 3D secure.","Technical error with 3D secure."
101
+ "Decline because of risk issues.","Decline because of risk issues."
102
+ "General timeout.","General timeout."
103
+ "Timeout on side of the acquirer.","Timeout on side of the acquirer."
104
+ "Risk management transaction timeout.","Risk management transaction timeout"
105
+ "Duplicate transaction.","Duplicate transaction."
106
+ PAYMILL_internal_server_error,"The communication with the psp failed."
107
+ PAYMILL_invalid_public_key,"The public key is invalid."
108
+ PAYMILL_invalid_payment_data,"Paymentmethod, card type currency or country not authorized"
109
+ PAYMILL_unknown_error,"Unknown Error"
110
+ PAYMILL_3ds_cancelled,"3-D Secure process has been canceled by the user"
111
+ PAYMILL_field_invalid_card_exp_year,"Invalid Expiry Year"
112
+ PAYMILL_field_invalid_card_exp_month,"Invalid Expiry Month"
113
+ PAYMILL_field_invalid_card_exp,"Credit Card not valid"
114
+ PAYMILL_field_invalid_amount_int,"Missing amount for 3-D Secure"
115
+ PAYMILL_field_field_invalid_amount,"Missing amount for 3-D Secure"
116
+ PAYMILL_field_field_field_invalid_currency,"Invalid currency for 3-D Secure"
117
+ PAYMILL_field_invalid_iban,"Invalid IBAN"
118
+ PAYMILL_field_invalid_bic,"Invalid BIC"
119
+ PAYMILL_field_invalid_country,"Invalid country for sepa transactions"
120
+ PAYMILL_field_invalid_bank_data,"Invalid bank data"
121
+ paymill_send_invoice_mail,"Enviar factura por correo"
122
+ paymill_error_text_invalid_iban_elv,"Por favor, introduzca un IBAN válido"
123
+ paymill_error_text_invalid_bic,"Por favor, introduzca un BIC válido."
124
+ paymill_accepted_creditcards,"Tipo de tarjetas de crédito aceptadas"
125
+ paymill_feedback_error_directdebit_number_iban,"Por favor, indique un código bancario o identificación válida"
126
+ paymill_feedback_error_directdebit_bankcode_bic,"Por favor, indique un número de cuenta o IBAN válido"
127
+ paymill_prenotification,"Días hasta el cargo en cuenta."
128
+ paymill_prenotification_text,"El cargo en cuenta automático se realiza en la fecha siguiente:"
129
+ paymill_show_creditcards,"Show creditcard logos"
130
+ paymill_select_creditcards,"Select creditcard logos"
131
+ paymill_base_or_order_currency, "Shop base currency"
132
+ paymill_paymill_base_or_order_currency_tooltip, "The currency which should be used to create and manage the order, shop base or order currency"
133
+ base_currency, "base currency"
134
+ order_currency, "order currency"
135
+ paymill_token_creation_identifier_id, "Button selector for token creation"
136
+ paymill_token_creation_identifier_id_tooltip, "You can add a prototype selector to identify your checkout button, to this button a click event for the token creation is added."
137
+ paymill_expert_settings, "Expert settings"
138
+ paymill_backend_hook_id, "Hook ID"
139
+ paymill_backend_hook_event_types, "Event types"
140
+ paymill_backend_hook_target, "Target"
141
+ paymill_backend_hook_live, "Live or Test"
142
+ hook_url, "Hook URL"
143
+ hook_types, "Event types"
144
+ hook_data, "Hook data"
145
+ save_hook, "save hook"
146
+ paymill_hook_action_success, "The delete was successful"
147
+ paymill_error_text_no_entry_selected, "No entry selected"
app/locale/es_PE/Paymill_Paymill.csv ADDED
@@ -0,0 +1,147 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ paymill_Amount,Cantidad
2
+ paymill_accepted_currency,"Monedas aceptadas"
3
+ paymill_opt_Enabled,Activar
4
+ paymill_opt_Countries,"Países aceptados"
5
+ paymill_Activate_Debugging,"Activar debugging"
6
+ paymill_fc_active,"Activar la compra rápida"
7
+ paymill_Activate_Logging,"Activar el registro"
8
+ paymill_preAuth_active,"Autorizar previamente las transacciones durante el proceso de compra. Los cargos se llevarán a cabo una vez generadas las facturas."
9
+ paymill_private_key_comment,"Puedes encontrar tu clave privada en el Cockpit de PAYMILL"
10
+ paymill_Private_Key,"Clave privada"
11
+ paymill_public_key_comment,"Puede encontrar su clave pública en el Cockpit de PAYMILL"
12
+ paymill_Public_Key,"Clave pública"
13
+ paymill_Show_Label,"Mostrar el logo de PAYMILL durante el proceso de compra."
14
+ paymill_opt_Sort,Secuencia
15
+ paymill_token_tolerace_tooltip,"Cantidad adicional que se cargará cuando se genere el Token de PAYMILL. Esto es para evitar desviaciones en el 3D Secure"
16
+ paymill_token_tolerace_comment,"Cantidad adicional que se cargará cuando se genere el Token de PAYMILL. Esto es para evitar desviaciones en el 3D Secure"
17
+ paymill_token_tolerace,"Tolerancia del Token"
18
+ paymill_Currency,Moneda
19
+ paymill_error_text_invalid_cvc,"CVC inválido"
20
+ PAYMILL_field_invalid_card_cvc,"CVC inválido"
21
+ paymill_error_text_invalid_holder_cc,"Por favor, introduce el nombre del titular de la tarjeta"
22
+ PAYMILL_field_invalid_card_holder,"Por favor, introduce el nombre del titular de la tarjeta"
23
+ paymill_error_text_invalid_number_cc,"Por favor, introduce un número válido de tarjeta de crédito."
24
+ PAYMILL_field_invalid_card_number,"Por favor, introduce un número válido de tarjeta de crédito."
25
+ paymill_error_text_invalid_expdate,"Fecha de expiración inválida"
26
+ PAYMILL_field_invalid_bank_code,"Por favor, introduce un código bancario válido de domiciliación bancaria."
27
+ paymill_error_text_invalid_bankcode,"Por favor, introduce un código bancario válido de domiciliación bancaria."
28
+ paymill_error_text_invalid_holder_elv,"Por favor, introduce el nombre del titular de la cuenta para la domiciliación bancaria."
29
+ PAYMILL_field_invalid_account_holder,"Por favor, introduce el nombre del titular de la cuenta para la domiciliación bancaria."
30
+ paymill_error_text_invalid_number_elv,"Por favor, introduce un número válido de la cuenta para la domiciliación bancaria."
31
+ PAYMILL_field_invalid_account_number,"Por favor, introduce un número válido de la cuenta para la domiciliación bancaria."
32
+ paymill_error_text_invalid_payment,"El método de pago no se ha podido identificar. Por favor, contacta con nuestro equipo de soporte."
33
+ paymill_dialog_confirm,"¿Estás seguro?"
34
+ paymill_slogan,"Pagos seguros con tarjeta de crédito gestionados por"
35
+ paymill_slogan_elv,"Domiciliación bancaria gestionada por"
36
+ paymill_credit_card,"Tarjeta de crédito"
37
+ paymill_creditcard,"Tarjeta de crédito"
38
+ paymill_3ds_cancel,Cancelar
39
+ paymill_Cvc,"Código CVC"
40
+ paymill_Holder,"Titular de la tarjeta"
41
+ paymill_Number,"Número de tarjeta"
42
+ paymill_Date,"Válida hasta"
43
+ paymill_cvc_tooltip,"El código CVV o CVC es una medida de seguridad de las tarjetas de crédito. Normalmente es un número de tres a cuatro dígitos de longitud. En las tarjetas de crédito VISA, se le llama código CVV. Se puede encontrar este mismo código en las tarjetas de crédito MasterCard -donde se le llama CVC. CVC es la abreviatura de ""código de validez de la tarjeta"". El código CVV, por otro lado, es la abreviatura de ""código de valor de verificación de la tarjeta"". Parecidas a MasterCard y Visa, otras tarjetas como Diners Club, Discover y JCB contienen un número de tres dígitos que se encuentra normalmente en el reverso de la tarjeta de crédito. Las tarjetas MAESTRO pueden tener o no el código CVV de tres dígitos. En caso de usar una tarjeta MAESTRO sin CVV, puede introducir 000 en el formulario en su lugar. American Express usa el CID (número de identificación de la tarjeta). El CID es un número de cuatro dígitos que normalmente se encuentra en el anverso de la tarjeta, arriba a la derecha del número de la tarjeta de crédito."
44
+ paymill_directdebit,"Domiciliación bancaria"
45
+ paymill_direct_debit,"Domiciliación bancaria"
46
+ paymill_bankcode,"Código bancario"
47
+ paymill_account,"Número de cuenta"
48
+ paymill_backend_log_entry_date,"Fecha de registro"
49
+ paymill_backend_log_dev_info,"Desarrollador de informes"
50
+ paymill_backend_log_id,Identificación
51
+ paymill_backend_log_merchant_info,"Información del comerciante"
52
+ paymill_log,"Registro de PAYMILL"
53
+ paymill_backend_log_version,"Versión del módulo"
54
+ paymill_credit_card_label,"Pagos con tarjeta de crédito PAYMILL"
55
+ paymill_direct_debit_label,"Pagos con dedomiciliación bancaria PAYMILL"
56
+ paymill_activate_sepa,"Mostrar solicitud SEPA"
57
+ paymill_Basic_Setting,"Configuración Básica Paymill"
58
+ paymill_iban,IBAN
59
+ paymill_bic,BIC
60
+ paymill_public_key_tooltip,"Por favor, introduzca una clave pública válida"
61
+ paymill_private_key_tooltip,"Por favor, introduzca una clave privada válida"
62
+ paymill_error_text_invalid_token,"El siguiente error ha ocurrido:"
63
+ paymill_error_text_no_entry_selected,"Por favor, seleccione una entrada"
64
+ paymill_action_delete,"Borrar entrada"
65
+ paymill_backend_log_dev_info_additional,"Información Adicional del Desarrollador"
66
+ paymill_checkout_generating_invoice,"Se está generando la factura"
67
+ paymill_log_action_success,"Acción correcta"
68
+ paymill_checkout_desc,"Texto descriptivo"
69
+ "General undefined response.","General undefined response."
70
+ "Still waiting on something.","Still waiting on something."
71
+ "General success response.","General success response."
72
+ "General problem with data.","General problem with data."
73
+ "General problem with payment data.","General problem with payment data."
74
+ "Problem with credit card data.","Problem with credit card data."
75
+ "Problem with cvv.","Problem with cvv."
76
+ "Card expired or not yet valid.","Card expired or not yet valid."
77
+ "Limit exceeded.","Limit exceeded."
78
+ "Card invalid.","Card invalid."
79
+ "Expiry date not valid.","Expiry date not valid."
80
+ "Credit card brand required.","Credit card brand required."
81
+ "Problem with bank account data.","Problem with bank account data."
82
+ "Bank account data combination mismatch.","Bank account data combination mismatch."
83
+ "User authentication failed.","User authentication failed."
84
+ "Problem with 3d secure data.","Problem with 3d secure data."
85
+ "Currency / amount mismatch","Currency / amount mismatch"
86
+ "Problem with input data.","Problem with input data."
87
+ "Amount too low or zero.","Amount too low or zero."
88
+ "Usage field too long.","Usage field too long."
89
+ "Currency not allowed.","Currency not allowed."
90
+ "General problem with backend.","General problem with backend."
91
+ "Country blacklisted.","Country blacklisted."
92
+ "Technical error with credit card.","Technical error with credit card."
93
+ "Error limit exceeded.","Error limit exceeded."
94
+ "Card declined by authorization system.","Card declined by authorization system."
95
+ "Manipulation or stolen card.","Manipulation or stolen card."
96
+ "Card restricted.","Card restricted"
97
+ "Invalid card configuration data.","Invalid card configuration data."
98
+ "Technical error with bank account.","Technical error with bank account."
99
+ "Card blacklisted.","Card blacklisted."
100
+ "Technical error with 3D secure.","Technical error with 3D secure."
101
+ "Decline because of risk issues.","Decline because of risk issues."
102
+ "General timeout.","General timeout."
103
+ "Timeout on side of the acquirer.","Timeout on side of the acquirer."
104
+ "Risk management transaction timeout.","Risk management transaction timeout"
105
+ "Duplicate transaction.","Duplicate transaction."
106
+ PAYMILL_internal_server_error,"The communication with the psp failed."
107
+ PAYMILL_invalid_public_key,"The public key is invalid."
108
+ PAYMILL_invalid_payment_data,"Paymentmethod, card type currency or country not authorized"
109
+ PAYMILL_unknown_error,"Unknown Error"
110
+ PAYMILL_3ds_cancelled,"3-D Secure process has been canceled by the user"
111
+ PAYMILL_field_invalid_card_exp_year,"Invalid Expiry Year"
112
+ PAYMILL_field_invalid_card_exp_month,"Invalid Expiry Month"
113
+ PAYMILL_field_invalid_card_exp,"Credit Card not valid"
114
+ PAYMILL_field_invalid_amount_int,"Missing amount for 3-D Secure"
115
+ PAYMILL_field_field_invalid_amount,"Missing amount for 3-D Secure"
116
+ PAYMILL_field_field_field_invalid_currency,"Invalid currency for 3-D Secure"
117
+ PAYMILL_field_invalid_iban,"Invalid IBAN"
118
+ PAYMILL_field_invalid_bic,"Invalid BIC"
119
+ PAYMILL_field_invalid_country,"Invalid country for sepa transactions"
120
+ PAYMILL_field_invalid_bank_data,"Invalid bank data"
121
+ paymill_send_invoice_mail,"Enviar factura por correo"
122
+ paymill_error_text_invalid_iban_elv,"Por favor, introduzca un IBAN válido"
123
+ paymill_error_text_invalid_bic,"Por favor, introduzca un BIC válido."
124
+ paymill_accepted_creditcards,"Tipo de tarjetas de crédito aceptadas"
125
+ paymill_feedback_error_directdebit_number_iban,"Por favor, indique un código bancario o identificación válida"
126
+ paymill_feedback_error_directdebit_bankcode_bic,"Por favor, indique un número de cuenta o IBAN válido"
127
+ paymill_prenotification,"Días hasta el cargo en cuenta."
128
+ paymill_prenotification_text,"El cargo en cuenta automático se realiza en la fecha siguiente:"
129
+ paymill_show_creditcards,"Show creditcard logos"
130
+ paymill_select_creditcards,"Select creditcard logos"
131
+ paymill_base_or_order_currency, "Shop base currency"
132
+ paymill_paymill_base_or_order_currency_tooltip, "The currency which should be used to create and manage the order, shop base or order currency"
133
+ base_currency, "base currency"
134
+ order_currency, "order currency"
135
+ paymill_token_creation_identifier_id, "Button selector for token creation"
136
+ paymill_token_creation_identifier_id_tooltip, "You can add a prototype selector to identify your checkout button, to this button a click event for the token creation is added."
137
+ paymill_expert_settings, "Expert settings"
138
+ paymill_backend_hook_id, "Hook ID"
139
+ paymill_backend_hook_event_types, "Event types"
140
+ paymill_backend_hook_target, "Target"
141
+ paymill_backend_hook_live, "Live or Test"
142
+ hook_url, "Hook URL"
143
+ hook_types, "Event types"
144
+ hook_data, "Hook data"
145
+ save_hook, "save hook"
146
+ paymill_hook_action_success, "The delete was successful"
147
+ paymill_error_text_no_entry_selected, "No entry selected"
app/locale/es_VE/Paymill_Paymill.csv ADDED
@@ -0,0 +1,147 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ paymill_Amount,Cantidad
2
+ paymill_accepted_currency,"Monedas aceptadas"
3
+ paymill_opt_Enabled,Activar
4
+ paymill_opt_Countries,"Países aceptados"
5
+ paymill_Activate_Debugging,"Activar debugging"
6
+ paymill_fc_active,"Activar la compra rápida"
7
+ paymill_Activate_Logging,"Activar el registro"
8
+ paymill_preAuth_active,"Autorizar previamente las transacciones durante el proceso de compra. Los cargos se llevarán a cabo una vez generadas las facturas."
9
+ paymill_private_key_comment,"Puedes encontrar tu clave privada en el Cockpit de PAYMILL"
10
+ paymill_Private_Key,"Clave privada"
11
+ paymill_public_key_comment,"Puede encontrar su clave pública en el Cockpit de PAYMILL"
12
+ paymill_Public_Key,"Clave pública"
13
+ paymill_Show_Label,"Mostrar el logo de PAYMILL durante el proceso de compra."
14
+ paymill_opt_Sort,Secuencia
15
+ paymill_token_tolerace_tooltip,"Cantidad adicional que se cargará cuando se genere el Token de PAYMILL. Esto es para evitar desviaciones en el 3D Secure"
16
+ paymill_token_tolerace_comment,"Cantidad adicional que se cargará cuando se genere el Token de PAYMILL. Esto es para evitar desviaciones en el 3D Secure"
17
+ paymill_token_tolerace,"Tolerancia del Token"
18
+ paymill_Currency,Moneda
19
+ paymill_error_text_invalid_cvc,"CVC inválido"
20
+ PAYMILL_field_invalid_card_cvc,"CVC inválido"
21
+ paymill_error_text_invalid_holder_cc,"Por favor, introduce el nombre del titular de la tarjeta"
22
+ PAYMILL_field_invalid_card_holder,"Por favor, introduce el nombre del titular de la tarjeta"
23
+ paymill_error_text_invalid_number_cc,"Por favor, introduce un número válido de tarjeta de crédito."
24
+ PAYMILL_field_invalid_card_number,"Por favor, introduce un número válido de tarjeta de crédito."
25
+ paymill_error_text_invalid_expdate,"Fecha de expiración inválida"
26
+ PAYMILL_field_invalid_bank_code,"Por favor, introduce un código bancario válido de domiciliación bancaria."
27
+ paymill_error_text_invalid_bankcode,"Por favor, introduce un código bancario válido de domiciliación bancaria."
28
+ paymill_error_text_invalid_holder_elv,"Por favor, introduce el nombre del titular de la cuenta para la domiciliación bancaria."
29
+ PAYMILL_field_invalid_account_holder,"Por favor, introduce el nombre del titular de la cuenta para la domiciliación bancaria."
30
+ paymill_error_text_invalid_number_elv,"Por favor, introduce un número válido de la cuenta para la domiciliación bancaria."
31
+ PAYMILL_field_invalid_account_number,"Por favor, introduce un número válido de la cuenta para la domiciliación bancaria."
32
+ paymill_error_text_invalid_payment,"El método de pago no se ha podido identificar. Por favor, contacta con nuestro equipo de soporte."
33
+ paymill_dialog_confirm,"¿Estás seguro?"
34
+ paymill_slogan,"Pagos seguros con tarjeta de crédito gestionados por"
35
+ paymill_slogan_elv,"Domiciliación bancaria gestionada por"
36
+ paymill_credit_card,"Tarjeta de crédito"
37
+ paymill_creditcard,"Tarjeta de crédito"
38
+ paymill_3ds_cancel,Cancelar
39
+ paymill_Cvc,"Código CVC"
40
+ paymill_Holder,"Titular de la tarjeta"
41
+ paymill_Number,"Número de tarjeta"
42
+ paymill_Date,"Válida hasta"
43
+ paymill_cvc_tooltip,"El código CVV o CVC es una medida de seguridad de las tarjetas de crédito. Normalmente es un número de tres a cuatro dígitos de longitud. En las tarjetas de crédito VISA, se le llama código CVV. Se puede encontrar este mismo código en las tarjetas de crédito MasterCard -donde se le llama CVC. CVC es la abreviatura de ""código de validez de la tarjeta"". El código CVV, por otro lado, es la abreviatura de ""código de valor de verificación de la tarjeta"". Parecidas a MasterCard y Visa, otras tarjetas como Diners Club, Discover y JCB contienen un número de tres dígitos que se encuentra normalmente en el reverso de la tarjeta de crédito. Las tarjetas MAESTRO pueden tener o no el código CVV de tres dígitos. En caso de usar una tarjeta MAESTRO sin CVV, puede introducir 000 en el formulario en su lugar. American Express usa el CID (número de identificación de la tarjeta). El CID es un número de cuatro dígitos que normalmente se encuentra en el anverso de la tarjeta, arriba a la derecha del número de la tarjeta de crédito."
44
+ paymill_directdebit,"Domiciliación bancaria"
45
+ paymill_direct_debit,"Domiciliación bancaria"
46
+ paymill_bankcode,"Código bancario"
47
+ paymill_account,"Número de cuenta"
48
+ paymill_backend_log_entry_date,"Fecha de registro"
49
+ paymill_backend_log_dev_info,"Desarrollador de informes"
50
+ paymill_backend_log_id,Identificación
51
+ paymill_backend_log_merchant_info,"Información del comerciante"
52
+ paymill_log,"Registro de PAYMILL"
53
+ paymill_backend_log_version,"Versión del módulo"
54
+ paymill_credit_card_label,"Pagos con tarjeta de crédito PAYMILL"
55
+ paymill_direct_debit_label,"Pagos con dedomiciliación bancaria PAYMILL"
56
+ paymill_activate_sepa,"Mostrar solicitud SEPA"
57
+ paymill_Basic_Setting,"Configuración Básica Paymill"
58
+ paymill_iban,IBAN
59
+ paymill_bic,BIC
60
+ paymill_public_key_tooltip,"Por favor, introduzca una clave pública válida"
61
+ paymill_private_key_tooltip,"Por favor, introduzca una clave privada válida"
62
+ paymill_error_text_invalid_token,"El siguiente error ha ocurrido:"
63
+ paymill_error_text_no_entry_selected,"Por favor, seleccione una entrada"
64
+ paymill_action_delete,"Borrar entrada"
65
+ paymill_backend_log_dev_info_additional,"Información Adicional del Desarrollador"
66
+ paymill_checkout_generating_invoice,"Se está generando la factura"
67
+ paymill_log_action_success,"Acción correcta"
68
+ paymill_checkout_desc,"Texto descriptivo"
69
+ "General undefined response.","General undefined response."
70
+ "Still waiting on something.","Still waiting on something."
71
+ "General success response.","General success response."
72
+ "General problem with data.","General problem with data."
73
+ "General problem with payment data.","General problem with payment data."
74
+ "Problem with credit card data.","Problem with credit card data."
75
+ "Problem with cvv.","Problem with cvv."
76
+ "Card expired or not yet valid.","Card expired or not yet valid."
77
+ "Limit exceeded.","Limit exceeded."
78
+ "Card invalid.","Card invalid."
79
+ "Expiry date not valid.","Expiry date not valid."
80
+ "Credit card brand required.","Credit card brand required."
81
+ "Problem with bank account data.","Problem with bank account data."
82
+ "Bank account data combination mismatch.","Bank account data combination mismatch."
83
+ "User authentication failed.","User authentication failed."
84
+ "Problem with 3d secure data.","Problem with 3d secure data."
85
+ "Currency / amount mismatch","Currency / amount mismatch"
86
+ "Problem with input data.","Problem with input data."
87
+ "Amount too low or zero.","Amount too low or zero."
88
+ "Usage field too long.","Usage field too long."
89
+ "Currency not allowed.","Currency not allowed."
90
+ "General problem with backend.","General problem with backend."
91
+ "Country blacklisted.","Country blacklisted."
92
+ "Technical error with credit card.","Technical error with credit card."
93
+ "Error limit exceeded.","Error limit exceeded."
94
+ "Card declined by authorization system.","Card declined by authorization system."
95
+ "Manipulation or stolen card.","Manipulation or stolen card."
96
+ "Card restricted.","Card restricted"
97
+ "Invalid card configuration data.","Invalid card configuration data."
98
+ "Technical error with bank account.","Technical error with bank account."
99
+ "Card blacklisted.","Card blacklisted."
100
+ "Technical error with 3D secure.","Technical error with 3D secure."
101
+ "Decline because of risk issues.","Decline because of risk issues."
102
+ "General timeout.","General timeout."
103
+ "Timeout on side of the acquirer.","Timeout on side of the acquirer."
104
+ "Risk management transaction timeout.","Risk management transaction timeout"
105
+ "Duplicate transaction.","Duplicate transaction."
106
+ PAYMILL_internal_server_error,"The communication with the psp failed."
107
+ PAYMILL_invalid_public_key,"The public key is invalid."
108
+ PAYMILL_invalid_payment_data,"Paymentmethod, card type currency or country not authorized"
109
+ PAYMILL_unknown_error,"Unknown Error"
110
+ PAYMILL_3ds_cancelled,"3-D Secure process has been canceled by the user"
111
+ PAYMILL_field_invalid_card_exp_year,"Invalid Expiry Year"
112
+ PAYMILL_field_invalid_card_exp_month,"Invalid Expiry Month"
113
+ PAYMILL_field_invalid_card_exp,"Credit Card not valid"
114
+ PAYMILL_field_invalid_amount_int,"Missing amount for 3-D Secure"
115
+ PAYMILL_field_field_invalid_amount,"Missing amount for 3-D Secure"
116
+ PAYMILL_field_field_field_invalid_currency,"Invalid currency for 3-D Secure"
117
+ PAYMILL_field_invalid_iban,"Invalid IBAN"
118
+ PAYMILL_field_invalid_bic,"Invalid BIC"
119
+ PAYMILL_field_invalid_country,"Invalid country for sepa transactions"
120
+ PAYMILL_field_invalid_bank_data,"Invalid bank data"
121
+ paymill_send_invoice_mail,"Enviar factura por correo"
122
+ paymill_error_text_invalid_iban_elv,"Por favor, introduzca un IBAN válido"
123
+ paymill_error_text_invalid_bic,"Por favor, introduzca un BIC válido."
124
+ paymill_accepted_creditcards,"Tipo de tarjetas de crédito aceptadas"
125
+ paymill_feedback_error_directdebit_number_iban,"Por favor, indique un código bancario o identificación válida"
126
+ paymill_feedback_error_directdebit_bankcode_bic,"Por favor, indique un número de cuenta o IBAN válido"
127
+ paymill_prenotification,"Días hasta el cargo en cuenta."
128
+ paymill_prenotification_text,"El cargo en cuenta automático se realiza en la fecha siguiente:"
129
+ paymill_show_creditcards,"Show creditcard logos"
130
+ paymill_select_creditcards,"Select creditcard logos"
131
+ paymill_base_or_order_currency, "Shop base currency"
132
+ paymill_paymill_base_or_order_currency_tooltip, "The currency which should be used to create and manage the order, shop base or order currency"
133
+ base_currency, "base currency"
134
+ order_currency, "order currency"
135
+ paymill_token_creation_identifier_id, "Button selector for token creation"
136
+ paymill_token_creation_identifier_id_tooltip, "You can add a prototype selector to identify your checkout button, to this button a click event for the token creation is added."
137
+ paymill_expert_settings, "Expert settings"
138
+ paymill_backend_hook_id, "Hook ID"
139
+ paymill_backend_hook_event_types, "Event types"
140
+ paymill_backend_hook_target, "Target"
141
+ paymill_backend_hook_live, "Live or Test"
142
+ hook_url, "Hook URL"
143
+ hook_types, "Event types"
144
+ hook_data, "Hook data"
145
+ save_hook, "save hook"
146
+ paymill_hook_action_success, "The delete was successful"
147
+ paymill_error_text_no_entry_selected, "No entry selected"
app/locale/fr_CA/Paymill_Paymill.csv ADDED
@@ -0,0 +1,145 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ paymill_Amount,Montant
2
+ paymill_accepted_currency,"Devises acceptées"
3
+ paymill_opt_Enabled,Activer
4
+ paymill_opt_Countries,"Pays acceptés"
5
+ paymill_Activate_Debugging,"Activer le débogage"
6
+ paymill_fc_active,"Activer le paiement rapide."
7
+ paymill_Activate_Logging,"Activer la journalisation."
8
+ paymill_preAuth_active,"Préautoriser les transactions lors du paiement. Le montant sera prélevé lors de la génération des factures."
9
+ paymill_private_key_comment,"Vous trouverez votre clé privée dans le cockpit PAYMILL."
10
+ paymill_Private_Key,"Clé privée"
11
+ paymill_public_key_comment,"Vous trouverez votre clé publique dans le cockpit PAYMILL."
12
+ paymill_Public_Key,"Clé publique"
13
+ paymill_Show_Label,"Afficher l'étiquette PAYMILL lors du paiement."
14
+ paymill_opt_Sort,Séquence
15
+ paymill_token_tolerace_tooltip,"Une somme vous sera prélevée lors de la génération des crédits PAYMILL, afin d'éviter les écarts par rapport à la sécurité 3-D."
16
+ paymill_token_tolerace_comment,"Une somme vous sera prélevée lors de la génération des crédits PAYMILL, afin d'éviter les écarts par rapport à la sécurité 3-D."
17
+ paymill_token_tolerace,"Valeur de tolérance des crédits"
18
+ paymill_Currency,Devise
19
+ paymill_error_text_invalid_cvc,"CVC invalide"
20
+ PAYMILL_field_invalid_card_cvc,"CVC invalide"
21
+ paymill_error_text_invalid_holder_cc,"Veuillez saisir le nom du titulaire de la carte."
22
+ PAYMILL_field_invalid_card_holder,"Veuillez saisir le nom du titulaire de la carte."
23
+ paymill_error_text_invalid_number_cc,"Veuillez saisir un numéro de carte de crédit valide."
24
+ PAYMILL_field_invalid_card_number,"Veuillez saisir un numéro de carte de crédit valide."
25
+ paymill_error_text_invalid_expdate,"Date d'expiration invalide"
26
+ PAYMILL_field_invalid_bank_code,"Veuillez saisir un code bancaire de débit direct valide."
27
+ paymill_error_text_invalid_bankcode,"Veuillez saisir un code bancaire de débit direct valide."
28
+ paymill_error_text_invalid_holder_elv,"Veuillez saisir le nom du titulaire du compte de débit direct"
29
+ PAYMILL_field_invalid_account_holder,"Veuillez saisir le nom du titulaire du compte de débit direct"
30
+ paymill_error_text_invalid_number_elv,"Veuillez saisir un numéro de compte de débit direct valide"
31
+ PAYMILL_field_invalid_account_number,"Veuillez saisir un numéro de compte de débit direct valide"
32
+ paymill_error_text_invalid_payment,"Le moyen de paiement n'a pas pu être identifié. Veuillez contacter l'assistance."
33
+ paymill_dialog_confirm,"Êtes-vous sûr ?"
34
+ paymill_slogan,"Paiements par carte de crédit sécurisés fonctionnant avec"
35
+ paymill_slogan_elv,"Débit direct fonctionnant avec"
36
+ paymill_credit_card,"Carte de crédit"
37
+ paymill_creditcard,"Carte de crédit"
38
+ paymill_3ds_cancel,Annuler
39
+ paymill_Cvc,CVC
40
+ paymill_Holder,"Titulaire de la carte"
41
+ paymill_Number,"Numéro de carte"
42
+ paymill_Date,"Valable jusqu'au"
43
+ paymill_cvc_tooltip,"Le code CVV ou CVC est une fonctionnalité de sécurité des cartes de crédit. Il se compose en général d'un nombre de trois à quatre chiffres. Sur les cartes de crédit VISA, il est appelé code CVV. On trouve le même code sur les cartes de crédit MasterCard, où il est appelé cependant CVC. CVC signifie « Card Validation Code » (« Code de validation de carte »). Le code CVV signifie quant à lui « Card Validation Value code » (« code de Valeur de validation de carte »). Similaires à MasterCard et Visa, les autres marques telles que Diners Club, Discover et JCB contiennent un nombre à trois chiffres que l'on retrouve généralement au dos de la carte de crédit. Les cartes MAESTRO existent avec et sans le CVV à trois chiffres. Si vous utilisez une carte MAESTRO sans CVV, vous pourrez saisir 000 dans le formulaire. American Express utilise le CID (card identification number - numéro d'identification de carte). Le CID est un nombre à quatre chiffres que l'on retrouve généralement à l'avant de la carte, en haut à droite du numéro de carte de crédit."
44
+ paymill_directdebit,"Débit direct"
45
+ paymill_direct_debit,"Débit direct"
46
+ paymill_bankcode,"Code bancaire"
47
+ paymill_account,"Numéro de compte"
48
+ paymill_backend_log_entry_date,"Date de saisie"
49
+ paymill_backend_log_dev_info,"Informer le développeur"
50
+ paymill_backend_log_id,Id
51
+ paymill_backend_log_merchant_info,"Information sur le marchand"
52
+ paymill_log,"Journal PAYMILL"
53
+ paymill_backend_log_version,"Version du module"
54
+ paymill_credit_card_label,"Paiements par carte de crédit PAYMILL"
55
+ paymill_direct_debit_label,"Débit direct PAYMILL"
56
+ paymill_activate_sepa,"Montrer le formulaire SEPA"
57
+ paymill_Basic_Setting,"Paramètres de base pour Paymill"
58
+ paymill_iban,IBAN
59
+ paymill_bic,BIC
60
+ paymill_public_key_tooltip,"Veuillez entrer une clé publique valide"
61
+ paymill_private_key_tooltip,"Veuillez entrer une clé privée valide"
62
+ paymill_error_text_invalid_token,"L'erreur suivante est survenue :"
63
+ paymill_error_text_no_entry_selected,"Veuillez sélectionner une entrée"
64
+ paymill_action_delete,"Supprimer la saisie"
65
+ paymill_backend_log_dev_info_additional,"Informations supplémentaires sur le développeur"
66
+ paymill_checkout_generating_invoice,"La facture est en cours de création"
67
+ paymill_log_action_success,"Action réussie"
68
+ paymill_checkout_desc,"Texte de description"
69
+ "General undefined response.","General undefined response."
70
+ "Still waiting on something.","Still waiting on something."
71
+ "General success response.","General success response."
72
+ "General problem with data.","General problem with data."
73
+ "General problem with payment data.","General problem with payment data."
74
+ "Problem with credit card data.","Problem with credit card data."
75
+ "Problem with cvv.","Problem with cvv."
76
+ "Card expired or not yet valid.","Card expired or not yet valid."
77
+ "Limit exceeded.","Limit exceeded."
78
+ "Card invalid.","Card invalid."
79
+ "Expiry date not valid.","Expiry date not valid."
80
+ "Credit card brand required.","Credit card brand required."
81
+ "Problem with bank account data.","Problem with bank account data."
82
+ "Bank account data combination mismatch.","Bank account data combination mismatch."
83
+ "User authentication failed.","User authentication failed."
84
+ "Problem with 3d secure data.","Problem with 3d secure data."
85
+ "Currency / amount mismatch","Currency / amount mismatch"
86
+ "Problem with input data.","Problem with input data."
87
+ "Amount too low or zero.","Amount too low or zero."
88
+ "Usage field too long.","Usage field too long."
89
+ "Currency not allowed.","Currency not allowed."
90
+ "General problem with backend.","General problem with backend."
91
+ "Country blacklisted.","Country blacklisted."
92
+ "Technical error with credit card.","Technical error with credit card."
93
+ "Error limit exceeded.","Error limit exceeded."
94
+ "Card declined by authorization system.","Card declined by authorization system."
95
+ "Manipulation or stolen card.","Manipulation or stolen card."
96
+ "Card restricted.","Card restricted"
97
+ "Invalid card configuration data.","Invalid card configuration data."
98
+ "Technical error with bank account.","Technical error with bank account."
99
+ "Card blacklisted.","Card blacklisted."
100
+ "Technical error with 3D secure.","Technical error with 3D secure."
101
+ "Decline because of risk issues.","Decline because of risk issues."
102
+ "General timeout.","General timeout."
103
+ "Timeout on side of the acquirer.","Timeout on side of the acquirer."
104
+ "Risk management transaction timeout.","Risk management transaction timeout"
105
+ "Duplicate transaction.","Duplicate transaction."
106
+ PAYMILL_internal_server_error,"The communication with the psp failed."
107
+ PAYMILL_invalid_public_key,"The public key is invalid."
108
+ PAYMILL_invalid_payment_data,"Paymentmethod, card type currency or country not authorized"
109
+ PAYMILL_unknown_error,"Unknown Error"
110
+ PAYMILL_3ds_cancelled,"3-D Secure process has been canceled by the user"
111
+ PAYMILL_field_invalid_card_exp_year,"Invalid Expiry Year"
112
+ PAYMILL_field_invalid_card_exp_month,"Invalid Expiry Month"
113
+ PAYMILL_field_invalid_card_exp,"Credit Card not valid"
114
+ PAYMILL_field_invalid_amount_int,"Missing amount for 3-D Secure"
115
+ PAYMILL_field_field_invalid_amount,"Missing amount for 3-D Secure"
116
+ PAYMILL_field_field_field_invalid_currency,"Invalid currency for 3-D Secure"
117
+ PAYMILL_field_invalid_iban,"Invalid IBAN"
118
+ PAYMILL_field_invalid_bic,"Invalid BIC"
119
+ PAYMILL_field_invalid_country,"Invalid country for sepa transactions"
120
+ PAYMILL_field_invalid_bank_data,"Invalid bank data"
121
+ paymill_send_invoice_mail,"Envoyer une facture par courriel"
122
+ paymill_error_text_invalid_iban_elv,"Veuillez entrer un IBAN valide"
123
+ paymill_error_text_invalid_bic,"Veuillez entrer un BIC valide."
124
+ paymill_accepted_creditcards,"Marques de cartes de crédit acceptées"
125
+ paymill_prenotification,"Nombre de jours avant le prélèvement"
126
+ paymill_prenotification_text,"Le prélèvement automatique sera effectué à la date suivante:"
127
+ paymill_show_creditcards,"Show creditcard logos"
128
+ paymill_select_creditcards,"Select creditcard logos"
129
+ paymill_base_or_order_currency, "Shop base currency"
130
+ paymill_paymill_base_or_order_currency_tooltip, "The currency which should be used to create and manage the order, shop base or order currency"
131
+ base_currency, "base currency"
132
+ order_currency, "order currency"
133
+ paymill_token_creation_identifier_id, "Button selector for token creation"
134
+ paymill_token_creation_identifier_id_tooltip, "You can add a prototype selector to identify your checkout button, to this button a click event for the token creation is added."
135
+ paymill_expert_settings, "Expert settings"
136
+ paymill_backend_hook_id, "Hook ID"
137
+ paymill_backend_hook_event_types, "Event types"
138
+ paymill_backend_hook_target, "Target"
139
+ paymill_backend_hook_live, "Live or Test"
140
+ hook_url, "Hook URL"
141
+ hook_types, "Event types"
142
+ hook_data, "Hook data"
143
+ save_hook, "save hook"
144
+ paymill_hook_action_success, "The delete was successful"
145
+ paymill_error_text_no_entry_selected, "No entry selected"
app/locale/fr_FR/Paymill_Paymill.csv ADDED
@@ -0,0 +1,145 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ paymill_Amount,Montant
2
+ paymill_accepted_currency,"Devises acceptées"
3
+ paymill_opt_Enabled,Activer
4
+ paymill_opt_Countries,"Pays acceptés"
5
+ paymill_Activate_Debugging,"Activer le débogage"
6
+ paymill_fc_active,"Activer le paiement rapide."
7
+ paymill_Activate_Logging,"Activer la journalisation."
8
+ paymill_preAuth_active,"Préautoriser les transactions lors du paiement. Le montant sera prélevé lors de la génération des factures."
9
+ paymill_private_key_comment,"Vous trouverez votre clé privée dans le cockpit PAYMILL."
10
+ paymill_Private_Key,"Clé privée"
11
+ paymill_public_key_comment,"Vous trouverez votre clé publique dans le cockpit PAYMILL."
12
+ paymill_Public_Key,"Clé publique"
13
+ paymill_Show_Label,"Afficher l'étiquette PAYMILL lors du paiement."
14
+ paymill_opt_Sort,Séquence
15
+ paymill_token_tolerace_tooltip,"Une somme vous sera prélevée lors de la génération des crédits PAYMILL, afin d'éviter les écarts par rapport à la sécurité 3-D."
16
+ paymill_token_tolerace_comment,"Une somme vous sera prélevée lors de la génération des crédits PAYMILL, afin d'éviter les écarts par rapport à la sécurité 3-D."
17
+ paymill_token_tolerace,"Valeur de tolérance des crédits"
18
+ paymill_Currency,Devise
19
+ paymill_error_text_invalid_cvc,"CVC invalide"
20
+ PAYMILL_field_invalid_card_cvc,"CVC invalide"
21
+ paymill_error_text_invalid_holder_cc,"Veuillez saisir le nom du titulaire de la carte."
22
+ PAYMILL_field_invalid_card_holder,"Veuillez saisir le nom du titulaire de la carte."
23
+ paymill_error_text_invalid_number_cc,"Veuillez saisir un numéro de carte de crédit valide."
24
+ PAYMILL_field_invalid_card_number,"Veuillez saisir un numéro de carte de crédit valide."
25
+ paymill_error_text_invalid_expdate,"Date d'expiration invalide"
26
+ PAYMILL_field_invalid_bank_code,"Veuillez saisir un code bancaire de débit direct valide."
27
+ paymill_error_text_invalid_bankcode,"Veuillez saisir un code bancaire de débit direct valide."
28
+ paymill_error_text_invalid_holder_elv,"Veuillez saisir le nom du titulaire du compte de débit direct"
29
+ PAYMILL_field_invalid_account_holder,"Veuillez saisir le nom du titulaire du compte de débit direct"
30
+ paymill_error_text_invalid_number_elv,"Veuillez saisir un numéro de compte de débit direct valide"
31
+ PAYMILL_field_invalid_account_number,"Veuillez saisir un numéro de compte de débit direct valide"
32
+ paymill_error_text_invalid_payment,"Le moyen de paiement n'a pas pu être identifié. Veuillez contacter l'assistance."
33
+ paymill_dialog_confirm,"Êtes-vous sûr ?"
34
+ paymill_slogan,"Paiements par carte de crédit sécurisés fonctionnant avec"
35
+ paymill_slogan_elv,"Débit direct fonctionnant avec"
36
+ paymill_credit_card,"Carte de crédit"
37
+ paymill_creditcard,"Carte de crédit"
38
+ paymill_3ds_cancel,Annuler
39
+ paymill_Cvc,CVC
40
+ paymill_Holder,"Titulaire de la carte"
41
+ paymill_Number,"Numéro de carte"
42
+ paymill_Date,"Valable jusqu'au"
43
+ paymill_cvc_tooltip,"Le code CVV ou CVC est une fonctionnalité de sécurité des cartes de crédit. Il se compose en général d'un nombre de trois à quatre chiffres. Sur les cartes de crédit VISA, il est appelé code CVV. On trouve le même code sur les cartes de crédit MasterCard, où il est appelé cependant CVC. CVC signifie « Card Validation Code » (« Code de validation de carte »). Le code CVV signifie quant à lui « Card Validation Value code » (« code de Valeur de validation de carte »). Similaires à MasterCard et Visa, les autres marques telles que Diners Club, Discover et JCB contiennent un nombre à trois chiffres que l'on retrouve généralement au dos de la carte de crédit. Les cartes MAESTRO existent avec et sans le CVV à trois chiffres. Si vous utilisez une carte MAESTRO sans CVV, vous pourrez saisir 000 dans le formulaire. American Express utilise le CID (card identification number - numéro d'identification de carte). Le CID est un nombre à quatre chiffres que l'on retrouve généralement à l'avant de la carte, en haut à droite du numéro de carte de crédit."
44
+ paymill_directdebit,"Débit direct"
45
+ paymill_direct_debit,"Débit direct"
46
+ paymill_bankcode,"Code bancaire"
47
+ paymill_account,"Numéro de compte"
48
+ paymill_backend_log_entry_date,"Date de saisie"
49
+ paymill_backend_log_dev_info,"Informer le développeur"
50
+ paymill_backend_log_id,Id
51
+ paymill_backend_log_merchant_info,"Information sur le marchand"
52
+ paymill_log,"Journal PAYMILL"
53
+ paymill_backend_log_version,"Version du module"
54
+ paymill_credit_card_label,"Paiements par carte de crédit PAYMILL"
55
+ paymill_direct_debit_label,"Débit direct PAYMILL"
56
+ paymill_activate_sepa,"Montrer le formulaire SEPA"
57
+ paymill_Basic_Setting,"Paramètres de base pour Paymill"
58
+ paymill_iban,IBAN
59
+ paymill_bic,BIC
60
+ paymill_public_key_tooltip,"Veuillez entrer une clé publique valide"
61
+ paymill_private_key_tooltip,"Veuillez entrer une clé privée valide"
62
+ paymill_error_text_invalid_token,"L'erreur suivante est survenue :"
63
+ paymill_error_text_no_entry_selected,"Veuillez sélectionner une entrée"
64
+ paymill_action_delete,"Supprimer la saisie"
65
+ paymill_backend_log_dev_info_additional,"Informations supplémentaires sur le développeur"
66
+ paymill_checkout_generating_invoice,"La facture est en cours de création"
67
+ paymill_log_action_success,"Action réussie"
68
+ paymill_checkout_desc,"Texte de description"
69
+ "General undefined response.","General undefined response."
70
+ "Still waiting on something.","Still waiting on something."
71
+ "General success response.","General success response."
72
+ "General problem with data.","General problem with data."
73
+ "General problem with payment data.","General problem with payment data."
74
+ "Problem with credit card data.","Problem with credit card data."
75
+ "Problem with cvv.","Problem with cvv."
76
+ "Card expired or not yet valid.","Card expired or not yet valid."
77
+ "Limit exceeded.","Limit exceeded."
78
+ "Card invalid.","Card invalid."
79
+ "Expiry date not valid.","Expiry date not valid."
80
+ "Credit card brand required.","Credit card brand required."
81
+ "Problem with bank account data.","Problem with bank account data."
82
+ "Bank account data combination mismatch.","Bank account data combination mismatch."
83
+ "User authentication failed.","User authentication failed."
84
+ "Problem with 3d secure data.","Problem with 3d secure data."
85
+ "Currency / amount mismatch","Currency / amount mismatch"
86
+ "Problem with input data.","Problem with input data."
87
+ "Amount too low or zero.","Amount too low or zero."
88
+ "Usage field too long.","Usage field too long."
89
+ "Currency not allowed.","Currency not allowed."
90
+ "General problem with backend.","General problem with backend."
91
+ "Country blacklisted.","Country blacklisted."
92
+ "Technical error with credit card.","Technical error with credit card."
93
+ "Error limit exceeded.","Error limit exceeded."
94
+ "Card declined by authorization system.","Card declined by authorization system."
95
+ "Manipulation or stolen card.","Manipulation or stolen card."
96
+ "Card restricted.","Card restricted"
97
+ "Invalid card configuration data.","Invalid card configuration data."
98
+ "Technical error with bank account.","Technical error with bank account."
99
+ "Card blacklisted.","Card blacklisted."
100
+ "Technical error with 3D secure.","Technical error with 3D secure."
101
+ "Decline because of risk issues.","Decline because of risk issues."
102
+ "General timeout.","General timeout."
103
+ "Timeout on side of the acquirer.","Timeout on side of the acquirer."
104
+ "Risk management transaction timeout.","Risk management transaction timeout"
105
+ "Duplicate transaction.","Duplicate transaction."
106
+ PAYMILL_internal_server_error,"The communication with the psp failed."
107
+ PAYMILL_invalid_public_key,"The public key is invalid."
108
+ PAYMILL_invalid_payment_data,"Paymentmethod, card type currency or country not authorized"
109
+ PAYMILL_unknown_error,"Unknown Error"
110
+ PAYMILL_3ds_cancelled,"3-D Secure process has been canceled by the user"
111
+ PAYMILL_field_invalid_card_exp_year,"Invalid Expiry Year"
112
+ PAYMILL_field_invalid_card_exp_month,"Invalid Expiry Month"
113
+ PAYMILL_field_invalid_card_exp,"Credit Card not valid"
114
+ PAYMILL_field_invalid_amount_int,"Missing amount for 3-D Secure"
115
+ PAYMILL_field_field_invalid_amount,"Missing amount for 3-D Secure"
116
+ PAYMILL_field_field_field_invalid_currency,"Invalid currency for 3-D Secure"
117
+ PAYMILL_field_invalid_iban,"Invalid IBAN"
118
+ PAYMILL_field_invalid_bic,"Invalid BIC"
119
+ PAYMILL_field_invalid_country,"Invalid country for sepa transactions"
120
+ PAYMILL_field_invalid_bank_data,"Invalid bank data"
121
+ paymill_send_invoice_mail,"Envoyer une facture par courriel"
122
+ paymill_error_text_invalid_iban_elv,"Veuillez entrer un IBAN valide"
123
+ paymill_error_text_invalid_bic,"Veuillez entrer un BIC valide."
124
+ paymill_accepted_creditcards,"Marques de cartes de crédit acceptées"
125
+ paymill_prenotification,"Nombre de jours avant le prélèvement"
126
+ paymill_prenotification_text,"Le prélèvement automatique sera effectué à la date suivante:"
127
+ paymill_show_creditcards,"Show creditcard logos"
128
+ paymill_select_creditcards,"Select creditcard logos"
129
+ paymill_base_or_order_currency, "Shop base currency"
130
+ paymill_paymill_base_or_order_currency_tooltip, "The currency which should be used to create and manage the order, shop base or order currency"
131
+ base_currency, "base currency"
132
+ order_currency, "order currency"
133
+ paymill_token_creation_identifier_id, "Button selector for token creation"
134
+ paymill_token_creation_identifier_id_tooltip, "You can add a prototype selector to identify your checkout button, to this button a click event for the token creation is added."
135
+ paymill_expert_settings, "Expert settings"
136
+ paymill_backend_hook_id, "Hook ID"
137
+ paymill_backend_hook_event_types, "Event types"
138
+ paymill_backend_hook_target, "Target"
139
+ paymill_backend_hook_live, "Live or Test"
140
+ hook_url, "Hook URL"
141
+ hook_types, "Event types"
142
+ hook_data, "Hook data"
143
+ save_hook, "save hook"
144
+ paymill_hook_action_success, "The delete was successful"
145
+ paymill_error_text_no_entry_selected, "No entry selected"
app/locale/it_CH/Paymill_Paymill.csv ADDED
@@ -0,0 +1,147 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ paymill_Amount,Importo
2
+ paymill_accepted_currency,"Valute accettate"
3
+ paymill_opt_Enabled,Attivare
4
+ paymill_opt_Countries,"Paesi accettati"
5
+ paymill_Activate_Debugging,"Attivare il debug"
6
+ paymill_fc_active,"Abilitare pagamento veloce"
7
+ paymill_Activate_Logging,"Attivare la registrazione."
8
+ paymill_preAuth_active,"Preautorizzare le transazioni al momento del pagamento. L'addebito verrà effettuato durante la generazione delle fatture."
9
+ paymill_private_key_comment,"Può trovare la sua chiave privata nel pannello di controllo di PAYMILL."
10
+ paymill_Private_Key,"Chiave privata"
11
+ paymill_public_key_comment,"Può trovare la sua chiave pubblica nel pannello di controllo di PAYMILL."
12
+ paymill_Public_Key,"Chiave pubblica"
13
+ paymill_Show_Label,"Visualizzare l'etichetta PAYMILL durante il pagamento."
14
+ paymill_opt_Sort,Sequenza
15
+ paymill_token_tolerace_tooltip,"Importo che verrà sovraccaricato durante la generazione del Token PAYMILL. Questo per evitare deviazioni del 3-D Secure."
16
+ paymill_token_tolerace_comment,"Importo che verrà sovraccaricato durante la generazione del Token PAYMILL. Questo per evitare deviazioni del 3-D Secure."
17
+ paymill_token_tolerace,"Valore di tolleranza Token"
18
+ paymill_Currency,Valuta
19
+ paymill_error_text_invalid_cvc,"CVC non valido"
20
+ PAYMILL_field_invalid_card_cvc,"CVC non valido"
21
+ paymill_error_text_invalid_holder_cc,"Inserire il nome del titolare della carta."
22
+ PAYMILL_field_invalid_card_holder,"Inserire il nome del titolare della carta."
23
+ paymill_error_text_invalid_number_cc,"Inserire un numero di carta di credito valido."
24
+ PAYMILL_field_invalid_card_number,"Inserire un numero di carta di credito valido."
25
+ paymill_error_text_invalid_expdate,"Data scadenza non valida"
26
+ PAYMILL_field_invalid_bank_code,"Inserire un codice di addebito bancario diretto valido."
27
+ paymill_error_text_invalid_bankcode,"Inserire un codice di addebito bancario diretto valido."
28
+ paymill_error_text_invalid_holder_elv,"Inserire il nome del titolare del conto di addebito diretto"
29
+ PAYMILL_field_invalid_account_holder,"Inserire il nome del titolare del conto di addebito diretto"
30
+ paymill_error_text_invalid_number_elv,"Inserire un numero di conto di addebito diretto valido"
31
+ PAYMILL_field_invalid_account_number,"Inserire un numero di conto di addebito diretto valido"
32
+ paymill_error_text_invalid_payment,"Il metodo di pagamento non può essere identificato. Contattare il supporto per assistenza."
33
+ paymill_dialog_confirm,"Sei sicuro?"
34
+ paymill_slogan,"Pagamenti sicuri con carta di credito con tecnologia"
35
+ paymill_slogan_elv,"Addebito diretto con tecnologia"
36
+ paymill_credit_card,"Carta di credito"
37
+ paymill_creditcard,"Carta di credito"
38
+ paymill_3ds_cancel,Annullare
39
+ paymill_Cvc,CVC
40
+ paymill_Holder,"Titolare carta"
41
+ paymill_Number,"Numero carta"
42
+ paymill_Date,"Valida fino al"
43
+ paymill_cvc_tooltip,"Il codice CVV o CVC è una funzione di sicurezza delle carte di credito. Di solito, è un numero composto da tre o quattro cifre. Sulle carte di credito VISA, è indicato come codice CVV. Lo stesso codice può essere trovato sulle carte di credito MasterCard, dove però è denominato CVC. CVC è l'abbreviazione di ""Card Validation Code"" (Codice di validazione della carta). Il codice CVV, invece, è l'abbreviazione di ""Card Validation Value code"" (Codice del valore di verifica della carta). Similmente alla MasterCard e alla Visa, altre marche come la Diners Club, la Discover e la JCB contengono un numero a tre cifre che di solito può essere trovato sul retro della carta di credito. Esistono carte MAESTRO con o senza un codice CVV a tre cifre. Nel caso in cui venga utilizzata una carta MAESTRO priva di CVV, è possibile inserire 000 nel modulo. L'American Express utilizza il CID (Numero di identificazione della carta). Il CID è un numero a quattro cifre che di solito si trova sulla parte anteriore della carta, in alto a destra dal numero della carta di credito."
44
+ paymill_directdebit,"Addebito diretto"
45
+ paymill_direct_debit,"Addebito diretto"
46
+ paymill_bankcode,"Codice bancario"
47
+ paymill_account,"Numero conto"
48
+ paymill_backend_log_entry_date,"Data della voce"
49
+ paymill_backend_log_dev_info,"Informare sviluppatore"
50
+ paymill_backend_log_id,Id
51
+ paymill_backend_log_merchant_info,"Informazioni operatore commerciale"
52
+ paymill_log,"Registro PAYMILL"
53
+ paymill_backend_log_version,"Versione modulo"
54
+ paymill_credit_card_label,"Pagamenti con carta di credito PAYMILL"
55
+ paymill_direct_debit_label,"Addebito diretto PAYMILL"
56
+ paymill_activate_sepa,"Mostra SEPA da"
57
+ paymill_Basic_Setting,"Impostazioni principali di Paymill"
58
+ paymill_iban,IBAN
59
+ paymill_bic,BIC
60
+ paymill_public_key_tooltip,"Inserire una chiave pubblica valida"
61
+ paymill_private_key_tooltip,"Inserire una chiave privata valida"
62
+ paymill_error_text_invalid_token,"Si è verificato il seguente errore:"
63
+ paymill_error_text_no_entry_selected,"Selezionare una voce"
64
+ paymill_action_delete,"Elimina voce"
65
+ paymill_backend_log_dev_info_additional,"Informazioni aggiuntive sviluppatore"
66
+ paymill_checkout_generating_invoice,"Fattura creata"
67
+ paymill_log_action_success,"Azione avvenuta con successo"
68
+ paymill_checkout_desc,Descrizione
69
+ "General undefined response.","General undefined response."
70
+ "Still waiting on something.","Still waiting on something."
71
+ "General success response.","General success response."
72
+ "General problem with data.","General problem with data."
73
+ "General problem with payment data.","General problem with payment data."
74
+ "Problem with credit card data.","Problem with credit card data."
75
+ "Problem with cvv.","Problem with cvv."
76
+ "Card expired or not yet valid.","Card expired or not yet valid."
77
+ "Limit exceeded.","Limit exceeded."
78
+ "Card invalid.","Card invalid."
79
+ "Expiry date not valid.","Expiry date not valid."
80
+ "Credit card brand required.","Credit card brand required."
81
+ "Problem with bank account data.","Problem with bank account data."
82
+ "Bank account data combination mismatch.","Bank account data combination mismatch."
83
+ "User authentication failed.","User authentication failed."
84
+ "Problem with 3d secure data.","Problem with 3d secure data."
85
+ "Currency / amount mismatch","Currency / amount mismatch"
86
+ "Problem with input data.","Problem with input data."
87
+ "Amount too low or zero.","Amount too low or zero."
88
+ "Usage field too long.","Usage field too long."
89
+ "Currency not allowed.","Currency not allowed."
90
+ "General problem with backend.","General problem with backend."
91
+ "Country blacklisted.","Country blacklisted."
92
+ "Technical error with credit card.","Technical error with credit card."
93
+ "Error limit exceeded.","Error limit exceeded."
94
+ "Card declined by authorization system.","Card declined by authorization system."
95
+ "Manipulation or stolen card.","Manipulation or stolen card."
96
+ "Card restricted.","Card restricted"
97
+ "Invalid card configuration data.","Invalid card configuration data."
98
+ "Technical error with bank account.","Technical error with bank account."
99
+ "Card blacklisted.","Card blacklisted."
100
+ "Technical error with 3D secure.","Technical error with 3D secure."
101
+ "Decline because of risk issues.","Decline because of risk issues."
102
+ "General timeout.","General timeout."
103
+ "Timeout on side of the acquirer.","Timeout on side of the acquirer."
104
+ "Risk management transaction timeout.","Risk management transaction timeout"
105
+ "Duplicate transaction.","Duplicate transaction."
106
+ PAYMILL_internal_server_error,"The communication with the psp failed."
107
+ PAYMILL_invalid_public_key,"The public key is invalid."
108
+ PAYMILL_invalid_payment_data,"Paymentmethod, card type currency or country not authorized"
109
+ PAYMILL_unknown_error,"Unknown Error"
110
+ PAYMILL_3ds_cancelled,"3-D Secure process has been canceled by the user"
111
+ PAYMILL_field_invalid_card_exp_year,"Invalid Expiry Year"
112
+ PAYMILL_field_invalid_card_exp_month,"Invalid Expiry Month"
113
+ PAYMILL_field_invalid_card_exp,"Credit Card not valid"
114
+ PAYMILL_field_invalid_amount_int,"Missing amount for 3-D Secure"
115
+ PAYMILL_field_field_invalid_amount,"Missing amount for 3-D Secure"
116
+ PAYMILL_field_field_field_invalid_currency,"Invalid currency for 3-D Secure"
117
+ PAYMILL_field_invalid_iban,"Invalid IBAN"
118
+ PAYMILL_field_invalid_bic,"Invalid BIC"
119
+ PAYMILL_field_invalid_country,"Invalid country for sepa transactions"
120
+ PAYMILL_field_invalid_bank_data,"Invalid bank data"
121
+ paymill_send_invoice_mail,"Invia fattura tramite e-mail"
122
+ paymill_error_text_invalid_iban_elv,"Inserire un numero iban valido"
123
+ paymill_error_text_invalid_bic,"Inserire un codice bic valido."
124
+ paymill_accepted_creditcards,"Marche di Carte di Credito accettate"
125
+ paymill_feedback_error_directdebit_number_iban,"Per favore, inserire un codice BIC/Banca valido"
126
+ paymill_feedback_error_directdebit_bankcode_bic,"Per favore, inserire un codice IBAN/numero di conto valido"
127
+ paymill_prenotification,"Giorni mancanti all'addebito"
128
+ paymill_prenotification_text,"L'addebito sarà effettuato nella giornata seguente:"
129
+ paymill_show_creditcards,"Show creditcard logos"
130
+ paymill_select_creditcards,"Select creditcard logos"
131
+ paymill_base_or_order_currency, "Shop base currency"
132
+ paymill_paymill_base_or_order_currency_tooltip, "The currency which should be used to create and manage the order, shop base or order currency"
133
+ base_currency, "base currency"
134
+ order_currency, "order currency"
135
+ paymill_token_creation_identifier_id, "Button selector for token creation"
136
+ paymill_token_creation_identifier_id_tooltip, "You can add a prototype selector to identify your checkout button, to this button a click event for the token creation is added."
137
+ paymill_expert_settings, "Expert settings"
138
+ paymill_backend_hook_id, "Hook ID"
139
+ paymill_backend_hook_event_types, "Event types"
140
+ paymill_backend_hook_target, "Target"
141
+ paymill_backend_hook_live, "Live or Test"
142
+ hook_url, "Hook URL"
143
+ hook_types, "Event types"
144
+ hook_data, "Hook data"
145
+ save_hook, "save hook"
146
+ paymill_hook_action_success, "The delete was successful"
147
+ paymill_error_text_no_entry_selected, "No entry selected"
app/locale/it_IT/Paymill_Paymill.csv ADDED
@@ -0,0 +1,147 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ paymill_Amount,Importo
2
+ paymill_accepted_currency,"Valute accettate"
3
+ paymill_opt_Enabled,Attivare
4
+ paymill_opt_Countries,"Paesi accettati"
5
+ paymill_Activate_Debugging,"Attivare il debug"
6
+ paymill_fc_active,"Abilitare pagamento veloce"
7
+ paymill_Activate_Logging,"Attivare la registrazione."
8
+ paymill_preAuth_active,"Preautorizzare le transazioni al momento del pagamento. L'addebito verrà effettuato durante la generazione delle fatture."
9
+ paymill_private_key_comment,"Può trovare la sua chiave privata nel pannello di controllo di PAYMILL."
10
+ paymill_Private_Key,"Chiave privata"
11
+ paymill_public_key_comment,"Può trovare la sua chiave pubblica nel pannello di controllo di PAYMILL."
12
+ paymill_Public_Key,"Chiave pubblica"
13
+ paymill_Show_Label,"Visualizzare l'etichetta PAYMILL durante il pagamento."
14
+ paymill_opt_Sort,Sequenza
15
+ paymill_token_tolerace_tooltip,"Importo che verrà sovraccaricato durante la generazione del Token PAYMILL. Questo per evitare deviazioni del 3-D Secure."
16
+ paymill_token_tolerace_comment,"Importo che verrà sovraccaricato durante la generazione del Token PAYMILL. Questo per evitare deviazioni del 3-D Secure."
17
+ paymill_token_tolerace,"Valore di tolleranza Token"
18
+ paymill_Currency,Valuta
19
+ paymill_error_text_invalid_cvc,"CVC non valido"
20
+ PAYMILL_field_invalid_card_cvc,"CVC non valido"
21
+ paymill_error_text_invalid_holder_cc,"Inserire il nome del titolare della carta."
22
+ PAYMILL_field_invalid_card_holder,"Inserire il nome del titolare della carta."
23
+ paymill_error_text_invalid_number_cc,"Inserire un numero di carta di credito valido."
24
+ PAYMILL_field_invalid_card_number,"Inserire un numero di carta di credito valido."
25
+ paymill_error_text_invalid_expdate,"Data scadenza non valida"
26
+ PAYMILL_field_invalid_bank_code,"Inserire un codice di addebito bancario diretto valido."
27
+ paymill_error_text_invalid_bankcode,"Inserire un codice di addebito bancario diretto valido."
28
+ paymill_error_text_invalid_holder_elv,"Inserire il nome del titolare del conto di addebito diretto"
29
+ PAYMILL_field_invalid_account_holder,"Inserire il nome del titolare del conto di addebito diretto"
30
+ paymill_error_text_invalid_number_elv,"Inserire un numero di conto di addebito diretto valido"
31
+ PAYMILL_field_invalid_account_number,"Inserire un numero di conto di addebito diretto valido"
32
+ paymill_error_text_invalid_payment,"Il metodo di pagamento non può essere identificato. Contattare il supporto per assistenza."
33
+ paymill_dialog_confirm,"Sei sicuro?"
34
+ paymill_slogan,"Pagamenti sicuri con carta di credito con tecnologia"
35
+ paymill_slogan_elv,"Addebito diretto con tecnologia"
36
+ paymill_credit_card,"Carta di credito"
37
+ paymill_creditcard,"Carta di credito"
38
+ paymill_3ds_cancel,Annullare
39
+ paymill_Cvc,CVC
40
+ paymill_Holder,"Titolare carta"
41
+ paymill_Number,"Numero carta"
42
+ paymill_Date,"Valida fino al"
43
+ paymill_cvc_tooltip,"Il codice CVV o CVC è una funzione di sicurezza delle carte di credito. Di solito, è un numero composto da tre o quattro cifre. Sulle carte di credito VISA, è indicato come codice CVV. Lo stesso codice può essere trovato sulle carte di credito MasterCard, dove però è denominato CVC. CVC è l'abbreviazione di ""Card Validation Code"" (Codice di validazione della carta). Il codice CVV, invece, è l'abbreviazione di ""Card Validation Value code"" (Codice del valore di verifica della carta). Similmente alla MasterCard e alla Visa, altre marche come la Diners Club, la Discover e la JCB contengono un numero a tre cifre che di solito può essere trovato sul retro della carta di credito. Esistono carte MAESTRO con o senza un codice CVV a tre cifre. Nel caso in cui venga utilizzata una carta MAESTRO priva di CVV, è possibile inserire 000 nel modulo. L'American Express utilizza il CID (Numero di identificazione della carta). Il CID è un numero a quattro cifre che di solito si trova sulla parte anteriore della carta, in alto a destra dal numero della carta di credito."
44
+ paymill_directdebit,"Addebito diretto"
45
+ paymill_direct_debit,"Addebito diretto"
46
+ paymill_bankcode,"Codice bancario"
47
+ paymill_account,"Numero conto"
48
+ paymill_backend_log_entry_date,"Data della voce"
49
+ paymill_backend_log_dev_info,"Informare sviluppatore"
50
+ paymill_backend_log_id,Id
51
+ paymill_backend_log_merchant_info,"Informazioni operatore commerciale"
52
+ paymill_log,"Registro PAYMILL"
53
+ paymill_backend_log_version,"Versione modulo"
54
+ paymill_credit_card_label,"Pagamenti con carta di credito PAYMILL"
55
+ paymill_direct_debit_label,"Addebito diretto PAYMILL"
56
+ paymill_activate_sepa,"Mostra SEPA da"
57
+ paymill_Basic_Setting,"Impostazioni principali di Paymill"
58
+ paymill_iban,IBAN
59
+ paymill_bic,BIC
60
+ paymill_public_key_tooltip,"Inserire una chiave pubblica valida"
61
+ paymill_private_key_tooltip,"Inserire una chiave privata valida"
62
+ paymill_error_text_invalid_token,"Si è verificato il seguente errore:"
63
+ paymill_error_text_no_entry_selected,"Selezionare una voce"
64
+ paymill_action_delete,"Elimina voce"
65
+ paymill_backend_log_dev_info_additional,"Informazioni aggiuntive sviluppatore"
66
+ paymill_checkout_generating_invoice,"Fattura creata"
67
+ paymill_log_action_success,"Azione avvenuta con successo"
68
+ paymill_checkout_desc,Descrizione
69
+ "General undefined response.","General undefined response."
70
+ "Still waiting on something.","Still waiting on something."
71
+ "General success response.","General success response."
72
+ "General problem with data.","General problem with data."
73
+ "General problem with payment data.","General problem with payment data."
74
+ "Problem with credit card data.","Problem with credit card data."
75
+ "Problem with cvv.","Problem with cvv."
76
+ "Card expired or not yet valid.","Card expired or not yet valid."
77
+ "Limit exceeded.","Limit exceeded."
78
+ "Card invalid.","Card invalid."
79
+ "Expiry date not valid.","Expiry date not valid."
80
+ "Credit card brand required.","Credit card brand required."
81
+ "Problem with bank account data.","Problem with bank account data."
82
+ "Bank account data combination mismatch.","Bank account data combination mismatch."
83
+ "User authentication failed.","User authentication failed."
84
+ "Problem with 3d secure data.","Problem with 3d secure data."
85
+ "Currency / amount mismatch","Currency / amount mismatch"
86
+ "Problem with input data.","Problem with input data."
87
+ "Amount too low or zero.","Amount too low or zero."
88
+ "Usage field too long.","Usage field too long."
89
+ "Currency not allowed.","Currency not allowed."
90
+ "General problem with backend.","General problem with backend."
91
+ "Country blacklisted.","Country blacklisted."
92
+ "Technical error with credit card.","Technical error with credit card."
93
+ "Error limit exceeded.","Error limit exceeded."
94
+ "Card declined by authorization system.","Card declined by authorization system."
95
+ "Manipulation or stolen card.","Manipulation or stolen card."
96
+ "Card restricted.","Card restricted"
97
+ "Invalid card configuration data.","Invalid card configuration data."
98
+ "Technical error with bank account.","Technical error with bank account."
99
+ "Card blacklisted.","Card blacklisted."
100
+ "Technical error with 3D secure.","Technical error with 3D secure."
101
+ "Decline because of risk issues.","Decline because of risk issues."
102
+ "General timeout.","General timeout."
103
+ "Timeout on side of the acquirer.","Timeout on side of the acquirer."
104
+ "Risk management transaction timeout.","Risk management transaction timeout"
105
+ "Duplicate transaction.","Duplicate transaction."
106
+ PAYMILL_internal_server_error,"The communication with the psp failed."
107
+ PAYMILL_invalid_public_key,"The public key is invalid."
108
+ PAYMILL_invalid_payment_data,"Paymentmethod, card type currency or country not authorized"
109
+ PAYMILL_unknown_error,"Unknown Error"
110
+ PAYMILL_3ds_cancelled,"3-D Secure process has been canceled by the user"
111
+ PAYMILL_field_invalid_card_exp_year,"Invalid Expiry Year"
112
+ PAYMILL_field_invalid_card_exp_month,"Invalid Expiry Month"
113
+ PAYMILL_field_invalid_card_exp,"Credit Card not valid"
114
+ PAYMILL_field_invalid_amount_int,"Missing amount for 3-D Secure"
115
+ PAYMILL_field_field_invalid_amount,"Missing amount for 3-D Secure"
116
+ PAYMILL_field_field_field_invalid_currency,"Invalid currency for 3-D Secure"
117
+ PAYMILL_field_invalid_iban,"Invalid IBAN"
118
+ PAYMILL_field_invalid_bic,"Invalid BIC"
119
+ PAYMILL_field_invalid_country,"Invalid country for sepa transactions"
120
+ PAYMILL_field_invalid_bank_data,"Invalid bank data"
121
+ paymill_send_invoice_mail,"Invia fattura tramite e-mail"
122
+ paymill_error_text_invalid_iban_elv,"Inserire un numero iban valido"
123
+ paymill_error_text_invalid_bic,"Inserire un codice bic valido."
124
+ paymill_accepted_creditcards,"Marche di Carte di Credito accettate"
125
+ paymill_feedback_error_directdebit_number_iban,"Per favore, inserire un codice BIC/Banca valido"
126
+ paymill_feedback_error_directdebit_bankcode_bic,"Per favore, inserire un codice IBAN/numero di conto valido"
127
+ paymill_prenotification,"Giorni mancanti all'addebito"
128
+ paymill_prenotification_text,"L'addebito sarà effettuato nella giornata seguente:"
129
+ paymill_show_creditcards,"Show creditcard logos"
130
+ paymill_select_creditcards,"Select creditcard logos"
131
+ paymill_base_or_order_currency, "Shop base currency"
132
+ paymill_paymill_base_or_order_currency_tooltip, "The currency which should be used to create and manage the order, shop base or order currency"
133
+ base_currency, "base currency"
134
+ order_currency, "order currency"
135
+ paymill_token_creation_identifier_id, "Button selector for token creation"
136
+ paymill_token_creation_identifier_id_tooltip, "You can add a prototype selector to identify your checkout button, to this button a click event for the token creation is added."
137
+ paymill_expert_settings, "Expert settings"
138
+ paymill_backend_hook_id, "Hook ID"
139
+ paymill_backend_hook_event_types, "Event types"
140
+ paymill_backend_hook_target, "Target"
141
+ paymill_backend_hook_live, "Live or Test"
142
+ hook_url, "Hook URL"
143
+ hook_types, "Event types"
144
+ hook_data, "Hook data"
145
+ save_hook, "save hook"
146
+ paymill_hook_action_success, "The delete was successful"
147
+ paymill_error_text_no_entry_selected, "No entry selected"
app/locale/pt_BR/Paymill_Paymill.csv ADDED
@@ -0,0 +1,147 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ paymill_Amount,Valor
2
+ paymill_accepted_currency,"Moedas aceites"
3
+ paymill_opt_Enabled,Ativar
4
+ paymill_opt_Countries,"Países aceites"
5
+ paymill_Activate_Debugging,"Ativar a depuração"
6
+ paymill_fc_active,"Ativar o checkout rápido"
7
+ paymill_Activate_Logging,"Ativar o registo."
8
+ paymill_preAuth_active,"Pré-autorize as transações durante o checkout. A cobrança será realizada ao gerar as faturas."
9
+ paymill_private_key_comment,"Você pode encontrar a sua chave privada no cockpit da PAYMILL."
10
+ paymill_Private_Key,"Chave privada"
11
+ paymill_public_key_comment,"Você pode encontrar a sua chave pública no cockpit da PAYMILL."
12
+ paymill_Public_Key,"Chave pública"
13
+ paymill_Show_Label,"Exibir o selo PAYMILL durante o checkout."
14
+ paymill_opt_Sort,Sequência
15
+ paymill_token_tolerace_tooltip,"Valor que será sobretaxado ao gerar o Token PAYMILL. Isto serve para evitar desvios do 3-D secure."
16
+ paymill_token_tolerace_comment,"Valor que será sobretaxado ao gerar o Token PAYMILL. Isto serve para evitar desvios do 3-D secure."
17
+ paymill_token_tolerace,"Valor de tolerância do token"
18
+ paymill_Currency,Moeda
19
+ paymill_error_text_invalid_cvc,"CVC inválido"
20
+ PAYMILL_field_invalid_card_cvc,"CVC inválido"
21
+ paymill_error_text_invalid_holder_cc,"Por favor, introduza o nome do titular do cartão."
22
+ PAYMILL_field_invalid_card_holder,"Por favor, introduza o nome do titular do cartão."
23
+ paymill_error_text_invalid_number_cc,"Por favor, introduza um número de cartão de crédito válido."
24
+ PAYMILL_field_invalid_card_number,"Por favor, introduza um número de cartão de crédito válido."
25
+ paymill_error_text_invalid_expdate,"Data de validade inválida"
26
+ PAYMILL_field_invalid_bank_code,"Por favor, introduza um código bancário de débito direto válido."
27
+ paymill_error_text_invalid_bankcode,"Por favor, introduza um código bancário de débito direto válido."
28
+ paymill_error_text_invalid_holder_elv,"Por favor, introduza o nome do titular da conta de débito direto"
29
+ PAYMILL_field_invalid_account_holder,"Por favor, introduza o nome do titular da conta de débito direto"
30
+ paymill_error_text_invalid_number_elv,"Por favor, introduza um número de conta de débito direto válido"
31
+ PAYMILL_field_invalid_account_number,"Por favor, introduza um número de conta de débito direto válido"
32
+ paymill_error_text_invalid_payment,"O método de pagamento não pode ser identificado. Por favor, contacte o apoio ao cliente."
33
+ paymill_dialog_confirm,"Tem a certeza?"
34
+ paymill_slogan,"Pagamentos com cartão de crédito seguros fornecidos por"
35
+ paymill_slogan_elv,"Débito direto fornecido por"
36
+ paymill_credit_card,"Cartão de crédito"
37
+ paymill_creditcard,"Cartão de crédito"
38
+ paymill_3ds_cancel,Cancelar
39
+ paymill_Cvc,CVC
40
+ paymill_Holder,"Titular do cartão"
41
+ paymill_Number,"Número do cartão"
42
+ paymill_Date,"Válido até"
43
+ paymill_cvc_tooltip,"O código CVV ou CVC é uma funcionalidade de segurança dos cartões de crédito. Normalmente é um número com três ou quatro dígitos. Nos cartões de crédito VISA, é chamado de código CVV. O mesmo código pode ser encontrado nos cartões de crédito MasterCard - onde no entanto é chamado de CVC. CVC é uma abreviatura para ""Código de Validação do Cartão"". O código CVV, por outro lado, é uma abreviatura para ""Código para Valor de Validação do Cartão"". De forma semelhante à MasterCard e à Visa, outras marcas tais como o Diners Club, Discover e JCB contêm um número de três dígitos que normalmente pode ser encontrado na parte de trás do cartão de crédito. Existem cartões MAESTRO com e sem um CVV de três dígitos. No caso de ser utilizado um cartão MAESTRO sem CVV, é possível introduzir 000 no formulário. A American Express utiliza o CID (número de identificação do cartão). O CID é um número de quatro dígitos que pode ser encontrado na parte da frente do cartão, no topo à direita do número do cartão de crédito."
44
+ paymill_directdebit,"Débito direto"
45
+ paymill_direct_debit,"Débito direto"
46
+ paymill_bankcode,"Código do banco"
47
+ paymill_account,"Número da conta"
48
+ paymill_backend_log_entry_date,"Data de entrada"
49
+ paymill_backend_log_dev_info,"Informar o programador"
50
+ paymill_backend_log_id,Identificação
51
+ paymill_backend_log_merchant_info,"Informação do comerciante"
52
+ paymill_log,"Registo PAYMILL"
53
+ paymill_backend_log_version,"Versão do módulo"
54
+ paymill_credit_card_label,"Pagamentos por cartão de crédito PAYMILL"
55
+ paymill_direct_debit_label,"Pagamentos por Débito direto PAYMILL"
56
+ paymill_activate_sepa,"Mostrar formulário SEPA"
57
+ paymill_Basic_Setting,"Definições Básicas do Paymill"
58
+ paymill_iban,IBAN
59
+ paymill_bic,BIC
60
+ paymill_public_key_tooltip,"Por favor introduza uma chave pública válida"
61
+ paymill_private_key_tooltip,"Por favor introduza uma chave privada válida"
62
+ paymill_error_text_invalid_token,"Ocorreu o seguinte erro:"
63
+ paymill_error_text_no_entry_selected,"Seleccione uma entrada"
64
+ paymill_action_delete,"Eliminar entrada"
65
+ paymill_backend_log_dev_info_additional,"Informações adicionais acerca do desenvolvimento"
66
+ paymill_checkout_generating_invoice,"Está a ser criada a factura"
67
+ paymill_log_action_success,"Acção bem sucedida"
68
+ paymill_checkout_desc,"Texto descritivo"
69
+ "General undefined response.","General undefined response."
70
+ "Still waiting on something.","Still waiting on something."
71
+ "General success response.","General success response."
72
+ "General problem with data.","General problem with data."
73
+ "General problem with payment data.","General problem with payment data."
74
+ "Problem with credit card data.","Problem with credit card data."
75
+ "Problem with cvv.","Problem with cvv."
76
+ "Card expired or not yet valid.","Card expired or not yet valid."
77
+ "Limit exceeded.","Limit exceeded."
78
+ "Card invalid.","Card invalid."
79
+ "Expiry date not valid.","Expiry date not valid."
80
+ "Credit card brand required.","Credit card brand required."
81
+ "Problem with bank account data.","Problem with bank account data."
82
+ "Bank account data combination mismatch.","Bank account data combination mismatch."
83
+ "User authentication failed.","User authentication failed."
84
+ "Problem with 3d secure data.","Problem with 3d secure data."
85
+ "Currency / amount mismatch","Currency / amount mismatch"
86
+ "Problem with input data.","Problem with input data."
87
+ "Amount too low or zero.","Amount too low or zero."
88
+ "Usage field too long.","Usage field too long."
89
+ "Currency not allowed.","Currency not allowed."
90
+ "General problem with backend.","General problem with backend."
91
+ "Country blacklisted.","Country blacklisted."
92
+ "Technical error with credit card.","Technical error with credit card."
93
+ "Error limit exceeded.","Error limit exceeded."
94
+ "Card declined by authorization system.","Card declined by authorization system."
95
+ "Manipulation or stolen card.","Manipulation or stolen card."
96
+ "Card restricted.","Card restricted"
97
+ "Invalid card configuration data.","Invalid card configuration data."
98
+ "Technical error with bank account.","Technical error with bank account."
99
+ "Card blacklisted.","Card blacklisted."
100
+ "Technical error with 3D secure.","Technical error with 3D secure."
101
+ "Decline because of risk issues.","Decline because of risk issues."
102
+ "General timeout.","General timeout."
103
+ "Timeout on side of the acquirer.","Timeout on side of the acquirer."
104
+ "Risk management transaction timeout.","Risk management transaction timeout"
105
+ "Duplicate transaction.","Duplicate transaction."
106
+ PAYMILL_internal_server_error,"The communication with the psp failed."
107
+ PAYMILL_invalid_public_key,"The public key is invalid."
108
+ PAYMILL_invalid_payment_data,"Paymentmethod, card type currency or country not authorized"
109
+ PAYMILL_unknown_error,"Unknown Error"
110
+ PAYMILL_3ds_cancelled,"3-D Secure process has been canceled by the user"
111
+ PAYMILL_field_invalid_card_exp_year,"Invalid Expiry Year"
112
+ PAYMILL_field_invalid_card_exp_month,"Invalid Expiry Month"
113
+ PAYMILL_field_invalid_card_exp,"Credit Card not valid"
114
+ PAYMILL_field_invalid_amount_int,"Missing amount for 3-D Secure"
115
+ PAYMILL_field_field_invalid_amount,"Missing amount for 3-D Secure"
116
+ PAYMILL_field_field_field_invalid_currency,"Invalid currency for 3-D Secure"
117
+ PAYMILL_field_invalid_iban,"Invalid IBAN"
118
+ PAYMILL_field_invalid_bic,"Invalid BIC"
119
+ PAYMILL_field_invalid_country,"Invalid country for sepa transactions"
120
+ PAYMILL_field_invalid_bank_data,"Invalid bank data"
121
+ paymill_send_invoice_mail,"Enviar factura por correio"
122
+ paymill_error_text_invalid_iban_elv,"Por favor insira um IBAN válido"
123
+ paymill_error_text_invalid_bic,"Por favor insira um BIC válido"
124
+ paymill_accepted_creditcards,"Marcas de Cartão de Crédito Aceites"
125
+ paymill_feedback_error_directdebit_number_iban,"Indique um BIC/número de identificação bancária válido"
126
+ paymill_feedback_error_directdebit_bankcode_bic,"Indique um IBAN/número de conta válido"
127
+ paymill_prenotification,"Dias até ao débito"
128
+ paymill_prenotification_text,"O débito direto é feito na seguinte data:"
129
+ paymill_show_creditcards,"Show creditcard logos"
130
+ paymill_select_creditcards,"Select creditcard logos"
131
+ paymill_base_or_order_currency, "Shop base currency"
132
+ paymill_paymill_base_or_order_currency_tooltip, "The currency which should be used to create and manage the order, shop base or order currency"
133
+ base_currency, "base currency"
134
+ order_currency, "order currency"
135
+ paymill_token_creation_identifier_id, "Button selector for token creation"
136
+ paymill_token_creation_identifier_id_tooltip, "You can add a prototype selector to identify your checkout button, to this button a click event for the token creation is added."
137
+ paymill_expert_settings, "Expert settings"
138
+ paymill_backend_hook_id, "Hook ID"
139
+ paymill_backend_hook_event_types, "Event types"
140
+ paymill_backend_hook_target, "Target"
141
+ paymill_backend_hook_live, "Live or Test"
142
+ hook_url, "Hook URL"
143
+ hook_types, "Event types"
144
+ hook_data, "Hook data"
145
+ save_hook, "save hook"
146
+ paymill_hook_action_success, "The delete was successful"
147
+ paymill_error_text_no_entry_selected, "No entry selected"
app/locale/pt_PT/Paymill_Paymill.csv ADDED
@@ -0,0 +1,147 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ paymill_Amount,Valor
2
+ paymill_accepted_currency,"Moedas aceites"
3
+ paymill_opt_Enabled,Ativar
4
+ paymill_opt_Countries,"Países aceites"
5
+ paymill_Activate_Debugging,"Ativar a depuração"
6
+ paymill_fc_active,"Ativar o checkout rápido"
7
+ paymill_Activate_Logging,"Ativar o registo."
8
+ paymill_preAuth_active,"Pré-autorize as transações durante o checkout. A cobrança será realizada ao gerar as faturas."
9
+ paymill_private_key_comment,"Você pode encontrar a sua chave privada no cockpit da PAYMILL."
10
+ paymill_Private_Key,"Chave privada"
11
+ paymill_public_key_comment,"Você pode encontrar a sua chave pública no cockpit da PAYMILL."
12
+ paymill_Public_Key,"Chave pública"
13
+ paymill_Show_Label,"Exibir o selo PAYMILL durante o checkout."
14
+ paymill_opt_Sort,Sequência
15
+ paymill_token_tolerace_tooltip,"Valor que será sobretaxado ao gerar o Token PAYMILL. Isto serve para evitar desvios do 3-D secure."
16
+ paymill_token_tolerace_comment,"Valor que será sobretaxado ao gerar o Token PAYMILL. Isto serve para evitar desvios do 3-D secure."
17
+ paymill_token_tolerace,"Valor de tolerância do token"
18
+ paymill_Currency,Moeda
19
+ paymill_error_text_invalid_cvc,"CVC inválido"
20
+ PAYMILL_field_invalid_card_cvc,"CVC inválido"
21
+ paymill_error_text_invalid_holder_cc,"Por favor, introduza o nome do titular do cartão."
22
+ PAYMILL_field_invalid_card_holder,"Por favor, introduza o nome do titular do cartão."
23
+ paymill_error_text_invalid_number_cc,"Por favor, introduza um número de cartão de crédito válido."
24
+ PAYMILL_field_invalid_card_number,"Por favor, introduza um número de cartão de crédito válido."
25
+ paymill_error_text_invalid_expdate,"Data de validade inválida"
26
+ PAYMILL_field_invalid_bank_code,"Por favor, introduza um código bancário de débito direto válido."
27
+ paymill_error_text_invalid_bankcode,"Por favor, introduza um código bancário de débito direto válido."
28
+ paymill_error_text_invalid_holder_elv,"Por favor, introduza o nome do titular da conta de débito direto"
29
+ PAYMILL_field_invalid_account_holder,"Por favor, introduza o nome do titular da conta de débito direto"
30
+ paymill_error_text_invalid_number_elv,"Por favor, introduza um número de conta de débito direto válido"
31
+ PAYMILL_field_invalid_account_number,"Por favor, introduza um número de conta de débito direto válido"
32
+ paymill_error_text_invalid_payment,"O método de pagamento não pode ser identificado. Por favor, contacte o apoio ao cliente."
33
+ paymill_dialog_confirm,"Tem a certeza?"
34
+ paymill_slogan,"Pagamentos com cartão de crédito seguros fornecidos por"
35
+ paymill_slogan_elv,"Débito direto fornecido por"
36
+ paymill_credit_card,"Cartão de crédito"
37
+ paymill_creditcard,"Cartão de crédito"
38
+ paymill_3ds_cancel,Cancelar
39
+ paymill_Cvc,CVC
40
+ paymill_Holder,"Titular do cartão"
41
+ paymill_Number,"Número do cartão"
42
+ paymill_Date,"Válido até"
43
+ paymill_cvc_tooltip,"O código CVV ou CVC é uma funcionalidade de segurança dos cartões de crédito. Normalmente é um número com três ou quatro dígitos. Nos cartões de crédito VISA, é chamado de código CVV. O mesmo código pode ser encontrado nos cartões de crédito MasterCard - onde no entanto é chamado de CVC. CVC é uma abreviatura para ""Código de Validação do Cartão"". O código CVV, por outro lado, é uma abreviatura para ""Código para Valor de Validação do Cartão"". De forma semelhante à MasterCard e à Visa, outras marcas tais como o Diners Club, Discover e JCB contêm um número de três dígitos que normalmente pode ser encontrado na parte de trás do cartão de crédito. Existem cartões MAESTRO com e sem um CVV de três dígitos. No caso de ser utilizado um cartão MAESTRO sem CVV, é possível introduzir 000 no formulário. A American Express utiliza o CID (número de identificação do cartão). O CID é um número de quatro dígitos que pode ser encontrado na parte da frente do cartão, no topo à direita do número do cartão de crédito."
44
+ paymill_directdebit,"Débito direto"
45
+ paymill_direct_debit,"Débito direto"
46
+ paymill_bankcode,"Código do banco"
47
+ paymill_account,"Número da conta"
48
+ paymill_backend_log_entry_date,"Data de entrada"
49
+ paymill_backend_log_dev_info,"Informar o programador"
50
+ paymill_backend_log_id,Identificação
51
+ paymill_backend_log_merchant_info,"Informação do comerciante"
52
+ paymill_log,"Registo PAYMILL"
53
+ paymill_backend_log_version,"Versão do módulo"
54
+ paymill_credit_card_label,"Pagamentos por cartão de crédito PAYMILL"
55
+ paymill_direct_debit_label,"Pagamentos por Débito direto PAYMILL"
56
+ paymill_activate_sepa,"Mostrar formulário SEPA"
57
+ paymill_Basic_Setting,"Definições Básicas do Paymill"
58
+ paymill_iban,IBAN
59
+ paymill_bic,BIC
60
+ paymill_public_key_tooltip,"Por favor introduza uma chave pública válida"
61
+ paymill_private_key_tooltip,"Por favor introduza uma chave privada válida"
62
+ paymill_error_text_invalid_token,"Ocorreu o seguinte erro:"
63
+ paymill_error_text_no_entry_selected,"Seleccione uma entrada"
64
+ paymill_action_delete,"Eliminar entrada"
65
+ paymill_backend_log_dev_info_additional,"Informações adicionais acerca do desenvolvimento"
66
+ paymill_checkout_generating_invoice,"Está a ser criada a factura"
67
+ paymill_log_action_success,"Acção bem sucedida"
68
+ paymill_checkout_desc,"Texto descritivo"
69
+ "General undefined response.","General undefined response."
70
+ "Still waiting on something.","Still waiting on something."
71
+ "General success response.","General success response."
72
+ "General problem with data.","General problem with data."
73
+ "General problem with payment data.","General problem with payment data."
74
+ "Problem with credit card data.","Problem with credit card data."
75
+ "Problem with cvv.","Problem with cvv."
76
+ "Card expired or not yet valid.","Card expired or not yet valid."
77
+ "Limit exceeded.","Limit exceeded."
78
+ "Card invalid.","Card invalid."
79
+ "Expiry date not valid.","Expiry date not valid."
80
+ "Credit card brand required.","Credit card brand required."
81
+ "Problem with bank account data.","Problem with bank account data."
82
+ "Bank account data combination mismatch.","Bank account data combination mismatch."
83
+ "User authentication failed.","User authentication failed."
84
+ "Problem with 3d secure data.","Problem with 3d secure data."
85
+ "Currency / amount mismatch","Currency / amount mismatch"
86
+ "Problem with input data.","Problem with input data."
87
+ "Amount too low or zero.","Amount too low or zero."
88
+ "Usage field too long.","Usage field too long."
89
+ "Currency not allowed.","Currency not allowed."
90
+ "General problem with backend.","General problem with backend."
91
+ "Country blacklisted.","Country blacklisted."
92
+ "Technical error with credit card.","Technical error with credit card."
93
+ "Error limit exceeded.","Error limit exceeded."
94
+ "Card declined by authorization system.","Card declined by authorization system."
95
+ "Manipulation or stolen card.","Manipulation or stolen card."
96
+ "Card restricted.","Card restricted"
97
+ "Invalid card configuration data.","Invalid card configuration data."
98
+ "Technical error with bank account.","Technical error with bank account."
99
+ "Card blacklisted.","Card blacklisted."
100
+ "Technical error with 3D secure.","Technical error with 3D secure."
101
+ "Decline because of risk issues.","Decline because of risk issues."
102
+ "General timeout.","General timeout."
103
+ "Timeout on side of the acquirer.","Timeout on side of the acquirer."
104
+ "Risk management transaction timeout.","Risk management transaction timeout"
105
+ "Duplicate transaction.","Duplicate transaction."
106
+ PAYMILL_internal_server_error,"The communication with the psp failed."
107
+ PAYMILL_invalid_public_key,"The public key is invalid."
108
+ PAYMILL_invalid_payment_data,"Paymentmethod, card type currency or country not authorized"
109
+ PAYMILL_unknown_error,"Unknown Error"
110
+ PAYMILL_3ds_cancelled,"3-D Secure process has been canceled by the user"
111
+ PAYMILL_field_invalid_card_exp_year,"Invalid Expiry Year"
112
+ PAYMILL_field_invalid_card_exp_month,"Invalid Expiry Month"
113
+ PAYMILL_field_invalid_card_exp,"Credit Card not valid"
114
+ PAYMILL_field_invalid_amount_int,"Missing amount for 3-D Secure"
115
+ PAYMILL_field_field_invalid_amount,"Missing amount for 3-D Secure"
116
+ PAYMILL_field_field_field_invalid_currency,"Invalid currency for 3-D Secure"
117
+ PAYMILL_field_invalid_iban,"Invalid IBAN"
118
+ PAYMILL_field_invalid_bic,"Invalid BIC"
119
+ PAYMILL_field_invalid_country,"Invalid country for sepa transactions"
120
+ PAYMILL_field_invalid_bank_data,"Invalid bank data"
121
+ paymill_send_invoice_mail,"Enviar factura por correio"
122
+ paymill_error_text_invalid_iban_elv,"Por favor insira um IBAN válido"
123
+ paymill_error_text_invalid_bic,"Por favor insira um BIC válido"
124
+ paymill_accepted_creditcards,"Marcas de Cartão de Crédito Aceites"
125
+ paymill_feedback_error_directdebit_number_iban,"Indique um BIC/número de identificação bancária válido"
126
+ paymill_feedback_error_directdebit_bankcode_bic,"Indique um IBAN/número de conta válido"
127
+ paymill_prenotification,"Dias até ao débito"
128
+ paymill_prenotification_text,"O débito direto é feito na seguinte data:"
129
+ paymill_show_creditcards,"Show creditcard logos"
130
+ paymill_select_creditcards,"Select creditcard logos"
131
+ paymill_base_or_order_currency, "Shop base currency"
132
+ paymill_paymill_base_or_order_currency_tooltip, "The currency which should be used to create and manage the order, shop base or order currency"
133
+ base_currency, "base currency"
134
+ order_currency, "order currency"
135
+ paymill_token_creation_identifier_id, "Button selector for token creation"
136
+ paymill_token_creation_identifier_id_tooltip, "You can add a prototype selector to identify your checkout button, to this button a click event for the token creation is added."
137
+ paymill_expert_settings, "Expert settings"
138
+ paymill_backend_hook_id, "Hook ID"
139
+ paymill_backend_hook_event_types, "Event types"
140
+ paymill_backend_hook_target, "Target"
141
+ paymill_backend_hook_live, "Live or Test"
142
+ hook_url, "Hook URL"
143
+ hook_types, "Event types"
144
+ hook_data, "Hook data"
145
+ save_hook, "save hook"
146
+ paymill_hook_action_success, "The delete was successful"
147
+ paymill_error_text_no_entry_selected, "No entry selected"
js/paymill/Paymill.js CHANGED
@@ -29,7 +29,14 @@ Paymill.prototype.validate = function()
29
  Paymill.prototype.generateToken = function()
30
  {
31
  if (this.validate()) {
32
- new Validation($$('#paymill_creditcard_cvc')[0].form.id).validate();
 
 
 
 
 
 
 
33
  var data = this.methodInstance.getTokenParameter();
34
  this.debug("Generating Token");
35
  this.debug(data);
@@ -43,9 +50,17 @@ Paymill.prototype.generateToken = function()
43
  Paymill.prototype.generateTokenOnSubmit = function()
44
  {
45
  if (this.helper.getElementValue('.paymill-info-fastCheckout-' + this.helper.getShortCode()) !== 'true') {
46
- if (new Validation($$('#paymill_creditcard_cvc')[0].form.id).validate()) {
47
- this.generateToken();
48
- }
 
 
 
 
 
 
 
 
49
  }
50
  };
51
 
29
  Paymill.prototype.generateToken = function()
30
  {
31
  if (this.validate()) {
32
+ if (this.helper.getMethodCode() === 'paymill_creditcard') {
33
+ new Validation($$('#paymill_creditcard_cvc')[0].form.id).validate();
34
+ }
35
+
36
+ if (this.helper.getMethodCode() === 'paymill_directdebit') {
37
+ new Validation($$('#paymill_directdebit_holdername')[0].form.id).validate();
38
+ }
39
+
40
  var data = this.methodInstance.getTokenParameter();
41
  this.debug("Generating Token");
42
  this.debug(data);
50
  Paymill.prototype.generateTokenOnSubmit = function()
51
  {
52
  if (this.helper.getElementValue('.paymill-info-fastCheckout-' + this.helper.getShortCode()) !== 'true') {
53
+ if (this.helper.getMethodCode() === 'paymill_creditcard') {
54
+ if (new Validation($$('#paymill_creditcard_cvc')[0].form.id).validate()) {
55
+ this.generateToken();
56
+ }
57
+ }
58
+
59
+ if (this.helper.getMethodCode() === 'paymill_directdebit') {
60
+ if (new Validation($$('#paymill_directdebit_holdername')[0].form.id).validate()) {
61
+ this.generateToken();
62
+ }
63
+ }
64
  }
65
  };
66
 
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Paymill_Paymill</name>
4
- <version>3.8.1</version>
5
  <stability>stable</stability>
6
  <license>Open Software License</license>
7
  <channel>community</channel>
@@ -13,11 +13,11 @@ The Paymill Magento extension provides a credit card form and a direct debit for
13
  &lt;br /&gt;&lt;br /&gt;&#xD;
14
  IMPORTANT: Only use the latest version.&#xD;
15
  </description>
16
- <notes> * hotfix token creation creditcard with prototype selector</notes>
17
  <authors><author><name>PayIntelligent</name><user>Paymill</user><email>community@paymill.de</email></author></authors>
18
- <date>2014-10-08</date>
19
- <time>16:25:55</time>
20
- <contents><target name="magecommunity"><dir name="Paymill"><dir><dir name="Paymill"><dir name="Block"><dir name="Adminhtml"><dir name="Log"><file name="Grid.php" hash="7d74f94403297eeb551272ad5c94513f"/><dir name="View"><file name="Plane.php" hash="179e10aea0213d2caed595ae9111b993"/><file name="Tabs.php" hash="d16d9748921a34067242eaf92d6f299e"/></dir><file name="View.php" hash="af850dd16c3e7505a69a6cb3ca3fbc27"/></dir><file name="Log.php" hash="02930fb46a2a4569176ceb29c45037e8"/></dir><dir name="Payment"><dir name="Form"><file name="PaymentFormAbstract.php" hash="b42edc338110bd2f81fcf85169d3d82c"/><file name="PaymentFormCreditcard.php" hash="037ab8502605b450ca5b839bfe074baf"/><file name="PaymentFormDirectdebit.php" hash="ea9ab99268994373866162d432d27556"/></dir><dir name="Info"><file name="PaymentFormCreditcard.php" hash="b268d26aec4a24756564e61efc0c7bca"/><file name="PaymentFormDirectdebit.php" hash="d3a3e0384aa932972a97bc8f719ff545"/></dir></dir></dir><dir name="Helper"><file name="CustomerHelper.php" hash="5aa5cd0dd7f64764ae047b42fe037539"/><file name="Data.php" hash="8e55041f6bb52f1e142b86dfa486b85e"/><file name="FastCheckoutHelper.php" hash="d8577264d2bd9d60b231e12377b8385c"/><file name="LoggingHelper.php" hash="53ea7f4d5c3af8de149a06dbe37ac061"/><file name="OptionHelper.php" hash="6bfe33ab13f87c300c1f4a963e70a670"/><file name="PaymentHelper.php" hash="1dfdf3e9f512a3a6e53b41fbc1e3f377"/><file name="RefundHelper.php" hash="bb07ba1e64ede0745e6f403415380966"/></dir><dir name="Model"><file name="Fastcheckout.php" hash="e3b585d2f3265300f08fa44a4e9ccd7b"/><dir name="Log"><file name="Search.php" hash="0ca873e4779126dabf04a413cf53b619"/></dir><file name="Log.php" hash="0662d814e53bd2eeb6f5c906c16ad971"/><dir name="Method"><file name="MethodModelAbstract.php" hash="0e2bd9ac95a26288a7aa05f26919a242"/><file name="MethodModelCreditcard.php" hash="01750a3ffb74f38e0ca6412f3146751c"/><file name="MethodModelDirectdebit.php" hash="1a8ea1470b76545b7e04e418b0be432f"/></dir><dir name="Mysql4"><dir name="Fastcheckout"><file name="Collection.php" hash="14d4aa413ec952fd2452f08ab2a208f6"/></dir><file name="Fastcheckout.php" hash="9b19c307417862938442ddd6789f2b43"/><dir name="Log"><file name="Collection.php" hash="cf4d8fec68a4cc44b2e47bf69e014cf3"/></dir><file name="Log.php" hash="bdf0bf498c1214955e20e72185e5320f"/></dir><file name="Observer.php" hash="d0ab2a1896e65e93c505a3c6ec7153ca"/><dir name="Source"><dir name="Creditcard"><file name="Creditcards.php" hash="03c3a75891b3883f2c97c2b06160f52c"/></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="LogController.php" hash="fe634fc07d161f160ae060600561a0b1"/></dir><file name="TokenController.php" hash="8b606f0728fd556a6180ebeb042dbf13"/></dir><dir name="etc"><file name="adminhtml.xml" hash="402c36431d690ffa9b7eae074cadfb4e"/><file name="config.xml" hash="1e4d9f55dc406f236fd7bcc403f5822f"/><file name="system.xml" hash="4a63a7d065c2569e73e26eb30f161a90"/></dir><dir name="sql"><dir name="paymill_setup"><file name="mysql4-install-3.0.0.php" hash="37e5e1850e143315779e30bd1b45f277"/></dir></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="base"><dir name="default"><dir name="template"><dir name="paymill"><dir><dir name="log"><file name="view.phtml" hash="2d4df28de6e1cb4701963db3d0c0545c"/></dir><dir name="payment"><dir name="info"><file name="creditcard.phtml" hash="8d8f6f828173f145dd3cb29f9770dca9"/><file name="creditcard_pdf.phtml" hash="68febe619bb9918b785dcbb0593c4ebe"/><file name="directdebit.phtml" hash="cd2ea623c0bc54d208f0f30f032da151"/><file name="directdebit_pdf.phtml" hash="5a2e5c36d4f4702e5f9be4b5affe3421"/></dir></dir></dir></dir></dir><dir name="layout"><file name="paymill.xml" hash="fcc95f6e7c375fee779178a0f9f1a1d8"/></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="paymill"><dir><dir name="payment"><dir name="form"><file name="creditcard.phtml" hash="f97012161e4b69914c9f1f07ddbd4f77"/><file name="directdebit.phtml" hash="21dbf146de257ca6ab4aafd7bc816a1b"/></dir><dir name="info"><file name="creditcard.phtml" hash="42f875eb1b6e3e6151ddf152ef0bf13a"/><file name="directdebit.phtml" hash="7117525384b82b84fbbbe1f42c52328c"/></dir></dir></dir></dir></dir><dir name="layout"><file name="paymill.xml" hash="81b932339b00b90ed1fa4736c7f85537"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Paymill_Paymill.xml" hash="d36d3af5f5752dcf87517272ddb9af53"/></dir></target><target name="magelocale"><dir name="de_DE"><file name="Paymill_Paymill.csv" hash="3c9ad7578d515b90f3996461da50e5a9"/></dir><dir name="en_GB"><file name="Paymill_Paymill.csv" hash="55d7320407195bc4482ca9fee4408008"/></dir><dir name="en_US"><file name="Paymill_Paymill.csv" hash="55d7320407195bc4482ca9fee4408008"/></dir><dir name="es_ES"><file name="Paymill_Paymill.csv" hash="05f4c4af396aa59bedd10d07a52e45e4"/></dir><dir name="de_AT"><file name="Paymill_Paymill.csv" hash="3c9ad7578d515b90f3996461da50e5a9"/></dir><dir name="de_CH"><file name="Paymill_Paymill.csv" hash="3c9ad7578d515b90f3996461da50e5a9"/></dir><dir name="en_AU"><file name="Paymill_Paymill.csv" hash="55d7320407195bc4482ca9fee4408008"/></dir><dir name="en_CA"><file name="Paymill_Paymill.csv" hash="55d7320407195bc4482ca9fee4408008"/></dir><dir name="en_IE"><file name="Paymill_Paymill.csv" hash="55d7320407195bc4482ca9fee4408008"/></dir><dir name="en_NZ"><file name="Paymill_Paymill.csv" hash="55d7320407195bc4482ca9fee4408008"/></dir><dir name="en_ZA"><file name="Paymill_Paymill.csv" hash="55d7320407195bc4482ca9fee4408008"/></dir><dir name="es_AR"><file name="Paymill_Paymill.csv" hash="f693a6ebb83c71c5c0acbe3c68729ee7"/></dir></target><target name="mage"><dir name="js"><dir name="paymill"><file name="BrandDetection.js" hash="398d4b916fbbce5e84e6788517a02064"/><file name="Creditcard.js" hash="5cddb80ecb2b8b9701ea197ab428a0e0"/><file name="Elv.js" hash="67b3555e4d51284f5ef7422a7e1aa15c"/><file name="Iban.js" hash="c05a4791a0cc414f2f7cc720fcd665ec"/><file name="Paymill.js" hash="43d03f01c6f9897a0e7d2c7cda1c1ea0"/><file name="PaymillHelper.js" hash="59bc5d786dd201a7530b8e7ce8107bec"/></dir></dir></target><target name="magelib"><dir name="Services"><dir><dir name="Paymill"><dir name="Apiclient"><file name="Curl.php" hash="cce77823a94425aaa2b421e63f130422"/><file name="Interface.php" hash="349309458455e550c562fb17cf23f4a6"/><file name="paymill.crt" hash="51e14b4c734e450402ea2cf73f2aee0f"/></dir><file name="Base.php" hash="141fa330c6894ff15faf413be19bf209"/><file name="Clients.php" hash="c8eb5fe8780f2da7b5eb173a5be43c7f"/><file name="Exception.php" hash="9beffb75d92c0de3c1c7ea5b33930fff"/><file name="LoggingInterface.php" hash="46ebeede1da14b761c54a18aff6c3b79"/><file name="Offers.php" hash="e2dcf9c9a54d9aba16e1caf02b438098"/><file name="PaymentProcessor.php" hash="4ee5f6e16dfdefaa8dc6565cfce2d271"/><file name="Payments.php" hash="d2a6d0679701d100c9e876f88215455c"/><file name="Preauthorizations.php" hash="597f7228584f32ee42d8916ae098b454"/><file name="Refunds.php" hash="e909af53108426a9e178417db850675f"/><file name="Subscriptions.php" hash="b72a31c4041029e08df1d7e85aa7391b"/><file name="Transactions.php" hash="382c12f290752b7c50e2001cdf5cd4a8"/><file name="Webhooks.php" hash="5fd2e6baf7bb0dc3ad8edb1eab41fb91"/></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="paymill"><file name="logo.css" hash="a0597a469bd0e0354ac4e561621d6584"/></dir></dir><dir name="images"><dir name="paymill"><file name="ajax-loader.gif" hash="07c56b266e277696ee3d9e3ffd627450"/><file name="icon_32x20_amex.png" hash="42c5fb43b4b603804b50da9761927d40"/><file name="icon_32x20_carta-si.png" hash="236ea747b59067b1d25cdc317e52aae5"/><file name="icon_32x20_carte-bleue.png" hash="187f19af694d83bd745c278845c3b3cd"/><file name="icon_32x20_china-unionpay.png" hash="6c9d16d6c65c0da5ff11e8ae13b01d15"/><file name="icon_32x20_dankort.png" hash="938df2f2100d1182dfdd677eb6a0bded"/><file name="icon_32x20_diners-club.png" hash="0a7a8fc8f679ccf05d91298c9968629c"/><file name="icon_32x20_dinersclub.png" hash="0a7a8fc8f679ccf05d91298c9968629c"/><file name="icon_32x20_discover.png" hash="4fe8ef419087bed97cddbdeb251b847c"/><file name="icon_32x20_jcb.png" hash="774a040f938c5566fa3fddfa840d4743"/><file name="icon_32x20_maestro.png" hash="a6ffd22c9bbedb603449e2aa6136dbd1"/><file name="icon_32x20_mastercard.png" hash="09aef6dcbc50038605b7c0e5a38eb76e"/><file name="icon_32x20_unionpay.png" hash="6c9d16d6c65c0da5ff11e8ae13b01d15"/><file name="icon_32x20_visa.png" hash="e6d54e5c0120202eb5757bcfe499d73b"/><file name="icon_paymill.png" hash="303983a288b45cc7ddc5b88ad2eedd51"/></dir></dir></dir></dir></dir></target><target name="magelocal"><dir name="es_CL"><file name="Paymill_Paymill.csv" hash=""/></dir><dir name="es_CO"><file name="Paymill_Paymill.csv" hash=""/></dir><dir name="es_CR"><file name="Paymill_Paymill.csv" hash=""/></dir><dir name="es_MX"><file name="Paymill_Paymill.csv" hash=""/></dir><dir name="es_PE"><file name="Paymill_Paymill.csv" hash=""/></dir><dir name="es_VE"><file name="Paymill_Paymill.csv" hash=""/></dir><dir name="fr_CA"><file name="Paymill_Paymill.csv" hash=""/></dir><dir name="fr_FR"><file name="Paymill_Paymill.csv" hash=""/></dir><dir name="it_CH"><file name="Paymill_Paymill.csv" hash=""/></dir><dir name="it_IT"><file name="Paymill_Paymill.csv" hash=""/></dir><dir name="pt_BR"><file name="Paymill_Paymill.csv" hash=""/></dir><dir name="pt_PT"><file name="Paymill_Paymill.csv" hash=""/></dir></target></contents>
21
  <compatible/>
22
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
23
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Paymill_Paymill</name>
4
+ <version>3.9.0</version>
5
  <stability>stable</stability>
6
  <license>Open Software License</license>
7
  <channel>community</channel>
13
  &lt;br /&gt;&lt;br /&gt;&#xD;
14
  IMPORTANT: Only use the latest version.&#xD;
15
  </description>
16
+ <notes> * add webhook support for the following events (refund.succeeded, transaction.succeeded, chargeback.executed)</notes>
17
  <authors><author><name>PayIntelligent</name><user>Paymill</user><email>community@paymill.de</email></author></authors>
18
+ <date>2014-10-14</date>
19
+ <time>13:19:06</time>
20
+ <contents><target name="magecommunity"><dir name="Paymill"><dir><dir name="Paymill"><dir name="Block"><dir name="Adminhtml"><dir name="Hook"><dir name="Edit"><file name="Form.php" hash="8e0928b3c817110cae53c179132d679a"/></dir><file name="Edit.php" hash="3201ba9db687f8993f893b4c22123cf4"/><file name="Grid.php" hash="1926f09019fc80dacead18055380c128"/></dir><file name="Hook.php" hash="1f8318e93fca93cfd0cdcb9c4b36c9c8"/><dir name="Log"><file name="Grid.php" hash="7d74f94403297eeb551272ad5c94513f"/><dir name="View"><file name="Plane.php" hash="179e10aea0213d2caed595ae9111b993"/><file name="Tabs.php" hash="d16d9748921a34067242eaf92d6f299e"/></dir><file name="View.php" hash="af850dd16c3e7505a69a6cb3ca3fbc27"/></dir><file name="Log.php" hash="02930fb46a2a4569176ceb29c45037e8"/></dir><dir name="Payment"><dir name="Form"><file name="PaymentFormAbstract.php" hash="b42edc338110bd2f81fcf85169d3d82c"/><file name="PaymentFormCreditcard.php" hash="037ab8502605b450ca5b839bfe074baf"/><file name="PaymentFormDirectdebit.php" hash="ea9ab99268994373866162d432d27556"/></dir><dir name="Info"><file name="PaymentFormCreditcard.php" hash="b268d26aec4a24756564e61efc0c7bca"/><file name="PaymentFormDirectdebit.php" hash="d3a3e0384aa932972a97bc8f719ff545"/></dir></dir></dir><dir name="Helper"><file name="CustomerHelper.php" hash="5aa5cd0dd7f64764ae047b42fe037539"/><file name="Data.php" hash="8e55041f6bb52f1e142b86dfa486b85e"/><file name="FastCheckoutHelper.php" hash="d8577264d2bd9d60b231e12377b8385c"/><file name="HookHelper.php" hash="7074614ef750704d8df8cbb5cc7aa975"/><file name="LoggingHelper.php" hash="53ea7f4d5c3af8de149a06dbe37ac061"/><file name="OptionHelper.php" hash="6bfe33ab13f87c300c1f4a963e70a670"/><file name="PaymentHelper.php" hash="fbdecc9567b26e32b8c1383fbf987ce7"/><file name="RefundHelper.php" hash="64ddf9363deed8fb983eb3fc14bee0f8"/></dir><dir name="Model"><file name="Fastcheckout.php" hash="e3b585d2f3265300f08fa44a4e9ccd7b"/><dir name="Log"><file name="Search.php" hash="0ca873e4779126dabf04a413cf53b619"/></dir><file name="Log.php" hash="0662d814e53bd2eeb6f5c906c16ad971"/><dir name="Method"><file name="MethodModelAbstract.php" hash="42bbdeaa31117d17262ae099e089f385"/><file name="MethodModelCreditcard.php" hash="01750a3ffb74f38e0ca6412f3146751c"/><file name="MethodModelDirectdebit.php" hash="1a8ea1470b76545b7e04e418b0be432f"/></dir><dir name="Mysql4"><dir name="Fastcheckout"><file name="Collection.php" hash="14d4aa413ec952fd2452f08ab2a208f6"/></dir><file name="Fastcheckout.php" hash="9b19c307417862938442ddd6789f2b43"/><dir name="Log"><file name="Collection.php" hash="cf4d8fec68a4cc44b2e47bf69e014cf3"/></dir><file name="Log.php" hash="bdf0bf498c1214955e20e72185e5320f"/></dir><file name="Observer.php" hash="d12acac2da80782b019772bf5543a6bf"/><dir name="Source"><dir name="Creditcard"><file name="Creditcards.php" hash="03c3a75891b3883f2c97c2b06160f52c"/></dir><file name="Hooks.php" hash="65042602cd494a4842a4d0d61188113a"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="HookController.php" hash="e8fb264f19b652b64f4e1fb3e74d9944"/><file name="LogController.php" hash="e75064047b35896e57ac8e564bd0ff5a"/></dir><file name="HookController.php" hash="f76932e18a060c9d7d812fe9a38c64cd"/><file name="TokenController.php" hash="8b606f0728fd556a6180ebeb042dbf13"/></dir><dir name="etc"><file name="adminhtml.xml" hash="12f6a03b55bd9f65daae785b31fe0ca5"/><file name="config.xml" hash="63ff2a5dea472584eb38a56564321c98"/><file name="system.xml" hash="f22af1ca762821d268fcee846f3f5cc0"/></dir><dir name="sql"><dir name="paymill_setup"><file name="mysql4-install-3.0.0.php" hash="37e5e1850e143315779e30bd1b45f277"/></dir></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="base"><dir name="default"><dir name="template"><dir name="paymill"><dir><dir name="log"><file name="view.phtml" hash="2d4df28de6e1cb4701963db3d0c0545c"/></dir><dir name="payment"><dir name="info"><file name="creditcard.phtml" hash="8d8f6f828173f145dd3cb29f9770dca9"/><file name="creditcard_pdf.phtml" hash="68febe619bb9918b785dcbb0593c4ebe"/><file name="directdebit.phtml" hash="cd2ea623c0bc54d208f0f30f032da151"/><file name="directdebit_pdf.phtml" hash="5a2e5c36d4f4702e5f9be4b5affe3421"/></dir></dir></dir></dir></dir><dir name="layout"><file name="paymill.xml" hash="4e8dea9280199547d2b3dd96ca90bb53"/></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="paymill"><dir><dir name="payment"><dir name="form"><file name="creditcard.phtml" hash="f97012161e4b69914c9f1f07ddbd4f77"/><file name="directdebit.phtml" hash="21dbf146de257ca6ab4aafd7bc816a1b"/></dir><dir name="info"><file name="creditcard.phtml" hash="42f875eb1b6e3e6151ddf152ef0bf13a"/><file name="directdebit.phtml" hash="7117525384b82b84fbbbe1f42c52328c"/></dir></dir></dir></dir></dir><dir name="layout"><file name="paymill.xml" hash="81b932339b00b90ed1fa4736c7f85537"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Paymill_Paymill.xml" hash="d36d3af5f5752dcf87517272ddb9af53"/></dir></target><target name="magelocale"><dir name="de_DE"><file name="Paymill_Paymill.csv" hash="743903d4cc4497d4b53d5fd6fb74b14d"/></dir><dir name="en_GB"><file name="Paymill_Paymill.csv" hash="27e4d196344babdbda9092f75fd844bc"/></dir><dir name="en_US"><file name="Paymill_Paymill.csv" hash="27e4d196344babdbda9092f75fd844bc"/></dir><dir name="es_ES"><file name="Paymill_Paymill.csv" hash="575e2ae2f1014f6c6003904a78435226"/></dir><dir name="de_AT"><file name="Paymill_Paymill.csv" hash="743903d4cc4497d4b53d5fd6fb74b14d"/></dir><dir name="de_CH"><file name="Paymill_Paymill.csv" hash="743903d4cc4497d4b53d5fd6fb74b14d"/></dir><dir name="en_AU"><file name="Paymill_Paymill.csv" hash="27e4d196344babdbda9092f75fd844bc"/></dir><dir name="en_CA"><file name="Paymill_Paymill.csv" hash="27e4d196344babdbda9092f75fd844bc"/></dir><dir name="en_IE"><file name="Paymill_Paymill.csv" hash="27e4d196344babdbda9092f75fd844bc"/></dir><dir name="en_NZ"><file name="Paymill_Paymill.csv" hash="27e4d196344babdbda9092f75fd844bc"/></dir><dir name="en_ZA"><file name="Paymill_Paymill.csv" hash="27e4d196344babdbda9092f75fd844bc"/></dir><dir name="es_AR"><file name="Paymill_Paymill.csv" hash="9aaec0e2988ef8f8ee066c1ec9227ecb"/></dir><dir name="es_CL"><file name="Paymill_Paymill.csv" hash="575e2ae2f1014f6c6003904a78435226"/></dir><dir name="es_CO"><file name="Paymill_Paymill.csv" hash="575e2ae2f1014f6c6003904a78435226"/></dir><dir name="es_CR"><file name="Paymill_Paymill.csv" hash="575e2ae2f1014f6c6003904a78435226"/></dir><dir name="es_MX"><file name="Paymill_Paymill.csv" hash="575e2ae2f1014f6c6003904a78435226"/></dir><dir name="es_PE"><file name="Paymill_Paymill.csv" hash="575e2ae2f1014f6c6003904a78435226"/></dir><dir name="es_VE"><file name="Paymill_Paymill.csv" hash="575e2ae2f1014f6c6003904a78435226"/></dir><dir name="fr_CA"><file name="Paymill_Paymill.csv" hash="d8181b72e7d97b14c42919ce6c5b9246"/></dir><dir name="fr_FR"><file name="Paymill_Paymill.csv" hash="d8181b72e7d97b14c42919ce6c5b9246"/></dir><dir name="it_CH"><file name="Paymill_Paymill.csv" hash="c8a9c0b702742936df462932cd5efac2"/></dir><dir name="it_IT"><file name="Paymill_Paymill.csv" hash="c8a9c0b702742936df462932cd5efac2"/></dir><dir name="pt_BR"><file name="Paymill_Paymill.csv" hash="ae3e0330567c275a962f2edb164aa8c2"/></dir><dir name="pt_PT"><file name="Paymill_Paymill.csv" hash="ae3e0330567c275a962f2edb164aa8c2"/></dir></target><target name="mage"><dir name="js"><dir name="paymill"><file name="BrandDetection.js" hash="398d4b916fbbce5e84e6788517a02064"/><file name="Creditcard.js" hash="5cddb80ecb2b8b9701ea197ab428a0e0"/><file name="Elv.js" hash="67b3555e4d51284f5ef7422a7e1aa15c"/><file name="Iban.js" hash="c05a4791a0cc414f2f7cc720fcd665ec"/><file name="Paymill.js" hash="abd161d54b506eb355f43e1d0b9e8548"/><file name="PaymillHelper.js" hash="59bc5d786dd201a7530b8e7ce8107bec"/></dir></dir></target><target name="magelib"><dir name="Services"><dir><dir name="Paymill"><dir name="Apiclient"><file name="Curl.php" hash="cce77823a94425aaa2b421e63f130422"/><file name="Interface.php" hash="349309458455e550c562fb17cf23f4a6"/><file name="paymill.crt" hash="51e14b4c734e450402ea2cf73f2aee0f"/></dir><file name="Base.php" hash="141fa330c6894ff15faf413be19bf209"/><file name="Clients.php" hash="c8eb5fe8780f2da7b5eb173a5be43c7f"/><file name="Exception.php" hash="9beffb75d92c0de3c1c7ea5b33930fff"/><file name="LoggingInterface.php" hash="46ebeede1da14b761c54a18aff6c3b79"/><file name="Offers.php" hash="e2dcf9c9a54d9aba16e1caf02b438098"/><file name="PaymentProcessor.php" hash="4ee5f6e16dfdefaa8dc6565cfce2d271"/><file name="Payments.php" hash="d2a6d0679701d100c9e876f88215455c"/><file name="Preauthorizations.php" hash="597f7228584f32ee42d8916ae098b454"/><file name="Refunds.php" hash="e909af53108426a9e178417db850675f"/><file name="Subscriptions.php" hash="b72a31c4041029e08df1d7e85aa7391b"/><file name="Transactions.php" hash="382c12f290752b7c50e2001cdf5cd4a8"/><file name="Webhooks.php" hash="5fd2e6baf7bb0dc3ad8edb1eab41fb91"/></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="paymill"><file name="logo.css" hash="a0597a469bd0e0354ac4e561621d6584"/></dir></dir><dir name="images"><dir name="paymill"><file name="ajax-loader.gif" hash="07c56b266e277696ee3d9e3ffd627450"/><file name="icon_32x20_amex.png" hash="42c5fb43b4b603804b50da9761927d40"/><file name="icon_32x20_carta-si.png" hash="236ea747b59067b1d25cdc317e52aae5"/><file name="icon_32x20_carte-bleue.png" hash="187f19af694d83bd745c278845c3b3cd"/><file name="icon_32x20_china-unionpay.png" hash="6c9d16d6c65c0da5ff11e8ae13b01d15"/><file name="icon_32x20_dankort.png" hash="938df2f2100d1182dfdd677eb6a0bded"/><file name="icon_32x20_diners-club.png" hash="0a7a8fc8f679ccf05d91298c9968629c"/><file name="icon_32x20_dinersclub.png" hash="0a7a8fc8f679ccf05d91298c9968629c"/><file name="icon_32x20_discover.png" hash="4fe8ef419087bed97cddbdeb251b847c"/><file name="icon_32x20_jcb.png" hash="774a040f938c5566fa3fddfa840d4743"/><file name="icon_32x20_maestro.png" hash="a6ffd22c9bbedb603449e2aa6136dbd1"/><file name="icon_32x20_mastercard.png" hash="09aef6dcbc50038605b7c0e5a38eb76e"/><file name="icon_32x20_unionpay.png" hash="6c9d16d6c65c0da5ff11e8ae13b01d15"/><file name="icon_32x20_visa.png" hash="e6d54e5c0120202eb5757bcfe499d73b"/><file name="icon_paymill.png" hash="303983a288b45cc7ddc5b88ad2eedd51"/></dir></dir></dir></dir></dir></target></contents>
21
  <compatible/>
22
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
23
  </package>