Merge pull request #16927 from woocommerce/fix/16843

Removed new translatable string introduced in #16843
This commit is contained in:
Claudiu Lodromanean 2017-09-25 10:43:18 -07:00 committed by GitHub
commit 5427d0993b
1 changed files with 8 additions and 8 deletions

View File

@ -416,14 +416,14 @@ class WC_Product_CSV_Importer_Controller {
$special_columns = $this->get_special_columns( apply_filters( 'woocommerce_csv_product_import_mapping_special_columns',
array(
__( 'attribute %d name', 'woocommerce' ) => 'attributes:name',
__( 'attribute %d value(s)', 'woocommerce' ) => 'attributes:value',
__( 'attribute %d visible', 'woocommerce' ) => 'attributes:visible',
__( 'attribute %d global', 'woocommerce' ) => 'attributes:taxonomy',
__( 'attribute %d default', 'woocommerce' ) => 'attributes:default',
__( 'download %d name', 'woocommerce' ) => 'downloads:name',
__( 'download %d url', 'woocommerce' ) => 'downloads:url',
__( 'meta: %s', 'woocommerce' ) => 'meta:',
strtolower( __( 'Attribute %d name', 'woocommerce' ) ) => 'attributes:name',
strtolower( __( 'Attribute %d value(s)', 'woocommerce' ) ) => 'attributes:value',
strtolower( __( 'Attribute %d visible', 'woocommerce' ) ) => 'attributes:visible',
strtolower( __( 'Attribute %d global', 'woocommerce' ) ) => 'attributes:taxonomy',
strtolower( __( 'Attribute %d default', 'woocommerce' ) ) => 'attributes:default',
strtolower( __( 'Download %d name', 'woocommerce' ) ) => 'downloads:name',
strtolower( __( 'Download %d URL', 'woocommerce' ) ) => 'downloads:url',
strtolower( __( 'Meta: %s', 'woocommerce' ) ) => 'meta:',
)
) );