Hipay - Version 1.1.0

Version Notes

Update payment button in the checkout
bugfix - show images in the checkout
new description payment in the checkout payment

Download this release

Release Info

Developer HiPay
Extension Hipay
Version 1.1.0
Comparing to
See all releases


Code changes from version 1.0.13 to 1.1.0

Files changed (25) hide show
  1. app/code/local/HimediaPayments/Hipay/Helper/Data.php +22 -26
  2. app/code/local/HimediaPayments/Hipay/Model/Category.php +26 -6
  3. app/code/local/HimediaPayments/Hipay/controllers/MapiController.php +76 -34
  4. app/code/local/HimediaPayments/Hipay/etc/config.xml +1 -1
  5. app/code/local/HimediaPayments/Hipay/etc/config.xml~ +0 -111
  6. app/design/frontend/base/default/template/himediapayments/hipay/form.phtml +11 -26
  7. app/design/frontend/base/default/template/himediapayments/hipay/payment.phtml +7 -33
  8. app/locale/da_DK/HimediaPayments_Hipay.csv +7 -2
  9. app/locale/de_AT/HimediaPayments_Hipay.csv +7 -2
  10. app/locale/de_CH/HimediaPayments_Hipay.csv +7 -2
  11. app/locale/de_DE/HimediaPayments_Hipay.csv +7 -2
  12. app/locale/en_US/HimediaPayments_Hipay.csv +7 -2
  13. app/locale/fr_FR/HimediaPayments_Hipay.csv +7 -2
  14. app/locale/it_IT/HimediaPayments_Hipay.csv +7 -2
  15. app/locale/nl_NL/HimediaPayments_Hipay.csv +83 -0
  16. app/locale/ru_RU/HimediaPayments_Hipay.csv +7 -2
  17. package.xml +6 -5
  18. skin/adminhtml/base/default/css/himediapayments/hipay.css +6 -6
  19. skin/adminhtml/base/default/css/himediapayments/hipay_section_logo.png +0 -0
  20. skin/adminhtml/base/default/css/himediapayments/images/hipay_section_logo.png +0 -0
  21. skin/adminhtml/base/default/css/himediapayments/images/hipay_section_logo_hover.png +0 -0
  22. skin/frontend/base/default/images/himediapayments/hipay/hipay_logo.png +0 -0
  23. skin/frontend/base/default/images/himediapayments/hipay/hipay_logo.pngOLD +0 -0
  24. skin/frontend/base/default/images/himediapayments/hipay/hipay_wallet_mg_logo.jpg +0 -0
  25. skin/frontend/base/default/images/himediapayments/hipay/payment_methods/logos-magento-wallet.png +0 -0
app/code/local/HimediaPayments/Hipay/Helper/Data.php CHANGED
@@ -217,45 +217,41 @@ class HimediaPayments_Hipay_Helper_Data extends Mage_Core_Helper_Abstract
217
  */
218
  protected function setupParams(Mage_Sales_Model_Order $order, $token)
