'CA', 'currency' => 'CAD', 'phone_code' => 1, ]; /** * The type of nomenclature used to refer to the country sub-divisions. * * @since 2.0.11 * @var string */ protected $state_type = 'province'; /** * Return the country name. * * @since 2.0.11 * @return string */ public function get_name() { return __('Canada', 'wp-multisite-waas'); } /** * Returns the list of states for CA. * * @since 2.0.11 * @return array The list of state/provinces for the country. */ protected function states() { return [ 'AB' => __('Alberta', 'wp-multisite-waas'), 'BC' => __('British Columbia', 'wp-multisite-waas'), 'MB' => __('Manitoba', 'wp-multisite-waas'), 'NB' => __('New Brunswick', 'wp-multisite-waas'), 'NL' => __('Newfoundland and Labrador', 'wp-multisite-waas'), 'NT' => __('Northwest Territories', 'wp-multisite-waas'), 'NS' => __('Nova Scotia', 'wp-multisite-waas'), 'NU' => __('Nunavut', 'wp-multisite-waas'), 'ON' => __('Ontario', 'wp-multisite-waas'), 'PE' => __('Prince Edward Island', 'wp-multisite-waas'), 'QC' => __('Quebec', 'wp-multisite-waas'), 'SK' => __('Saskatchewan', 'wp-multisite-waas'), 'YT' => __('Yukon', 'wp-multisite-waas'), ]; } }