'BR', 'currency' => 'BRL', 'phone_code' => 55, ]; /** * The type of nomenclature used to refer to the country sub-divisions. * * @since 2.0.11 * @var string */ protected $state_type = 'state'; /** * Return the country name. * * @since 2.0.11 * @return string */ public function get_name() { return __('Brazil', 'wp-ultimo'); } /** * Returns the list of states for BR. * * @since 2.0.11 * @return array The list of state/provinces for the country. */ protected function states() { return [ 'AC' => __('Acre', 'wp-ultimo'), 'AL' => __('Alagoas', 'wp-ultimo'), 'AP' => __('Amapá', 'wp-ultimo'), 'AM' => __('Amazonas', 'wp-ultimo'), 'BA' => __('Bahia', 'wp-ultimo'), 'CE' => __('Ceará', 'wp-ultimo'), 'DF' => __('Distrito Federal', 'wp-ultimo'), 'ES' => __('Espírito Santo', 'wp-ultimo'), 'GO' => __('Goiás', 'wp-ultimo'), 'MA' => __('Maranhão', 'wp-ultimo'), 'MT' => __('Mato Grosso', 'wp-ultimo'), 'MS' => __('Mato Grosso do Sul', 'wp-ultimo'), 'MG' => __('Minas Gerais', 'wp-ultimo'), 'PR' => __('Paraná', 'wp-ultimo'), 'PB' => __('Paraíba', 'wp-ultimo'), 'PA' => __('Pará', 'wp-ultimo'), 'PE' => __('Pernambuco', 'wp-ultimo'), 'PI' => __('Piauí', 'wp-ultimo'), 'RN' => __('Rio Grande do Norte', 'wp-ultimo'), 'RS' => __('Rio Grande do Sul', 'wp-ultimo'), 'RJ' => __('Rio de Janeiro', 'wp-ultimo'), 'RO' => __('Rondônia', 'wp-ultimo'), 'RR' => __('Roraima', 'wp-ultimo'), 'SC' => __('Santa Catarina', 'wp-ultimo'), 'SE' => __('Sergipe', 'wp-ultimo'), 'SP' => __('São Paulo', 'wp-ultimo'), 'TO' => __('Tocantins', 'wp-ultimo'), ]; } }