| 1 |
<?php |
| 2 |
/** |
| 3 |
* Malaysian states |
| 4 |
* |
| 5 |
* Credit to WooThemes, mikejolly and shivapoudel. This is shamelessly based on their implementation in WooCommerce. |
| 6 |
* |
| 7 |
* @since 1.0.0 |
| 8 |
* @package Charitable/i18n |
| 9 |
* @author Eric Daams |
| 10 |
* @copyright Copyright (c) 2015, Studio 164a |
| 11 |
* @license http://opensource.org/licenses/gpl-2.0.php GNU Public License |
| 12 |
*/ |
| 13 |
|
| 14 |
return array( |
| 15 |
'JHR' => __( 'Johor', 'charitable' ), |
| 16 |
'KDH' => __( 'Kedah', 'charitable' ), |
| 17 |
'KTN' => __( 'Kelantan', 'charitable' ), |
| 18 |
'MLK' => __( 'Melaka', 'charitable' ), |
| 19 |
'NSN' => __( 'Negeri Sembilan', 'charitable' ), |
| 20 |
'PHG' => __( 'Pahang', 'charitable' ), |
| 21 |
'PRK' => __( 'Perak', 'charitable' ), |
| 22 |
'PLS' => __( 'Perlis', 'charitable' ), |
| 23 |
'PNG' => __( 'Pulau Pinang', 'charitable' ), |
| 24 |
'SBH' => __( 'Sabah', 'charitable' ), |
| 25 |
'SWK' => __( 'Sarawak', 'charitable' ), |
| 26 |
'SGR' => __( 'Selangor', 'charitable' ), |
| 27 |
'TRG' => __( 'Terengganu', 'charitable' ), |
| 28 |
'KUL' => __( 'W.P. Kuala Lumpur', 'charitable' ), |
| 29 |
'LBN' => __( 'W.P. Labuan', 'charitable' ), |
| 30 |
'PJY' => __( 'W.P. Putrajaya', 'charitable' ) |
| 31 |
); |
| 32 |
|