23 lines
629 B
PHP
23 lines
629 B
PHP
|
<?php
|
||
|
/**
|
||
|
* United States (US) Minor Outlying Islands. ISO 3166-2.
|
||
|
*
|
||
|
* @package WooCommerce/i18n
|
||
|
*/
|
||
|
|
||
|
global $states;
|
||
|
|
||
|
defined( 'ABSPATH' ) || exit;
|
||
|
|
||
|
$states['UM'] = array(
|
||
|
'UM-81' => __( 'Baker Island', 'woocommerce' ),
|
||
|
'UM-84' => __( 'Howland Island', 'woocommerce' ),
|
||
|
'UM-86' => __( 'Jarvis Island', 'woocommerce' ),
|
||
|
'UM-67' => __( 'Johnston Atoll', 'woocommerce' ),
|
||
|
'UM-89' => __( 'Kingman Reef', 'woocommerce' ),
|
||
|
'UM-71' => __( 'Midway Islands', 'woocommerce' ),
|
||
|
'UM-76' => __( 'Navassa Island', 'woocommerce' ),
|
||
|
'UM-95' => __( 'Palmyra Atoll', 'woocommerce' ),
|
||
|
'UM-79' => __( 'Wake Island', 'woocommerce' ),
|
||
|
);
|