'SG', 'currency' => 'SGD', 'phone_code' => 65, ); /** * 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 __('Singapore', 'wp-ultimo'); } /** * Returns the list of states for SG. * * @since 2.0.11 * @return array The list of state/provinces for the country. */ protected function states() { return array( '01' => __('Central Singapore Community Development Council', 'wp-ultimo'), '02' => __('North East Community Development Council', 'wp-ultimo'), '03' => __('North West Community Development Council', 'wp-ultimo'), '04' => __('South East Community Development Council', 'wp-ultimo'), '05' => __('South West Community Development Council', 'wp-ultimo'), ); } }