/var/www/html_us/wp-content/plugins/woocommerce/i18n/units.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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' ),
    ),
);