function get_publishing_header() { const title_html = `
${__('Select Products to Publish')}
`; const subtitle_html = `

${__(`Only products with an image, description and category can be published. Please update them if an item in your inventory does not appear.`)}

`; const publish_button_html = ``; return $(`
${title_html} ${publish_button_html}

${__('No Items Selected')}

${subtitle_html}
`); } export { get_publishing_header }