| 1 |
<?php |
| 2 |
/** |
| 3 |
* Indian 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 |
'AP' => __( 'Andra Pradesh', 'charitable' ), |
| 16 |
'AR' => __( 'Arunachal Pradesh', 'charitable' ), |
| 17 |
'AS' => __( 'Assam', 'charitable' ), |
| 18 |
'BR' => __( 'Bihar', 'charitable' ), |
| 19 |
'CT' => __( 'Chhattisgarh', 'charitable' ), |
| 20 |
'GA' => __( 'Goa', 'charitable' ), |
| 21 |
'GJ' => __( 'Gujarat', 'charitable' ), |
| 22 |
'HR' => __( 'Haryana', 'charitable' ), |
| 23 |
'HP' => __( 'Himachal Pradesh', 'charitable' ), |
| 24 |
'JK' => __( 'Jammu and Kashmir', 'charitable' ), |
| 25 |
'JH' => __( 'Jharkhand', 'charitable' ), |
| 26 |
'KA' => __( 'Karnataka', 'charitable' ), |
| 27 |
'KL' => __( 'Kerala', 'charitable' ), |
| 28 |
'MP' => __( 'Madhya Pradesh', 'charitable' ), |
| 29 |
'MH' => __( 'Maharashtra', 'charitable' ), |
| 30 |
'MN' => __( 'Manipur', 'charitable' ), |
| 31 |
'ML' => __( 'Meghalaya', 'charitable' ), |
| 32 |
'MZ' => __( 'Mizoram', 'charitable' ), |
| 33 |
'NL' => __( 'Nagaland', 'charitable' ), |
| 34 |
'OR' => __( 'Orissa', 'charitable' ), |
| 35 |
'PB' => __( 'Punjab', 'charitable' ), |
| 36 |
'RJ' => __( 'Rajasthan', 'charitable' ), |
| 37 |
'SK' => __( 'Sikkim', 'charitable' ), |
| 38 |
'TN' => __( 'Tamil Nadu', 'charitable' ), |
| 39 |
'TS' => __( 'Telangana', 'charitable' ), |
| 40 |
'TR' => __( 'Tripura', 'charitable' ), |
| 41 |
'UK' => __( 'Uttarakhand', 'charitable' ), |
| 42 |
'UP' => __( 'Uttar Pradesh', 'charitable' ), |
| 43 |
'WB' => __( 'West Bengal', 'charitable' ), |
| 44 |
'AN' => __( 'Andaman and Nicobar Islands', 'charitable' ), |
| 45 |
'CH' => __( 'Chandigarh', 'charitable' ), |
| 46 |
'DN' => __( 'Dadar and Nagar Haveli', 'charitable' ), |
| 47 |
'DD' => __( 'Daman and Diu', 'charitable' ), |
| 48 |
'DL' => __( 'Delhi', 'charitable' ), |
| 49 |
'LD' => __( 'Lakshadeep', 'charitable' ), |
| 50 |
'PY' => __( 'Pondicherry (Puducherry)', 'charitable' ) |
| 51 |
); |
| 52 |
|