{ showCustomers && (
{ sprintf( _n( '%d New Customer', '%d New Customers', 4, 'woo-dash' ), 4 ) }
) }
{ showOrders && (
{ sprintf(
_n( '%d New Order', '%d New Orders', totalOrders, 'woo-dash' ),
totalOrders
) }
) }
{ showProducts && (
{ sprintf(
_n( '%d Product', '%d Products', totalProducts, 'woo-dash' ),
totalProducts
) }
) }