rebase from live enviornment
This commit is contained in:
28
wp/plugins/woocommerce/i18n/units.php
Normal file
28
wp/plugins/woocommerce/i18n/units.php
Normal file
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
/**
|
||||
* Units
|
||||
*
|
||||
* Returns a multidimensional array of measurement units and their labels.
|
||||
* Unit labels should be defined in English and translated native through localization files.
|
||||
*
|
||||
* @package WooCommerce\i18n
|
||||
* @version
|
||||
*/
|
||||
|
||||
defined( 'ABSPATH' ) || exit;
|
||||
|
||||
return array(
|
||||
'weight' => array(
|
||||
'kg' => __( 'kg', 'woocommerce' ),
|
||||
'g' => __( 'g', 'woocommerce' ),
|
||||
'lbs' => __( 'lbs', 'woocommerce' ),
|
||||
'oz' => __( 'oz', 'woocommerce' ),
|
||||
),
|
||||
'dimensions' => array(
|
||||
'm' => __( 'm', 'woocommerce' ),
|
||||
'cm' => __( 'cm', 'woocommerce' ),
|
||||
'mm' => __( 'mm', 'woocommerce' ),
|
||||
'in' => __( 'in', 'woocommerce' ),
|
||||
'yd' => __( 'yd', 'woocommerce' ),
|
||||
),
|
||||
);
|
||||
Reference in New Issue
Block a user