line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
=encoding utf8 |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
=head1 NAME |
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
Locale::CLDR::Locales::Rm - Package for language Romansh |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
=cut |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
package Locale::CLDR::Locales::Rm; |
10
|
|
|
|
|
|
|
# This file auto generated from Data\common\main\rm.xml |
11
|
|
|
|
|
|
|
# on Fri 13 Oct 9:34:40 am GMT |
12
|
|
|
|
|
|
|
|
13
|
1
|
|
|
1
|
|
947772
|
use strict; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
27
|
|
14
|
1
|
|
|
1
|
|
5
|
use warnings; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
22
|
|
15
|
1
|
|
|
1
|
|
4
|
use version; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
7
|
|
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
our $VERSION = version->declare('v0.34.2'); |
18
|
|
|
|
|
|
|
|
19
|
1
|
|
|
1
|
|
90
|
use v5.10.1; |
|
1
|
|
|
|
|
4
|
|
20
|
1
|
|
|
1
|
|
6
|
use mro 'c3'; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
7
|
|
21
|
1
|
|
|
1
|
|
21
|
use utf8; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
6
|
|
22
|
1
|
|
|
1
|
|
40
|
use if $^V ge v5.12.0, feature => 'unicode_strings'; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
15
|
|
23
|
1
|
|
|
1
|
|
121
|
use Types::Standard qw( Str Int HashRef ArrayRef CodeRef RegexpRef ); |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
9
|
|
24
|
1
|
|
|
1
|
|
960
|
use Moo; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
5
|
|
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
extends('Locale::CLDR::Locales::Root'); |
27
|
|
|
|
|
|
|
# Need to add code for Key type pattern |
28
|
|
|
|
|
|
|
sub display_name_pattern { |
29
|
0
|
|
|
0
|
0
|
|
my ($self, $name, $region, $script, $variant) = @_; |
30
|
|
|
|
|
|
|
|
31
|
0
|
|
|
|
|
|
my $display_pattern = '{0} ({1})'; |
32
|
0
|
|
|
|
|
|
$display_pattern =~s/\{0\}/$name/g; |
33
|
0
|
|
|
|
|
|
my $subtags = join '{0}, {1}', grep {$_} ( |
|
0
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
$region, |
35
|
|
|
|
|
|
|
$script, |
36
|
|
|
|
|
|
|
$variant, |
37
|
|
|
|
|
|
|
); |
38
|
|
|
|
|
|
|
|
39
|
0
|
|
|
|
|
|
$display_pattern =~s/\{1\}/$subtags/g; |
40
|
0
|
|
|
|
|
|
return $display_pattern; |
41
|
|
|
|
|
|
|
} |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
has 'display_name_language' => ( |
44
|
|
|
|
|
|
|
is => 'ro', |
45
|
|
|
|
|
|
|
isa => CodeRef, |
46
|
|
|
|
|
|
|
init_arg => undef, |
47
|
|
|
|
|
|
|
default => sub { |
48
|
|
|
|
|
|
|
sub { |
49
|
|
|
|
|
|
|
my %languages = ( |
50
|
|
|
|
|
|
|
'aa' => 'afar', |
51
|
|
|
|
|
|
|
'ab' => 'abchasian', |
52
|
|
|
|
|
|
|
'ace' => 'aceh', |
53
|
|
|
|
|
|
|
'ach' => 'acoli', |
54
|
|
|
|
|
|
|
'ada' => 'andangme', |
55
|
|
|
|
|
|
|
'ady' => 'adygai', |
56
|
|
|
|
|
|
|
'ae' => 'avestic', |
57
|
|
|
|
|
|
|
'af' => 'afrikaans', |
58
|
|
|
|
|
|
|
'afh' => 'afrihili', |
59
|
|
|
|
|
|
|
'ain' => 'ainu', |
60
|
|
|
|
|
|
|
'ak' => 'akan', |
61
|
|
|
|
|
|
|
'akk' => 'accadic', |
62
|
|
|
|
|
|
|
'ale' => 'aleutic', |
63
|
|
|
|
|
|
|
'alt' => 'altaic dal sid', |
64
|
|
|
|
|
|
|
'am' => 'amaric', |
65
|
|
|
|
|
|
|
'an' => 'aragonais', |
66
|
|
|
|
|
|
|
'ang' => 'englais vegl', |
67
|
|
|
|
|
|
|
'anp' => 'angika', |
68
|
|
|
|
|
|
|
'ar' => 'arab', |
69
|
|
|
|
|
|
|
'arc' => 'arameic', |
70
|
|
|
|
|
|
|
'arn' => 'araucanic', |
71
|
|
|
|
|
|
|
'arp' => 'arapaho', |
72
|
|
|
|
|
|
|
'arw' => 'arawak', |
73
|
|
|
|
|
|
|
'as' => 'assami', |
74
|
|
|
|
|
|
|
'ast' => 'asturian', |
75
|
|
|
|
|
|
|
'av' => 'avaric', |
76
|
|
|
|
|
|
|
'awa' => 'awadhi', |
77
|
|
|
|
|
|
|
'ay' => 'aymara', |
78
|
|
|
|
|
|
|
'az' => 'aserbeidschanic', |
79
|
|
|
|
|
|
|
'ba' => 'baschkir', |
80
|
|
|
|
|
|
|
'bal' => 'belutschi', |
81
|
|
|
|
|
|
|
'ban' => 'balinais', |
82
|
|
|
|
|
|
|
'bas' => 'basaa', |
83
|
|
|
|
|
|
|
'be' => 'bieloruss', |
84
|
|
|
|
|
|
|
'bej' => 'bedscha', |
85
|
|
|
|
|
|
|
'bem' => 'bemba', |
86
|
|
|
|
|
|
|
'bg' => 'bulgar', |
87
|
|
|
|
|
|
|
'bho' => 'bhojpuri', |
88
|
|
|
|
|
|
|
'bi' => 'bislama', |
89
|
|
|
|
|
|
|
'bik' => 'bikol', |
90
|
|
|
|
|
|
|
'bin' => 'bini', |
91
|
|
|
|
|
|
|
'bla' => 'siksika', |
92
|
|
|
|
|
|
|
'bm' => 'bambara', |
93
|
|
|
|
|
|
|
'bn' => 'bengal', |
94
|
|
|
|
|
|
|
'bo' => 'tibetan', |
95
|
|
|
|
|
|
|
'br' => 'breton', |
96
|
|
|
|
|
|
|
'bra' => 'braj', |
97
|
|
|
|
|
|
|
'bs' => 'bosniac', |
98
|
|
|
|
|
|
|
'bua' => 'buriat', |
99
|
|
|
|
|
|
|
'bug' => 'bugi', |
100
|
|
|
|
|
|
|
'byn' => 'blin', |
101
|
|
|
|
|
|
|
'ca' => 'catalan', |
102
|
|
|
|
|
|
|
'cad' => 'caddo', |
103
|
|
|
|
|
|
|
'car' => 'caribic', |
104
|
|
|
|
|
|
|
'cch' => 'atsam', |
105
|
|
|
|
|
|
|
'ce' => 'tschetschen', |
106
|
|
|
|
|
|
|
'ceb' => 'cebuano', |
107
|
|
|
|
|
|
|
'ch' => 'chamorro', |
108
|
|
|
|
|
|
|
'chb' => 'chibcha', |
109
|
|
|
|
|
|
|
'chg' => 'tschagataic', |
110
|
|
|
|
|
|
|
'chk' => 'chuukais', |
111
|
|
|
|
|
|
|
'chm' => 'mari', |
112
|
|
|
|
|
|
|
'chn' => 'patuà chinook', |
113
|
|
|
|
|
|
|
'cho' => 'choctaw', |
114
|
|
|
|
|
|
|
'chp' => 'chipewyan', |
115
|
|
|
|
|
|
|
'chr' => 'cherokee', |
116
|
|
|
|
|
|
|
'chy' => 'cheyenne', |
117
|
|
|
|
|
|
|
'co' => 'cors', |
118
|
|
|
|
|
|
|
'cop' => 'coptic', |
119
|
|
|
|
|
|
|
'cr' => 'cree', |
120
|
|
|
|
|
|
|
'crh' => 'tirc crimean', |
121
|
|
|
|
|
|
|
'cs' => 'tschec', |
122
|
|
|
|
|
|
|
'csb' => 'kaschubic', |
123
|
|
|
|
|
|
|
'cu' => 'slav da baselgia', |
124
|
|
|
|
|
|
|
'cv' => 'tschuvasch', |
125
|
|
|
|
|
|
|
'cy' => 'kimric', |
126
|
|
|
|
|
|
|
'da' => 'danais', |
127
|
|
|
|
|
|
|
'dak' => 'dakota', |
128
|
|
|
|
|
|
|
'dar' => 'dargwa', |
129
|
|
|
|
|
|
|
'de' => 'tudestg', |
130
|
|
|
|
|
|
|
'de_AT' => 'tudestg austriac', |
131
|
|
|
|
|
|
|
'del' => 'delaware', |
132
|
|
|
|
|
|
|
'den' => 'slavey', |
133
|
|
|
|
|
|
|
'dgr' => 'dogrib', |
134
|
|
|
|
|
|
|
'din' => 'dinka', |
135
|
|
|
|
|
|
|
'doi' => 'dogri', |
136
|
|
|
|
|
|
|
'dsb' => 'bass sorb', |
137
|
|
|
|
|
|
|
'dua' => 'duala', |
138
|
|
|
|
|
|
|
'dum' => 'ollandais mesaun', |
139
|
|
|
|
|
|
|
'dv' => 'maledivic', |
140
|
|
|
|
|
|
|
'dyu' => 'diula', |
141
|
|
|
|
|
|
|
'dz' => 'dzongkha', |
142
|
|
|
|
|
|
|
'ee' => 'ewe', |
143
|
|
|
|
|
|
|
'efi' => 'efik', |
144
|
|
|
|
|
|
|
'egy' => 'egipzian vegl', |
145
|
|
|
|
|
|
|
'eka' => 'ekajuk', |
146
|
|
|
|
|
|
|
'el' => 'grec', |
147
|
|
|
|
|
|
|
'elx' => 'elamitic', |
148
|
|
|
|
|
|
|
'en' => 'englais', |
149
|
|
|
|
|
|
|
'en_AU' => 'englais australian', |
150
|
|
|
|
|
|
|
'en_CA' => 'englais canadais', |
151
|
|
|
|
|
|
|
'en_GB' => 'englais britannic', |
152
|
|
|
|
|
|
|
'en_GB@alt=short' => 'englais (GB)', |
153
|
|
|
|
|
|
|
'en_US' => 'englais american', |
154
|
|
|
|
|
|
|
'en_US@alt=short' => 'englais (US)', |
155
|
|
|
|
|
|
|
'enm' => 'englais mesaun', |
156
|
|
|
|
|
|
|
'eo' => 'esperanto', |
157
|
|
|
|
|
|
|
'es' => 'spagnol', |
158
|
|
|
|
|
|
|
'es_419' => 'spagnol latinamerican', |
159
|
|
|
|
|
|
|
'es_ES' => 'spagnol iberic', |
160
|
|
|
|
|
|
|
'es_MX' => 'spagnol mexican', |
161
|
|
|
|
|
|
|
'et' => 'eston', |
162
|
|
|
|
|
|
|
'eu' => 'basc', |
163
|
|
|
|
|
|
|
'ewo' => 'ewondo', |
164
|
|
|
|
|
|
|
'fa' => 'persian', |
165
|
|
|
|
|
|
|
'fan' => 'fang', |
166
|
|
|
|
|
|
|
'fat' => 'fanti', |
167
|
|
|
|
|
|
|
'ff' => 'fulah', |
168
|
|
|
|
|
|
|
'fi' => 'finlandais', |
169
|
|
|
|
|
|
|
'fil' => 'filippino', |
170
|
|
|
|
|
|
|
'fj' => 'fidschian', |
171
|
|
|
|
|
|
|
'fo' => 'ferrais', |
172
|
|
|
|
|
|
|
'fon' => 'fon', |
173
|
|
|
|
|
|
|
'fr' => 'franzos', |
174
|
|
|
|
|
|
|
'fr_CA' => 'franzos canadais', |
175
|
|
|
|
|
|
|
'fr_CH' => 'franzos svizzer', |
176
|
|
|
|
|
|
|
'frm' => 'franzos mesaun', |
177
|
|
|
|
|
|
|
'fro' => 'franzos vegl', |
178
|
|
|
|
|
|
|
'frr' => 'fris dal nord', |
179
|
|
|
|
|
|
|
'frs' => 'fris da l’ost', |
180
|
|
|
|
|
|
|
'fur' => 'friulan', |
181
|
|
|
|
|
|
|
'fy' => 'fris', |
182
|
|
|
|
|
|
|
'ga' => 'irlandais', |
183
|
|
|
|
|
|
|
'gaa' => 'ga', |
184
|
|
|
|
|
|
|
'gay' => 'gayo', |
185
|
|
|
|
|
|
|
'gba' => 'gbaya', |
186
|
|
|
|
|
|
|
'gd' => 'gaelic scot', |
187
|
|
|
|
|
|
|
'gez' => 'geez', |
188
|
|
|
|
|
|
|
'gil' => 'gilbertais', |
189
|
|
|
|
|
|
|
'gl' => 'galician', |
190
|
|
|
|
|
|
|
'gmh' => 'tudestg mesaun', |
191
|
|
|
|
|
|
|
'gn' => 'guarani', |
192
|
|
|
|
|
|
|
'goh' => 'vegl tudestg da scrittira', |
193
|
|
|
|
|
|
|
'gon' => 'gondi', |
194
|
|
|
|
|
|
|
'gor' => 'gorontalo', |
195
|
|
|
|
|
|
|
'got' => 'gotic', |
196
|
|
|
|
|
|
|
'grb' => 'grebo', |
197
|
|
|
|
|
|
|
'grc' => 'grec vegl', |
198
|
|
|
|
|
|
|
'gsw' => 'tudestg svizzer', |
199
|
|
|
|
|
|
|
'gu' => 'gujarati', |
200
|
|
|
|
|
|
|
'gv' => 'manx', |
201
|
|
|
|
|
|
|
'gwi' => 'gwichʼin', |
202
|
|
|
|
|
|
|
'ha' => 'haussa', |
203
|
|
|
|
|
|
|
'hai' => 'haida', |
204
|
|
|
|
|
|
|
'haw' => 'hawaian', |
205
|
|
|
|
|
|
|
'he' => 'ebraic', |
206
|
|
|
|
|
|
|
'hi' => 'hindi', |
207
|
|
|
|
|
|
|
'hil' => 'hiligaynon', |
208
|
|
|
|
|
|
|
'hit' => 'ettitic', |
209
|
|
|
|
|
|
|
'hmn' => 'hmong', |
210
|
|
|
|
|
|
|
'ho' => 'hiri motu', |
211
|
|
|
|
|
|
|
'hr' => 'croat', |
212
|
|
|
|
|
|
|
'hsb' => 'aut sorb', |
213
|
|
|
|
|
|
|
'ht' => 'haitian', |
214
|
|
|
|
|
|
|
'hu' => 'ungarais', |
215
|
|
|
|
|
|
|
'hup' => 'hupa', |
216
|
|
|
|
|
|
|
'hy' => 'armen', |
217
|
|
|
|
|
|
|
'hz' => 'herero', |
218
|
|
|
|
|
|
|
'ia' => 'interlingua', |
219
|
|
|
|
|
|
|
'iba' => 'iban', |
220
|
|
|
|
|
|
|
'id' => 'indonais', |
221
|
|
|
|
|
|
|
'ie' => 'interlingue', |
222
|
|
|
|
|
|
|
'ig' => 'igbo', |
223
|
|
|
|
|
|
|
'ii' => 'sichuan yi', |
224
|
|
|
|
|
|
|
'ik' => 'inupiak', |
225
|
|
|
|
|
|
|
'ilo' => 'ilocano', |
226
|
|
|
|
|
|
|
'inh' => 'ingush', |
227
|
|
|
|
|
|
|
'io' => 'ido', |
228
|
|
|
|
|
|
|
'is' => 'islandais', |
229
|
|
|
|
|
|
|
'it' => 'talian', |
230
|
|
|
|
|
|
|
'iu' => 'inuktitut', |
231
|
|
|
|
|
|
|
'ja' => 'giapunais', |
232
|
|
|
|
|
|
|
'jbo' => 'lojban', |
233
|
|
|
|
|
|
|
'jpr' => 'giudaic-persian', |
234
|
|
|
|
|
|
|
'jrb' => 'giudaic-arab', |
235
|
|
|
|
|
|
|
'jv' => 'javanais', |
236
|
|
|
|
|
|
|
'ka' => 'georgian', |
237
|
|
|
|
|
|
|
'kaa' => 'karakalpak', |
238
|
|
|
|
|
|
|
'kab' => 'kabyle', |
239
|
|
|
|
|
|
|
'kac' => 'kachin', |
240
|
|
|
|
|
|
|
'kaj' => 'jju', |
241
|
|
|
|
|
|
|
'kam' => 'kamba', |
242
|
|
|
|
|
|
|
'kaw' => 'kawi', |
243
|
|
|
|
|
|
|
'kbd' => 'kabardic', |
244
|
|
|
|
|
|
|
'kcg' => 'tyap', |
245
|
|
|
|
|
|
|
'kfo' => 'koro', |
246
|
|
|
|
|
|
|
'kg' => 'kongo', |
247
|
|
|
|
|
|
|
'kha' => 'khasi', |
248
|
|
|
|
|
|
|
'kho' => 'khotanais', |
249
|
|
|
|
|
|
|
'ki' => 'kikuyu', |
250
|
|
|
|
|
|
|
'kj' => 'kuanyama', |
251
|
|
|
|
|
|
|
'kk' => 'casac', |
252
|
|
|
|
|
|
|
'kl' => 'grönlandais', |
253
|
|
|
|
|
|
|
'km' => 'cambodschan', |
254
|
|
|
|
|
|
|
'kmb' => 'kimbundu', |
255
|
|
|
|
|
|
|
'kn' => 'kannada', |
256
|
|
|
|
|
|
|
'ko' => 'corean', |
257
|
|
|
|
|
|
|
'kok' => 'konkani', |
258
|
|
|
|
|
|
|
'kos' => 'kosraean', |
259
|
|
|
|
|
|
|
'kpe' => 'kpelle', |
260
|
|
|
|
|
|
|
'kr' => 'kanuri', |
261
|
|
|
|
|
|
|
'krc' => 'karachay-balkar', |
262
|
|
|
|
|
|
|
'krl' => 'carelian', |
263
|
|
|
|
|
|
|
'kru' => 'kurukh', |
264
|
|
|
|
|
|
|
'ks' => 'kashmiri', |
265
|
|
|
|
|
|
|
'ku' => 'curd', |
266
|
|
|
|
|
|
|
'kum' => 'kumuk', |
267
|
|
|
|
|
|
|
'kut' => 'kutenai', |
268
|
|
|
|
|
|
|
'kv' => 'komi', |
269
|
|
|
|
|
|
|
'kw' => 'cornic', |
270
|
|
|
|
|
|
|
'ky' => 'kirghis', |
271
|
|
|
|
|
|
|
'la' => 'latin', |
272
|
|
|
|
|
|
|
'lad' => 'ladino', |
273
|
|
|
|
|
|
|
'lah' => 'lahnda', |
274
|
|
|
|
|
|
|
'lam' => 'lamba', |
275
|
|
|
|
|
|
|
'lb' => 'luxemburgais', |
276
|
|
|
|
|
|
|
'lez' => 'lezghian', |
277
|
|
|
|
|
|
|
'lg' => 'ganda', |
278
|
|
|
|
|
|
|
'li' => 'limburgais', |
279
|
|
|
|
|
|
|
'ln' => 'lingala', |
280
|
|
|
|
|
|
|
'lo' => 'laot', |
281
|
|
|
|
|
|
|
'lol' => 'lomongo', |
282
|
|
|
|
|
|
|
'loz' => 'lozi', |
283
|
|
|
|
|
|
|
'lt' => 'lituan', |
284
|
|
|
|
|
|
|
'lu' => 'luba-katanga', |
285
|
|
|
|
|
|
|
'lua' => 'luba-lulua', |
286
|
|
|
|
|
|
|
'lui' => 'luiseno', |
287
|
|
|
|
|
|
|
'lun' => 'lunda', |
288
|
|
|
|
|
|
|
'luo' => 'luo', |
289
|
|
|
|
|
|
|
'lus' => 'lushai', |
290
|
|
|
|
|
|
|
'lv' => 'letton', |
291
|
|
|
|
|
|
|
'mad' => 'madurais', |
292
|
|
|
|
|
|
|
'mag' => 'magahi', |
293
|
|
|
|
|
|
|
'mai' => 'maithili', |
294
|
|
|
|
|
|
|
'mak' => 'makassar', |
295
|
|
|
|
|
|
|
'man' => 'mandingo', |
296
|
|
|
|
|
|
|
'mas' => 'masai', |
297
|
|
|
|
|
|
|
'mdf' => 'moksha', |
298
|
|
|
|
|
|
|
'mdr' => 'mandar', |
299
|
|
|
|
|
|
|
'men' => 'mende', |
300
|
|
|
|
|
|
|
'mg' => 'malagassi', |
301
|
|
|
|
|
|
|
'mga' => 'irlandais mesaun', |
302
|
|
|
|
|
|
|
'mh' => 'marschallais', |
303
|
|
|
|
|
|
|
'mi' => 'maori', |
304
|
|
|
|
|
|
|
'mic' => 'micmac', |
305
|
|
|
|
|
|
|
'min' => 'minangkabau', |
306
|
|
|
|
|
|
|
'mk' => 'macedon', |
307
|
|
|
|
|
|
|
'ml' => 'malayalam', |
308
|
|
|
|
|
|
|
'mn' => 'mongolic', |
309
|
|
|
|
|
|
|
'mnc' => 'manchu', |
310
|
|
|
|
|
|
|
'mni' => 'manipuri', |
311
|
|
|
|
|
|
|
'moh' => 'mohawk', |
312
|
|
|
|
|
|
|
'mos' => 'mossi', |
313
|
|
|
|
|
|
|
'mr' => 'marathi', |
314
|
|
|
|
|
|
|
'ms' => 'malaic', |
315
|
|
|
|
|
|
|
'mt' => 'maltais', |
316
|
|
|
|
|
|
|
'mul' => 'pluriling', |
317
|
|
|
|
|
|
|
'mus' => 'creek', |
318
|
|
|
|
|
|
|
'mwl' => 'mirandais', |
319
|
|
|
|
|
|
|
'mwr' => 'marwari', |
320
|
|
|
|
|
|
|
'my' => 'birman', |
321
|
|
|
|
|
|
|
'myv' => 'erzya', |
322
|
|
|
|
|
|
|
'na' => 'nauru', |
323
|
|
|
|
|
|
|
'nap' => 'neapolitan', |
324
|
|
|
|
|
|
|
'nb' => 'norvegais bokmål', |
325
|
|
|
|
|
|
|
'nd' => 'ndebele dal nord', |
326
|
|
|
|
|
|
|
'nds' => 'bass tudestg', |
327
|
|
|
|
|
|
|
'ne' => 'nepalais', |
328
|
|
|
|
|
|
|
'new' => 'newari', |
329
|
|
|
|
|
|
|
'ng' => 'ndonga', |
330
|
|
|
|
|
|
|
'nia' => 'nias', |
331
|
|
|
|
|
|
|
'niu' => 'niue', |
332
|
|
|
|
|
|
|
'nl' => 'ollandais', |
333
|
|
|
|
|
|
|
'nl_BE' => 'flam', |
334
|
|
|
|
|
|
|
'nn' => 'norvegiais nynorsk', |
335
|
|
|
|
|
|
|
'no' => 'norvegiais', |
336
|
|
|
|
|
|
|
'nog' => 'nogai', |
337
|
|
|
|
|
|
|
'non' => 'nordic vegl', |
338
|
|
|
|
|
|
|
'nqo' => 'n’ko', |
339
|
|
|
|
|
|
|
'nr' => 'ndebele dal sid', |
340
|
|
|
|
|
|
|
'nso' => 'sotho dal nord', |
341
|
|
|
|
|
|
|
'nv' => 'navajo', |
342
|
|
|
|
|
|
|
'nwc' => 'newari classic', |
343
|
|
|
|
|
|
|
'ny' => 'nyanja', |
344
|
|
|
|
|
|
|
'nym' => 'nyamwezi', |
345
|
|
|
|
|
|
|
'nyn' => 'nyankole', |
346
|
|
|
|
|
|
|
'nyo' => 'nyoro', |
347
|
|
|
|
|
|
|
'nzi' => 'nzima', |
348
|
|
|
|
|
|
|
'oc' => 'occitan', |
349
|
|
|
|
|
|
|
'oj' => 'ojibwa', |
350
|
|
|
|
|
|
|
'om' => 'oromo', |
351
|
|
|
|
|
|
|
'or' => 'oriya', |
352
|
|
|
|
|
|
|
'os' => 'ossetic', |
353
|
|
|
|
|
|
|
'osa' => 'osage', |
354
|
|
|
|
|
|
|
'ota' => 'tirc ottoman', |
355
|
|
|
|
|
|
|
'pa' => 'punjabi', |
356
|
|
|
|
|
|
|
'pag' => 'pangasinan', |
357
|
|
|
|
|
|
|
'pal' => 'pahlavi', |
358
|
|
|
|
|
|
|
'pam' => 'pampanga', |
359
|
|
|
|
|
|
|
'pap' => 'papiamento', |
360
|
|
|
|
|
|
|
'pau' => 'palau', |
361
|
|
|
|
|
|
|
'peo' => 'persian vegl', |
362
|
|
|
|
|
|
|
'phn' => 'fenizian', |
363
|
|
|
|
|
|
|
'pi' => 'pali', |
364
|
|
|
|
|
|
|
'pl' => 'polac', |
365
|
|
|
|
|
|
|
'pon' => 'ponapean', |
366
|
|
|
|
|
|
|
'pro' => 'provenzal vegl', |
367
|
|
|
|
|
|
|
'ps' => 'paschto', |
368
|
|
|
|
|
|
|
'pt' => 'portugais', |
369
|
|
|
|
|
|
|
'pt_BR' => 'portugais brasilian', |
370
|
|
|
|
|
|
|
'pt_PT' => 'portugais iberian', |
371
|
|
|
|
|
|
|
'qu' => 'quechua', |
372
|
|
|
|
|
|
|
'raj' => 'rajasthani', |
373
|
|
|
|
|
|
|
'rap' => 'rapanui', |
374
|
|
|
|
|
|
|
'rar' => 'rarotonga', |
375
|
|
|
|
|
|
|
'rm' => 'rumantsch', |
376
|
|
|
|
|
|
|
'rn' => 'rundi', |
377
|
|
|
|
|
|
|
'ro' => 'rumen', |
378
|
|
|
|
|
|
|
'ro_MD' => 'moldav', |
379
|
|
|
|
|
|
|
'rom' => 'romani', |
380
|
|
|
|
|
|
|
'ru' => 'russ', |
381
|
|
|
|
|
|
|
'rup' => 'aromunic', |
382
|
|
|
|
|
|
|
'rw' => 'kinyarwanda', |
383
|
|
|
|
|
|
|
'sa' => 'sanscrit', |
384
|
|
|
|
|
|
|
'sad' => 'sandawe', |
385
|
|
|
|
|
|
|
'sah' => 'jakut', |
386
|
|
|
|
|
|
|
'sam' => 'arameic samaritan', |
387
|
|
|
|
|
|
|
'sas' => 'sasak', |
388
|
|
|
|
|
|
|
'sat' => 'santali', |
389
|
|
|
|
|
|
|
'sc' => 'sard', |
390
|
|
|
|
|
|
|
'scn' => 'sicilian', |
391
|
|
|
|
|
|
|
'sco' => 'scot', |
392
|
|
|
|
|
|
|
'sd' => 'sindhi', |
393
|
|
|
|
|
|
|
'se' => 'sami dal nord', |
394
|
|
|
|
|
|
|
'sel' => 'selkup', |
395
|
|
|
|
|
|
|
'sg' => 'sango', |
396
|
|
|
|
|
|
|
'sga' => 'irlandais vegl', |
397
|
|
|
|
|
|
|
'sh' => 'serbo-croat', |
398
|
|
|
|
|
|
|
'shn' => 'shan', |
399
|
|
|
|
|
|
|
'si' => 'singalais', |
400
|
|
|
|
|
|
|
'sid' => 'sidamo', |
401
|
|
|
|
|
|
|
'sk' => 'slovac', |
402
|
|
|
|
|
|
|
'sl' => 'sloven', |
403
|
|
|
|
|
|
|
'sm' => 'samoan', |
404
|
|
|
|
|
|
|
'sma' => 'sami dal sid', |
405
|
|
|
|
|
|
|
'smj' => 'sami lule', |
406
|
|
|
|
|
|
|
'smn' => 'sami inari', |
407
|
|
|
|
|
|
|
'sms' => 'sami skolt', |
408
|
|
|
|
|
|
|
'sn' => 'shona', |
409
|
|
|
|
|
|
|
'snk' => 'soninke', |
410
|
|
|
|
|
|
|
'so' => 'somali', |
411
|
|
|
|
|
|
|
'sog' => 'sogdian', |
412
|
|
|
|
|
|
|
'sq' => 'albanais', |
413
|
|
|
|
|
|
|
'sr' => 'serb', |
414
|
|
|
|
|
|
|
'srn' => 'sranan tongo', |
415
|
|
|
|
|
|
|
'srr' => 'serer', |
416
|
|
|
|
|
|
|
'ss' => 'swazi', |
417
|
|
|
|
|
|
|
'st' => 'sotho dal sid', |
418
|
|
|
|
|
|
|
'su' => 'sundanais', |
419
|
|
|
|
|
|
|
'suk' => 'sukuma', |
420
|
|
|
|
|
|
|
'sus' => 'susu', |
421
|
|
|
|
|
|
|
'sux' => 'sumeric', |
422
|
|
|
|
|
|
|
'sv' => 'svedais', |
423
|
|
|
|
|
|
|
'sw' => 'suahili', |
424
|
|
|
|
|
|
|
'syc' => 'siric classic', |
425
|
|
|
|
|
|
|
'syr' => 'siric', |
426
|
|
|
|
|
|
|
'ta' => 'tamil', |
427
|
|
|
|
|
|
|
'te' => 'telugu', |
428
|
|
|
|
|
|
|
'tem' => 'temne', |
429
|
|
|
|
|
|
|
'ter' => 'tereno', |
430
|
|
|
|
|
|
|
'tet' => 'tetum', |
431
|
|
|
|
|
|
|
'tg' => 'tadjik', |
432
|
|
|
|
|
|
|
'th' => 'tailandais', |
433
|
|
|
|
|
|
|
'ti' => 'tigrinya', |
434
|
|
|
|
|
|
|
'tig' => 'tigre', |
435
|
|
|
|
|
|
|
'tiv' => 'tiv', |
436
|
|
|
|
|
|
|
'tk' => 'turkmen', |
437
|
|
|
|
|
|
|
'tkl' => 'tokelau', |
438
|
|
|
|
|
|
|
'tl' => 'tagalog', |
439
|
|
|
|
|
|
|
'tlh' => 'klingonic', |
440
|
|
|
|
|
|
|
'tli' => 'tlingit', |
441
|
|
|
|
|
|
|
'tmh' => 'tamasheq', |
442
|
|
|
|
|
|
|
'tn' => 'tswana', |
443
|
|
|
|
|
|
|
'to' => 'tonga', |
444
|
|
|
|
|
|
|
'tog' => 'lingua tsonga', |
445
|
|
|
|
|
|
|
'tpi' => 'tok pisin', |
446
|
|
|
|
|
|
|
'tr' => 'tirc', |
447
|
|
|
|
|
|
|
'ts' => 'tsonga', |
448
|
|
|
|
|
|
|
'tsi' => 'tsimshian', |
449
|
|
|
|
|
|
|
'tt' => 'tatar', |
450
|
|
|
|
|
|
|
'tum' => 'tumbuka', |
451
|
|
|
|
|
|
|
'tvl' => 'tuvalu', |
452
|
|
|
|
|
|
|
'tw' => 'twi', |
453
|
|
|
|
|
|
|
'ty' => 'tahitian', |
454
|
|
|
|
|
|
|
'tyv' => 'tuvinian', |
455
|
|
|
|
|
|
|
'udm' => 'udmurt', |
456
|
|
|
|
|
|
|
'ug' => 'uiguric', |
457
|
|
|
|
|
|
|
'uga' => 'ugaritic', |
458
|
|
|
|
|
|
|
'uk' => 'ucranais', |
459
|
|
|
|
|
|
|
'umb' => 'mbundu', |
460
|
|
|
|
|
|
|
'und' => 'linguas betg determinadas', |
461
|
|
|
|
|
|
|
'ur' => 'urdu', |
462
|
|
|
|
|
|
|
'uz' => 'usbec', |
463
|
|
|
|
|
|
|
'vai' => 'vai', |
464
|
|
|
|
|
|
|
've' => 'venda', |
465
|
|
|
|
|
|
|
'vi' => 'vietnamais', |
466
|
|
|
|
|
|
|
'vo' => 'volapuk', |
467
|
|
|
|
|
|
|
'vot' => 'votic', |
468
|
|
|
|
|
|
|
'wa' => 'vallon', |
469
|
|
|
|
|
|
|
'wal' => 'walamo', |
470
|
|
|
|
|
|
|
'war' => 'waray', |
471
|
|
|
|
|
|
|
'was' => 'washo', |
472
|
|
|
|
|
|
|
'wo' => 'wolof', |
473
|
|
|
|
|
|
|
'xal' => 'kalmuk', |
474
|
|
|
|
|
|
|
'xh' => 'xhosa', |
475
|
|
|
|
|
|
|
'yao' => 'yao', |
476
|
|
|
|
|
|
|
'yap' => 'yapais', |
477
|
|
|
|
|
|
|
'yi' => 'jiddic', |
478
|
|
|
|
|
|
|
'yo' => 'yoruba', |
479
|
|
|
|
|
|
|
'za' => 'zhuang', |
480
|
|
|
|
|
|
|
'zap' => 'zapotec', |
481
|
|
|
|
|
|
|
'zbl' => 'simbols da Bliss', |
482
|
|
|
|
|
|
|
'zen' => 'zenaga', |
483
|
|
|
|
|
|
|
'zh' => 'chinais', |
484
|
|
|
|
|
|
|
'zh_Hans' => 'chinais simplifitgà', |
485
|
|
|
|
|
|
|
'zh_Hant' => 'chinais tradiziunal', |
486
|
|
|
|
|
|
|
'zu' => 'zulu', |
487
|
|
|
|
|
|
|
'zun' => 'zuni', |
488
|
|
|
|
|
|
|
'zxx' => 'nagins cuntegns linguistics', |
489
|
|
|
|
|
|
|
'zza' => 'zaza', |
490
|
|
|
|
|
|
|
|
491
|
|
|
|
|
|
|
); |
492
|
|
|
|
|
|
|
if (@_) { |
493
|
|
|
|
|
|
|
return $languages{$_[0]}; |
494
|
|
|
|
|
|
|
} |
495
|
|
|
|
|
|
|
return \%languages; |
496
|
|
|
|
|
|
|
} |
497
|
|
|
|
|
|
|
}, |
498
|
|
|
|
|
|
|
); |
499
|
|
|
|
|
|
|
|
500
|
|
|
|
|
|
|
has 'display_name_script' => ( |
501
|
|
|
|
|
|
|
is => 'ro', |
502
|
|
|
|
|
|
|
isa => CodeRef, |
503
|
|
|
|
|
|
|
init_arg => undef, |
504
|
|
|
|
|
|
|
default => sub { |
505
|
|
|
|
|
|
|
sub { |
506
|
|
|
|
|
|
|
my %scripts = ( |
507
|
|
|
|
|
|
|
'Arab' => 'arab', |
508
|
|
|
|
|
|
|
'Armi' => 'arameic imperial', |
509
|
|
|
|
|
|
|
'Armn' => 'armen', |
510
|
|
|
|
|
|
|
'Avst' => 'avestic', |
511
|
|
|
|
|
|
|
'Bali' => 'balinais', |
512
|
|
|
|
|
|
|
'Batk' => 'batak', |
513
|
|
|
|
|
|
|
'Beng' => 'bengal', |
514
|
|
|
|
|
|
|
'Blis' => 'simbols da Bliss', |
515
|
|
|
|
|
|
|
'Bopo' => 'bopomofo', |
516
|
|
|
|
|
|
|
'Brah' => 'brahmi', |
517
|
|
|
|
|
|
|
'Brai' => 'scrittira da Braille', |
518
|
|
|
|
|
|
|
'Bugi' => 'buginais', |
519
|
|
|
|
|
|
|
'Buhd' => 'buhid', |
520
|
|
|
|
|
|
|
'Cakm' => 'chakma', |
521
|
|
|
|
|
|
|
'Cans' => 'simbols autoctons canadais unifitgads', |
522
|
|
|
|
|
|
|
'Cari' => 'carian', |
523
|
|
|
|
|
|
|
'Cham' => 'cham', |
524
|
|
|
|
|
|
|
'Cher' => 'cherokee', |
525
|
|
|
|
|
|
|
'Cirt' => 'cirth', |
526
|
|
|
|
|
|
|
'Copt' => 'coptic', |
527
|
|
|
|
|
|
|
'Cprt' => 'cipriot', |
528
|
|
|
|
|
|
|
'Cyrl' => 'cirillic', |
529
|
|
|
|
|
|
|
'Cyrs' => 'slav da baselgia vegl', |
530
|
|
|
|
|
|
|
'Deva' => 'devanagari', |
531
|
|
|
|
|
|
|
'Dsrt' => 'deseret', |
532
|
|
|
|
|
|
|
'Egyd' => 'egipzian demotic', |
533
|
|
|
|
|
|
|
'Egyh' => 'egipzian ieratic', |
534
|
|
|
|
|
|
|
'Egyp' => 'ieroglifas egipzianas', |
535
|
|
|
|
|
|
|
'Ethi' => 'etiopic', |
536
|
|
|
|
|
|
|
'Geok' => 'kutsuri', |
537
|
|
|
|
|
|
|
'Geor' => 'georgian', |
538
|
|
|
|
|
|
|
'Glag' => 'glagolitic', |
539
|
|
|
|
|
|
|
'Goth' => 'gotic', |
540
|
|
|
|
|
|
|
'Grek' => 'grec', |
541
|
|
|
|
|
|
|
'Gujr' => 'gujarati', |
542
|
|
|
|
|
|
|
'Guru' => 'gurmukhi', |
543
|
|
|
|
|
|
|
'Hang' => 'hangul', |
544
|
|
|
|
|
|
|
'Hani' => 'han', |
545
|
|
|
|
|
|
|
'Hano' => 'hanunoo', |
546
|
|
|
|
|
|
|
'Hans' => 'scrittira chinaisa simplifitgada', |
547
|
|
|
|
|
|
|
'Hant' => 'scrittira chinaisa tradiziunala', |
548
|
|
|
|
|
|
|
'Hebr' => 'ebraic', |
549
|
|
|
|
|
|
|
'Hira' => 'hiragana', |
550
|
|
|
|
|
|
|
'Hmng' => 'pahawn hmong', |
551
|
|
|
|
|
|
|
'Hrkt' => 'katanaka u hiragana', |
552
|
|
|
|
|
|
|
'Hung' => 'ungarais vegl', |
553
|
|
|
|
|
|
|
'Inds' => 'indus', |
554
|
|
|
|
|
|
|
'Ital' => 'italic vegl', |
555
|
|
|
|
|
|
|
'Java' => 'javanais', |
556
|
|
|
|
|
|
|
'Jpan' => 'giapunais', |
557
|
|
|
|
|
|
|
'Kali' => 'kayah li', |
558
|
|
|
|
|
|
|
'Kana' => 'katakana', |
559
|
|
|
|
|
|
|
'Khar' => 'kharoshthi', |
560
|
|
|
|
|
|
|
'Khmr' => 'khmer/cambodschan', |
561
|
|
|
|
|
|
|
'Knda' => 'kannada', |
562
|
|
|
|
|
|
|
'Kore' => 'corean', |
563
|
|
|
|
|
|
|
'Kthi' => 'kaithi', |
564
|
|
|
|
|
|
|
'Lana' => 'lanna', |
565
|
|
|
|
|
|
|
'Laoo' => 'laot', |
566
|
|
|
|
|
|
|
'Latf' => 'latin (scrittira gotica)', |
567
|
|
|
|
|
|
|
'Latg' => 'latin (scrittira gaelica)', |
568
|
|
|
|
|
|
|
'Latn' => 'latin', |
569
|
|
|
|
|
|
|
'Lepc' => 'lepcha', |
570
|
|
|
|
|
|
|
'Limb' => 'limbu', |
571
|
|
|
|
|
|
|
'Lina' => 'linear A', |
572
|
|
|
|
|
|
|
'Linb' => 'linear B', |
573
|
|
|
|
|
|
|
'Lyci' => 'lichic', |
574
|
|
|
|
|
|
|
'Lydi' => 'lidic', |
575
|
|
|
|
|
|
|
'Mand' => 'mandaic', |
576
|
|
|
|
|
|
|
'Mani' => 'manicheic', |
577
|
|
|
|
|
|
|
'Maya' => 'ieroglifas maya', |
578
|
|
|
|
|
|
|
'Mero' => 'meroitic', |
579
|
|
|
|
|
|
|
'Mlym' => 'malaisian', |
580
|
|
|
|
|
|
|
'Mong' => 'mongolic', |
581
|
|
|
|
|
|
|
'Moon' => 'moon', |
582
|
|
|
|
|
|
|
'Mtei' => 'meetei mayek', |
583
|
|
|
|
|
|
|
'Mymr' => 'burmais', |
584
|
|
|
|
|
|
|
'Nkoo' => 'n’ko', |
585
|
|
|
|
|
|
|
'Ogam' => 'ogham', |
586
|
|
|
|
|
|
|
'Olck' => 'ol chiki', |
587
|
|
|
|
|
|
|
'Orkh' => 'orkhon', |
588
|
|
|
|
|
|
|
'Orya' => 'oriya', |
589
|
|
|
|
|
|
|
'Osma' => 'osman', |
590
|
|
|
|
|
|
|
'Perm' => 'permic vegl', |
591
|
|
|
|
|
|
|
'Phag' => 'phags-pa', |
592
|
|
|
|
|
|
|
'Phli' => 'pahlavi dad inscripziuns', |
593
|
|
|
|
|
|
|
'Phlp' => 'pahlavi da psalms', |
594
|
|
|
|
|
|
|
'Phlv' => 'pahlavi da cudeschs', |
595
|
|
|
|
|
|
|
'Phnx' => 'fenizian', |
596
|
|
|
|
|
|
|
'Plrd' => 'fonetica da Pollard', |
597
|
|
|
|
|
|
|
'Prti' => 'partic dad inscripziuns', |
598
|
|
|
|
|
|
|
'Rjng' => 'rejang', |
599
|
|
|
|
|
|
|
'Roro' => 'rongorongo', |
600
|
|
|
|
|
|
|
'Runr' => 'runic', |
601
|
|
|
|
|
|
|
'Samr' => 'samaritan', |
602
|
|
|
|
|
|
|
'Sara' => 'sarati', |
603
|
|
|
|
|
|
|
'Saur' => 'saurashtra', |
604
|
|
|
|
|
|
|
'Sgnw' => 'lingua da segns', |
605
|
|
|
|
|
|
|
'Shaw' => 'shavian', |
606
|
|
|
|
|
|
|
'Sinh' => 'singalais', |
607
|
|
|
|
|
|
|
'Sund' => 'sundanais', |
608
|
|
|
|
|
|
|
'Sylo' => 'syloti nagri', |
609
|
|
|
|
|
|
|
'Syrc' => 'siric', |
610
|
|
|
|
|
|
|
'Syre' => 'siric estrangelo', |
611
|
|
|
|
|
|
|
'Syrj' => 'siric dal vest', |
612
|
|
|
|
|
|
|
'Syrn' => 'siric da l’ost', |
613
|
|
|
|
|
|
|
'Tagb' => 'tagbanwa', |
614
|
|
|
|
|
|
|
'Tale' => 'tai le', |
615
|
|
|
|
|
|
|
'Talu' => 'tai lue', |
616
|
|
|
|
|
|
|
'Taml' => 'tamil', |
617
|
|
|
|
|
|
|
'Tavt' => 'tai viet', |
618
|
|
|
|
|
|
|
'Telu' => 'telugu', |
619
|
|
|
|
|
|
|
'Teng' => 'tengwar', |
620
|
|
|
|
|
|
|
'Tfng' => 'tifinagh', |
621
|
|
|
|
|
|
|
'Tglg' => 'tagalog', |
622
|
|
|
|
|
|
|
'Thaa' => 'thaana', |
623
|
|
|
|
|
|
|
'Thai' => 'tailandais', |
624
|
|
|
|
|
|
|
'Tibt' => 'tibetan', |
625
|
|
|
|
|
|
|
'Ugar' => 'ugaritic', |
626
|
|
|
|
|
|
|
'Vaii' => 'vaii', |
627
|
|
|
|
|
|
|
'Visp' => 'alfabet visibel', |
628
|
|
|
|
|
|
|
'Xpeo' => 'persian vegl', |
629
|
|
|
|
|
|
|
'Xsux' => 'scrittira a cugn sumeric-accadica', |
630
|
|
|
|
|
|
|
'Yiii' => 'yi', |
631
|
|
|
|
|
|
|
'Zinh' => 'ertà', |
632
|
|
|
|
|
|
|
'Zmth' => 'notaziun matematica', |
633
|
|
|
|
|
|
|
'Zsym' => 'simbols', |
634
|
|
|
|
|
|
|
'Zxxx' => 'linguas na scrittas', |
635
|
|
|
|
|
|
|
'Zyyy' => 'betg determinà', |
636
|
|
|
|
|
|
|
'Zzzz' => 'scrittira nunenconuschenta u nunvalaivla', |
637
|
|
|
|
|
|
|
|
638
|
|
|
|
|
|
|
); |
639
|
|
|
|
|
|
|
if ( @_ ) { |
640
|
|
|
|
|
|
|
return $scripts{$_[0]}; |
641
|
|
|
|
|
|
|
} |
642
|
|
|
|
|
|
|
return \%scripts; |
643
|
|
|
|
|
|
|
} |
644
|
|
|
|
|
|
|
} |
645
|
|
|
|
|
|
|
); |
646
|
|
|
|
|
|
|
|
647
|
|
|
|
|
|
|
has 'display_name_region' => ( |
648
|
|
|
|
|
|
|
is => 'ro', |
649
|
|
|
|
|
|
|
isa => HashRef[Str], |
650
|
|
|
|
|
|
|
init_arg => undef, |
651
|
|
|
|
|
|
|
default => sub { |
652
|
|
|
|
|
|
|
{ |
653
|
|
|
|
|
|
|
'001' => 'mund', |
654
|
|
|
|
|
|
|
'002' => 'Africa', |
655
|
|
|
|
|
|
|
'003' => 'America dal Nord', |
656
|
|
|
|
|
|
|
'005' => 'America dal Sid', |
657
|
|
|
|
|
|
|
'009' => 'Oceania', |
658
|
|
|
|
|
|
|
'011' => 'Africa dal Vest', |
659
|
|
|
|
|
|
|
'013' => 'America Centrala', |
660
|
|
|
|
|
|
|
'014' => 'Africa da l’Ost', |
661
|
|
|
|
|
|
|
'015' => 'Africa dal Nord', |
662
|
|
|
|
|
|
|
'017' => 'Africa Centrala', |
663
|
|
|
|
|
|
|
'018' => 'Africa Meridiunala', |
664
|
|
|
|
|
|
|
'019' => 'America dal Nord, America Centrala ed America dal Sid', |
665
|
|
|
|
|
|
|
'029' => 'Caribica', |
666
|
|
|
|
|
|
|
'030' => 'Asia da l’Ost', |
667
|
|
|
|
|
|
|
'034' => 'Asia dal Sid', |
668
|
|
|
|
|
|
|
'035' => 'Asia dal Sidost', |
669
|
|
|
|
|
|
|
'039' => 'Europa dal Sid', |
670
|
|
|
|
|
|
|
'053' => 'Australia e Nova Zelanda', |
671
|
|
|
|
|
|
|
'054' => 'Melanesia', |
672
|
|
|
|
|
|
|
'057' => 'Regiun Micronesica', |
673
|
|
|
|
|
|
|
'061' => 'Polinesia', |
674
|
|
|
|
|
|
|
'142' => 'Asia', |
675
|
|
|
|
|
|
|
'143' => 'Asia Centrala', |
676
|
|
|
|
|
|
|
'145' => 'Asia dal Vest', |
677
|
|
|
|
|
|
|
'150' => 'Europa', |
678
|
|
|
|
|
|
|
'151' => 'Europa Orientala', |
679
|
|
|
|
|
|
|
'154' => 'Europa dal Nord', |
680
|
|
|
|
|
|
|
'155' => 'Europa dal Vest', |
681
|
|
|
|
|
|
|
'419' => 'America Latina', |
682
|
|
|
|
|
|
|
'AD' => 'Andorra', |
683
|
|
|
|
|
|
|
'AE' => 'Emirats Arabs Unids', |
684
|
|
|
|
|
|
|
'AF' => 'Afghanistan', |
685
|
|
|
|
|
|
|
'AG' => 'Antigua e Barbuda', |
686
|
|
|
|
|
|
|
'AI' => 'Anguilla', |
687
|
|
|
|
|
|
|
'AL' => 'Albania', |
688
|
|
|
|
|
|
|
'AM' => 'Armenia', |
689
|
|
|
|
|
|
|
'AO' => 'Angola', |
690
|
|
|
|
|
|
|
'AQ' => 'Antarctica', |
691
|
|
|
|
|
|
|
'AR' => 'Argentinia', |
692
|
|
|
|
|
|
|
'AS' => 'Samoa Americana', |
693
|
|
|
|
|
|
|
'AT' => 'Austria', |
694
|
|
|
|
|
|
|
'AU' => 'Australia', |
695
|
|
|
|
|
|
|
'AW' => 'Aruba', |
696
|
|
|
|
|
|
|
'AX' => 'Inslas Aland', |
697
|
|
|
|
|
|
|
'AZ' => 'Aserbaidschan', |
698
|
|
|
|
|
|
|
'BA' => 'Bosnia ed Erzegovina', |
699
|
|
|
|
|
|
|
'BB' => 'Barbados', |
700
|
|
|
|
|
|
|
'BD' => 'Bangladesch', |
701
|
|
|
|
|
|
|
'BE' => 'Belgia', |
702
|
|
|
|
|
|
|
'BF' => 'Burkina Faso', |
703
|
|
|
|
|
|
|
'BG' => 'Bulgaria', |
704
|
|
|
|
|
|
|
'BH' => 'Bahrain', |
705
|
|
|
|
|
|
|
'BI' => 'Burundi', |
706
|
|
|
|
|
|
|
'BJ' => 'Benin', |
707
|
|
|
|
|
|
|
'BL' => 'Son Barthélemy', |
708
|
|
|
|
|
|
|
'BM' => 'Bermudas', |
709
|
|
|
|
|
|
|
'BN' => 'Brunei', |
710
|
|
|
|
|
|
|
'BO' => 'Bolivia', |
711
|
|
|
|
|
|
|
'BR' => 'Brasilia', |
712
|
|
|
|
|
|
|
'BS' => 'Bahamas', |
713
|
|
|
|
|
|
|
'BT' => 'Bhutan', |
714
|
|
|
|
|
|
|
'BV' => 'Insla Bouvet', |
715
|
|
|
|
|
|
|
'BW' => 'Botswana', |
716
|
|
|
|
|
|
|
'BY' => 'Bielorussia', |
717
|
|
|
|
|
|
|
'BZ' => 'Belize', |
718
|
|
|
|
|
|
|
'CA' => 'Canada', |
719
|
|
|
|
|
|
|
'CC' => 'Inslas Cocos', |
720
|
|
|
|
|
|
|
'CD' => 'Republica Democratica dal Congo', |
721
|
|
|
|
|
|
|
'CF' => 'Republica Centralafricana', |
722
|
|
|
|
|
|
|
'CG' => 'Congo', |
723
|
|
|
|
|
|
|
'CH' => 'Svizra', |
724
|
|
|
|
|
|
|
'CI' => 'Costa d’Ivur', |
725
|
|
|
|
|
|
|
'CK' => 'Inslas Cook', |
726
|
|
|
|
|
|
|
'CL' => 'Chile', |
727
|
|
|
|
|
|
|
'CM' => 'Camerun', |
728
|
|
|
|
|
|
|
'CN' => 'China', |
729
|
|
|
|
|
|
|
'CO' => 'Columbia', |
730
|
|
|
|
|
|
|
'CR' => 'Costa Rica', |
731
|
|
|
|
|
|
|
'CU' => 'Cuba', |
732
|
|
|
|
|
|
|
'CV' => 'Cap Verd', |
733
|
|
|
|
|
|
|
'CX' => 'Insla da Christmas', |
734
|
|
|
|
|
|
|
'CY' => 'Cipra', |
735
|
|
|
|
|
|
|
'CZ' => 'Republica Tscheca', |
736
|
|
|
|
|
|
|
'DE' => 'Germania', |
737
|
|
|
|
|
|
|
'DJ' => 'Dschibuti', |
738
|
|
|
|
|
|
|
'DK' => 'Danemarc', |
739
|
|
|
|
|
|
|
'DM' => 'Dominica', |
740
|
|
|
|
|
|
|
'DO' => 'Republica Dominicana', |
741
|
|
|
|
|
|
|
'DZ' => 'Algeria', |
742
|
|
|
|
|
|
|
'EC' => 'Ecuador', |
743
|
|
|
|
|
|
|
'EE' => 'Estonia', |
744
|
|
|
|
|
|
|
'EG' => 'Egipta', |
745
|
|
|
|
|
|
|
'EH' => 'Sahara Occidentala', |
746
|
|
|
|
|
|
|
'ER' => 'Eritrea', |
747
|
|
|
|
|
|
|
'ES' => 'Spagna', |
748
|
|
|
|
|
|
|
'ET' => 'Etiopia', |
749
|
|
|
|
|
|
|
'EU' => 'Uniun europeica', |
750
|
|
|
|
|
|
|
'FI' => 'Finlanda', |
751
|
|
|
|
|
|
|
'FJ' => 'Fidschi', |
752
|
|
|
|
|
|
|
'FK' => 'Inslas dal Falkland', |
753
|
|
|
|
|
|
|
'FM' => 'Micronesia', |
754
|
|
|
|
|
|
|
'FO' => 'Inslas Feroe', |
755
|
|
|
|
|
|
|
'FR' => 'Frantscha', |
756
|
|
|
|
|
|
|
'GA' => 'Gabun', |
757
|
|
|
|
|
|
|
'GB' => 'Reginavel Unì', |
758
|
|
|
|
|
|
|
'GD' => 'Grenada', |
759
|
|
|
|
|
|
|
'GE' => 'Georgia', |
760
|
|
|
|
|
|
|
'GF' => 'Guyana Franzosa', |
761
|
|
|
|
|
|
|
'GG' => 'Guernsey', |
762
|
|
|
|
|
|
|
'GH' => 'Ghana', |
763
|
|
|
|
|
|
|
'GI' => 'Gibraltar', |
764
|
|
|
|
|
|
|
'GL' => 'Grönlanda', |
765
|
|
|
|
|
|
|
'GM' => 'Gambia', |
766
|
|
|
|
|
|
|
'GN' => 'Guinea', |
767
|
|
|
|
|
|
|
'GP' => 'Guadeloupe', |
768
|
|
|
|
|
|
|
'GQ' => 'Guinea Equatoriala', |
769
|
|
|
|
|
|
|
'GR' => 'Grezia', |
770
|
|
|
|
|
|
|
'GS' => 'Georgia dal Sid e las Inslas Sandwich dal Sid', |
771
|
|
|
|
|
|
|
'GT' => 'Guatemala', |
772
|
|
|
|
|
|
|
'GU' => 'Guam', |
773
|
|
|
|
|
|
|
'GW' => 'Guinea-Bissau', |
774
|
|
|
|
|
|
|
'GY' => 'Guyana', |
775
|
|
|
|
|
|
|
'HK' => 'Regiun d’administraziun speziala da Hongkong, China', |
776
|
|
|
|
|
|
|
'HM' => 'Inslas da Heard e da McDonald', |
777
|
|
|
|
|
|
|
'HN' => 'Honduras', |
778
|
|
|
|
|
|
|
'HR' => 'Croazia', |
779
|
|
|
|
|
|
|
'HT' => 'Haiti', |
780
|
|
|
|
|
|
|
'HU' => 'Ungaria', |
781
|
|
|
|
|
|
|
'ID' => 'Indonesia', |
782
|
|
|
|
|
|
|
'IE' => 'Irlanda', |
783
|
|
|
|
|
|
|
'IL' => 'Israel', |
784
|
|
|
|
|
|
|
'IM' => 'Insla da Man', |
785
|
|
|
|
|
|
|
'IN' => 'India', |
786
|
|
|
|
|
|
|
'IO' => 'Territori Britannic en l’Ocean Indic', |
787
|
|
|
|
|
|
|
'IQ' => 'Irac', |
788
|
|
|
|
|
|
|
'IR' => 'Iran', |
789
|
|
|
|
|
|
|
'IS' => 'Islanda', |
790
|
|
|
|
|
|
|
'IT' => 'Italia', |
791
|
|
|
|
|
|
|
'JE' => 'Jersey', |
792
|
|
|
|
|
|
|
'JM' => 'Giamaica', |
793
|
|
|
|
|
|
|
'JO' => 'Jordania', |
794
|
|
|
|
|
|
|
'JP' => 'Giapun', |
795
|
|
|
|
|
|
|
'KE' => 'Kenia', |
796
|
|
|
|
|
|
|
'KG' => 'Kirghisistan', |
797
|
|
|
|
|
|
|
'KH' => 'Cambodscha', |
798
|
|
|
|
|
|
|
'KI' => 'Kiribati', |
799
|
|
|
|
|
|
|
'KM' => 'Comoras', |
800
|
|
|
|
|
|
|
'KN' => 'Saint Kitts e Nevis', |
801
|
|
|
|
|
|
|
'KP' => 'Corea dal Nord', |
802
|
|
|
|
|
|
|
'KR' => 'Corea dal Sid', |
803
|
|
|
|
|
|
|
'KW' => 'Kuwait', |
804
|
|
|
|
|
|
|
'KY' => 'Inslas Cayman', |
805
|
|
|
|
|
|
|
'KZ' => 'Kasachstan', |
806
|
|
|
|
|
|
|
'LA' => 'Laos', |
807
|
|
|
|
|
|
|
'LB' => 'Libanon', |
808
|
|
|
|
|
|
|
'LC' => 'Saint Lucia', |
809
|
|
|
|
|
|
|
'LI' => 'Liechtenstein', |
810
|
|
|
|
|
|
|
'LK' => 'Sri Lanka', |
811
|
|
|
|
|
|
|
'LR' => 'Liberia', |
812
|
|
|
|
|
|
|
'LS' => 'Lesotho', |
813
|
|
|
|
|
|
|
'LT' => 'Lituania', |
814
|
|
|
|
|
|
|
'LU' => 'Luxemburg', |
815
|
|
|
|
|
|
|
'LV' => 'Lettonia', |
816
|
|
|
|
|
|
|
'LY' => 'Libia', |
817
|
|
|
|
|
|
|
'MA' => 'Maroc', |
818
|
|
|
|
|
|
|
'MC' => 'Monaco', |
819
|
|
|
|
|
|
|
'MD' => 'Moldavia', |
820
|
|
|
|
|
|
|
'ME' => 'Montenegro', |
821
|
|
|
|
|
|
|
'MF' => 'Saint Martin', |
822
|
|
|
|
|
|
|
'MG' => 'Madagascar', |
823
|
|
|
|
|
|
|
'MH' => 'Inslas da Marshall', |
824
|
|
|
|
|
|
|
'MK' => 'Macedonia', |
825
|
|
|
|
|
|
|
'ML' => 'Mali', |
826
|
|
|
|
|
|
|
'MM' => 'Myanmar', |
827
|
|
|
|
|
|
|
'MN' => 'Mongolia', |
828
|
|
|
|
|
|
|
'MO' => 'Regiun d’administraziun speziala Macao, China', |
829
|
|
|
|
|
|
|
'MP' => 'Inslas Mariannas dal Nord', |
830
|
|
|
|
|
|
|
'MQ' => 'Martinique', |
831
|
|
|
|
|
|
|
'MR' => 'Mauretania', |
832
|
|
|
|
|
|
|
'MS' => 'Montserrat', |
833
|
|
|
|
|
|
|
'MT' => 'Malta', |
834
|
|
|
|
|
|
|
'MU' => 'Mauritius', |
835
|
|
|
|
|
|
|
'MV' => 'Maldivas', |
836
|
|
|
|
|
|
|
'MW' => 'Malawi', |
837
|
|
|
|
|
|
|
'MX' => 'Mexico', |
838
|
|
|
|
|
|
|
'MY' => 'Malaisia', |
839
|
|
|
|
|
|
|
'MZ' => 'Mosambic', |
840
|
|
|
|
|
|
|
'NA' => 'Namibia', |
841
|
|
|
|
|
|
|
'NC' => 'Nova Caledonia', |
842
|
|
|
|
|
|
|
'NE' => 'Niger', |
843
|
|
|
|
|
|
|
'NF' => 'Insla Norfolk', |
844
|
|
|
|
|
|
|
'NG' => 'Nigeria', |
845
|
|
|
|
|
|
|
'NI' => 'Nicaragua', |
846
|
|
|
|
|
|
|
'NL' => 'Pajais Bass', |
847
|
|
|
|
|
|
|
'NO' => 'Norvegia', |
848
|
|
|
|
|
|
|
'NP' => 'Nepal', |
849
|
|
|
|
|
|
|
'NR' => 'Nauru', |
850
|
|
|
|
|
|
|
'NU' => 'Niue', |
851
|
|
|
|
|
|
|
'NZ' => 'Nova Zelanda', |
852
|
|
|
|
|
|
|
'OM' => 'Oman', |
853
|
|
|
|
|
|
|
'PA' => 'Panama', |
854
|
|
|
|
|
|
|
'PE' => 'Peru', |
855
|
|
|
|
|
|
|
'PF' => 'Polinesia Franzosa', |
856
|
|
|
|
|
|
|
'PG' => 'Papua Nova Guinea', |
857
|
|
|
|
|
|
|
'PH' => 'Filippinas', |
858
|
|
|
|
|
|
|
'PK' => 'Pakistan', |
859
|
|
|
|
|
|
|
'PL' => 'Pologna', |
860
|
|
|
|
|
|
|
'PM' => 'Saint Pierre e Miquelon', |
861
|
|
|
|
|
|
|
'PN' => 'Pitcairn', |
862
|
|
|
|
|
|
|
'PR' => 'Puerto Rico', |
863
|
|
|
|
|
|
|
'PS' => 'Territori Palestinais', |
864
|
|
|
|
|
|
|
'PT' => 'Portugal', |
865
|
|
|
|
|
|
|
'PW' => 'Palau', |
866
|
|
|
|
|
|
|
'PY' => 'Paraguai', |
867
|
|
|
|
|
|
|
'QA' => 'Katar', |
868
|
|
|
|
|
|
|
'QO' => 'Oceania Periferica', |
869
|
|
|
|
|
|
|
'RE' => 'Réunion', |
870
|
|
|
|
|
|
|
'RO' => 'Rumenia', |
871
|
|
|
|
|
|
|
'RS' => 'Serbia', |
872
|
|
|
|
|
|
|
'RU' => 'Russia', |
873
|
|
|
|
|
|
|
'RW' => 'Ruanda', |
874
|
|
|
|
|
|
|
'SA' => 'Arabia Saudita', |
875
|
|
|
|
|
|
|
'SB' => 'Salomonas', |
876
|
|
|
|
|
|
|
'SC' => 'Seychellas', |
877
|
|
|
|
|
|
|
'SD' => 'Sudan', |
878
|
|
|
|
|
|
|
'SE' => 'Svezia', |
879
|
|
|
|
|
|
|
'SG' => 'Singapur', |
880
|
|
|
|
|
|
|
'SH' => 'Sontg’Elena', |
881
|
|
|
|
|
|
|
'SI' => 'Slovenia', |
882
|
|
|
|
|
|
|
'SJ' => 'Svalbard e Jan Mayen', |
883
|
|
|
|
|
|
|
'SK' => 'Slovachia', |
884
|
|
|
|
|
|
|
'SL' => 'Sierra Leone', |
885
|
|
|
|
|
|
|
'SM' => 'San Marino', |
886
|
|
|
|
|
|
|
'SN' => 'Senegal', |
887
|
|
|
|
|
|
|
'SO' => 'Somalia', |
888
|
|
|
|
|
|
|
'SR' => 'Surinam', |
889
|
|
|
|
|
|
|
'SS' => 'Sudan dal Sid', |
890
|
|
|
|
|
|
|
'ST' => 'São Tomé e Principe', |
891
|
|
|
|
|
|
|
'SV' => 'El Salvador', |
892
|
|
|
|
|
|
|
'SY' => 'Siria', |
893
|
|
|
|
|
|
|
'SZ' => 'Swaziland', |
894
|
|
|
|
|
|
|
'TC' => 'Inslas Turks e Caicos', |
895
|
|
|
|
|
|
|
'TD' => 'Tschad', |
896
|
|
|
|
|
|
|
'TF' => 'Territoris Franzos Meridiunals', |
897
|
|
|
|
|
|
|
'TG' => 'Togo', |
898
|
|
|
|
|
|
|
'TH' => 'Tailanda', |
899
|
|
|
|
|
|
|
'TJ' => 'Tadschikistan', |
900
|
|
|
|
|
|
|
'TK' => 'Tokelau', |
901
|
|
|
|
|
|
|
'TL' => 'Timor da l’Ost', |
902
|
|
|
|
|
|
|
'TM' => 'Turkmenistan', |
903
|
|
|
|
|
|
|
'TN' => 'Tunesia', |
904
|
|
|
|
|
|
|
'TO' => 'Tonga', |
905
|
|
|
|
|
|
|
'TR' => 'Tirchia', |
906
|
|
|
|
|
|
|
'TT' => 'Trinidad e Tobago', |
907
|
|
|
|
|
|
|
'TV' => 'Tuvalu', |
908
|
|
|
|
|
|
|
'TW' => 'Taiwan', |
909
|
|
|
|
|
|
|
'TZ' => 'Tansania', |
910
|
|
|
|
|
|
|
'UA' => 'Ucraina', |
911
|
|
|
|
|
|
|
'UG' => 'Uganda', |
912
|
|
|
|
|
|
|
'UM' => 'Inslas pitschnas perifericas dals Stadis Unids da l’America', |
913
|
|
|
|
|
|
|
'US' => 'Stadis Unids da l’America', |
914
|
|
|
|
|
|
|
'UY' => 'Uruguay', |
915
|
|
|
|
|
|
|
'UZ' => 'Usbekistan', |
916
|
|
|
|
|
|
|
'VA' => 'Citad dal Vatican', |
917
|
|
|
|
|
|
|
'VC' => 'Saint Vincent e las Grenadinas', |
918
|
|
|
|
|
|
|
'VE' => 'Venezuela', |
919
|
|
|
|
|
|
|
'VG' => 'Inslas Virginas Britannicas', |
920
|
|
|
|
|
|
|
'VI' => 'Inslas Virginas Americanas', |
921
|
|
|
|
|
|
|
'VN' => 'Vietnam', |
922
|
|
|
|
|
|
|
'VU' => 'Vanuatu', |
923
|
|
|
|
|
|
|
'WF' => 'Wallis e Futuna', |
924
|
|
|
|
|
|
|
'WS' => 'Samoa', |
925
|
|
|
|
|
|
|
'YE' => 'Jemen', |
926
|
|
|
|
|
|
|
'YT' => 'Mayotte', |
927
|
|
|
|
|
|
|
'ZA' => 'Africa dal Sid', |
928
|
|
|
|
|
|
|
'ZM' => 'Sambia', |
929
|
|
|
|
|
|
|
'ZW' => 'Simbabwe', |
930
|
|
|
|
|
|
|
'ZZ' => 'Regiun betg encouschenta u nunvalaivla', |
931
|
|
|
|
|
|
|
|
932
|
|
|
|
|
|
|
} |
933
|
|
|
|
|
|
|
}, |
934
|
|
|
|
|
|
|
); |
935
|
|
|
|
|
|
|
|
936
|
|
|
|
|
|
|
has 'display_name_variant' => ( |
937
|
|
|
|
|
|
|
is => 'ro', |
938
|
|
|
|
|
|
|
isa => HashRef[Str], |
939
|
|
|
|
|
|
|
init_arg => undef, |
940
|
|
|
|
|
|
|
default => sub { |
941
|
|
|
|
|
|
|
{ |
942
|
|
|
|
|
|
|
'1901' => 'ortografia tudestga tradiziunala', |
943
|
|
|
|
|
|
|
'1994' => 'ortografia standardisada da Resia', |
944
|
|
|
|
|
|
|
'1996' => 'nova ortografia tudestga', |
945
|
|
|
|
|
|
|
'1606NICT' => 'franzos mesaun tardiv (fin 1606)', |
946
|
|
|
|
|
|
|
'1694ACAD' => 'franzos modern tempriv (a partir da 1694)', |
947
|
|
|
|
|
|
|
'AREVELA' => 'armen oriental', |
948
|
|
|
|
|
|
|
'AREVMDA' => 'armen occidental', |
949
|
|
|
|
|
|
|
'BAKU1926' => 'alfabet tirc unifitgà', |
950
|
|
|
|
|
|
|
'BISKE' => 'dialect da San Giorgio', |
951
|
|
|
|
|
|
|
'BOONT' => 'dialect boontling', |
952
|
|
|
|
|
|
|
'FONIPA' => 'alfabet fonetic internaziunal (IPA)', |
953
|
|
|
|
|
|
|
'FONUPA' => 'alfabet fonetic da l’Ural (UPA)', |
954
|
|
|
|
|
|
|
'LIPAW' => 'dialect lipovaz da Resia', |
955
|
|
|
|
|
|
|
'MONOTON' => 'monotonic', |
956
|
|
|
|
|
|
|
'NEDIS' => 'dialect da Natisone', |
957
|
|
|
|
|
|
|
'NJIVA' => 'dialect da Gniva', |
958
|
|
|
|
|
|
|
'OSOJS' => 'dialect da Oscacco', |
959
|
|
|
|
|
|
|
'POLYTON' => 'politonic', |
960
|
|
|
|
|
|
|
'POSIX' => 'computer', |
961
|
|
|
|
|
|
|
'REVISED' => 'ortografia revedida', |
962
|
|
|
|
|
|
|
'ROZAJ' => 'dialect da Resia', |
963
|
|
|
|
|
|
|
'SAAHO' => 'Saho', |
964
|
|
|
|
|
|
|
'SCOTLAND' => 'englais da standard scot', |
965
|
|
|
|
|
|
|
'SCOUSE' => 'dialect scouse', |
966
|
|
|
|
|
|
|
'SOLBA' => 'dialect da Stolvizza', |
967
|
|
|
|
|
|
|
'TARASK' => 'ortografia taraskievica', |
968
|
|
|
|
|
|
|
'VALENCIA' => 'valencian', |
969
|
|
|
|
|
|
|
|
970
|
|
|
|
|
|
|
} |
971
|
|
|
|
|
|
|
}, |
972
|
|
|
|
|
|
|
); |
973
|
|
|
|
|
|
|
|
974
|
|
|
|
|
|
|
has 'display_name_key' => ( |
975
|
|
|
|
|
|
|
is => 'ro', |
976
|
|
|
|
|
|
|
isa => HashRef[Str], |
977
|
|
|
|
|
|
|
init_arg => undef, |
978
|
|
|
|
|
|
|
default => sub { |
979
|
|
|
|
|
|
|
{ |
980
|
|
|
|
|
|
|
'calendar' => 'chalender', |
981
|
|
|
|
|
|
|
'collation' => 'zavrada', |
982
|
|
|
|
|
|
|
'currency' => 'munaida', |
983
|
|
|
|
|
|
|
'numbers' => 'dumbers', |
984
|
|
|
|
|
|
|
|
985
|
|
|
|
|
|
|
} |
986
|
|
|
|
|
|
|
}, |
987
|
|
|
|
|
|
|
); |
988
|
|
|
|
|
|
|
|
989
|
|
|
|
|
|
|
has 'display_name_type' => ( |
990
|
|
|
|
|
|
|
is => 'ro', |
991
|
|
|
|
|
|
|
isa => HashRef[HashRef[Str]], |
992
|
|
|
|
|
|
|
init_arg => undef, |
993
|
|
|
|
|
|
|
default => sub { |
994
|
|
|
|
|
|
|
{ |
995
|
|
|
|
|
|
|
'calendar' => { |
996
|
|
|
|
|
|
|
'buddhist' => q{chalender budistic}, |
997
|
|
|
|
|
|
|
'chinese' => q{chalender chinais}, |
998
|
|
|
|
|
|
|
'coptic' => q{chalender coptic}, |
999
|
|
|
|
|
|
|
'ethiopic' => q{chalender etiopic}, |
1000
|
|
|
|
|
|
|
'gregorian' => q{chalender gregorian}, |
1001
|
|
|
|
|
|
|
'hebrew' => q{chalender ebraic}, |
1002
|
|
|
|
|
|
|
'indian' => q{chalender naziunal indic}, |
1003
|
|
|
|
|
|
|
'islamic' => q{chalender islamic}, |
1004
|
|
|
|
|
|
|
'islamic-civil' => q{chalender islamic civil}, |
1005
|
|
|
|
|
|
|
'islamic-rgsa' => q{chalender islamic (Arabia Saudita)}, |
1006
|
|
|
|
|
|
|
'islamic-umalqura' => q{chalender islamic (Umm al-Qura)}, |
1007
|
|
|
|
|
|
|
'iso8601' => q{chalender tenor ISO 8601}, |
1008
|
|
|
|
|
|
|
'japanese' => q{chalender giapunais}, |
1009
|
|
|
|
|
|
|
'persian' => q{chalender persian}, |
1010
|
|
|
|
|
|
|
'roc' => q{chalendar da la republica chinaisa}, |
1011
|
|
|
|
|
|
|
}, |
1012
|
|
|
|
|
|
|
'collation' => { |
1013
|
|
|
|
|
|
|
'big5han' => q{chinaisa tradiziunala - Big5}, |
1014
|
|
|
|
|
|
|
'gb2312han' => q{chinaisa simplifitgada - GB2312}, |
1015
|
|
|
|
|
|
|
'phonebook' => q{cudesch da telefon}, |
1016
|
|
|
|
|
|
|
'pinyin' => q{Pinyin}, |
1017
|
|
|
|
|
|
|
'standard' => q{zavrada da standard}, |
1018
|
|
|
|
|
|
|
'stroke' => q{urden dals stritgs}, |
1019
|
|
|
|
|
|
|
'traditional' => q{reglas tradiziunalas}, |
1020
|
|
|
|
|
|
|
}, |
1021
|
|
|
|
|
|
|
'numbers' => { |
1022
|
|
|
|
|
|
|
'armn' => q{dumbers armens}, |
1023
|
|
|
|
|
|
|
'beng' => q{cifras bengalas}, |
1024
|
|
|
|
|
|
|
'geor' => q{dumbers georgians}, |
1025
|
|
|
|
|
|
|
'latn' => q{cifras europeicas}, |
1026
|
|
|
|
|
|
|
}, |
1027
|
|
|
|
|
|
|
|
1028
|
|
|
|
|
|
|
} |
1029
|
|
|
|
|
|
|
}, |
1030
|
|
|
|
|
|
|
); |
1031
|
|
|
|
|
|
|
|
1032
|
|
|
|
|
|
|
has 'display_name_measurement_system' => ( |
1033
|
|
|
|
|
|
|
is => 'ro', |
1034
|
|
|
|
|
|
|
isa => HashRef[Str], |
1035
|
|
|
|
|
|
|
init_arg => undef, |
1036
|
|
|
|
|
|
|
default => sub { |
1037
|
|
|
|
|
|
|
{ |
1038
|
|
|
|
|
|
|
'metric' => q{metric}, |
1039
|
|
|
|
|
|
|
'UK' => q{englais}, |
1040
|
|
|
|
|
|
|
'US' => q{american}, |
1041
|
|
|
|
|
|
|
|
1042
|
|
|
|
|
|
|
} |
1043
|
|
|
|
|
|
|
}, |
1044
|
|
|
|
|
|
|
); |
1045
|
|
|
|
|
|
|
|
1046
|
|
|
|
|
|
|
has 'display_name_code_patterns' => ( |
1047
|
|
|
|
|
|
|
is => 'ro', |
1048
|
|
|
|
|
|
|
isa => HashRef[Str], |
1049
|
|
|
|
|
|
|
init_arg => undef, |
1050
|
|
|
|
|
|
|
default => sub { |
1051
|
|
|
|
|
|
|
{ |
1052
|
|
|
|
|
|
|
'language' => 'Lingua: {0}', |
1053
|
|
|
|
|
|
|
'script' => 'Scrittira: {0}', |
1054
|
|
|
|
|
|
|
'region' => 'Regiun: {0}', |
1055
|
|
|
|
|
|
|
|
1056
|
|
|
|
|
|
|
} |
1057
|
|
|
|
|
|
|
}, |
1058
|
|
|
|
|
|
|
); |
1059
|
|
|
|
|
|
|
|
1060
|
|
|
|
|
|
|
has 'characters' => ( |
1061
|
|
|
|
|
|
|
is => 'ro', |
1062
|
|
|
|
|
|
|
isa => HashRef, |
1063
|
|
|
|
|
|
|
init_arg => undef, |
1064
|
|
|
|
|
|
|
default => $^V ge v5.18.0 |
1065
|
|
|
|
|
|
|
? eval <<'EOT' |
1066
|
|
|
|
|
|
|
sub { |
1067
|
|
|
|
|
|
|
no warnings 'experimental::regex_sets'; |
1068
|
|
|
|
|
|
|
return { |
1069
|
|
|
|
|
|
|
auxiliary => qr{[á ă â å ä ā æ ç ĕ ê ë ē í ĭ î ï ī ñ ó ŏ ô ö ø ō œ ú ŭ û ü ū ÿ]}, |
1070
|
|
|
|
|
|
|
index => ['A', 'À', 'B', 'C', 'D', 'E', 'É', 'È', 'F', 'G', 'H', 'I', 'Ì', 'J', 'K', 'L', 'M', 'N', 'O', 'Ò', 'P', 'Q', 'R', 'S', 'T', 'U', 'Ù', 'V', 'W', 'X', 'Y', 'Z'], |
1071
|
|
|
|
|
|
|
main => qr{[a à b c d e é è f g h i ì j k l m n o ò p q r s t u ù v w x y z]}, |
1072
|
|
|
|
|
|
|
numbers => qr{[. ’ % ‰ + − 0 1 2 3 4 5 6 7 8 9]}, |
1073
|
|
|
|
|
|
|
}; |
1074
|
|
|
|
|
|
|
}, |
1075
|
|
|
|
|
|
|
EOT |
1076
|
|
|
|
|
|
|
: sub { |
1077
|
|
|
|
|
|
|
return { index => ['A', 'À', 'B', 'C', 'D', 'E', 'É', 'È', 'F', 'G', 'H', 'I', 'Ì', 'J', 'K', 'L', 'M', 'N', 'O', 'Ò', 'P', 'Q', 'R', 'S', 'T', 'U', 'Ù', 'V', 'W', 'X', 'Y', 'Z'], }; |
1078
|
|
|
|
|
|
|
}, |
1079
|
1
|
|
|
1
|
|
103
|
); |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
143
|
|
1080
|
|
|
|
|
|
|
|
1081
|
|
|
|
|
|
|
|
1082
|
|
|
|
|
|
|
has 'quote_start' => ( |
1083
|
|
|
|
|
|
|
is => 'ro', |
1084
|
|
|
|
|
|
|
isa => Str, |
1085
|
|
|
|
|
|
|
init_arg => undef, |
1086
|
|
|
|
|
|
|
default => qq{«}, |
1087
|
|
|
|
|
|
|
); |
1088
|
|
|
|
|
|
|
|
1089
|
|
|
|
|
|
|
has 'quote_end' => ( |
1090
|
|
|
|
|
|
|
is => 'ro', |
1091
|
|
|
|
|
|
|
isa => Str, |
1092
|
|
|
|
|
|
|
init_arg => undef, |
1093
|
|
|
|
|
|
|
default => qq{»}, |
1094
|
|
|
|
|
|
|
); |
1095
|
|
|
|
|
|
|
|
1096
|
|
|
|
|
|
|
has 'alternate_quote_start' => ( |
1097
|
|
|
|
|
|
|
is => 'ro', |
1098
|
|
|
|
|
|
|
isa => Str, |
1099
|
|
|
|
|
|
|
init_arg => undef, |
1100
|
|
|
|
|
|
|
default => qq{‹}, |
1101
|
|
|
|
|
|
|
); |
1102
|
|
|
|
|
|
|
|
1103
|
|
|
|
|
|
|
has 'alternate_quote_end' => ( |
1104
|
|
|
|
|
|
|
is => 'ro', |
1105
|
|
|
|
|
|
|
isa => Str, |
1106
|
|
|
|
|
|
|
init_arg => undef, |
1107
|
|
|
|
|
|
|
default => qq{›}, |
1108
|
|
|
|
|
|
|
); |
1109
|
|
|
|
|
|
|
|
1110
|
|
|
|
|
|
|
has 'duration_units' => ( |
1111
|
|
|
|
|
|
|
is => 'ro', |
1112
|
|
|
|
|
|
|
isa => HashRef[Str], |
1113
|
|
|
|
|
|
|
init_arg => undef, |
1114
|
|
|
|
|
|
|
default => sub { { |
1115
|
|
|
|
|
|
|
hm => 'h:mm', |
1116
|
|
|
|
|
|
|
hms => 'h:mm:ss', |
1117
|
|
|
|
|
|
|
ms => 'm:ss', |
1118
|
|
|
|
|
|
|
} } |
1119
|
|
|
|
|
|
|
); |
1120
|
|
|
|
|
|
|
|
1121
|
|
|
|
|
|
|
has 'units' => ( |
1122
|
|
|
|
|
|
|
is => 'ro', |
1123
|
|
|
|
|
|
|
isa => HashRef[HashRef[HashRef[Str]]], |
1124
|
|
|
|
|
|
|
init_arg => undef, |
1125
|
|
|
|
|
|
|
default => sub { { |
1126
|
|
|
|
|
|
|
'long' => { |
1127
|
|
|
|
|
|
|
'celsius' => { |
1128
|
|
|
|
|
|
|
'name' => q(grads celsius), |
1129
|
|
|
|
|
|
|
'one' => q({0} grad celsius), |
1130
|
|
|
|
|
|
|
'other' => q({0} grads celsius), |
1131
|
|
|
|
|
|
|
}, |
1132
|
|
|
|
|
|
|
'centimeter' => { |
1133
|
|
|
|
|
|
|
'name' => q(centimeters), |
1134
|
|
|
|
|
|
|
'one' => q({0} centimeter), |
1135
|
|
|
|
|
|
|
'other' => q({0} centimeters), |
1136
|
|
|
|
|
|
|
}, |
1137
|
|
|
|
|
|
|
'day' => { |
1138
|
|
|
|
|
|
|
'name' => q(dis), |
1139
|
|
|
|
|
|
|
'one' => q({0} di), |
1140
|
|
|
|
|
|
|
'other' => q({0} dis), |
1141
|
|
|
|
|
|
|
}, |
1142
|
|
|
|
|
|
|
'gram' => { |
1143
|
|
|
|
|
|
|
'name' => q(grams), |
1144
|
|
|
|
|
|
|
'one' => q({0} gram), |
1145
|
|
|
|
|
|
|
'other' => q({0} grams), |
1146
|
|
|
|
|
|
|
}, |
1147
|
|
|
|
|
|
|
'hour' => { |
1148
|
|
|
|
|
|
|
'name' => q(uras), |
1149
|
|
|
|
|
|
|
'one' => q({0} ura), |
1150
|
|
|
|
|
|
|
'other' => q({0} uras), |
1151
|
|
|
|
|
|
|
}, |
1152
|
|
|
|
|
|
|
'kilogram' => { |
1153
|
|
|
|
|
|
|
'name' => q(kilograms), |
1154
|
|
|
|
|
|
|
'one' => q({0} kilogram), |
1155
|
|
|
|
|
|
|
'other' => q({0} kilograms), |
1156
|
|
|
|
|
|
|
}, |
1157
|
|
|
|
|
|
|
'kilometer' => { |
1158
|
|
|
|
|
|
|
'name' => q(kilometers), |
1159
|
|
|
|
|
|
|
'one' => q({0} kilometer), |
1160
|
|
|
|
|
|
|
'other' => q({0} kilometers), |
1161
|
|
|
|
|
|
|
}, |
1162
|
|
|
|
|
|
|
'kilometer-per-hour' => { |
1163
|
|
|
|
|
|
|
'name' => q(kilometers per ura), |
1164
|
|
|
|
|
|
|
'one' => q({0} kilometer per ura), |
1165
|
|
|
|
|
|
|
'other' => q({0} kilometers per ura), |
1166
|
|
|
|
|
|
|
}, |
1167
|
|
|
|
|
|
|
'liter' => { |
1168
|
|
|
|
|
|
|
'name' => q(liters), |
1169
|
|
|
|
|
|
|
'one' => q({0} liter), |
1170
|
|
|
|
|
|
|
'other' => q({0} liters), |
1171
|
|
|
|
|
|
|
}, |
1172
|
|
|
|
|
|
|
'meter' => { |
1173
|
|
|
|
|
|
|
'name' => q(meters), |
1174
|
|
|
|
|
|
|
'one' => q({0} meter), |
1175
|
|
|
|
|
|
|
'other' => q({0} meters), |
1176
|
|
|
|
|
|
|
}, |
1177
|
|
|
|
|
|
|
'millimeter' => { |
1178
|
|
|
|
|
|
|
'name' => q(millimeters), |
1179
|
|
|
|
|
|
|
'one' => q({0} millimeter), |
1180
|
|
|
|
|
|
|
'other' => q({0} millimeters), |
1181
|
|
|
|
|
|
|
}, |
1182
|
|
|
|
|
|
|
'millisecond' => { |
1183
|
|
|
|
|
|
|
'name' => q(millisecundas), |
1184
|
|
|
|
|
|
|
'one' => q({0} millisecunda), |
1185
|
|
|
|
|
|
|
'other' => q({0} millisecundas), |
1186
|
|
|
|
|
|
|
}, |
1187
|
|
|
|
|
|
|
'minute' => { |
1188
|
|
|
|
|
|
|
'name' => q(minutas), |
1189
|
|
|
|
|
|
|
'one' => q({0} minuta), |
1190
|
|
|
|
|
|
|
'other' => q({0} minutas), |
1191
|
|
|
|
|
|
|
}, |
1192
|
|
|
|
|
|
|
'month' => { |
1193
|
|
|
|
|
|
|
'name' => q(mais), |
1194
|
|
|
|
|
|
|
'one' => q({0} mais), |
1195
|
|
|
|
|
|
|
'other' => q({0} mais), |
1196
|
|
|
|
|
|
|
}, |
1197
|
|
|
|
|
|
|
'second' => { |
1198
|
|
|
|
|
|
|
'name' => q(secundas), |
1199
|
|
|
|
|
|
|
'one' => q({0} secunda), |
1200
|
|
|
|
|
|
|
'other' => q({0} secundas), |
1201
|
|
|
|
|
|
|
}, |
1202
|
|
|
|
|
|
|
'week' => { |
1203
|
|
|
|
|
|
|
'name' => q(emnas), |
1204
|
|
|
|
|
|
|
'one' => q({0} emna), |
1205
|
|
|
|
|
|
|
'other' => q({0} emnas), |
1206
|
|
|
|
|
|
|
}, |
1207
|
|
|
|
|
|
|
'year' => { |
1208
|
|
|
|
|
|
|
'name' => q(onns), |
1209
|
|
|
|
|
|
|
'one' => q({0} onn), |
1210
|
|
|
|
|
|
|
'other' => q({0} onns), |
1211
|
|
|
|
|
|
|
}, |
1212
|
|
|
|
|
|
|
}, |
1213
|
|
|
|
|
|
|
'narrow' => { |
1214
|
|
|
|
|
|
|
'celsius' => { |
1215
|
|
|
|
|
|
|
'name' => q(°C), |
1216
|
|
|
|
|
|
|
'one' => q({0}°C), |
1217
|
|
|
|
|
|
|
'other' => q({0}°C), |
1218
|
|
|
|
|
|
|
}, |
1219
|
|
|
|
|
|
|
'centimeter' => { |
1220
|
|
|
|
|
|
|
'name' => q(cm), |
1221
|
|
|
|
|
|
|
'one' => q({0}cm), |
1222
|
|
|
|
|
|
|
'other' => q({0}cm), |
1223
|
|
|
|
|
|
|
}, |
1224
|
|
|
|
|
|
|
'day' => { |
1225
|
|
|
|
|
|
|
'name' => q(di), |
1226
|
|
|
|
|
|
|
'one' => q({0} dis), |
1227
|
|
|
|
|
|
|
'other' => q({0} dis), |
1228
|
|
|
|
|
|
|
}, |
1229
|
|
|
|
|
|
|
'gram' => { |
1230
|
|
|
|
|
|
|
'name' => q(gram), |
1231
|
|
|
|
|
|
|
'one' => q({0} g), |
1232
|
|
|
|
|
|
|
'other' => q({0} g), |
1233
|
|
|
|
|
|
|
}, |
1234
|
|
|
|
|
|
|
'hour' => { |
1235
|
|
|
|
|
|
|
'name' => q(ura), |
1236
|
|
|
|
|
|
|
'one' => q({0} uras), |
1237
|
|
|
|
|
|
|
'other' => q({0} uras), |
1238
|
|
|
|
|
|
|
}, |
1239
|
|
|
|
|
|
|
'kilogram' => { |
1240
|
|
|
|
|
|
|
'name' => q(kg), |
1241
|
|
|
|
|
|
|
'one' => q({0} kg), |
1242
|
|
|
|
|
|
|
'other' => q({0} kg), |
1243
|
|
|
|
|
|
|
}, |
1244
|
|
|
|
|
|
|
'kilometer' => { |
1245
|
|
|
|
|
|
|
'name' => q(km), |
1246
|
|
|
|
|
|
|
'one' => q({0}km), |
1247
|
|
|
|
|
|
|
'other' => q({0}km), |
1248
|
|
|
|
|
|
|
}, |
1249
|
|
|
|
|
|
|
'kilometer-per-hour' => { |
1250
|
|
|
|
|
|
|
'name' => q(km/h), |
1251
|
|
|
|
|
|
|
'one' => q({0} km/h), |
1252
|
|
|
|
|
|
|
'other' => q({0} km/h), |
1253
|
|
|
|
|
|
|
}, |
1254
|
|
|
|
|
|
|
'liter' => { |
1255
|
|
|
|
|
|
|
'name' => q(liter), |
1256
|
|
|
|
|
|
|
'one' => q({0} l), |
1257
|
|
|
|
|
|
|
'other' => q({0} l), |
1258
|
|
|
|
|
|
|
}, |
1259
|
|
|
|
|
|
|
'meter' => { |
1260
|
|
|
|
|
|
|
'name' => q(meter), |
1261
|
|
|
|
|
|
|
'one' => q({0}m), |
1262
|
|
|
|
|
|
|
'other' => q({0}m), |
1263
|
|
|
|
|
|
|
}, |
1264
|
|
|
|
|
|
|
'millimeter' => { |
1265
|
|
|
|
|
|
|
'name' => q(mm), |
1266
|
|
|
|
|
|
|
'one' => q({0}mm), |
1267
|
|
|
|
|
|
|
'other' => q({0}mm), |
1268
|
|
|
|
|
|
|
}, |
1269
|
|
|
|
|
|
|
'millisecond' => { |
1270
|
|
|
|
|
|
|
'name' => q(ms), |
1271
|
|
|
|
|
|
|
'one' => q({0}ms), |
1272
|
|
|
|
|
|
|
'other' => q({0}ms), |
1273
|
|
|
|
|
|
|
}, |
1274
|
|
|
|
|
|
|
'minute' => { |
1275
|
|
|
|
|
|
|
'name' => q(min), |
1276
|
|
|
|
|
|
|
'one' => q({0} mins.), |
1277
|
|
|
|
|
|
|
'other' => q({0} mins.), |
1278
|
|
|
|
|
|
|
}, |
1279
|
|
|
|
|
|
|
'month' => { |
1280
|
|
|
|
|
|
|
'name' => q(mais), |
1281
|
|
|
|
|
|
|
'one' => q({0} mais), |
1282
|
|
|
|
|
|
|
'other' => q({0} mais), |
1283
|
|
|
|
|
|
|
}, |
1284
|
|
|
|
|
|
|
'second' => { |
1285
|
|
|
|
|
|
|
'name' => q(sec), |
1286
|
|
|
|
|
|
|
'one' => q({0} secs.), |
1287
|
|
|
|
|
|
|
'other' => q({0} secs.), |
1288
|
|
|
|
|
|
|
}, |
1289
|
|
|
|
|
|
|
'week' => { |
1290
|
|
|
|
|
|
|
'name' => q(emna), |
1291
|
|
|
|
|
|
|
'one' => q({0} emnas), |
1292
|
|
|
|
|
|
|
'other' => q({0} emnas), |
1293
|
|
|
|
|
|
|
}, |
1294
|
|
|
|
|
|
|
'year' => { |
1295
|
|
|
|
|
|
|
'name' => q(onn), |
1296
|
|
|
|
|
|
|
'one' => q({0} onns), |
1297
|
|
|
|
|
|
|
'other' => q({0} onns), |
1298
|
|
|
|
|
|
|
}, |
1299
|
|
|
|
|
|
|
}, |
1300
|
|
|
|
|
|
|
'short' => { |
1301
|
|
|
|
|
|
|
'celsius' => { |
1302
|
|
|
|
|
|
|
'name' => q(°C), |
1303
|
|
|
|
|
|
|
'one' => q({0} °C), |
1304
|
|
|
|
|
|
|
'other' => q({0} °C), |
1305
|
|
|
|
|
|
|
}, |
1306
|
|
|
|
|
|
|
'centimeter' => { |
1307
|
|
|
|
|
|
|
'name' => q(cm), |
1308
|
|
|
|
|
|
|
'one' => q({0} cm), |
1309
|
|
|
|
|
|
|
'other' => q({0} cm), |
1310
|
|
|
|
|
|
|
}, |
1311
|
|
|
|
|
|
|
'day' => { |
1312
|
|
|
|
|
|
|
'name' => q(dis), |
1313
|
|
|
|
|
|
|
'one' => q({0} di), |
1314
|
|
|
|
|
|
|
'other' => q({0} dis), |
1315
|
|
|
|
|
|
|
}, |
1316
|
|
|
|
|
|
|
'gram' => { |
1317
|
|
|
|
|
|
|
'name' => q(grams), |
1318
|
|
|
|
|
|
|
'one' => q({0} g), |
1319
|
|
|
|
|
|
|
'other' => q({0} g), |
1320
|
|
|
|
|
|
|
}, |
1321
|
|
|
|
|
|
|
'hour' => { |
1322
|
|
|
|
|
|
|
'name' => q(uras), |
1323
|
|
|
|
|
|
|
'one' => q({0} ura), |
1324
|
|
|
|
|
|
|
'other' => q({0} uras), |
1325
|
|
|
|
|
|
|
}, |
1326
|
|
|
|
|
|
|
'kilogram' => { |
1327
|
|
|
|
|
|
|
'name' => q(kg), |
1328
|
|
|
|
|
|
|
'one' => q({0} kg), |
1329
|
|
|
|
|
|
|
'other' => q({0} kg), |
1330
|
|
|
|
|
|
|
}, |
1331
|
|
|
|
|
|
|
'kilometer' => { |
1332
|
|
|
|
|
|
|
'name' => q(km), |
1333
|
|
|
|
|
|
|
'one' => q({0} km), |
1334
|
|
|
|
|
|
|
'other' => q({0} km), |
1335
|
|
|
|
|
|
|
}, |
1336
|
|
|
|
|
|
|
'kilometer-per-hour' => { |
1337
|
|
|
|
|
|
|
'name' => q(km/h), |
1338
|
|
|
|
|
|
|
'one' => q({0} km/h), |
1339
|
|
|
|
|
|
|
'other' => q({0} km/h), |
1340
|
|
|
|
|
|
|
}, |
1341
|
|
|
|
|
|
|
'liter' => { |
1342
|
|
|
|
|
|
|
'name' => q(liters), |
1343
|
|
|
|
|
|
|
'one' => q({0} l), |
1344
|
|
|
|
|
|
|
'other' => q({0} l), |
1345
|
|
|
|
|
|
|
}, |
1346
|
|
|
|
|
|
|
'meter' => { |
1347
|
|
|
|
|
|
|
'name' => q(meters), |
1348
|
|
|
|
|
|
|
'one' => q({0} m), |
1349
|
|
|
|
|
|
|
'other' => q({0} m), |
1350
|
|
|
|
|
|
|
}, |
1351
|
|
|
|
|
|
|
'millimeter' => { |
1352
|
|
|
|
|
|
|
'name' => q(mm), |
1353
|
|
|
|
|
|
|
'one' => q({0} mm), |
1354
|
|
|
|
|
|
|
'other' => q({0} mm), |
1355
|
|
|
|
|
|
|
}, |
1356
|
|
|
|
|
|
|
'millisecond' => { |
1357
|
|
|
|
|
|
|
'name' => q(ms), |
1358
|
|
|
|
|
|
|
'one' => q({0} ms), |
1359
|
|
|
|
|
|
|
'other' => q({0} ms), |
1360
|
|
|
|
|
|
|
}, |
1361
|
|
|
|
|
|
|
'minute' => { |
1362
|
|
|
|
|
|
|
'name' => q(minutas), |
1363
|
|
|
|
|
|
|
'one' => q({0} min.), |
1364
|
|
|
|
|
|
|
'other' => q({0} mins.), |
1365
|
|
|
|
|
|
|
}, |
1366
|
|
|
|
|
|
|
'month' => { |
1367
|
|
|
|
|
|
|
'name' => q(mais), |
1368
|
|
|
|
|
|
|
'one' => q({0} mais), |
1369
|
|
|
|
|
|
|
'other' => q({0} mais), |
1370
|
|
|
|
|
|
|
}, |
1371
|
|
|
|
|
|
|
'second' => { |
1372
|
|
|
|
|
|
|
'name' => q(secundas), |
1373
|
|
|
|
|
|
|
'one' => q({0} sec.), |
1374
|
|
|
|
|
|
|
'other' => q({0} secs.), |
1375
|
|
|
|
|
|
|
}, |
1376
|
|
|
|
|
|
|
'week' => { |
1377
|
|
|
|
|
|
|
'name' => q(emnas), |
1378
|
|
|
|
|
|
|
'one' => q({0} emna), |
1379
|
|
|
|
|
|
|
'other' => q({0} emnas), |
1380
|
|
|
|
|
|
|
}, |
1381
|
|
|
|
|
|
|
'year' => { |
1382
|
|
|
|
|
|
|
'name' => q(onns), |
1383
|
|
|
|
|
|
|
'one' => q({0} onn), |
1384
|
|
|
|
|
|
|
'other' => q({0} onns), |
1385
|
|
|
|
|
|
|
}, |
1386
|
|
|
|
|
|
|
}, |
1387
|
|
|
|
|
|
|
} } |
1388
|
|
|
|
|
|
|
); |
1389
|
|
|
|
|
|
|
|
1390
|
|
|
|
|
|
|
has 'yesstr' => ( |
1391
|
|
|
|
|
|
|
is => 'ro', |
1392
|
|
|
|
|
|
|
isa => RegexpRef, |
1393
|
|
|
|
|
|
|
init_arg => undef, |
1394
|
|
|
|
|
|
|
default => sub { qr'^(?i:gea|g|yes|y)$' } |
1395
|
|
|
|
|
|
|
); |
1396
|
|
|
|
|
|
|
|
1397
|
|
|
|
|
|
|
has 'nostr' => ( |
1398
|
|
|
|
|
|
|
is => 'ro', |
1399
|
|
|
|
|
|
|
isa => RegexpRef, |
1400
|
|
|
|
|
|
|
init_arg => undef, |
1401
|
|
|
|
|
|
|
default => sub { qr'^(?i:na|n)$' } |
1402
|
|
|
|
|
|
|
); |
1403
|
|
|
|
|
|
|
|
1404
|
|
|
|
|
|
|
has 'listPatterns' => ( |
1405
|
|
|
|
|
|
|
is => 'ro', |
1406
|
|
|
|
|
|
|
isa => HashRef, |
1407
|
|
|
|
|
|
|
init_arg => undef, |
1408
|
|
|
|
|
|
|
default => sub { { |
1409
|
|
|
|
|
|
|
start => q({0}, {1}), |
1410
|
|
|
|
|
|
|
middle => q({0}, {1}), |
1411
|
|
|
|
|
|
|
end => q({0}, {1}), |
1412
|
|
|
|
|
|
|
2 => q({0}, {1}), |
1413
|
|
|
|
|
|
|
} } |
1414
|
|
|
|
|
|
|
); |
1415
|
|
|
|
|
|
|
|
1416
|
|
|
|
|
|
|
has 'default_numbering_system' => ( |
1417
|
|
|
|
|
|
|
is => 'ro', |
1418
|
|
|
|
|
|
|
isa => Str, |
1419
|
|
|
|
|
|
|
init_arg => undef, |
1420
|
|
|
|
|
|
|
default => 'latn', |
1421
|
|
|
|
|
|
|
); |
1422
|
|
|
|
|
|
|
|
1423
|
|
|
|
|
|
|
has native_numbering_system => ( |
1424
|
|
|
|
|
|
|
is => 'ro', |
1425
|
|
|
|
|
|
|
isa => Str, |
1426
|
|
|
|
|
|
|
init_arg => undef, |
1427
|
|
|
|
|
|
|
default => 'latn', |
1428
|
|
|
|
|
|
|
); |
1429
|
|
|
|
|
|
|
|
1430
|
|
|
|
|
|
|
has 'minimum_grouping_digits' => ( |
1431
|
|
|
|
|
|
|
is =>'ro', |
1432
|
|
|
|
|
|
|
isa => Int, |
1433
|
|
|
|
|
|
|
init_arg => undef, |
1434
|
|
|
|
|
|
|
default => 1, |
1435
|
|
|
|
|
|
|
); |
1436
|
|
|
|
|
|
|
|
1437
|
|
|
|
|
|
|
has 'number_symbols' => ( |
1438
|
|
|
|
|
|
|
is => 'ro', |
1439
|
|
|
|
|
|
|
isa => HashRef, |
1440
|
|
|
|
|
|
|
init_arg => undef, |
1441
|
|
|
|
|
|
|
default => sub { { |
1442
|
|
|
|
|
|
|
'latn' => { |
1443
|
|
|
|
|
|
|
'decimal' => q(.), |
1444
|
|
|
|
|
|
|
'exponential' => q(E), |
1445
|
|
|
|
|
|
|
'group' => q(’), |
1446
|
|
|
|
|
|
|
'infinity' => q(∞), |
1447
|
|
|
|
|
|
|
'list' => q(;), |
1448
|
|
|
|
|
|
|
'minusSign' => q(−), |
1449
|
|
|
|
|
|
|
'nan' => q(NaN), |
1450
|
|
|
|
|
|
|
'perMille' => q(‰), |
1451
|
|
|
|
|
|
|
'percentSign' => q(%), |
1452
|
|
|
|
|
|
|
'plusSign' => q(+), |
1453
|
|
|
|
|
|
|
'superscriptingExponent' => q(×), |
1454
|
|
|
|
|
|
|
'timeSeparator' => q(:), |
1455
|
|
|
|
|
|
|
}, |
1456
|
|
|
|
|
|
|
} } |
1457
|
|
|
|
|
|
|
); |
1458
|
|
|
|
|
|
|
|
1459
|
|
|
|
|
|
|
has 'number_formats' => ( |
1460
|
|
|
|
|
|
|
is => 'ro', |
1461
|
|
|
|
|
|
|
isa => HashRef, |
1462
|
|
|
|
|
|
|
init_arg => undef, |
1463
|
|
|
|
|
|
|
default => sub { { |
1464
|
|
|
|
|
|
|
decimalFormat => { |
1465
|
|
|
|
|
|
|
'default' => { |
1466
|
|
|
|
|
|
|
'standard' => { |
1467
|
|
|
|
|
|
|
'default' => '#,##0.###', |
1468
|
|
|
|
|
|
|
}, |
1469
|
|
|
|
|
|
|
}, |
1470
|
|
|
|
|
|
|
}, |
1471
|
|
|
|
|
|
|
percentFormat => { |
1472
|
|
|
|
|
|
|
'default' => { |
1473
|
|
|
|
|
|
|
'standard' => { |
1474
|
|
|
|
|
|
|
'default' => '#,##0 %', |
1475
|
|
|
|
|
|
|
}, |
1476
|
|
|
|
|
|
|
}, |
1477
|
|
|
|
|
|
|
}, |
1478
|
|
|
|
|
|
|
scientificFormat => { |
1479
|
|
|
|
|
|
|
'default' => { |
1480
|
|
|
|
|
|
|
'standard' => { |
1481
|
|
|
|
|
|
|
'default' => '#E0', |
1482
|
|
|
|
|
|
|
}, |
1483
|
|
|
|
|
|
|
}, |
1484
|
|
|
|
|
|
|
}, |
1485
|
|
|
|
|
|
|
} }, |
1486
|
|
|
|
|
|
|
); |
1487
|
|
|
|
|
|
|
|
1488
|
|
|
|
|
|
|
has 'number_currency_formats' => ( |
1489
|
|
|
|
|
|
|
is => 'ro', |
1490
|
|
|
|
|
|
|
isa => HashRef, |
1491
|
|
|
|
|
|
|
init_arg => undef, |
1492
|
|
|
|
|
|
|
default => sub { { |
1493
|
|
|
|
|
|
|
'latn' => { |
1494
|
|
|
|
|
|
|
'pattern' => { |
1495
|
|
|
|
|
|
|
'default' => { |
1496
|
|
|
|
|
|
|
'accounting' => { |
1497
|
|
|
|
|
|
|
'positive' => '#,##0.00 ¤', |
1498
|
|
|
|
|
|
|
}, |
1499
|
|
|
|
|
|
|
'standard' => { |
1500
|
|
|
|
|
|
|
'positive' => '#,##0.00 ¤', |
1501
|
|
|
|
|
|
|
}, |
1502
|
|
|
|
|
|
|
}, |
1503
|
|
|
|
|
|
|
}, |
1504
|
|
|
|
|
|
|
}, |
1505
|
|
|
|
|
|
|
} }, |
1506
|
|
|
|
|
|
|
); |
1507
|
|
|
|
|
|
|
|
1508
|
|
|
|
|
|
|
has 'currencies' => ( |
1509
|
|
|
|
|
|
|
is => 'ro', |
1510
|
|
|
|
|
|
|
isa => HashRef, |
1511
|
|
|
|
|
|
|
init_arg => undef, |
1512
|
|
|
|
|
|
|
default => sub { { |
1513
|
|
|
|
|
|
|
'ADP' => { |
1514
|
|
|
|
|
|
|
display_name => { |
1515
|
|
|
|
|
|
|
'currency' => q(peseta andorrana), |
1516
|
|
|
|
|
|
|
}, |
1517
|
|
|
|
|
|
|
}, |
1518
|
|
|
|
|
|
|
'AED' => { |
1519
|
|
|
|
|
|
|
display_name => { |
1520
|
|
|
|
|
|
|
'currency' => q(dirham dals Emirats Arabs Unids), |
1521
|
|
|
|
|
|
|
}, |
1522
|
|
|
|
|
|
|
}, |
1523
|
|
|
|
|
|
|
'AFA' => { |
1524
|
|
|
|
|
|
|
display_name => { |
1525
|
|
|
|
|
|
|
'currency' => q(afghani \(1927–2002\)), |
1526
|
|
|
|
|
|
|
}, |
1527
|
|
|
|
|
|
|
}, |
1528
|
|
|
|
|
|
|
'AFN' => { |
1529
|
|
|
|
|
|
|
display_name => { |
1530
|
|
|
|
|
|
|
'currency' => q(afghani), |
1531
|
|
|
|
|
|
|
}, |
1532
|
|
|
|
|
|
|
}, |
1533
|
|
|
|
|
|
|
'ALK' => { |
1534
|
|
|
|
|
|
|
display_name => { |
1535
|
|
|
|
|
|
|
'currency' => q(lek albanais \(1947–1961\)), |
1536
|
|
|
|
|
|
|
}, |
1537
|
|
|
|
|
|
|
}, |
1538
|
|
|
|
|
|
|
'ALL' => { |
1539
|
|
|
|
|
|
|
display_name => { |
1540
|
|
|
|
|
|
|
'currency' => q(lek), |
1541
|
|
|
|
|
|
|
}, |
1542
|
|
|
|
|
|
|
}, |
1543
|
|
|
|
|
|
|
'AMD' => { |
1544
|
|
|
|
|
|
|
display_name => { |
1545
|
|
|
|
|
|
|
'currency' => q(dram armen), |
1546
|
|
|
|
|
|
|
}, |
1547
|
|
|
|
|
|
|
}, |
1548
|
|
|
|
|
|
|
'ANG' => { |
1549
|
|
|
|
|
|
|
display_name => { |
1550
|
|
|
|
|
|
|
'currency' => q(flurin da las Antillas Olandaisas), |
1551
|
|
|
|
|
|
|
}, |
1552
|
|
|
|
|
|
|
}, |
1553
|
|
|
|
|
|
|
'AOA' => { |
1554
|
|
|
|
|
|
|
display_name => { |
1555
|
|
|
|
|
|
|
'currency' => q(kwanza angolan), |
1556
|
|
|
|
|
|
|
}, |
1557
|
|
|
|
|
|
|
}, |
1558
|
|
|
|
|
|
|
'AOK' => { |
1559
|
|
|
|
|
|
|
display_name => { |
1560
|
|
|
|
|
|
|
'currency' => q(kwanza angolan \(1977–1990\)), |
1561
|
|
|
|
|
|
|
}, |
1562
|
|
|
|
|
|
|
}, |
1563
|
|
|
|
|
|
|
'AON' => { |
1564
|
|
|
|
|
|
|
display_name => { |
1565
|
|
|
|
|
|
|
'currency' => q(nov kwanza angolan), |
1566
|
|
|
|
|
|
|
}, |
1567
|
|
|
|
|
|
|
}, |
1568
|
|
|
|
|
|
|
'AOR' => { |
1569
|
|
|
|
|
|
|
display_name => { |
1570
|
|
|
|
|
|
|
'currency' => q(kwanza angolan reajustado), |
1571
|
|
|
|
|
|
|
}, |
1572
|
|
|
|
|
|
|
}, |
1573
|
|
|
|
|
|
|
'ARA' => { |
1574
|
|
|
|
|
|
|
display_name => { |
1575
|
|
|
|
|
|
|
'currency' => q(austral argentin), |
1576
|
|
|
|
|
|
|
}, |
1577
|
|
|
|
|
|
|
}, |
1578
|
|
|
|
|
|
|
'ARL' => { |
1579
|
|
|
|
|
|
|
display_name => { |
1580
|
|
|
|
|
|
|
'currency' => q(peso argentin ley), |
1581
|
|
|
|
|
|
|
}, |
1582
|
|
|
|
|
|
|
}, |
1583
|
|
|
|
|
|
|
'ARM' => { |
1584
|
|
|
|
|
|
|
display_name => { |
1585
|
|
|
|
|
|
|
'currency' => q(peso argentin moneda nacional), |
1586
|
|
|
|
|
|
|
}, |
1587
|
|
|
|
|
|
|
}, |
1588
|
|
|
|
|
|
|
'ARP' => { |
1589
|
|
|
|
|
|
|
display_name => { |
1590
|
|
|
|
|
|
|
'currency' => q(peso argentin \(1983–1985\)), |
1591
|
|
|
|
|
|
|
}, |
1592
|
|
|
|
|
|
|
}, |
1593
|
|
|
|
|
|
|
'ARS' => { |
1594
|
|
|
|
|
|
|
display_name => { |
1595
|
|
|
|
|
|
|
'currency' => q(peso argentin), |
1596
|
|
|
|
|
|
|
}, |
1597
|
|
|
|
|
|
|
}, |
1598
|
|
|
|
|
|
|
'ATS' => { |
1599
|
|
|
|
|
|
|
display_name => { |
1600
|
|
|
|
|
|
|
'currency' => q(schilling austriac), |
1601
|
|
|
|
|
|
|
}, |
1602
|
|
|
|
|
|
|
}, |
1603
|
|
|
|
|
|
|
'AUD' => { |
1604
|
|
|
|
|
|
|
symbol => 'A$', |
1605
|
|
|
|
|
|
|
display_name => { |
1606
|
|
|
|
|
|
|
'currency' => q(dollar australian), |
1607
|
|
|
|
|
|
|
'one' => q(dollar australian), |
1608
|
|
|
|
|
|
|
'other' => q(dollar australian), |
1609
|
|
|
|
|
|
|
}, |
1610
|
|
|
|
|
|
|
}, |
1611
|
|
|
|
|
|
|
'AWG' => { |
1612
|
|
|
|
|
|
|
display_name => { |
1613
|
|
|
|
|
|
|
'currency' => q(flurin da l’Aruba), |
1614
|
|
|
|
|
|
|
}, |
1615
|
|
|
|
|
|
|
}, |
1616
|
|
|
|
|
|
|
'AZM' => { |
1617
|
|
|
|
|
|
|
display_name => { |
1618
|
|
|
|
|
|
|
'currency' => q(manat aserbaidschanic \(1993–2006\)), |
1619
|
|
|
|
|
|
|
}, |
1620
|
|
|
|
|
|
|
}, |
1621
|
|
|
|
|
|
|
'AZN' => { |
1622
|
|
|
|
|
|
|
display_name => { |
1623
|
|
|
|
|
|
|
'currency' => q(manat aserbaidschanic), |
1624
|
|
|
|
|
|
|
}, |
1625
|
|
|
|
|
|
|
}, |
1626
|
|
|
|
|
|
|
'BAD' => { |
1627
|
|
|
|
|
|
|
display_name => { |
1628
|
|
|
|
|
|
|
'currency' => q(dinar da la Bosnia ed Erzegovina), |
1629
|
|
|
|
|
|
|
}, |
1630
|
|
|
|
|
|
|
}, |
1631
|
|
|
|
|
|
|
'BAM' => { |
1632
|
|
|
|
|
|
|
display_name => { |
1633
|
|
|
|
|
|
|
'currency' => q(marc convertibel bosniac), |
1634
|
|
|
|
|
|
|
}, |
1635
|
|
|
|
|
|
|
}, |
1636
|
|
|
|
|
|
|
'BAN' => { |
1637
|
|
|
|
|
|
|
display_name => { |
1638
|
|
|
|
|
|
|
'currency' => q(nov dinar da la Bosnia ed Erzegovina), |
1639
|
|
|
|
|
|
|
}, |
1640
|
|
|
|
|
|
|
}, |
1641
|
|
|
|
|
|
|
'BBD' => { |
1642
|
|
|
|
|
|
|
display_name => { |
1643
|
|
|
|
|
|
|
'currency' => q(dollar da Barbados), |
1644
|
|
|
|
|
|
|
}, |
1645
|
|
|
|
|
|
|
}, |
1646
|
|
|
|
|
|
|
'BDT' => { |
1647
|
|
|
|
|
|
|
display_name => { |
1648
|
|
|
|
|
|
|
'currency' => q(taka bangladais), |
1649
|
|
|
|
|
|
|
}, |
1650
|
|
|
|
|
|
|
}, |
1651
|
|
|
|
|
|
|
'BEC' => { |
1652
|
|
|
|
|
|
|
display_name => { |
1653
|
|
|
|
|
|
|
'currency' => q(franc beltg \(convertibel\)), |
1654
|
|
|
|
|
|
|
}, |
1655
|
|
|
|
|
|
|
}, |
1656
|
|
|
|
|
|
|
'BEF' => { |
1657
|
|
|
|
|
|
|
display_name => { |
1658
|
|
|
|
|
|
|
'currency' => q(franc beltg), |
1659
|
|
|
|
|
|
|
}, |
1660
|
|
|
|
|
|
|
}, |
1661
|
|
|
|
|
|
|
'BEL' => { |
1662
|
|
|
|
|
|
|
display_name => { |
1663
|
|
|
|
|
|
|
'currency' => q(franc beltg \(finanzial\)), |
1664
|
|
|
|
|
|
|
}, |
1665
|
|
|
|
|
|
|
}, |
1666
|
|
|
|
|
|
|
'BGL' => { |
1667
|
|
|
|
|
|
|
display_name => { |
1668
|
|
|
|
|
|
|
'currency' => q(lev bulgar), |
1669
|
|
|
|
|
|
|
}, |
1670
|
|
|
|
|
|
|
}, |
1671
|
|
|
|
|
|
|
'BGM' => { |
1672
|
|
|
|
|
|
|
display_name => { |
1673
|
|
|
|
|
|
|
'currency' => q(lev bulgar socialistic), |
1674
|
|
|
|
|
|
|
}, |
1675
|
|
|
|
|
|
|
}, |
1676
|
|
|
|
|
|
|
'BGN' => { |
1677
|
|
|
|
|
|
|
display_name => { |
1678
|
|
|
|
|
|
|
'currency' => q(nov lev bulgar), |
1679
|
|
|
|
|
|
|
}, |
1680
|
|
|
|
|
|
|
}, |
1681
|
|
|
|
|
|
|
'BGO' => { |
1682
|
|
|
|
|
|
|
display_name => { |
1683
|
|
|
|
|
|
|
'currency' => q(vegl lev bulgar), |
1684
|
|
|
|
|
|
|
}, |
1685
|
|
|
|
|
|
|
}, |
1686
|
|
|
|
|
|
|
'BHD' => { |
1687
|
|
|
|
|
|
|
display_name => { |
1688
|
|
|
|
|
|
|
'currency' => q(dinar dal Bahrain), |
1689
|
|
|
|
|
|
|
}, |
1690
|
|
|
|
|
|
|
}, |
1691
|
|
|
|
|
|
|
'BIF' => { |
1692
|
|
|
|
|
|
|
display_name => { |
1693
|
|
|
|
|
|
|
'currency' => q(franc dal Burundi), |
1694
|
|
|
|
|
|
|
}, |
1695
|
|
|
|
|
|
|
}, |
1696
|
|
|
|
|
|
|
'BMD' => { |
1697
|
|
|
|
|
|
|
display_name => { |
1698
|
|
|
|
|
|
|
'currency' => q(dollar da las Bermudas), |
1699
|
|
|
|
|
|
|
}, |
1700
|
|
|
|
|
|
|
}, |
1701
|
|
|
|
|
|
|
'BND' => { |
1702
|
|
|
|
|
|
|
display_name => { |
1703
|
|
|
|
|
|
|
'currency' => q(dollar dal Brunei), |
1704
|
|
|
|
|
|
|
}, |
1705
|
|
|
|
|
|
|
}, |
1706
|
|
|
|
|
|
|
'BOB' => { |
1707
|
|
|
|
|
|
|
display_name => { |
1708
|
|
|
|
|
|
|
'currency' => q(boliviano), |
1709
|
|
|
|
|
|
|
}, |
1710
|
|
|
|
|
|
|
}, |
1711
|
|
|
|
|
|
|
'BOL' => { |
1712
|
|
|
|
|
|
|
display_name => { |
1713
|
|
|
|
|
|
|
'currency' => q(vegl boliviano), |
1714
|
|
|
|
|
|
|
}, |
1715
|
|
|
|
|
|
|
}, |
1716
|
|
|
|
|
|
|
'BOP' => { |
1717
|
|
|
|
|
|
|
display_name => { |
1718
|
|
|
|
|
|
|
'currency' => q(peso bolivian), |
1719
|
|
|
|
|
|
|
}, |
1720
|
|
|
|
|
|
|
}, |
1721
|
|
|
|
|
|
|
'BOV' => { |
1722
|
|
|
|
|
|
|
display_name => { |
1723
|
|
|
|
|
|
|
'currency' => q(mvdol bolivian), |
1724
|
|
|
|
|
|
|
}, |
1725
|
|
|
|
|
|
|
}, |
1726
|
|
|
|
|
|
|
'BRB' => { |
1727
|
|
|
|
|
|
|
display_name => { |
1728
|
|
|
|
|
|
|
'currency' => q(cruzeiro novo brasilian \(1967–1986\)), |
1729
|
|
|
|
|
|
|
}, |
1730
|
|
|
|
|
|
|
}, |
1731
|
|
|
|
|
|
|
'BRC' => { |
1732
|
|
|
|
|
|
|
display_name => { |
1733
|
|
|
|
|
|
|
'currency' => q(cruzado brasilian), |
1734
|
|
|
|
|
|
|
}, |
1735
|
|
|
|
|
|
|
}, |
1736
|
|
|
|
|
|
|
'BRE' => { |
1737
|
|
|
|
|
|
|
display_name => { |
1738
|
|
|
|
|
|
|
'currency' => q(cruzeiro brasilian \(1990–1993\)), |
1739
|
|
|
|
|
|
|
}, |
1740
|
|
|
|
|
|
|
}, |
1741
|
|
|
|
|
|
|
'BRL' => { |
1742
|
|
|
|
|
|
|
display_name => { |
1743
|
|
|
|
|
|
|
'currency' => q(real brasilian), |
1744
|
|
|
|
|
|
|
}, |
1745
|
|
|
|
|
|
|
}, |
1746
|
|
|
|
|
|
|
'BRN' => { |
1747
|
|
|
|
|
|
|
display_name => { |
1748
|
|
|
|
|
|
|
'currency' => q(cruzado novo brasilian), |
1749
|
|
|
|
|
|
|
}, |
1750
|
|
|
|
|
|
|
}, |
1751
|
|
|
|
|
|
|
'BRR' => { |
1752
|
|
|
|
|
|
|
display_name => { |
1753
|
|
|
|
|
|
|
'currency' => q(cruzeiro brasilian), |
1754
|
|
|
|
|
|
|
}, |
1755
|
|
|
|
|
|
|
}, |
1756
|
|
|
|
|
|
|
'BRZ' => { |
1757
|
|
|
|
|
|
|
display_name => { |
1758
|
|
|
|
|
|
|
'currency' => q(vegl cruzeiro brasilian), |
1759
|
|
|
|
|
|
|
}, |
1760
|
|
|
|
|
|
|
}, |
1761
|
|
|
|
|
|
|
'BSD' => { |
1762
|
|
|
|
|
|
|
display_name => { |
1763
|
|
|
|
|
|
|
'currency' => q(dollar da las Bahamas), |
1764
|
|
|
|
|
|
|
}, |
1765
|
|
|
|
|
|
|
}, |
1766
|
|
|
|
|
|
|
'BTN' => { |
1767
|
|
|
|
|
|
|
display_name => { |
1768
|
|
|
|
|
|
|
'currency' => q(ngultrum butanais), |
1769
|
|
|
|
|
|
|
}, |
1770
|
|
|
|
|
|
|
}, |
1771
|
|
|
|
|
|
|
'BUK' => { |
1772
|
|
|
|
|
|
|
display_name => { |
1773
|
|
|
|
|
|
|
'currency' => q(Kyat burmais), |
1774
|
|
|
|
|
|
|
}, |
1775
|
|
|
|
|
|
|
}, |
1776
|
|
|
|
|
|
|
'BWP' => { |
1777
|
|
|
|
|
|
|
display_name => { |
1778
|
|
|
|
|
|
|
'currency' => q(pula da la Botswana), |
1779
|
|
|
|
|
|
|
}, |
1780
|
|
|
|
|
|
|
}, |
1781
|
|
|
|
|
|
|
'BYB' => { |
1782
|
|
|
|
|
|
|
display_name => { |
1783
|
|
|
|
|
|
|
'currency' => q(nov rubel bieloruss \(1994–1999\)), |
1784
|
|
|
|
|
|
|
}, |
1785
|
|
|
|
|
|
|
}, |
1786
|
|
|
|
|
|
|
'BYN' => { |
1787
|
|
|
|
|
|
|
display_name => { |
1788
|
|
|
|
|
|
|
'currency' => q(rubel bieloruss), |
1789
|
|
|
|
|
|
|
}, |
1790
|
|
|
|
|
|
|
}, |
1791
|
|
|
|
|
|
|
'BYR' => { |
1792
|
|
|
|
|
|
|
display_name => { |
1793
|
|
|
|
|
|
|
'currency' => q(rubel bieloruss \(2000–2016\)), |
1794
|
|
|
|
|
|
|
}, |
1795
|
|
|
|
|
|
|
}, |
1796
|
|
|
|
|
|
|
'BZD' => { |
1797
|
|
|
|
|
|
|
display_name => { |
1798
|
|
|
|
|
|
|
'currency' => q(dollar dal Belize), |
1799
|
|
|
|
|
|
|
}, |
1800
|
|
|
|
|
|
|
}, |
1801
|
|
|
|
|
|
|
'CAD' => { |
1802
|
|
|
|
|
|
|
symbol => 'CA$', |
1803
|
|
|
|
|
|
|
display_name => { |
1804
|
|
|
|
|
|
|
'currency' => q(dollar canadais), |
1805
|
|
|
|
|
|
|
'one' => q(dollar canadais), |
1806
|
|
|
|
|
|
|
'other' => q(dollar canadais), |
1807
|
|
|
|
|
|
|
}, |
1808
|
|
|
|
|
|
|
}, |
1809
|
|
|
|
|
|
|
'CDF' => { |
1810
|
|
|
|
|
|
|
display_name => { |
1811
|
|
|
|
|
|
|
'currency' => q(franc congolais), |
1812
|
|
|
|
|
|
|
}, |
1813
|
|
|
|
|
|
|
}, |
1814
|
|
|
|
|
|
|
'CHE' => { |
1815
|
|
|
|
|
|
|
display_name => { |
1816
|
|
|
|
|
|
|
'currency' => q(euro WIR), |
1817
|
|
|
|
|
|
|
}, |
1818
|
|
|
|
|
|
|
}, |
1819
|
|
|
|
|
|
|
'CHF' => { |
1820
|
|
|
|
|
|
|
symbol => 'CHF', |
1821
|
|
|
|
|
|
|
display_name => { |
1822
|
|
|
|
|
|
|
'currency' => q(franc svizzer), |
1823
|
|
|
|
|
|
|
'one' => q(franc svizzer), |
1824
|
|
|
|
|
|
|
'other' => q(franc svizzer), |
1825
|
|
|
|
|
|
|
}, |
1826
|
|
|
|
|
|
|
}, |
1827
|
|
|
|
|
|
|
'CHW' => { |
1828
|
|
|
|
|
|
|
display_name => { |
1829
|
|
|
|
|
|
|
'currency' => q(franc WIR), |
1830
|
|
|
|
|
|
|
}, |
1831
|
|
|
|
|
|
|
}, |
1832
|
|
|
|
|
|
|
'CLE' => { |
1833
|
|
|
|
|
|
|
display_name => { |
1834
|
|
|
|
|
|
|
'currency' => q(escudo chilen), |
1835
|
|
|
|
|
|
|
}, |
1836
|
|
|
|
|
|
|
}, |
1837
|
|
|
|
|
|
|
'CLF' => { |
1838
|
|
|
|
|
|
|
display_name => { |
1839
|
|
|
|
|
|
|
'currency' => q(unidades de fomento chilenas), |
1840
|
|
|
|
|
|
|
}, |
1841
|
|
|
|
|
|
|
}, |
1842
|
|
|
|
|
|
|
'CLP' => { |
1843
|
|
|
|
|
|
|
display_name => { |
1844
|
|
|
|
|
|
|
'currency' => q(peso chilen), |
1845
|
|
|
|
|
|
|
}, |
1846
|
|
|
|
|
|
|
}, |
1847
|
|
|
|
|
|
|
'CNY' => { |
1848
|
|
|
|
|
|
|
display_name => { |
1849
|
|
|
|
|
|
|
'currency' => q(yuan renminbi chinais), |
1850
|
|
|
|
|
|
|
}, |
1851
|
|
|
|
|
|
|
}, |
1852
|
|
|
|
|
|
|
'COP' => { |
1853
|
|
|
|
|
|
|
display_name => { |
1854
|
|
|
|
|
|
|
'currency' => q(peso columbian), |
1855
|
|
|
|
|
|
|
}, |
1856
|
|
|
|
|
|
|
}, |
1857
|
|
|
|
|
|
|
'COU' => { |
1858
|
|
|
|
|
|
|
display_name => { |
1859
|
|
|
|
|
|
|
'currency' => q(unidad de valor real), |
1860
|
|
|
|
|
|
|
}, |
1861
|
|
|
|
|
|
|
}, |
1862
|
|
|
|
|
|
|
'CRC' => { |
1863
|
|
|
|
|
|
|
display_name => { |
1864
|
|
|
|
|
|
|
'currency' => q(colon da la Costa Rica), |
1865
|
|
|
|
|
|
|
}, |
1866
|
|
|
|
|
|
|
}, |
1867
|
|
|
|
|
|
|
'CSD' => { |
1868
|
|
|
|
|
|
|
display_name => { |
1869
|
|
|
|
|
|
|
'currency' => q(vegl dinar serb), |
1870
|
|
|
|
|
|
|
}, |
1871
|
|
|
|
|
|
|
}, |
1872
|
|
|
|
|
|
|
'CSK' => { |
1873
|
|
|
|
|
|
|
display_name => { |
1874
|
|
|
|
|
|
|
'currency' => q(cruna tschecoslovaca), |
1875
|
|
|
|
|
|
|
}, |
1876
|
|
|
|
|
|
|
}, |
1877
|
|
|
|
|
|
|
'CUP' => { |
1878
|
|
|
|
|
|
|
display_name => { |
1879
|
|
|
|
|
|
|
'currency' => q(peso cuban), |
1880
|
|
|
|
|
|
|
}, |
1881
|
|
|
|
|
|
|
}, |
1882
|
|
|
|
|
|
|
'CVE' => { |
1883
|
|
|
|
|
|
|
display_name => { |
1884
|
|
|
|
|
|
|
'currency' => q(escudo dal Cap Verd), |
1885
|
|
|
|
|
|
|
}, |
1886
|
|
|
|
|
|
|
}, |
1887
|
|
|
|
|
|
|
'CYP' => { |
1888
|
|
|
|
|
|
|
display_name => { |
1889
|
|
|
|
|
|
|
'currency' => q(glivra cipriota), |
1890
|
|
|
|
|
|
|
}, |
1891
|
|
|
|
|
|
|
}, |
1892
|
|
|
|
|
|
|
'CZK' => { |
1893
|
|
|
|
|
|
|
display_name => { |
1894
|
|
|
|
|
|
|
'currency' => q(cruna tscheca), |
1895
|
|
|
|
|
|
|
}, |
1896
|
|
|
|
|
|
|
}, |
1897
|
|
|
|
|
|
|
'DDM' => { |
1898
|
|
|
|
|
|
|
display_name => { |
1899
|
|
|
|
|
|
|
'currency' => q(marc da la Germania da l’Ost), |
1900
|
|
|
|
|
|
|
}, |
1901
|
|
|
|
|
|
|
}, |
1902
|
|
|
|
|
|
|
'DEM' => { |
1903
|
|
|
|
|
|
|
display_name => { |
1904
|
|
|
|
|
|
|
'currency' => q(marc tudestg), |
1905
|
|
|
|
|
|
|
}, |
1906
|
|
|
|
|
|
|
}, |
1907
|
|
|
|
|
|
|
'DJF' => { |
1908
|
|
|
|
|
|
|
display_name => { |
1909
|
|
|
|
|
|
|
'currency' => q(franc dal Dschibuti), |
1910
|
|
|
|
|
|
|
}, |
1911
|
|
|
|
|
|
|
}, |
1912
|
|
|
|
|
|
|
'DKK' => { |
1913
|
|
|
|
|
|
|
symbol => 'DKK', |
1914
|
|
|
|
|
|
|
display_name => { |
1915
|
|
|
|
|
|
|
'currency' => q(cruna danaisa), |
1916
|
|
|
|
|
|
|
'one' => q(cruna danaisa), |
1917
|
|
|
|
|
|
|
'other' => q(cruna danaisa), |
1918
|
|
|
|
|
|
|
}, |
1919
|
|
|
|
|
|
|
}, |
1920
|
|
|
|
|
|
|
'DOP' => { |
1921
|
|
|
|
|
|
|
display_name => { |
1922
|
|
|
|
|
|
|
'currency' => q(peso dominican), |
1923
|
|
|
|
|
|
|
}, |
1924
|
|
|
|
|
|
|
}, |
1925
|
|
|
|
|
|
|
'DZD' => { |
1926
|
|
|
|
|
|
|
display_name => { |
1927
|
|
|
|
|
|
|
'currency' => q(dinar algerian), |
1928
|
|
|
|
|
|
|
}, |
1929
|
|
|
|
|
|
|
}, |
1930
|
|
|
|
|
|
|
'ECS' => { |
1931
|
|
|
|
|
|
|
display_name => { |
1932
|
|
|
|
|
|
|
'currency' => q(sucre equadorian), |
1933
|
|
|
|
|
|
|
}, |
1934
|
|
|
|
|
|
|
}, |
1935
|
|
|
|
|
|
|
'ECV' => { |
1936
|
|
|
|
|
|
|
display_name => { |
1937
|
|
|
|
|
|
|
'currency' => q(unitad da scuntrada da l’Ecuador), |
1938
|
|
|
|
|
|
|
}, |
1939
|
|
|
|
|
|
|
}, |
1940
|
|
|
|
|
|
|
'EEK' => { |
1941
|
|
|
|
|
|
|
symbol => 'EEK', |
1942
|
|
|
|
|
|
|
display_name => { |
1943
|
|
|
|
|
|
|
'currency' => q(cruna estona), |
1944
|
|
|
|
|
|
|
'one' => q(cruna estona), |
1945
|
|
|
|
|
|
|
'other' => q(cruna estona), |
1946
|
|
|
|
|
|
|
}, |
1947
|
|
|
|
|
|
|
}, |
1948
|
|
|
|
|
|
|
'EGP' => { |
1949
|
|
|
|
|
|
|
display_name => { |
1950
|
|
|
|
|
|
|
'currency' => q(glivra egipziana), |
1951
|
|
|
|
|
|
|
}, |
1952
|
|
|
|
|
|
|
}, |
1953
|
|
|
|
|
|
|
'ERN' => { |
1954
|
|
|
|
|
|
|
display_name => { |
1955
|
|
|
|
|
|
|
'currency' => q(nakfa eritreic), |
1956
|
|
|
|
|
|
|
}, |
1957
|
|
|
|
|
|
|
}, |
1958
|
|
|
|
|
|
|
'ESA' => { |
1959
|
|
|
|
|
|
|
display_name => { |
1960
|
|
|
|
|
|
|
'currency' => q(peseta spagnola \(conto A\)), |
1961
|
|
|
|
|
|
|
}, |
1962
|
|
|
|
|
|
|
}, |
1963
|
|
|
|
|
|
|
'ESB' => { |
1964
|
|
|
|
|
|
|
display_name => { |
1965
|
|
|
|
|
|
|
'currency' => q(peseta spagnola \(conto convertibel\)), |
1966
|
|
|
|
|
|
|
}, |
1967
|
|
|
|
|
|
|
}, |
1968
|
|
|
|
|
|
|
'ESP' => { |
1969
|
|
|
|
|
|
|
display_name => { |
1970
|
|
|
|
|
|
|
'currency' => q(peseta spagnola), |
1971
|
|
|
|
|
|
|
}, |
1972
|
|
|
|
|
|
|
}, |
1973
|
|
|
|
|
|
|
'ETB' => { |
1974
|
|
|
|
|
|
|
display_name => { |
1975
|
|
|
|
|
|
|
'currency' => q(birr etiopic), |
1976
|
|
|
|
|
|
|
}, |
1977
|
|
|
|
|
|
|
}, |
1978
|
|
|
|
|
|
|
'EUR' => { |
1979
|
|
|
|
|
|
|
symbol => '€', |
1980
|
|
|
|
|
|
|
display_name => { |
1981
|
|
|
|
|
|
|
'currency' => q(euro), |
1982
|
|
|
|
|
|
|
'one' => q(euro), |
1983
|
|
|
|
|
|
|
'other' => q(euro), |
1984
|
|
|
|
|
|
|
}, |
1985
|
|
|
|
|
|
|
}, |
1986
|
|
|
|
|
|
|
'FIM' => { |
1987
|
|
|
|
|
|
|
symbol => 'FIM', |
1988
|
|
|
|
|
|
|
display_name => { |
1989
|
|
|
|
|
|
|
'currency' => q(marc finlandais), |
1990
|
|
|
|
|
|
|
'one' => q(marc finlandais), |
1991
|
|
|
|
|
|
|
'other' => q(marc finlandais), |
1992
|
|
|
|
|
|
|
}, |
1993
|
|
|
|
|
|
|
}, |
1994
|
|
|
|
|
|
|
'FJD' => { |
1995
|
|
|
|
|
|
|
display_name => { |
1996
|
|
|
|
|
|
|
'currency' => q(dollar dal Fidschi), |
1997
|
|
|
|
|
|
|
}, |
1998
|
|
|
|
|
|
|
}, |
1999
|
|
|
|
|
|
|
'FKP' => { |
2000
|
|
|
|
|
|
|
display_name => { |
2001
|
|
|
|
|
|
|
'currency' => q(glivra dal Falkland), |
2002
|
|
|
|
|
|
|
}, |
2003
|
|
|
|
|
|
|
}, |
2004
|
|
|
|
|
|
|
'FRF' => { |
2005
|
|
|
|
|
|
|
display_name => { |
2006
|
|
|
|
|
|
|
'currency' => q(franc franzos), |
2007
|
|
|
|
|
|
|
}, |
2008
|
|
|
|
|
|
|
}, |
2009
|
|
|
|
|
|
|
'GBP' => { |
2010
|
|
|
|
|
|
|
symbol => '£', |
2011
|
|
|
|
|
|
|
display_name => { |
2012
|
|
|
|
|
|
|
'currency' => q(glivra sterlina), |
2013
|
|
|
|
|
|
|
'one' => q(glivra sterlina), |
2014
|
|
|
|
|
|
|
'other' => q(glivra sterlina), |
2015
|
|
|
|
|
|
|
}, |
2016
|
|
|
|
|
|
|
}, |
2017
|
|
|
|
|
|
|
'GEK' => { |
2018
|
|
|
|
|
|
|
display_name => { |
2019
|
|
|
|
|
|
|
'currency' => q(kupon larit georgian), |
2020
|
|
|
|
|
|
|
}, |
2021
|
|
|
|
|
|
|
}, |
2022
|
|
|
|
|
|
|
'GEL' => { |
2023
|
|
|
|
|
|
|
display_name => { |
2024
|
|
|
|
|
|
|
'currency' => q(lari georgian), |
2025
|
|
|
|
|
|
|
}, |
2026
|
|
|
|
|
|
|
}, |
2027
|
|
|
|
|
|
|
'GHC' => { |
2028
|
|
|
|
|
|
|
display_name => { |
2029
|
|
|
|
|
|
|
'currency' => q(cedi ghanais \(1979–2007\)), |
2030
|
|
|
|
|
|
|
}, |
2031
|
|
|
|
|
|
|
}, |
2032
|
|
|
|
|
|
|
'GHS' => { |
2033
|
|
|
|
|
|
|
display_name => { |
2034
|
|
|
|
|
|
|
'currency' => q(cedi ghanais), |
2035
|
|
|
|
|
|
|
}, |
2036
|
|
|
|
|
|
|
}, |
2037
|
|
|
|
|
|
|
'GIP' => { |
2038
|
|
|
|
|
|
|
display_name => { |
2039
|
|
|
|
|
|
|
'currency' => q(glivra da Gibraltar), |
2040
|
|
|
|
|
|
|
}, |
2041
|
|
|
|
|
|
|
}, |
2042
|
|
|
|
|
|
|
'GMD' => { |
2043
|
|
|
|
|
|
|
display_name => { |
2044
|
|
|
|
|
|
|
'currency' => q(dalasi gambic), |
2045
|
|
|
|
|
|
|
}, |
2046
|
|
|
|
|
|
|
}, |
2047
|
|
|
|
|
|
|
'GNF' => { |
2048
|
|
|
|
|
|
|
display_name => { |
2049
|
|
|
|
|
|
|
'currency' => q(franc da la Guinea), |
2050
|
|
|
|
|
|
|
}, |
2051
|
|
|
|
|
|
|
}, |
2052
|
|
|
|
|
|
|
'GNS' => { |
2053
|
|
|
|
|
|
|
display_name => { |
2054
|
|
|
|
|
|
|
'currency' => q(syli da la Guinea), |
2055
|
|
|
|
|
|
|
}, |
2056
|
|
|
|
|
|
|
}, |
2057
|
|
|
|
|
|
|
'GQE' => { |
2058
|
|
|
|
|
|
|
display_name => { |
2059
|
|
|
|
|
|
|
'currency' => q(ekwele da la Guinea Equatoriala), |
2060
|
|
|
|
|
|
|
}, |
2061
|
|
|
|
|
|
|
}, |
2062
|
|
|
|
|
|
|
'GRD' => { |
2063
|
|
|
|
|
|
|
display_name => { |
2064
|
|
|
|
|
|
|
'currency' => q(drachma greca), |
2065
|
|
|
|
|
|
|
}, |
2066
|
|
|
|
|
|
|
}, |
2067
|
|
|
|
|
|
|
'GTQ' => { |
2068
|
|
|
|
|
|
|
display_name => { |
2069
|
|
|
|
|
|
|
'currency' => q(quetzal da la Guatemala), |
2070
|
|
|
|
|
|
|
}, |
2071
|
|
|
|
|
|
|
}, |
2072
|
|
|
|
|
|
|
'GWE' => { |
2073
|
|
|
|
|
|
|
display_name => { |
2074
|
|
|
|
|
|
|
'currency' => q(escudo da la Guinea Portugaisa), |
2075
|
|
|
|
|
|
|
}, |
2076
|
|
|
|
|
|
|
}, |
2077
|
|
|
|
|
|
|
'GWP' => { |
2078
|
|
|
|
|
|
|
display_name => { |
2079
|
|
|
|
|
|
|
'currency' => q(peso da la Guinea-Bissau), |
2080
|
|
|
|
|
|
|
}, |
2081
|
|
|
|
|
|
|
}, |
2082
|
|
|
|
|
|
|
'GYD' => { |
2083
|
|
|
|
|
|
|
display_name => { |
2084
|
|
|
|
|
|
|
'currency' => q(dollar da la Guyana), |
2085
|
|
|
|
|
|
|
}, |
2086
|
|
|
|
|
|
|
}, |
2087
|
|
|
|
|
|
|
'HKD' => { |
2088
|
|
|
|
|
|
|
display_name => { |
2089
|
|
|
|
|
|
|
'currency' => q(dollar da Hongkong), |
2090
|
|
|
|
|
|
|
}, |
2091
|
|
|
|
|
|
|
}, |
2092
|
|
|
|
|
|
|
'HNL' => { |
2093
|
|
|
|
|
|
|
symbol => 'HNL', |
2094
|
|
|
|
|
|
|
display_name => { |
2095
|
|
|
|
|
|
|
'currency' => q(lempira hondurian), |
2096
|
|
|
|
|
|
|
'one' => q(lempira hondurian), |
2097
|
|
|
|
|
|
|
'other' => q(lempira hondurian), |
2098
|
|
|
|
|
|
|
}, |
2099
|
|
|
|
|
|
|
}, |
2100
|
|
|
|
|
|
|
'HRD' => { |
2101
|
|
|
|
|
|
|
display_name => { |
2102
|
|
|
|
|
|
|
'currency' => q(dinar croat), |
2103
|
|
|
|
|
|
|
}, |
2104
|
|
|
|
|
|
|
}, |
2105
|
|
|
|
|
|
|
'HRK' => { |
2106
|
|
|
|
|
|
|
display_name => { |
2107
|
|
|
|
|
|
|
'currency' => q(kuna croata), |
2108
|
|
|
|
|
|
|
}, |
2109
|
|
|
|
|
|
|
}, |
2110
|
|
|
|
|
|
|
'HTG' => { |
2111
|
|
|
|
|
|
|
display_name => { |
2112
|
|
|
|
|
|
|
'currency' => q(gourde haitian), |
2113
|
|
|
|
|
|
|
}, |
2114
|
|
|
|
|
|
|
}, |
2115
|
|
|
|
|
|
|
'HUF' => { |
2116
|
|
|
|
|
|
|
display_name => { |
2117
|
|
|
|
|
|
|
'currency' => q(forint ungarais), |
2118
|
|
|
|
|
|
|
}, |
2119
|
|
|
|
|
|
|
}, |
2120
|
|
|
|
|
|
|
'IDR' => { |
2121
|
|
|
|
|
|
|
display_name => { |
2122
|
|
|
|
|
|
|
'currency' => q(rupia indonaisa), |
2123
|
|
|
|
|
|
|
}, |
2124
|
|
|
|
|
|
|
}, |
2125
|
|
|
|
|
|
|
'IEP' => { |
2126
|
|
|
|
|
|
|
symbol => 'IEP', |
2127
|
|
|
|
|
|
|
display_name => { |
2128
|
|
|
|
|
|
|
'currency' => q(glivra indonaisa), |
2129
|
|
|
|
|
|
|
'one' => q(glivra indonaisa), |
2130
|
|
|
|
|
|
|
'other' => q(glivra indonaisa), |
2131
|
|
|
|
|
|
|
}, |
2132
|
|
|
|
|
|
|
}, |
2133
|
|
|
|
|
|
|
'ILP' => { |
2134
|
|
|
|
|
|
|
display_name => { |
2135
|
|
|
|
|
|
|
'currency' => q(glivra israeliana), |
2136
|
|
|
|
|
|
|
}, |
2137
|
|
|
|
|
|
|
}, |
2138
|
|
|
|
|
|
|
'ILR' => { |
2139
|
|
|
|
|
|
|
display_name => { |
2140
|
|
|
|
|
|
|
'currency' => q(vegl sheqel israelian), |
2141
|
|
|
|
|
|
|
}, |
2142
|
|
|
|
|
|
|
}, |
2143
|
|
|
|
|
|
|
'ILS' => { |
2144
|
|
|
|
|
|
|
display_name => { |
2145
|
|
|
|
|
|
|
'currency' => q(sheqel), |
2146
|
|
|
|
|
|
|
}, |
2147
|
|
|
|
|
|
|
}, |
2148
|
|
|
|
|
|
|
'INR' => { |
2149
|
|
|
|
|
|
|
display_name => { |
2150
|
|
|
|
|
|
|
'currency' => q(rupia indica), |
2151
|
|
|
|
|
|
|
}, |
2152
|
|
|
|
|
|
|
}, |
2153
|
|
|
|
|
|
|
'IQD' => { |
2154
|
|
|
|
|
|
|
display_name => { |
2155
|
|
|
|
|
|
|
'currency' => q(dinar iracais), |
2156
|
|
|
|
|
|
|
}, |
2157
|
|
|
|
|
|
|
}, |
2158
|
|
|
|
|
|
|
'IRR' => { |
2159
|
|
|
|
|
|
|
display_name => { |
2160
|
|
|
|
|
|
|
'currency' => q(rial iranais), |
2161
|
|
|
|
|
|
|
}, |
2162
|
|
|
|
|
|
|
}, |
2163
|
|
|
|
|
|
|
'ISJ' => { |
2164
|
|
|
|
|
|
|
symbol => 'ISJ', |
2165
|
|
|
|
|
|
|
display_name => { |
2166
|
|
|
|
|
|
|
'currency' => q(veglia cruna islandaisa), |
2167
|
|
|
|
|
|
|
'one' => q(veglia cruna islandaisa), |
2168
|
|
|
|
|
|
|
'other' => q(veglia cruna islandaisa), |
2169
|
|
|
|
|
|
|
}, |
2170
|
|
|
|
|
|
|
}, |
2171
|
|
|
|
|
|
|
'ISK' => { |
2172
|
|
|
|
|
|
|
symbol => 'ISK', |
2173
|
|
|
|
|
|
|
display_name => { |
2174
|
|
|
|
|
|
|
'currency' => q(cruna islandaisa), |
2175
|
|
|
|
|
|
|
'one' => q(cruna islandaisa), |
2176
|
|
|
|
|
|
|
'other' => q(cruna islandaisa), |
2177
|
|
|
|
|
|
|
}, |
2178
|
|
|
|
|
|
|
}, |
2179
|
|
|
|
|
|
|
'ITL' => { |
2180
|
|
|
|
|
|
|
display_name => { |
2181
|
|
|
|
|
|
|
'currency' => q(lira taliana), |
2182
|
|
|
|
|
|
|
}, |
2183
|
|
|
|
|
|
|
}, |
2184
|
|
|
|
|
|
|
'JMD' => { |
2185
|
|
|
|
|
|
|
symbol => 'JMD', |
2186
|
|
|
|
|
|
|
display_name => { |
2187
|
|
|
|
|
|
|
'currency' => q(dollar giamaican), |
2188
|
|
|
|
|
|
|
'one' => q(dollar giamaican), |
2189
|
|
|
|
|
|
|
'other' => q(dollar giamaican), |
2190
|
|
|
|
|
|
|
}, |
2191
|
|
|
|
|
|
|
}, |
2192
|
|
|
|
|
|
|
'JOD' => { |
2193
|
|
|
|
|
|
|
display_name => { |
2194
|
|
|
|
|
|
|
'currency' => q(dinar jordanic), |
2195
|
|
|
|
|
|
|
}, |
2196
|
|
|
|
|
|
|
}, |
2197
|
|
|
|
|
|
|
'JPY' => { |
2198
|
|
|
|
|
|
|
display_name => { |
2199
|
|
|
|
|
|
|
'currency' => q(yen giapunais), |
2200
|
|
|
|
|
|
|
}, |
2201
|
|
|
|
|
|
|
}, |
2202
|
|
|
|
|
|
|
'KES' => { |
2203
|
|
|
|
|
|
|
display_name => { |
2204
|
|
|
|
|
|
|
'currency' => q(schilling kenian), |
2205
|
|
|
|
|
|
|
}, |
2206
|
|
|
|
|
|
|
}, |
2207
|
|
|
|
|
|
|
'KGS' => { |
2208
|
|
|
|
|
|
|
display_name => { |
2209
|
|
|
|
|
|
|
'currency' => q(som kirghis), |
2210
|
|
|
|
|
|
|
}, |
2211
|
|
|
|
|
|
|
}, |
2212
|
|
|
|
|
|
|
'KHR' => { |
2213
|
|
|
|
|
|
|
display_name => { |
2214
|
|
|
|
|
|
|
'currency' => q(riel cambodschan), |
2215
|
|
|
|
|
|
|
}, |
2216
|
|
|
|
|
|
|
}, |
2217
|
|
|
|
|
|
|
'KMF' => { |
2218
|
|
|
|
|
|
|
display_name => { |
2219
|
|
|
|
|
|
|
'currency' => q(franc comorian), |
2220
|
|
|
|
|
|
|
}, |
2221
|
|
|
|
|
|
|
}, |
2222
|
|
|
|
|
|
|
'KPW' => { |
2223
|
|
|
|
|
|
|
display_name => { |
2224
|
|
|
|
|
|
|
'currency' => q(won da la Corea dal Nord), |
2225
|
|
|
|
|
|
|
}, |
2226
|
|
|
|
|
|
|
}, |
2227
|
|
|
|
|
|
|
'KRH' => { |
2228
|
|
|
|
|
|
|
display_name => { |
2229
|
|
|
|
|
|
|
'currency' => q(hwan da la Corea dal Sid), |
2230
|
|
|
|
|
|
|
}, |
2231
|
|
|
|
|
|
|
}, |
2232
|
|
|
|
|
|
|
'KRO' => { |
2233
|
|
|
|
|
|
|
display_name => { |
2234
|
|
|
|
|
|
|
'currency' => q(vegl won da la Corea dal Sid), |
2235
|
|
|
|
|
|
|
}, |
2236
|
|
|
|
|
|
|
}, |
2237
|
|
|
|
|
|
|
'KRW' => { |
2238
|
|
|
|
|
|
|
display_name => { |
2239
|
|
|
|
|
|
|
'currency' => q(won da la Corea dal Sid), |
2240
|
|
|
|
|
|
|
}, |
2241
|
|
|
|
|
|
|
}, |
2242
|
|
|
|
|
|
|
'KWD' => { |
2243
|
|
|
|
|
|
|
display_name => { |
2244
|
|
|
|
|
|
|
'currency' => q(dinar dal Kuwait), |
2245
|
|
|
|
|
|
|
}, |
2246
|
|
|
|
|
|
|
}, |
2247
|
|
|
|
|
|
|
'KYD' => { |
2248
|
|
|
|
|
|
|
symbol => 'KYD', |
2249
|
|
|
|
|
|
|
display_name => { |
2250
|
|
|
|
|
|
|
'currency' => q(dollar da las Inslas Cayman), |
2251
|
|
|
|
|
|
|
'one' => q(dollar da las Inslas Cayman), |
2252
|
|
|
|
|
|
|
'other' => q(dollar da las Inslas Cayman), |
2253
|
|
|
|
|
|
|
}, |
2254
|
|
|
|
|
|
|
}, |
2255
|
|
|
|
|
|
|
'KZT' => { |
2256
|
|
|
|
|
|
|
display_name => { |
2257
|
|
|
|
|
|
|
'currency' => q(tenge casac), |
2258
|
|
|
|
|
|
|
}, |
2259
|
|
|
|
|
|
|
}, |
2260
|
|
|
|
|
|
|
'LAK' => { |
2261
|
|
|
|
|
|
|
display_name => { |
2262
|
|
|
|
|
|
|
'currency' => q(kip laot), |
2263
|
|
|
|
|
|
|
}, |
2264
|
|
|
|
|
|
|
}, |
2265
|
|
|
|
|
|
|
'LBP' => { |
2266
|
|
|
|
|
|
|
display_name => { |
2267
|
|
|
|
|
|
|
'currency' => q(glivra libanaisa), |
2268
|
|
|
|
|
|
|
}, |
2269
|
|
|
|
|
|
|
}, |
2270
|
|
|
|
|
|
|
'LKR' => { |
2271
|
|
|
|
|
|
|
display_name => { |
2272
|
|
|
|
|
|
|
'currency' => q(rupia da la Sri Lanka), |
2273
|
|
|
|
|
|
|
}, |
2274
|
|
|
|
|
|
|
}, |
2275
|
|
|
|
|
|
|
'LRD' => { |
2276
|
|
|
|
|
|
|
display_name => { |
2277
|
|
|
|
|
|
|
'currency' => q(dollar liberian), |
2278
|
|
|
|
|
|
|
}, |
2279
|
|
|
|
|
|
|
}, |
2280
|
|
|
|
|
|
|
'LSL' => { |
2281
|
|
|
|
|
|
|
display_name => { |
2282
|
|
|
|
|
|
|
'currency' => q(loti dal Lesotho), |
2283
|
|
|
|
|
|
|
}, |
2284
|
|
|
|
|
|
|
}, |
2285
|
|
|
|
|
|
|
'LTL' => { |
2286
|
|
|
|
|
|
|
display_name => { |
2287
|
|
|
|
|
|
|
'currency' => q(litas lituan), |
2288
|
|
|
|
|
|
|
}, |
2289
|
|
|
|
|
|
|
}, |
2290
|
|
|
|
|
|
|
'LTT' => { |
2291
|
|
|
|
|
|
|
display_name => { |
2292
|
|
|
|
|
|
|
'currency' => q(talonas lituan), |
2293
|
|
|
|
|
|
|
}, |
2294
|
|
|
|
|
|
|
}, |
2295
|
|
|
|
|
|
|
'LUC' => { |
2296
|
|
|
|
|
|
|
display_name => { |
2297
|
|
|
|
|
|
|
'currency' => q(franc convertibel luxemburgais), |
2298
|
|
|
|
|
|
|
}, |
2299
|
|
|
|
|
|
|
}, |
2300
|
|
|
|
|
|
|
'LUF' => { |
2301
|
|
|
|
|
|
|
display_name => { |
2302
|
|
|
|
|
|
|
'currency' => q(franc luxemburgais), |
2303
|
|
|
|
|
|
|
}, |
2304
|
|
|
|
|
|
|
}, |
2305
|
|
|
|
|
|
|
'LUL' => { |
2306
|
|
|
|
|
|
|
display_name => { |
2307
|
|
|
|
|
|
|
'currency' => q(franc finanzial luxemburgais), |
2308
|
|
|
|
|
|
|
}, |
2309
|
|
|
|
|
|
|
}, |
2310
|
|
|
|
|
|
|
'LVL' => { |
2311
|
|
|
|
|
|
|
display_name => { |
2312
|
|
|
|
|
|
|
'currency' => q(lats letton), |
2313
|
|
|
|
|
|
|
}, |
2314
|
|
|
|
|
|
|
}, |
2315
|
|
|
|
|
|
|
'LVR' => { |
2316
|
|
|
|
|
|
|
display_name => { |
2317
|
|
|
|
|
|
|
'currency' => q(rubel letton), |
2318
|
|
|
|
|
|
|
}, |
2319
|
|
|
|
|
|
|
}, |
2320
|
|
|
|
|
|
|
'LYD' => { |
2321
|
|
|
|
|
|
|
display_name => { |
2322
|
|
|
|
|
|
|
'currency' => q(dinar libic), |
2323
|
|
|
|
|
|
|
}, |
2324
|
|
|
|
|
|
|
}, |
2325
|
|
|
|
|
|
|
'MAD' => { |
2326
|
|
|
|
|
|
|
display_name => { |
2327
|
|
|
|
|
|
|
'currency' => q(dirham marocan), |
2328
|
|
|
|
|
|
|
}, |
2329
|
|
|
|
|
|
|
}, |
2330
|
|
|
|
|
|
|
'MAF' => { |
2331
|
|
|
|
|
|
|
display_name => { |
2332
|
|
|
|
|
|
|
'currency' => q(franc marocan), |
2333
|
|
|
|
|
|
|
}, |
2334
|
|
|
|
|
|
|
}, |
2335
|
|
|
|
|
|
|
'MCF' => { |
2336
|
|
|
|
|
|
|
display_name => { |
2337
|
|
|
|
|
|
|
'currency' => q(franc monegas), |
2338
|
|
|
|
|
|
|
}, |
2339
|
|
|
|
|
|
|
}, |
2340
|
|
|
|
|
|
|
'MDC' => { |
2341
|
|
|
|
|
|
|
display_name => { |
2342
|
|
|
|
|
|
|
'currency' => q(cupon moldav), |
2343
|
|
|
|
|
|
|
}, |
2344
|
|
|
|
|
|
|
}, |
2345
|
|
|
|
|
|
|
'MDL' => { |
2346
|
|
|
|
|
|
|
display_name => { |
2347
|
|
|
|
|
|
|
'currency' => q(leu moldav), |
2348
|
|
|
|
|
|
|
}, |
2349
|
|
|
|
|
|
|
}, |
2350
|
|
|
|
|
|
|
'MGA' => { |
2351
|
|
|
|
|
|
|
display_name => { |
2352
|
|
|
|
|
|
|
'currency' => q(ariary madagasc), |
2353
|
|
|
|
|
|
|
}, |
2354
|
|
|
|
|
|
|
}, |
2355
|
|
|
|
|
|
|
'MGF' => { |
2356
|
|
|
|
|
|
|
display_name => { |
2357
|
|
|
|
|
|
|
'currency' => q(franc madagasc), |
2358
|
|
|
|
|
|
|
}, |
2359
|
|
|
|
|
|
|
}, |
2360
|
|
|
|
|
|
|
'MKD' => { |
2361
|
|
|
|
|
|
|
display_name => { |
2362
|
|
|
|
|
|
|
'currency' => q(dinar da la Macedonia), |
2363
|
|
|
|
|
|
|
}, |
2364
|
|
|
|
|
|
|
}, |
2365
|
|
|
|
|
|
|
'MKN' => { |
2366
|
|
|
|
|
|
|
display_name => { |
2367
|
|
|
|
|
|
|
'currency' => q(vegl dinar macedon), |
2368
|
|
|
|
|
|
|
}, |
2369
|
|
|
|
|
|
|
}, |
2370
|
|
|
|
|
|
|
'MLF' => { |
2371
|
|
|
|
|
|
|
display_name => { |
2372
|
|
|
|
|
|
|
'currency' => q(franc dal Mali), |
2373
|
|
|
|
|
|
|
}, |
2374
|
|
|
|
|
|
|
}, |
2375
|
|
|
|
|
|
|
'MMK' => { |
2376
|
|
|
|
|
|
|
display_name => { |
2377
|
|
|
|
|
|
|
'currency' => q(Kyat dal Myanmar), |
2378
|
|
|
|
|
|
|
}, |
2379
|
|
|
|
|
|
|
}, |
2380
|
|
|
|
|
|
|
'MNT' => { |
2381
|
|
|
|
|
|
|
display_name => { |
2382
|
|
|
|
|
|
|
'currency' => q(tugrik mongolic), |
2383
|
|
|
|
|
|
|
}, |
2384
|
|
|
|
|
|
|
}, |
2385
|
|
|
|
|
|
|
'MOP' => { |
2386
|
|
|
|
|
|
|
display_name => { |
2387
|
|
|
|
|
|
|
'currency' => q(pataca dal Macao), |
2388
|
|
|
|
|
|
|
}, |
2389
|
|
|
|
|
|
|
}, |
2390
|
|
|
|
|
|
|
'MRO' => { |
2391
|
|
|
|
|
|
|
display_name => { |
2392
|
|
|
|
|
|
|
'currency' => q(ouguiya da la Mauretania \(1973–2017\)), |
2393
|
|
|
|
|
|
|
}, |
2394
|
|
|
|
|
|
|
}, |
2395
|
|
|
|
|
|
|
'MRU' => { |
2396
|
|
|
|
|
|
|
display_name => { |
2397
|
|
|
|
|
|
|
'currency' => q(ouguiya da la Mauretania), |
2398
|
|
|
|
|
|
|
}, |
2399
|
|
|
|
|
|
|
}, |
2400
|
|
|
|
|
|
|
'MTL' => { |
2401
|
|
|
|
|
|
|
display_name => { |
2402
|
|
|
|
|
|
|
'currency' => q(lira maltaisa), |
2403
|
|
|
|
|
|
|
}, |
2404
|
|
|
|
|
|
|
}, |
2405
|
|
|
|
|
|
|
'MTP' => { |
2406
|
|
|
|
|
|
|
display_name => { |
2407
|
|
|
|
|
|
|
'currency' => q(glivra maltaisa), |
2408
|
|
|
|
|
|
|
}, |
2409
|
|
|
|
|
|
|
}, |
2410
|
|
|
|
|
|
|
'MUR' => { |
2411
|
|
|
|
|
|
|
display_name => { |
2412
|
|
|
|
|
|
|
'currency' => q(rupia dal Mauritius), |
2413
|
|
|
|
|
|
|
}, |
2414
|
|
|
|
|
|
|
}, |
2415
|
|
|
|
|
|
|
'MVP' => { |
2416
|
|
|
|
|
|
|
display_name => { |
2417
|
|
|
|
|
|
|
'currency' => q(rupia da las Maledivas), |
2418
|
|
|
|
|
|
|
}, |
2419
|
|
|
|
|
|
|
}, |
2420
|
|
|
|
|
|
|
'MVR' => { |
2421
|
|
|
|
|
|
|
display_name => { |
2422
|
|
|
|
|
|
|
'currency' => q(rufiyaa da las Maledivas), |
2423
|
|
|
|
|
|
|
}, |
2424
|
|
|
|
|
|
|
}, |
2425
|
|
|
|
|
|
|
'MWK' => { |
2426
|
|
|
|
|
|
|
display_name => { |
2427
|
|
|
|
|
|
|
'currency' => q(kwacha dal Malawi), |
2428
|
|
|
|
|
|
|
}, |
2429
|
|
|
|
|
|
|
}, |
2430
|
|
|
|
|
|
|
'MXN' => { |
2431
|
|
|
|
|
|
|
symbol => 'MX$', |
2432
|
|
|
|
|
|
|
display_name => { |
2433
|
|
|
|
|
|
|
'currency' => q(peso mexican), |
2434
|
|
|
|
|
|
|
'one' => q(peso mexican), |
2435
|
|
|
|
|
|
|
'other' => q(peso mexican), |
2436
|
|
|
|
|
|
|
}, |
2437
|
|
|
|
|
|
|
}, |
2438
|
|
|
|
|
|
|
'MXP' => { |
2439
|
|
|
|
|
|
|
display_name => { |
2440
|
|
|
|
|
|
|
'currency' => q(peso d’argient mexican \(1861–1992\)), |
2441
|
|
|
|
|
|
|
}, |
2442
|
|
|
|
|
|
|
}, |
2443
|
|
|
|
|
|
|
'MXV' => { |
2444
|
|
|
|
|
|
|
display_name => { |
2445
|
|
|
|
|
|
|
'currency' => q(unidad de inversion mexicana \(UDI\)), |
2446
|
|
|
|
|
|
|
}, |
2447
|
|
|
|
|
|
|
}, |
2448
|
|
|
|
|
|
|
'MYR' => { |
2449
|
|
|
|
|
|
|
display_name => { |
2450
|
|
|
|
|
|
|
'currency' => q(ringgit da la Malaisia), |
2451
|
|
|
|
|
|
|
}, |
2452
|
|
|
|
|
|
|
}, |
2453
|
|
|
|
|
|
|
'MZE' => { |
2454
|
|
|
|
|
|
|
display_name => { |
2455
|
|
|
|
|
|
|
'currency' => q(escudo dal mozambican), |
2456
|
|
|
|
|
|
|
}, |
2457
|
|
|
|
|
|
|
}, |
2458
|
|
|
|
|
|
|
'MZM' => { |
2459
|
|
|
|
|
|
|
display_name => { |
2460
|
|
|
|
|
|
|
'currency' => q(vegl metical mozambican), |
2461
|
|
|
|
|
|
|
}, |
2462
|
|
|
|
|
|
|
}, |
2463
|
|
|
|
|
|
|
'MZN' => { |
2464
|
|
|
|
|
|
|
display_name => { |
2465
|
|
|
|
|
|
|
'currency' => q(metical dal mozambican), |
2466
|
|
|
|
|
|
|
}, |
2467
|
|
|
|
|
|
|
}, |
2468
|
|
|
|
|
|
|
'NAD' => { |
2469
|
|
|
|
|
|
|
display_name => { |
2470
|
|
|
|
|
|
|
'currency' => q(dollar namibian), |
2471
|
|
|
|
|
|
|
}, |
2472
|
|
|
|
|
|
|
}, |
2473
|
|
|
|
|
|
|
'NGN' => { |
2474
|
|
|
|
|
|
|
display_name => { |
2475
|
|
|
|
|
|
|
'currency' => q(naira nigeriana), |
2476
|
|
|
|
|
|
|
}, |
2477
|
|
|
|
|
|
|
}, |
2478
|
|
|
|
|
|
|
'NIC' => { |
2479
|
|
|
|
|
|
|
display_name => { |
2480
|
|
|
|
|
|
|
'currency' => q(cordoba nicaraguan), |
2481
|
|
|
|
|
|
|
}, |
2482
|
|
|
|
|
|
|
}, |
2483
|
|
|
|
|
|
|
'NIO' => { |
2484
|
|
|
|
|
|
|
display_name => { |
2485
|
|
|
|
|
|
|
'currency' => q(cordoba oro nicaraguan), |
2486
|
|
|
|
|
|
|
}, |
2487
|
|
|
|
|
|
|
}, |
2488
|
|
|
|
|
|
|
'NLG' => { |
2489
|
|
|
|
|
|
|
display_name => { |
2490
|
|
|
|
|
|
|
'currency' => q(flurin ollandais), |
2491
|
|
|
|
|
|
|
}, |
2492
|
|
|
|
|
|
|
}, |
2493
|
|
|
|
|
|
|
'NOK' => { |
2494
|
|
|
|
|
|
|
symbol => 'NOK', |
2495
|
|
|
|
|
|
|
display_name => { |
2496
|
|
|
|
|
|
|
'currency' => q(cruna norvegiaisa), |
2497
|
|
|
|
|
|
|
'one' => q(cruna norvegiaisa), |
2498
|
|
|
|
|
|
|
'other' => q(cruna norvegiaisa), |
2499
|
|
|
|
|
|
|
}, |
2500
|
|
|
|
|
|
|
}, |
2501
|
|
|
|
|
|
|
'NPR' => { |
2502
|
|
|
|
|
|
|
display_name => { |
2503
|
|
|
|
|
|
|
'currency' => q(rupia nepalaisa), |
2504
|
|
|
|
|
|
|
}, |
2505
|
|
|
|
|
|
|
}, |
2506
|
|
|
|
|
|
|
'NZD' => { |
2507
|
|
|
|
|
|
|
display_name => { |
2508
|
|
|
|
|
|
|
'currency' => q(dollar da la Nova Zelanda), |
2509
|
|
|
|
|
|
|
}, |
2510
|
|
|
|
|
|
|
}, |
2511
|
|
|
|
|
|
|
'OMR' => { |
2512
|
|
|
|
|
|
|
display_name => { |
2513
|
|
|
|
|
|
|
'currency' => q(rial da l’Oman), |
2514
|
|
|
|
|
|
|
}, |
2515
|
|
|
|
|
|
|
}, |
2516
|
|
|
|
|
|
|
'PAB' => { |
2517
|
|
|
|
|
|
|
display_name => { |
2518
|
|
|
|
|
|
|
'currency' => q(balboa dal Panama), |
2519
|
|
|
|
|
|
|
}, |
2520
|
|
|
|
|
|
|
}, |
2521
|
|
|
|
|
|
|
'PEI' => { |
2522
|
|
|
|
|
|
|
display_name => { |
2523
|
|
|
|
|
|
|
'currency' => q(inti peruan), |
2524
|
|
|
|
|
|
|
}, |
2525
|
|
|
|
|
|
|
}, |
2526
|
|
|
|
|
|
|
'PEN' => { |
2527
|
|
|
|
|
|
|
display_name => { |
2528
|
|
|
|
|
|
|
'currency' => q(sol peruan), |
2529
|
|
|
|
|
|
|
}, |
2530
|
|
|
|
|
|
|
}, |
2531
|
|
|
|
|
|
|
'PES' => { |
2532
|
|
|
|
|
|
|
display_name => { |
2533
|
|
|
|
|
|
|
'currency' => q(sol peruan \(1863–1965\)), |
2534
|
|
|
|
|
|
|
}, |
2535
|
|
|
|
|
|
|
}, |
2536
|
|
|
|
|
|
|
'PGK' => { |
2537
|
|
|
|
|
|
|
display_name => { |
2538
|
|
|
|
|
|
|
'currency' => q(kina da la Papua Nova Guinea), |
2539
|
|
|
|
|
|
|
}, |
2540
|
|
|
|
|
|
|
}, |
2541
|
|
|
|
|
|
|
'PHP' => { |
2542
|
|
|
|
|
|
|
display_name => { |
2543
|
|
|
|
|
|
|
'currency' => q(peso filippin), |
2544
|
|
|
|
|
|
|
}, |
2545
|
|
|
|
|
|
|
}, |
2546
|
|
|
|
|
|
|
'PKR' => { |
2547
|
|
|
|
|
|
|
display_name => { |
2548
|
|
|
|
|
|
|
'currency' => q(rupia pakistana), |
2549
|
|
|
|
|
|
|
}, |
2550
|
|
|
|
|
|
|
}, |
2551
|
|
|
|
|
|
|
'PLN' => { |
2552
|
|
|
|
|
|
|
symbol => 'PLN', |
2553
|
|
|
|
|
|
|
display_name => { |
2554
|
|
|
|
|
|
|
'currency' => q(zloty polac), |
2555
|
|
|
|
|
|
|
'one' => q(zloty polac), |
2556
|
|
|
|
|
|
|
'other' => q(zloty polac), |
2557
|
|
|
|
|
|
|
}, |
2558
|
|
|
|
|
|
|
}, |
2559
|
|
|
|
|
|
|
'PLZ' => { |
2560
|
|
|
|
|
|
|
display_name => { |
2561
|
|
|
|
|
|
|
'currency' => q(zloty polac \(1950–1995\)), |
2562
|
|
|
|
|
|
|
'one' => q(zloty polac \(1950–1995\)), |
2563
|
|
|
|
|
|
|
'other' => q(zloty polac \(1950–1995\)), |
2564
|
|
|
|
|
|
|
}, |
2565
|
|
|
|
|
|
|
}, |
2566
|
|
|
|
|
|
|
'PTE' => { |
2567
|
|
|
|
|
|
|
display_name => { |
2568
|
|
|
|
|
|
|
'currency' => q(escudo portugais), |
2569
|
|
|
|
|
|
|
}, |
2570
|
|
|
|
|
|
|
}, |
2571
|
|
|
|
|
|
|
'PYG' => { |
2572
|
|
|
|
|
|
|
display_name => { |
2573
|
|
|
|
|
|
|
'currency' => q(guarani paraguaian), |
2574
|
|
|
|
|
|
|
}, |
2575
|
|
|
|
|
|
|
}, |
2576
|
|
|
|
|
|
|
'QAR' => { |
2577
|
|
|
|
|
|
|
display_name => { |
2578
|
|
|
|
|
|
|
'currency' => q(riyal da Katar), |
2579
|
|
|
|
|
|
|
}, |
2580
|
|
|
|
|
|
|
}, |
2581
|
|
|
|
|
|
|
'RHD' => { |
2582
|
|
|
|
|
|
|
display_name => { |
2583
|
|
|
|
|
|
|
'currency' => q(dollar rodesian), |
2584
|
|
|
|
|
|
|
}, |
2585
|
|
|
|
|
|
|
}, |
2586
|
|
|
|
|
|
|
'ROL' => { |
2587
|
|
|
|
|
|
|
display_name => { |
2588
|
|
|
|
|
|
|
'currency' => q(vegl leu rumen), |
2589
|
|
|
|
|
|
|
}, |
2590
|
|
|
|
|
|
|
}, |
2591
|
|
|
|
|
|
|
'RON' => { |
2592
|
|
|
|
|
|
|
display_name => { |
2593
|
|
|
|
|
|
|
'currency' => q(leu rumen), |
2594
|
|
|
|
|
|
|
}, |
2595
|
|
|
|
|
|
|
}, |
2596
|
|
|
|
|
|
|
'RSD' => { |
2597
|
|
|
|
|
|
|
display_name => { |
2598
|
|
|
|
|
|
|
'currency' => q(dinar serb), |
2599
|
|
|
|
|
|
|
}, |
2600
|
|
|
|
|
|
|
}, |
2601
|
|
|
|
|
|
|
'RUB' => { |
2602
|
|
|
|
|
|
|
symbol => 'RUB', |
2603
|
|
|
|
|
|
|
display_name => { |
2604
|
|
|
|
|
|
|
'currency' => q(rubel russ \(nov\)), |
2605
|
|
|
|
|
|
|
'one' => q(rubel russ \(nov\)), |
2606
|
|
|
|
|
|
|
'other' => q(rubel russ \(nov\)), |
2607
|
|
|
|
|
|
|
}, |
2608
|
|
|
|
|
|
|
}, |
2609
|
|
|
|
|
|
|
'RUR' => { |
2610
|
|
|
|
|
|
|
symbol => 'RUR', |
2611
|
|
|
|
|
|
|
display_name => { |
2612
|
|
|
|
|
|
|
'currency' => q(rubel russ \(vegl\)), |
2613
|
|
|
|
|
|
|
'one' => q(rubel russ \(vegl\)), |
2614
|
|
|
|
|
|
|
'other' => q(rubel russ \(vegl\)), |
2615
|
|
|
|
|
|
|
}, |
2616
|
|
|
|
|
|
|
}, |
2617
|
|
|
|
|
|
|
'RWF' => { |
2618
|
|
|
|
|
|
|
display_name => { |
2619
|
|
|
|
|
|
|
'currency' => q(franc ruandais), |
2620
|
|
|
|
|
|
|
}, |
2621
|
|
|
|
|
|
|
}, |
2622
|
|
|
|
|
|
|
'SAR' => { |
2623
|
|
|
|
|
|
|
symbol => 'SAR', |
2624
|
|
|
|
|
|
|
display_name => { |
2625
|
|
|
|
|
|
|
'currency' => q(riyal saudit), |
2626
|
|
|
|
|
|
|
'one' => q(riyal saudit), |
2627
|
|
|
|
|
|
|
'other' => q(riyal saudit), |
2628
|
|
|
|
|
|
|
}, |
2629
|
|
|
|
|
|
|
}, |
2630
|
|
|
|
|
|
|
'SBD' => { |
2631
|
|
|
|
|
|
|
display_name => { |
2632
|
|
|
|
|
|
|
'currency' => q(dollar da las Salomonas), |
2633
|
|
|
|
|
|
|
}, |
2634
|
|
|
|
|
|
|
}, |
2635
|
|
|
|
|
|
|
'SCR' => { |
2636
|
|
|
|
|
|
|
display_name => { |
2637
|
|
|
|
|
|
|
'currency' => q(rupia da las Seychellas), |
2638
|
|
|
|
|
|
|
}, |
2639
|
|
|
|
|
|
|
}, |
2640
|
|
|
|
|
|
|
'SDD' => { |
2641
|
|
|
|
|
|
|
display_name => { |
2642
|
|
|
|
|
|
|
'currency' => q(dinar sudanais), |
2643
|
|
|
|
|
|
|
}, |
2644
|
|
|
|
|
|
|
}, |
2645
|
|
|
|
|
|
|
'SDG' => { |
2646
|
|
|
|
|
|
|
display_name => { |
2647
|
|
|
|
|
|
|
'currency' => q(glivra sudanaisa), |
2648
|
|
|
|
|
|
|
}, |
2649
|
|
|
|
|
|
|
}, |
2650
|
|
|
|
|
|
|
'SDP' => { |
2651
|
|
|
|
|
|
|
display_name => { |
2652
|
|
|
|
|
|
|
'currency' => q(glivra sudanaisa \(1956–2007\)), |
2653
|
|
|
|
|
|
|
}, |
2654
|
|
|
|
|
|
|
}, |
2655
|
|
|
|
|
|
|
'SEK' => { |
2656
|
|
|
|
|
|
|
symbol => 'SEK', |
2657
|
|
|
|
|
|
|
display_name => { |
2658
|
|
|
|
|
|
|
'currency' => q(cruna svedaisa), |
2659
|
|
|
|
|
|
|
'one' => q(cruna svedaisa), |
2660
|
|
|
|
|
|
|
'other' => q(cruna svedaisa), |
2661
|
|
|
|
|
|
|
}, |
2662
|
|
|
|
|
|
|
}, |
2663
|
|
|
|
|
|
|
'SGD' => { |
2664
|
|
|
|
|
|
|
display_name => { |
2665
|
|
|
|
|
|
|
'currency' => q(dollar dal Singapur), |
2666
|
|
|
|
|
|
|
}, |
2667
|
|
|
|
|
|
|
}, |
2668
|
|
|
|
|
|
|
'SHP' => { |
2669
|
|
|
|
|
|
|
display_name => { |
2670
|
|
|
|
|
|
|
'currency' => q(glivra da Sontg’Elena), |
2671
|
|
|
|
|
|
|
}, |
2672
|
|
|
|
|
|
|
}, |
2673
|
|
|
|
|
|
|
'SIT' => { |
2674
|
|
|
|
|
|
|
display_name => { |
2675
|
|
|
|
|
|
|
'currency' => q(tolar sloven), |
2676
|
|
|
|
|
|
|
}, |
2677
|
|
|
|
|
|
|
}, |
2678
|
|
|
|
|
|
|
'SKK' => { |
2679
|
|
|
|
|
|
|
display_name => { |
2680
|
|
|
|
|
|
|
'currency' => q(cruna slovaca), |
2681
|
|
|
|
|
|
|
}, |
2682
|
|
|
|
|
|
|
}, |
2683
|
|
|
|
|
|
|
'SLL' => { |
2684
|
|
|
|
|
|
|
display_name => { |
2685
|
|
|
|
|
|
|
'currency' => q(leone da la Sierra Leone), |
2686
|
|
|
|
|
|
|
}, |
2687
|
|
|
|
|
|
|
}, |
2688
|
|
|
|
|
|
|
'SOS' => { |
2689
|
|
|
|
|
|
|
display_name => { |
2690
|
|
|
|
|
|
|
'currency' => q(schilling somalian), |
2691
|
|
|
|
|
|
|
}, |
2692
|
|
|
|
|
|
|
}, |
2693
|
|
|
|
|
|
|
'SRD' => { |
2694
|
|
|
|
|
|
|
display_name => { |
2695
|
|
|
|
|
|
|
'currency' => q(dollar surinam), |
2696
|
|
|
|
|
|
|
}, |
2697
|
|
|
|
|
|
|
}, |
2698
|
|
|
|
|
|
|
'SRG' => { |
2699
|
|
|
|
|
|
|
display_name => { |
2700
|
|
|
|
|
|
|
'currency' => q(flurin surinam), |
2701
|
|
|
|
|
|
|
}, |
2702
|
|
|
|
|
|
|
}, |
2703
|
|
|
|
|
|
|
'STD' => { |
2704
|
|
|
|
|
|
|
display_name => { |
2705
|
|
|
|
|
|
|
'currency' => q(dobra da São Tomé e Principe \(1977–2017\)), |
2706
|
|
|
|
|
|
|
}, |
2707
|
|
|
|
|
|
|
}, |
2708
|
|
|
|
|
|
|
'STN' => { |
2709
|
|
|
|
|
|
|
display_name => { |
2710
|
|
|
|
|
|
|
'currency' => q(dobra da São Tomé e Principe), |
2711
|
|
|
|
|
|
|
}, |
2712
|
|
|
|
|
|
|
}, |
2713
|
|
|
|
|
|
|
'SUR' => { |
2714
|
|
|
|
|
|
|
display_name => { |
2715
|
|
|
|
|
|
|
'currency' => q(rubel sovietic), |
2716
|
|
|
|
|
|
|
}, |
2717
|
|
|
|
|
|
|
}, |
2718
|
|
|
|
|
|
|
'SVC' => { |
2719
|
|
|
|
|
|
|
display_name => { |
2720
|
|
|
|
|
|
|
'currency' => q(colon da l’El Salvador), |
2721
|
|
|
|
|
|
|
}, |
2722
|
|
|
|
|
|
|
}, |
2723
|
|
|
|
|
|
|
'SYP' => { |
2724
|
|
|
|
|
|
|
display_name => { |
2725
|
|
|
|
|
|
|
'currency' => q(glivra siriana), |
2726
|
|
|
|
|
|
|
}, |
2727
|
|
|
|
|
|
|
}, |
2728
|
|
|
|
|
|
|
'SZL' => { |
2729
|
|
|
|
|
|
|
display_name => { |
2730
|
|
|
|
|
|
|
'currency' => q(lilangeni dal Swaziland), |
2731
|
|
|
|
|
|
|
}, |
2732
|
|
|
|
|
|
|
}, |
2733
|
|
|
|
|
|
|
'THB' => { |
2734
|
|
|
|
|
|
|
display_name => { |
2735
|
|
|
|
|
|
|
'currency' => q(baht tailandais), |
2736
|
|
|
|
|
|
|
}, |
2737
|
|
|
|
|
|
|
}, |
2738
|
|
|
|
|
|
|
'TJR' => { |
2739
|
|
|
|
|
|
|
display_name => { |
2740
|
|
|
|
|
|
|
'currency' => q(rubel dal Tadschikistan), |
2741
|
|
|
|
|
|
|
}, |
2742
|
|
|
|
|
|
|
}, |
2743
|
|
|
|
|
|
|
'TJS' => { |
2744
|
|
|
|
|
|
|
display_name => { |
2745
|
|
|
|
|
|
|
'currency' => q(somoni dal Tadschikistan), |
2746
|
|
|
|
|
|
|
}, |
2747
|
|
|
|
|
|
|
}, |
2748
|
|
|
|
|
|
|
'TMM' => { |
2749
|
|
|
|
|
|
|
display_name => { |
2750
|
|
|
|
|
|
|
'currency' => q(manat turkmen), |
2751
|
|
|
|
|
|
|
}, |
2752
|
|
|
|
|
|
|
}, |
2753
|
|
|
|
|
|
|
'TND' => { |
2754
|
|
|
|
|
|
|
display_name => { |
2755
|
|
|
|
|
|
|
'currency' => q(dinar tunesian), |
2756
|
|
|
|
|
|
|
}, |
2757
|
|
|
|
|
|
|
}, |
2758
|
|
|
|
|
|
|
'TOP' => { |
2759
|
|
|
|
|
|
|
display_name => { |
2760
|
|
|
|
|
|
|
'currency' => q(pa’anga da Tonga), |
2761
|
|
|
|
|
|
|
}, |
2762
|
|
|
|
|
|
|
}, |
2763
|
|
|
|
|
|
|
'TPE' => { |
2764
|
|
|
|
|
|
|
display_name => { |
2765
|
|
|
|
|
|
|
'currency' => q(escudo da Timor), |
2766
|
|
|
|
|
|
|
}, |
2767
|
|
|
|
|
|
|
}, |
2768
|
|
|
|
|
|
|
'TRL' => { |
2769
|
|
|
|
|
|
|
display_name => { |
2770
|
|
|
|
|
|
|
'currency' => q(lira tirca), |
2771
|
|
|
|
|
|
|
}, |
2772
|
|
|
|
|
|
|
}, |
2773
|
|
|
|
|
|
|
'TRY' => { |
2774
|
|
|
|
|
|
|
symbol => 'TRY', |
2775
|
|
|
|
|
|
|
display_name => { |
2776
|
|
|
|
|
|
|
'currency' => q(nova lira tirca), |
2777
|
|
|
|
|
|
|
'one' => q(nova lira tirca), |
2778
|
|
|
|
|
|
|
'other' => q(nova lira tirca), |
2779
|
|
|
|
|
|
|
}, |
2780
|
|
|
|
|
|
|
}, |
2781
|
|
|
|
|
|
|
'TTD' => { |
2782
|
|
|
|
|
|
|
display_name => { |
2783
|
|
|
|
|
|
|
'currency' => q(dollar da Trinidad e Tobago), |
2784
|
|
|
|
|
|
|
}, |
2785
|
|
|
|
|
|
|
}, |
2786
|
|
|
|
|
|
|
'TWD' => { |
2787
|
|
|
|
|
|
|
display_name => { |
2788
|
|
|
|
|
|
|
'currency' => q(nov dollar taiwanais), |
2789
|
|
|
|
|
|
|
}, |
2790
|
|
|
|
|
|
|
}, |
2791
|
|
|
|
|
|
|
'TZS' => { |
2792
|
|
|
|
|
|
|
display_name => { |
2793
|
|
|
|
|
|
|
'currency' => q(schilling tansanian), |
2794
|
|
|
|
|
|
|
}, |
2795
|
|
|
|
|
|
|
}, |
2796
|
|
|
|
|
|
|
'UAH' => { |
2797
|
|
|
|
|
|
|
display_name => { |
2798
|
|
|
|
|
|
|
'currency' => q(hryvnia ucranais), |
2799
|
|
|
|
|
|
|
}, |
2800
|
|
|
|
|
|
|
}, |
2801
|
|
|
|
|
|
|
'UAK' => { |
2802
|
|
|
|
|
|
|
display_name => { |
2803
|
|
|
|
|
|
|
'currency' => q(karbovanetz ucranais), |
2804
|
|
|
|
|
|
|
}, |
2805
|
|
|
|
|
|
|
}, |
2806
|
|
|
|
|
|
|
'UGS' => { |
2807
|
|
|
|
|
|
|
display_name => { |
2808
|
|
|
|
|
|
|
'currency' => q(schilling ucranais), |
2809
|
|
|
|
|
|
|
}, |
2810
|
|
|
|
|
|
|
}, |
2811
|
|
|
|
|
|
|
'UGX' => { |
2812
|
|
|
|
|
|
|
display_name => { |
2813
|
|
|
|
|
|
|
'currency' => q(schilling ugandais), |
2814
|
|
|
|
|
|
|
}, |
2815
|
|
|
|
|
|
|
}, |
2816
|
|
|
|
|
|
|
'USD' => { |
2817
|
|
|
|
|
|
|
symbol => '$', |
2818
|
|
|
|
|
|
|
display_name => { |
2819
|
|
|
|
|
|
|
'currency' => q(dollar dals Stadis Unids da l’America), |
2820
|
|
|
|
|
|
|
'one' => q(dollar dals Stadis Unids da l’America), |
2821
|
|
|
|
|
|
|
'other' => q(dollar dals Stadis Unids da l’America), |
2822
|
|
|
|
|
|
|
}, |
2823
|
|
|
|
|
|
|
}, |
2824
|
|
|
|
|
|
|
'USN' => { |
2825
|
|
|
|
|
|
|
display_name => { |
2826
|
|
|
|
|
|
|
'currency' => q(dollar dals Stadis Unids da l’America \(proxim di\)), |
2827
|
|
|
|
|
|
|
}, |
2828
|
|
|
|
|
|
|
}, |
2829
|
|
|
|
|
|
|
'USS' => { |
2830
|
|
|
|
|
|
|
display_name => { |
2831
|
|
|
|
|
|
|
'currency' => q(dollar dals Stadis Unids da l’America \(medem di\)), |
2832
|
|
|
|
|
|
|
}, |
2833
|
|
|
|
|
|
|
}, |
2834
|
|
|
|
|
|
|
'UYI' => { |
2835
|
|
|
|
|
|
|
display_name => { |
2836
|
|
|
|
|
|
|
'currency' => q(peso da l’Uruguay \(unidades indexadas\)), |
2837
|
|
|
|
|
|
|
}, |
2838
|
|
|
|
|
|
|
}, |
2839
|
|
|
|
|
|
|
'UYP' => { |
2840
|
|
|
|
|
|
|
display_name => { |
2841
|
|
|
|
|
|
|
'currency' => q(nov peso da l’Uruguay \(1975–1993\)), |
2842
|
|
|
|
|
|
|
}, |
2843
|
|
|
|
|
|
|
}, |
2844
|
|
|
|
|
|
|
'UYU' => { |
2845
|
|
|
|
|
|
|
display_name => { |
2846
|
|
|
|
|
|
|
'currency' => q(peso da l’Uruguay), |
2847
|
|
|
|
|
|
|
}, |
2848
|
|
|
|
|
|
|
}, |
2849
|
|
|
|
|
|
|
'UZS' => { |
2850
|
|
|
|
|
|
|
display_name => { |
2851
|
|
|
|
|
|
|
'currency' => q(sum usbec), |
2852
|
|
|
|
|
|
|
}, |
2853
|
|
|
|
|
|
|
}, |
2854
|
|
|
|
|
|
|
'VEB' => { |
2855
|
|
|
|
|
|
|
display_name => { |
2856
|
|
|
|
|
|
|
'currency' => q(bolivar venezuelan \(1871–2008\)), |
2857
|
|
|
|
|
|
|
}, |
2858
|
|
|
|
|
|
|
}, |
2859
|
|
|
|
|
|
|
'VEF' => { |
2860
|
|
|
|
|
|
|
display_name => { |
2861
|
|
|
|
|
|
|
'currency' => q(bolivar venezuelan \(2008–2018\)), |
2862
|
|
|
|
|
|
|
}, |
2863
|
|
|
|
|
|
|
}, |
2864
|
|
|
|
|
|
|
'VES' => { |
2865
|
|
|
|
|
|
|
display_name => { |
2866
|
|
|
|
|
|
|
'currency' => q(bolivar venezuelan), |
2867
|
|
|
|
|
|
|
}, |
2868
|
|
|
|
|
|
|
}, |
2869
|
|
|
|
|
|
|
'VND' => { |
2870
|
|
|
|
|
|
|
display_name => { |
2871
|
|
|
|
|
|
|
'currency' => q(dong vietnamais), |
2872
|
|
|
|
|
|
|
}, |
2873
|
|
|
|
|
|
|
}, |
2874
|
|
|
|
|
|
|
'VNN' => { |
2875
|
|
|
|
|
|
|
display_name => { |
2876
|
|
|
|
|
|
|
'currency' => q(vegl dong vietnamais), |
2877
|
|
|
|
|
|
|
}, |
2878
|
|
|
|
|
|
|
}, |
2879
|
|
|
|
|
|
|
'VUV' => { |
2880
|
|
|
|
|
|
|
display_name => { |
2881
|
|
|
|
|
|
|
'currency' => q(vatu dal Vanuatu), |
2882
|
|
|
|
|
|
|
}, |
2883
|
|
|
|
|
|
|
}, |
2884
|
|
|
|
|
|
|
'WST' => { |
2885
|
|
|
|
|
|
|
display_name => { |
2886
|
|
|
|
|
|
|
'currency' => q(tala da la Samoa), |
2887
|
|
|
|
|
|
|
}, |
2888
|
|
|
|
|
|
|
}, |
2889
|
|
|
|
|
|
|
'XAF' => { |
2890
|
|
|
|
|
|
|
display_name => { |
2891
|
|
|
|
|
|
|
'currency' => q(franc CFA BEAC), |
2892
|
|
|
|
|
|
|
}, |
2893
|
|
|
|
|
|
|
}, |
2894
|
|
|
|
|
|
|
'XAG' => { |
2895
|
|
|
|
|
|
|
display_name => { |
2896
|
|
|
|
|
|
|
'currency' => q(argient), |
2897
|
|
|
|
|
|
|
}, |
2898
|
|
|
|
|
|
|
}, |
2899
|
|
|
|
|
|
|
'XAU' => { |
2900
|
|
|
|
|
|
|
display_name => { |
2901
|
|
|
|
|
|
|
'currency' => q(aur), |
2902
|
|
|
|
|
|
|
}, |
2903
|
|
|
|
|
|
|
}, |
2904
|
|
|
|
|
|
|
'XBA' => { |
2905
|
|
|
|
|
|
|
display_name => { |
2906
|
|
|
|
|
|
|
'currency' => q(unitad europeica cumponida), |
2907
|
|
|
|
|
|
|
}, |
2908
|
|
|
|
|
|
|
}, |
2909
|
|
|
|
|
|
|
'XBC' => { |
2910
|
|
|
|
|
|
|
display_name => { |
2911
|
|
|
|
|
|
|
'currency' => q(unitad dal quint europeica \(XBC\)), |
2912
|
|
|
|
|
|
|
}, |
2913
|
|
|
|
|
|
|
}, |
2914
|
|
|
|
|
|
|
'XBD' => { |
2915
|
|
|
|
|
|
|
display_name => { |
2916
|
|
|
|
|
|
|
'currency' => q(unitad dal quint europeica \(XBD\)), |
2917
|
|
|
|
|
|
|
}, |
2918
|
|
|
|
|
|
|
}, |
2919
|
|
|
|
|
|
|
'XCD' => { |
2920
|
|
|
|
|
|
|
symbol => 'EC$', |
2921
|
|
|
|
|
|
|
display_name => { |
2922
|
|
|
|
|
|
|
'currency' => q(dollar da la Caribica Orientala), |
2923
|
|
|
|
|
|
|
'one' => q(dollar da la Caribica Orientala), |
2924
|
|
|
|
|
|
|
'other' => q(dollar da la Caribica Orientala), |
2925
|
|
|
|
|
|
|
}, |
2926
|
|
|
|
|
|
|
}, |
2927
|
|
|
|
|
|
|
'XDR' => { |
2928
|
|
|
|
|
|
|
display_name => { |
2929
|
|
|
|
|
|
|
'currency' => q(dretgs da prelevaziun spezials), |
2930
|
|
|
|
|
|
|
}, |
2931
|
|
|
|
|
|
|
}, |
2932
|
|
|
|
|
|
|
'XEU' => { |
2933
|
|
|
|
|
|
|
symbol => 'XEU', |
2934
|
|
|
|
|
|
|
display_name => { |
2935
|
|
|
|
|
|
|
'currency' => q(unitad monetara europeica), |
2936
|
|
|
|
|
|
|
'one' => q(unitad monetara europeica), |
2937
|
|
|
|
|
|
|
'other' => q(unitads monetaras europeicas), |
2938
|
|
|
|
|
|
|
}, |
2939
|
|
|
|
|
|
|
}, |
2940
|
|
|
|
|
|
|
'XFO' => { |
2941
|
|
|
|
|
|
|
display_name => { |
2942
|
|
|
|
|
|
|
'currency' => q(franc d’aur franzos), |
2943
|
|
|
|
|
|
|
}, |
2944
|
|
|
|
|
|
|
}, |
2945
|
|
|
|
|
|
|
'XFU' => { |
2946
|
|
|
|
|
|
|
display_name => { |
2947
|
|
|
|
|
|
|
'currency' => q(franc UIC franzos), |
2948
|
|
|
|
|
|
|
}, |
2949
|
|
|
|
|
|
|
}, |
2950
|
|
|
|
|
|
|
'XOF' => { |
2951
|
|
|
|
|
|
|
display_name => { |
2952
|
|
|
|
|
|
|
'currency' => q(franc CFA BCEAO), |
2953
|
|
|
|
|
|
|
}, |
2954
|
|
|
|
|
|
|
}, |
2955
|
|
|
|
|
|
|
'XPD' => { |
2956
|
|
|
|
|
|
|
display_name => { |
2957
|
|
|
|
|
|
|
'currency' => q(palladi), |
2958
|
|
|
|
|
|
|
}, |
2959
|
|
|
|
|
|
|
}, |
2960
|
|
|
|
|
|
|
'XPF' => { |
2961
|
|
|
|
|
|
|
display_name => { |
2962
|
|
|
|
|
|
|
'currency' => q(franc CFP), |
2963
|
|
|
|
|
|
|
}, |
2964
|
|
|
|
|
|
|
}, |
2965
|
|
|
|
|
|
|
'XPT' => { |
2966
|
|
|
|
|
|
|
display_name => { |
2967
|
|
|
|
|
|
|
'currency' => q(platin), |
2968
|
|
|
|
|
|
|
}, |
2969
|
|
|
|
|
|
|
}, |
2970
|
|
|
|
|
|
|
'XRE' => { |
2971
|
|
|
|
|
|
|
display_name => { |
2972
|
|
|
|
|
|
|
'currency' => q(fonds RINET), |
2973
|
|
|
|
|
|
|
}, |
2974
|
|
|
|
|
|
|
}, |
2975
|
|
|
|
|
|
|
'XTS' => { |
2976
|
|
|
|
|
|
|
display_name => { |
2977
|
|
|
|
|
|
|
'currency' => q(code per verifitgar la valuta), |
2978
|
|
|
|
|
|
|
}, |
2979
|
|
|
|
|
|
|
}, |
2980
|
|
|
|
|
|
|
'XXX' => { |
2981
|
|
|
|
|
|
|
display_name => { |
2982
|
|
|
|
|
|
|
'currency' => q(valuta nunenconuschenta), |
2983
|
|
|
|
|
|
|
'one' => q(valuta nunenconuschenta), |
2984
|
|
|
|
|
|
|
'other' => q(valuta nunenconuschenta), |
2985
|
|
|
|
|
|
|
}, |
2986
|
|
|
|
|
|
|
}, |
2987
|
|
|
|
|
|
|
'YDD' => { |
2988
|
|
|
|
|
|
|
display_name => { |
2989
|
|
|
|
|
|
|
'currency' => q(dinar dal Jemen), |
2990
|
|
|
|
|
|
|
}, |
2991
|
|
|
|
|
|
|
}, |
2992
|
|
|
|
|
|
|
'YER' => { |
2993
|
|
|
|
|
|
|
display_name => { |
2994
|
|
|
|
|
|
|
'currency' => q(rial dal Jemen), |
2995
|
|
|
|
|
|
|
}, |
2996
|
|
|
|
|
|
|
}, |
2997
|
|
|
|
|
|
|
'YUD' => { |
2998
|
|
|
|
|
|
|
display_name => { |
2999
|
|
|
|
|
|
|
'currency' => q(dinar jugoslav \(1966–1990\)), |
3000
|
|
|
|
|
|
|
}, |
3001
|
|
|
|
|
|
|
}, |
3002
|
|
|
|
|
|
|
'YUM' => { |
3003
|
|
|
|
|
|
|
display_name => { |
3004
|
|
|
|
|
|
|
'currency' => q(nov dinar jugoslav), |
3005
|
|
|
|
|
|
|
}, |
3006
|
|
|
|
|
|
|
}, |
3007
|
|
|
|
|
|
|
'YUN' => { |
3008
|
|
|
|
|
|
|
display_name => { |
3009
|
|
|
|
|
|
|
'currency' => q(dinar jugoslav convertibel), |
3010
|
|
|
|
|
|
|
}, |
3011
|
|
|
|
|
|
|
}, |
3012
|
|
|
|
|
|
|
'YUR' => { |
3013
|
|
|
|
|
|
|
display_name => { |
3014
|
|
|
|
|
|
|
'currency' => q(dinar jugoslav refurmà), |
3015
|
|
|
|
|
|
|
}, |
3016
|
|
|
|
|
|
|
}, |
3017
|
|
|
|
|
|
|
'ZAL' => { |
3018
|
|
|
|
|
|
|
display_name => { |
3019
|
|
|
|
|
|
|
'currency' => q(rand sidafrican \(finanzial\)), |
3020
|
|
|
|
|
|
|
}, |
3021
|
|
|
|
|
|
|
}, |
3022
|
|
|
|
|
|
|
'ZAR' => { |
3023
|
|
|
|
|
|
|
display_name => { |
3024
|
|
|
|
|
|
|
'currency' => q(rand sidafrican), |
3025
|
|
|
|
|
|
|
}, |
3026
|
|
|
|
|
|
|
}, |
3027
|
|
|
|
|
|
|
'ZMK' => { |
3028
|
|
|
|
|
|
|
display_name => { |
3029
|
|
|
|
|
|
|
'currency' => q(kwacha da la sambia \(1968–2012\)), |
3030
|
|
|
|
|
|
|
}, |
3031
|
|
|
|
|
|
|
}, |
3032
|
|
|
|
|
|
|
'ZMW' => { |
3033
|
|
|
|
|
|
|
display_name => { |
3034
|
|
|
|
|
|
|
'currency' => q(kwacha da la sambia), |
3035
|
|
|
|
|
|
|
}, |
3036
|
|
|
|
|
|
|
}, |
3037
|
|
|
|
|
|
|
'ZRN' => { |
3038
|
|
|
|
|
|
|
display_name => { |
3039
|
|
|
|
|
|
|
'currency' => q(nov zaire dal Zaire), |
3040
|
|
|
|
|
|
|
}, |
3041
|
|
|
|
|
|
|
}, |
3042
|
|
|
|
|
|
|
'ZRZ' => { |
3043
|
|
|
|
|
|
|
display_name => { |
3044
|
|
|
|
|
|
|
'currency' => q(zaire dal Zaire), |
3045
|
|
|
|
|
|
|
}, |
3046
|
|
|
|
|
|
|
}, |
3047
|
|
|
|
|
|
|
'ZWD' => { |
3048
|
|
|
|
|
|
|
display_name => { |
3049
|
|
|
|
|
|
|
'currency' => q(dollar dal Simbabwe), |
3050
|
|
|
|
|
|
|
}, |
3051
|
|
|
|
|
|
|
}, |
3052
|
|
|
|
|
|
|
} }, |
3053
|
|
|
|
|
|
|
); |
3054
|
|
|
|
|
|
|
|
3055
|
|
|
|
|
|
|
|
3056
|
|
|
|
|
|
|
has 'calendar_months' => ( |
3057
|
|
|
|
|
|
|
is => 'ro', |
3058
|
|
|
|
|
|
|
isa => HashRef, |
3059
|
|
|
|
|
|
|
init_arg => undef, |
3060
|
|
|
|
|
|
|
default => sub { { |
3061
|
|
|
|
|
|
|
'gregorian' => { |
3062
|
|
|
|
|
|
|
'format' => { |
3063
|
|
|
|
|
|
|
abbreviated => { |
3064
|
|
|
|
|
|
|
nonleap => [ |
3065
|
|
|
|
|
|
|
'schan.', |
3066
|
|
|
|
|
|
|
'favr.', |
3067
|
|
|
|
|
|
|
'mars', |
3068
|
|
|
|
|
|
|
'avr.', |
3069
|
|
|
|
|
|
|
'matg', |
3070
|
|
|
|
|
|
|
'zercl.', |
3071
|
|
|
|
|
|
|
'fan.', |
3072
|
|
|
|
|
|
|
'avust', |
3073
|
|
|
|
|
|
|
'sett.', |
3074
|
|
|
|
|
|
|
'oct.', |
3075
|
|
|
|
|
|
|
'nov.', |
3076
|
|
|
|
|
|
|
'dec.' |
3077
|
|
|
|
|
|
|
], |
3078
|
|
|
|
|
|
|
leap => [ |
3079
|
|
|
|
|
|
|
|
3080
|
|
|
|
|
|
|
], |
3081
|
|
|
|
|
|
|
}, |
3082
|
|
|
|
|
|
|
narrow => { |
3083
|
|
|
|
|
|
|
nonleap => [ |
3084
|
|
|
|
|
|
|
'S', |
3085
|
|
|
|
|
|
|
'F', |
3086
|
|
|
|
|
|
|
'M', |
3087
|
|
|
|
|
|
|
'A', |
3088
|
|
|
|
|
|
|
'M', |
3089
|
|
|
|
|
|
|
'Z', |
3090
|
|
|
|
|
|
|
'F', |
3091
|
|
|
|
|
|
|
'A', |
3092
|
|
|
|
|
|
|
'S', |
3093
|
|
|
|
|
|
|
'O', |
3094
|
|
|
|
|
|
|
'N', |
3095
|
|
|
|
|
|
|
'D' |
3096
|
|
|
|
|
|
|
], |
3097
|
|
|
|
|
|
|
leap => [ |
3098
|
|
|
|
|
|
|
|
3099
|
|
|
|
|
|
|
], |
3100
|
|
|
|
|
|
|
}, |
3101
|
|
|
|
|
|
|
wide => { |
3102
|
|
|
|
|
|
|
nonleap => [ |
3103
|
|
|
|
|
|
|
'schaner', |
3104
|
|
|
|
|
|
|
'favrer', |
3105
|
|
|
|
|
|
|
'mars', |
3106
|
|
|
|
|
|
|
'avrigl', |
3107
|
|
|
|
|
|
|
'matg', |
3108
|
|
|
|
|
|
|
'zercladur', |
3109
|
|
|
|
|
|
|
'fanadur', |
3110
|
|
|
|
|
|
|
'avust', |
3111
|
|
|
|
|
|
|
'settember', |
3112
|
|
|
|
|
|
|
'october', |
3113
|
|
|
|
|
|
|
'november', |
3114
|
|
|
|
|
|
|
'december' |
3115
|
|
|
|
|
|
|
], |
3116
|
|
|
|
|
|
|
leap => [ |
3117
|
|
|
|
|
|
|
|
3118
|
|
|
|
|
|
|
], |
3119
|
|
|
|
|
|
|
}, |
3120
|
|
|
|
|
|
|
}, |
3121
|
|
|
|
|
|
|
'stand-alone' => { |
3122
|
|
|
|
|
|
|
abbreviated => { |
3123
|
|
|
|
|
|
|
nonleap => [ |
3124
|
|
|
|
|
|
|
'schan.', |
3125
|
|
|
|
|
|
|
'favr.', |
3126
|
|
|
|
|
|
|
'mars', |
3127
|
|
|
|
|
|
|
'avr.', |
3128
|
|
|
|
|
|
|
'matg', |
3129
|
|
|
|
|
|
|
'zercl.', |
3130
|
|
|
|
|
|
|
'fan.', |
3131
|
|
|
|
|
|
|
'avust', |
3132
|
|
|
|
|
|
|
'sett.', |
3133
|
|
|
|
|
|
|
'oct.', |
3134
|
|
|
|
|
|
|
'nov.', |
3135
|
|
|
|
|
|
|
'dec.' |
3136
|
|
|
|
|
|
|
], |
3137
|
|
|
|
|
|
|
leap => [ |
3138
|
|
|
|
|
|
|
|
3139
|
|
|
|
|
|
|
], |
3140
|
|
|
|
|
|
|
}, |
3141
|
|
|
|
|
|
|
narrow => { |
3142
|
|
|
|
|
|
|
nonleap => [ |
3143
|
|
|
|
|
|
|
'S', |
3144
|
|
|
|
|
|
|
'F', |
3145
|
|
|
|
|
|
|
'M', |
3146
|
|
|
|
|
|
|
'A', |
3147
|
|
|
|
|
|
|
'M', |
3148
|
|
|
|
|
|
|
'Z', |
3149
|
|
|
|
|
|
|
'F', |
3150
|
|
|
|
|
|
|
'A', |
3151
|
|
|
|
|
|
|
'S', |
3152
|
|
|
|
|
|
|
'O', |
3153
|
|
|
|
|
|
|
'N', |
3154
|
|
|
|
|
|
|
'D' |
3155
|
|
|
|
|
|
|
], |
3156
|
|
|
|
|
|
|
leap => [ |
3157
|
|
|
|
|
|
|
|
3158
|
|
|
|
|
|
|
], |
3159
|
|
|
|
|
|
|
}, |
3160
|
|
|
|
|
|
|
wide => { |
3161
|
|
|
|
|
|
|
nonleap => [ |
3162
|
|
|
|
|
|
|
'schaner', |
3163
|
|
|
|
|
|
|
'favrer', |
3164
|
|
|
|
|
|
|
'mars', |
3165
|
|
|
|
|
|
|
'avrigl', |
3166
|
|
|
|
|
|
|
'matg', |
3167
|
|
|
|
|
|
|
'zercladur', |
3168
|
|
|
|
|
|
|
'fanadur', |
3169
|
|
|
|
|
|
|
'avust', |
3170
|
|
|
|
|
|
|
'settember', |
3171
|
|
|
|
|
|
|
'october', |
3172
|
|
|
|
|
|
|
'november', |
3173
|
|
|
|
|
|
|
'december' |
3174
|
|
|
|
|
|
|
], |
3175
|
|
|
|
|
|
|
leap => [ |
3176
|
|
|
|
|
|
|
|
3177
|
|
|
|
|
|
|
], |
3178
|
|
|
|
|
|
|
}, |
3179
|
|
|
|
|
|
|
}, |
3180
|
|
|
|
|
|
|
}, |
3181
|
|
|
|
|
|
|
} }, |
3182
|
|
|
|
|
|
|
); |
3183
|
|
|
|
|
|
|
|
3184
|
|
|
|
|
|
|
has 'calendar_days' => ( |
3185
|
|
|
|
|
|
|
is => 'ro', |
3186
|
|
|
|
|
|
|
isa => HashRef, |
3187
|
|
|
|
|
|
|
init_arg => undef, |
3188
|
|
|
|
|
|
|
default => sub { { |
3189
|
|
|
|
|
|
|
'gregorian' => { |
3190
|
|
|
|
|
|
|
'format' => { |
3191
|
|
|
|
|
|
|
abbreviated => { |
3192
|
|
|
|
|
|
|
mon => 'gli', |
3193
|
|
|
|
|
|
|
tue => 'ma', |
3194
|
|
|
|
|
|
|
wed => 'me', |
3195
|
|
|
|
|
|
|
thu => 'gie', |
3196
|
|
|
|
|
|
|
fri => 've', |
3197
|
|
|
|
|
|
|
sat => 'so', |
3198
|
|
|
|
|
|
|
sun => 'du' |
3199
|
|
|
|
|
|
|
}, |
3200
|
|
|
|
|
|
|
narrow => { |
3201
|
|
|
|
|
|
|
mon => 'G', |
3202
|
|
|
|
|
|
|
tue => 'M', |
3203
|
|
|
|
|
|
|
wed => 'M', |
3204
|
|
|
|
|
|
|
thu => 'G', |
3205
|
|
|
|
|
|
|
fri => 'V', |
3206
|
|
|
|
|
|
|
sat => 'S', |
3207
|
|
|
|
|
|
|
sun => 'D' |
3208
|
|
|
|
|
|
|
}, |
3209
|
|
|
|
|
|
|
short => { |
3210
|
|
|
|
|
|
|
mon => 'gli', |
3211
|
|
|
|
|
|
|
tue => 'ma', |
3212
|
|
|
|
|
|
|
wed => 'me', |
3213
|
|
|
|
|
|
|
thu => 'gie', |
3214
|
|
|
|
|
|
|
fri => 've', |
3215
|
|
|
|
|
|
|
sat => 'so', |
3216
|
|
|
|
|
|
|
sun => 'du' |
3217
|
|
|
|
|
|
|
}, |
3218
|
|
|
|
|
|
|
wide => { |
3219
|
|
|
|
|
|
|
mon => 'glindesdi', |
3220
|
|
|
|
|
|
|
tue => 'mardi', |
3221
|
|
|
|
|
|
|
wed => 'mesemna', |
3222
|
|
|
|
|
|
|
thu => 'gievgia', |
3223
|
|
|
|
|
|
|
fri => 'venderdi', |
3224
|
|
|
|
|
|
|
sat => 'sonda', |
3225
|
|
|
|
|
|
|
sun => 'dumengia' |
3226
|
|
|
|
|
|
|
}, |
3227
|
|
|
|
|
|
|
}, |
3228
|
|
|
|
|
|
|
'stand-alone' => { |
3229
|
|
|
|
|
|
|
abbreviated => { |
3230
|
|
|
|
|
|
|
mon => 'gli', |
3231
|
|
|
|
|
|
|
tue => 'ma', |
3232
|
|
|
|
|
|
|
wed => 'me', |
3233
|
|
|
|
|
|
|
thu => 'gie', |
3234
|
|
|
|
|
|
|
fri => 've', |
3235
|
|
|
|
|
|
|
sat => 'so', |
3236
|
|
|
|
|
|
|
sun => 'du' |
3237
|
|
|
|
|
|
|
}, |
3238
|
|
|
|
|
|
|
narrow => { |
3239
|
|
|
|
|
|
|
mon => 'G', |
3240
|
|
|
|
|
|
|
tue => 'M', |
3241
|
|
|
|
|
|
|
wed => 'M', |
3242
|
|
|
|
|
|
|
thu => 'G', |
3243
|
|
|
|
|
|
|
fri => 'V', |
3244
|
|
|
|
|
|
|
sat => 'S', |
3245
|
|
|
|
|
|
|
sun => 'D' |
3246
|
|
|
|
|
|
|
}, |
3247
|
|
|
|
|
|
|
short => { |
3248
|
|
|
|
|
|
|
mon => 'gli', |
3249
|
|
|
|
|
|
|
tue => 'ma', |
3250
|
|
|
|
|
|
|
wed => 'me', |
3251
|
|
|
|
|
|
|
thu => 'gie', |
3252
|
|
|
|
|
|
|
fri => 've', |
3253
|
|
|
|
|
|
|
sat => 'so', |
3254
|
|
|
|
|
|
|
sun => 'du' |
3255
|
|
|
|
|
|
|
}, |
3256
|
|
|
|
|
|
|
wide => { |
3257
|
|
|
|
|
|
|
mon => 'glindesdi', |
3258
|
|
|
|
|
|
|
tue => 'mardi', |
3259
|
|
|
|
|
|
|
wed => 'mesemna', |
3260
|
|
|
|
|
|
|
thu => 'gievgia', |
3261
|
|
|
|
|
|
|
fri => 'venderdi', |
3262
|
|
|
|
|
|
|
sat => 'sonda', |
3263
|
|
|
|
|
|
|
sun => 'dumengia' |
3264
|
|
|
|
|
|
|
}, |
3265
|
|
|
|
|
|
|
}, |
3266
|
|
|
|
|
|
|
}, |
3267
|
|
|
|
|
|
|
} }, |
3268
|
|
|
|
|
|
|
); |
3269
|
|
|
|
|
|
|
|
3270
|
|
|
|
|
|
|
has 'calendar_quarters' => ( |
3271
|
|
|
|
|
|
|
is => 'ro', |
3272
|
|
|
|
|
|
|
isa => HashRef, |
3273
|
|
|
|
|
|
|
init_arg => undef, |
3274
|
|
|
|
|
|
|
default => sub { { |
3275
|
|
|
|
|
|
|
'gregorian' => { |
3276
|
|
|
|
|
|
|
'format' => { |
3277
|
|
|
|
|
|
|
abbreviated => {0 => 'Q1', |
3278
|
|
|
|
|
|
|
1 => 'Q2', |
3279
|
|
|
|
|
|
|
2 => 'Q3', |
3280
|
|
|
|
|
|
|
3 => 'Q4' |
3281
|
|
|
|
|
|
|
}, |
3282
|
|
|
|
|
|
|
narrow => {0 => '1', |
3283
|
|
|
|
|
|
|
1 => '2', |
3284
|
|
|
|
|
|
|
2 => '3', |
3285
|
|
|
|
|
|
|
3 => '4' |
3286
|
|
|
|
|
|
|
}, |
3287
|
|
|
|
|
|
|
wide => {0 => '1. quartal', |
3288
|
|
|
|
|
|
|
1 => '2. quartal', |
3289
|
|
|
|
|
|
|
2 => '3. quartal', |
3290
|
|
|
|
|
|
|
3 => '4. quartal' |
3291
|
|
|
|
|
|
|
}, |
3292
|
|
|
|
|
|
|
}, |
3293
|
|
|
|
|
|
|
'stand-alone' => { |
3294
|
|
|
|
|
|
|
abbreviated => {0 => 'Q1', |
3295
|
|
|
|
|
|
|
1 => 'Q2', |
3296
|
|
|
|
|
|
|
2 => 'Q3', |
3297
|
|
|
|
|
|
|
3 => 'Q4' |
3298
|
|
|
|
|
|
|
}, |
3299
|
|
|
|
|
|
|
narrow => {0 => '1', |
3300
|
|
|
|
|
|
|
1 => '2', |
3301
|
|
|
|
|
|
|
2 => '3', |
3302
|
|
|
|
|
|
|
3 => '4' |
3303
|
|
|
|
|
|
|
}, |
3304
|
|
|
|
|
|
|
wide => {0 => '1. quartal', |
3305
|
|
|
|
|
|
|
1 => '2. quartal', |
3306
|
|
|
|
|
|
|
2 => '3. quartal', |
3307
|
|
|
|
|
|
|
3 => '4. quartal' |
3308
|
|
|
|
|
|
|
}, |
3309
|
|
|
|
|
|
|
}, |
3310
|
|
|
|
|
|
|
}, |
3311
|
|
|
|
|
|
|
} }, |
3312
|
|
|
|
|
|
|
); |
3313
|
|
|
|
|
|
|
|
3314
|
|
|
|
|
|
|
has 'day_periods' => ( |
3315
|
|
|
|
|
|
|
is => 'ro', |
3316
|
|
|
|
|
|
|
isa => HashRef, |
3317
|
|
|
|
|
|
|
init_arg => undef, |
3318
|
|
|
|
|
|
|
default => sub { { |
3319
|
|
|
|
|
|
|
'gregorian' => { |
3320
|
|
|
|
|
|
|
'format' => { |
3321
|
|
|
|
|
|
|
'abbreviated' => { |
3322
|
|
|
|
|
|
|
'am' => q{AM}, |
3323
|
|
|
|
|
|
|
'pm' => q{PM}, |
3324
|
|
|
|
|
|
|
}, |
3325
|
|
|
|
|
|
|
'narrow' => { |
3326
|
|
|
|
|
|
|
'am' => q{AM}, |
3327
|
|
|
|
|
|
|
'pm' => q{PM}, |
3328
|
|
|
|
|
|
|
}, |
3329
|
|
|
|
|
|
|
'wide' => { |
3330
|
|
|
|
|
|
|
'am' => q{AM}, |
3331
|
|
|
|
|
|
|
'pm' => q{PM}, |
3332
|
|
|
|
|
|
|
}, |
3333
|
|
|
|
|
|
|
}, |
3334
|
|
|
|
|
|
|
'stand-alone' => { |
3335
|
|
|
|
|
|
|
'abbreviated' => { |
3336
|
|
|
|
|
|
|
'am' => q{AM}, |
3337
|
|
|
|
|
|
|
'pm' => q{PM}, |
3338
|
|
|
|
|
|
|
}, |
3339
|
|
|
|
|
|
|
'narrow' => { |
3340
|
|
|
|
|
|
|
'am' => q{AM}, |
3341
|
|
|
|
|
|
|
'pm' => q{PM}, |
3342
|
|
|
|
|
|
|
}, |
3343
|
|
|
|
|
|
|
'wide' => { |
3344
|
|
|
|
|
|
|
'am' => q{AM}, |
3345
|
|
|
|
|
|
|
'pm' => q{PM}, |
3346
|
|
|
|
|
|
|
}, |
3347
|
|
|
|
|
|
|
}, |
3348
|
|
|
|
|
|
|
}, |
3349
|
|
|
|
|
|
|
} }, |
3350
|
|
|
|
|
|
|
); |
3351
|
|
|
|
|
|
|
|
3352
|
|
|
|
|
|
|
has 'eras' => ( |
3353
|
|
|
|
|
|
|
is => 'ro', |
3354
|
|
|
|
|
|
|
isa => HashRef, |
3355
|
|
|
|
|
|
|
init_arg => undef, |
3356
|
|
|
|
|
|
|
default => sub { { |
3357
|
|
|
|
|
|
|
'generic' => { |
3358
|
|
|
|
|
|
|
}, |
3359
|
|
|
|
|
|
|
'gregorian' => { |
3360
|
|
|
|
|
|
|
abbreviated => { |
3361
|
|
|
|
|
|
|
'0' => 'av. Cr.', |
3362
|
|
|
|
|
|
|
'1' => 's. Cr.' |
3363
|
|
|
|
|
|
|
}, |
3364
|
|
|
|
|
|
|
wide => { |
3365
|
|
|
|
|
|
|
'0' => 'avant Cristus', |
3366
|
|
|
|
|
|
|
'1' => 'suenter Cristus' |
3367
|
|
|
|
|
|
|
}, |
3368
|
|
|
|
|
|
|
}, |
3369
|
|
|
|
|
|
|
} }, |
3370
|
|
|
|
|
|
|
); |
3371
|
|
|
|
|
|
|
|
3372
|
|
|
|
|
|
|
has 'date_formats' => ( |
3373
|
|
|
|
|
|
|
is => 'ro', |
3374
|
|
|
|
|
|
|
isa => HashRef, |
3375
|
|
|
|
|
|
|
init_arg => undef, |
3376
|
|
|
|
|
|
|
default => sub { { |
3377
|
|
|
|
|
|
|
'generic' => { |
3378
|
|
|
|
|
|
|
'full' => q{EEEE, 'ils' d 'da' MMMM y G}, |
3379
|
|
|
|
|
|
|
'long' => q{d 'da' MMMM y G}, |
3380
|
|
|
|
|
|
|
'medium' => q{dd-MM-y G}, |
3381
|
|
|
|
|
|
|
'short' => q{dd-MM-yy GGGGG}, |
3382
|
|
|
|
|
|
|
}, |
3383
|
|
|
|
|
|
|
'gregorian' => { |
3384
|
|
|
|
|
|
|
'full' => q{EEEE, 'ils' d 'da' MMMM y}, |
3385
|
|
|
|
|
|
|
'long' => q{d 'da' MMMM y}, |
3386
|
|
|
|
|
|
|
'medium' => q{dd-MM-y}, |
3387
|
|
|
|
|
|
|
'short' => q{dd-MM-yy}, |
3388
|
|
|
|
|
|
|
}, |
3389
|
|
|
|
|
|
|
} }, |
3390
|
|
|
|
|
|
|
); |
3391
|
|
|
|
|
|
|
|
3392
|
|
|
|
|
|
|
has 'time_formats' => ( |
3393
|
|
|
|
|
|
|
is => 'ro', |
3394
|
|
|
|
|
|
|
isa => HashRef, |
3395
|
|
|
|
|
|
|
init_arg => undef, |
3396
|
|
|
|
|
|
|
default => sub { { |
3397
|
|
|
|
|
|
|
'generic' => { |
3398
|
|
|
|
|
|
|
}, |
3399
|
|
|
|
|
|
|
'gregorian' => { |
3400
|
|
|
|
|
|
|
'full' => q{HH:mm:ss zzzz}, |
3401
|
|
|
|
|
|
|
'long' => q{HH:mm:ss z}, |
3402
|
|
|
|
|
|
|
'medium' => q{HH:mm:ss}, |
3403
|
|
|
|
|
|
|
'short' => q{HH:mm}, |
3404
|
|
|
|
|
|
|
}, |
3405
|
|
|
|
|
|
|
} }, |
3406
|
|
|
|
|
|
|
); |
3407
|
|
|
|
|
|
|
|
3408
|
|
|
|
|
|
|
has 'datetime_formats' => ( |
3409
|
|
|
|
|
|
|
is => 'ro', |
3410
|
|
|
|
|
|
|
isa => HashRef, |
3411
|
|
|
|
|
|
|
init_arg => undef, |
3412
|
|
|
|
|
|
|
default => sub { { |
3413
|
|
|
|
|
|
|
'generic' => { |
3414
|
|
|
|
|
|
|
}, |
3415
|
|
|
|
|
|
|
'gregorian' => { |
3416
|
|
|
|
|
|
|
'full' => q{{1} {0}}, |
3417
|
|
|
|
|
|
|
'long' => q{{1} {0}}, |
3418
|
|
|
|
|
|
|
'medium' => q{{1} {0}}, |
3419
|
|
|
|
|
|
|
'short' => q{{1} {0}}, |
3420
|
|
|
|
|
|
|
}, |
3421
|
|
|
|
|
|
|
} }, |
3422
|
|
|
|
|
|
|
); |
3423
|
|
|
|
|
|
|
|
3424
|
|
|
|
|
|
|
has 'datetime_formats_available_formats' => ( |
3425
|
|
|
|
|
|
|
is => 'ro', |
3426
|
|
|
|
|
|
|
isa => HashRef, |
3427
|
|
|
|
|
|
|
init_arg => undef, |
3428
|
|
|
|
|
|
|
default => sub { { |
3429
|
|
|
|
|
|
|
'generic' => { |
3430
|
|
|
|
|
|
|
Ed => q{E d.}, |
3431
|
|
|
|
|
|
|
H => q{H}, |
3432
|
|
|
|
|
|
|
HHmm => q{HH:mm}, |
3433
|
|
|
|
|
|
|
HHmmss => q{HH:mm:ss}, |
3434
|
|
|
|
|
|
|
Hm => q{H:mm}, |
3435
|
|
|
|
|
|
|
M => q{L}, |
3436
|
|
|
|
|
|
|
MEd => q{E, d.M.}, |
3437
|
|
|
|
|
|
|
MMM => q{LLL}, |
3438
|
|
|
|
|
|
|
MMMEd => q{E d. MMM}, |
3439
|
|
|
|
|
|
|
MMMMEd => q{E d. MMMM}, |
3440
|
|
|
|
|
|
|
MMMMd => q{d. MMMM}, |
3441
|
|
|
|
|
|
|
MMMd => q{d. MMM}, |
3442
|
|
|
|
|
|
|
MMd => q{d.MM.}, |
3443
|
|
|
|
|
|
|
MMdd => q{dd.MM.}, |
3444
|
|
|
|
|
|
|
Md => q{d.M.}, |
3445
|
|
|
|
|
|
|
d => q{d}, |
3446
|
|
|
|
|
|
|
mmss => q{mm:ss}, |
3447
|
|
|
|
|
|
|
ms => q{mm:ss}, |
3448
|
|
|
|
|
|
|
y => q{y}, |
3449
|
|
|
|
|
|
|
yM => q{y-M}, |
3450
|
|
|
|
|
|
|
yMEd => q{E, y-M-d}, |
3451
|
|
|
|
|
|
|
yMM => q{MM.y}, |
3452
|
|
|
|
|
|
|
yMMM => q{MMM y}, |
3453
|
|
|
|
|
|
|
yMMMEd => q{E, d. MMM y}, |
3454
|
|
|
|
|
|
|
yMMMM => q{MMMM y}, |
3455
|
|
|
|
|
|
|
yMMdd => q{dd.MM.y}, |
3456
|
|
|
|
|
|
|
yQQQ => q{QQQ y}, |
3457
|
|
|
|
|
|
|
yQQQQ => q{QQQQ y}, |
3458
|
|
|
|
|
|
|
}, |
3459
|
|
|
|
|
|
|
'gregorian' => { |
3460
|
|
|
|
|
|
|
E => q{ccc}, |
3461
|
|
|
|
|
|
|
EHm => q{E HH:mm}, |
3462
|
|
|
|
|
|
|
EHms => q{E HH:mm:ss}, |
3463
|
|
|
|
|
|
|
Ed => q{E d.}, |
3464
|
|
|
|
|
|
|
Ehm => q{E h:mm a}, |
3465
|
|
|
|
|
|
|
Ehms => q{E h:mm:ss a}, |
3466
|
|
|
|
|
|
|
Gy => q{G y}, |
3467
|
|
|
|
|
|
|
GyMMM => q{G y MMM}, |
3468
|
|
|
|
|
|
|
GyMMMEd => q{G y MMM d, E}, |
3469
|
|
|
|
|
|
|
GyMMMd => q{G y MMM d}, |
3470
|
|
|
|
|
|
|
H => q{HH}, |
3471
|
|
|
|
|
|
|
HHmm => q{HH:mm}, |
3472
|
|
|
|
|
|
|
HHmmss => q{HH:mm:ss}, |
3473
|
|
|
|
|
|
|
Hm => q{HH:mm}, |
3474
|
|
|
|
|
|
|
Hms => q{HH:mm:ss}, |
3475
|
|
|
|
|
|
|
Hmsv => q{HH:mm:ss v}, |
3476
|
|
|
|
|
|
|
Hmv => q{HH:mm v}, |
3477
|
|
|
|
|
|
|
M => q{L}, |
3478
|
|
|
|
|
|
|
MEd => q{E, d.M.}, |
3479
|
|
|
|
|
|
|
MMM => q{LLL}, |
3480
|
|
|
|
|
|
|
MMMEd => q{E d. MMM}, |
3481
|
|
|
|
|
|
|
MMMMEd => q{E d. MMMM}, |
3482
|
|
|
|
|
|
|
MMMMW => q{'week' W 'of' MMM}, |
3483
|
|
|
|
|
|
|
MMMMd => q{d. MMMM}, |
3484
|
|
|
|
|
|
|
MMMd => q{d. MMM}, |
3485
|
|
|
|
|
|
|
MMd => q{d.MM.}, |
3486
|
|
|
|
|
|
|
MMdd => q{dd.MM.}, |
3487
|
|
|
|
|
|
|
Md => q{d.M.}, |
3488
|
|
|
|
|
|
|
d => q{d}, |
3489
|
|
|
|
|
|
|
h => q{h a}, |
3490
|
|
|
|
|
|
|
hm => q{h:mm a}, |
3491
|
|
|
|
|
|
|
hms => q{h:mm:ss a}, |
3492
|
|
|
|
|
|
|
hmsv => q{h:mm:ss a v}, |
3493
|
|
|
|
|
|
|
hmv => q{h:mm a v}, |
3494
|
|
|
|
|
|
|
mmss => q{mm:ss}, |
3495
|
|
|
|
|
|
|
ms => q{mm:ss}, |
3496
|
|
|
|
|
|
|
y => q{y}, |
3497
|
|
|
|
|
|
|
yM => q{y-M}, |
3498
|
|
|
|
|
|
|
yMEd => q{E, y-M-d}, |
3499
|
|
|
|
|
|
|
yMM => q{MM.y}, |
3500
|
|
|
|
|
|
|
yMMM => q{MMM y}, |
3501
|
|
|
|
|
|
|
yMMMEd => q{y MMM d, E}, |
3502
|
|
|
|
|
|
|
yMMMM => q{y MMMM}, |
3503
|
|
|
|
|
|
|
yMMMd => q{y MMM d}, |
3504
|
|
|
|
|
|
|
yMMdd => q{dd.MM.y}, |
3505
|
|
|
|
|
|
|
yMd => q{y-MM-dd}, |
3506
|
|
|
|
|
|
|
yQQQ => q{y QQQ}, |
3507
|
|
|
|
|
|
|
yQQQQ => q{y QQQQ}, |
3508
|
|
|
|
|
|
|
yw => q{'week' w 'of' Y}, |
3509
|
|
|
|
|
|
|
}, |
3510
|
|
|
|
|
|
|
} }, |
3511
|
|
|
|
|
|
|
); |
3512
|
|
|
|
|
|
|
|
3513
|
|
|
|
|
|
|
has 'datetime_formats_append_item' => ( |
3514
|
|
|
|
|
|
|
is => 'ro', |
3515
|
|
|
|
|
|
|
isa => HashRef, |
3516
|
|
|
|
|
|
|
init_arg => undef, |
3517
|
|
|
|
|
|
|
default => sub { { |
3518
|
|
|
|
|
|
|
'gregorian' => { |
3519
|
|
|
|
|
|
|
'Timezone' => '{0} {1}', |
3520
|
|
|
|
|
|
|
}, |
3521
|
|
|
|
|
|
|
} }, |
3522
|
|
|
|
|
|
|
); |
3523
|
|
|
|
|
|
|
|
3524
|
|
|
|
|
|
|
has 'datetime_formats_interval' => ( |
3525
|
|
|
|
|
|
|
is => 'ro', |
3526
|
|
|
|
|
|
|
isa => HashRef, |
3527
|
|
|
|
|
|
|
init_arg => undef, |
3528
|
|
|
|
|
|
|
default => sub { { |
3529
|
|
|
|
|
|
|
'generic' => { |
3530
|
|
|
|
|
|
|
M => { |
3531
|
|
|
|
|
|
|
M => q{M.–M.}, |
3532
|
|
|
|
|
|
|
}, |
3533
|
|
|
|
|
|
|
MEd => { |
3534
|
|
|
|
|
|
|
M => q{E, dd.MM. – E, dd.MM.}, |
3535
|
|
|
|
|
|
|
d => q{E, dd.MM. – E, dd.MM.}, |
3536
|
|
|
|
|
|
|
}, |
3537
|
|
|
|
|
|
|
MMM => { |
3538
|
|
|
|
|
|
|
M => q{MMM–MMM}, |
3539
|
|
|
|
|
|
|
}, |
3540
|
|
|
|
|
|
|
MMMEd => { |
3541
|
|
|
|
|
|
|
M => q{E, d. MMM – E, d. MMM}, |
3542
|
|
|
|
|
|
|
d => q{E, d. – E, d. MMM}, |
3543
|
|
|
|
|
|
|
}, |
3544
|
|
|
|
|
|
|
MMMd => { |
3545
|
|
|
|
|
|
|
M => q{d. MMM – d. MMM}, |
3546
|
|
|
|
|
|
|
d => q{d.–d. MMM}, |
3547
|
|
|
|
|
|
|
}, |
3548
|
|
|
|
|
|
|
Md => { |
3549
|
|
|
|
|
|
|
M => q{dd.MM. – dd.MM.}, |
3550
|
|
|
|
|
|
|
d => q{dd.MM. – dd.MM.}, |
3551
|
|
|
|
|
|
|
}, |
3552
|
|
|
|
|
|
|
d => { |
3553
|
|
|
|
|
|
|
d => q{d.–d.}, |
3554
|
|
|
|
|
|
|
}, |
3555
|
|
|
|
|
|
|
fallback => '{0} - {1}', |
3556
|
|
|
|
|
|
|
h => { |
3557
|
|
|
|
|
|
|
a => q{h a – h a}, |
3558
|
|
|
|
|
|
|
h => q{h–h a}, |
3559
|
|
|
|
|
|
|
}, |
3560
|
|
|
|
|
|
|
hm => { |
3561
|
|
|
|
|
|
|
a => q{h:mm a – h:mm a}, |
3562
|
|
|
|
|
|
|
h => q{h:mm–h:mm a}, |
3563
|
|
|
|
|
|
|
m => q{h:mm–h:mm a}, |
3564
|
|
|
|
|
|
|
}, |
3565
|
|
|
|
|
|
|
hmv => { |
3566
|
|
|
|
|
|
|
a => q{h:mm a – h:mm a v}, |
3567
|
|
|
|
|
|
|
h => q{h:mm–h:mm a v}, |
3568
|
|
|
|
|
|
|
m => q{h:mm–h:mm a v}, |
3569
|
|
|
|
|
|
|
}, |
3570
|
|
|
|
|
|
|
hv => { |
3571
|
|
|
|
|
|
|
a => q{h a – h a v}, |
3572
|
|
|
|
|
|
|
h => q{h–h a v}, |
3573
|
|
|
|
|
|
|
}, |
3574
|
|
|
|
|
|
|
y => { |
3575
|
|
|
|
|
|
|
y => q{y–y}, |
3576
|
|
|
|
|
|
|
}, |
3577
|
|
|
|
|
|
|
yM => { |
3578
|
|
|
|
|
|
|
M => q{MM.y – MM.y}, |
3579
|
|
|
|
|
|
|
y => q{MM.y – MM.y}, |
3580
|
|
|
|
|
|
|
}, |
3581
|
|
|
|
|
|
|
yMEd => { |
3582
|
|
|
|
|
|
|
M => q{E, dd.MM.y – E, dd.MM.y}, |
3583
|
|
|
|
|
|
|
d => q{E, dd.MM.y – E, dd.MM.y}, |
3584
|
|
|
|
|
|
|
y => q{E, dd.MM.y – E, dd.MM.y}, |
3585
|
|
|
|
|
|
|
}, |
3586
|
|
|
|
|
|
|
yMMM => { |
3587
|
|
|
|
|
|
|
M => q{MMM–MMM y}, |
3588
|
|
|
|
|
|
|
y => q{MMM y – MMM y}, |
3589
|
|
|
|
|
|
|
}, |
3590
|
|
|
|
|
|
|
yMMMEd => { |
3591
|
|
|
|
|
|
|
M => q{E, d. MMM – E, d. MMM y}, |
3592
|
|
|
|
|
|
|
d => q{E, d. – E, d. MMM y}, |
3593
|
|
|
|
|
|
|
y => q{E, d. MMM y – E, d. MMM y}, |
3594
|
|
|
|
|
|
|
}, |
3595
|
|
|
|
|
|
|
yMMMM => { |
3596
|
|
|
|
|
|
|
M => q{MM – MM.y}, |
3597
|
|
|
|
|
|
|
y => q{MM.y – MM.y}, |
3598
|
|
|
|
|
|
|
}, |
3599
|
|
|
|
|
|
|
yMMMd => { |
3600
|
|
|
|
|
|
|
M => q{d. MMM – d. MMM y}, |
3601
|
|
|
|
|
|
|
d => q{d.–d. MMM y}, |
3602
|
|
|
|
|
|
|
y => q{d. MMM y – d. MMM y}, |
3603
|
|
|
|
|
|
|
}, |
3604
|
|
|
|
|
|
|
yMd => { |
3605
|
|
|
|
|
|
|
M => q{dd.MM.y – dd.MM.y}, |
3606
|
|
|
|
|
|
|
d => q{dd.MM.y – dd.MM.y}, |
3607
|
|
|
|
|
|
|
y => q{dd.MM.y – dd.MM.y}, |
3608
|
|
|
|
|
|
|
}, |
3609
|
|
|
|
|
|
|
}, |
3610
|
|
|
|
|
|
|
'gregorian' => { |
3611
|
|
|
|
|
|
|
H => { |
3612
|
|
|
|
|
|
|
H => q{HH–HH}, |
3613
|
|
|
|
|
|
|
}, |
3614
|
|
|
|
|
|
|
Hm => { |
3615
|
|
|
|
|
|
|
H => q{HH:mm–HH:mm}, |
3616
|
|
|
|
|
|
|
m => q{HH:mm–HH:mm}, |
3617
|
|
|
|
|
|
|
}, |
3618
|
|
|
|
|
|
|
Hmv => { |
3619
|
|
|
|
|
|
|
H => q{HH:mm–HH:mm v}, |
3620
|
|
|
|
|
|
|
m => q{HH:mm–HH:mm v}, |
3621
|
|
|
|
|
|
|
}, |
3622
|
|
|
|
|
|
|
Hv => { |
3623
|
|
|
|
|
|
|
H => q{HH–HH v}, |
3624
|
|
|
|
|
|
|
}, |
3625
|
|
|
|
|
|
|
M => { |
3626
|
|
|
|
|
|
|
M => q{MM–MM}, |
3627
|
|
|
|
|
|
|
}, |
3628
|
|
|
|
|
|
|
MEd => { |
3629
|
|
|
|
|
|
|
M => q{MM-dd, E – MM-dd, E}, |
3630
|
|
|
|
|
|
|
d => q{MM-dd, E – MM-dd, E}, |
3631
|
|
|
|
|
|
|
}, |
3632
|
|
|
|
|
|
|
MMM => { |
3633
|
|
|
|
|
|
|
M => q{LLL–LLL}, |
3634
|
|
|
|
|
|
|
}, |
3635
|
|
|
|
|
|
|
MMMEd => { |
3636
|
|
|
|
|
|
|
M => q{MMM d, E – MMM d, E}, |
3637
|
|
|
|
|
|
|
d => q{MMM d, E – MMM d, E}, |
3638
|
|
|
|
|
|
|
}, |
3639
|
|
|
|
|
|
|
MMMd => { |
3640
|
|
|
|
|
|
|
M => q{MMM d – MMM d}, |
3641
|
|
|
|
|
|
|
d => q{MMM d–d}, |
3642
|
|
|
|
|
|
|
}, |
3643
|
|
|
|
|
|
|
Md => { |
3644
|
|
|
|
|
|
|
M => q{MM-dd – MM-dd}, |
3645
|
|
|
|
|
|
|
d => q{MM-dd – MM-dd}, |
3646
|
|
|
|
|
|
|
}, |
3647
|
|
|
|
|
|
|
d => { |
3648
|
|
|
|
|
|
|
d => q{d–d}, |
3649
|
|
|
|
|
|
|
}, |
3650
|
|
|
|
|
|
|
fallback => '{0} – {1}', |
3651
|
|
|
|
|
|
|
h => { |
3652
|
|
|
|
|
|
|
a => q{h a – h a}, |
3653
|
|
|
|
|
|
|
h => q{h–h a}, |
3654
|
|
|
|
|
|
|
}, |
3655
|
|
|
|
|
|
|
hm => { |
3656
|
|
|
|
|
|
|
a => q{h:mm a – h:mm a}, |
3657
|
|
|
|
|
|
|
h => q{h:mm–h:mm a}, |
3658
|
|
|
|
|
|
|
m => q{h:mm–h:mm a}, |
3659
|
|
|
|
|
|
|
}, |
3660
|
|
|
|
|
|
|
hmv => { |
3661
|
|
|
|
|
|
|
a => q{h:mm a – h:mm a v}, |
3662
|
|
|
|
|
|
|
h => q{h:mm–h:mm a v}, |
3663
|
|
|
|
|
|
|
m => q{h:mm–h:mm a v}, |
3664
|
|
|
|
|
|
|
}, |
3665
|
|
|
|
|
|
|
hv => { |
3666
|
|
|
|
|
|
|
a => q{h a – h a v}, |
3667
|
|
|
|
|
|
|
h => q{h–h a v}, |
3668
|
|
|
|
|
|
|
}, |
3669
|
|
|
|
|
|
|
y => { |
3670
|
|
|
|
|
|
|
y => q{y–y}, |
3671
|
|
|
|
|
|
|
}, |
3672
|
|
|
|
|
|
|
yM => { |
3673
|
|
|
|
|
|
|
M => q{y-MM – y-MM}, |
3674
|
|
|
|
|
|
|
y => q{y-MM – y-MM}, |
3675
|
|
|
|
|
|
|
}, |
3676
|
|
|
|
|
|
|
yMEd => { |
3677
|
|
|
|
|
|
|
M => q{y-MM-dd, E – y-MM-dd, E}, |
3678
|
|
|
|
|
|
|
d => q{y-MM-dd, E – y-MM-dd, E}, |
3679
|
|
|
|
|
|
|
y => q{y-MM-dd, E – y-MM-dd, E}, |
3680
|
|
|
|
|
|
|
}, |
3681
|
|
|
|
|
|
|
yMMM => { |
3682
|
|
|
|
|
|
|
M => q{y MMM–MMM}, |
3683
|
|
|
|
|
|
|
y => q{y MMM – y MMM}, |
3684
|
|
|
|
|
|
|
}, |
3685
|
|
|
|
|
|
|
yMMMEd => { |
3686
|
|
|
|
|
|
|
M => q{y MMM d, E – MMM d, E}, |
3687
|
|
|
|
|
|
|
d => q{y MMM d, E – MMM d, E}, |
3688
|
|
|
|
|
|
|
y => q{y MMM d, E – y MMM d, E}, |
3689
|
|
|
|
|
|
|
}, |
3690
|
|
|
|
|
|
|
yMMMM => { |
3691
|
|
|
|
|
|
|
M => q{y MMMM–MMMM}, |
3692
|
|
|
|
|
|
|
y => q{y MMMM – y MMMM}, |
3693
|
|
|
|
|
|
|
}, |
3694
|
|
|
|
|
|
|
yMMMd => { |
3695
|
|
|
|
|
|
|
M => q{y MMM d – MMM d}, |
3696
|
|
|
|
|
|
|
d => q{y MMM d–d}, |
3697
|
|
|
|
|
|
|
y => q{y MMM d – y MMM d}, |
3698
|
|
|
|
|
|
|
}, |
3699
|
|
|
|
|
|
|
yMd => { |
3700
|
|
|
|
|
|
|
M => q{y-MM-dd – y-MM-dd}, |
3701
|
|
|
|
|
|
|
d => q{y-MM-dd – y-MM-dd}, |
3702
|
|
|
|
|
|
|
y => q{y-MM-dd – y-MM-dd}, |
3703
|
|
|
|
|
|
|
}, |
3704
|
|
|
|
|
|
|
}, |
3705
|
|
|
|
|
|
|
} }, |
3706
|
|
|
|
|
|
|
); |
3707
|
|
|
|
|
|
|
|
3708
|
|
|
|
|
|
|
has 'time_zone_names' => ( |
3709
|
|
|
|
|
|
|
is => 'ro', |
3710
|
|
|
|
|
|
|
isa => HashRef, |
3711
|
|
|
|
|
|
|
init_arg => undef, |
3712
|
|
|
|
|
|
|
default => sub { { |
3713
|
|
|
|
|
|
|
hourFormat => q(+HH:mm;-HH:mm), |
3714
|
|
|
|
|
|
|
gmtFormat => q(GMT{0}), |
3715
|
|
|
|
|
|
|
fallbackFormat => q({1} ({0})), |
3716
|
|
|
|
|
|
|
'Africa/Addis_Ababa' => { |
3717
|
|
|
|
|
|
|
exemplarCity => q#Addis Abeba#, |
3718
|
|
|
|
|
|
|
}, |
3719
|
|
|
|
|
|
|
'Africa/Algiers' => { |
3720
|
|
|
|
|
|
|
exemplarCity => q#Algier#, |
3721
|
|
|
|
|
|
|
}, |
3722
|
|
|
|
|
|
|
'Africa/Asmera' => { |
3723
|
|
|
|
|
|
|
exemplarCity => q#Asmara#, |
3724
|
|
|
|
|
|
|
}, |
3725
|
|
|
|
|
|
|
'Africa/Dar_es_Salaam' => { |
3726
|
|
|
|
|
|
|
exemplarCity => q#Daressalam#, |
3727
|
|
|
|
|
|
|
}, |
3728
|
|
|
|
|
|
|
'Africa/Djibouti' => { |
3729
|
|
|
|
|
|
|
exemplarCity => q#Dschibuti#, |
3730
|
|
|
|
|
|
|
}, |
3731
|
|
|
|
|
|
|
'Africa/El_Aaiun' => { |
3732
|
|
|
|
|
|
|
exemplarCity => q#El Ayun#, |
3733
|
|
|
|
|
|
|
}, |
3734
|
|
|
|
|
|
|
'Africa/Khartoum' => { |
3735
|
|
|
|
|
|
|
exemplarCity => q#Khartum#, |
3736
|
|
|
|
|
|
|
}, |
3737
|
|
|
|
|
|
|
'Africa/Lome' => { |
3738
|
|
|
|
|
|
|
exemplarCity => q#Lomé#, |
3739
|
|
|
|
|
|
|
}, |
3740
|
|
|
|
|
|
|
'Africa/Mogadishu' => { |
3741
|
|
|
|
|
|
|
exemplarCity => q#Mogadischu#, |
3742
|
|
|
|
|
|
|
}, |
3743
|
|
|
|
|
|
|
'Africa/Sao_Tome' => { |
3744
|
|
|
|
|
|
|
exemplarCity => q#São Tomé#, |
3745
|
|
|
|
|
|
|
}, |
3746
|
|
|
|
|
|
|
'America/Anchorage' => { |
3747
|
|
|
|
|
|
|
exemplarCity => q#Alasca#, |
3748
|
|
|
|
|
|
|
}, |
3749
|
|
|
|
|
|
|
'America/Anguilla' => { |
3750
|
|
|
|
|
|
|
exemplarCity => q#The Valley#, |
3751
|
|
|
|
|
|
|
}, |
3752
|
|
|
|
|
|
|
'America/Araguaina' => { |
3753
|
|
|
|
|
|
|
exemplarCity => q#Araguaína#, |
3754
|
|
|
|
|
|
|
}, |
3755
|
|
|
|
|
|
|
'America/Argentina/San_Juan' => { |
3756
|
|
|
|
|
|
|
exemplarCity => q#San Juan, Argentinia#, |
3757
|
|
|
|
|
|
|
}, |
3758
|
|
|
|
|
|
|
'America/Argentina/Tucuman' => { |
3759
|
|
|
|
|
|
|
exemplarCity => q#Tucumán#, |
3760
|
|
|
|
|
|
|
}, |
3761
|
|
|
|
|
|
|
'America/Argentina/Ushuaia' => { |
3762
|
|
|
|
|
|
|
exemplarCity => q#Ushuaïa#, |
3763
|
|
|
|
|
|
|
}, |
3764
|
|
|
|
|
|
|
'America/Aruba' => { |
3765
|
|
|
|
|
|
|
exemplarCity => q#Oranjestad#, |
3766
|
|
|
|
|
|
|
}, |
3767
|
|
|
|
|
|
|
'America/Asuncion' => { |
3768
|
|
|
|
|
|
|
exemplarCity => q#Asunción#, |
3769
|
|
|
|
|
|
|
}, |
3770
|
|
|
|
|
|
|
'America/Belem' => { |
3771
|
|
|
|
|
|
|
exemplarCity => q#Belém#, |
3772
|
|
|
|
|
|
|
}, |
3773
|
|
|
|
|
|
|
'America/Belize' => { |
3774
|
|
|
|
|
|
|
exemplarCity => q#Belmopan#, |
3775
|
|
|
|
|
|
|
}, |
3776
|
|
|
|
|
|
|
'America/Cancun' => { |
3777
|
|
|
|
|
|
|
exemplarCity => q#Cancún#, |
3778
|
|
|
|
|
|
|
}, |
3779
|
|
|
|
|
|
|
'America/Cayman' => { |
3780
|
|
|
|
|
|
|
exemplarCity => q#Inslas Cayman#, |
3781
|
|
|
|
|
|
|
}, |
3782
|
|
|
|
|
|
|
'America/Cordoba' => { |
3783
|
|
|
|
|
|
|
exemplarCity => q#Córdoba#, |
3784
|
|
|
|
|
|
|
}, |
3785
|
|
|
|
|
|
|
'America/Costa_Rica' => { |
3786
|
|
|
|
|
|
|
exemplarCity => q#San José#, |
3787
|
|
|
|
|
|
|
}, |
3788
|
|
|
|
|
|
|
'America/Cuiaba' => { |
3789
|
|
|
|
|
|
|
exemplarCity => q#Cuiabá#, |
3790
|
|
|
|
|
|
|
}, |
3791
|
|
|
|
|
|
|
'America/Curacao' => { |
3792
|
|
|
|
|
|
|
exemplarCity => q#Curaçao#, |
3793
|
|
|
|
|
|
|
}, |
3794
|
|
|
|
|
|
|
'America/Eirunepe' => { |
3795
|
|
|
|
|
|
|
exemplarCity => q#Eirunepé#, |
3796
|
|
|
|
|
|
|
}, |
3797
|
|
|
|
|
|
|
'America/El_Salvador' => { |
3798
|
|
|
|
|
|
|
exemplarCity => q#Salvador#, |
3799
|
|
|
|
|
|
|
}, |
3800
|
|
|
|
|
|
|
'America/Godthab' => { |
3801
|
|
|
|
|
|
|
exemplarCity => q#Godthåb#, |
3802
|
|
|
|
|
|
|
}, |
3803
|
|
|
|
|
|
|
'America/Grand_Turk' => { |
3804
|
|
|
|
|
|
|
exemplarCity => q#Cockburn Town#, |
3805
|
|
|
|
|
|
|
}, |
3806
|
|
|
|
|
|
|
'America/Guadeloupe' => { |
3807
|
|
|
|
|
|
|
exemplarCity => q#Basse-Terre#, |
3808
|
|
|
|
|
|
|
}, |
3809
|
|
|
|
|
|
|
'America/Indiana/Knox' => { |
3810
|
|
|
|
|
|
|
exemplarCity => q#Knox#, |
3811
|
|
|
|
|
|
|
}, |
3812
|
|
|
|
|
|
|
'America/Indiana/Marengo' => { |
3813
|
|
|
|
|
|
|
exemplarCity => q#Marengo#, |
3814
|
|
|
|
|
|
|
}, |
3815
|
|
|
|
|
|
|
'America/Indiana/Petersburg' => { |
3816
|
|
|
|
|
|
|
exemplarCity => q#Petersburg#, |
3817
|
|
|
|
|
|
|
}, |
3818
|
|
|
|
|
|
|
'America/Indiana/Tell_City' => { |
3819
|
|
|
|
|
|
|
exemplarCity => q#Tell City#, |
3820
|
|
|
|
|
|
|
}, |
3821
|
|
|
|
|
|
|
'America/Indiana/Vevay' => { |
3822
|
|
|
|
|
|
|
exemplarCity => q#Vevay#, |
3823
|
|
|
|
|
|
|
}, |
3824
|
|
|
|
|
|
|
'America/Indiana/Vincennes' => { |
3825
|
|
|
|
|
|
|
exemplarCity => q#Vincennes#, |
3826
|
|
|
|
|
|
|
}, |
3827
|
|
|
|
|
|
|
'America/Indiana/Winamac' => { |
3828
|
|
|
|
|
|
|
exemplarCity => q#Winamac#, |
3829
|
|
|
|
|
|
|
}, |
3830
|
|
|
|
|
|
|
'America/Jamaica' => { |
3831
|
|
|
|
|
|
|
exemplarCity => q#Giamaica#, |
3832
|
|
|
|
|
|
|
}, |
3833
|
|
|
|
|
|
|
'America/Jujuy' => { |
3834
|
|
|
|
|
|
|
exemplarCity => q#San Salvador de Jujuy#, |
3835
|
|
|
|
|
|
|
}, |
3836
|
|
|
|
|
|
|
'America/Kentucky/Monticello' => { |
3837
|
|
|
|
|
|
|
exemplarCity => q#Monticello#, |
3838
|
|
|
|
|
|
|
}, |
3839
|
|
|
|
|
|
|
'America/Mazatlan' => { |
3840
|
|
|
|
|
|
|
exemplarCity => q#Mazatlán#, |
3841
|
|
|
|
|
|
|
}, |
3842
|
|
|
|
|
|
|
'America/Merida' => { |
3843
|
|
|
|
|
|
|
exemplarCity => q#Mérida#, |
3844
|
|
|
|
|
|
|
}, |
3845
|
|
|
|
|
|
|
'America/Mexico_City' => { |
3846
|
|
|
|
|
|
|
exemplarCity => q#Citad da Mexico#, |
3847
|
|
|
|
|
|
|
}, |
3848
|
|
|
|
|
|
|
'America/Miquelon' => { |
3849
|
|
|
|
|
|
|
exemplarCity => q#Saint Pierre#, |
3850
|
|
|
|
|
|
|
}, |
3851
|
|
|
|
|
|
|
'America/Montserrat' => { |
3852
|
|
|
|
|
|
|
exemplarCity => q#Brades#, |
3853
|
|
|
|
|
|
|
}, |
3854
|
|
|
|
|
|
|
'America/Noronha' => { |
3855
|
|
|
|
|
|
|
exemplarCity => q#Fernando de Noronha#, |
3856
|
|
|
|
|
|
|
}, |
3857
|
|
|
|
|
|
|
'America/North_Dakota/Center' => { |
3858
|
|
|
|
|
|
|
exemplarCity => q#North Dakota (Central)#, |
3859
|
|
|
|
|
|
|
}, |
3860
|
|
|
|
|
|
|
'America/North_Dakota/New_Salem' => { |
3861
|
|
|
|
|
|
|
exemplarCity => q#North Dakota (New Salem)#, |
3862
|
|
|
|
|
|
|
}, |
3863
|
|
|
|
|
|
|
'America/Port_of_Spain' => { |
3864
|
|
|
|
|
|
|
exemplarCity => q#Port-of-Spain#, |
3865
|
|
|
|
|
|
|
}, |
3866
|
|
|
|
|
|
|
'America/Sao_Paulo' => { |
3867
|
|
|
|
|
|
|
exemplarCity => q#São Paulo#, |
3868
|
|
|
|
|
|
|
}, |
3869
|
|
|
|
|
|
|
'America/St_Johns' => { |
3870
|
|
|
|
|
|
|
exemplarCity => q#Saint John’s#, |
3871
|
|
|
|
|
|
|
}, |
3872
|
|
|
|
|
|
|
'America/St_Kitts' => { |
3873
|
|
|
|
|
|
|
exemplarCity => q#Saint Kitts#, |
3874
|
|
|
|
|
|
|
}, |
3875
|
|
|
|
|
|
|
'America/St_Lucia' => { |
3876
|
|
|
|
|
|
|
exemplarCity => q#Santa Lucia#, |
3877
|
|
|
|
|
|
|
}, |
3878
|
|
|
|
|
|
|
'America/St_Thomas' => { |
3879
|
|
|
|
|
|
|
exemplarCity => q#Saint Thomas#, |
3880
|
|
|
|
|
|
|
}, |
3881
|
|
|
|
|
|
|
'America/St_Vincent' => { |
3882
|
|
|
|
|
|
|
exemplarCity => q#Saint Vincent#, |
3883
|
|
|
|
|
|
|
}, |
3884
|
|
|
|
|
|
|
'America/Tortola' => { |
3885
|
|
|
|
|
|
|
exemplarCity => q#Road Town#, |
3886
|
|
|
|
|
|
|
}, |
3887
|
|
|
|
|
|
|
'Antarctica/DumontDUrville' => { |
3888
|
|
|
|
|
|
|
exemplarCity => q#Dumont d’Urville#, |
3889
|
|
|
|
|
|
|
}, |
3890
|
|
|
|
|
|
|
'Antarctica/McMurdo' => { |
3891
|
|
|
|
|
|
|
exemplarCity => q#Mac Murdo#, |
3892
|
|
|
|
|
|
|
}, |
3893
|
|
|
|
|
|
|
'Antarctica/Syowa' => { |
3894
|
|
|
|
|
|
|
exemplarCity => q#Showa#, |
3895
|
|
|
|
|
|
|
}, |
3896
|
|
|
|
|
|
|
'Asia/Aqtobe' => { |
3897
|
|
|
|
|
|
|
exemplarCity => q#Aqtöbe#, |
3898
|
|
|
|
|
|
|
}, |
3899
|
|
|
|
|
|
|
'Asia/Ashgabat' => { |
3900
|
|
|
|
|
|
|
exemplarCity => q#Aşgabat#, |
3901
|
|
|
|
|
|
|
}, |
3902
|
|
|
|
|
|
|
'Asia/Baghdad' => { |
3903
|
|
|
|
|
|
|
exemplarCity => q#Bagdad#, |
3904
|
|
|
|
|
|
|
}, |
3905
|
|
|
|
|
|
|
'Asia/Bishkek' => { |
3906
|
|
|
|
|
|
|
exemplarCity => q#Bischkek#, |
3907
|
|
|
|
|
|
|
}, |
3908
|
|
|
|
|
|
|
'Asia/Brunei' => { |
3909
|
|
|
|
|
|
|
exemplarCity => q#Bandar Seri Begawan#, |
3910
|
|
|
|
|
|
|
}, |
3911
|
|
|
|
|
|
|
'Asia/Choibalsan' => { |
3912
|
|
|
|
|
|
|
exemplarCity => q#Tschoibalsan#, |
3913
|
|
|
|
|
|
|
}, |
3914
|
|
|
|
|
|
|
'Asia/Dushanbe' => { |
3915
|
|
|
|
|
|
|
exemplarCity => q#Duschanbe#, |
3916
|
|
|
|
|
|
|
}, |
3917
|
|
|
|
|
|
|
'Asia/Hong_Kong' => { |
3918
|
|
|
|
|
|
|
exemplarCity => q#Hongkong#, |
3919
|
|
|
|
|
|
|
}, |
3920
|
|
|
|
|
|
|
'Asia/Kamchatka' => { |
3921
|
|
|
|
|
|
|
exemplarCity => q#Kamtschatka#, |
3922
|
|
|
|
|
|
|
}, |
3923
|
|
|
|
|
|
|
'Asia/Karachi' => { |
3924
|
|
|
|
|
|
|
exemplarCity => q#Karatschi#, |
3925
|
|
|
|
|
|
|
}, |
3926
|
|
|
|
|
|
|
'Asia/Krasnoyarsk' => { |
3927
|
|
|
|
|
|
|
exemplarCity => q#Krasnojarsk#, |
3928
|
|
|
|
|
|
|
}, |
3929
|
|
|
|
|
|
|
'Asia/Macau' => { |
3930
|
|
|
|
|
|
|
exemplarCity => q#Macao#, |
3931
|
|
|
|
|
|
|
}, |
3932
|
|
|
|
|
|
|
'Asia/Makassar' => { |
3933
|
|
|
|
|
|
|
exemplarCity => q#Macassar#, |
3934
|
|
|
|
|
|
|
}, |
3935
|
|
|
|
|
|
|
'Asia/Muscat' => { |
3936
|
|
|
|
|
|
|
exemplarCity => q#Mascate#, |
3937
|
|
|
|
|
|
|
}, |
3938
|
|
|
|
|
|
|
'Asia/Novosibirsk' => { |
3939
|
|
|
|
|
|
|
exemplarCity => q#Nowosibirsk#, |
3940
|
|
|
|
|
|
|
}, |
3941
|
|
|
|
|
|
|
'Asia/Riyadh' => { |
3942
|
|
|
|
|
|
|
exemplarCity => q#Riyad#, |
3943
|
|
|
|
|
|
|
}, |
3944
|
|
|
|
|
|
|
'Asia/Saigon' => { |
3945
|
|
|
|
|
|
|
exemplarCity => q#Ho Chi Minh#, |
3946
|
|
|
|
|
|
|
}, |
3947
|
|
|
|
|
|
|
'Asia/Sakhalin' => { |
3948
|
|
|
|
|
|
|
exemplarCity => q#Sachalin#, |
3949
|
|
|
|
|
|
|
}, |
3950
|
|
|
|
|
|
|
'Asia/Samarkand' => { |
3951
|
|
|
|
|
|
|
exemplarCity => q#Samarcanda#, |
3952
|
|
|
|
|
|
|
}, |
3953
|
|
|
|
|
|
|
'Asia/Seoul' => { |
3954
|
|
|
|
|
|
|
exemplarCity => q#Seul#, |
3955
|
|
|
|
|
|
|
}, |
3956
|
|
|
|
|
|
|
'Asia/Singapore' => { |
3957
|
|
|
|
|
|
|
exemplarCity => q#Singapur#, |
3958
|
|
|
|
|
|
|
}, |
3959
|
|
|
|
|
|
|
'Asia/Tashkent' => { |
3960
|
|
|
|
|
|
|
exemplarCity => q#Taschkent#, |
3961
|
|
|
|
|
|
|
}, |
3962
|
|
|
|
|
|
|
'Asia/Tehran' => { |
3963
|
|
|
|
|
|
|
exemplarCity => q#Teheran#, |
3964
|
|
|
|
|
|
|
}, |
3965
|
|
|
|
|
|
|
'Asia/Tokyo' => { |
3966
|
|
|
|
|
|
|
exemplarCity => q#Tokio#, |
3967
|
|
|
|
|
|
|
}, |
3968
|
|
|
|
|
|
|
'Asia/Urumqi' => { |
3969
|
|
|
|
|
|
|
exemplarCity => q#Ürümqi#, |
3970
|
|
|
|
|
|
|
}, |
3971
|
|
|
|
|
|
|
'Asia/Yakutsk' => { |
3972
|
|
|
|
|
|
|
exemplarCity => q#Jakutsk#, |
3973
|
|
|
|
|
|
|
}, |
3974
|
|
|
|
|
|
|
'Asia/Yekaterinburg' => { |
3975
|
|
|
|
|
|
|
exemplarCity => q#Jekaterinburg#, |
3976
|
|
|
|
|
|
|
}, |
3977
|
|
|
|
|
|
|
'Asia/Yerevan' => { |
3978
|
|
|
|
|
|
|
exemplarCity => q#Jerevan#, |
3979
|
|
|
|
|
|
|
}, |
3980
|
|
|
|
|
|
|
'Atlantic/Azores' => { |
3981
|
|
|
|
|
|
|
exemplarCity => q#Azoras#, |
3982
|
|
|
|
|
|
|
}, |
3983
|
|
|
|
|
|
|
'Atlantic/Bermuda' => { |
3984
|
|
|
|
|
|
|
exemplarCity => q#Bermudas#, |
3985
|
|
|
|
|
|
|
}, |
3986
|
|
|
|
|
|
|
'Atlantic/Canary' => { |
3987
|
|
|
|
|
|
|
exemplarCity => q#Inslas Canarias#, |
3988
|
|
|
|
|
|
|
}, |
3989
|
|
|
|
|
|
|
'Atlantic/Cape_Verde' => { |
3990
|
|
|
|
|
|
|
exemplarCity => q#Cap Verd#, |
3991
|
|
|
|
|
|
|
}, |
3992
|
|
|
|
|
|
|
'Atlantic/Faeroe' => { |
3993
|
|
|
|
|
|
|
exemplarCity => q#Inslas Feroe#, |
3994
|
|
|
|
|
|
|
}, |
3995
|
|
|
|
|
|
|
'Atlantic/South_Georgia' => { |
3996
|
|
|
|
|
|
|
exemplarCity => q#Georgia dal Sid#, |
3997
|
|
|
|
|
|
|
}, |
3998
|
|
|
|
|
|
|
'Atlantic/St_Helena' => { |
3999
|
|
|
|
|
|
|
exemplarCity => q#Sontg’elena#, |
4000
|
|
|
|
|
|
|
}, |
4001
|
|
|
|
|
|
|
'Atlantic/Stanley' => { |
4002
|
|
|
|
|
|
|
exemplarCity => q#Port Stanley#, |
4003
|
|
|
|
|
|
|
}, |
4004
|
|
|
|
|
|
|
'Etc/Unknown' => { |
4005
|
|
|
|
|
|
|
exemplarCity => q#zona betg enconuschenta#, |
4006
|
|
|
|
|
|
|
}, |
4007
|
|
|
|
|
|
|
'Europe/Athens' => { |
4008
|
|
|
|
|
|
|
exemplarCity => q#Athen#, |
4009
|
|
|
|
|
|
|
}, |
4010
|
|
|
|
|
|
|
'Europe/Brussels' => { |
4011
|
|
|
|
|
|
|
exemplarCity => q#Bruxelles#, |
4012
|
|
|
|
|
|
|
}, |
4013
|
|
|
|
|
|
|
'Europe/Bucharest' => { |
4014
|
|
|
|
|
|
|
exemplarCity => q#Bucarest#, |
4015
|
|
|
|
|
|
|
}, |
4016
|
|
|
|
|
|
|
'Europe/Copenhagen' => { |
4017
|
|
|
|
|
|
|
exemplarCity => q#Copenhaghen#, |
4018
|
|
|
|
|
|
|
}, |
4019
|
|
|
|
|
|
|
'Europe/Guernsey' => { |
4020
|
|
|
|
|
|
|
exemplarCity => q#Saint Peter Port#, |
4021
|
|
|
|
|
|
|
}, |
4022
|
|
|
|
|
|
|
'Europe/Isle_of_Man' => { |
4023
|
|
|
|
|
|
|
exemplarCity => q#Douglas#, |
4024
|
|
|
|
|
|
|
}, |
4025
|
|
|
|
|
|
|
'Europe/Jersey' => { |
4026
|
|
|
|
|
|
|
exemplarCity => q#Saint Helier#, |
4027
|
|
|
|
|
|
|
}, |
4028
|
|
|
|
|
|
|
'Europe/Lisbon' => { |
4029
|
|
|
|
|
|
|
exemplarCity => q#Lissabon#, |
4030
|
|
|
|
|
|
|
}, |
4031
|
|
|
|
|
|
|
'Europe/London' => { |
4032
|
|
|
|
|
|
|
exemplarCity => q#Londra#, |
4033
|
|
|
|
|
|
|
}, |
4034
|
|
|
|
|
|
|
'Europe/Luxembourg' => { |
4035
|
|
|
|
|
|
|
exemplarCity => q#Luxemburg#, |
4036
|
|
|
|
|
|
|
}, |
4037
|
|
|
|
|
|
|
'Europe/Moscow' => { |
4038
|
|
|
|
|
|
|
exemplarCity => q#Moscau#, |
4039
|
|
|
|
|
|
|
}, |
4040
|
|
|
|
|
|
|
'Europe/Rome' => { |
4041
|
|
|
|
|
|
|
exemplarCity => q#Roma#, |
4042
|
|
|
|
|
|
|
}, |
4043
|
|
|
|
|
|
|
'Europe/Tirane' => { |
4044
|
|
|
|
|
|
|
exemplarCity => q#Tirana#, |
4045
|
|
|
|
|
|
|
}, |
4046
|
|
|
|
|
|
|
'Europe/Uzhgorod' => { |
4047
|
|
|
|
|
|
|
exemplarCity => q#Uschgorod#, |
4048
|
|
|
|
|
|
|
}, |
4049
|
|
|
|
|
|
|
'Europe/Vatican' => { |
4050
|
|
|
|
|
|
|
exemplarCity => q#Citad dal Vatican#, |
4051
|
|
|
|
|
|
|
}, |
4052
|
|
|
|
|
|
|
'Europe/Warsaw' => { |
4053
|
|
|
|
|
|
|
exemplarCity => q#Varsovia#, |
4054
|
|
|
|
|
|
|
}, |
4055
|
|
|
|
|
|
|
'Europe/Zaporozhye' => { |
4056
|
|
|
|
|
|
|
exemplarCity => q#Saporischja#, |
4057
|
|
|
|
|
|
|
}, |
4058
|
|
|
|
|
|
|
'Europe/Zurich' => { |
4059
|
|
|
|
|
|
|
exemplarCity => q#Turitg#, |
4060
|
|
|
|
|
|
|
}, |
4061
|
|
|
|
|
|
|
'Indian/Chagos' => { |
4062
|
|
|
|
|
|
|
exemplarCity => q#Diego Garcia#, |
4063
|
|
|
|
|
|
|
}, |
4064
|
|
|
|
|
|
|
'Indian/Christmas' => { |
4065
|
|
|
|
|
|
|
exemplarCity => q#Flying Fish Cove#, |
4066
|
|
|
|
|
|
|
}, |
4067
|
|
|
|
|
|
|
'Indian/Cocos' => { |
4068
|
|
|
|
|
|
|
exemplarCity => q#West Island#, |
4069
|
|
|
|
|
|
|
}, |
4070
|
|
|
|
|
|
|
'Indian/Comoro' => { |
4071
|
|
|
|
|
|
|
exemplarCity => q#Comoras#, |
4072
|
|
|
|
|
|
|
}, |
4073
|
|
|
|
|
|
|
'Indian/Kerguelen' => { |
4074
|
|
|
|
|
|
|
exemplarCity => q#Port-aux-Français#, |
4075
|
|
|
|
|
|
|
}, |
4076
|
|
|
|
|
|
|
'Indian/Maldives' => { |
4077
|
|
|
|
|
|
|
exemplarCity => q#Maldivas#, |
4078
|
|
|
|
|
|
|
}, |
4079
|
|
|
|
|
|
|
'Indian/Reunion' => { |
4080
|
|
|
|
|
|
|
exemplarCity => q#Réunion#, |
4081
|
|
|
|
|
|
|
}, |
4082
|
|
|
|
|
|
|
'Pacific/Easter' => { |
4083
|
|
|
|
|
|
|
exemplarCity => q#Insla da Pasca#, |
4084
|
|
|
|
|
|
|
}, |
4085
|
|
|
|
|
|
|
'Pacific/Fiji' => { |
4086
|
|
|
|
|
|
|
exemplarCity => q#Fidschi#, |
4087
|
|
|
|
|
|
|
}, |
4088
|
|
|
|
|
|
|
'Pacific/Galapagos' => { |
4089
|
|
|
|
|
|
|
exemplarCity => q#Galápagos#, |
4090
|
|
|
|
|
|
|
}, |
4091
|
|
|
|
|
|
|
'Pacific/Gambier' => { |
4092
|
|
|
|
|
|
|
exemplarCity => q#Rikitea#, |
4093
|
|
|
|
|
|
|
}, |
4094
|
|
|
|
|
|
|
'Pacific/Guadalcanal' => { |
4095
|
|
|
|
|
|
|
exemplarCity => q#Honiara#, |
4096
|
|
|
|
|
|
|
}, |
4097
|
|
|
|
|
|
|
'Pacific/Guam' => { |
4098
|
|
|
|
|
|
|
exemplarCity => q#Hagåtña#, |
4099
|
|
|
|
|
|
|
}, |
4100
|
|
|
|
|
|
|
'Pacific/Kosrae' => { |
4101
|
|
|
|
|
|
|
exemplarCity => q#Tofol#, |
4102
|
|
|
|
|
|
|
}, |
4103
|
|
|
|
|
|
|
'Pacific/Nauru' => { |
4104
|
|
|
|
|
|
|
exemplarCity => q#Yaren#, |
4105
|
|
|
|
|
|
|
}, |
4106
|
|
|
|
|
|
|
'Pacific/Niue' => { |
4107
|
|
|
|
|
|
|
exemplarCity => q#Alofi#, |
4108
|
|
|
|
|
|
|
}, |
4109
|
|
|
|
|
|
|
'Pacific/Norfolk' => { |
4110
|
|
|
|
|
|
|
exemplarCity => q#Kingston#, |
4111
|
|
|
|
|
|
|
}, |
4112
|
|
|
|
|
|
|
'Pacific/Noumea' => { |
4113
|
|
|
|
|
|
|
exemplarCity => q#Nouméa#, |
4114
|
|
|
|
|
|
|
}, |
4115
|
|
|
|
|
|
|
'Pacific/Palau' => { |
4116
|
|
|
|
|
|
|
exemplarCity => q#Melekok#, |
4117
|
|
|
|
|
|
|
}, |
4118
|
|
|
|
|
|
|
'Pacific/Ponape' => { |
4119
|
|
|
|
|
|
|
exemplarCity => q#Palikir#, |
4120
|
|
|
|
|
|
|
}, |
4121
|
|
|
|
|
|
|
'Pacific/Tarawa' => { |
4122
|
|
|
|
|
|
|
exemplarCity => q#South Tarawa#, |
4123
|
|
|
|
|
|
|
}, |
4124
|
|
|
|
|
|
|
'Pacific/Tongatapu' => { |
4125
|
|
|
|
|
|
|
exemplarCity => q#Nukuʻalofa#, |
4126
|
|
|
|
|
|
|
}, |
4127
|
|
|
|
|
|
|
'Pacific/Truk' => { |
4128
|
|
|
|
|
|
|
exemplarCity => q#Weno#, |
4129
|
|
|
|
|
|
|
}, |
4130
|
|
|
|
|
|
|
'Pacific/Wallis' => { |
4131
|
|
|
|
|
|
|
exemplarCity => q#Matāʻutu#, |
4132
|
|
|
|
|
|
|
}, |
4133
|
|
|
|
|
|
|
} } |
4134
|
|
|
|
|
|
|
); |
4135
|
1
|
|
|
1
|
|
7101
|
no Moo; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
4
|
|
4136
|
|
|
|
|
|
|
|
4137
|
|
|
|
|
|
|
1; |
4138
|
|
|
|
|
|
|
|
4139
|
|
|
|
|
|
|
# vim: tabstop=4 |