'IN', 'currency' => 'INR', 'phone_code' => 91, ); /** * The type of nomenclature used to refer to the country sub-divisions. * * @since 2.0.11 * @var string */ protected $state_type = 'unknown'; /** * Return the country name. * * @since 2.0.11 * @return string */ public function get_name() { return __('India', 'wp-ultimo-locations'); } // end get_name; /** * Returns the list of states for IN. * * @since 2.0.11 * @return array The list of state/provinces for the country. */ protected function states() { return array( 'AN' => __('Andaman and Nicobar Islands', 'wp-ultimo-locations'), 'AP' => __('Andhra Pradesh', 'wp-ultimo-locations'), 'AR' => __('Arunachal Pradesh', 'wp-ultimo-locations'), 'AS' => __('Assam', 'wp-ultimo-locations'), 'BR' => __('Bihar', 'wp-ultimo-locations'), 'CH' => __('Chandigarh', 'wp-ultimo-locations'), 'CT' => __('Chhattisgarh', 'wp-ultimo-locations'), 'DH' => __('Dadra and Nagar Haveli and Daman and Diu', 'wp-ultimo-locations'), 'DL' => __('Delhi', 'wp-ultimo-locations'), 'GA' => __('Goa', 'wp-ultimo-locations'), 'GJ' => __('Gujarat', 'wp-ultimo-locations'), 'HR' => __('Haryana', 'wp-ultimo-locations'), 'HP' => __('Himachal Pradesh', 'wp-ultimo-locations'), 'JK' => __('Jammu and Kashmir', 'wp-ultimo-locations'), 'JH' => __('Jharkhand', 'wp-ultimo-locations'), 'KA' => __('Karnataka', 'wp-ultimo-locations'), 'KL' => __('Kerala', 'wp-ultimo-locations'), 'LA' => __('Ladakh', 'wp-ultimo-locations'), 'LD' => __('Lakshadweep', 'wp-ultimo-locations'), 'MP' => __('Madhya Pradesh', 'wp-ultimo-locations'), 'MH' => __('Maharashtra', 'wp-ultimo-locations'), 'MN' => __('Manipur', 'wp-ultimo-locations'), 'ML' => __('Meghalaya', 'wp-ultimo-locations'), 'MZ' => __('Mizoram', 'wp-ultimo-locations'), 'NL' => __('Nagaland', 'wp-ultimo-locations'), 'OR' => __('Odisha', 'wp-ultimo-locations'), 'PY' => __('Puducherry', 'wp-ultimo-locations'), 'PB' => __('Punjab', 'wp-ultimo-locations'), 'RJ' => __('Rajasthan', 'wp-ultimo-locations'), 'SK' => __('Sikkim', 'wp-ultimo-locations'), 'TN' => __('Tamil Nadu', 'wp-ultimo-locations'), 'TG' => __('Telangana', 'wp-ultimo-locations'), 'TR' => __('Tripura', 'wp-ultimo-locations'), 'UP' => __('Uttar Pradesh', 'wp-ultimo-locations'), 'UT' => __('Uttarakhand', 'wp-ultimo-locations'), 'WB' => __('West Bengal', 'wp-ultimo-locations'), ); } // end states; } // end class Country_IN;