/** * External dependencies */ import { __, sprintf, _n } from '@wordpress/i18n'; import PropTypes from 'prop-types'; const CartLineItemsTitle = ( { title = __( 'Shopping cart', 'woo-gutenberg-products-block' ), itemCount = 1, } ) => { const itemCountHeading = sprintf( _n( '%d item', '%d items', itemCount, 'woo-gutenberg-products-block' ), itemCount ); const readableHeading = `${ title } – ${ itemCountHeading }`; return (