function CountriesBaseSetupTest::getNonStandardCountriesCorrected in Countries 8
Same name and namespace in other branches
- 7.2 tests/countries.test \CountriesBaseSetupTest::getNonStandardCountriesCorrected()
The valid list if ISO strings
1 call to CountriesBaseSetupTest::getNonStandardCountriesCorrected()
- CountriesBaseImportUnitTest::testCountriesCoreListingInstallImport in tests/
countries.test - The list is updated on install.
File
- tests/
countries.test, line 124 - Tests for countries.module.
Class
- CountriesBaseSetupTest
- Test the node_load_multiple() function.
Code
function getNonStandardCountriesCorrected() {
return array(
'AX' => t('Åland Islands'),
'BN' => t('Brunei Darussalam'),
'BO' => t('Bolivia, Plurinational State of'),
'CD' => t('Congo, The Democratic Republic of the'),
'CG' => t('Congo'),
'CI' => t("Côte d'Ivoire"),
'FK' => t('Falkland Islands (Malvinas)'),
'FM' => t('Micronesia, Federated States of'),
'HK' => t('Hong Kong'),
'IR' => t('Iran, Islamic Republic of'),
'KP' => t("Korea, Democratic People's Republic of"),
'KR' => t('Korea, Republic of'),
'LA' => t("Lao People's Democratic Republic"),
'MD' => t('Moldova, Republic of'),
'MK' => t('Macedonia, The Former Yugoslav Republic of'),
'MO' => t('Macao'),
'PS' => t('Palestine, State of'),
'RE' => t('Réunion'),
'RU' => t('Russian Federation'),
'SH' => t('Saint Helena, Ascension and Tristan da Cunha'),
'ST' => t('São Tomé and Príncipe'),
'SY' => t('Syrian Arab Republic'),
'TW' => t('Taiwan, Province of China'),
'TZ' => t('Tanzania, United Republic of'),
'VA' => t('Holy See (Vatican City State)'),
'VE' => t('Venezuela, Bolivarian Republic of'),
'VG' => t('Virgin Islands, British'),
'VI' => t('Virgin Islands, U.S.'),
'VN' => t('Viet Nam'),
);
}