1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
<?php
$languageNames = [
'ace' => 'achenés',
'ady' => 'adigeo',
'alt' => 'altái del sur',
'arp' => 'arapajó',
'ars' => 'árabe de Néyed',
'bla' => 'siksiká',
'eu' => 'vasco',
'fon' => 'fon',
'goh' => 'alemán de la alta edad antigua',
'grc' => 'griego clásico',
'gu' => 'gujarati',
'ht' => 'haitiano',
'kbd' => 'cabardiano',
'krc' => 'karachái-bálkaro',
'lo' => 'laosiano',
'luo' => 'luo',
'nr' => 'ndebele del sur',
'nso' => 'sesotho del norte',
'prg' => 'prusiano antiguo',
'rm' => 'retorrománico',
'shu' => 'árabe (Chad)',
'sma' => 'sami del sur',
'st' => 'sesotho del sur',
'sw' => 'swahili',
'sw-cd' => 'swahili (Congo)',
'syr' => 'siríaco',
'tet' => 'tetun',
'tyv' => 'tuvano',
'tzm' => 'tamazight del Marruecos Central',
'vai' => 'vai',
'wal' => 'walamo',
'wuu' => 'wu',
'xal' => 'calmuco',
'zun' => 'zuni',
];
$currencyNames = [
'AMD' => 'dram armenio',
'BGN' => 'lev búlgaro',
'ERN' => 'nafka',
'LVL' => 'lats letón',
'MYR' => 'ringgit malayo',
'THB' => 'baht tailandes',
'UZS' => 'som uzbeko',
'VEF' => 'bolívar venezolano',
'VES' => 'VES',
'XAF' => 'franco CFA BEAC',
'XOF' => 'franco CFA BCEAO',
'XXX' => '(unidad de moneda desconocida)',
'ZMW' => 'kuacha zambiano',
];
$currencySymbols = [
'THB' => 'THB',
'VEF' => 'BsF',
];
$countryNames = [
'AC' => 'Isla Ascensión',
'BA' => 'Bosnia-Herzegovina',
'CG' => 'República del Congo',
'CI' => 'Costa de Marfil',
'EZ' => 'Eurozona',
'GB' => 'R. U.',
'GG' => 'Guernesey',
'IC' => 'Islas Canarias',
'QO' => 'Islas Ultramarinas',
'TA' => 'Tristán da Cunha',
'TL' => 'Timor Oriental',
'UM' => 'Islas Ultramarinas de EE.UU.',
'VI' => 'Islas Vírgenes de los Estados Unidos',
];
$timeUnits = [
'fri-future-one' => 'dentro de {0} viernes',
'fri-future-other' => 'en {0} viernes',
'fri-narrow-past-one' => 'hace {0} viernes',
'fri-narrow-past-other' => 'hace {0} viernes',
'fri-short-future-one' => 'dentro de {0} vie.',
'fri-short-future-other' => 'en {0} vie.',
'fri-short-past-one' => 'hace {0} viernes',
'fri-short-past-other' => 'hace {0} viernes',
'mon-future-one' => 'en {0} lunes',
'mon-future-other' => 'en {0} lunes',
'mon-narrow-future-one' => 'en {0} lunes',
'mon-narrow-future-other' => 'en {0} lunes',
'mon-narrow-past-one' => 'hace {0} lunes',
'mon-narrow-past-other' => 'hace {0} lunes',
'mon-short-future-one' => 'en {0} lun.',
'mon-short-future-other' => 'dentro de {0} lun.',
'mon-short-past-one' => 'hace {0} lunes',
'mon-short-past-other' => 'hace {0} lunes',
'sat-future-one' => 'en {0} sábado',
'sat-future-other' => 'en {0} sábados',
'sat-narrow-future-one' => 'en {0} SA',
'sat-narrow-future-other' => 'dentro de {0} SA',
'sat-narrow-past-one' => 'hace {0} sábados',
'sat-narrow-past-other' => 'hace {0} sábados',
'sun-future-one' => 'en {0} domingo',
'sun-future-other' => 'en {0} domingos',
'sun-narrow-future-one' => 'dentro de {0} DO',
'sun-narrow-future-other' => 'en {0} DO',
'sun-narrow-past-one' => 'hace {0} domingo',
'sun-narrow-past-other' => 'hace {0} domingos',
'thu-future-one' => 'en {0} jueves',
'thu-future-other' => 'dentro de {0} jueves',
'thu-narrow-future-one' => 'dentro de {0} JU',
'thu-narrow-future-other' => 'en {0} JU',
'tue-future-one' => 'dentro de {0} martes',
'tue-future-other' => 'en {0} martes',
'wed-future-one' => 'en {0} miércoles',
'wed-future-other' => 'dentro de {0} miércoles',
'wed-narrow-future-one' => 'en {0} MI',
'wed-narrow-future-other' => 'en {0} MI',
'wed-narrow-past-one' => 'hace {0} miércoles',
'wed-narrow-past-other' => 'hace {0} miércoles',
'wed-short-future-one' => 'en {0} mié.',
'wed-short-future-other' => 'en {0} mié.',
'wed-short-past-one' => 'hace {0} miércoles',
'wed-short-past-other' => 'hace {0} miércoles',
];
|