mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-10 17:28:40 +00:00
415 lines
9.4 KiB
PHP
Executable File
415 lines
9.4 KiB
PHP
Executable File
<?php
|
||
/**
|
||
* Jingga
|
||
*
|
||
* PHP Version 8.2
|
||
*
|
||
* @package phpOMS\Localization
|
||
* @copyright Dennis Eichhorn
|
||
* @license OMS License 2.0
|
||
* @version 1.0.0
|
||
* @link https://jingga.app
|
||
*/
|
||
declare(strict_types=1);
|
||
|
||
namespace phpOMS\Localization;
|
||
|
||
use phpOMS\Stdlib\Base\Enum;
|
||
|
||
/**
|
||
* Currency names ISO list.
|
||
*
|
||
* @package phpOMS\Localization
|
||
* @license OMS License 2.0
|
||
* @link https://jingga.app
|
||
* @since 1.0.0
|
||
*/
|
||
class ISO4217Enum extends Enum
|
||
{
|
||
public const _AED = 'Dirham, United Arab Emirates';
|
||
|
||
public const _ALL = 'Leke, Albania';
|
||
|
||
public const _AMD = 'Dram, Armenian';
|
||
|
||
public const _AFN = 'Afghanis, Afghanistan';
|
||
|
||
public const _ARS = 'Pesos, Argentina';
|
||
|
||
public const _AWG = 'Guilders, Aruba';
|
||
|
||
public const _AUD = 'Dollars, Australia';
|
||
|
||
public const _AZN = 'New Manats, Azerbaijan';
|
||
|
||
public const _AZM = 'Manats, Azerbaijan';
|
||
|
||
public const _AOA = 'Kwanza, Angolan';
|
||
|
||
public const _BSD = 'Dollars, Bahamas';
|
||
|
||
public const _BBD = 'Dollars, Barbados';
|
||
|
||
public const _BYR = 'Rubles, Belarus';
|
||
|
||
public const _BZD = 'Dollars, Belize';
|
||
|
||
public const _BMD = 'Dollars, Bermuda';
|
||
|
||
public const _BOB = 'Bolivianos, Bolivia';
|
||
|
||
public const _BAM = 'Convertible Marka, Bosnia and Herzegovina';
|
||
|
||
public const _BWP = 'Pulas, Botswana';
|
||
|
||
public const _BGN = 'Leva, Bulgaria';
|
||
|
||
public const _BRL = 'Reais, Brazil';
|
||
|
||
public const _BND = 'Dollars, Brunei Darussalam';
|
||
|
||
public const _KHR = 'Riels, Cambodia';
|
||
|
||
public const _CAD = 'Dollars, Canada';
|
||
|
||
public const _KYD = 'Dollars, Cayman Islands';
|
||
|
||
public const _CLP = 'Pesos, Chile';
|
||
|
||
public const _CNY = 'Yuan Renminbi, China';
|
||
|
||
public const _CNH = 'Yuan Renminbi, China';
|
||
|
||
public const _RMB = 'Yuan Renminbi, China';
|
||
|
||
public const _COP = 'Pesos, Colombia';
|
||
|
||
public const _CRC = 'Colón, Costa Rica';
|
||
|
||
public const _HRK = 'Kuna, Croatia';
|
||
|
||
public const _CUP = 'Pesos, Cuba';
|
||
|
||
public const _CZK = 'Koruny, Czech Republic';
|
||
|
||
public const _DKK = 'Kroner, Denmark';
|
||
|
||
public const _DOP = 'Pesos, Dominican Republic';
|
||
|
||
public const _XCD = 'Dollars, East Caribbean';
|
||
|
||
public const _EGP = 'Pounds, Egypt';
|
||
|
||
public const _SVC = 'Colones, El Salvador';
|
||
|
||
public const _EUR = 'Euro';
|
||
|
||
public const _FKP = 'Pounds, Falkland Islands';
|
||
|
||
public const _FJD = 'Dollars, Fiji';
|
||
|
||
public const _GHC = 'Cedis, Ghana';
|
||
|
||
public const _GIP = 'Pounds, Gibraltar';
|
||
|
||
public const _GTQ = 'Quetzales, Guatemala';
|
||
|
||
public const _GGP = 'Pounds, Guernsey';
|
||
|
||
public const _GYD = 'Dollars, Guyana';
|
||
|
||
public const _HNL = 'Lempiras, Honduras';
|
||
|
||
public const _HKD = 'Dollars, Hong Kong';
|
||
|
||
public const _HUF = 'Forint, Hungary';
|
||
|
||
public const _ISK = 'Kronur, Iceland';
|
||
|
||
public const _INR = 'Rupees, India';
|
||
|
||
public const _IDR = 'Rupiahs, Indonesia';
|
||
|
||
public const _IRR = 'Rials, Iran';
|
||
|
||
public const _IMP = 'Pounds, Isle of Man';
|
||
|
||
public const _ILS = 'New Shekels, Israel';
|
||
|
||
public const _JMD = 'Dollars, Jamaica';
|
||
|
||
public const _JPY = 'Yen, Japan';
|
||
|
||
public const _JEP = 'Pounds, Jersey';
|
||
|
||
public const _KZT = 'Tenge, Kazakhstan';
|
||
|
||
public const _KES = 'Kenyan Shilling';
|
||
|
||
public const _KGS = 'Soms, Kyrgyzstan';
|
||
|
||
public const _LAK = 'Kips, Laos';
|
||
|
||
public const _LVL = 'Lati, Latvia';
|
||
|
||
public const _LBP = 'Pounds, Lebanon';
|
||
|
||
public const _LRD = 'Dollars, Liberia';
|
||
|
||
public const _LTL = 'Litai, Lithuania';
|
||
|
||
public const _MKD = 'Denars, Macedonia';
|
||
|
||
public const _MYR = 'Ringgits, Malaysia';
|
||
|
||
public const _MUR = 'Rupees, Mauritius';
|
||
|
||
public const _MXN = 'Pesos, Mexico';
|
||
|
||
public const _MNT = 'Tugriks, Mongolia';
|
||
|
||
public const _MZN = 'Meticais, Mozambique';
|
||
|
||
public const _NAD = 'Dollars, Namibia';
|
||
|
||
public const _NPR = 'Rupees, Nepal';
|
||
|
||
public const _ANG = 'Guilders, Netherlands Antilles';
|
||
|
||
public const _NZD = 'Dollars, New Zealand';
|
||
|
||
public const _NIO = 'Cordobas, Nicaragua';
|
||
|
||
public const _NGN = 'Nairas, Nigeria';
|
||
|
||
public const _KPW = 'Won, North Korea';
|
||
|
||
public const _NOK = 'Krone, Norway';
|
||
|
||
public const _OMR = 'Rials, Oman';
|
||
|
||
public const _PKR = 'Rupees, Pakistan';
|
||
|
||
public const _PAB = 'Balboa, Panama';
|
||
|
||
public const _PYG = 'Guarani, Paraguay';
|
||
|
||
public const _PEN = 'Nuevos Soles, Peru';
|
||
|
||
public const _PHP = 'Pesos, Philippines';
|
||
|
||
public const _PLN = 'Zlotych, Poland';
|
||
|
||
public const _QAR = 'Rials, Qatar';
|
||
|
||
public const _RON = 'New Lei, Romania';
|
||
|
||
public const _RUB = 'Rubles, Russia';
|
||
|
||
public const _SHP = 'Pounds, Saint Helena';
|
||
|
||
public const _SAR = 'Riyals, Saudi Arabia';
|
||
|
||
public const _RSD = 'Dinars, Serbia';
|
||
|
||
public const _SCR = 'Rupees, Seychelles';
|
||
|
||
public const _SGD = 'Dollars, Singapore';
|
||
|
||
public const _SBD = 'Dollars, Solomon Islands';
|
||
|
||
public const _SOS = 'Shillings, Somalia';
|
||
|
||
public const _ZAR = 'Rand, South Africa';
|
||
|
||
public const _KRW = 'Won, South Korea';
|
||
|
||
public const _LKR = 'Rupees, Sri Lanka';
|
||
|
||
public const _SEK = 'Kronor, Sweden';
|
||
|
||
public const _CHF = 'Francs, Switzerland';
|
||
|
||
public const _SRD = 'Dollars, Suriname';
|
||
|
||
public const _SYP = 'Pounds, Syria';
|
||
|
||
public const _TWD = 'New Dollars, Taiwan';
|
||
|
||
public const _THB = 'Baht, Thailand';
|
||
|
||
public const _TTD = 'Dollars, Trinidad and Tobago';
|
||
|
||
public const _TRY = 'Lira, Turkey';
|
||
|
||
public const _TRL = 'Liras, Turkey';
|
||
|
||
public const _TVD = 'Dollars, Tuvalu';
|
||
|
||
public const _UAH = 'Hryvnia, Ukraine';
|
||
|
||
public const _GBP = 'Pounds, United Kingdom';
|
||
|
||
public const _USD = 'Dollars, United States of America';
|
||
|
||
public const _UYU = 'Pesos, Uruguay';
|
||
|
||
public const _UZS = 'Sums, Uzbekistan';
|
||
|
||
public const _VEF = 'Bolivares Fuertes, Venezuela';
|
||
|
||
public const _VND = 'Dong, Vietnam';
|
||
|
||
public const _YER = 'Rials, Yemen';
|
||
|
||
public const _ZWD = 'Zimbabwe Dollars, Zimbabwe';
|
||
|
||
public const _ZMK = 'Kwacha, Zambian';
|
||
|
||
public const _ZWL = 'Dollar, Zimbabwean';
|
||
|
||
public const _BDT = 'Taka, Bangladeshi';
|
||
|
||
public const _BHD = 'Dinar, Bahraini';
|
||
|
||
public const _BIF = 'Franc, Burundian';
|
||
|
||
public const _BOV = 'Mvdol, Bolivian';
|
||
|
||
public const _BTN = 'Bhutanes,e Ngultrum';
|
||
|
||
public const _CDF = 'Franc, Congolese';
|
||
|
||
public const _CHE = 'WIR Euro (complementary currency)';
|
||
|
||
public const _CHW = 'WIR Franc (complementary currency)';
|
||
|
||
public const _CLF = 'Unidad de Fomento (funds code)';
|
||
|
||
public const _COU = 'Unidad de Valor Real (UVR) (funds code)';
|
||
|
||
public const _CUC = 'Peso, Cuban convertible';
|
||
|
||
public const _CVE = 'Escudo, Cape Verdean';
|
||
|
||
public const _DJF = 'Franc, Djiboutian';
|
||
|
||
public const _DZD = 'Dinar, Algerian';
|
||
|
||
public const _ERN = 'Nakfa, Eritrean';
|
||
|
||
public const _ETB = 'Birr, Ethiopian';
|
||
|
||
public const _GEL = 'Lari, Georgian';
|
||
|
||
public const _GHS = 'Cedi, Ghanaian';
|
||
|
||
public const _GMD = 'Dalasi, Gambian';
|
||
|
||
public const _GNF = 'Franc, Guinean';
|
||
|
||
public const _HTG = 'Gourde, Haitian';
|
||
|
||
public const _IQD = 'Dinar, Iraqi';
|
||
|
||
public const _JOD = 'Dinar, Jordanian';
|
||
|
||
public const _KMF = 'Franc, Comorian';
|
||
|
||
public const _KWD = 'Dinar, Kuwaiti';
|
||
|
||
public const _LSL = 'Loti, Lesotho';
|
||
|
||
public const _LYD = 'Dinar, Libyan';
|
||
|
||
public const _MAD = 'Dirham, Moroccan';
|
||
|
||
public const _MDL = 'Leu, Moldovan';
|
||
|
||
public const _MGA = 'Ariary, Malagasy';
|
||
|
||
public const _MMK = 'Kyat, Burmese';
|
||
|
||
public const _MOP = 'Pataca, Macanese';
|
||
|
||
public const _MRO = 'Ouguiya, Mauritanian';
|
||
|
||
public const _MVR = 'Rufiyaa, Maldivian';
|
||
|
||
public const _MWK = 'Kwacha, Malawian';
|
||
|
||
public const _MXV = 'Investment Unit, Mexican';
|
||
|
||
public const _PGK = 'Kina, Papua New Guinean';
|
||
|
||
public const _RWF = 'Franc, Rwandan';
|
||
|
||
public const _SDG = 'Pound, Sudanese';
|
||
|
||
public const _SLL = 'Leone, Sierra Leonean';
|
||
|
||
public const _SSP = 'Pound, South Sudanese';
|
||
|
||
public const _STD = 'Dobra, São Tomé and Príncipe';
|
||
|
||
public const _SZL = 'Lilangeni, Swazi';
|
||
|
||
public const _TJS = 'Somoni, Tajikistani';
|
||
|
||
public const _TMT = 'Manat, Turkmenistani';
|
||
|
||
public const _TND = 'Dinar, Tunisian';
|
||
|
||
public const _TOP = 'Paʻanga, Tongan';
|
||
|
||
public const _TZS = 'Shilling, Tanzanian';
|
||
|
||
public const _UGX = 'Shilling, Ugandan';
|
||
|
||
public const _USN = 'United States dollar (next day) (funds code)';
|
||
|
||
public const _USS = 'United States dollar (same day) (funds code)';
|
||
|
||
public const _UYI = 'Uruguay Peso en Unidades Indexadas (URUIURUI) (funds code)';
|
||
|
||
public const _VUV = 'Vatu, Vanuatu';
|
||
|
||
public const _WST = 'Tala, Samoan';
|
||
|
||
public const _XAF = 'CFA Franc, Central African';
|
||
|
||
public const _XAG = 'Silver (one troy ounce)';
|
||
|
||
public const _XAU = 'Gold (one troy ounce)';
|
||
|
||
public const _XBA = 'Composite Unit (EURCO) (bond market unit), European';
|
||
|
||
public const _XBB = 'Monetary Unit (E.M.U.-6) (bond market unit), European';
|
||
|
||
public const _XBC = 'Unit of Account 9 (E.U.A.-9) (bond market unit), European';
|
||
|
||
public const _XBD = 'Unit of Account 17 (E.U.A.-17) (bond market unit), European';
|
||
|
||
public const _XDR = 'Special drawing rights';
|
||
|
||
public const _XFU = 'UIC franc (special settlement currency)';
|
||
|
||
public const _XOF = 'CFA franc, West African';
|
||
|
||
public const _XPD = 'Palladium';
|
||
|
||
public const _XPF = 'CFP franc';
|
||
|
||
public const _XPT = 'Platinum';
|
||
|
||
public const _XSU = 'Sucre';
|
||
|
||
public const _XTS = 'Testing Currency Code';
|
||
|
||
public const _XUA = 'ADB Unit of Account';
|
||
|
||
public const _ZMW = 'kwacha, Zambian';
|
||
|
||
use ISO4217Trait;
|
||
}
|