219
  {
220
- $accountId = Mage::getStoreConfig('hipay/accountsettings/accountid');
221
- $merchantPassword = Mage::getStoreConfig('hipay/accountsettings/merchantpassword');
222
- $merchantSiteId = Mage::getStoreConfig('hipay/accountsettings/merchantsiteid');
 
223
  //$accountCurrency = Mage::getStoreConfig('hipay/accountsettings/accountcurrency');
224
  $orderCurrency = $order->getOrderCurrency()->getData("currency_code");
225
- $ageClassification = Mage::getStoreConfig('hipay/accountsettings/ageclassification');
226
- $notificationEmail = Mage::getStoreConfig('hipay/accountsettings/notificationemail');
227
 
228
- $logoUrl = Mage::getStoreConfig('hipay/extendedaccountsettings/logourl');
229
 
230
- $itemAccountId = Mage::getStoreConfig('hipay/extendedaccountsettings/itemaccountid');
231
  $taxAccountId = ""; //Mage::getStoreConfig('hipay/extendedaccountsettings/taxaccountid');
232
  $insuranceAccountId = ""; //Mage::getStoreConfig('hipay/extendedaccountsettings/insuranceaccountid');
233
  $fixcostAccountId = ""; //Mage::getStoreConfig('hipay/extendedaccountsettings/fixcostaccountid');
234
- $shippingAccountId = Mage::getStoreConfig('hipay/extendedaccountsettings/shippingaccountid');
235
 
236
  $itemAccountId = (empty($itemAccountId) ? $accountId : $itemAccountId);
237
  $taxAccountId = (empty($taxAccountId) ? $itemAccountId : $taxAccountId);
238
  $insuranceAccountId = (empty($insuranceAccountId) ? $itemAccountId : $insuranceAccountId);
239
  $fixcostAccountId = (empty($fixcostAccountId) ? $itemAccountId : $fixcostAccountId);
240
  $shippingAccountId = (empty($shippingAccountId) ? $itemAccountId : $shippingAccountId);
241
-
242
- // ## REMOVE TEST ##
243
- // echo "<hr>"
244
- // ."accound id:" . $accountId . ",<br />"
245
- // ."pw:" . $merchantPassword . ",<br />"
246
- // ."site:" . $merchantSiteId . ",<br />"
247
- // ."min age:" . $ageClassification . ",<br />"
248
- // ."currency:" . $accountCurrency . ",<br />"
249
- // ."ack email:" . $notificationEmail . ",<br />"
250
- // ."logo url:" . $logoUrl . ",<br />"
251
- //
252
- // ."item account:" . $itemAccountId . ",<br />"
253
- // ."tax account:" . $taxAccountId . ",<br />"
254
- // ."insurance account:" . $insuranceAccountId . ",<br />"
255
- // ."fixcost account:" . $fixcostAccountId . ",<br />"
256
- // ."shipping account:" . $shippingAccountId . "<br />"
257
- // ."<hr>";
258
- // ## REMOVE TEST - END ##
259
 
260
  $params = new HIPAY_MAPI_PaymentParams();
261
 
217
  */
218
  protected function setupParams(Mage_Sales_Model_Order $order, $token)
219
  {
220
+ $websiteId = Mage::app()->getStore()->getStoreId();//Mage::app()->getStore()->getWebsiteId();
221
+ $accountId = Mage::getStoreConfig('hipay/accountsettings/accountid',$websiteId);
222
+ $merchantPassword = Mage::getStoreConfig('hipay/accountsettings/merchantpassword',$websiteId);
223
+ $merchantSiteId = Mage::getStoreConfig('hipay/accountsettings/merchantsiteid',$websiteId);
224
  //$accountCurrency = Mage::getStoreConfig('hipay/accountsettings/accountcurrency');
225
  $orderCurrency = $order->getOrderCurrency()->getData("currency_code");
226
+ $ageClassification = Mage::getStoreConfig('hipay/accountsettings/ageclassification',$websiteId);
227
+ $notificationEmail = Mage::getStoreConfig('hipay/accountsettings/notificationemail',$websiteId);
228
 
229
+ $logoUrl = Mage::getStoreConfig('hipay/extendedaccountsettings/logourl',$websiteId);
230
 
231
+ $itemAccountId = Mage::getStoreConfig('hipay/extendedaccountsettings/itemaccountid',$websiteId);
232
  $taxAccountId = ""; //Mage::getStoreConfig('hipay/extendedaccountsettings/taxaccountid');
233
  $insuranceAccountId = ""; //Mage::getStoreConfig('hipay/extendedaccountsettings/insuranceaccountid');
234
  $fixcostAccountId = ""; //Mage::getStoreConfig('hipay/extendedaccountsettings/fixcostaccountid');
235
+ $shippingAccountId = Mage::getStoreConfig('hipay/extendedaccountsettings/shippingaccountid',$websiteId);
236
 
237
  $itemAccountId = (empty($itemAccountId) ? $accountId : $itemAccountId);
238
  $taxAccountId = (empty($taxAccountId) ? $itemAccountId : $taxAccountId);
239
  $insuranceAccountId = (empty($insuranceAccountId) ? $itemAccountId : $insuranceAccountId);
240
  $fixcostAccountId = (empty($fixcostAccountId) ? $itemAccountId : $fixcostAccountId);
241
  $shippingAccountId = (empty($shippingAccountId) ? $itemAccountId : $shippingAccountId);
242
+
243
+ $nomLog = 'hipay-wallet-payment-'.date('Ymd').'.log';
244
+ Mage::log('############################', null, $nomLog);
245
+ Mage::log('websiteId = ' . $websiteId, null, $nomLog);
246
+ Mage::log('accountId = ' . $accountId, null, $nomLog);
247
+ Mage::log('merchantPassword = ' . $merchantPassword, null, $nomLog);
248
+ Mage::log('merchantSiteId = ' . $merchantSiteId, null, $nomLog);
249
+ Mage::log('orderCurrency = ' . $orderCurrency, null, $nomLog);
250
+ Mage::log('ageClassification = ' . $ageClassification, null, $nomLog);
251
+ Mage::log('notificationEmail = ' . $notificationEmail, null, $nomLog);
252
+ Mage::log('logoUrl = ' . $logoUrl, null, $nomLog);
253
+ Mage::log('itemAccountId = ' . $itemAccountId, null, $nomLog);
254
+ Mage::log('shippingAccountId = ' . $shippingAccountId, null, $nomLog);
 
 
 
 
 
255
 
256
  $params = new HIPAY_MAPI_PaymentParams();
257
 
app/code/local/HimediaPayments/Hipay/Model/Category.php CHANGED
@@ -47,9 +47,29 @@ class HimediaPayments_Hipay_Model_Category
47
  {
48
  public function toOptionArray()
49
  {
50
- $merchantSiteId = Mage::getStoreConfig('hipay/accountsettings/merchantsiteid');
51
- $accountMode = Mage::getStoreConfig('hipay/extendedaccountsettings/accountmode');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
52
 
 
 
 
 
 
 
53
  if(empty($merchantSiteId) || empty($accountMode))
54
  {
55
  return array(
@@ -59,13 +79,13 @@ class HimediaPayments_Hipay_Model_Category
59
  else
60
  {
61
  $categoryUrl = Mage::helper('hipaymod')->getHipayCategoryUrl($accountMode) . $merchantSiteId;
62
- //$response = Mage::helper('hipaymod')->sendRestCall($categoryUrl);
63
-
64
  $optionList = array();
65
- //if( $this->analyzeCategoryResponseXML($response, $optionList) )
66
  if( $this->fillCategoryList($categoryUrl, $optionList) )
67
  {
68
- //Mage::log($optionList);
 
69
  return $optionList;
70
  }
71
  else
47
  {
48
  public function toOptionArray()
49
  {
50
+ // récupération du bon store
51
+ if (strlen($code = Mage::getSingleton('adminhtml/config_data')->getStore()))
52
+ {
53
+ $store_id = Mage::getModel('core/store')->load($code)->getId();
54
+ }
55
+ elseif (strlen($code = Mage::getSingleton('adminhtml/config_data')->getWebsite()))
56
+ {
57
+ $website_id = Mage::getModel('core/website')->load($code)->getId();
58
+ $store_id = Mage::app()->getWebsite($website_id)->getDefaultStore()->getId();
59
+ }
60
+ else // default level
61
+ {
62
+ $store_id = 0;
63
+ }
64
+ $merchantSiteId = Mage::getStoreConfig('hipay/accountsettings/merchantsiteid',$store_id);
65
+ $accountMode = Mage::getStoreConfig('hipay/extendedaccountsettings/accountmode',$store_id);
66
 
67
+ $nomLog = 'hipay-wallet-'.date('Ymd').'.log';
68
+ Mage::log('############################', null, $nomLog);
69
+ Mage::log('Récupération StoreId = ' . $store_id, null, $nomLog);
70
+ Mage::log('Récupération MerchantSiteId = ' . $merchantSiteId, null, $nomLog);
71
+ Mage::log('Récupération accountMode = ' . $accountMode, null, $nomLog);
72
+
73
  if(empty($merchantSiteId) || empty($accountMode))
74
  {
75
  return array(
79
  else
80
  {
81
  $categoryUrl = Mage::helper('hipaymod')->getHipayCategoryUrl($accountMode) . $merchantSiteId;
82
+ Mage::log('categoryUrl = ' . $categoryUrl, null, $nomLog);
83
+
84
  $optionList = array();
 
85
  if( $this->fillCategoryList($categoryUrl, $optionList) )
86
  {
87
+ Mage::log('optionList = ', null, $nomLog);
88
+ Mage::log($optionList, null, $nomLog);
89
  return $optionList;
90
  }
91
  else
app/code/local/HimediaPayments/Hipay/controllers/MapiController.php CHANGED
@@ -73,7 +73,7 @@ class HimediaPayments_Hipay_MapiController extends Mage_Core_Controller_Front_Ac
73
 
74
  try
75
  {
76
- Mage::log("Modul aktiviert? '" . Mage::getStoreConfig('hipay/general/active') /*((int) $this->getConfigData('active'))*/ . "'");
77
 
78
  $session = $this->_getCheckout();
79
  $order = Mage::getModel('sales/order');
@@ -92,7 +92,7 @@ class HimediaPayments_Hipay_MapiController extends Mage_Core_Controller_Front_Ac
92
  $order->save();
93
 
94
  $paymentUrl = Mage::getUrl("hipay/mapi/redirect/");
95
- $message = Mage::helper('hipaymod')->__('You will be redirected to Hipay ...');
96
 
97
  Mage::log("order ID: " . $orderId);
98
  Mage::log("payment Url: " . $paymentUrl . $orderId);
@@ -183,20 +183,7 @@ class HimediaPayments_Hipay_MapiController extends Mage_Core_Controller_Front_Ac
183
  try
184
  {
185
  if($this->checkToken())
186
- {
187
- // $session = $this->_getCheckout();
188
- //
189
- // $order = Mage::getModel('sales/order');
190
- // $order->loadByIncrementId($session->getLastRealOrderId());
191
- //
192
- // $order->addStatusHistoryComment(Mage::helper('hipaymod')->__('The customer has successfully paid via Hipay'),
193
- // Mage_Sales_Model_Order::STATE_PROCESSING )
194
- // ->setIsCustomerNotified(true);
195
- // $order->save();
196
- //
197
- // $order->sendNewOrderEmail();
198
- // $order->save();
199
-
200
  $this->_redirect('checkout/onepage/success');
201
  }
202
  else
@@ -221,26 +208,52 @@ class HimediaPayments_Hipay_MapiController extends Mage_Core_Controller_Front_Ac
221
  Mage::log('MapiController > cancelAction');
222
 
223
  try
224
- {
225
- Mage::log("Hipay POST data: [");
226
- Mage::log($_POST);
227
- Mage::log("]");
228
-
229
  if($this->checkToken())
230
  {
231
- if($this->requestHasValidPostData())
232
- {
233
- $session = $this->_getCheckout();
234
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
235
  $order = Mage::getModel('sales/order');
236
  $order->loadByIncrementId($session->getLastRealOrderId());
237
  $order->cancel();
238
  $order->addStatusHistoryComment(Mage::helper('hipaymod')->__('Payment has been canceled by customer'),
239
  Mage_Sales_Model_Order::STATE_CANCELED);
240
- $order->save();
241
-
242
  $order->sendOrderUpdateEmail(Mage::helper('hipaymod')->__('Your order has been canceled because you have canceled the payment process.'));
243
-
244
  $this->_redirect('checkout/onepage/failure');
245
  }
246
  else
@@ -274,14 +287,43 @@ class HimediaPayments_Hipay_MapiController extends Mage_Core_Controller_Front_Ac
274
 
275
  try
276
  {
277
- Mage::log("Hipay POST data: [");
278
- Mage::log($_POST);
279
- Mage::log("]");
280
-
281
  if($this->checkToken())
282
  {
283
- if($this->requestHasValidPostData())
284
- {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
285
  $session = $this->_getCheckout();
286
 
287
  $order = Mage::getModel('sales/order');
73
 
74
  try
75
  {
76
+ Mage::log("Modul aktiviert? '" . Mage::getStoreConfig('hipay/general/active') . "'");
77
 
78
  $session = $this->_getCheckout();
79
  $order = Mage::getModel('sales/order');
92
  $order->save();
93
 
94
  $paymentUrl = Mage::getUrl("hipay/mapi/redirect/");
95
+ $message = Mage::helper('hipaymod')->__('You will be redirected to our secure payment page when you complete your order.');
96
 
97
  Mage::log("order ID: " . $orderId);
98
  Mage::log("payment Url: " . $paymentUrl . $orderId);
183
  try
184
  {
185
  if($this->checkToken())
186
+ {
 
 
 
 
 
 
 
 
 
 
 
 
 
187
  $this->_redirect('checkout/onepage/success');
188
  }
189
  else
208
  Mage::log('MapiController > cancelAction');
209
 
210
  try
211
+ {
212
+ $postData = $_POST;
 
 
 
213
  if($this->checkToken())
214
  {
215
+ #
216
+ # MAJ JPN le 30/11/2015
217
+ # Prise en compte de l'annulation dans données POST
218
+ # Contrôle commande + reinit du panier avec les données préchargées
219
+ #
220
+ if(empty($postData)){
221
+ // init des id panier et commande
222
+ $lastQuoteId = $this->_getCheckout()->getLastQuoteId();
223
+ $lastOrderId = $this->_getCheckout()->getLastOrderId();
224
+ // init de l'objet panier
225
+ $orderModel = Mage::getModel('sales/order')->load($lastOrderId);
226
+ if($orderModel->canCancel()) {
227
+ // init du panier avec son id
228
+ $quote = Mage::getModel('sales/quote')->load($lastQuoteId);
229
+ // on active le panier et enregistrement
230
+ $quote->setIsActive(true)->save();
231
+ // on met la commande en mode cancel
232
+ $orderModel->cancel();
233
+ // ajout du status annulée + enregistrement
234
+ $orderModel->setStatus('canceled');
235
+ $orderModel->save();
236
+ // init du message de l'erreur
237
+ Mage::getSingleton('core/session')->setFailureMsg('order_failed');
238
+ Mage::getSingleton('checkout/session')->setFirstTimeChk('0');
239
+ // init du message d'erreur qui s'affichera au redirect sur la page panier
240
+ Mage::getSingleton('core/session')->addError(__('Your order has been canceled because you have canceled the payment process.'));
241
+ // on redirige le client sur le panier
242
+ $this->_redirect('checkout/cart', array("_forced_secure" => true));
243
+ return;
244
+ }
245
+ }elseif ( $this->requestHasValidPostData()) {
246
+ Mage::log('Array POST [');
247
+ Mage::log($_POST);
248
+ Mage::log(']');
249
+ $session = $this->_getCheckout();
250
  $order = Mage::getModel('sales/order');
251
  $order->loadByIncrementId($session->getLastRealOrderId());
252
  $order->cancel();
253
  $order->addStatusHistoryComment(Mage::helper('hipaymod')->__('Payment has been canceled by customer'),
254
  Mage_Sales_Model_Order::STATE_CANCELED);
255
+ $order->save();
 
256
  $order->sendOrderUpdateEmail(Mage::helper('hipaymod')->__('Your order has been canceled because you have canceled the payment process.'));
 
257
  $this->_redirect('checkout/onepage/failure');
258
  }
259
  else
287
 
288
  try
289
  {
290
+ $postData = $_POST;
 
 
 
291
  if($this->checkToken())
292
  {
293
+ #
294
+ # MAJ JPN le 30/11/2015
295
+ # Prise en compte de l'annulation dans données POST
296
+ # Contrôle commande + reinit du panier avec les données préchargées
297
+ #
298
+ if(empty($postData)){
299
+ // init des id panier et commande
300
+ $lastQuoteId = $this->_getCheckout()->getLastQuoteId();
301
+ $lastOrderId = $this->_getCheckout()->getLastOrderId();
302
+ // init de l'objet panier
303
+ $orderModel = Mage::getModel('sales/order')->load($lastOrderId);
304
+ if($orderModel->canCancel()) {
305
+ // init du panier avec son id
306
+ $quote = Mage::getModel('sales/quote')->load($lastQuoteId);
307
+ // on active le panier et enregistrement
308
+ $quote->setIsActive(true)->save();
309
+ // on met la commande en mode cancel
310
+ $orderModel->cancel();
311
+ // ajout du status annulée + enregistrement
312
+ $orderModel->setStatus('canceled');
313
+ $orderModel->save();
314
+ // init du message de l'erreur
315
+ Mage::getSingleton('core/session')->setFailureMsg('order_failed');
316
+ Mage::getSingleton('checkout/session')->setFirstTimeChk('0');
317
+ // init du message d'erreur qui s'affichera au redirect sur la page panier
318
+ Mage::getSingleton('core/session')->addError(__('Your order has been canceled because the payment process failed.'));
319
+ // on redirige le client sur le panier
320
+ $this->_redirect('checkout/cart', array("_forced_secure" => true));
321
+ return;
322
+ }
323
+ }elseif ( $this->requestHasValidPostData()) {
324
+ Mage::log('Array POST [');
325
+ Mage::log($_POST);
326
+ Mage::log(']');
327
  $session = $this->_getCheckout();
328
 
329
  $order = Mage::getModel('sales/order');
app/code/local/HimediaPayments/Hipay/etc/config.xml CHANGED
@@ -3,7 +3,7 @@
3
 
4
  <modules>
5
  <HimediaPayments_Hipay>
6
- <version>1.0.13</version>
7
  </HimediaPayments_Hipay>
8
  </modules>
9
 
3
 
4
  <modules>
5
  <HimediaPayments_Hipay>
6
+ <version>1.1.0</version>
7
  </HimediaPayments_Hipay>
8
  </modules>
9
 
app/code/local/HimediaPayments/Hipay/etc/config.xml~ DELETED
@@ -1,111 +0,0 @@
1
- <?xml version="1.0"?>
2
- <config>
3
-
4
- <modules>
5
- <HimediaPayments_Hipay>
6
- <version>1.0.12</version>
7
- </HimediaPayments_Hipay>
8
- </modules>
9
-
10
- <global>
11
- <models>
12
- <hipaymod>
13
- <class>HimediaPayments_Hipay_Model</class>
14
- </hipaymod>
15
- </models>
16
- <blocks>
17
- <hipaymod>
18
- <class>HimediaPayments_Hipay_Block</class>
19
- </hipaymod>
20
- </blocks>
21
- <helpers>
22
- <hipaymod>
23
- <class>HimediaPayments_Hipay_Helper</class>
24
- </hipaymod>
25
- </helpers>
26
- </global>
27
-
28
- <adminhtml>
29
- <layout>
30
- <updates>
31
- <hipaymod>
32
- <file>hipaybase.xml</file>
33
- </hipaymod>
34
- </updates>
35
- </layout>
36
- <translate>
37
- <modules>
38
- <HimediaPayments_Hipay>
39
- <files>
40
- <default>HimediaPayments_Hipay.csv</default>
41
- </files>
42
- </HimediaPayments_Hipay>
43
- </modules>
44
- </translate>
45
- <acl>
46
- <resources>
47
- <all>
48
- <title>Allow Everything</title>
49
- </all>
50
- <admin>
51
- <children>
52
- <system>
53
- <children>
54
- <config>
55
- <children>
56
- <hipay translate="title" module="hipaymod">
57
- <title>Hipay</title>
58
- </hipay>
59
- </children>
60
- </config>
61
- </children>
62
- </system>
63
- </children>
64
- </admin>
65
- </resources>
66
- </acl>
67
- </adminhtml>
68
-
69
- <frontend>
70
- <routers>
71
- <hipay>
72
- <use>standard</use>
73
- <args>
74
- <module>HimediaPayments_Hipay</module>
75
- <frontName>hipay</frontName>
76
- </args>
77
- </hipay>
78
- </routers>
79
- <layout>
80
- <updates>
81
- <hipay>
82
- <file>hipay.xml</file>
83
- </hipay>
84
- </updates>
85
- </layout>
86
- <translate>
87
- <modules>
88
- <HimediaPayments_Hipay>
89
- <files>
90
- <default>HimediaPayments_Hipay.csv</default>
91
- </files>
92
- </HimediaPayments_Hipay>
93
- </modules>
94
- </translate>
95
- </frontend>
96
-
97
- <default>
98
- <payment>
99
- <hipay>
100
- <active>1</active>
101
- <title>Hipay</title>
102
- <order_status>processing</order_status>
103
- <allowspecific>0</allowspecific>
104
- <specificcountry></specificcountry>
105
- <sort_order></sort_order>
106
- <model>hipaymod/method_hipay</model>
107
- </hipay>
108
- </payment>
109
- </default>
110
-
111
- </config>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/design/frontend/base/default/template/himediapayments/hipay/form.phtml CHANGED
@@ -103,16 +103,18 @@ $_code = $this->getMethodCode();
103
  padding-top:15px;
104
  }
105
  .hipay_infobox_content .payment_methods>img {
 
106
  margin-bottom:5px;
107
- margin-right:20px;
108
  }
109
 
110
  .hipay_infobox_content .red_line {
111
- background:url("<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_SKIN); ?>frontend/base/default/images/himediapayments/hipay/hr_1x1.png") repeat-x scroll transparent;
112
  width:100%;
113
  height:2px;
114
  padding:0;
115
  margin:0;
 
116
  }
117
  .hipay_infobox_content .provider_infos {
118
  text-align:center;
@@ -148,27 +150,13 @@ $_code = $this->getMethodCode();
148
  <?php echo Mage::helper('hipaymod')->__('This is what you can expect when you pay with hipay:') ?>
149
 
150
  <ul class="homeBlue">
151
- <li><span class="li-home-text"><?php echo Mage::helper('hipaymod')->__('Secure') ?></span></li>
152
- <li><span class="li-home-text"><?php echo Mage::helper('hipaymod')->__('Easy to use') ?></span></li>
153
- <li><span class="li-home-text"><?php echo Mage::helper('hipaymod')->__('No registration required') ?></span></li>
154
- <li><span class="li-home-text"><?php echo Mage::helper('hipaymod')->__('Local means of payment') ?></span></li>
155
- <li><span class="li-home-text"><?php echo Mage::helper('hipaymod')->__('Over 15 payment types accepted, including local ones') ?>:</span>
156
- <div class="payment_methods">
157
- <img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_SKIN); ?>frontend/base/default/images/himediapayments/hipay/payment_methods/pm_visa.png">
158
- <img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_SKIN); ?>frontend/base/default/images/himediapayments/hipay/payment_methods/pm_mastercard.png">
159
- <img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_SKIN); ?>frontend/base/default/images/himediapayments/hipay/payment_methods/pm_sofort-ueberweisung.png">
160
- <img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_SKIN); ?>frontend/base/default/images/himediapayments/hipay/payment_methods/pm_sofort-lastschrift.png">
161
- <img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_SKIN); ?>frontend/base/default/images/himediapayments/hipay/payment_methods/pm_giropay.png">
162
- <img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_SKIN); ?>frontend/base/default/images/himediapayments/hipay/payment_methods/pm_cb.png">
163
- <img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_SKIN); ?>frontend/base/default/images/himediapayments/hipay/payment_methods/pm_amex.png">
164
-
165
- <img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_SKIN); ?>frontend/base/default/images/himediapayments/hipay/payment_methods/pm_cbc.png">
166
- <img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_SKIN); ?>frontend/base/default/images/himediapayments/hipay/payment_methods/pm_cofidis.png">
167
- <img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_SKIN); ?>frontend/base/default/images/himediapayments/hipay/payment_methods/pm_aurora.png">
168
- <img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_SKIN); ?>frontend/base/default/images/himediapayments/hipay/payment_methods/pm_bcmc.png">
169
- <img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_SKIN); ?>frontend/base/default/images/himediapayments/hipay/payment_methods/pm_dexia.png">
170
- <img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_SKIN); ?>frontend/base/default/images/himediapayments/hipay/payment_methods/pm_ing.png">
171
- <img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_SKIN); ?>frontend/base/default/images/himediapayments/hipay/payment_methods/pm_maestro.png">
172
  </div>
173
  </li>
174
  </ul>
@@ -176,9 +164,6 @@ $_code = $this->getMethodCode();
176
  <div class="provider_infos">
177
  <a href="https://www.hipay.com/qui-sommes-nous/" target="_blank"><?php echo Mage::helper('hipaymod')->__('About us') ?></a> -
178
  <a href="https://www.hipay.com/nos-bureaux/" target="_blank"><?php echo Mage::helper('hipaymod')->__('Contact') ?></a>
179
- <span>
180
- <?php echo Mage::helper('hipaymod')->__('hipay&trade; is a product of HPME a subsidiary of the') ?> <a href="http://www.hi-media.com" target="_blank">Hi-Media Group</a>
181
- </span>
182
  </div>
183
  </div>
184
 
103
  padding-top:15px;
104
  }
105
  .hipay_infobox_content .payment_methods>img {
106
+ float: left;
107
  margin-bottom:5px;
108
+ margin-right:5px;
109
  }
110
 
111
  .hipay_infobox_content .red_line {
112
+ border-top: 1px #0C7BBB solid;
113
  width:100%;
114
  height:2px;
115
  padding:0;
116
  margin:0;
117
+ clear: both;
118
  }
119
  .hipay_infobox_content .provider_infos {
120
  text-align:center;
150
  <?php echo Mage::helper('hipaymod')->__('This is what you can expect when you pay with hipay:') ?>
151
 
152
  <ul class="homeBlue">
153
+ <li><span class="li-home-text"><?php echo Mage::helper('hipaymod')->__('text_1') ?></span></li>
154
+ <li><span class="li-home-text"><?php echo Mage::helper('hipaymod')->__('text_2') ?></span></li>
155
+ <li><span class="li-home-text"><?php echo Mage::helper('hipaymod')->__('text_3') ?></span></li>
156
+ <li><span class="li-home-text"><?php echo Mage::helper('hipaymod')->__('text_4') ?></span></li>
157
+ <li><span class="li-home-text"><?php echo Mage::helper('hipaymod')->__('text_5') ?></span>
158
+ <div class="payment_methods">
159
+ <img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_SKIN); ?>frontend/base/default/images/himediapayments/hipay/payment_methods/logos-magento-wallet.png">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
160
  </div>
161
  </li>
162
  </ul>
164
  <div class="provider_infos">
165
  <a href="https://www.hipay.com/qui-sommes-nous/" target="_blank"><?php echo Mage::helper('hipaymod')->__('About us') ?></a> -
166
  <a href="https://www.hipay.com/nos-bureaux/" target="_blank"><?php echo Mage::helper('hipaymod')->__('Contact') ?></a>
 
 
 
167
  </div>
168
  </div>
169
 
app/design/frontend/base/default/template/himediapayments/hipay/payment.phtml CHANGED
@@ -50,27 +50,6 @@ body {
50
  text-align:left;
51
  }
52
 
53
- .hipay_redirect_infobox_head {
54
- background-image: url("<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_SKIN); ?>frontend/base/default/images/himediapayments/hipay/hipay_redirect_frame_top.png");
55
- background-attachment: scroll;
56
- background-position: top;
57
- background-repeat: no-repeat;
58
- background-color: transparent;
59
- overflow:hidden;
60
- width:620px;
61
- padding:0;
62
- margin-top:150px;
63
- min-height:150px;
64
- }
65
-
66
- .hipay_redirect_infobox_bottom {
67
- background:url("<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_SKIN); ?>frontend/base/default/images/himediapayments/hipay/hipay_redirect_frame_bottom.png") bottom no-repeat scroll transparent;
68
- overflow:hidden;
69
- width:620px;
70
- padding:0;
71
- margin:0;
72
- }
73
-
74
  .hipay_redirect_infobox_content {
75
  margin-top:75px;
76
  text-align: center;
@@ -88,19 +67,14 @@ body {
88
  }
89
 
90
  </style>
91
-
92
-
93
  <div class="hipay_centered_content">
94
- <div class="hipay_redirect_infobox_bottom">
95
- <div class="hipay_redirect_infobox_head">
96
- <div class="hipay_redirect_infobox_content">
97
- <span <?php if(!empty($paymentUrl)) { ?>class="show_loader_image"<?php }; ?>>
98
- <?php echo $message ?>
99
- </span>
100
- </div>
101
- </div>
102
- </div>
103
- </div>
104
 
105
  <?php if(!empty($paymentUrl)) { ?>
106
  <script type="text/javascript">parent.location.href="<?php echo $paymentUrl ?>";</script>
50
  text-align:left;
51
  }
52
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
53
  .hipay_redirect_infobox_content {
54
  margin-top:75px;
55
  text-align: center;
67
  }
68
 
69
  </style>
 
 
70
  <div class="hipay_centered_content">
71
+ <div class="hipay_redirect_infobox_content">
72
+ <img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_SKIN); ?>frontend/base/default/images/himediapayments/hipay/hipay_wallet_mg_logo.jpg" /><br />
73
+ <span <?php if(!empty($paymentUrl)) { ?>class="show_loader_image"<?php }; ?>>
74
+ <?php echo $message ?>
75
+ </span>
76
+ </div>
77
+ </div>
 
 
 
78
 
79
  <?php if(!empty($paymentUrl)) { ?>
80
  <script type="text/javascript">parent.location.href="<?php echo $paymentUrl ?>";</script>
app/locale/da_DK/HimediaPayments_Hipay.csv CHANGED
@@ -32,8 +32,8 @@
32
  "hipay_accountsettings_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Hvad du skal indstille her:</span><br /><ul style=""list-style:square outside none; padding-left:15px;""><li>Anfør dine Hipay Forhandler-kontoinformationer (Konto-ID, Site-Passwort og Site-ID).</li><li>Definition af bestillingskategori og aldersbegrænsning.</li><li>Anførelse af email-adresse til betalingsmeddelelser.</li></ul>Flere informationer findes under tab'en <span style=""font-style: italic;"">Hvordan man konfigurerer Hipay</span>."
33
  "hipay_extendedaccountsettings_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Hvad du kan indstille her:</span><br /><ul style=""list-style:square outside none; padding-left:15px;""><li>Ændr driftstatus til 'Test' for at sætte denne udvidelse i test-modus.</li><li>Fastlæggelse af et logo for betalingsvinduet.</li> <li>Fastlæggelse af andre Hipay-kontoer for at splitte totalbeløbet i delbeløb.<p>Hermed kan du splitte totalbeløbet op i følgende delbeløb: Produkter og Forsendelse.<br />Af denne grund er det nødvendigt - med et par kliks - at lave en underkonto i din Hipay-konto.</p></li></ul>"
34
  "hipay_general_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Hvad du her kan indstille:</span><br /><ul style=""list-style:square outside none; padding-left:15px;""><li>Aktivér denne betalingsmetode</li><li>Udvælg i hvilke lande denne betalingsmetode skal være aktiv</li></ul>"
35
- "hipay_howto_groupcomment","For at udnytte denne udvidelse skal du oprette en Forhandler-konto hos Hipay.<br />Åbn derefter tab'en <span style=""font-style: italic;"">Hipay Forhandler-konto</span> og anfør her Hipay-kontoinformationer. Udvidelsen er dermed fuldstændigt konfigureret. <br />Aktivér nu udvidelsen på tab'en <span style=""font-style: italic;"">Generelle indstillinger</span>.<br />Fertig!<div style=""margin-top:10px;""><a href=""https://www.hipay.com/registration/register/type/merchant"" target=""_blank"">Oprettelse af Hipay Forhandler-konto på hipay.com</a>.<br /><br /><a href=""%HIPAYFILES%/Hipay-Payment-Extension_danish.pdf"" target=""_blank"" class=""hipay-pdf-link"">Instruktioner</a> til opsætning af Hipay konto og betaling modulet</div>"
36
- "hipay_support_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Hvor du kan finde hjælp:</span><p>Ved spørgsmål til denne udvidelse, forbedringsforslag eller hvis du mener, du har fundet en fejl, send venligst en email til <a href=""mailto:shop-extensions@hi-media.com"">shop-extensions@hi-media.com</a>.</p><p>Ved alle andre spørgsmål, fx hvis du har et problem med en betaling, kan du benytte vores <a href=""https://www.hipay.com/info/contact"" target=""_blank"">kontaktformular</a> på hipay.com</p>"
37
  "How to setup Hipay","Hvordan man sætter Hipay op"
38
  "Item Account","Produkt-Konto"
39
  "itemaccountid-comment","Konto-ID for (under)kontoen hvor betalte beløb for produkter skal indsættes.<br /><span class=""notice"">Hvis dette felt er tomt, bliver <span style=""font-style: italic;"">Hipay Forhandler-kontoen</span> anvendt.</span>"
@@ -76,3 +76,8 @@
76
  "You will be redirected to our secure payment page when you complete your order.","Du bliver viderestillet til vores sikrede betalingsside, hvor du kan afslutte din ordre."
77
  "Your order has been canceled because the payment process failed.","Din bestilling er annulleret, fordi betalingsprocessen fejlede."
78
  "Your order has been canceled because you have canceled the payment process.","Din bestilling er blevet annulleret, fordi du annullerede betalingsprocessen."
 
 
 
 
 
32
  "hipay_accountsettings_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Hvad du skal indstille her:</span><br /><ul style=""list-style:square outside none; padding-left:15px;""><li>Anfør dine Hipay Forhandler-kontoinformationer (Konto-ID, Site-Passwort og Site-ID).</li><li>Definition af bestillingskategori og aldersbegrænsning.</li><li>Anførelse af email-adresse til betalingsmeddelelser.</li></ul>Flere informationer findes under tab'en <span style=""font-style: italic;"">Hvordan man konfigurerer Hipay</span>."
33
  "hipay_extendedaccountsettings_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Hvad du kan indstille her:</span><br /><ul style=""list-style:square outside none; padding-left:15px;""><li>Ændr driftstatus til 'Test' for at sætte denne udvidelse i test-modus.</li><li>Fastlæggelse af et logo for betalingsvinduet.</li> <li>Fastlæggelse af andre Hipay-kontoer for at splitte totalbeløbet i delbeløb.<p>Hermed kan du splitte totalbeløbet op i følgende delbeløb: Produkter og Forsendelse.<br />Af denne grund er det nødvendigt - med et par kliks - at lave en underkonto i din Hipay-konto.</p></li></ul>"
34
  "hipay_general_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Hvad du her kan indstille:</span><br /><ul style=""list-style:square outside none; padding-left:15px;""><li>Aktivér denne betalingsmetode</li><li>Udvælg i hvilke lande denne betalingsmetode skal være aktiv</li></ul>"
35
+ "hipay_howto_groupcomment","For at udnytte denne udvidelse skal du oprette en Forhandler-konto hos Hipay.<br />Åbn derefter tab'en <span style=""font-style: italic;"">Hipay Forhandler-konto</span> og anfør her Hipay-kontoinformationer. Udvidelsen er dermed fuldstændigt konfigureret. <br />Aktivér nu udvidelsen på tab'en <span style=""font-style: italic;"">Generelle indstillinger</span>.<br />Fertig!<div style=""margin-top:10px;""><a href=""https://www.hipaywallet.com/"" target=""_blank"">Oprettelse af Hipay Forhandler-konto på hipay.com</a>.<br /><br /></div>"
36
+ "hipay_support_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Hvor du kan finde hjælp:</span><p>Ved spørgsmål til denne udvidelse, forbedringsforslag eller hvis du mener, du har fundet en fejl, send venligst en email til <a href=""mailto:support.wallet@hipay.com"">support.wallet@hipay.com</a>.</p><p>Ved alle andre spørgsmål, fx hvis du har et problem med en betaling, kan du benytte vores <a href=""https://www.hipaywallet.com/info/contact"" target=""_blank"">kontaktformular</a> på hipay.com</p>"
37
  "How to setup Hipay","Hvordan man sætter Hipay op"
38
  "Item Account","Produkt-Konto"
39
  "itemaccountid-comment","Konto-ID for (under)kontoen hvor betalte beløb for produkter skal indsættes.<br /><span class=""notice"">Hvis dette felt er tomt, bliver <span style=""font-style: italic;"">Hipay Forhandler-kontoen</span> anvendt.</span>"
76
  "You will be redirected to our secure payment page when you complete your order.","Du bliver viderestillet til vores sikrede betalingsside, hvor du kan afslutte din ordre."
77
  "Your order has been canceled because the payment process failed.","Din bestilling er annulleret, fordi betalingsprocessen fejlede."
78
  "Your order has been canceled because you have canceled the payment process.","Din bestilling er blevet annulleret, fordi du annullerede betalingsprocessen."
79
+ "text_1","A solution available without VAD's contracts"
80
+ "text_2","Free installation and no subscription fee"
81
+ "text_3","An integrated anti-fraud unit for more safety"
82
+ "text_4","Customizable payment pages with responsive design"
83
+ "text_5","More than 15 local and international payment solutions"
app/locale/de_AT/HimediaPayments_Hipay.csv CHANGED
@@ -32,8 +32,8 @@
32
  "hipay_accountsettings_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Was Sie hier einstellen müssen:</span><br /><ul style=""list-style:square outside none; padding-left:15px;""><li>Hinterlegen Sie Ihre Hipay-Kontodaten (Konto-ID, Site-Passwort und Site-ID).</li><li>Festlegen der Bestellkategorie und der Alterseinstufung.</li><li>Festlegen der E-Mail-Adresse für Zahlungsbenachrichtigungen.</li></ul>Weitere Informationen finden Sie auf dem Reiter <span style=""font-style: italic;"">Wie man Hipay konfiguriert</span>."
33
  "hipay_extendedaccountsettings_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Was Sie hier einstellen können:</span><br /><ul style=""list-style:square outside none; padding-left:15px;""><li>Ändern des Betriebsmodus auf 'Test' um diese Erweiterung im Testmodus zu betreiben.</li><li>Festlegen eines eigenen Logos für den Zahlungsdialog.</li> <li>Festlegen abweichender Hipaykonten um den Gesamtbetrag in Teilbeträge aufzuspalten.<p>Sie können den Gesamtbetrag dabei in die folgenden Teilbeträge aufspalten lassen: Produkte und Versand.<br />Als folge daraus, müssen Sie für jeden Teilbetrag mit wenigen Klicks ein eigenes Unterkonto in Ihrem Hipaykonto erstellen.</p></li></ul>"
34
  "hipay_general_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Was Sie hier einstellen können:</span><br /><ul style=""list-style:square outside none; padding-left:15px;""><li>Diese Zahlungsmethode aktivieren</li><li>Die Länder auswählen, in denen diese Zahlungsmethode verfügbar sein soll.</li></ul>"
35
- "hipay_howto_groupcomment","Um diese Erweiterung nutzen zu können, müssen Sie sich ein Händlerkonto auf hipay.com anlegen.<br />Öffnen Sie anschließend den Reiter <span style=""font-style: italic;"">Hipay Händlerkonto</span> und hinterlegen Sie dort die Hipay-Kontodaten. Die Erweiterung ist damit vollständig konfiguriert.<br />Aktivieren Sie nun die Erweiterung auf dem Reiter <span style=""font-style: italic;"">Allgemeine Einstellungen</span>.<br />Fertig!<div style=""margin-top:10px;""><a href=""https://www.hipay.com/registration/register/type/merchant"" target=""_blank"">Händlerkonto anlegen auf hipay.com</a>.<br /><br /><a href=""%HIPAYFILES%/Hipay-Payment-Extension_german.pdf"" target=""_blank"" class=""hipay-pdf-link"">Anleitung</a> zum Einrichten des Hipay-Kontos und des Zahlungsmoduls</div>"
36
- "hipay_support_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Wo Sie Hilfe finden:</span><p>Bei Fragen zu dieser Erweiterung, Verbesserungsvorschlägen oder wenn Sie glauben, dass Sie einen Fehler gefunden haben senden Sie bitte eine E-Mail an <a href=""mailto:shop-extensions@hi-media.com"">shop-extensions@hi-media.com</a>.</p><p>Für alle anderen Fragen, z.B. wenn Sie ein Problem mit einer Zahlungstransaktion haben, benutzen Sie bitte unser <a href=""https://www.hipay.com/info/contact"" target=""_blank"">Kontaktformular</a> auf hipay.com</p>"
37
  "How to setup Hipay","Wie man Hipay konfiguriert"
38
  "Item Account","Produkt-Konto"
39
  "itemaccountid-comment","Konto-ID des (Unter-)Kontos dem die gezahlten Beträge für die Produkte gutgeschrieben werden.<br /><span class=""notice"">Ist dieses Feld leer, wird das <span style=""font-style: italic;"">Hipay Händlerkonto</span> verwendet.</span>"
@@ -76,3 +76,8 @@
76
  "You will be redirected to our secure payment page when you complete your order.","Sie werden auf unsere sichere Bezahlseite weitergeleitet, wenn Sie Ihre Bestellung abschließen."
77
  "Your order has been canceled because the payment process failed.","Ihr Bestellvorgang wurde abgebrochen, da während des Bezahlvorgangs ein Fehler augetreten ist."
78
  "Your order has been canceled because you have canceled the payment process.","Ihr Bestellvorgang wurde abgebrochen, da Sie den Bezahlvorgang abgebrochen haben."
 
 
 
 
 
32
  "hipay_accountsettings_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Was Sie hier einstellen müssen:</span><br /><ul style=""list-style:square outside none; padding-left:15px;""><li>Hinterlegen Sie Ihre Hipay-Kontodaten (Konto-ID, Site-Passwort und Site-ID).</li><li>Festlegen der Bestellkategorie und der Alterseinstufung.</li><li>Festlegen der E-Mail-Adresse für Zahlungsbenachrichtigungen.</li></ul>Weitere Informationen finden Sie auf dem Reiter <span style=""font-style: italic;"">Wie man Hipay konfiguriert</span>."
33
  "hipay_extendedaccountsettings_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Was Sie hier einstellen können:</span><br /><ul style=""list-style:square outside none; padding-left:15px;""><li>Ändern des Betriebsmodus auf 'Test' um diese Erweiterung im Testmodus zu betreiben.</li><li>Festlegen eines eigenen Logos für den Zahlungsdialog.</li> <li>Festlegen abweichender Hipaykonten um den Gesamtbetrag in Teilbeträge aufzuspalten.<p>Sie können den Gesamtbetrag dabei in die folgenden Teilbeträge aufspalten lassen: Produkte und Versand.<br />Als folge daraus, müssen Sie für jeden Teilbetrag mit wenigen Klicks ein eigenes Unterkonto in Ihrem Hipaykonto erstellen.</p></li></ul>"
34
  "hipay_general_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Was Sie hier einstellen können:</span><br /><ul style=""list-style:square outside none; padding-left:15px;""><li>Diese Zahlungsmethode aktivieren</li><li>Die Länder auswählen, in denen diese Zahlungsmethode verfügbar sein soll.</li></ul>"
35
+ "hipay_howto_groupcomment","Um diese Erweiterung nutzen zu können, müssen Sie sich ein Händlerkonto auf hipay.com anlegen.<br />Öffnen Sie anschließend den Reiter <span style=""font-style: italic;"">Hipay Händlerkonto</span> und hinterlegen Sie dort die Hipay-Kontodaten. Die Erweiterung ist damit vollständig konfiguriert.<br />Aktivieren Sie nun die Erweiterung auf dem Reiter <span style=""font-style: italic;"">Allgemeine Einstellungen</span>.<br />Fertig!<div style=""margin-top:10px;""><a href=""https://www.hipaywallet.com/"" target=""_blank"">Händlerkonto anlegen auf hipay.com</a>.<br /><br /></div>"
36
+ "hipay_support_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Wo Sie Hilfe finden:</span><p>Bei Fragen zu dieser Erweiterung, Verbesserungsvorschlägen oder wenn Sie glauben, dass Sie einen Fehler gefunden haben senden Sie bitte eine E-Mail an <a href=""mailto:support.wallet@hipay.com"">support.wallet@hipay.com</a>.</p><p>Für alle anderen Fragen, z.B. wenn Sie ein Problem mit einer Zahlungstransaktion haben, benutzen Sie bitte unser <a href=""https://www.hipaywallet.com/info/contact"" target=""_blank"">Kontaktformular</a> auf hipay.com</p>"
37
  "How to setup Hipay","Wie man Hipay konfiguriert"
38
  "Item Account","Produkt-Konto"
39
  "itemaccountid-comment","Konto-ID des (Unter-)Kontos dem die gezahlten Beträge für die Produkte gutgeschrieben werden.<br /><span class=""notice"">Ist dieses Feld leer, wird das <span style=""font-style: italic;"">Hipay Händlerkonto</span> verwendet.</span>"
76
  "You will be redirected to our secure payment page when you complete your order.","Sie werden auf unsere sichere Bezahlseite weitergeleitet, wenn Sie Ihre Bestellung abschließen."
77
  "Your order has been canceled because the payment process failed.","Ihr Bestellvorgang wurde abgebrochen, da während des Bezahlvorgangs ein Fehler augetreten ist."
78
  "Your order has been canceled because you have canceled the payment process.","Ihr Bestellvorgang wurde abgebrochen, da Sie den Bezahlvorgang abgebrochen haben."
79
+ "text_1","A solution available without VAD's contracts"
80
+ "text_2","Free installation and no subscription fee"
81
+ "text_3","An integrated anti-fraud unit for more safety"
82
+ "text_4","Customizable payment pages with responsive design"
83
+ "text_5","More than 15 local and international payment solutions"
app/locale/de_CH/HimediaPayments_Hipay.csv CHANGED
@@ -32,8 +32,8 @@
32
  "hipay_accountsettings_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Was Sie hier einstellen müssen:</span><br /><ul style=""list-style:square outside none; padding-left:15px;""><li>Hinterlegen Sie Ihre Hipay-Kontodaten (Konto-ID, Site-Passwort und Site-ID).</li><li>Festlegen der Bestellkategorie und der Alterseinstufung.</li><li>Festlegen der E-Mail-Adresse für Zahlungsbenachrichtigungen.</li></ul>Weitere Informationen finden Sie auf dem Reiter <span style=""font-style: italic;"">Wie man Hipay konfiguriert</span>."
33
  "hipay_extendedaccountsettings_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Was Sie hier einstellen können:</span><br /><ul style=""list-style:square outside none; padding-left:15px;""><li>Ändern des Betriebsmodus auf 'Test' um diese Erweiterung im Testmodus zu betreiben.</li><li>Festlegen eines eigenen Logos für den Zahlungsdialog.</li> <li>Festlegen abweichender Hipaykonten um den Gesamtbetrag in Teilbeträge aufzuspalten.<p>Sie können den Gesamtbetrag dabei in die folgenden Teilbeträge aufspalten lassen: Produkte und Versand.<br />Als folge daraus, müssen Sie für jeden Teilbetrag mit wenigen Klicks ein eigenes Unterkonto in Ihrem Hipaykonto erstellen.</p></li></ul>"
34
  "hipay_general_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Was Sie hier einstellen können:</span><br /><ul style=""list-style:square outside none; padding-left:15px;""><li>Diese Zahlungsmethode aktivieren</li><li>Die Länder auswählen, in denen diese Zahlungsmethode verfügbar sein soll.</li></ul>"
35
- "hipay_howto_groupcomment","Um diese Erweiterung nutzen zu können, müssen Sie sich ein Händlerkonto auf hipay.com anlegen.<br />Öffnen Sie anschließend den Reiter <span style=""font-style: italic;"">Hipay Händlerkonto</span> und hinterlegen Sie dort die Hipay-Kontodaten. Die Erweiterung ist damit vollständig konfiguriert.<br />Aktivieren Sie nun die Erweiterung auf dem Reiter <span style=""font-style: italic;"">Allgemeine Einstellungen</span>.<br />Fertig!<div style=""margin-top:10px;""><a href=""https://www.hipay.com/registration/register/type/merchant"" target=""_blank"">Händlerkonto anlegen auf hipay.com</a>.<br /><br /><a href=""%HIPAYFILES%/Hipay-Payment-Extension_german.pdf"" target=""_blank"" class=""hipay-pdf-link"">Anleitung</a> zum Einrichten des Hipay-Kontos und des Zahlungsmoduls</div>"
36
- "hipay_support_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Wo Sie Hilfe finden:</span><p>Bei Fragen zu dieser Erweiterung, Verbesserungsvorschlägen oder wenn Sie glauben, dass Sie einen Fehler gefunden haben senden Sie bitte eine E-Mail an <a href=""mailto:shop-extensions@hi-media.com"">shop-extensions@hi-media.com</a>.</p><p>Für alle anderen Fragen, z.B. wenn Sie ein Problem mit einer Zahlungstransaktion haben, benutzen Sie bitte unser <a href=""https://www.hipay.com/info/contact"" target=""_blank"">Kontaktformular</a> auf hipay.com</p>"
37
  "How to setup Hipay","Wie man Hipay konfiguriert"
38
  "Item Account","Produkt-Konto"
39
  "itemaccountid-comment","Konto-ID des (Unter-)Kontos dem die gezahlten Beträge für die Produkte gutgeschrieben werden.<br /><span class=""notice"">Ist dieses Feld leer, wird das <span style=""font-style: italic;"">Hipay Händlerkonto</span> verwendet.</span>"
@@ -76,3 +76,8 @@
76
  "You will be redirected to our secure payment page when you complete your order.","Sie werden auf unsere sichere Bezahlseite weitergeleitet, wenn Sie Ihre Bestellung abschließen."
77
  "Your order has been canceled because the payment process failed.","Ihr Bestellvorgang wurde abgebrochen, da während des Bezahlvorgangs ein Fehler augetreten ist."
78
  "Your order has been canceled because you have canceled the payment process.","Ihr Bestellvorgang wurde abgebrochen, da Sie den Bezahlvorgang abgebrochen haben."
 
 
 
 
 
32
  "hipay_accountsettings_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Was Sie hier einstellen müssen:</span><br /><ul style=""list-style:square outside none; padding-left:15px;""><li>Hinterlegen Sie Ihre Hipay-Kontodaten (Konto-ID, Site-Passwort und Site-ID).</li><li>Festlegen der Bestellkategorie und der Alterseinstufung.</li><li>Festlegen der E-Mail-Adresse für Zahlungsbenachrichtigungen.</li></ul>Weitere Informationen finden Sie auf dem Reiter <span style=""font-style: italic;"">Wie man Hipay konfiguriert</span>."
33
  "hipay_extendedaccountsettings_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Was Sie hier einstellen können:</span><br /><ul style=""list-style:square outside none; padding-left:15px;""><li>Ändern des Betriebsmodus auf 'Test' um diese Erweiterung im Testmodus zu betreiben.</li><li>Festlegen eines eigenen Logos für den Zahlungsdialog.</li> <li>Festlegen abweichender Hipaykonten um den Gesamtbetrag in Teilbeträge aufzuspalten.<p>Sie können den Gesamtbetrag dabei in die folgenden Teilbeträge aufspalten lassen: Produkte und Versand.<br />Als folge daraus, müssen Sie für jeden Teilbetrag mit wenigen Klicks ein eigenes Unterkonto in Ihrem Hipaykonto erstellen.</p></li></ul>"
34
  "hipay_general_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Was Sie hier einstellen können:</span><br /><ul style=""list-style:square outside none; padding-left:15px;""><li>Diese Zahlungsmethode aktivieren</li><li>Die Länder auswählen, in denen diese Zahlungsmethode verfügbar sein soll.</li></ul>"
35
+ "hipay_howto_groupcomment","Um diese Erweiterung nutzen zu können, müssen Sie sich ein Händlerkonto auf hipay.com anlegen.<br />Öffnen Sie anschließend den Reiter <span style=""font-style: italic;"">Hipay Händlerkonto</span> und hinterlegen Sie dort die Hipay-Kontodaten. Die Erweiterung ist damit vollständig konfiguriert.<br />Aktivieren Sie nun die Erweiterung auf dem Reiter <span style=""font-style: italic;"">Allgemeine Einstellungen</span>.<br />Fertig!<div style=""margin-top:10px;""><a href=""https://www.hipaywallet.com/"" target=""_blank"">Händlerkonto anlegen auf hipay.com</a>.<br /><br /></div>"
36
+ "hipay_support_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Wo Sie Hilfe finden:</span><p>Bei Fragen zu dieser Erweiterung, Verbesserungsvorschlägen oder wenn Sie glauben, dass Sie einen Fehler gefunden haben senden Sie bitte eine E-Mail an <a href=""mailto:support.wallet@hipay.com"">support.wallet@hipay.com</a>.</p><p>Für alle anderen Fragen, z.B. wenn Sie ein Problem mit einer Zahlungstransaktion haben, benutzen Sie bitte unser <a href=""https://www.hipaywallet.com/info/contact"" target=""_blank"">Kontaktformular</a> auf hipay.com</p>"
37
  "How to setup Hipay","Wie man Hipay konfiguriert"
38
  "Item Account","Produkt-Konto"
39
  "itemaccountid-comment","Konto-ID des (Unter-)Kontos dem die gezahlten Beträge für die Produkte gutgeschrieben werden.<br /><span class=""notice"">Ist dieses Feld leer, wird das <span style=""font-style: italic;"">Hipay Händlerkonto</span> verwendet.</span>"
76
  "You will be redirected to our secure payment page when you complete your order.","Sie werden auf unsere sichere Bezahlseite weitergeleitet, wenn Sie Ihre Bestellung abschließen."
77
  "Your order has been canceled because the payment process failed.","Ihr Bestellvorgang wurde abgebrochen, da während des Bezahlvorgangs ein Fehler augetreten ist."
78
  "Your order has been canceled because you have canceled the payment process.","Ihr Bestellvorgang wurde abgebrochen, da Sie den Bezahlvorgang abgebrochen haben."
79
+ "text_1","A solution available without VAD's contracts"
80
+ "text_2","Free installation and no subscription fee"
81
+ "text_3","An integrated anti-fraud unit for more safety"
82
+ "text_4","Customizable payment pages with responsive design"
83
+ "text_5","More than 15 local and international payment solutions"
app/locale/de_DE/HimediaPayments_Hipay.csv CHANGED
@@ -32,8 +32,8 @@
32
  "hipay_accountsettings_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Was Sie hier einstellen müssen:</span><br /><ul style=""list-style:square outside none; padding-left:15px;""><li>Hinterlegen Sie Ihre Hipay-Kontodaten (Konto-ID, Site-Passwort und Site-ID).</li><li>Festlegen der Bestellkategorie und der Alterseinstufung.</li><li>Festlegen der E-Mail-Adresse für Zahlungsbenachrichtigungen.</li></ul>Weitere Informationen finden Sie auf dem Reiter <span style=""font-style: italic;"">Wie man Hipay konfiguriert</span>."
33
  "hipay_extendedaccountsettings_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Was Sie hier einstellen können:</span><br /><ul style=""list-style:square outside none; padding-left:15px;""><li>Ändern des Betriebsmodus auf 'Test' um diese Erweiterung im Testmodus zu betreiben.</li><li>Festlegen eines eigenen Logos für den Zahlungsdialog.</li> <li>Festlegen abweichender Hipaykonten um den Gesamtbetrag in Teilbeträge aufzuspalten.<p>Sie können den Gesamtbetrag dabei in die folgenden Teilbeträge aufspalten lassen: Produkte und Versand.<br />Als folge daraus, müssen Sie für jeden Teilbetrag mit wenigen Klicks ein eigenes Unterkonto in Ihrem Hipaykonto erstellen.</p></li></ul>"
34
  "hipay_general_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Was Sie hier einstellen können:</span><br /><ul style=""list-style:square outside none; padding-left:15px;""><li>Diese Zahlungsmethode aktivieren</li><li>Die Länder auswählen, in denen diese Zahlungsmethode verfügbar sein soll.</li></ul>"
35
- "hipay_howto_groupcomment","Um diese Erweiterung nutzen zu können, müssen Sie sich ein Händlerkonto auf hipay.com anlegen.<br />Öffnen Sie anschließend den Reiter <span style=""font-style: italic;"">Hipay Händlerkonto</span> und hinterlegen Sie dort die Hipay-Kontodaten. Die Erweiterung ist damit vollständig konfiguriert.<br />Aktivieren Sie nun die Erweiterung auf dem Reiter <span style=""font-style: italic;"">Allgemeine Einstellungen</span>.<br />Fertig!<div style=""margin-top:10px;""><a href=""https://www.hipay.com/registration/register/type/merchant"" target=""_blank"">Händlerkonto anlegen auf hipay.com</a>.<br /><br /><a href=""%HIPAYFILES%/Hipay-Payment-Extension_german.pdf"" target=""_blank"" class=""hipay-pdf-link"">Anleitung</a> zum Einrichten des Hipay-Kontos und des Zahlungsmoduls</div>"
36
- "hipay_support_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Wo Sie Hilfe finden:</span><p>Bei Fragen zu dieser Erweiterung, Verbesserungsvorschlägen oder wenn Sie glauben, dass Sie einen Fehler gefunden haben senden Sie bitte eine E-Mail an <a href=""mailto:shop-extensions@hi-media.com"">shop-extensions@hi-media.com</a>.</p><p>Für alle anderen Fragen, z.B. wenn Sie ein Problem mit einer Zahlungstransaktion haben, benutzen Sie bitte unser <a href=""https://www.hipay.com/info/contact"" target=""_blank"">Kontaktformular</a> auf hipay.com</p>"
37
  "How to setup Hipay","Wie man Hipay konfiguriert"
38
  "Item Account","Produkt-Konto"
39
  "itemaccountid-comment","Konto-ID des (Unter-)Kontos dem die gezahlten Beträge für die Produkte gutgeschrieben werden.<br /><span class=""notice"">Ist dieses Feld leer, wird das <span style=""font-style: italic;"">Hipay Händlerkonto</span> verwendet.</span>"
@@ -76,3 +76,8 @@
76
  "You will be redirected to our secure payment page when you complete your order.","Sie werden auf unsere sichere Bezahlseite weitergeleitet, wenn Sie Ihre Bestellung abschließen."
77
  "Your order has been canceled because the payment process failed.","Ihr Bestellvorgang wurde abgebrochen, da während des Bezahlvorgangs ein Fehler augetreten ist."
78
  "Your order has been canceled because you have canceled the payment process.","Ihr Bestellvorgang wurde abgebrochen, da Sie den Bezahlvorgang abgebrochen haben."
 
 
 
 
 
32
  "hipay_accountsettings_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Was Sie hier einstellen müssen:</span><br /><ul style=""list-style:square outside none; padding-left:15px;""><li>Hinterlegen Sie Ihre Hipay-Kontodaten (Konto-ID, Site-Passwort und Site-ID).</li><li>Festlegen der Bestellkategorie und der Alterseinstufung.</li><li>Festlegen der E-Mail-Adresse für Zahlungsbenachrichtigungen.</li></ul>Weitere Informationen finden Sie auf dem Reiter <span style=""font-style: italic;"">Wie man Hipay konfiguriert</span>."
33
  "hipay_extendedaccountsettings_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Was Sie hier einstellen können:</span><br /><ul style=""list-style:square outside none; padding-left:15px;""><li>Ändern des Betriebsmodus auf 'Test' um diese Erweiterung im Testmodus zu betreiben.</li><li>Festlegen eines eigenen Logos für den Zahlungsdialog.</li> <li>Festlegen abweichender Hipaykonten um den Gesamtbetrag in Teilbeträge aufzuspalten.<p>Sie können den Gesamtbetrag dabei in die folgenden Teilbeträge aufspalten lassen: Produkte und Versand.<br />Als folge daraus, müssen Sie für jeden Teilbetrag mit wenigen Klicks ein eigenes Unterkonto in Ihrem Hipaykonto erstellen.</p></li></ul>"
34
  "hipay_general_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Was Sie hier einstellen können:</span><br /><ul style=""list-style:square outside none; padding-left:15px;""><li>Diese Zahlungsmethode aktivieren</li><li>Die Länder auswählen, in denen diese Zahlungsmethode verfügbar sein soll.</li></ul>"
35
+ "hipay_howto_groupcomment","Um diese Erweiterung nutzen zu können, müssen Sie sich ein Händlerkonto auf hipay.com anlegen.<br />Öffnen Sie anschließend den Reiter <span style=""font-style: italic;"">Hipay Händlerkonto</span> und hinterlegen Sie dort die Hipay-Kontodaten. Die Erweiterung ist damit vollständig konfiguriert.<br />Aktivieren Sie nun die Erweiterung auf dem Reiter <span style=""font-style: italic;"">Allgemeine Einstellungen</span>.<br />Fertig!<div style=""margin-top:10px;""><a href=""https://www.hipaywallet.com/"" target=""_blank"">Händlerkonto anlegen auf hipay.com</a>.<br /><br /></div>"
36
+ "hipay_support_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Wo Sie Hilfe finden:</span><p>Bei Fragen zu dieser Erweiterung, Verbesserungsvorschlägen oder wenn Sie glauben, dass Sie einen Fehler gefunden haben senden Sie bitte eine E-Mail an <a href=""mailto:support.wallet@hipay.com"">support.wallet@hipay.com</a>.</p><p>Für alle anderen Fragen, z.B. wenn Sie ein Problem mit einer Zahlungstransaktion haben, benutzen Sie bitte unser <a href=""https://www.hipaywallet.com/info/contact"" target=""_blank"">Kontaktformular</a> auf hipay.com</p>"
37
  "How to setup Hipay","Wie man Hipay konfiguriert"
38
  "Item Account","Produkt-Konto"
39
  "itemaccountid-comment","Konto-ID des (Unter-)Kontos dem die gezahlten Beträge für die Produkte gutgeschrieben werden.<br /><span class=""notice"">Ist dieses Feld leer, wird das <span style=""font-style: italic;"">Hipay Händlerkonto</span> verwendet.</span>"
76
  "You will be redirected to our secure payment page when you complete your order.","Sie werden auf unsere sichere Bezahlseite weitergeleitet, wenn Sie Ihre Bestellung abschließen."
77
  "Your order has been canceled because the payment process failed.","Ihr Bestellvorgang wurde abgebrochen, da während des Bezahlvorgangs ein Fehler augetreten ist."
78
  "Your order has been canceled because you have canceled the payment process.","Ihr Bestellvorgang wurde abgebrochen, da Sie den Bezahlvorgang abgebrochen haben."
79
+ "text_1","A solution available without VAD's contracts"
80
+ "text_2","Free installation and no subscription fee"
81
+ "text_3","An integrated anti-fraud unit for more safety"
82
+ "text_4","Customizable payment pages with responsive design"
83
+ "text_5","More than 15 local and international payment solutions"
app/locale/en_US/HimediaPayments_Hipay.csv CHANGED
@@ -32,8 +32,8 @@
32
  "hipay_accountsettings_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">What you have to do here:</span><br /><ul style=""list-style:square outside none; padding-left:15px;""><li>Set your account data (account id, password and site id).</li><li>Select order category and age classification.</li><li>Set an e-mail address for payment notifications.</li></ul>For more informations please go to the <span style=""font-style: italic;"">How to setup Hipay</span> tab above."
33
  "hipay_extendedaccountsettings_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">What you can do here:</span><br /><ul style=""list-style:square outside none; padding-left:15px;""><li>Change the account mode to 'test' and run this extension in test mode.</li><li>Set your own logo for the payment dialog.</li> <li>Set different accounts to split the amounts of your payments. <p>You can automatically split the payment amount into one ore more of the following partial amounts: product and shipping.<br />As a result of this, you have do create different sub accounts for each of the partial amounts under your Hipay account.</p></li></ul>"
34
  "hipay_general_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">What you can do here:</span><br /><ul style=""list-style:square outside none; padding-left:15px;""><li>Enable this payment method</li><li>Select the countries where this payment method should be available</li></ul>"
35
- "hipay_howto_groupcomment","To use this extension you must create a user area on hipay.com and store certain information about your shop.<br />Afterwards open the tab <span style=""font-style: italic;"">Hipay Account</span> and enter the necessary account data. The extension is now fully configured.<br />Enable the extension and Hipay as a new payment method on the tab <span style=""font-style: italic;"">General Extension Settings</span>.<br />Well done.<div style=""margin-top:10px;""><a href=""https://www.hipay.com/registration/register/type/merchant"" target=""_blank"">Create your user account on hipay.com</a>.<br /><br /><a href=""%HIPAYFILES%/Hipay-Payment-Extension_english.pdf"" target=""_blank"" class=""hipay-pdf-link"">Guide</ a> to set up the Hipay account and the payment module</div>"
36
- "hipay_support_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Where you can find help:</span><p>If you have questions about our extension, suggestions for improvement or you think you have found a bug, please write an email to <a href=""mailto:shop-extensions@hi-media.com"">shop-extensions@hi-media.com</a>.</p><p>For any other question, e.g. if you have an issue with one of your payment transactions, please use our <a href=""https://www.hipay.com/info/contact"" target=""_blank"">contact form</a> on hipay.com</p>"
37
  "How to setup Hipay","How to setup Hipay"
38
  "Item Account","Item Account"
39
  "itemaccountid-comment","ID of the (sub) account which the amount paid for the goods will be credited.<br /><span class=""notice"">If this field is left blank, then the <span style=""font-style: italic;"">Hipay merchant account</span> is used.</span>"
@@ -76,3 +76,8 @@
76
  "You will be redirected to our secure payment page when you complete your order.","You will be redirected to our secure payment page when you complete your order."
77
  "Your order has been canceled because the payment process failed.","Your order has been canceled because the payment process failed."
78
  "Your order has been canceled because you have canceled the payment process.","Your order has been canceled because you have canceled the payment process."
 
 
 
 
 
32
  "hipay_accountsettings_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">What you have to do here:</span><br /><ul style=""list-style:square outside none; padding-left:15px;""><li>Set your account data (account id, password and site id).</li><li>Select order category and age classification.</li><li>Set an e-mail address for payment notifications.</li></ul>For more informations please go to the <span style=""font-style: italic;"">How to setup Hipay</span> tab above."
33
  "hipay_extendedaccountsettings_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">What you can do here:</span><br /><ul style=""list-style:square outside none; padding-left:15px;""><li>Change the account mode to 'test' and run this extension in test mode.</li><li>Set your own logo for the payment dialog.</li> <li>Set different accounts to split the amounts of your payments. <p>You can automatically split the payment amount into one ore more of the following partial amounts: product and shipping.<br />As a result of this, you have do create different sub accounts for each of the partial amounts under your Hipay account.</p></li></ul>"
34
  "hipay_general_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">What you can do here:</span><br /><ul style=""list-style:square outside none; padding-left:15px;""><li>Enable this payment method</li><li>Select the countries where this payment method should be available</li></ul>"
35
+ "hipay_howto_groupcomment","To use this extension you must create a user area on hipay.com and store certain information about your shop.<br />Afterwards open the tab <span style=""font-style: italic;"">Hipay Account</span> and enter the necessary account data. The extension is now fully configured.<br />Enable the extension and Hipay as a new payment method on the tab <span style=""font-style: italic;"">General Extension Settings</span>.<br />Well done.<div style=""margin-top:10px;""><a href=""https://www.hipaywallet.com/"" target=""_blank"">Create your user account on hipay.com</a>.<br /><br /></div>"
36
+ "hipay_support_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Where you can find help:</span><p>If you have questions about our extension, suggestions for improvement or you think you have found a bug, please write an email to <a href=""mailto:support.wallet@hipay.com"">support.wallet@hipay.com</a>.</p><p>For any other question, e.g. if you have an issue with one of your payment transactions, please use our <a href=""https://www.hipaywallet.com/info/contact"" target=""_blank"">contact form</a> on hipay.com</p>"
37
  "How to setup Hipay","How to setup Hipay"
38
  "Item Account","Item Account"
39
  "itemaccountid-comment","ID of the (sub) account which the amount paid for the goods will be credited.<br /><span class=""notice"">If this field is left blank, then the <span style=""font-style: italic;"">Hipay merchant account</span> is used.</span>"
76
  "You will be redirected to our secure payment page when you complete your order.","You will be redirected to our secure payment page when you complete your order."
77
  "Your order has been canceled because the payment process failed.","Your order has been canceled because the payment process failed."
78
  "Your order has been canceled because you have canceled the payment process.","Your order has been canceled because you have canceled the payment process."
79
+ "text_1","A solution available without VAD's contracts"
80
+ "text_2","Free installation and no subscription fee"
81
+ "text_3","An integrated anti-fraud unit for more safety"
82
+ "text_4","Customizable payment pages with responsive design"
83
+ "text_5","More than 15 local and international payment solutions"
app/locale/fr_FR/HimediaPayments_Hipay.csv CHANGED
@@ -32,8 +32,8 @@
32
  "hipay_accountsettings_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Ce que vous devez faire:</span><br /><ul style=""list-style:square outside none; padding-left:15px;""><li>Paramétrez vos informations de compte(id compte, mot de passe et id site).</li><li>Sélectionnez la catégorie et la tranche d'âge.</li><li>Paramétrez une adresse email pour les notifications de paiement.</li></ul>Pour plus d'informations, allez sur l'onglet <span style=""font-style: italic;"">Comment configurer Hipay</span> ."
33
  "hipay_extendedaccountsettings_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Ce que vous pouvez faire:</span><br /><ul style=""list-style:square outside none; padding-left:15px;""><li>Paramétrez le type de compte sur 'test' et lancer cette extension en mode test.</li><li>Intégrez votre propre logo dans la boîte de dialogue de paiement.</li> <li>Paramétrez plusieurs comptes pour répartir vos paiements. <p>Vous pouvez automatiquement fractionner le montant d'un paiement en un ou plusieurs sous-montants: produit et livraison.<br />De ce fait, vous devez créer plusieurs sous-comptes pour chaque sous-montant dans votre compte Hipay.</p></li></ul>"
34
  "hipay_general_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Ce que vous pouvez faire:</span><br /><ul style=""list-style:square outside none; padding-left:15px;""><li>Activer cette méthode de paiement</li><li>Sélectionner les pays où vous souhaitez utiliser cette méthode de paiement.</li></ul>"
35
- "hipay_howto_groupcomment","Pour utiliser cette extension vous devez créer un espace utilisateur sur hipay.com et enregistrer certaines informations à propos de votre boutique.<br />Ensuite, ouvrez l'onglet <span style=""font-style: italic;"">Compte Hipay</span> et entrez les données compte nécessaires. L'extension est désormais complétement configurée.<br />Activez l'extension et Hipay en tant que nouvelle méthode de paiement sur l'onglet <span style=""font-style: italic;"">Paramètres d'extension</span>.<br /><div style=""margin-top:10px;""><a href=""https://www.hipay.com/registration/register/type/merchant"" target=""_blank"">Créez votre compte utilisateur sur hipay.com</a>.<br /><br /><a href=""%HIPAYFILES%/Hipay-Payment-Extension_english.pdf"" target=""_blank"" class=""hipay-pdf-link"">Document</ a> de création de compte Hipay et du module de paiement</div>"
36
- "hipay_support_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Besoin d'aide:</span><p>Si vous avez des questions, des suggestions d''amélioration ou si vous avez rencontré un problème concernant l'extension, veuillez envoyer un email à <a href=""mailto:shop-extensions@hi-media.com"">shop-extensions@hi-media.com</a>.</p><p>Pour tout autre question, par exemple, un souci avec une transaction, merci d'utiliser <a href=""https://www.hipay.com/info/contact"" target=""_blank"">le formulaire de contact</a> sur hipay.com</p>"
37
  "How to setup Hipay","Comment configurer Hipay"
38
  "Item Account","Compte produit"
39
  "itemaccountid-comment","ID du (sous)-compte qui sera crédité du montant payé.<br /><span class=""notice"">Si ce champ n'est pas renseigné, le <span style=""font-style: italic;"">compte marchand Hipay</span> sera utilisé.</span>"
@@ -76,3 +76,8 @@
76
  "You will be redirected to our secure payment page when you complete your order.","Vous allez être redirigé vers notre page sécurisée de paiement une fois la transaction complétée."
77
  "Your order has been canceled because the payment process failed.","Votre transaction a été annulée car le processus de paiement a échoué."
78
  "Your order has been canceled because you have canceled the payment process.","Votre transaction a échoué car vous avez annulé le processus de paiement."
 
 
 
 
 
32
  "hipay_accountsettings_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Ce que vous devez faire:</span><br /><ul style=""list-style:square outside none; padding-left:15px;""><li>Paramétrez vos informations de compte(id compte, mot de passe et id site).</li><li>Sélectionnez la catégorie et la tranche d'âge.</li><li>Paramétrez une adresse email pour les notifications de paiement.</li></ul>Pour plus d'informations, allez sur l'onglet <span style=""font-style: italic;"">Comment configurer Hipay</span> ."
33
  "hipay_extendedaccountsettings_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Ce que vous pouvez faire:</span><br /><ul style=""list-style:square outside none; padding-left:15px;""><li>Paramétrez le type de compte sur 'test' et lancer cette extension en mode test.</li><li>Intégrez votre propre logo dans la boîte de dialogue de paiement.</li> <li>Paramétrez plusieurs comptes pour répartir vos paiements. <p>Vous pouvez automatiquement fractionner le montant d'un paiement en un ou plusieurs sous-montants: produit et livraison.<br />De ce fait, vous devez créer plusieurs sous-comptes pour chaque sous-montant dans votre compte Hipay.</p></li></ul>"
34
  "hipay_general_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Ce que vous pouvez faire:</span><br /><ul style=""list-style:square outside none; padding-left:15px;""><li>Activer cette méthode de paiement</li><li>Sélectionner les pays où vous souhaitez utiliser cette méthode de paiement.</li></ul>"
35
+ "hipay_howto_groupcomment","Pour utiliser cette extension vous devez créer un espace utilisateur sur hipay.com et enregistrer certaines informations à propos de votre boutique.<br />Ensuite, ouvrez l'onglet <span style=""font-style: italic;"">Compte Hipay</span> et entrez les données compte nécessaires. L'extension est désormais complétement configurée.<br />Activez l'extension et Hipay en tant que nouvelle méthode de paiement sur l'onglet <span style=""font-style: italic;"">Paramètres d'extension</span>.<br /><div style=""margin-top:10px;""><a href=""https://www.hipaywallet.com/"" target=""_blank"">Créez votre compte utilisateur sur hipay.com</a>.<br /><br /></div>"
36
+ "hipay_support_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Besoin d'aide:</span><p>Si vous avez des questions, des suggestions d''amélioration ou si vous avez rencontré un problème concernant l'extension, veuillez envoyer un email à <a href=""mailto:support.wallet@hipay.com"">support.wallet@hipay.com</a>.</p><p>Pour tout autre question, par exemple, un souci avec une transaction, merci d'utiliser <a href=""https://www.hipaywallet.com/info/contact"" target=""_blank"">le formulaire de contact</a> sur hipay.com</p>"
37
  "How to setup Hipay","Comment configurer Hipay"
38
  "Item Account","Compte produit"
39
  "itemaccountid-comment","ID du (sous)-compte qui sera crédité du montant payé.<br /><span class=""notice"">Si ce champ n'est pas renseigné, le <span style=""font-style: italic;"">compte marchand Hipay</span> sera utilisé.</span>"
76
  "You will be redirected to our secure payment page when you complete your order.","Vous allez être redirigé vers notre page sécurisée de paiement une fois la transaction complétée."
77
  "Your order has been canceled because the payment process failed.","Votre transaction a été annulée car le processus de paiement a échoué."
78
  "Your order has been canceled because you have canceled the payment process.","Votre transaction a échoué car vous avez annulé le processus de paiement."
79
+ "text_1","Une solution disponible sans contrat VAD"
80
+ "text_2","Une installation gratuite et sans frais d'abonnement"
81
+ "text_3","Un module anti-fraude intégré pour plus de sécurité"
82
+ "text_4","Des pages de paiement personnalisables et adaptées au mobile"
83
+ "text_5","Plus de 15 solutions de paiement locales et internationales"
app/locale/it_IT/HimediaPayments_Hipay.csv CHANGED
@@ -32,8 +32,8 @@
32
  "hipay_accountsettings_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Cosa dovete fare:</span><br /><ul style=""list-style:square outside none; padding-left:15px;""><li>Indicate le vostre informazioni sul conto (id account, password e id sito).</li><li>Selezionate la categoria e l'età.</li><li>Indicate un indirizzo e-mail per le notifiche sui pagamenti.</li></ul>Per maggiori informazioni andare sulla scheda <span style=""font-style: italic;"">Come configurare HiPay</span>."
33
  "hipay_extendedaccountsettings_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Cosa potete fare qui:</span><br /><ul style=""list-style:square outside none; padding-left:15px;""><li>Cambiare il tipo di conto su 'test' e lanciare questa estenzione in modo test.</li><li>Inserite il vostro logo nella finestra di dialogo di pagamento.</li> <li>Create diversi conti per distribuire gli importi dei vostri pagamenti.<p>Potete automaticamente frazionare gli importi di pagamento in uno o più dei seguenti importi parziali: prodotto e consegna.<br />In considerazione di questo, dovete creare diversi sottoconti per ogni importo parziale sotto il vostro conto Hipay.</p></li></ul>"
34
  "hipay_general_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Cosa potete fare qui:</span><br /><ul style=""list-style:square outside none; padding-left:15px;""><li>Attivare questo metodo di pagamento</li><li>Selezionare i paesi dove il metodo di pagamento è disponibile</li></ul>"
35
- "hipay_howto_groupcomment","Per usare questa extension dovete creare un'area utente su hipay.com e registrare delle informazioni sul vostro negozio.<br />Dopo aprite la scheda <span style=""font-style: italic;"">Conto Hipay</span> e inserite i dati dell'account necessari. L'estensione è ora configurata completamente.<br />Attivate l'estensione e Hipay come nuovo metodo di pagamento sulla scheda <span style=""font-style: italic;"">Impostazioni Generali dell'Estensione</span>.<br />Ben fatto.<div style=""margin-top:10px;""><a href=""https://www.hipay.com/registration/register/type/merchant"" target=""_blank"">Create il vostro user accounr su hipay.com</a>.<br /><br /><a href=""%HIPAYFILES%/Hipay-Payment-Extension_english.pdf"" target=""_blank"" class=""hipay-pdf-link"">Guida</ a> per creare un account Hipay e il modello di pagamento</div>"
36
- "hipay_support_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Bisogno di aiuto:</span><p>Se avete delle domande sulla vostra estensione, suggerimenti per miglioramenti o pensi di aver trovato un errore, scrivi per cortesia una email a <a href=""mailto:shop-extensions@hi-media.com"">shop-extensions@hi-media.com</a>.</p><p>Per qualsiasi altra domanda, es. se hai dei problemi con una delle nostre transazioni, per cortesia utilizza <a href=""https://www.hipay.com/info/contact"" target=""_blank"">modulo contatti</a> su hipay.com</p>"
37
  "How to setup Hipay","Come configurare Hipay"
38
  "Item Account","Conto Articoli"
39
  "itemaccountid-comment","ID del (sub) conto che verrà accreditato dell'importo pagato.<br /><span class=""notice"">Se questo campo non viene completato, allora il <span style=""font-style: italic;"">Hipay conto commerciante</span> viene utilizzato.</span>"
@@ -76,3 +76,8 @@
76
  "You will be redirected to our secure payment page when you complete your order.","Sarete indirizzati alla nostra pagina di pagamento sicura quando avrete completato l'ordine."
77
  "Your order has been canceled because the payment process failed.","Il vostro ordine è stato cancellato perché il processo di pagamento è fallito."
78
  "Your order has been canceled because you have canceled the payment process.","Il vostro ordine è stato cancellato perché avete annullato il processo di pagamento."
 
 
 
 
 
32
  "hipay_accountsettings_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Cosa dovete fare:</span><br /><ul style=""list-style:square outside none; padding-left:15px;""><li>Indicate le vostre informazioni sul conto (id account, password e id sito).</li><li>Selezionate la categoria e l'età.</li><li>Indicate un indirizzo e-mail per le notifiche sui pagamenti.</li></ul>Per maggiori informazioni andare sulla scheda <span style=""font-style: italic;"">Come configurare HiPay</span>."
33
  "hipay_extendedaccountsettings_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Cosa potete fare qui:</span><br /><ul style=""list-style:square outside none; padding-left:15px;""><li>Cambiare il tipo di conto su 'test' e lanciare questa estenzione in modo test.</li><li>Inserite il vostro logo nella finestra di dialogo di pagamento.</li> <li>Create diversi conti per distribuire gli importi dei vostri pagamenti.<p>Potete automaticamente frazionare gli importi di pagamento in uno o più dei seguenti importi parziali: prodotto e consegna.<br />In considerazione di questo, dovete creare diversi sottoconti per ogni importo parziale sotto il vostro conto Hipay.</p></li></ul>"
34
  "hipay_general_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Cosa potete fare qui:</span><br /><ul style=""list-style:square outside none; padding-left:15px;""><li>Attivare questo metodo di pagamento</li><li>Selezionare i paesi dove il metodo di pagamento è disponibile</li></ul>"
35
+ "hipay_howto_groupcomment","Per usare questa extension dovete creare un'area utente su hipay.com e registrare delle informazioni sul vostro negozio.<br />Dopo aprite la scheda <span style=""font-style: italic;"">Conto Hipay</span> e inserite i dati dell'account necessari. L'estensione è ora configurata completamente.<br />Attivate l'estensione e Hipay come nuovo metodo di pagamento sulla scheda <span style=""font-style: italic;"">Impostazioni Generali dell'Estensione</span>.<br />Ben fatto.<div style=""margin-top:10px;""><a href=""https://www.hipaywallet.com/"" target=""_blank"">Create il vostro user accounr su hipay.com</a>.<br /><br /></div>"
36
+ "hipay_support_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Bisogno di aiuto:</span><p>Se avete delle domande sulla vostra estensione, suggerimenti per miglioramenti o pensi di aver trovato un errore, scrivi per cortesia una email a <a href=""mailto:support.wallet@hipay.com"">support.wallet@hipay.com</a>.</p><p>Per qualsiasi altra domanda, es. se hai dei problemi con una delle nostre transazioni, per cortesia utilizza <a href=""https://www.hipaywallet.com/info/contact"" target=""_blank"">modulo contatti</a> su hipay.com</p>"
37
  "How to setup Hipay","Come configurare Hipay"
38
  "Item Account","Conto Articoli"
39
  "itemaccountid-comment","ID del (sub) conto che verrà accreditato dell'importo pagato.<br /><span class=""notice"">Se questo campo non viene completato, allora il <span style=""font-style: italic;"">Hipay conto commerciante</span> viene utilizzato.</span>"
76
  "You will be redirected to our secure payment page when you complete your order.","Sarete indirizzati alla nostra pagina di pagamento sicura quando avrete completato l'ordine."
77
  "Your order has been canceled because the payment process failed.","Il vostro ordine è stato cancellato perché il processo di pagamento è fallito."
78
  "Your order has been canceled because you have canceled the payment process.","Il vostro ordine è stato cancellato perché avete annullato il processo di pagamento."
79
+ "text_1","A solution available without VAD's contracts"
80
+ "text_2","Free installation and no subscription fee"
81
+ "text_3","An integrated anti-fraud unit for more safety"
82
+ "text_4","Customizable payment pages with responsive design"
83
+ "text_5","More than 15 local and international payment solutions"
app/locale/nl_NL/HimediaPayments_Hipay.csv ADDED
@@ -0,0 +1,83 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "About us","About us"
2
+ "Account Mode","Account Mode"
3
+ "accountmode-comment","If set to 'Test' the module will use the Hipay test system otherwise it's using the live system.<br/><span class=""notice"">Note, you need separate accounts for each system. See 'How to setup Hipay' for more information.</span>"
4
+ "Age Classification","Age Classification"
5
+ "ageclassification-comment","Select the minimum age of the buyers."
6
+ "at","at"
7
+ "Australian Dollar","Australian Dollar"
8
+ "British Pound","British Pound"
9
+ "Buyer Information","Buyer Information"
10
+ "Canadian Dollar","Canadian Dollar"
11
+ "Contact","Contact"
12
+ "CUSTOMER EMAIL","CUSTOMER EMAIL"
13
+ "DATE","DATE"
14
+ "Easy to use","Easy to use"
15
+ "Enabled","Enabled"
16
+ "Error! Check your logs, please!","Error! Check your logs, please!"
17
+ "Euro","Euro"
18
+ "For ages 12 and over","For ages 12 and over"
19
+ "For ages 16 and over","For ages 16 and over"
20
+ "For ages 18 and over","For ages 18 and over"
21
+ "For all ages","For all ages"
22
+ "General Extension Settings","General Extension Settings"
23
+ "Help and Support","Help and Support"
24
+ "Hipay Account","Hipay Account"
25
+ "Hipay Merchant Password","Hipay Merchant Password"
26
+ "Hipay payment failed","Hipay payment failed"
27
+ "Hipay payment loaded","Hipay payment loaded"
28
+ "Hipay payment notification","Hipay payment notification"
29
+ "hipay&trade; is a product of HPME a subsidiary of the","hipay&trade; is a product of HPME a subsidiary of the"
30
+ "hipay-account-field-comment","ID number of the Hipay account on which this store website is declared.<br/><span class=""notice"">Normally this is your main account. Do <span style=""font-weight: bold;"">not</span> use your <span style=""font-style: italic;"">member area id</span> here!</span>"
31
+ "hipay-merchant-password-comment","Merchant password of the Hipay account on which this store website is declared (it's not the login password!).<br /><span class=""notice"">To set a new merchant password: Log in to your Hipay account, navigate to <span style=""font-style: italic;"">Payment buttons</span> where you can find a list of your registered sites. Click on the <span style=""font-style: italic;"">site informations</span> button of the related site. Enter your <span style=""font-style: italic;""> merchant password</span> and click on confirm. Do not forget to enter your new password here too.</span>"
32
+ "hipay_accountsettings_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">What you have to do here:</span><br /><ul style=""list-style:square outside none; padding-left:15px;""><li>Set your account data (account id, password and site id).</li><li>Select order category and age classification.</li><li>Set an e-mail address for payment notifications.</li></ul>For more informations please go to the <span style=""font-style: italic;"">How to setup Hipay</span> tab above."
33
+ "hipay_extendedaccountsettings_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">What you can do here:</span><br /><ul style=""list-style:square outside none; padding-left:15px;""><li>Change the account mode to 'test' and run this extension in test mode.</li><li>Set your own logo for the payment dialog.</li> <li>Set different accounts to split the amounts of your payments. <p>You can automatically split the payment amount into one ore more of the following partial amounts: product and shipping.<br />As a result of this, you have do create different sub accounts for each of the partial amounts under your Hipay account.</p></li></ul>"
34
+ "hipay_general_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">What you can do here:</span><br /><ul style=""list-style:square outside none; padding-left:15px;""><li>Enable this payment method</li><li>Select the countries where this payment method should be available</li></ul>"
35
+ "hipay_howto_groupcomment","To use this extension you must create a user area on hipay.com and store certain information about your shop.<br />Afterwards open the tab <span style=""font-style: italic;"">Hipay Account</span> and enter the necessary account data. The extension is now fully configured.<br />Enable the extension and Hipay as a new payment method on the tab <span style=""font-style: italic;"">General Extension Settings</span>.<br />Well done.<div style=""margin-top:10px;""><a href=""https://www.hipaywallet.com/"" target=""_blank"">Create your user account on hipay.com</a>.<br /><br /></div>"
36
+ "hipay_support_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Where you can find help:</span><p>If you have questions about our extension, suggestions for improvement or you think you have found a bug, please write an email to <a href=""mailto:support.wallet@hipay.com"">support.wallet@hipay.com</a>.</p><p>For any other question, e.g. if you have an issue with one of your payment transactions, please use our <a href=""https://www.hipaywallet.com/info/contact"" target=""_blank"">contact form</a> on hipay.com</p>"
37
+ "How to setup Hipay","How to setup Hipay"
38
+ "Item Account","Item Account"
39
+ "itemaccountid-comment","ID of the (sub) account which the amount paid for the goods will be credited.<br /><span class=""notice"">If this field is left blank, then the <span style=""font-style: italic;"">Hipay merchant account</span> is used.</span>"
40
+ "Live","Live"
41
+ "Local means of payment","Local means of payment"
42
+ "logourl-comment","If a logo URL was entered, the logo is displayed in the payment dialog.<br/><span class=""notice"">This logo, in GIF, PNG or JPG (JPEG) format must be accessible from the Internet via HTTPS protocol. This logo must not exceed 100x100 pixels in size.</span>"
43
+ "Merchant Logo URL","Merchant Logo URL"
44
+ "Merchant Site Id","Merchant Site Id"
45
+ "merchant-site-id-comment","Id of the selected site.<br/><span class=""notice"">To get a site id register your store website on the selected Hipay account. You can find this option in your Hipay account under the menu item <span style=""font-style: italic;"">Payment buttons</span>.</span>"
46
+ "No order for processing found!","No order for processing found!"
47
+ "No registration required","No registration required"
48
+ "Notification E-Mail Address","Notification E-Mail Address"
49
+ "notificationemail-comment","E-Mail used by Hipay to post operation notifications."
50
+ "OPERATION","null"
51
+ "Optional Settings","Optional Settings"
52
+ "Order","Order"
53
+ "Order Category","Order Category"
54
+ "ordercategory-comment","Select the order category.<br /><span class=""notice"">A list of your categories (based on the selected <span style=""font-style: italic;"">business line</span>and <span style=""font-style: italic;"">category</span> for your site on Hipay).<br />1. Enter your <span style=""font-style: italic;"">Site Id</span><br />2. Click on <span style=""font-style: italic;"">Save Config</span><br />3. The <span style=""font-style: italic;"">Order Category</span> list will be updated.<br />4. Choose a pleasant category and click on <span style=""font-style: italic;"">Save Config</span> again.</span>"
55
+ "Over 15 payment types accepted, including local ones","Over 15 payment types accepted, including local ones"
56
+ "PAID AMOUNT","PAID AMOUNT"
57
+ "Payment from applicable countries","Payment from applicable countries"
58
+ "Payment from specific countries","Payment from specific countries"
59
+ "Payment has been canceled by customer","Payment has been canceled by customer"
60
+ "Please enter 'Merchant Site Id' first and save config!","Please enter 'Merchant Site Id' first and save config!"
61
+ "Secure","Secure"
62
+ "Secure online payment solution","Een veilige online betaaloplossing"
63
+ "Shipping Account","Shipping Account"
64
+ "shippingaccountid-comment","ID of the (sub) account which the shipping costs will be credited.<br /><span class=""notice"">If this field is left blank, then the <span style=""font-style: italic;"">Hipay merchant account</span> is used.</span>"
65
+ "Shopping cart","Shopping cart"
66
+ "Sort order","Sort order"
67
+ "STATUS","STATUS"
68
+ "Swedish Crone","Swedish Crone"
69
+ "Test","Test"
70
+ "The customer has successfully paid via Hipay","The customer has successfully paid via Hipay"
71
+ "The customer was redirected to Hipay","The customer was redirected to Hipay"
72
+ "This is what you can expect when you pay with hipay:","Hipay, dat is ook:"
73
+ "TRANSACTION ID","TRANSACTION ID"
74
+ "US Dollar","US Dollar"
75
+ "You will be redirected to Hipay ...","You will be redirected to Hipay ..."
76
+ "You will be redirected to our secure payment page when you complete your order.","You will be redirected to our secure payment page when you complete your order."
77
+ "Your order has been canceled because the payment process failed.","Your order has been canceled because the payment process failed."
78
+ "Your order has been canceled because you have canceled the payment process.","Your order has been canceled because you have canceled the payment process."
79
+ "text_1","Geen nood aan een VAD-contract"
80
+ "text_2","Gratis installatie en geen abonnementskosten"
81
+ "text_3","Geïntegreerd antifraudesysteem voor meer veiligheid"
82
+ "text_4","Instelbare betaalpagina's en aangepast voor de mobiele gebruiker"
83
+ "text_5","Meer dan 15 lokale en internationale betaaloplossingen"
app/locale/ru_RU/HimediaPayments_Hipay.csv CHANGED
@@ -32,8 +32,8 @@
32
  "hipay_accountsettings_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Что вы должны сделать здесь: </span><br /><ul style=""list-style:square outside none; padding-left:15px;""><li>Установите данные счета (пароль и ID сайта).</li><li>Выберете категорию порядка и возрастную классификацию.</li><li>Установите EMAIL адрес для уведомлений об оплате.</li></ul>Для получения дополнительной информации, перейдите по ссылке Как настроить Hipay выше."
33
  "hipay_extendedaccountsettings_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Что вы можете сделать здесь:</span><br /><ul style=""list-style:square outside none; padding-left:15px;""><li>Изменить режим счета на "тест" и запустить программу в пробном режиме.</li><li>Установить собственное лого для использования его при оплате.</li><li>Разделить количество платежей по различным счететам.<p>Вы можете автоматически разделить сумму платежа в одно или в несколько из следующих категорий: продукт или доставка.<br />В результате чего, вы должны будете создать различные суб счета для каждой из частичных сумм под вашим главным счетом Hipay.</p></li></ul>"
34
  "hipay_general_groupcomment","Что вы можете сделать здесь: Включить способ оплаты. Выбрать местность, где этот метод оплаты должн быть доступны."
35
- "hipay_howto_groupcomment","Для использования этого расширения необходимо создать личный кабинет на Hipay.com и сохранить в нем информацию о вашем магазине.<br />Затем перейдите на вкладку <span style=""font-style: italic;"">Hipay счет</span> и введите необходимые данные счета, после чего настройка законченна.<br />Включите Hipay как новый метод оплаты на вкладке <span style=""font-style: italic;"">Общие настройки модуля</span>.<br />.<br />Сделано! <div style=""margin-top:10px;""><a href=""https://www.hipay.com/registration/register/type/merchant"" target=""_blank"">Создание счета на hipay.com прошло успешно!</a><br /><br /><a href=""%HIPAYFILES%/Hipay-Payment-Extension_english.pdf"" target=""_blank"" class=""hipay-pdf-link"">Посмотрите руководство о том как создать Hipay счет и платежи модуль.</ a></div>"
36
- "hipay_support_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Где можно найти помощь:</span><p>Если у вас есть вопросы о нашей программе, предложения по улучшению или если вы нашли ошибку, пожалуйста, напишите письмо <a href=""mailto:shop-extensions@hi-media.com"">shop-extensions@hi-media.com</a>.</p><p>По любому другому вопросу, например, Если у вас проблема с одной из ваших платежных операций, пожалуйста, воспользуйтесь <a href=""https://www.hipay.com/info/contact"" target=""_blank"">формой обратной связи</a> на Нipay.com</p>"
37
  "How to setup Hipay","Как настроить Hipay"
38
  "Item Account","Пункт счета"
39
  "itemaccountid-comment","ID (суб) счета, в который сумма, уплаченная за товар будут перечислена.<br /><span class=""notice"">Если оставить это поле пустым, то сумма будет пречилсена на счет Hipay.</span>"
@@ -76,3 +76,8 @@
76
  "You will be redirected to our secure payment page when you complete your order.","Вы будете перенаправлены на безопасную страницу оплаты после завершения вашего заказа."
77
  "Your order has been canceled because the payment process failed.","Ваш заказ был отменен, поскольку процесс оплаты не удался."
78
  "Your order has been canceled because you have canceled the payment process.","Ваш заказ был отменен, потому что вы отменили процесс оплаты"
 
 
 
 
 
32
  "hipay_accountsettings_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Что вы должны сделать здесь: </span><br /><ul style=""list-style:square outside none; padding-left:15px;""><li>Установите данные счета (пароль и ID сайта).</li><li>Выберете категорию порядка и возрастную классификацию.</li><li>Установите EMAIL адрес для уведомлений об оплате.</li></ul>Для получения дополнительной информации, перейдите по ссылке Как настроить Hipay выше."
33
  "hipay_extendedaccountsettings_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Что вы можете сделать здесь:</span><br /><ul style=""list-style:square outside none; padding-left:15px;""><li>Изменить режим счета на "тест" и запустить программу в пробном режиме.</li><li>Установить собственное лого для использования его при оплате.</li><li>Разделить количество платежей по различным счететам.<p>Вы можете автоматически разделить сумму платежа в одно или в несколько из следующих категорий: продукт или доставка.<br />В результате чего, вы должны будете создать различные суб счета для каждой из частичных сумм под вашим главным счетом Hipay.</p></li></ul>"
34
  "hipay_general_groupcomment","Что вы можете сделать здесь: Включить способ оплаты. Выбрать местность, где этот метод оплаты должн быть доступны."
35
+ "hipay_howto_groupcomment","Для использования этого расширения необходимо создать личный кабинет на Hipay.com и сохранить в нем информацию о вашем магазине.<br />Затем перейдите на вкладку <span style=""font-style: italic;"">Hipay счет</span> и введите необходимые данные счета, после чего настройка законченна.<br />Включите Hipay как новый метод оплаты на вкладке <span style=""font-style: italic;"">Общие настройки модуля</span>.<br />.<br />Сделано! <div style=""margin-top:10px;""><a href=""https://www.hipaywallet.com/"" target=""_blank"">Создание счета на hipay.com прошло успешно!</a><br /><br /></div>"
36
+ "hipay_support_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Где можно найти помощь:</span><p>Если у вас есть вопросы о нашей программе, предложения по улучшению или если вы нашли ошибку, пожалуйста, напишите письмо <a href=""mailto:support.wallet@hipay.com"">support.wallet@hipay.com</a>.</p><p>По любому другому вопросу, например, Если у вас проблема с одной из ваших платежных операций, пожалуйста, воспользуйтесь <a href=""https://www.hipaywallet.com/info/contact"" target=""_blank"">формой обратной связи</a> на Нipay.com</p>"
37
  "How to setup Hipay","Как настроить Hipay"
38
  "Item Account","Пункт счета"
39
  "itemaccountid-comment","ID (суб) счета, в который сумма, уплаченная за товар будут перечислена.<br /><span class=""notice"">Если оставить это поле пустым, то сумма будет пречилсена на счет Hipay.</span>"
76
  "You will be redirected to our secure payment page when you complete your order.","Вы будете перенаправлены на безопасную страницу оплаты после завершения вашего заказа."
77
  "Your order has been canceled because the payment process failed.","Ваш заказ был отменен, поскольку процесс оплаты не удался."
78
  "Your order has been canceled because you have canceled the payment process.","Ваш заказ был отменен, потому что вы отменили процесс оплаты"
79
+ "text_1","A solution available without VAD's contracts"
80
+ "text_2","Free installation and no subscription fee"
81
+ "text_3","An integrated anti-fraud unit for more safety"
82
+ "text_4","Customizable payment pages with responsive design"
83
+ "text_5","More than 15 local and international payment solutions"
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Hipay</name>
4
- <version>1.0.13</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD License</license>
7
  <channel>community</channel>
@@ -41,11 +41,12 @@
41
  &lt;p&gt;Weitere Informationen finden Sie unter &lt;a href="http://www.hipaywallet.com/"&gt;www.hipaywallet.com&lt;/a&gt;&lt;/p&gt;&#xD;
42
  &lt;p&gt;Hi-media Payments ist ein Unternehmensbereich der Hi-media Group, eines der f&#xFC;hrenden Online-Unternehmen in Europa und weltweit. F&#xFC;r mehr Informationen zu Hi-media besuchen Sie bitte &lt;a href="http://www.hi-media.de/"&gt;www.hi-media.de&lt;/a&gt;. &lt;/p&gt;</description>
43
  <notes>Update payment button in the checkout&#xD;
44
- bugfix - show images in the checkout</notes>
 
45
  <authors><author><name>HiPay</name><user>hipay</user><email>technique@hipay.com</email></author></authors>
46
- <date>2015-11-25</date>
47
- <time>16:24:49</time>
48
- <contents><target name="magelocal"><dir name="HimediaPayments"><dir name="Hipay"><dir name="Block"><file name="Adminarray.php" hash="d2635e082c7bd625b689f14f53ba5c42"/><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Fieldset"><file name="Commentbox.php" hash="0af5e6dbb3602b0a9cf9f151acc49f7e"/><file name="Hint.php" hash="a941e30babff232ac04fa0f06305b720"/></dir></dir></dir></dir><file name="Commentbox.php" hash="d854f85c18cc0d77f6e4a73d6eaefd62"/><file name="Form.php" hash="9d7dadb1167ab6adce7384bebcb832b1"/></dir><dir name="Helper"><file name="Data.php" hash="90b99516931b30f03261853e86eecdc8"/></dir><dir name="Mapi"><file name="mapi_affiliate.php" hash="113397690e72857575c2b1b1bf18a60f"/><file name="mapi_comm_xml.php" hash="664e2e8b7fea4bf8bce6b0fac00abc22"/><file name="mapi_defs.php" hash="6dee6a6842777e52adadc30eb1806202"/><file name="mapi_defs_ext.php" hash="3e2ad313cfa6277ad5fbe446500ff379"/><file name="mapi_exception.php" hash="71c4e1a37cc82beaabedb5e1618a92ca"/><file name="mapi_installment.php" hash="018a7d0cd79762b505a3c81c8899c002"/><file name="mapi_item.php" hash="0473f98654b7c1974d7ab78034f36fc2"/><file name="mapi_lockable.php" hash="34a101d0ed07fd89afa69671669b593b"/><file name="mapi_multiplepayment.php" hash="e70cbbc8f1b2af08f0f7ac1b6d5f9e5c"/><file name="mapi_order.php" hash="3ed179922934c00ee65517a470a6bb0a"/><file name="mapi_package.php" hash="a03fbeb17a7c163a2323b694aa4b27fc"/><file name="mapi_payment.php" hash="46434d663e50020d891e31471fd569b3"/><file name="mapi_paymentparams.php" hash="aa169016e35023c4f8689b8ddc5b1540"/><file name="mapi_product.php" hash="18ea29fbaa7f266c4bf3a6ea90a49c3d"/><file name="mapi_send_xml.php" hash="7d1d70ce6740b6a90622e10bd2f9e443"/><file name="mapi_simplepayment.php" hash="b6d4650ef84b4a063606f4a68d554a49"/><file name="mapi_tax.php" hash="c673af6130a097c2dfda9c59ed084ea9"/><file name="mapi_utf8.php" hash="ae6e136417a32791e9395c643b7ee881"/><file name="mapi_utils.php" hash="9d9bf78abcadf9184e0cd6176f08c6b7"/><file name="mapi_xml.php" hash="d3499c54392cfe237a2aebe7392e9680"/></dir><dir name="Model"><file name="Accountmode.php" hash="2798ee056ffd10fcfb7eaed9e232c130"/><file name="Age.php" hash="04503f8459f6865c59b62a6781646104"/><file name="Category.php" hash="89dc10da5822c45ad8768cad13505f86"/><file name="Currencies.php" hash="ef8f334ae60917db43b98ee3275c8c11"/><file name="Currency.php" hash="dada2948a6616e8de8f94c9578fc4dd3"/><dir name="Method"><file name="Dummy.php" hash="79475fff99859df971abc4d752ec1d9b"/><file name="Hipay.php" hash="504c9a01fb134aba42b483dacea40d62"/></dir><file name="Rating.php" hash="a58118d4d37b87f9f3baa0dfe7276548"/></dir><dir name="controllers"><file name="MapiController.php" hash="ec2f8a056c337e88c573a91afb6831f4"/><file name="MapiHelper.php" hash="b66ae8d5495defc2b70a404b331b9c2c"/></dir><dir name="etc"><file name="adminhtml.xml" hash="00df6932b58615daa65a0f2704b33246"/><file name="config.xml" hash="a87061b3d8d4cba814776b920296f7f9"/><file name="config.xml~" hash="165bd560be61a7bfbed2dfbb7629bfa3"/><file name="system.xml" hash="84ffc4b1d023d24e3d1a4ab5296efc15"/></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="hipaybase.xml" hash="53aeac84b9561dfc8551a738893dde4b"/></dir><dir name="template"><dir name="himediapayments"><file name="array.phtml" hash="c339ad1179e5c6011aa3aac7bb9654bd"/><file name="commentbox.phtml" hash="c84e61c4319630a197fa44042ce5058f"/><dir name="system"><dir name="config"><dir name="fieldset"><file name="hint.phtml" hash="65a384a048513619d9c5d88ba00b00fc"/></dir></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="hipay.xml" hash="94e76e0a0581d73cf66fc4e6130eb1dc"/></dir><dir name="template"><dir name="himediapayments"><dir name="hipay"><file name="form.phtml" hash="4c8cb6dfc1773ce30d966ba690f4ef3e"/><file name="payment.phtml" hash="c610d75e596bf2c85ea17107ef5287b2"/></dir></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="base"><dir name="default"><dir name="css"><dir name="himediapayments"><dir name="files"><file name="Hipay-Payment-Extension_german.pdf" hash="a1fadc7c72f4205005adfeee36dc1cba"/></dir><file name="hipay.css" hash="f160f95dcbe5b609acd4dc52b1842db7"/><dir name="images"><file name="hipay_section_logo.png" hash="569b8c260d2d8c228f93022be5473428"/><file name="hipay_section_logo_hover.png" hash="f1e67746b8536d8b7131410be96d24b9"/><file name="pdf_16x16.png" hash="3d6afa6a2ed73b461846b8a13cfc730b"/><file name="pdf_22x22.png" hash="98a01edf5744ed484a022f88bdc06e31"/><file name="pdf_32x32.png" hash="c9075f2f6d959aef5fd11df746f488eb"/><file name="tabs_link_over_bg.gif" hash="2cf3f56884096055fb0bdf9474f280c9"/><file name="tabs_span_bg.gif" hash="bcabd4fea0d67b181f21779564c2284b"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="images"><dir name="himediapayments"><dir name="hipay"><file name="hipay-frame-bottom.png" hash="5fc92cf1b4304a16809e99d47bcf2c1a"/><file name="hipay-frame-top.png" hash="b952db5429614f85bc64b726ff2e7432"/><file name="hipay_logo.png" hash="569b8c260d2d8c228f93022be5473428"/><file name="hipay_redirect_frame_bottom.png" hash="e5a9019780f83e78ccbf9703d20ea7e8"/><file name="hipay_redirect_frame_top.png" hash="bee3367cafec0cc023c26dde80a0281d"/><file name="hr_1x1.png" hash="aa9c034d5dc827d9459f62efb4a65d83"/><file name="loader.gif" hash="a64410b8c2d8913fbe5c720f76b66f5b"/><dir name="payment_methods"><file name="pm_amex.png" hash="dd93dd57f760189666243cbf355dc1f7"/><file name="pm_aurora.png" hash="ae4c0827d22cfd0ab34fe5d9e9bced9c"/><file name="pm_bcmc.png" hash="a5738fccfa594ebc7da1b3f8d08be530"/><file name="pm_cb.png" hash="5de6d1cde59a01dd6f4e80005983224a"/><file name="pm_cbc.png" hash="beb8ec556ec84f3d22b223d7a622bbb2"/><file name="pm_cofidis.png" hash="e79c4ecc66ba1231a15cd2a852871e83"/><file name="pm_dexia.png" hash="366c2cf937d0521bf04947a709964179"/><file name="pm_giropay.png" hash="4e65f6177095575526e933ae0be0ca2a"/><file name="pm_ing.png" hash="81fb2b557ac6eea34a1ce7b5bba8c3a5"/><file name="pm_maestro.png" hash="356f0137694d6815142a7c4f4a1f2b86"/><file name="pm_mastercard.png" hash="42d083e6823002ede041cdd3102dca93"/><file name="pm_sofort-lastschrift.png" hash="b501b25fc468e4056269ce6df2b46e45"/><file name="pm_sofort-ueberweisung.png" hash="fc1e1a947ac4affa08cae4762814c540"/><file name="pm_visa.png" hash="65620739d2afc84ff7ed6b22a2434c08"/></dir></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="HimediaPayments_Hipay.xml" hash="541f88b523115eb4a75fe845bb45af63"/></dir></target><target name="magelocale"><dir><dir name="da_DK"><file name="HimediaPayments_Hipay.csv" hash="9cdff16b83a2a117f07e5c15bca99d1a"/></dir><dir name="de_AT"><file name="HimediaPayments_Hipay.csv" hash="cd26c2f049a213c347304a83d33bc1e2"/></dir><dir name="de_CH"><file name="HimediaPayments_Hipay.csv" hash="cd26c2f049a213c347304a83d33bc1e2"/></dir><dir name="de_DE"><file name="HimediaPayments_Hipay.csv" hash="cd26c2f049a213c347304a83d33bc1e2"/></dir><dir name="en_US"><file name="HimediaPayments_Hipay.csv" hash="084a510755e0ca62d0dbc0afc68b4b9f"/></dir><dir name="fr_FR"><file name="HimediaPayments_Hipay.csv" hash="76e87f7ab920eb2a6ebd8b2bd056cdb4"/></dir><dir name="it_IT"><file name="HimediaPayments_Hipay.csv" hash="673ef6eaf6a3365b1eb24e561d2ecc7f"/></dir><dir name="ru_RU"><file name="HimediaPayments_Hipay.csv" hash="4e2d62ae106784c448931dc2fe92d1fe"/></dir></dir></target></contents>
49
  <compatible/>
50
  <dependencies><required><php><min>5.2.0</min><max>5.6.99</max></php></required></dependencies>
51
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Hipay</name>
4
+ <version>1.1.0</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD License</license>
7
  <channel>community</channel>
41
  &lt;p&gt;Weitere Informationen finden Sie unter &lt;a href="http://www.hipaywallet.com/"&gt;www.hipaywallet.com&lt;/a&gt;&lt;/p&gt;&#xD;
42
  &lt;p&gt;Hi-media Payments ist ein Unternehmensbereich der Hi-media Group, eines der f&#xFC;hrenden Online-Unternehmen in Europa und weltweit. F&#xFC;r mehr Informationen zu Hi-media besuchen Sie bitte &lt;a href="http://www.hi-media.de/"&gt;www.hi-media.de&lt;/a&gt;. &lt;/p&gt;</description>
43
  <notes>Update payment button in the checkout&#xD;
44
+ bugfix - show images in the checkout&#xD;
45
+ new description payment in the checkout payment</notes>
46
  <authors><author><name>HiPay</name><user>hipay</user><email>technique@hipay.com</email></author></authors>
47
+ <date>2015-12-21</date>
48
+ <time>15:17:59</time>
49
+ <contents><target name="magelocal"><dir name="HimediaPayments"><dir name="Hipay"><dir name="Block"><file name="Adminarray.php" hash="d2635e082c7bd625b689f14f53ba5c42"/><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Fieldset"><file name="Commentbox.php" hash="0af5e6dbb3602b0a9cf9f151acc49f7e"/><file name="Hint.php" hash="a941e30babff232ac04fa0f06305b720"/></dir></dir></dir></dir><file name="Commentbox.php" hash="d854f85c18cc0d77f6e4a73d6eaefd62"/><file name="Form.php" hash="9d7dadb1167ab6adce7384bebcb832b1"/></dir><dir name="Helper"><file name="Data.php" hash="90b99516931b30f03261853e86eecdc8"/></dir><dir name="Mapi"><file name="mapi_affiliate.php" hash="113397690e72857575c2b1b1bf18a60f"/><file name="mapi_comm_xml.php" hash="664e2e8b7fea4bf8bce6b0fac00abc22"/><file name="mapi_defs.php" hash="6dee6a6842777e52adadc30eb1806202"/><file name="mapi_defs_ext.php" hash="3e2ad313cfa6277ad5fbe446500ff379"/><file name="mapi_exception.php" hash="71c4e1a37cc82beaabedb5e1618a92ca"/><file name="mapi_installment.php" hash="018a7d0cd79762b505a3c81c8899c002"/><file name="mapi_item.php" hash="0473f98654b7c1974d7ab78034f36fc2"/><file name="mapi_lockable.php" hash="34a101d0ed07fd89afa69671669b593b"/><file name="mapi_multiplepayment.php" hash="e70cbbc8f1b2af08f0f7ac1b6d5f9e5c"/><file name="mapi_order.php" hash="3ed179922934c00ee65517a470a6bb0a"/><file name="mapi_package.php" hash="a03fbeb17a7c163a2323b694aa4b27fc"/><file name="mapi_payment.php" hash="46434d663e50020d891e31471fd569b3"/><file name="mapi_paymentparams.php" hash="aa169016e35023c4f8689b8ddc5b1540"/><file name="mapi_product.php" hash="18ea29fbaa7f266c4bf3a6ea90a49c3d"/><file name="mapi_send_xml.php" hash="7d1d70ce6740b6a90622e10bd2f9e443"/><file name="mapi_simplepayment.php" hash="b6d4650ef84b4a063606f4a68d554a49"/><file name="mapi_tax.php" hash="c673af6130a097c2dfda9c59ed084ea9"/><file name="mapi_utf8.php" hash="ae6e136417a32791e9395c643b7ee881"/><file name="mapi_utils.php" hash="9d9bf78abcadf9184e0cd6176f08c6b7"/><file name="mapi_xml.php" hash="d3499c54392cfe237a2aebe7392e9680"/></dir><dir name="Model"><file name="Accountmode.php" hash="2798ee056ffd10fcfb7eaed9e232c130"/><file name="Age.php" hash="04503f8459f6865c59b62a6781646104"/><file name="Category.php" hash="89dc10da5822c45ad8768cad13505f86"/><file name="Currencies.php" hash="ef8f334ae60917db43b98ee3275c8c11"/><file name="Currency.php" hash="dada2948a6616e8de8f94c9578fc4dd3"/><dir name="Method"><file name="Dummy.php" hash="79475fff99859df971abc4d752ec1d9b"/><file name="Hipay.php" hash="504c9a01fb134aba42b483dacea40d62"/></dir><file name="Rating.php" hash="a58118d4d37b87f9f3baa0dfe7276548"/></dir><dir name="controllers"><file name="MapiController.php" hash="997b9691f817d75843b41e9e2d65c2ce"/><file name="MapiHelper.php" hash="b66ae8d5495defc2b70a404b331b9c2c"/></dir><dir name="etc"><file name="adminhtml.xml" hash="00df6932b58615daa65a0f2704b33246"/><file name="config.xml" hash="2a86dcefd4d3d7e44e3a747bbc767bc8"/><file name="system.xml" hash="84ffc4b1d023d24e3d1a4ab5296efc15"/></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="hipaybase.xml" hash="53aeac84b9561dfc8551a738893dde4b"/></dir><dir name="template"><dir name="himediapayments"><file name="array.phtml" hash="c339ad1179e5c6011aa3aac7bb9654bd"/><file name="commentbox.phtml" hash="c84e61c4319630a197fa44042ce5058f"/><dir name="system"><dir name="config"><dir name="fieldset"><file name="hint.phtml" hash="65a384a048513619d9c5d88ba00b00fc"/></dir></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="hipay.xml" hash="94e76e0a0581d73cf66fc4e6130eb1dc"/></dir><dir name="template"><dir name="himediapayments"><dir name="hipay"><file name="form.phtml" hash="d398321b3fb28fb082ae55f020f689a0"/><file name="payment.phtml" hash="2a6093d55071561792d263c2204f1c64"/></dir></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="base"><dir name="default"><dir name="css"><dir name="himediapayments"><dir name="files"><file name="Hipay-Payment-Extension_german.pdf" hash="a1fadc7c72f4205005adfeee36dc1cba"/></dir><file name="hipay.css" hash="955a74661fea4b5985f6480f536e42b0"/><file name="hipay_section_logo.png" hash="96b0314ea7e9e9bcb0b301adf4a3f321"/><dir name="images"><file name="hipay_section_logo.png" hash="7b4e8be521d7a94c2952532fc4bb8097"/><file name="hipay_section_logo_hover.png" hash="e93653303c2c0b97e48f689d32291142"/><file name="pdf_16x16.png" hash="3d6afa6a2ed73b461846b8a13cfc730b"/><file name="pdf_22x22.png" hash="98a01edf5744ed484a022f88bdc06e31"/><file name="pdf_32x32.png" hash="c9075f2f6d959aef5fd11df746f488eb"/><file name="tabs_link_over_bg.gif" hash="2cf3f56884096055fb0bdf9474f280c9"/><file name="tabs_span_bg.gif" hash="bcabd4fea0d67b181f21779564c2284b"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="images"><dir name="himediapayments"><dir name="hipay"><file name="hipay-frame-bottom.png" hash="5fc92cf1b4304a16809e99d47bcf2c1a"/><file name="hipay-frame-top.png" hash="b952db5429614f85bc64b726ff2e7432"/><file name="hipay_logo.png" hash="96b0314ea7e9e9bcb0b301adf4a3f321"/><file name="hipay_logo.pngOLD" hash="569b8c260d2d8c228f93022be5473428"/><file name="hipay_redirect_frame_bottom.png" hash="e5a9019780f83e78ccbf9703d20ea7e8"/><file name="hipay_redirect_frame_top.png" hash="bee3367cafec0cc023c26dde80a0281d"/><file name="hipay_wallet_mg_logo.jpg" hash="c8d3353e1ef41c0a81bd2fd34ed45a51"/><file name="hr_1x1.png" hash="aa9c034d5dc827d9459f62efb4a65d83"/><file name="loader.gif" hash="a64410b8c2d8913fbe5c720f76b66f5b"/><dir name="payment_methods"><file name="logos-magento-wallet.png" hash="29ba355b62917a12d734a9b7dc7bb197"/><file name="pm_amex.png" hash="dd93dd57f760189666243cbf355dc1f7"/><file name="pm_aurora.png" hash="ae4c0827d22cfd0ab34fe5d9e9bced9c"/><file name="pm_bcmc.png" hash="a5738fccfa594ebc7da1b3f8d08be530"/><file name="pm_cb.png" hash="5de6d1cde59a01dd6f4e80005983224a"/><file name="pm_cbc.png" hash="beb8ec556ec84f3d22b223d7a622bbb2"/><file name="pm_cofidis.png" hash="e79c4ecc66ba1231a15cd2a852871e83"/><file name="pm_dexia.png" hash="366c2cf937d0521bf04947a709964179"/><file name="pm_giropay.png" hash="4e65f6177095575526e933ae0be0ca2a"/><file name="pm_ing.png" hash="81fb2b557ac6eea34a1ce7b5bba8c3a5"/><file name="pm_maestro.png" hash="356f0137694d6815142a7c4f4a1f2b86"/><file name="pm_mastercard.png" hash="42d083e6823002ede041cdd3102dca93"/><file name="pm_sofort-lastschrift.png" hash="b501b25fc468e4056269ce6df2b46e45"/><file name="pm_sofort-ueberweisung.png" hash="fc1e1a947ac4affa08cae4762814c540"/><file name="pm_visa.png" hash="65620739d2afc84ff7ed6b22a2434c08"/></dir></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="HimediaPayments_Hipay.xml" hash="541f88b523115eb4a75fe845bb45af63"/></dir></target><target name="magelocale"><dir><dir name="da_DK"><file name="HimediaPayments_Hipay.csv" hash="9d7df4aef9ba5ce687856aee696c722b"/></dir><dir name="de_AT"><file name="HimediaPayments_Hipay.csv" hash="3c7c91e10d83257d6e959aeeae2e8979"/></dir><dir name="de_CH"><file name="HimediaPayments_Hipay.csv" hash="3c7c91e10d83257d6e959aeeae2e8979"/></dir><dir name="de_DE"><file name="HimediaPayments_Hipay.csv" hash="3c7c91e10d83257d6e959aeeae2e8979"/></dir><dir name="en_US"><file name="HimediaPayments_Hipay.csv" hash="4a2fcceda1c214575af0f0f72c5b64de"/></dir><dir name="fr_FR"><file name="HimediaPayments_Hipay.csv" hash="395befc7ec6735a58a6862d806bb9339"/></dir><dir name="it_IT"><file name="HimediaPayments_Hipay.csv" hash="f3978aa5666f6a3d033970049ced80d8"/></dir><dir name="ru_RU"><file name="HimediaPayments_Hipay.csv" hash="e98fd182d32ed94569120fbdfdd7b1c8"/></dir></dir></target></contents>
50
  <compatible/>
51
  <dependencies><required><php><min>5.2.0</min><max>5.6.99</max></php></required></dependencies>
52
  </package>
skin/adminhtml/base/default/css/himediapayments/hipay.css CHANGED
@@ -22,8 +22,8 @@ ul.tabs a.hipay-section span {
22
  background:url("images/hipay_section_logo.png") no-repeat scroll 0 0 transparent;
23
  height:0;
24
  overflow:hidden;
25
- padding:14px 0 0;
26
- width:49px;
27
  }
28
  ul.tabs a.hipay-section:hover span {
29
  background:url("images/hipay_section_logo_hover.png") no-repeat scroll 0 0 transparent;
@@ -37,8 +37,8 @@ ul.tabs a.hipay-section.active:hover span {
37
 
38
  height:0;
39
  overflow:hidden;
40
- padding:14px 0 0;
41
- width:49px;
42
  }
43
 
44
  /* ## SECTION NOTICE ************************************** ## */
@@ -69,8 +69,8 @@ h3.hipay-header {
69
  background:url(images/hipay_section_logo.png) no-repeat 0 0;
70
  height:0;
71
  overflow:hidden;
72
- padding:14px 0 0;
73
- width:49px;
74
  }
75
 
76
  a.hipay-pdf-link {
22
  background:url("images/hipay_section_logo.png") no-repeat scroll 0 0 transparent;
23
  height:0;
24
  overflow:hidden;
25
+ padding:25px 0 0;
26
+ width:196px;
27
  }
28
  ul.tabs a.hipay-section:hover span {
29
  background:url("images/hipay_section_logo_hover.png") no-repeat scroll 0 0 transparent;
37
 
38
  height:0;
39
  overflow:hidden;
40
+ padding:25px 0 0;
41
+ width:196px;
42
  }
43
 
44
  /* ## SECTION NOTICE ************************************** ## */
69
  background:url(images/hipay_section_logo.png) no-repeat 0 0;
70
  height:0;
71
  overflow:hidden;
72
+ padding:25px 0 0;
73
+ width:196px;
74
  }
75
 
76
  a.hipay-pdf-link {
skin/adminhtml/base/default/css/himediapayments/hipay_section_logo.png ADDED
Binary file
skin/adminhtml/base/default/css/himediapayments/images/hipay_section_logo.png CHANGED
Binary file
skin/adminhtml/base/default/css/himediapayments/images/hipay_section_logo_hover.png CHANGED
Binary file
skin/frontend/base/default/images/himediapayments/hipay/hipay_logo.png CHANGED
Binary file
skin/frontend/base/default/images/himediapayments/hipay/hipay_logo.pngOLD ADDED
Binary file
skin/frontend/base/default/images/himediapayments/hipay/hipay_wallet_mg_logo.jpg ADDED
Binary file
skin/frontend/base/default/images/himediapayments/hipay/payment_methods/logos-magento-wallet.png ADDED
Binary file