source of /sprout/Helpers/Locales/LocaleInfoCPV.php<?php /* * Copyright (C) 2017 Karmabunny Pty Ltd. * * This file is a part of SproutCMS. * * SproutCMS is free software: you can redistribute it and/or modify it under the terms * of the GNU General Public License as published by the Free Software Foundation, either * version 2 of the License, or (at your option) any later version. * * For more information, visit <http://getsproutcms.com>. */ namespace Sprout\Helpers\Locales; /** * Locale info for Cape Verde; see {@see LocaleInfo} */ class LocaleInfoCPV extends LocaleInfo { protected $state_list = [ 'BR' => 'Brava', 'BV' => 'Boa Vista', 'CA' => 'Santa Catarina', 'CF' => 'Santa Catarina do Fogo', 'CR' => 'Santa Cruz', 'MA' => 'Maio', 'MO' => 'Mosteiros', 'PA' => 'Paul', 'PN' => 'Porto Novo', 'PR' => 'Praia', 'RB' => 'Ribeira Brava', 'RG' => 'Ribeira Grande', 'RS' => 'Ribeira Grande de Santiago', 'SD' => 'São Domingos', 'SF' => 'São Filipe', 'SL' => 'Sal', 'SM' => 'São Miguel', 'SO' => 'São Lourenço dos Órgãos', 'SS' => 'São Salvador do Mundo', 'SV' => 'São Vicente', 'TA' => 'Tarrafal', 'TS' => 'Tarrafal de São Nicolau', ]; }
|