mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 17:58:41 +00:00
283 lines
8.6 KiB
PHP
283 lines
8.6 KiB
PHP
<?php
|
|
/**
|
|
* Orange Management
|
|
*
|
|
* PHP Version 7.0
|
|
*
|
|
* @category TBD
|
|
* @package TBD
|
|
* @author OMS Development Team <dev@oms.com>
|
|
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
|
* @copyright 2013 Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link http://orange-management.com
|
|
*/
|
|
namespace phpOMS\Localization;
|
|
|
|
use phpOMS\Datatypes\Enum;
|
|
|
|
/**
|
|
* Country names ISO list.
|
|
*
|
|
* @category Framework
|
|
* @package phpOMS\Localization
|
|
* @author OMS Development Team <dev@oms.com>
|
|
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
|
* @license OMS License 1.0
|
|
* @link http://orange-management.com
|
|
* @since 1.0.0
|
|
*/
|
|
class ISO3166NameEnum extends Enum
|
|
{
|
|
const _AFG = 'Afghanistan';
|
|
const _ALA = 'Åland Islands';
|
|
const _ALB = 'Albania';
|
|
const _DZA = 'Algeria';
|
|
const _ASM = 'American Samoa';
|
|
const _AND = 'Andorra';
|
|
const _AGO = 'Angola';
|
|
const _AIA = 'Anguilla';
|
|
const _ATA = 'Antarctica';
|
|
const _ATG = 'Antigua and Barbuda';
|
|
const _ARG = 'Argentina';
|
|
const _ARM = 'Armenia';
|
|
const _ABW = 'Aruba';
|
|
const _AUS = 'Australia';
|
|
const _AUT = 'Austria';
|
|
const _AZE = 'Azerbaijan';
|
|
const _BHS = 'Bahamas';
|
|
const _BHR = 'Bahrain';
|
|
const _BGD = 'Bangladesh';
|
|
const _BRB = 'Barbados';
|
|
const _BLR = 'Belarus';
|
|
const _BEL = 'Belgium';
|
|
const _BLZ = 'Belize';
|
|
const _BEN = 'Benin';
|
|
const _BMU = 'Bermuda';
|
|
const _BTN = 'Bhutan';
|
|
const _BOL = 'Bolivia (Plurinational State of)';
|
|
const _BES = 'Bonaire, Sint Eustatius and Saba';
|
|
const _BIH = 'Bosnia and Herzegovina';
|
|
const _BWA = 'Botswana';
|
|
const _BVT = 'Bouvet Island';
|
|
const _BRA = 'Brazil';
|
|
const _IOT = 'British Indian Ocean Territory';
|
|
const _BRN = 'Brunei Darussalam';
|
|
const _BGR = 'Bulgaria';
|
|
const _BFA = 'Burkina Faso';
|
|
const _BDI = 'Burundi';
|
|
const _CPV = 'Cabo Verde';
|
|
const _KHM = 'Cambodia';
|
|
const _CMR = 'Cameroon';
|
|
const _CAN = 'Canada';
|
|
const _CYM = 'Cayman Islands';
|
|
const _CAF = 'Central African Republic';
|
|
const _TCD = 'Chad';
|
|
const _CHL = 'Chile';
|
|
const _CHN = 'China';
|
|
const _CXR = 'Christmas Island';
|
|
const _CCK = 'Cocos (Keeling) Islands';
|
|
const _COL = 'Colombia';
|
|
const _COM = 'Comoros';
|
|
const _COG = 'Congo';
|
|
const _COD = 'Congo (Democratic Republic of the)';
|
|
const _COK = 'Cook Islands';
|
|
const _CRI = 'Costa Rica';
|
|
const _CIV = 'Côte d\'Ivoire';
|
|
const _HRV = 'Croatia';
|
|
const _CUB = 'Cuba';
|
|
const _CUW = 'Curaçao';
|
|
const _CYP = 'Cyprus';
|
|
const _CZE = 'Czech Republic';
|
|
const _DNK = 'Denmark';
|
|
const _DJI = 'Djibouti';
|
|
const _DMA = 'Dominica';
|
|
const _DOM = 'Dominican Republic';
|
|
const _ECU = 'Ecuador';
|
|
const _EGY = 'Egypt';
|
|
const _SLV = 'El Salvador';
|
|
const _GNQ = 'Equatorial Guinea';
|
|
const _ERI = 'Eritrea';
|
|
const _EST = 'Estonia';
|
|
const _ETH = 'Ethiopia';
|
|
const _FLK = 'Falkland Islands (Malvinas)';
|
|
const _FRO = 'Faroe Islands';
|
|
const _FJI = 'Fiji';
|
|
const _FIN = 'Finland';
|
|
const _FRA = 'France';
|
|
const _GUF = 'French Guiana';
|
|
const _PYF = 'French Polynesia';
|
|
const _ATF = 'French Southern Territories';
|
|
const _GAB = 'Gabon';
|
|
const _GMB = 'Gambia';
|
|
const _GEO = 'Georgia';
|
|
const _DEU = 'Germany';
|
|
const _GHA = 'Ghana';
|
|
const _GIB = 'Gibraltar';
|
|
const _GRC = 'Greece';
|
|
const _GRL = 'Greenland';
|
|
const _GRD = 'Grenada';
|
|
const _GLP = 'Guadeloupe';
|
|
const _GUM = 'Guam';
|
|
const _GTM = 'Guatemala';
|
|
const _GGY = 'Guernsey';
|
|
const _GIN = 'Guinea';
|
|
const _GNB = 'Guinea-Bissau';
|
|
const _GUY = 'Guyana';
|
|
const _HTI = 'Haiti';
|
|
const _HMD = 'Heard Island and McDonald Islands';
|
|
const _VAT = 'Holy See';
|
|
const _HND = 'Honduras';
|
|
const _HKG = 'Hong Kong';
|
|
const _HUN = 'Hungary';
|
|
const _ISL = 'Iceland';
|
|
const _IND = 'India';
|
|
const _IDN = 'Indonesia';
|
|
const _IRN = 'Iran (Islamic Republic of)';
|
|
const _IRQ = 'Iraq';
|
|
const _IRL = 'Ireland';
|
|
const _IMN = 'Isle of Man';
|
|
const _ISR = 'Israel';
|
|
const _ITA = 'Italy';
|
|
const _JAM = 'Jamaica';
|
|
const _JPN = 'Japan';
|
|
const _JEY = 'Jersey';
|
|
const _JOR = 'Jordan';
|
|
const _KAZ = 'Kazakhstan';
|
|
const _KEN = 'Kenya';
|
|
const _KIR = 'Kiribati';
|
|
const _PRK = 'Korea (Democratic People\'s Republic of)';
|
|
const _KOR = 'Korea (Republic of)';
|
|
const _KWT = 'Kuwait';
|
|
const _KGZ = 'Kyrgyzstan';
|
|
const _LAO = 'Lao People\'s Democratic Republic';
|
|
const _LVA = 'Latvia';
|
|
const _LBN = 'Lebanon';
|
|
const _LSO = 'Lesotho';
|
|
const _LBR = 'Liberia';
|
|
const _LBY = 'Libya';
|
|
const _LIE = 'Liechtenstein';
|
|
const _LTU = 'Lithuania';
|
|
const _LUX = 'Luxembourg';
|
|
const _MAC = 'Macao';
|
|
const _MKD = 'Macedonia (the former Yugoslav Republic of)';
|
|
const _MDG = 'Madagascar';
|
|
const _MWI = 'Malawi';
|
|
const _MYS = 'Malaysia';
|
|
const _MDV = 'Maldives';
|
|
const _MLI = 'Mali';
|
|
const _MLT = 'Malta';
|
|
const _MHL = 'Marshall Islands';
|
|
const _MTQ = 'Martinique';
|
|
const _MRT = 'Mauritania';
|
|
const _MUS = 'Mauritius';
|
|
const _MYT = 'Mayotte';
|
|
const _MEX = 'Mexico';
|
|
const _FSM = 'Micronesia (Federated States of)';
|
|
const _MDA = 'Moldova (Republic of)';
|
|
const _MCO = 'Monaco';
|
|
const _MNG = 'Mongolia';
|
|
const _MNE = 'Montenegro';
|
|
const _MSR = 'Montserrat';
|
|
const _MAR = 'Morocco';
|
|
const _MOZ = 'Mozambique';
|
|
const _MMR = 'Myanmar';
|
|
const _NAM = 'Namibia';
|
|
const _NRU = 'Nauru';
|
|
const _NPL = 'Nepal';
|
|
const _NLD = 'Netherlands';
|
|
const _NCL = 'New Caledonia';
|
|
const _NZL = 'New Zealand';
|
|
const _NIC = 'Nicaragua';
|
|
const _NER = 'Niger';
|
|
const _NGA = 'Nigeria';
|
|
const _NIU = 'Niue';
|
|
const _NFK = 'Norfolk Island';
|
|
const _MNP = 'Northern Mariana Islands';
|
|
const _NOR = 'Norway';
|
|
const _OMN = 'Oman';
|
|
const _PAK = 'Pakistan';
|
|
const _PLW = 'Palau';
|
|
const _PSE = 'Palestine, State of';
|
|
const _PAN = 'Panama';
|
|
const _PNG = 'Papua New Guinea';
|
|
const _PRY = 'Paraguay';
|
|
const _PER = 'Peru';
|
|
const _PHL = 'Philippines';
|
|
const _PCN = 'Pitcairn';
|
|
const _POL = 'Poland';
|
|
const _PRT = 'Portugal';
|
|
const _PRI = 'Puerto Rico';
|
|
const _QAT = 'Qatar';
|
|
const _REU = 'Réunion';
|
|
const _ROU = 'Romania';
|
|
const _RUS = 'Russian Federation';
|
|
const _RWA = 'Rwanda';
|
|
const _BLM = 'Saint Barthélemy';
|
|
const _SHN = 'Saint Helena, Ascension and Tristan da Cunha';
|
|
const _KNA = 'Saint Kitts and Nevis';
|
|
const _LCA = 'Saint Lucia';
|
|
const _MAF = 'Saint Martin (French part)';
|
|
const _SPM = 'Saint Pierre and Miquelon';
|
|
const _VCT = 'Saint Vincent and the Grenadines';
|
|
const _WSM = 'Samoa';
|
|
const _SMR = 'San Marino';
|
|
const _STP = 'Sao Tome and Principe';
|
|
const _SAU = 'Saudi Arabia';
|
|
const _SEN = 'Senegal';
|
|
const _SRB = 'Serbia';
|
|
const _SYC = 'Seychelles';
|
|
const _SLE = 'Sierra Leone';
|
|
const _SGP = 'Singapore';
|
|
const _SXM = 'Sint Maarten (Dutch part)';
|
|
const _SVK = 'Slovakia';
|
|
const _SVN = 'Slovenia';
|
|
const _SLB = 'Solomon Islands';
|
|
const _SOM = 'Somalia';
|
|
const _ZAF = 'South Africa';
|
|
const _SGS = 'South Georgia and the South Sandwich Islands';
|
|
const _SSD = 'South Sudan';
|
|
const _ESP = 'Spain';
|
|
const _LKA = 'Sri Lanka';
|
|
const _SDN = 'Sudan';
|
|
const _SUR = 'Suriname';
|
|
const _SJM = 'Svalbard and Jan Mayen';
|
|
const _SWZ = 'Swaziland';
|
|
const _SWE = 'Sweden';
|
|
const _CHE = 'Switzerland';
|
|
const _SYR = 'Syrian Arab Republic';
|
|
const _TWN = 'Taiwan, Province of China[a]';
|
|
const _TJK = 'Tajikistan';
|
|
const _TZA = 'Tanzania, United Republic of';
|
|
const _THA = 'Thailand';
|
|
const _TLS = 'Timor-Leste';
|
|
const _TGO = 'Togo';
|
|
const _TKL = 'Tokelau';
|
|
const _TON = 'Tonga';
|
|
const _TTO = 'Trinidad and Tobago';
|
|
const _TUN = 'Tunisia';
|
|
const _TUR = 'Turkey';
|
|
const _TKM = 'Turkmenistan';
|
|
const _TCA = 'Turks and Caicos Islands';
|
|
const _TUV = 'Tuvalu';
|
|
const _UGA = 'Uganda';
|
|
const _UKR = 'Ukraine';
|
|
const _ARE = 'United Arab Emirates';
|
|
const _GBR = 'United Kingdom of Great Britain and Northern Ireland';
|
|
const _USA = 'United States of America';
|
|
const _UMI = 'United States Minor Outlying Islands';
|
|
const _URY = 'Uruguay';
|
|
const _UZB = 'Uzbekistan';
|
|
const _VUT = 'Vanuatu';
|
|
const _VEN = 'Venezuela (Bolivarian Republic of)';
|
|
const _VNM = 'Viet Nam';
|
|
const _VGB = 'Virgin Islands (British)';
|
|
const _VIR = 'Virgin Islands (U.S.)';
|
|
const _WLF = 'Wallis and Futuna';
|
|
const _ESH = 'Western Sahara';
|
|
const _YEM = 'Yemen';
|
|
const _ZMB = 'Zambia';
|
|
const _ZWE = 'Zimbabwe';
|
|
const _XKK = 'Kosovo';
|
|
} |