2012-12-28 10:54:02 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Hong Kong states
|
|
|
|
*
|
2014-09-16 20:19:01 +00:00
|
|
|
* @author WooThemes
|
|
|
|
* @category i18n
|
|
|
|
* @package WooCommerce/i18n
|
2012-12-28 10:54:02 +00:00
|
|
|
* @version 2.0.0
|
|
|
|
*/
|
|
|
|
global $states;
|
|
|
|
|
2017-05-10 18:03:19 +00:00
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
2012-12-28 10:54:02 +00:00
|
|
|
$states['HK'] = array(
|
|
|
|
'HONG KONG' => __( 'Hong Kong Island', 'woocommerce' ),
|
|
|
|
'KOWLOON' => __( 'Kowloon', 'woocommerce' ),
|
2016-08-27 01:46:45 +00:00
|
|
|
'NEW TERRITORIES' => __( 'New Territories', 'woocommerce' ),
|
2012-12-28 10:54:02 +00:00
|
|
|
);
|