Skip to content

Commit

Permalink
Merge pull request #402 from ebanx/hotfix/1.9.1
Browse files Browse the repository at this point in the history
[HOTFIX 1.9.1] Updated template with string key
  • Loading branch information
SparK-Cruz authored Mar 28, 2017
2 parents 243285f + c204ec7 commit db15a8f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# CHANGELOG

# 1.9.1
* Fix - Fixed translations string keys in instalment template [#402](https://github.com/ebanx/woocommerce-gateway-ebanx/pull/402)

# 1.9.0
* Feature - Advanced options hide when not applicable [#391](https://github.com/ebanx/woocommerce-gateway-ebanx/pull/391)
* Feature - Translated my-account credit card section [#398](https://github.com/ebanx/woocommerce-gateway-ebanx/pull/398)
Expand Down
5 changes: 4 additions & 1 deletion woocommerce-gateway-ebanx/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: ebanxwp
Tags: credit card, boleto, ebanx, woocommerce, approval rate, conversion rate, brazil, mexico, peru, colombia, chile, oxxo, baloto, cash payment, local payment one-click payment, installments, alternative payments, accept more payments
Requires at least: 4.0
Tested up to: 4.7
Stable tag: 1.9.0
Stable tag: 1.9.1
License: MIT
License URI: https://opensource.org/licenses/MIT

Expand Down Expand Up @@ -136,6 +136,9 @@ Yes, you can.

== Changelog ==

= 1.9.1 =
* Fix - Fixed translations string keys in instalment template [#402](https://github.com/ebanx/woocommerce-gateway-ebanx/pull/402)

= 1.9.0 =
* Feature - Advanced options hide when not applicable [#391](https://github.com/ebanx/woocommerce-gateway-ebanx/pull/391)
* Feature - Translated my-account credit card section [#398](https://github.com/ebanx/woocommerce-gateway-ebanx/pull/398)
Expand Down
2 changes: 1 addition & 1 deletion woocommerce-gateway-ebanx/templates/instalments.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
?>
<option value="<?php echo $number ?>">
<?php printf( __( '%1$dx of %2$s', 'woocommerce-gateway-ebanx' ), absint( $number ), esc_html( $installment_amount )); ?>
<?= $has_tax ? __( 'with taxes', 'woocommerce-gateway-ebanx' ) : '' ?>
<?= $has_tax ? __( 'with interest', 'woocommerce-gateway-ebanx' ) : '' ?>
</option>
<?php endfor; ?>
</select>
Expand Down
4 changes: 2 additions & 2 deletions woocommerce-gateway-ebanx/woocommerce-gateway-ebanx.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Description: Offer Latin American local payment methods & increase your conversion rates with the solution used by AliExpress, AirBnB and Spotify in Brazil.
* Author: EBANX
* Author URI: https://www.ebanx.com/business/en
* Version: 1.9.0
* Version: 1.9.1
* License: MIT
* Text Domain: woocommerce-gateway-ebanx
* Domain Path: /languages
Expand Down Expand Up @@ -40,7 +40,7 @@ class WC_EBANX
*
* @var string
*/
const VERSION = '1.9.0';
const VERSION = '1.9.1';

const DIR = __FILE__;

Expand Down

0 comments on commit db15a8f

Please sign in to comment.