mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 17:58:41 +00:00
523 lines
8.2 KiB
PHP
523 lines
8.2 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 codes 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 ISO3166Enum extends Enum
|
|
{
|
|
const _AF = 'Afghanistan';
|
|
|
|
const _AX = 'Aland Islands';
|
|
|
|
const _AL = 'Albania';
|
|
|
|
const _DZ = 'Algeria';
|
|
|
|
const _AS = 'American Samoa';
|
|
|
|
const _AD = 'Andorra';
|
|
|
|
const _AO = 'Angola';
|
|
|
|
const _AI = 'Anguilla';
|
|
|
|
const _AQ = 'Antarctica';
|
|
|
|
const _AG = 'Antigua And Barbuda';
|
|
|
|
const _AR = 'Argentina';
|
|
|
|
const _AM = 'Armenia';
|
|
|
|
const _AW = 'Aruba';
|
|
|
|
const _AU = 'Australia';
|
|
|
|
const _AT = 'Austria';
|
|
|
|
const _AZ = 'Azerbaijan';
|
|
|
|
const _BS = 'Bahamas';
|
|
|
|
const _BH = 'Bahrain';
|
|
|
|
const _BD = 'Bangladesh';
|
|
|
|
const _BB = 'Barbados';
|
|
|
|
const _BY = 'Belarus';
|
|
|
|
const _BE = 'Belgium';
|
|
|
|
const _BZ = 'Belize';
|
|
|
|
const _BJ = 'Benin';
|
|
|
|
const _BM = 'Bermuda';
|
|
|
|
const _BT = 'Bhutan';
|
|
|
|
const _BO = 'Bolivia';
|
|
|
|
const _BA = 'Bosnia And Herzegovina';
|
|
|
|
const _BW = 'Botswana';
|
|
|
|
const _BV = 'Bouvet Island';
|
|
|
|
const _BR = 'Brazil';
|
|
|
|
const _IO = 'British Indian Ocean Territory';
|
|
|
|
const _BN = 'Brunei Darussalam';
|
|
|
|
const _BG = 'Bulgaria';
|
|
|
|
const _BF = 'Burkina Faso';
|
|
|
|
const _BI = 'Burundi';
|
|
|
|
const _KH = 'Cambodia';
|
|
|
|
const _CM = 'Cameroon';
|
|
|
|
const _CA = 'Canada';
|
|
|
|
const _CV = 'Cape Verde';
|
|
|
|
const _KY = 'Cayman Islands';
|
|
|
|
const _CF = 'Central African Republic';
|
|
|
|
const _TD = 'Chad';
|
|
|
|
const _CL = 'Chile';
|
|
|
|
const _CN = 'China';
|
|
|
|
const _CX = 'Christmas Island';
|
|
|
|
const _CC = 'Cocos (Keeling) Islands';
|
|
|
|
const _CO = 'Colombia';
|
|
|
|
const _KM = 'Comoros';
|
|
|
|
const _CG = 'Congo';
|
|
|
|
const _CD = 'Congo, Democratic Republic';
|
|
|
|
const _CK = 'Cook Islands';
|
|
|
|
const _CR = 'Costa Rica';
|
|
|
|
const _CI = 'Cote D\'Ivoire';
|
|
|
|
const _HR = 'Croatia';
|
|
|
|
const _CU = 'Cuba';
|
|
|
|
const _CY = 'Cyprus';
|
|
|
|
const _CZ = 'Czech Republic';
|
|
|
|
const _DK = 'Denmark';
|
|
|
|
const _DJ = 'Djibouti';
|
|
|
|
const _DM = 'Dominica';
|
|
|
|
const _DO = 'Dominican Republic';
|
|
|
|
const _EC = 'Ecuador';
|
|
|
|
const _EG = 'Egypt';
|
|
|
|
const _SV = 'El Salvador';
|
|
|
|
const _GQ = 'Equatorial Guinea';
|
|
|
|
const _ER = 'Eritrea';
|
|
|
|
const _EE = 'Estonia';
|
|
|
|
const _ET = 'Ethiopia';
|
|
|
|
const _FK = 'Falkland Islands (Malvinas)';
|
|
|
|
const _FO = 'Faroe Islands';
|
|
|
|
const _FJ = 'Fiji';
|
|
|
|
const _FI = 'Finland';
|
|
|
|
const _FR = 'France';
|
|
|
|
const _GF = 'French Guiana';
|
|
|
|
const _PF = 'French Polynesia';
|
|
|
|
const _TF = 'French Southern Territories';
|
|
|
|
const _GA = 'Gabon';
|
|
|
|
const _GM = 'Gambia';
|
|
|
|
const _GE = 'Georgia';
|
|
|
|
const _DE = 'Germany';
|
|
|
|
const _GH = 'Ghana';
|
|
|
|
const _GI = 'Gibraltar';
|
|
|
|
const _GR = 'Greece';
|
|
|
|
const _GL = 'Greenland';
|
|
|
|
const _GD = 'Grenada';
|
|
|
|
const _GP = 'Guadeloupe';
|
|
|
|
const _GU = 'Guam';
|
|
|
|
const _GT = 'Guatemala';
|
|
|
|
const _GG = 'Guernsey';
|
|
|
|
const _GN = 'Guinea';
|
|
|
|
const _GW = 'Guinea-Bissau';
|
|
|
|
const _GY = 'Guyana';
|
|
|
|
const _HT = 'Haiti';
|
|
|
|
const _HM = 'Heard Island & Mcdonald Islands';
|
|
|
|
const _VA = 'Holy See (Vatican City State)';
|
|
|
|
const _HN = 'Honduras';
|
|
|
|
const _HK = 'Hong Kong';
|
|
|
|
const _HU = 'Hungary';
|
|
|
|
const _IS = 'Iceland';
|
|
|
|
const _IN = 'India';
|
|
|
|
const _ID = 'Indonesia';
|
|
|
|
const _IR = 'Iran, Islamic Republic Of';
|
|
|
|
const _IQ = 'Iraq';
|
|
|
|
const _IE = 'Ireland';
|
|
|
|
const _IM = 'Isle Of Man';
|
|
|
|
const _IL = 'Israel';
|
|
|
|
const _IT = 'Italy';
|
|
|
|
const _JM = 'Jamaica';
|
|
|
|
const _JP = 'Japan';
|
|
|
|
const _JE = 'Jersey';
|
|
|
|
const _JO = 'Jordan';
|
|
|
|
const _KZ = 'Kazakhstan';
|
|
|
|
const _KE = 'Kenya';
|
|
|
|
const _KI = 'Kiribati';
|
|
|
|
const _KR = 'Korea';
|
|
|
|
const _KW = 'Kuwait';
|
|
|
|
const _KG = 'Kyrgyzstan';
|
|
|
|
const _LA = 'Lao People\'s Democratic Republic';
|
|
|
|
const _LV = 'Latvia';
|
|
|
|
const _LB = 'Lebanon';
|
|
|
|
const _LS = 'Lesotho';
|
|
|
|
const _LR = 'Liberia';
|
|
|
|
const _LY = 'Libyan Arab Jamahiriya';
|
|
|
|
const _LI = 'Liechtenstein';
|
|
|
|
const _LT = 'Lithuania';
|
|
|
|
const _LU = 'Luxembourg';
|
|
|
|
const _MO = 'Macao';
|
|
|
|
const _MK = 'Macedonia';
|
|
|
|
const _MG = 'Madagascar';
|
|
|
|
const _MW = 'Malawi';
|
|
|
|
const _MY = 'Malaysia';
|
|
|
|
const _MV = 'Maldives';
|
|
|
|
const _ML = 'Mali';
|
|
|
|
const _MT = 'Malta';
|
|
|
|
const _MH = 'Marshall Islands';
|
|
|
|
const _MQ = 'Martinique';
|
|
|
|
const _MR = 'Mauritania';
|
|
|
|
const _MU = 'Mauritius';
|
|
|
|
const _YT = 'Mayotte';
|
|
|
|
const _MX = 'Mexico';
|
|
|
|
const _FM = 'Micronesia, Federated States Of';
|
|
|
|
const _MD = 'Moldova';
|
|
|
|
const _MC = 'Monaco';
|
|
|
|
const _MN = 'Mongolia';
|
|
|
|
const _ME = 'Montenegro';
|
|
|
|
const _MS = 'Montserrat';
|
|
|
|
const _MA = 'Morocco';
|
|
|
|
const _MZ = 'Mozambique';
|
|
|
|
const _MM = 'Myanmar';
|
|
|
|
const _NA = 'Namibia';
|
|
|
|
const _NR = 'Nauru';
|
|
|
|
const _NP = 'Nepal';
|
|
|
|
const _NL = 'Netherlands';
|
|
|
|
const _AN = 'Netherlands Antilles';
|
|
|
|
const _NC = 'New Caledonia';
|
|
|
|
const _NZ = 'New Zealand';
|
|
|
|
const _NI = 'Nicaragua';
|
|
|
|
const _NE = 'Niger';
|
|
|
|
const _NG = 'Nigeria';
|
|
|
|
const _NU = 'Niue';
|
|
|
|
const _NF = 'Norfolk Island';
|
|
|
|
const _MP = 'Northern Mariana Islands';
|
|
|
|
const _NO = 'Norway';
|
|
|
|
const _OM = 'Oman';
|
|
|
|
const _PK = 'Pakistan';
|
|
|
|
const _PW = 'Palau';
|
|
|
|
const _PS = 'Palestinian Territory, Occupied';
|
|
|
|
const _PA = 'Panama';
|
|
|
|
const _PG = 'Papua New Guinea';
|
|
|
|
const _PY = 'Paraguay';
|
|
|
|
const _PE = 'Peru';
|
|
|
|
const _PH = 'Philippines';
|
|
|
|
const _PN = 'Pitcairn';
|
|
|
|
const _PL = 'Poland';
|
|
|
|
const _PT = 'Portugal';
|
|
|
|
const _PR = 'Puerto Rico';
|
|
|
|
const _QA = 'Qatar';
|
|
|
|
const _RE = 'Reunion';
|
|
|
|
const _RO = 'Romania';
|
|
|
|
const _RU = 'Russian Federation';
|
|
|
|
const _RW = 'Rwanda';
|
|
|
|
const _BL = 'Saint Barthelemy';
|
|
|
|
const _SH = 'Saint Helena';
|
|
|
|
const _KN = 'Saint Kitts And Nevis';
|
|
|
|
const _LC = 'Saint Lucia';
|
|
|
|
const _MF = 'Saint Martin';
|
|
|
|
const _PM = 'Saint Pierre And Miquelon';
|
|
|
|
const _VC = 'Saint Vincent And Grenadines';
|
|
|
|
const _WS = 'Samoa';
|
|
|
|
const _SM = 'San Marino';
|
|
|
|
const _ST = 'Sao Tome And Principe';
|
|
|
|
const _SA = 'Saudi Arabia';
|
|
|
|
const _SN = 'Senegal';
|
|
|
|
const _RS = 'Serbia';
|
|
|
|
const _SC = 'Seychelles';
|
|
|
|
const _SL = 'Sierra Leone';
|
|
|
|
const _SG = 'Singapore';
|
|
|
|
const _SK = 'Slovakia';
|
|
|
|
const _SI = 'Slovenia';
|
|
|
|
const _SB = 'Solomon Islands';
|
|
|
|
const _SO = 'Somalia';
|
|
|
|
const _ZA = 'South Africa';
|
|
|
|
const _GS = 'South Georgia And Sandwich Isl.';
|
|
|
|
const _ES = 'Spain';
|
|
|
|
const _LK = 'Sri Lanka';
|
|
|
|
const _SD = 'Sudan';
|
|
|
|
const _SR = 'Suriname';
|
|
|
|
const _SJ = 'Svalbard And Jan Mayen';
|
|
|
|
const _SZ = 'Swaziland';
|
|
|
|
const _SE = 'Sweden';
|
|
|
|
const _CH = 'Switzerland';
|
|
|
|
const _SY = 'Syrian Arab Republic';
|
|
|
|
const _TW = 'Taiwan';
|
|
|
|
const _TJ = 'Tajikistan';
|
|
|
|
const _TZ = 'Tanzania';
|
|
|
|
const _TH = 'Thailand';
|
|
|
|
const _TL = 'Timor-Leste';
|
|
|
|
const _TG = 'Togo';
|
|
|
|
const _TK = 'Tokelau';
|
|
|
|
const _TO = 'Tonga';
|
|
|
|
const _TT = 'Trinidad And Tobago';
|
|
|
|
const _TN = 'Tunisia';
|
|
|
|
const _TR = 'Turkey';
|
|
|
|
const _TM = 'Turkmenistan';
|
|
|
|
const _TC = 'Turks And Caicos Islands';
|
|
|
|
const _TV = 'Tuvalu';
|
|
|
|
const _UG = 'Uganda';
|
|
|
|
const _UA = 'Ukraine';
|
|
|
|
const _AE = 'United Arab Emirates';
|
|
|
|
const _GB = 'United Kingdom';
|
|
|
|
const _US = 'United States';
|
|
|
|
const _UM = 'United States Outlying Islands';
|
|
|
|
const _UY = 'Uruguay';
|
|
|
|
const _UZ = 'Uzbekistan';
|
|
|
|
const _VU = 'Vanuatu';
|
|
|
|
const _VE = 'Venezuela';
|
|
|
|
const _VN = 'Viet Nam';
|
|
|
|
const _VG = 'Virgin Islands, British';
|
|
|
|
const _VI = 'Virgin Islands, U.S.';
|
|
|
|
const _WF = 'Wallis And Futuna';
|
|
|
|
const _EH = 'Western Sahara';
|
|
|
|
const _YE = 'Yemen';
|
|
|
|
const _ZM = 'Zambia';
|
|
|
|
const _ZW = 'Zimbabwe';
|
|
}
|