Skip to content

Commit

Permalink
Merge pull request #12 from wirecard/TPWDCEE-259
Browse files Browse the repository at this point in the history
Tpwdcee 259
  • Loading branch information
jpy authored Sep 27, 2017
2 parents 42290b6 + 393ab25 commit a146d0e
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion wirecardceecheckoutpage/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<module>
<name>wirecardceecheckoutpage</name>
<displayName><![CDATA[Wirecard Checkout Page]]></displayName>
<version><![CDATA[1.4.1]]></version>
<version><![CDATA[1.5.1]]></version>
<description><![CDATA[Wirecard Checkout Page payment module]]></description>
<author><![CDATA[Wirecard CEE]]></author>
<tab><![CDATA[payments_gateways]]></tab>
Expand Down
Binary file modified wirecardceecheckoutpage/img/payment_types/sofortueberweisung.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion wirecardceecheckoutpage/translations/de.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
$_MODULE['<{wirecardceecheckoutpage}prestashop>wirecardceecheckoutpage_f91ab041fe9d6057740394b8b7903a0f'] = 'iDEAL';
$_MODULE['<{wirecardceecheckoutpage}prestashop>wirecardceecheckoutpage_e0f764e23bc8c486ca18c6378291afe3'] = 'giropay';
$_MODULE['<{wirecardceecheckoutpage}prestashop>wirecardceecheckoutpage_3ff2080bb62b70687276c50da9c9f2c4'] = 'TatraPay';
$_MODULE['<{wirecardceecheckoutpage}prestashop>wirecardceecheckoutpage_8ad65eb3da9995173280649f090218c3'] = 'SOFORT Überweisung';
$_MODULE['<{wirecardceecheckoutpage}prestashop>wirecardceecheckoutpage_842619a36f50f72dd86d00ba73a379c4'] = 'Sofort.';
$_MODULE['<{wirecardceecheckoutpage}prestashop>wirecardceecheckoutpage_b642d33b12d1cb0f1b8667a9bcca9951'] = 'paybox';
$_MODULE['<{wirecardceecheckoutpage}prestashop>wirecardceecheckoutpage_6abcd8eecb4f2abb6ccfe36ef7046ba0'] = 'paysafecard';
$_MODULE['<{wirecardceecheckoutpage}prestashop>wirecardceecheckoutpage_a41cdeba95dd125a6efea489c114a4f9'] = '@Quick';
Expand Down
2 changes: 1 addition & 1 deletion wirecardceecheckoutpage/translations/en.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
$_MODULE['<{wirecardceecheckoutpage}prestashop>wirecardceecheckoutpage_f91ab041fe9d6057740394b8b7903a0f'] = 'iDEAL';
$_MODULE['<{wirecardceecheckoutpage}prestashop>wirecardceecheckoutpage_e0f764e23bc8c486ca18c6378291afe3'] = 'giropay';
$_MODULE['<{wirecardceecheckoutpage}prestashop>wirecardceecheckoutpage_3ff2080bb62b70687276c50da9c9f2c4'] = 'TatraPay';
$_MODULE['<{wirecardceecheckoutpage}prestashop>wirecardceecheckoutpage_8ad65eb3da9995173280649f090218c3'] = 'SOFORT Banking';
$_MODULE['<{wirecardceecheckoutpage}prestashop>wirecardceecheckoutpage_842619a36f50f72dd86d00ba73a379c4'] = 'Online bank transfer.';
$_MODULE['<{wirecardceecheckoutpage}prestashop>wirecardceecheckoutpage_b642d33b12d1cb0f1b8667a9bcca9951'] = 'paybox';
$_MODULE['<{wirecardceecheckoutpage}prestashop>wirecardceecheckoutpage_6abcd8eecb4f2abb6ccfe36ef7046ba0'] = 'paysafecard';
$_MODULE['<{wirecardceecheckoutpage}prestashop>wirecardceecheckoutpage_a41cdeba95dd125a6efea489c114a4f9'] = '@Quick';
Expand Down
6 changes: 3 additions & 3 deletions wirecardceecheckoutpage/wirecardceecheckoutpage.php
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ public function __construct()
{
$this->name = 'wirecardceecheckoutpage';
$this->tab = 'payments_gateways';
$this->version = '1.5.0';
$this->version = '1.5.1';
$this->author = 'Wirecard';
$this->controllers = array('breakoutIFrame', 'confirm', 'payment', 'paymentExecution', 'paymentIFrame');
$this->is_eu_compatible = 1;
Expand Down Expand Up @@ -983,7 +983,7 @@ private function getPaymentTypeInfo($type)
return array('title' => $this->l('TatraPay'),
'value' => Wirecard_CEE_QPay_PaymentType::TATRAPAY);
case self::WCP_PT_SOFORTUEBERWEISUNG:
return array('title' => $this->l('SOFORT Banking'),
return array('title' => $this->l('Online bank transfer.'),
'value' => Wirecard_CEE_QPay_PaymentType::SOFORTUEBERWEISUNG);
case self::WCP_PT_PBX:
return array('title' => $this->l('paybox'),
Expand Down Expand Up @@ -1355,7 +1355,7 @@ private function getReturnUrl()
private function getPluginVersion()
{
$pluginVersion = array(
'shopName' => 'Presta Store',
'shopName' => 'Prestashop',
'shopVersion' => _PS_VERSION_,
'pluginName' => $this->name,
'pluginVersion' => $this->version
Expand Down

0 comments on commit a146d0e

Please sign in to comment.