Looks better with single quotes, closes #9493

This commit is contained in:
Claudio Sanches 2015-11-03 13:58:05 -02:00
parent 439141bbe3
commit a0d266640a
1 changed files with 3 additions and 3 deletions

View File

@ -9,7 +9,7 @@
* as little as possible, but it does happen. When this occurs the version of the template file will.
* be bumped and the readme will list any important changes.
*
* @see http://docs.woothemes.com/document/template-structure/
* @see http://docs.woothemes.com/document/template-structure/
* @author WooThemes
* @package WooCommerce/Templates/Emails
* @version 2.4.0
@ -25,10 +25,10 @@ if ( ! defined( 'ABSPATH' ) ) {
<p><?php
if ( $partial_refund ) {
printf( __( "Hi there. Your order on %s has been partially refunded.", 'woocommerce' ), get_option( 'blogname' ) );
printf( __( 'Hi there. Your order on %s has been partially refunded.', 'woocommerce' ), get_option( 'blogname' ) );
}
else {
printf( __( "Hi there. Your order on %s has been refunded.", 'woocommerce' ), get_option( 'blogname' ) );
printf( __( 'Hi there. Your order on %s has been refunded.', 'woocommerce' ), get_option( 'blogname' ) );
}
?></p>