18 lines
338 B
PHP
18 lines
338 B
PHP
<?php
|
|
/**
|
|
* Hong Kong states
|
|
*
|
|
* @package WooCommerce/i18n
|
|
* @version 2.0.0
|
|
*/
|
|
|
|
global $states;
|
|
|
|
defined( 'ABSPATH' ) || exit;
|
|
|
|
$states['HK'] = array(
|
|
'HONG KONG' => __( 'Hong Kong Island', 'woocommerce' ),
|
|
'KOWLOON' => __( 'Kowloon', 'woocommerce' ),
|
|
'NEW TERRITORIES' => __( 'New Territories', 'woocommerce' ),
|
|
);
|