';
printf(
/* translators: %1$s table name, %2$s database user, %3$s database name. */
esc_html__( 'WooCommerce %1$s table creation failed. Does the %2$s user have CREATE privileges on the %3$s database?', 'woocommerce' ),
'' . esc_html( $table_name ) . '
',
'' . esc_html( DB_USER ) . '
',
'' . esc_html( DB_NAME ) . '
'
);
echo '
';
}
);
}
}