forked from mirror/_s
Move translators comment to the correct line.
This commit is contained in:
parent
14d29b036d
commit
ee3aa735cf
|
@ -204,9 +204,9 @@ if ( ! function_exists( '_s_woocommerce_cart_link' ) ) {
|
|||
* @return void
|
||||
*/
|
||||
function _s_woocommerce_cart_link() {
|
||||
/* translators: number of items in the mini cart. */
|
||||
?>
|
||||
<a class="cart-contents" href="<?php echo esc_url( wc_get_cart_url() ); ?>" title="<?php esc_attr_e( 'View your shopping cart', '_s' ); ?>">
|
||||
<?php /* translators: number of items in the mini cart. */ ?>
|
||||
<span class="amount"><?php echo wp_kses_data( WC()->cart->get_cart_subtotal() ); ?></span> <span class="count"><?php echo wp_kses_data( sprintf( _n( '%d item', '%d items', WC()->cart->get_cart_contents_count(), '_s' ), WC()->cart->get_cart_contents_count() ) );?></span>
|
||||
</a>
|
||||
<?php
|
||||
|
|
Reference in New Issue