'JP', 'currency' => 'JPY', 'phone_code' => 81, ); /** * The type of nomenclature used to refer to the country sub-divisions. * * @since 2.0.11 * @var string */ protected $state_type = 'prefecture'; /** * Return the country name. * * @since 2.0.11 * @return string */ public function get_name() { return __('Japan', 'wp-ultimo'); } /** * Returns the list of states for JP. * * @since 2.0.11 * @return array The list of state/provinces for the country. */ protected function states() { return array( '10' => __('Gunma Prefecture', 'wp-ultimo'), '11' => __('Saitama Prefecture', 'wp-ultimo'), '12' => __('Chiba Prefecture', 'wp-ultimo'), '13' => __('Tokyo', 'wp-ultimo'), '14' => __('Kanagawa Prefecture', 'wp-ultimo'), '15' => __('Niigata Prefecture', 'wp-ultimo'), '16' => __('Toyama Prefecture', 'wp-ultimo'), '17' => __('Ishikawa Prefecture', 'wp-ultimo'), '18' => __('Fukui Prefecture', 'wp-ultimo'), '19' => __('Yamanashi Prefecture', 'wp-ultimo'), '20' => __('Nagano Prefecture', 'wp-ultimo'), '21' => __('Gifu Prefecture', 'wp-ultimo'), '22' => __('Shizuoka Prefecture', 'wp-ultimo'), '23' => __('Aichi Prefecture', 'wp-ultimo'), '24' => __('Mie Prefecture', 'wp-ultimo'), '25' => __('Shiga Prefecture', 'wp-ultimo'), '26' => __('Kyōto Prefecture', 'wp-ultimo'), '27' => __('Ōsaka Prefecture', 'wp-ultimo'), '28' => __('Hyōgo Prefecture', 'wp-ultimo'), '29' => __('Nara Prefecture', 'wp-ultimo'), '30' => __('Wakayama Prefecture', 'wp-ultimo'), '31' => __('Tottori Prefecture', 'wp-ultimo'), '32' => __('Shimane Prefecture', 'wp-ultimo'), '33' => __('Okayama Prefecture', 'wp-ultimo'), '34' => __('Hiroshima Prefecture', 'wp-ultimo'), '35' => __('Yamaguchi Prefecture', 'wp-ultimo'), '36' => __('Tokushima Prefecture', 'wp-ultimo'), '37' => __('Kagawa Prefecture', 'wp-ultimo'), '38' => __('Ehime Prefecture', 'wp-ultimo'), '39' => __('Kōchi Prefecture', 'wp-ultimo'), '40' => __('Fukuoka Prefecture', 'wp-ultimo'), '41' => __('Saga Prefecture', 'wp-ultimo'), '42' => __('Nagasaki Prefecture', 'wp-ultimo'), '43' => __('Kumamoto Prefecture', 'wp-ultimo'), '44' => __('Ōita Prefecture', 'wp-ultimo'), '45' => __('Miyazaki Prefecture', 'wp-ultimo'), '46' => __('Kagoshima Prefecture', 'wp-ultimo'), '47' => __('Okinawa Prefecture', 'wp-ultimo'), '05' => __('Akita Prefecture', 'wp-ultimo'), '02' => __('Aomori Prefecture', 'wp-ultimo'), '07' => __('Fukushima Prefecture', 'wp-ultimo'), '01' => __('Hokkaidō Prefecture', 'wp-ultimo'), '08' => __('Ibaraki Prefecture', 'wp-ultimo'), '03' => __('Iwate Prefecture', 'wp-ultimo'), '04' => __('Miyagi Prefecture', 'wp-ultimo'), '09' => __('Tochigi Prefecture', 'wp-ultimo'), '06' => __('Yamagata Prefecture', 'wp-ultimo'), ); } }