diff --git a/includes/admin/importers/class-wc-tax-rate-importer.php b/includes/admin/importers/class-wc-tax-rate-importer.php index 41ed7ec2e2c..839a10e8f12 100644 --- a/includes/admin/importers/class-wc-tax-rate-importer.php +++ b/includes/admin/importers/class-wc-tax-rate-importer.php @@ -244,9 +244,8 @@ class WC_Tax_Rate_Importer extends WP_Importer { echo '
'; echo '

' . esc_html__( 'Hi there! Upload a CSV file containing tax rates to import the contents into your shop. Choose a .csv file to upload, then click "Upload file and import".', 'woocommerce' ) . '

'; - /* translators: 1: Link to tax rates sample file */ - echo '

' . sprintf( __( 'Tax rates need to be defined with columns in a specific order (10 columns). Click here to download a sample.', 'woocommerce' ), esc_url( WC()->plugin_url() ) . '/sample-data/sample_tax_rates.csv' ) . '

'; - + /* translators: 1: Link to tax rates sample file 2: Closing link. */ + echo '

' . sprintf( esc_html__( 'Your CSV needs to include columns in a specific order. %1$sClick here to download a sample%2$s.', 'woocommerce' ), '', '' ) . '

'; $action = 'admin.php?import=woocommerce_tax_rate_csv&step=1';