1// © 2016 and later: Unicode, Inc. and others. 2// License & terms of use: http://www.unicode.org/copyright.html#License 3kok{ 4 Currencies{ 5 BRL{ 6 "R$", 7 "BRL", 8 } 9 CNY{ 10 "CN¥", 11 "CNY", 12 } 13 EUR{ 14 "€", 15 "EUR", 16 } 17 GBP{ 18 "£", 19 "GBP", 20 } 21 INR{ 22 "₹", 23 "INR", 24 } 25 JPY{ 26 "JP¥", 27 "JPY", 28 } 29 RUB{ 30 "RUB", 31 "RUB", 32 } 33 USD{ 34 "US$", 35 "USD", 36 } 37 XXX{ 38 "¤", 39 "XXX", 40 } 41 } 42 Currencies%narrow{ 43 BRL{"R$"} 44 CNY{"¥"} 45 EUR{"€"} 46 GBP{"£"} 47 INR{"₹"} 48 JPY{"¥"} 49 RUB{"₽"} 50 USD{"$"} 51 } 52 CurrencyPlurals{ 53 BRL{ 54 other{"BRL"} 55 } 56 CNY{ 57 other{"CNY"} 58 } 59 EUR{ 60 other{"EUR"} 61 } 62 GBP{ 63 other{"GBP"} 64 } 65 INR{ 66 other{"INR"} 67 } 68 JPY{ 69 other{"JPY"} 70 } 71 RUB{ 72 other{"RUB"} 73 } 74 USD{ 75 other{"USD"} 76 } 77 XXX{ 78 other{"XXX"} 79 } 80 } 81 CurrencyUnitPatterns{ 82 other{"{0} {1}"} 83 } 84 Version{"2.1.44.88"} 85} 86