2012-12-28 10:54:02 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Malaysian states
|
|
|
|
*
|
2018-03-05 19:44:56 +00:00
|
|
|
* @package WooCommerce/i18n
|
|
|
|
* @version 2.0.0
|
2012-12-28 10:54:02 +00:00
|
|
|
*/
|
2018-03-05 19:44:56 +00:00
|
|
|
|
2012-12-28 10:54:02 +00:00
|
|
|
global $states;
|
|
|
|
|
2018-03-05 20:10:12 +00:00
|
|
|
defined( 'ABSPATH' ) || exit;
|
2017-05-10 18:03:19 +00:00
|
|
|
|
2012-12-28 10:54:02 +00:00
|
|
|
$states['MY'] = array(
|
|
|
|
'JHR' => __( 'Johor', 'woocommerce' ),
|
|
|
|
'KDH' => __( 'Kedah', 'woocommerce' ),
|
|
|
|
'KTN' => __( 'Kelantan', 'woocommerce' ),
|
2015-12-18 10:49:40 +00:00
|
|
|
'LBN' => __( 'Labuan', 'woocommerce' ),
|
|
|
|
'MLK' => __( 'Malacca (Melaka)', 'woocommerce' ),
|
2012-12-28 10:54:02 +00:00
|
|
|
'NSN' => __( 'Negeri Sembilan', 'woocommerce' ),
|
|
|
|
'PHG' => __( 'Pahang', 'woocommerce' ),
|
2015-12-18 10:49:40 +00:00
|
|
|
'PNG' => __( 'Penang (Pulau Pinang)', 'woocommerce' ),
|
2012-12-28 10:54:02 +00:00
|
|
|
'PRK' => __( 'Perak', 'woocommerce' ),
|
|
|
|
'PLS' => __( 'Perlis', 'woocommerce' ),
|
|
|
|
'SBH' => __( 'Sabah', 'woocommerce' ),
|
|
|
|
'SWK' => __( 'Sarawak', 'woocommerce' ),
|
|
|
|
'SGR' => __( 'Selangor', 'woocommerce' ),
|
|
|
|
'TRG' => __( 'Terengganu', 'woocommerce' ),
|
2015-12-18 10:49:40 +00:00
|
|
|
'PJY' => __( 'Putrajaya', 'woocommerce' ),
|
2016-08-27 01:46:45 +00:00
|
|
|
'KUL' => __( 'Kuala Lumpur', 'woocommerce' ),
|
2014-09-16 20:36:16 +00:00
|
|
|
);
|