esc_html__('Missing the WooCommerce %s package','woocommerce'),
'<code>'.esc_html($package).'</code>'
).' - '.esc_html__('Your installation of WooCommerce is incomplete. If you installed WooCommerce from GitHub, please refer to this document to set up your development environment: https://github.com/woocommerce/woocommerce/wiki/How-to-set-up-WooCommerce-development-environment','woocommerce')
);
}
add_action(
'admin_notices',
function()use($package){
?>
<divclass="notice notice-error">
<p>
<strong>
<?php
printf(
/* Translators: %s package name. */
esc_html__('Missing the WooCommerce %s package','woocommerce'),
'<code>'.esc_html($package).'</code>'
);
?>
</strong>
<br>
<?php
printf(
/* translators: 1: is a link to a support document. 2: closing link */
esc_html__('Your installation of WooCommerce is incomplete. If you installed WooCommerce from GitHub, %1$splease refer to this document%2$s to set up your development environment.','woocommerce'),