line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
=encoding utf8 |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
=head1 |
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
Locale::CLDR::Locales::Ia - Package for language Interlingua |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
=cut |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
package Locale::CLDR::Locales::Ia; |
10
|
|
|
|
|
|
|
# This file auto generated from Data\common\main\ia.xml |
11
|
|
|
|
|
|
|
# on Sun 16 Dec 4:20:19 pm GMT |
12
|
|
|
|
|
|
|
|
13
|
1
|
|
|
1
|
|
948675
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
26
|
|
14
|
1
|
|
|
1
|
|
4
|
use warnings; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
23
|
|
15
|
1
|
|
|
1
|
|
4
|
use version; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
5
|
|
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
our $VERSION = version->declare('v0.34.0'); |
18
|
|
|
|
|
|
|
|
19
|
1
|
|
|
1
|
|
90
|
use v5.10.1; |
|
1
|
|
|
|
|
3
|
|
20
|
1
|
|
|
1
|
|
5
|
use mro 'c3'; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
6
|
|
21
|
1
|
|
|
1
|
|
22
|
use utf8; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
5
|
|
22
|
1
|
|
|
1
|
|
28
|
use if $^V ge v5.12.0, feature => 'unicode_strings'; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
13
|
|
23
|
1
|
|
|
1
|
|
118
|
use Types::Standard qw( Str Int HashRef ArrayRef CodeRef RegexpRef ); |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
9
|
|
24
|
1
|
|
|
1
|
|
932
|
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' => 'abkhazo', |
52
|
|
|
|
|
|
|
'ace' => 'acehnese', |
53
|
|
|
|
|
|
|
'ada' => 'adangme', |
54
|
|
|
|
|
|
|
'ady' => 'adygeano', |
55
|
|
|
|
|
|
|
'af' => 'afrikaans', |
56
|
|
|
|
|
|
|
'agq' => 'aghem', |
57
|
|
|
|
|
|
|
'ain' => 'ainu', |
58
|
|
|
|
|
|
|
'ak' => 'akan', |
59
|
|
|
|
|
|
|
'ale' => 'aleuto', |
60
|
|
|
|
|
|
|
'alt' => 'altai del sud', |
61
|
|
|
|
|
|
|
'am' => 'amharico', |
62
|
|
|
|
|
|
|
'an' => 'aragonese', |
63
|
|
|
|
|
|
|
'anp' => 'angika', |
64
|
|
|
|
|
|
|
'ar' => 'arabe', |
65
|
|
|
|
|
|
|
'ar_001' => 'arabe standard moderne', |
66
|
|
|
|
|
|
|
'arn' => 'mapuche', |
67
|
|
|
|
|
|
|
'arp' => 'arapaho', |
68
|
|
|
|
|
|
|
'as' => 'assamese', |
69
|
|
|
|
|
|
|
'asa' => 'asu', |
70
|
|
|
|
|
|
|
'ast' => 'asturiano', |
71
|
|
|
|
|
|
|
'av' => 'avaro', |
72
|
|
|
|
|
|
|
'awa' => 'awadhi', |
73
|
|
|
|
|
|
|
'ay' => 'aymara', |
74
|
|
|
|
|
|
|
'az' => 'azerbaidzhano', |
75
|
|
|
|
|
|
|
'az@alt=short' => 'azeri', |
76
|
|
|
|
|
|
|
'ba' => 'bashkir', |
77
|
|
|
|
|
|
|
'ban' => 'balinese', |
78
|
|
|
|
|
|
|
'bas' => 'basaa', |
79
|
|
|
|
|
|
|
'be' => 'bielorusso', |
80
|
|
|
|
|
|
|
'bem' => 'bemba', |
81
|
|
|
|
|
|
|
'bez' => 'bena', |
82
|
|
|
|
|
|
|
'bg' => 'bulgaro', |
83
|
|
|
|
|
|
|
'bho' => 'bhojpuri', |
84
|
|
|
|
|
|
|
'bi' => 'bislama', |
85
|
|
|
|
|
|
|
'bin' => 'bini', |
86
|
|
|
|
|
|
|
'bla' => 'siksika', |
87
|
|
|
|
|
|
|
'bm' => 'bambara', |
88
|
|
|
|
|
|
|
'bn' => 'bengalese', |
89
|
|
|
|
|
|
|
'bo' => 'tibetano', |
90
|
|
|
|
|
|
|
'br' => 'breton', |
91
|
|
|
|
|
|
|
'brx' => 'bodo', |
92
|
|
|
|
|
|
|
'bs' => 'bosniaco', |
93
|
|
|
|
|
|
|
'bug' => 'buginese', |
94
|
|
|
|
|
|
|
'byn' => 'blin', |
95
|
|
|
|
|
|
|
'ca' => 'catalano', |
96
|
|
|
|
|
|
|
'ce' => 'checheno', |
97
|
|
|
|
|
|
|
'ceb' => 'cebuano', |
98
|
|
|
|
|
|
|
'cgg' => 'chiga', |
99
|
|
|
|
|
|
|
'ch' => 'chamorro', |
100
|
|
|
|
|
|
|
'chk' => 'chuukese', |
101
|
|
|
|
|
|
|
'chm' => 'mari', |
102
|
|
|
|
|
|
|
'cho' => 'choctaw', |
103
|
|
|
|
|
|
|
'chr' => 'cherokee', |
104
|
|
|
|
|
|
|
'chy' => 'cheyenne', |
105
|
|
|
|
|
|
|
'ckb' => 'kurdo central', |
106
|
|
|
|
|
|
|
'co' => 'corso', |
107
|
|
|
|
|
|
|
'crs' => 'creolo seychellese', |
108
|
|
|
|
|
|
|
'cs' => 'checo', |
109
|
|
|
|
|
|
|
'cu' => 'slavo ecclesiastic', |
110
|
|
|
|
|
|
|
'cv' => 'chuvash', |
111
|
|
|
|
|
|
|
'cy' => 'gallese', |
112
|
|
|
|
|
|
|
'da' => 'danese', |
113
|
|
|
|
|
|
|
'dak' => 'dakota', |
114
|
|
|
|
|
|
|
'dar' => 'dargwa', |
115
|
|
|
|
|
|
|
'dav' => 'taita', |
116
|
|
|
|
|
|
|
'de' => 'germano', |
117
|
|
|
|
|
|
|
'de_AT' => 'germano austriac', |
118
|
|
|
|
|
|
|
'de_CH' => 'alte germano suisse', |
119
|
|
|
|
|
|
|
'dgr' => 'dogrib', |
120
|
|
|
|
|
|
|
'dje' => 'zarma', |
121
|
|
|
|
|
|
|
'dsb' => 'basse sorabo', |
122
|
|
|
|
|
|
|
'dua' => 'duala', |
123
|
|
|
|
|
|
|
'dv' => 'divehi', |
124
|
|
|
|
|
|
|
'dyo' => 'jola-fonyi', |
125
|
|
|
|
|
|
|
'dz' => 'dzongkha', |
126
|
|
|
|
|
|
|
'dzg' => 'dazaga', |
127
|
|
|
|
|
|
|
'ebu' => 'embu', |
128
|
|
|
|
|
|
|
'ee' => 'ewe', |
129
|
|
|
|
|
|
|
'efi' => 'efik', |
130
|
|
|
|
|
|
|
'eka' => 'ekajuk', |
131
|
|
|
|
|
|
|
'el' => 'greco', |
132
|
|
|
|
|
|
|
'en' => 'anglese', |
133
|
|
|
|
|
|
|
'en_AU' => 'anglese australian', |
134
|
|
|
|
|
|
|
'en_CA' => 'anglese canadian', |
135
|
|
|
|
|
|
|
'en_GB' => 'anglese britannic', |
136
|
|
|
|
|
|
|
'en_GB@alt=short' => 'anglese (GB)', |
137
|
|
|
|
|
|
|
'en_US' => 'anglese american', |
138
|
|
|
|
|
|
|
'en_US@alt=short' => 'anglese (SUA)', |
139
|
|
|
|
|
|
|
'eo' => 'esperanto', |
140
|
|
|
|
|
|
|
'es' => 'espaniol', |
141
|
|
|
|
|
|
|
'es_419' => 'espaniol latinoamerican', |
142
|
|
|
|
|
|
|
'es_ES' => 'espaniol europee', |
143
|
|
|
|
|
|
|
'es_MX' => 'espaniol mexican', |
144
|
|
|
|
|
|
|
'et' => 'estoniano', |
145
|
|
|
|
|
|
|
'eu' => 'basco', |
146
|
|
|
|
|
|
|
'ewo' => 'ewondo', |
147
|
|
|
|
|
|
|
'fa' => 'persa', |
148
|
|
|
|
|
|
|
'ff' => 'fula', |
149
|
|
|
|
|
|
|
'fi' => 'finnese', |
150
|
|
|
|
|
|
|
'fil' => 'filipino', |
151
|
|
|
|
|
|
|
'fj' => 'fijiano', |
152
|
|
|
|
|
|
|
'fo' => 'feroese', |
153
|
|
|
|
|
|
|
'fon' => 'fon', |
154
|
|
|
|
|
|
|
'fr' => 'francese', |
155
|
|
|
|
|
|
|
'fr_CA' => 'francese canadian', |
156
|
|
|
|
|
|
|
'fr_CH' => 'francese suisse', |
157
|
|
|
|
|
|
|
'fur' => 'friulano', |
158
|
|
|
|
|
|
|
'fy' => 'frison occidental', |
159
|
|
|
|
|
|
|
'ga' => 'irlandese', |
160
|
|
|
|
|
|
|
'gaa' => 'ga', |
161
|
|
|
|
|
|
|
'gd' => 'gaelico scotese', |
162
|
|
|
|
|
|
|
'gez' => 'geâez', |
163
|
|
|
|
|
|
|
'gil' => 'gilbertese', |
164
|
|
|
|
|
|
|
'gl' => 'galleco', |
165
|
|
|
|
|
|
|
'gn' => 'guarani', |
166
|
|
|
|
|
|
|
'gor' => 'gorontalo', |
167
|
|
|
|
|
|
|
'gsw' => 'germano suisse', |
168
|
|
|
|
|
|
|
'gu' => 'gujarati', |
169
|
|
|
|
|
|
|
'guz' => 'gusii', |
170
|
|
|
|
|
|
|
'gv' => 'mannese', |
171
|
|
|
|
|
|
|
'gwi' => 'gwichâin', |
172
|
|
|
|
|
|
|
'ha' => 'hausa', |
173
|
|
|
|
|
|
|
'haw' => 'hawaiano', |
174
|
|
|
|
|
|
|
'he' => 'hebreo', |
175
|
|
|
|
|
|
|
'hi' => 'hindi', |
176
|
|
|
|
|
|
|
'hil' => 'hiligaynon', |
177
|
|
|
|
|
|
|
'hmn' => 'hmong', |
178
|
|
|
|
|
|
|
'hr' => 'croato', |
179
|
|
|
|
|
|
|
'hsb' => 'alte sorabo', |
180
|
|
|
|
|
|
|
'ht' => 'creolo haitian', |
181
|
|
|
|
|
|
|
'hu' => 'hungaro', |
182
|
|
|
|
|
|
|
'hup' => 'hupa', |
183
|
|
|
|
|
|
|
'hy' => 'armeniano', |
184
|
|
|
|
|
|
|
'hz' => 'herero', |
185
|
|
|
|
|
|
|
'ia' => 'interlingua', |
186
|
|
|
|
|
|
|
'iba' => 'iban', |
187
|
|
|
|
|
|
|
'ibb' => 'ibibio', |
188
|
|
|
|
|
|
|
'id' => 'indonesiano', |
189
|
|
|
|
|
|
|
'ie' => 'Interlingue', |
190
|
|
|
|
|
|
|
'ig' => 'igbo', |
191
|
|
|
|
|
|
|
'ii' => 'yi de Sichuan', |
192
|
|
|
|
|
|
|
'ilo' => 'ilocano', |
193
|
|
|
|
|
|
|
'inh' => 'ingush', |
194
|
|
|
|
|
|
|
'io' => 'ido', |
195
|
|
|
|
|
|
|
'is' => 'islandese', |
196
|
|
|
|
|
|
|
'it' => 'italiano', |
197
|
|
|
|
|
|
|
'iu' => 'inuktitut', |
198
|
|
|
|
|
|
|
'ja' => 'japonese', |
199
|
|
|
|
|
|
|
'jbo' => 'lojban', |
200
|
|
|
|
|
|
|
'jgo' => 'ngomba', |
201
|
|
|
|
|
|
|
'jmc' => 'machame', |
202
|
|
|
|
|
|
|
'jv' => 'javanese', |
203
|
|
|
|
|
|
|
'ka' => 'georgiano', |
204
|
|
|
|
|
|
|
'kab' => 'kabylo', |
205
|
|
|
|
|
|
|
'kac' => 'kachin', |
206
|
|
|
|
|
|
|
'kaj' => 'jju', |
207
|
|
|
|
|
|
|
'kam' => 'kamba', |
208
|
|
|
|
|
|
|
'kbd' => 'cabardiano', |
209
|
|
|
|
|
|
|
'kcg' => 'tyap', |
210
|
|
|
|
|
|
|
'kde' => 'makonde', |
211
|
|
|
|
|
|
|
'kea' => 'capoverdiano', |
212
|
|
|
|
|
|
|
'kfo' => 'koro', |
213
|
|
|
|
|
|
|
'kha' => 'khasi', |
214
|
|
|
|
|
|
|
'khq' => 'koyra chiini', |
215
|
|
|
|
|
|
|
'ki' => 'kikuyu', |
216
|
|
|
|
|
|
|
'kj' => 'kuanyama', |
217
|
|
|
|
|
|
|
'kk' => 'kazakh', |
218
|
|
|
|
|
|
|
'kkj' => 'kako', |
219
|
|
|
|
|
|
|
'kl' => 'groenlandese', |
220
|
|
|
|
|
|
|
'kln' => 'kalenjin', |
221
|
|
|
|
|
|
|
'km' => 'khmer', |
222
|
|
|
|
|
|
|
'kmb' => 'kimbundu', |
223
|
|
|
|
|
|
|
'kn' => 'kannada', |
224
|
|
|
|
|
|
|
'ko' => 'coreano', |
225
|
|
|
|
|
|
|
'kok' => 'konkani', |
226
|
|
|
|
|
|
|
'kpe' => 'kpelle', |
227
|
|
|
|
|
|
|
'kr' => 'kanuri', |
228
|
|
|
|
|
|
|
'krc' => 'karachay-balkaro', |
229
|
|
|
|
|
|
|
'krl' => 'careliano', |
230
|
|
|
|
|
|
|
'kru' => 'kurukh', |
231
|
|
|
|
|
|
|
'ks' => 'kashmiri', |
232
|
|
|
|
|
|
|
'ksb' => 'shambala', |
233
|
|
|
|
|
|
|
'ksf' => 'bafia', |
234
|
|
|
|
|
|
|
'ksh' => 'coloniese', |
235
|
|
|
|
|
|
|
'ku' => 'kurdo', |
236
|
|
|
|
|
|
|
'kum' => 'kumyko', |
237
|
|
|
|
|
|
|
'kv' => 'komi', |
238
|
|
|
|
|
|
|
'kw' => 'cornico', |
239
|
|
|
|
|
|
|
'ky' => 'kirghizo', |
240
|
|
|
|
|
|
|
'la' => 'latino', |
241
|
|
|
|
|
|
|
'lad' => 'ladino', |
242
|
|
|
|
|
|
|
'lag' => 'langi', |
243
|
|
|
|
|
|
|
'lb' => 'luxemburgese', |
244
|
|
|
|
|
|
|
'lez' => 'lezghiano', |
245
|
|
|
|
|
|
|
'lg' => 'luganda', |
246
|
|
|
|
|
|
|
'li' => 'limburgese', |
247
|
|
|
|
|
|
|
'lkt' => 'lakota', |
248
|
|
|
|
|
|
|
'ln' => 'lingala', |
249
|
|
|
|
|
|
|
'lo' => 'laotiano', |
250
|
|
|
|
|
|
|
'loz' => 'lozi', |
251
|
|
|
|
|
|
|
'lrc' => 'luri del nord', |
252
|
|
|
|
|
|
|
'lt' => 'lithuano', |
253
|
|
|
|
|
|
|
'lu' => 'luba-katanga', |
254
|
|
|
|
|
|
|
'lua' => 'luba-lulua', |
255
|
|
|
|
|
|
|
'lun' => 'lunda', |
256
|
|
|
|
|
|
|
'luo' => 'luo', |
257
|
|
|
|
|
|
|
'lus' => 'mizo', |
258
|
|
|
|
|
|
|
'luy' => 'luyia', |
259
|
|
|
|
|
|
|
'lv' => 'letton', |
260
|
|
|
|
|
|
|
'mad' => 'madurese', |
261
|
|
|
|
|
|
|
'mag' => 'magahi', |
262
|
|
|
|
|
|
|
'mai' => 'maithili', |
263
|
|
|
|
|
|
|
'mak' => 'macassarese', |
264
|
|
|
|
|
|
|
'mas' => 'masai', |
265
|
|
|
|
|
|
|
'mdf' => 'moksha', |
266
|
|
|
|
|
|
|
'men' => 'mende', |
267
|
|
|
|
|
|
|
'mer' => 'meri', |
268
|
|
|
|
|
|
|
'mfe' => 'creolo mauritian', |
269
|
|
|
|
|
|
|
'mg' => 'malgache', |
270
|
|
|
|
|
|
|
'mgh' => 'makhuwa-meetto', |
271
|
|
|
|
|
|
|
'mgo' => 'metaʼ', |
272
|
|
|
|
|
|
|
'mh' => 'marshallese', |
273
|
|
|
|
|
|
|
'mi' => 'maori', |
274
|
|
|
|
|
|
|
'mic' => 'micmac', |
275
|
|
|
|
|
|
|
'min' => 'minangkabau', |
276
|
|
|
|
|
|
|
'mk' => 'macedone', |
277
|
|
|
|
|
|
|
'ml' => 'malayalam', |
278
|
|
|
|
|
|
|
'mn' => 'mongol', |
279
|
|
|
|
|
|
|
'mni' => 'manipuri', |
280
|
|
|
|
|
|
|
'moh' => 'mohawk', |
281
|
|
|
|
|
|
|
'mos' => 'mossi', |
282
|
|
|
|
|
|
|
'mr' => 'marathi', |
283
|
|
|
|
|
|
|
'ms' => 'malay', |
284
|
|
|
|
|
|
|
'mt' => 'maltese', |
285
|
|
|
|
|
|
|
'mua' => 'mundang', |
286
|
|
|
|
|
|
|
'mul' => 'plure linguas', |
287
|
|
|
|
|
|
|
'mus' => 'creek', |
288
|
|
|
|
|
|
|
'mwl' => 'mirandese', |
289
|
|
|
|
|
|
|
'my' => 'birmano', |
290
|
|
|
|
|
|
|
'myv' => 'erzya', |
291
|
|
|
|
|
|
|
'mzn' => 'mazanderani', |
292
|
|
|
|
|
|
|
'na' => 'nauru', |
293
|
|
|
|
|
|
|
'nap' => 'napolitano', |
294
|
|
|
|
|
|
|
'naq' => 'nama', |
295
|
|
|
|
|
|
|
'nb' => 'norvegiano bokmål', |
296
|
|
|
|
|
|
|
'nd' => 'ndebele del nord', |
297
|
|
|
|
|
|
|
'ne' => 'nepalese', |
298
|
|
|
|
|
|
|
'new' => 'newari', |
299
|
|
|
|
|
|
|
'ng' => 'ndonga', |
300
|
|
|
|
|
|
|
'nia' => 'nias', |
301
|
|
|
|
|
|
|
'niu' => 'nieuano', |
302
|
|
|
|
|
|
|
'nl' => 'nederlandese', |
303
|
|
|
|
|
|
|
'nl_BE' => 'flamingo', |
304
|
|
|
|
|
|
|
'nmg' => 'kwasio', |
305
|
|
|
|
|
|
|
'nn' => 'norvegiano nynorsk', |
306
|
|
|
|
|
|
|
'nnh' => 'ngiemboon', |
307
|
|
|
|
|
|
|
'no' => 'norvegiano', |
308
|
|
|
|
|
|
|
'nog' => 'nogai', |
309
|
|
|
|
|
|
|
'nqo' => 'nâko', |
310
|
|
|
|
|
|
|
'nr' => 'ndebele del sud', |
311
|
|
|
|
|
|
|
'nso' => 'sotho del nord', |
312
|
|
|
|
|
|
|
'nus' => 'nuer', |
313
|
|
|
|
|
|
|
'nv' => 'navajo', |
314
|
|
|
|
|
|
|
'ny' => 'nyanja', |
315
|
|
|
|
|
|
|
'nyn' => 'nyankole', |
316
|
|
|
|
|
|
|
'oc' => 'occitano', |
317
|
|
|
|
|
|
|
'om' => 'oromo', |
318
|
|
|
|
|
|
|
'or' => 'oriya', |
319
|
|
|
|
|
|
|
'os' => 'osseto', |
320
|
|
|
|
|
|
|
'pa' => 'punjabi', |
321
|
|
|
|
|
|
|
'pag' => 'pangasinan', |
322
|
|
|
|
|
|
|
'pam' => 'pampanga', |
323
|
|
|
|
|
|
|
'pap' => 'papiamento', |
324
|
|
|
|
|
|
|
'pau' => 'palauano', |
325
|
|
|
|
|
|
|
'pcm' => 'pidgin nigerian', |
326
|
|
|
|
|
|
|
'pl' => 'polonese', |
327
|
|
|
|
|
|
|
'prg' => 'prussiano', |
328
|
|
|
|
|
|
|
'ps' => 'pashto', |
329
|
|
|
|
|
|
|
'pt' => 'portugese', |
330
|
|
|
|
|
|
|
'pt_BR' => 'portugese de Brasil', |
331
|
|
|
|
|
|
|
'pt_PT' => 'portugese de Portugal', |
332
|
|
|
|
|
|
|
'qu' => 'quechua', |
333
|
|
|
|
|
|
|
'quc' => 'kʼicheʼ', |
334
|
|
|
|
|
|
|
'rap' => 'rapanui', |
335
|
|
|
|
|
|
|
'rar' => 'rarotongano', |
336
|
|
|
|
|
|
|
'rm' => 'romanche', |
337
|
|
|
|
|
|
|
'rn' => 'rundi', |
338
|
|
|
|
|
|
|
'ro' => 'romaniano', |
339
|
|
|
|
|
|
|
'ro_MD' => 'moldavo', |
340
|
|
|
|
|
|
|
'rof' => 'rombo', |
341
|
|
|
|
|
|
|
'root' => 'radice', |
342
|
|
|
|
|
|
|
'ru' => 'russo', |
343
|
|
|
|
|
|
|
'rup' => 'aromaniano', |
344
|
|
|
|
|
|
|
'rw' => 'kinyarwanda', |
345
|
|
|
|
|
|
|
'rwk' => 'rwa', |
346
|
|
|
|
|
|
|
'sa' => 'sanscrito', |
347
|
|
|
|
|
|
|
'sad' => 'sandawe', |
348
|
|
|
|
|
|
|
'sah' => 'yakuto', |
349
|
|
|
|
|
|
|
'saq' => 'samburu', |
350
|
|
|
|
|
|
|
'sat' => 'santali', |
351
|
|
|
|
|
|
|
'sba' => 'ngambay', |
352
|
|
|
|
|
|
|
'sbp' => 'sangu', |
353
|
|
|
|
|
|
|
'sc' => 'sardo', |
354
|
|
|
|
|
|
|
'scn' => 'siciliano', |
355
|
|
|
|
|
|
|
'sco' => 'scotese', |
356
|
|
|
|
|
|
|
'sd' => 'sindhi', |
357
|
|
|
|
|
|
|
'se' => 'sami del nord', |
358
|
|
|
|
|
|
|
'seh' => 'sena', |
359
|
|
|
|
|
|
|
'ses' => 'koyraboro senni', |
360
|
|
|
|
|
|
|
'sg' => 'sango', |
361
|
|
|
|
|
|
|
'sh' => 'serbocroate', |
362
|
|
|
|
|
|
|
'shi' => 'tachelhit', |
363
|
|
|
|
|
|
|
'shn' => 'shan', |
364
|
|
|
|
|
|
|
'si' => 'cingalese', |
365
|
|
|
|
|
|
|
'sk' => 'slovaco', |
366
|
|
|
|
|
|
|
'sl' => 'sloveno', |
367
|
|
|
|
|
|
|
'sm' => 'samoano', |
368
|
|
|
|
|
|
|
'sma' => 'sami del sud', |
369
|
|
|
|
|
|
|
'smj' => 'sami de Lule', |
370
|
|
|
|
|
|
|
'smn' => 'sami de Inari', |
371
|
|
|
|
|
|
|
'sms' => 'sami skolt', |
372
|
|
|
|
|
|
|
'sn' => 'shona', |
373
|
|
|
|
|
|
|
'snk' => 'soninke', |
374
|
|
|
|
|
|
|
'so' => 'somali', |
375
|
|
|
|
|
|
|
'sq' => 'albanese', |
376
|
|
|
|
|
|
|
'sr' => 'serbo', |
377
|
|
|
|
|
|
|
'srn' => 'sranan tongo', |
378
|
|
|
|
|
|
|
'ss' => 'swati', |
379
|
|
|
|
|
|
|
'ssy' => 'saho', |
380
|
|
|
|
|
|
|
'st' => 'sotho del sud', |
381
|
|
|
|
|
|
|
'su' => 'sundanese', |
382
|
|
|
|
|
|
|
'suk' => 'sukuma', |
383
|
|
|
|
|
|
|
'sv' => 'svedese', |
384
|
|
|
|
|
|
|
'sw' => 'swahili', |
385
|
|
|
|
|
|
|
'sw_CD' => 'swahili del Congo', |
386
|
|
|
|
|
|
|
'swb' => 'comoriano', |
387
|
|
|
|
|
|
|
'syr' => 'syriaco', |
388
|
|
|
|
|
|
|
'ta' => 'tamil', |
389
|
|
|
|
|
|
|
'te' => 'telugu', |
390
|
|
|
|
|
|
|
'tem' => 'temne', |
391
|
|
|
|
|
|
|
'teo' => 'teso', |
392
|
|
|
|
|
|
|
'tet' => 'tetum', |
393
|
|
|
|
|
|
|
'tg' => 'tajiko', |
394
|
|
|
|
|
|
|
'th' => 'thai', |
395
|
|
|
|
|
|
|
'ti' => 'tigrinya', |
396
|
|
|
|
|
|
|
'tig' => 'tigre', |
397
|
|
|
|
|
|
|
'tk' => 'turkmeno', |
398
|
|
|
|
|
|
|
'tlh' => 'klingon', |
399
|
|
|
|
|
|
|
'tn' => 'tswana', |
400
|
|
|
|
|
|
|
'to' => 'tongano', |
401
|
|
|
|
|
|
|
'tpi' => 'tok pisin', |
402
|
|
|
|
|
|
|
'tr' => 'turco', |
403
|
|
|
|
|
|
|
'trv' => 'taroko', |
404
|
|
|
|
|
|
|
'ts' => 'tsonga', |
405
|
|
|
|
|
|
|
'tt' => 'tataro', |
406
|
|
|
|
|
|
|
'tum' => 'tumbuka', |
407
|
|
|
|
|
|
|
'tvl' => 'tuvaluano', |
408
|
|
|
|
|
|
|
'tw' => 'twi', |
409
|
|
|
|
|
|
|
'twq' => 'tasawaq', |
410
|
|
|
|
|
|
|
'ty' => 'tahitiano', |
411
|
|
|
|
|
|
|
'tyv' => 'tuvano', |
412
|
|
|
|
|
|
|
'tzm' => 'tamazight del Atlas Central', |
413
|
|
|
|
|
|
|
'udm' => 'udmurto', |
414
|
|
|
|
|
|
|
'ug' => 'uighur', |
415
|
|
|
|
|
|
|
'uk' => 'ukrainiano', |
416
|
|
|
|
|
|
|
'umb' => 'umbundu', |
417
|
|
|
|
|
|
|
'und' => 'lingua incognite', |
418
|
|
|
|
|
|
|
'ur' => 'urdu', |
419
|
|
|
|
|
|
|
'uz' => 'uzbeko', |
420
|
|
|
|
|
|
|
'vai' => 'vai', |
421
|
|
|
|
|
|
|
've' => 'venda', |
422
|
|
|
|
|
|
|
'vi' => 'vietnamese', |
423
|
|
|
|
|
|
|
'vo' => 'volapük', |
424
|
|
|
|
|
|
|
'vun' => 'vunjo', |
425
|
|
|
|
|
|
|
'wa' => 'wallon', |
426
|
|
|
|
|
|
|
'wae' => 'walser', |
427
|
|
|
|
|
|
|
'wal' => 'wolaytta', |
428
|
|
|
|
|
|
|
'war' => 'waray', |
429
|
|
|
|
|
|
|
'wo' => 'wolof', |
430
|
|
|
|
|
|
|
'xal' => 'calmuco', |
431
|
|
|
|
|
|
|
'xh' => 'xhosa', |
432
|
|
|
|
|
|
|
'xog' => 'soga', |
433
|
|
|
|
|
|
|
'yav' => 'yangben', |
434
|
|
|
|
|
|
|
'ybb' => 'yemba', |
435
|
|
|
|
|
|
|
'yi' => 'yiddish', |
436
|
|
|
|
|
|
|
'yo' => 'yoruba', |
437
|
|
|
|
|
|
|
'yue' => 'cantonese', |
438
|
|
|
|
|
|
|
'zgh' => 'tamazight marocchin standard', |
439
|
|
|
|
|
|
|
'zh' => 'chinese', |
440
|
|
|
|
|
|
|
'zh_Hans' => 'chinese simplificate', |
441
|
|
|
|
|
|
|
'zh_Hant' => 'chinese traditional', |
442
|
|
|
|
|
|
|
'zu' => 'zulu', |
443
|
|
|
|
|
|
|
'zun' => 'zuni', |
444
|
|
|
|
|
|
|
'zxx' => 'sin contento linguistic', |
445
|
|
|
|
|
|
|
'zza' => 'zaza', |
446
|
|
|
|
|
|
|
|
447
|
|
|
|
|
|
|
); |
448
|
|
|
|
|
|
|
if (@_) { |
449
|
|
|
|
|
|
|
return $languages{$_[0]}; |
450
|
|
|
|
|
|
|
} |
451
|
|
|
|
|
|
|
return \%languages; |
452
|
|
|
|
|
|
|
} |
453
|
|
|
|
|
|
|
}, |
454
|
|
|
|
|
|
|
); |
455
|
|
|
|
|
|
|
|
456
|
|
|
|
|
|
|
has 'display_name_script' => ( |
457
|
|
|
|
|
|
|
is => 'ro', |
458
|
|
|
|
|
|
|
isa => CodeRef, |
459
|
|
|
|
|
|
|
init_arg => undef, |
460
|
|
|
|
|
|
|
default => sub { |
461
|
|
|
|
|
|
|
sub { |
462
|
|
|
|
|
|
|
my %scripts = ( |
463
|
|
|
|
|
|
|
'Arab' => 'arabe', |
464
|
|
|
|
|
|
|
'Armn' => 'armenian', |
465
|
|
|
|
|
|
|
'Beng' => 'bengalese', |
466
|
|
|
|
|
|
|
'Bopo' => 'bopomofo', |
467
|
|
|
|
|
|
|
'Brai' => 'braille', |
468
|
|
|
|
|
|
|
'Cyrl' => 'cyrillic', |
469
|
|
|
|
|
|
|
'Deva' => 'devanagari', |
470
|
|
|
|
|
|
|
'Ethi' => 'ethiope', |
471
|
|
|
|
|
|
|
'Geor' => 'georgian', |
472
|
|
|
|
|
|
|
'Grek' => 'grec', |
473
|
|
|
|
|
|
|
'Gujr' => 'gujarati', |
474
|
|
|
|
|
|
|
'Guru' => 'gurmukhi', |
475
|
|
|
|
|
|
|
'Hanb' => 'han con bopomofo', |
476
|
|
|
|
|
|
|
'Hang' => 'hangul', |
477
|
|
|
|
|
|
|
'Hani' => 'han', |
478
|
|
|
|
|
|
|
'Hans' => 'simplificate', |
479
|
|
|
|
|
|
|
'Hans@alt=stand-alone' => 'han simplificate', |
480
|
|
|
|
|
|
|
'Hant' => 'traditional', |
481
|
|
|
|
|
|
|
'Hant@alt=stand-alone' => 'han traditional', |
482
|
|
|
|
|
|
|
'Hebr' => 'hebraic', |
483
|
|
|
|
|
|
|
'Hira' => 'hiragana', |
484
|
|
|
|
|
|
|
'Hrkt' => 'syllabarios japonese', |
485
|
|
|
|
|
|
|
'Jamo' => 'jamo', |
486
|
|
|
|
|
|
|
'Jpan' => 'japonese', |
487
|
|
|
|
|
|
|
'Kana' => 'katakana', |
488
|
|
|
|
|
|
|
'Khmr' => 'khmer', |
489
|
|
|
|
|
|
|
'Knda' => 'kannada', |
490
|
|
|
|
|
|
|
'Kore' => 'corean', |
491
|
|
|
|
|
|
|
'Laoo' => 'lao', |
492
|
|
|
|
|
|
|
'Latn' => 'latin', |
493
|
|
|
|
|
|
|
'Mlym' => 'malayalam', |
494
|
|
|
|
|
|
|
'Mong' => 'mongol', |
495
|
|
|
|
|
|
|
'Mymr' => 'birman', |
496
|
|
|
|
|
|
|
'Orya' => 'orya', |
497
|
|
|
|
|
|
|
'Sinh' => 'cingalese', |
498
|
|
|
|
|
|
|
'Taml' => 'tamil', |
499
|
|
|
|
|
|
|
'Telu' => 'telugu', |
500
|
|
|
|
|
|
|
'Thaa' => 'thaana', |
501
|
|
|
|
|
|
|
'Thai' => 'thailandese', |
502
|
|
|
|
|
|
|
'Tibt' => 'tibetano', |
503
|
|
|
|
|
|
|
'Zmth' => 'notation mathematic', |
504
|
|
|
|
|
|
|
'Zsye' => 'emoji', |
505
|
|
|
|
|
|
|
'Zsym' => 'symbolos', |
506
|
|
|
|
|
|
|
'Zxxx' => 'non scripte', |
507
|
|
|
|
|
|
|
'Zyyy' => 'commun', |
508
|
|
|
|
|
|
|
'Zzzz' => 'scriptura incognite', |
509
|
|
|
|
|
|
|
|
510
|
|
|
|
|
|
|
); |
511
|
|
|
|
|
|
|
if ( @_ ) { |
512
|
|
|
|
|
|
|
return $scripts{$_[0]}; |
513
|
|
|
|
|
|
|
} |
514
|
|
|
|
|
|
|
return \%scripts; |
515
|
|
|
|
|
|
|
} |
516
|
|
|
|
|
|
|
} |
517
|
|
|
|
|
|
|
); |
518
|
|
|
|
|
|
|
|
519
|
|
|
|
|
|
|
has 'display_name_region' => ( |
520
|
|
|
|
|
|
|
is => 'ro', |
521
|
|
|
|
|
|
|
isa => HashRef[Str], |
522
|
|
|
|
|
|
|
init_arg => undef, |
523
|
|
|
|
|
|
|
default => sub { |
524
|
|
|
|
|
|
|
{ |
525
|
|
|
|
|
|
|
'001' => 'Mundo', |
526
|
|
|
|
|
|
|
'002' => 'Africa', |
527
|
|
|
|
|
|
|
'003' => 'America del Nord', |
528
|
|
|
|
|
|
|
'005' => 'America del Sud', |
529
|
|
|
|
|
|
|
'009' => 'Oceania', |
530
|
|
|
|
|
|
|
'011' => 'Africa occidental', |
531
|
|
|
|
|
|
|
'013' => 'America central', |
532
|
|
|
|
|
|
|
'014' => 'Africa oriental', |
533
|
|
|
|
|
|
|
'015' => 'Africa septentrional', |
534
|
|
|
|
|
|
|
'017' => 'Africa central', |
535
|
|
|
|
|
|
|
'018' => 'Africa meridional', |
536
|
|
|
|
|
|
|
'019' => 'Americas', |
537
|
|
|
|
|
|
|
'021' => 'America septentrional', |
538
|
|
|
|
|
|
|
'029' => 'Caribes', |
539
|
|
|
|
|
|
|
'030' => 'Asia oriental', |
540
|
|
|
|
|
|
|
'034' => 'Asia meridional', |
541
|
|
|
|
|
|
|
'035' => 'Asia del sud-est', |
542
|
|
|
|
|
|
|
'039' => 'Europa meridional', |
543
|
|
|
|
|
|
|
'053' => 'Australasia', |
544
|
|
|
|
|
|
|
'054' => 'Melanesia', |
545
|
|
|
|
|
|
|
'057' => 'Region micronesian', |
546
|
|
|
|
|
|
|
'061' => 'Polynesia', |
547
|
|
|
|
|
|
|
'142' => 'Asia', |
548
|
|
|
|
|
|
|
'143' => 'Asia central', |
549
|
|
|
|
|
|
|
'145' => 'Asia occidental', |
550
|
|
|
|
|
|
|
'150' => 'Europa', |
551
|
|
|
|
|
|
|
'151' => 'Europa oriental', |
552
|
|
|
|
|
|
|
'154' => 'Europa septentrional', |
553
|
|
|
|
|
|
|
'155' => 'Europa occidental', |
554
|
|
|
|
|
|
|
'202' => 'Africa subsaharian', |
555
|
|
|
|
|
|
|
'419' => 'America latin', |
556
|
|
|
|
|
|
|
'AD' => 'Andorra', |
557
|
|
|
|
|
|
|
'AE' => 'Emiratos Arabe Unite', |
558
|
|
|
|
|
|
|
'AF' => 'Afghanistan', |
559
|
|
|
|
|
|
|
'AG' => 'Antigua e Barbuda', |
560
|
|
|
|
|
|
|
'AL' => 'Albania', |
561
|
|
|
|
|
|
|
'AM' => 'Armenia', |
562
|
|
|
|
|
|
|
'AO' => 'Angola', |
563
|
|
|
|
|
|
|
'AQ' => 'Antarctica', |
564
|
|
|
|
|
|
|
'AR' => 'Argentina', |
565
|
|
|
|
|
|
|
'AS' => 'Samoa american', |
566
|
|
|
|
|
|
|
'AT' => 'Austria', |
567
|
|
|
|
|
|
|
'AU' => 'Australia', |
568
|
|
|
|
|
|
|
'AX' => 'Insulas Ã
land', |
569
|
|
|
|
|
|
|
'AZ' => 'Azerbaidzhan', |
570
|
|
|
|
|
|
|
'BA' => 'Bosnia e Herzegovina', |
571
|
|
|
|
|
|
|
'BD' => 'Bangladesh', |
572
|
|
|
|
|
|
|
'BE' => 'Belgica', |
573
|
|
|
|
|
|
|
'BF' => 'Burkina Faso', |
574
|
|
|
|
|
|
|
'BG' => 'Bulgaria', |
575
|
|
|
|
|
|
|
'BI' => 'Burundi', |
576
|
|
|
|
|
|
|
'BJ' => 'Benin', |
577
|
|
|
|
|
|
|
'BM' => 'Bermuda', |
578
|
|
|
|
|
|
|
'BO' => 'Bolivia', |
579
|
|
|
|
|
|
|
'BR' => 'Brasil', |
580
|
|
|
|
|
|
|
'BS' => 'Bahamas', |
581
|
|
|
|
|
|
|
'BT' => 'Bhutan', |
582
|
|
|
|
|
|
|
'BV' => 'Insula de Bouvet', |
583
|
|
|
|
|
|
|
'BW' => 'Botswana', |
584
|
|
|
|
|
|
|
'BY' => 'Bielorussia', |
585
|
|
|
|
|
|
|
'BZ' => 'Belize', |
586
|
|
|
|
|
|
|
'CA' => 'Canada', |
587
|
|
|
|
|
|
|
'CF' => 'Republica African Central', |
588
|
|
|
|
|
|
|
'CG' => 'Congo', |
589
|
|
|
|
|
|
|
'CH' => 'Suissa', |
590
|
|
|
|
|
|
|
'CK' => 'Insulas Cook', |
591
|
|
|
|
|
|
|
'CL' => 'Chile', |
592
|
|
|
|
|
|
|
'CM' => 'Camerun', |
593
|
|
|
|
|
|
|
'CN' => 'China', |
594
|
|
|
|
|
|
|
'CO' => 'Colombia', |
595
|
|
|
|
|
|
|
'CR' => 'Costa Rica', |
596
|
|
|
|
|
|
|
'CU' => 'Cuba', |
597
|
|
|
|
|
|
|
'CX' => 'Insula de Natal', |
598
|
|
|
|
|
|
|
'CY' => 'Cypro', |
599
|
|
|
|
|
|
|
'CZ' => 'Chechia', |
600
|
|
|
|
|
|
|
'CZ@alt=variant' => 'Republica Chec', |
601
|
|
|
|
|
|
|
'DE' => 'Germania', |
602
|
|
|
|
|
|
|
'DK' => 'Danmark', |
603
|
|
|
|
|
|
|
'DO' => 'Republica Dominican', |
604
|
|
|
|
|
|
|
'DZ' => 'Algeria', |
605
|
|
|
|
|
|
|
'EC' => 'Ecuador', |
606
|
|
|
|
|
|
|
'EE' => 'Estonia', |
607
|
|
|
|
|
|
|
'EG' => 'Egypto', |
608
|
|
|
|
|
|
|
'EH' => 'Sahara occidental', |
609
|
|
|
|
|
|
|
'ER' => 'Eritrea', |
610
|
|
|
|
|
|
|
'ES' => 'Espania', |
611
|
|
|
|
|
|
|
'ET' => 'Ethiopia', |
612
|
|
|
|
|
|
|
'EU' => 'Union Europee', |
613
|
|
|
|
|
|
|
'EZ' => 'Zona euro', |
614
|
|
|
|
|
|
|
'FI' => 'Finlandia', |
615
|
|
|
|
|
|
|
'FM' => 'Micronesia', |
616
|
|
|
|
|
|
|
'FO' => 'Insulas Feroe', |
617
|
|
|
|
|
|
|
'FR' => 'Francia', |
618
|
|
|
|
|
|
|
'GA' => 'Gabon', |
619
|
|
|
|
|
|
|
'GB' => 'Regno Unite', |
620
|
|
|
|
|
|
|
'GB@alt=short' => 'GB', |
621
|
|
|
|
|
|
|
'GE' => 'Georgia', |
622
|
|
|
|
|
|
|
'GF' => 'Guyana francese', |
623
|
|
|
|
|
|
|
'GG' => 'Guernsey', |
624
|
|
|
|
|
|
|
'GH' => 'Ghana', |
625
|
|
|
|
|
|
|
'GI' => 'Gibraltar', |
626
|
|
|
|
|
|
|
'GL' => 'Groenlandia', |
627
|
|
|
|
|
|
|
'GM' => 'Gambia', |
628
|
|
|
|
|
|
|
'GN' => 'Guinea', |
629
|
|
|
|
|
|
|
'GQ' => 'Guinea equatorial', |
630
|
|
|
|
|
|
|
'GR' => 'Grecia', |
631
|
|
|
|
|
|
|
'GT' => 'Guatemala', |
632
|
|
|
|
|
|
|
'GW' => 'Guinea-Bissau', |
633
|
|
|
|
|
|
|
'HN' => 'Honduras', |
634
|
|
|
|
|
|
|
'HR' => 'Croatia', |
635
|
|
|
|
|
|
|
'HT' => 'Haiti', |
636
|
|
|
|
|
|
|
'HU' => 'Hungaria', |
637
|
|
|
|
|
|
|
'ID' => 'Indonesia', |
638
|
|
|
|
|
|
|
'IE' => 'Irlanda', |
639
|
|
|
|
|
|
|
'IL' => 'Israel', |
640
|
|
|
|
|
|
|
'IM' => 'Insula de Man', |
641
|
|
|
|
|
|
|
'IN' => 'India', |
642
|
|
|
|
|
|
|
'IO' => 'Territorio oceanic britanno-indian', |
643
|
|
|
|
|
|
|
'IQ' => 'Irak', |
644
|
|
|
|
|
|
|
'IR' => 'Iran', |
645
|
|
|
|
|
|
|
'IS' => 'Islanda', |
646
|
|
|
|
|
|
|
'IT' => 'Italia', |
647
|
|
|
|
|
|
|
'JE' => 'Jersey', |
648
|
|
|
|
|
|
|
'JO' => 'Jordania', |
649
|
|
|
|
|
|
|
'JP' => 'Japon', |
650
|
|
|
|
|
|
|
'KE' => 'Kenya', |
651
|
|
|
|
|
|
|
'KG' => 'Kirghizistan', |
652
|
|
|
|
|
|
|
'KH' => 'Cambodgia', |
653
|
|
|
|
|
|
|
'KI' => 'Kiribati', |
654
|
|
|
|
|
|
|
'KM' => 'Comoros', |
655
|
|
|
|
|
|
|
'KN' => 'Sancte Christophoro e Nevis', |
656
|
|
|
|
|
|
|
'KP' => 'Corea del Nord', |
657
|
|
|
|
|
|
|
'KR' => 'Corea del Sud', |
658
|
|
|
|
|
|
|
'KY' => 'Insulas de Caiman', |
659
|
|
|
|
|
|
|
'KZ' => 'Kazakhstan', |
660
|
|
|
|
|
|
|
'LB' => 'Libano', |
661
|
|
|
|
|
|
|
'LC' => 'Sancte Lucia', |
662
|
|
|
|
|
|
|
'LI' => 'Liechtenstein', |
663
|
|
|
|
|
|
|
'LK' => 'Sri Lanka', |
664
|
|
|
|
|
|
|
'LR' => 'Liberia', |
665
|
|
|
|
|
|
|
'LS' => 'Lesotho', |
666
|
|
|
|
|
|
|
'LT' => 'Lituania', |
667
|
|
|
|
|
|
|
'LU' => 'Luxemburg', |
668
|
|
|
|
|
|
|
'LV' => 'Lettonia', |
669
|
|
|
|
|
|
|
'LY' => 'Libya', |
670
|
|
|
|
|
|
|
'MA' => 'Marocco', |
671
|
|
|
|
|
|
|
'MC' => 'Monaco', |
672
|
|
|
|
|
|
|
'MD' => 'Moldavia', |
673
|
|
|
|
|
|
|
'ME' => 'Montenegro', |
674
|
|
|
|
|
|
|
'MG' => 'Madagascar', |
675
|
|
|
|
|
|
|
'MH' => 'Insulas Marshall', |
676
|
|
|
|
|
|
|
'MK' => 'Macedonia', |
677
|
|
|
|
|
|
|
'MK@alt=variant' => 'Macedonia (ARYM)', |
678
|
|
|
|
|
|
|
'ML' => 'Mali', |
679
|
|
|
|
|
|
|
'MM' => 'Birmania/Myanmar', |
680
|
|
|
|
|
|
|
'MN' => 'Mongolia', |
681
|
|
|
|
|
|
|
'MP' => 'Insulas Marianna del Nord', |
682
|
|
|
|
|
|
|
'MR' => 'Mauritania', |
683
|
|
|
|
|
|
|
'MT' => 'Malta', |
684
|
|
|
|
|
|
|
'MW' => 'Malawi', |
685
|
|
|
|
|
|
|
'MX' => 'Mexico', |
686
|
|
|
|
|
|
|
'MY' => 'Malaysia', |
687
|
|
|
|
|
|
|
'MZ' => 'Mozambique', |
688
|
|
|
|
|
|
|
'NA' => 'Namibia', |
689
|
|
|
|
|
|
|
'NC' => 'Nove Caledonia', |
690
|
|
|
|
|
|
|
'NE' => 'Niger', |
691
|
|
|
|
|
|
|
'NF' => 'Insula Norfolk', |
692
|
|
|
|
|
|
|
'NG' => 'Nigeria', |
693
|
|
|
|
|
|
|
'NI' => 'Nicaragua', |
694
|
|
|
|
|
|
|
'NL' => 'Nederlandia', |
695
|
|
|
|
|
|
|
'NO' => 'Norvegia', |
696
|
|
|
|
|
|
|
'NP' => 'Nepal', |
697
|
|
|
|
|
|
|
'NZ' => 'Nove Zelanda', |
698
|
|
|
|
|
|
|
'OM' => 'Oman', |
699
|
|
|
|
|
|
|
'PA' => 'Panama', |
700
|
|
|
|
|
|
|
'PE' => 'Peru', |
701
|
|
|
|
|
|
|
'PF' => 'Polynesia francese', |
702
|
|
|
|
|
|
|
'PG' => 'Papua Nove Guinea', |
703
|
|
|
|
|
|
|
'PH' => 'Philippinas', |
704
|
|
|
|
|
|
|
'PK' => 'Pakistan', |
705
|
|
|
|
|
|
|
'PL' => 'Polonia', |
706
|
|
|
|
|
|
|
'PM' => 'St. Pierre e Miquelon', |
707
|
|
|
|
|
|
|
'PT' => 'Portugal', |
708
|
|
|
|
|
|
|
'PY' => 'Paraguay', |
709
|
|
|
|
|
|
|
'QO' => 'Oceania remote', |
710
|
|
|
|
|
|
|
'RO' => 'Romania', |
711
|
|
|
|
|
|
|
'RS' => 'Serbia', |
712
|
|
|
|
|
|
|
'RU' => 'Russia', |
713
|
|
|
|
|
|
|
'RW' => 'Ruanda', |
714
|
|
|
|
|
|
|
'SA' => 'Arabia Saudita', |
715
|
|
|
|
|
|
|
'SB' => 'Insulas Solomon', |
716
|
|
|
|
|
|
|
'SC' => 'Seychelles', |
717
|
|
|
|
|
|
|
'SD' => 'Sudan', |
718
|
|
|
|
|
|
|
'SE' => 'Svedia', |
719
|
|
|
|
|
|
|
'SI' => 'Slovenia', |
720
|
|
|
|
|
|
|
'SJ' => 'Svalbard e Jan Mayen', |
721
|
|
|
|
|
|
|
'SK' => 'Slovachia', |
722
|
|
|
|
|
|
|
'SL' => 'Sierra Leone', |
723
|
|
|
|
|
|
|
'SM' => 'San Marino', |
724
|
|
|
|
|
|
|
'SN' => 'Senegal', |
725
|
|
|
|
|
|
|
'SO' => 'Somalia', |
726
|
|
|
|
|
|
|
'SR' => 'Suriname', |
727
|
|
|
|
|
|
|
'SS' => 'Sudan del Sud', |
728
|
|
|
|
|
|
|
'SV' => 'El Salvador', |
729
|
|
|
|
|
|
|
'SY' => 'Syria', |
730
|
|
|
|
|
|
|
'SZ' => 'Swazilandia', |
731
|
|
|
|
|
|
|
'TC' => 'Insulas Turcos e Caicos', |
732
|
|
|
|
|
|
|
'TD' => 'Tchad', |
733
|
|
|
|
|
|
|
'TF' => 'Territorios meridional francese', |
734
|
|
|
|
|
|
|
'TG' => 'Togo', |
735
|
|
|
|
|
|
|
'TH' => 'Thailandia', |
736
|
|
|
|
|
|
|
'TJ' => 'Tadzhikistan', |
737
|
|
|
|
|
|
|
'TK' => 'Tokelau', |
738
|
|
|
|
|
|
|
'TL' => 'Timor del Est', |
739
|
|
|
|
|
|
|
'TM' => 'Turkmenistan', |
740
|
|
|
|
|
|
|
'TN' => 'Tunisia', |
741
|
|
|
|
|
|
|
'TO' => 'Tonga', |
742
|
|
|
|
|
|
|
'TR' => 'Turchia', |
743
|
|
|
|
|
|
|
'TT' => 'Trinidad e Tobago', |
744
|
|
|
|
|
|
|
'TV' => 'Tuvalu', |
745
|
|
|
|
|
|
|
'TW' => 'Taiwan', |
746
|
|
|
|
|
|
|
'TZ' => 'Tanzania', |
747
|
|
|
|
|
|
|
'UA' => 'Ukraina', |
748
|
|
|
|
|
|
|
'UG' => 'Uganda', |
749
|
|
|
|
|
|
|
'UN' => 'Nationes Unite', |
750
|
|
|
|
|
|
|
'US' => 'Statos Unite', |
751
|
|
|
|
|
|
|
'US@alt=short' => 'SUA', |
752
|
|
|
|
|
|
|
'UY' => 'Uruguay', |
753
|
|
|
|
|
|
|
'UZ' => 'Uzbekistan', |
754
|
|
|
|
|
|
|
'VA' => 'Citate del Vaticano', |
755
|
|
|
|
|
|
|
'VC' => 'Sancte Vincente e le Grenadinas', |
756
|
|
|
|
|
|
|
'VE' => 'Venezuela', |
757
|
|
|
|
|
|
|
'VU' => 'Vanuatu', |
758
|
|
|
|
|
|
|
'WS' => 'Samoa', |
759
|
|
|
|
|
|
|
'XK' => 'Kosovo', |
760
|
|
|
|
|
|
|
'YE' => 'Yemen', |
761
|
|
|
|
|
|
|
'ZA' => 'Sudafrica', |
762
|
|
|
|
|
|
|
'ZM' => 'Zambia', |
763
|
|
|
|
|
|
|
'ZW' => 'Zimbabwe', |
764
|
|
|
|
|
|
|
'ZZ' => 'Region incognite', |
765
|
|
|
|
|
|
|
|
766
|
|
|
|
|
|
|
} |
767
|
|
|
|
|
|
|
}, |
768
|
|
|
|
|
|
|
); |
769
|
|
|
|
|
|
|
|
770
|
|
|
|
|
|
|
has 'display_name_key' => ( |
771
|
|
|
|
|
|
|
is => 'ro', |
772
|
|
|
|
|
|
|
isa => HashRef[Str], |
773
|
|
|
|
|
|
|
init_arg => undef, |
774
|
|
|
|
|
|
|
default => sub { |
775
|
|
|
|
|
|
|
{ |
776
|
|
|
|
|
|
|
'calendar' => 'calendario', |
777
|
|
|
|
|
|
|
'cf' => 'formato de moneta', |
778
|
|
|
|
|
|
|
'collation' => 'ordinamento', |
779
|
|
|
|
|
|
|
'currency' => 'moneta', |
780
|
|
|
|
|
|
|
'hc' => 'cyclo horari (12 o 24)', |
781
|
|
|
|
|
|
|
'lb' => 'stilo de salto de linea', |
782
|
|
|
|
|
|
|
'ms' => 'systema de mesura', |
783
|
|
|
|
|
|
|
'numbers' => 'numeros', |
784
|
|
|
|
|
|
|
|
785
|
|
|
|
|
|
|
} |
786
|
|
|
|
|
|
|
}, |
787
|
|
|
|
|
|
|
); |
788
|
|
|
|
|
|
|
|
789
|
|
|
|
|
|
|
has 'display_name_type' => ( |
790
|
|
|
|
|
|
|
is => 'ro', |
791
|
|
|
|
|
|
|
isa => HashRef[HashRef[Str]], |
792
|
|
|
|
|
|
|
init_arg => undef, |
793
|
|
|
|
|
|
|
default => sub { |
794
|
|
|
|
|
|
|
{ |
795
|
|
|
|
|
|
|
'calendar' => { |
796
|
|
|
|
|
|
|
'buddhist' => q{calendario buddhista}, |
797
|
|
|
|
|
|
|
'chinese' => q{calendario chinese}, |
798
|
|
|
|
|
|
|
'dangi' => q{calendario dangi}, |
799
|
|
|
|
|
|
|
'ethiopic' => q{calendario ethiope}, |
800
|
|
|
|
|
|
|
'gregorian' => q{calendario gregorian}, |
801
|
|
|
|
|
|
|
'hebrew' => q{calendario hebraic}, |
802
|
|
|
|
|
|
|
'islamic' => q{calendario islamic}, |
803
|
|
|
|
|
|
|
'iso8601' => q{calendario ISO-8601}, |
804
|
|
|
|
|
|
|
'japanese' => q{calendario japonese}, |
805
|
|
|
|
|
|
|
'persian' => q{calendario persa}, |
806
|
|
|
|
|
|
|
'roc' => q{calendario del Republica de China}, |
807
|
|
|
|
|
|
|
}, |
808
|
|
|
|
|
|
|
'cf' => { |
809
|
|
|
|
|
|
|
'account' => q{formato de moneta pro contabilitate}, |
810
|
|
|
|
|
|
|
'standard' => q{formato de moneta standard}, |
811
|
|
|
|
|
|
|
}, |
812
|
|
|
|
|
|
|
'collation' => { |
813
|
|
|
|
|
|
|
'ducet' => q{ordinamento Unicode predefinite}, |
814
|
|
|
|
|
|
|
'search' => q{recerca generic}, |
815
|
|
|
|
|
|
|
'standard' => q{ordinamento standard}, |
816
|
|
|
|
|
|
|
}, |
817
|
|
|
|
|
|
|
'hc' => { |
818
|
|
|
|
|
|
|
'h11' => q{systema de 12 horas (0â11)}, |
819
|
|
|
|
|
|
|
'h12' => q{systema de 12 horas (1â12)}, |
820
|
|
|
|
|
|
|
'h23' => q{systema de 24 horas (0â23)}, |
821
|
|
|
|
|
|
|
'h24' => q{systema de 24 horas (1â24)}, |
822
|
|
|
|
|
|
|
}, |
823
|
|
|
|
|
|
|
'lb' => { |
824
|
|
|
|
|
|
|
'loose' => q{stilo de salto de linea flexibile}, |
825
|
|
|
|
|
|
|
'normal' => q{stilo de salto de linea normal}, |
826
|
|
|
|
|
|
|
'strict' => q{stilo de salto de linea stricte}, |
827
|
|
|
|
|
|
|
}, |
828
|
|
|
|
|
|
|
'ms' => { |
829
|
|
|
|
|
|
|
'metric' => q{systema metric}, |
830
|
|
|
|
|
|
|
'uksystem' => q{systema de mesura imperial}, |
831
|
|
|
|
|
|
|
'ussystem' => q{systema de mesura statounitese}, |
832
|
|
|
|
|
|
|
}, |
833
|
|
|
|
|
|
|
'numbers' => { |
834
|
|
|
|
|
|
|
'arab' => q{cifras indo-arabe}, |
835
|
|
|
|
|
|
|
'arabext' => q{cifras indo-arabe extendite}, |
836
|
|
|
|
|
|
|
'armn' => q{cifras armenie}, |
837
|
|
|
|
|
|
|
'armnlow' => q{cifras armenie minuscule}, |
838
|
|
|
|
|
|
|
'beng' => q{cifras bengalese}, |
839
|
|
|
|
|
|
|
'deva' => q{cifras devanagari}, |
840
|
|
|
|
|
|
|
'ethi' => q{cifras ethiope}, |
841
|
|
|
|
|
|
|
'fullwide' => q{cifras a latitude integre}, |
842
|
|
|
|
|
|
|
'geor' => q{cifras georgian}, |
843
|
|
|
|
|
|
|
'grek' => q{cifras grec}, |
844
|
|
|
|
|
|
|
'greklow' => q{cifras grec minuscule}, |
845
|
|
|
|
|
|
|
'gujr' => q{cifras gujarati}, |
846
|
|
|
|
|
|
|
'guru' => q{cifras gurmukhi}, |
847
|
|
|
|
|
|
|
'hanidec' => q{cifras decimal chinese}, |
848
|
|
|
|
|
|
|
'hans' => q{cifras chinese simplificate}, |
849
|
|
|
|
|
|
|
'hansfin' => q{cifras financiari chinese simplificate}, |
850
|
|
|
|
|
|
|
'hant' => q{cifras chinese traditional}, |
851
|
|
|
|
|
|
|
'hantfin' => q{cifras financiari chinese traditional}, |
852
|
|
|
|
|
|
|
'hebr' => q{cifras hebraic}, |
853
|
|
|
|
|
|
|
'jpan' => q{cifras japonese}, |
854
|
|
|
|
|
|
|
'jpanfin' => q{cifras financiari japonese}, |
855
|
|
|
|
|
|
|
'khmr' => q{cifras khmer}, |
856
|
|
|
|
|
|
|
'knda' => q{cifras kannada}, |
857
|
|
|
|
|
|
|
'laoo' => q{cifras lao}, |
858
|
|
|
|
|
|
|
'latn' => q{cifras occidental}, |
859
|
|
|
|
|
|
|
'mlym' => q{cifras malayalam}, |
860
|
|
|
|
|
|
|
'mymr' => q{cifras birman}, |
861
|
|
|
|
|
|
|
'orya' => q{cifras oriya}, |
862
|
|
|
|
|
|
|
'roman' => q{cifras roman}, |
863
|
|
|
|
|
|
|
'romanlow' => q{cifras roman minuscule}, |
864
|
|
|
|
|
|
|
'taml' => q{cifras tamil traditional}, |
865
|
|
|
|
|
|
|
'tamldec' => q{cifras tamil}, |
866
|
|
|
|
|
|
|
'telu' => q{cifras telugu}, |
867
|
|
|
|
|
|
|
'thai' => q{cifras thailandese}, |
868
|
|
|
|
|
|
|
'tibt' => q{cifras tibetan}, |
869
|
|
|
|
|
|
|
}, |
870
|
|
|
|
|
|
|
|
871
|
|
|
|
|
|
|
} |
872
|
|
|
|
|
|
|
}, |
873
|
|
|
|
|
|
|
); |
874
|
|
|
|
|
|
|
|
875
|
|
|
|
|
|
|
has 'display_name_measurement_system' => ( |
876
|
|
|
|
|
|
|
is => 'ro', |
877
|
|
|
|
|
|
|
isa => HashRef[Str], |
878
|
|
|
|
|
|
|
init_arg => undef, |
879
|
|
|
|
|
|
|
default => sub { |
880
|
|
|
|
|
|
|
{ |
881
|
|
|
|
|
|
|
'metric' => q{metric}, |
882
|
|
|
|
|
|
|
'UK' => q{britannic}, |
883
|
|
|
|
|
|
|
'US' => q{statounitese}, |
884
|
|
|
|
|
|
|
|
885
|
|
|
|
|
|
|
} |
886
|
|
|
|
|
|
|
}, |
887
|
|
|
|
|
|
|
); |
888
|
|
|
|
|
|
|
|
889
|
|
|
|
|
|
|
has 'display_name_code_patterns' => ( |
890
|
|
|
|
|
|
|
is => 'ro', |
891
|
|
|
|
|
|
|
isa => HashRef[Str], |
892
|
|
|
|
|
|
|
init_arg => undef, |
893
|
|
|
|
|
|
|
default => sub { |
894
|
|
|
|
|
|
|
{ |
895
|
|
|
|
|
|
|
'language' => 'Lingua: {0}', |
896
|
|
|
|
|
|
|
'script' => 'Scriptura: {0}', |
897
|
|
|
|
|
|
|
'region' => 'Region: {0}', |
898
|
|
|
|
|
|
|
|
899
|
|
|
|
|
|
|
} |
900
|
|
|
|
|
|
|
}, |
901
|
|
|
|
|
|
|
); |
902
|
|
|
|
|
|
|
|
903
|
|
|
|
|
|
|
has 'characters' => ( |
904
|
|
|
|
|
|
|
is => 'ro', |
905
|
|
|
|
|
|
|
isa => HashRef, |
906
|
|
|
|
|
|
|
init_arg => undef, |
907
|
|
|
|
|
|
|
default => $^V ge v5.18.0 |
908
|
|
|
|
|
|
|
? eval <<'EOT' |
909
|
|
|
|
|
|
|
sub { |
910
|
|
|
|
|
|
|
no warnings 'experimental::regex_sets'; |
911
|
|
|
|
|
|
|
return { |
912
|
|
|
|
|
|
|
auxiliary => qr{[á Ã Ä Ã¢ Ã¥ ä ã Ä Ã¦ ç é è Ä Ãª ë Ä Ã Ã¬ Ä Ã® ï Ä« ñ ó ò Šô ö ø ŠŠú ù Šû ü Å« ÿ]}, |
913
|
|
|
|
|
|
|
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'], |
914
|
|
|
|
|
|
|
main => qr{[a b c {ch} d e f g h i j k l m n o p {ph} q r s t u v w x y z]}, |
915
|
|
|
|
|
|
|
}; |
916
|
|
|
|
|
|
|
}, |
917
|
|
|
|
|
|
|
EOT |
918
|
|
|
|
|
|
|
: sub { |
919
|
|
|
|
|
|
|
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'], }; |
920
|
|
|
|
|
|
|
}, |
921
|
1
|
|
|
1
|
|
114
|
); |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
117
|
|
922
|
|
|
|
|
|
|
|
923
|
|
|
|
|
|
|
|
924
|
|
|
|
|
|
|
has 'ellipsis' => ( |
925
|
|
|
|
|
|
|
is => 'ro', |
926
|
|
|
|
|
|
|
isa => HashRef, |
927
|
|
|
|
|
|
|
init_arg => undef, |
928
|
|
|
|
|
|
|
default => sub { |
929
|
|
|
|
|
|
|
return { |
930
|
|
|
|
|
|
|
'final' => '{0}â¦', |
931
|
|
|
|
|
|
|
'initial' => 'â¦{0}', |
932
|
|
|
|
|
|
|
'medial' => '{0}â¦{1}', |
933
|
|
|
|
|
|
|
'word-final' => '{0} â¦', |
934
|
|
|
|
|
|
|
'word-initial' => '⦠{0}', |
935
|
|
|
|
|
|
|
'word-medial' => '{0} ⦠{1}', |
936
|
|
|
|
|
|
|
}; |
937
|
|
|
|
|
|
|
}, |
938
|
|
|
|
|
|
|
); |
939
|
|
|
|
|
|
|
|
940
|
|
|
|
|
|
|
has 'more_information' => ( |
941
|
|
|
|
|
|
|
is => 'ro', |
942
|
|
|
|
|
|
|
isa => Str, |
943
|
|
|
|
|
|
|
init_arg => undef, |
944
|
|
|
|
|
|
|
default => qq{?}, |
945
|
|
|
|
|
|
|
); |
946
|
|
|
|
|
|
|
|
947
|
|
|
|
|
|
|
has 'quote_start' => ( |
948
|
|
|
|
|
|
|
is => 'ro', |
949
|
|
|
|
|
|
|
isa => Str, |
950
|
|
|
|
|
|
|
init_arg => undef, |
951
|
|
|
|
|
|
|
default => qq{â}, |
952
|
|
|
|
|
|
|
); |
953
|
|
|
|
|
|
|
|
954
|
|
|
|
|
|
|
has 'quote_end' => ( |
955
|
|
|
|
|
|
|
is => 'ro', |
956
|
|
|
|
|
|
|
isa => Str, |
957
|
|
|
|
|
|
|
init_arg => undef, |
958
|
|
|
|
|
|
|
default => qq{â}, |
959
|
|
|
|
|
|
|
); |
960
|
|
|
|
|
|
|
|
961
|
|
|
|
|
|
|
has 'alternate_quote_start' => ( |
962
|
|
|
|
|
|
|
is => 'ro', |
963
|
|
|
|
|
|
|
isa => Str, |
964
|
|
|
|
|
|
|
init_arg => undef, |
965
|
|
|
|
|
|
|
default => qq{â}, |
966
|
|
|
|
|
|
|
); |
967
|
|
|
|
|
|
|
|
968
|
|
|
|
|
|
|
has 'alternate_quote_end' => ( |
969
|
|
|
|
|
|
|
is => 'ro', |
970
|
|
|
|
|
|
|
isa => Str, |
971
|
|
|
|
|
|
|
init_arg => undef, |
972
|
|
|
|
|
|
|
default => qq{â}, |
973
|
|
|
|
|
|
|
); |
974
|
|
|
|
|
|
|
|
975
|
|
|
|
|
|
|
has 'duration_units' => ( |
976
|
|
|
|
|
|
|
is => 'ro', |
977
|
|
|
|
|
|
|
isa => HashRef[Str], |
978
|
|
|
|
|
|
|
init_arg => undef, |
979
|
|
|
|
|
|
|
default => sub { { |
980
|
|
|
|
|
|
|
hm => 'hh:mm', |
981
|
|
|
|
|
|
|
hms => 'hh:mm:ss', |
982
|
|
|
|
|
|
|
ms => 'mm:ss', |
983
|
|
|
|
|
|
|
} } |
984
|
|
|
|
|
|
|
); |
985
|
|
|
|
|
|
|
|
986
|
|
|
|
|
|
|
has 'units' => ( |
987
|
|
|
|
|
|
|
is => 'ro', |
988
|
|
|
|
|
|
|
isa => HashRef[HashRef[HashRef[Str]]], |
989
|
|
|
|
|
|
|
init_arg => undef, |
990
|
|
|
|
|
|
|
default => sub { { |
991
|
|
|
|
|
|
|
'long' => { |
992
|
|
|
|
|
|
|
'' => { |
993
|
|
|
|
|
|
|
'name' => q(direction cardinal), |
994
|
|
|
|
|
|
|
}, |
995
|
|
|
|
|
|
|
'acre' => { |
996
|
|
|
|
|
|
|
'name' => q(acres), |
997
|
|
|
|
|
|
|
'one' => q({0} acres), |
998
|
|
|
|
|
|
|
'other' => q({0} acres), |
999
|
|
|
|
|
|
|
}, |
1000
|
|
|
|
|
|
|
'acre-foot' => { |
1001
|
|
|
|
|
|
|
'name' => q(acre-pedes), |
1002
|
|
|
|
|
|
|
'one' => q({0} acre-pedes), |
1003
|
|
|
|
|
|
|
'other' => q({0} acre-pedes), |
1004
|
|
|
|
|
|
|
}, |
1005
|
|
|
|
|
|
|
'ampere' => { |
1006
|
|
|
|
|
|
|
'name' => q(amperes), |
1007
|
|
|
|
|
|
|
'one' => q({0} amperes), |
1008
|
|
|
|
|
|
|
'other' => q({0} amperes), |
1009
|
|
|
|
|
|
|
}, |
1010
|
|
|
|
|
|
|
'arc-minute' => { |
1011
|
|
|
|
|
|
|
'name' => q(minutas de arco), |
1012
|
|
|
|
|
|
|
'one' => q({0} minutas de arco), |
1013
|
|
|
|
|
|
|
'other' => q({0} minutas de arco), |
1014
|
|
|
|
|
|
|
}, |
1015
|
|
|
|
|
|
|
'arc-second' => { |
1016
|
|
|
|
|
|
|
'name' => q(secundas de arco), |
1017
|
|
|
|
|
|
|
'one' => q({0} secundas de arco), |
1018
|
|
|
|
|
|
|
'other' => q({0} secundas de arco), |
1019
|
|
|
|
|
|
|
}, |
1020
|
|
|
|
|
|
|
'astronomical-unit' => { |
1021
|
|
|
|
|
|
|
'name' => q(unitates astronomic), |
1022
|
|
|
|
|
|
|
'one' => q({0} unitates astronomic), |
1023
|
|
|
|
|
|
|
'other' => q({0} unitates astronomic), |
1024
|
|
|
|
|
|
|
}, |
1025
|
|
|
|
|
|
|
'atmosphere' => { |
1026
|
|
|
|
|
|
|
'name' => q(atmospheras), |
1027
|
|
|
|
|
|
|
'one' => q({0} atmospheras), |
1028
|
|
|
|
|
|
|
'other' => q({0} atmospheras), |
1029
|
|
|
|
|
|
|
}, |
1030
|
|
|
|
|
|
|
'bit' => { |
1031
|
|
|
|
|
|
|
'name' => q(bits), |
1032
|
|
|
|
|
|
|
'one' => q({0} bits), |
1033
|
|
|
|
|
|
|
'other' => q({0} bits), |
1034
|
|
|
|
|
|
|
}, |
1035
|
|
|
|
|
|
|
'byte' => { |
1036
|
|
|
|
|
|
|
'name' => q(bytes), |
1037
|
|
|
|
|
|
|
'one' => q({0} bytes), |
1038
|
|
|
|
|
|
|
'other' => q({0} bytes), |
1039
|
|
|
|
|
|
|
}, |
1040
|
|
|
|
|
|
|
'calorie' => { |
1041
|
|
|
|
|
|
|
'name' => q(calorias), |
1042
|
|
|
|
|
|
|
'one' => q({0} calorias), |
1043
|
|
|
|
|
|
|
'other' => q({0} calorias), |
1044
|
|
|
|
|
|
|
}, |
1045
|
|
|
|
|
|
|
'carat' => { |
1046
|
|
|
|
|
|
|
'name' => q(carates), |
1047
|
|
|
|
|
|
|
'one' => q({0} carates), |
1048
|
|
|
|
|
|
|
'other' => q({0} carates), |
1049
|
|
|
|
|
|
|
}, |
1050
|
|
|
|
|
|
|
'celsius' => { |
1051
|
|
|
|
|
|
|
'name' => q(grados Celcius), |
1052
|
|
|
|
|
|
|
'one' => q({0} grados Celcius), |
1053
|
|
|
|
|
|
|
'other' => q({0} grados Celcius), |
1054
|
|
|
|
|
|
|
}, |
1055
|
|
|
|
|
|
|
'centiliter' => { |
1056
|
|
|
|
|
|
|
'name' => q(centilitros), |
1057
|
|
|
|
|
|
|
'one' => q({0} centilitros), |
1058
|
|
|
|
|
|
|
'other' => q({0} centilitros), |
1059
|
|
|
|
|
|
|
}, |
1060
|
|
|
|
|
|
|
'centimeter' => { |
1061
|
|
|
|
|
|
|
'name' => q(centimetros), |
1062
|
|
|
|
|
|
|
'one' => q({0} centimetros), |
1063
|
|
|
|
|
|
|
'other' => q({0} centimetros), |
1064
|
|
|
|
|
|
|
'per' => q({0} per centimetro), |
1065
|
|
|
|
|
|
|
}, |
1066
|
|
|
|
|
|
|
'century' => { |
1067
|
|
|
|
|
|
|
'name' => q(seculos), |
1068
|
|
|
|
|
|
|
'one' => q({0} seculos), |
1069
|
|
|
|
|
|
|
'other' => q({0} seculos), |
1070
|
|
|
|
|
|
|
}, |
1071
|
|
|
|
|
|
|
'coordinate' => { |
1072
|
|
|
|
|
|
|
'east' => q({0} est), |
1073
|
|
|
|
|
|
|
'north' => q({0} nord), |
1074
|
|
|
|
|
|
|
'south' => q({0} sud), |
1075
|
|
|
|
|
|
|
'west' => q({0} west), |
1076
|
|
|
|
|
|
|
}, |
1077
|
|
|
|
|
|
|
'cubic-centimeter' => { |
1078
|
|
|
|
|
|
|
'name' => q(centimetros cubic), |
1079
|
|
|
|
|
|
|
'one' => q({0} centimetros cubic), |
1080
|
|
|
|
|
|
|
'other' => q({0} centimetros cubic), |
1081
|
|
|
|
|
|
|
'per' => q({0} per centimetro cubic), |
1082
|
|
|
|
|
|
|
}, |
1083
|
|
|
|
|
|
|
'cubic-foot' => { |
1084
|
|
|
|
|
|
|
'name' => q(pedes cubic), |
1085
|
|
|
|
|
|
|
'one' => q({0} pedes cubic), |
1086
|
|
|
|
|
|
|
'other' => q({0} pedes cubic), |
1087
|
|
|
|
|
|
|
}, |
1088
|
|
|
|
|
|
|
'cubic-inch' => { |
1089
|
|
|
|
|
|
|
'name' => q(inches cubic), |
1090
|
|
|
|
|
|
|
'one' => q({0} inches cubic), |
1091
|
|
|
|
|
|
|
'other' => q({0} inches cubic), |
1092
|
|
|
|
|
|
|
}, |
1093
|
|
|
|
|
|
|
'cubic-kilometer' => { |
1094
|
|
|
|
|
|
|
'name' => q(kilometros cubic), |
1095
|
|
|
|
|
|
|
'one' => q({0} kilometros cubic), |
1096
|
|
|
|
|
|
|
'other' => q({0} kilometros cubic), |
1097
|
|
|
|
|
|
|
}, |
1098
|
|
|
|
|
|
|
'cubic-meter' => { |
1099
|
|
|
|
|
|
|
'name' => q(metros cubic), |
1100
|
|
|
|
|
|
|
'one' => q({0} metros cubic), |
1101
|
|
|
|
|
|
|
'other' => q({0} metros cubic), |
1102
|
|
|
|
|
|
|
'per' => q({0} per metro cubic), |
1103
|
|
|
|
|
|
|
}, |
1104
|
|
|
|
|
|
|
'cubic-mile' => { |
1105
|
|
|
|
|
|
|
'name' => q(millias cubic), |
1106
|
|
|
|
|
|
|
'one' => q({0} millias cubic), |
1107
|
|
|
|
|
|
|
'other' => q({0} millias cubic), |
1108
|
|
|
|
|
|
|
}, |
1109
|
|
|
|
|
|
|
'cubic-yard' => { |
1110
|
|
|
|
|
|
|
'name' => q(yards cubic), |
1111
|
|
|
|
|
|
|
'one' => q({0} yards cubic), |
1112
|
|
|
|
|
|
|
'other' => q({0} yards cubic), |
1113
|
|
|
|
|
|
|
}, |
1114
|
|
|
|
|
|
|
'cup' => { |
1115
|
|
|
|
|
|
|
'name' => q(tassas), |
1116
|
|
|
|
|
|
|
'one' => q({0} tassas), |
1117
|
|
|
|
|
|
|
'other' => q({0} tassas), |
1118
|
|
|
|
|
|
|
}, |
1119
|
|
|
|
|
|
|
'cup-metric' => { |
1120
|
|
|
|
|
|
|
'name' => q(tassas metric), |
1121
|
|
|
|
|
|
|
'one' => q({0} tassas metric), |
1122
|
|
|
|
|
|
|
'other' => q({0} tassas metric), |
1123
|
|
|
|
|
|
|
}, |
1124
|
|
|
|
|
|
|
'day' => { |
1125
|
|
|
|
|
|
|
'name' => q(dies), |
1126
|
|
|
|
|
|
|
'one' => q({0} dies), |
1127
|
|
|
|
|
|
|
'other' => q({0} dies), |
1128
|
|
|
|
|
|
|
'per' => q({0} per die), |
1129
|
|
|
|
|
|
|
}, |
1130
|
|
|
|
|
|
|
'deciliter' => { |
1131
|
|
|
|
|
|
|
'name' => q(decilitros), |
1132
|
|
|
|
|
|
|
'one' => q({0} decilitros), |
1133
|
|
|
|
|
|
|
'other' => q({0} decilitros), |
1134
|
|
|
|
|
|
|
}, |
1135
|
|
|
|
|
|
|
'decimeter' => { |
1136
|
|
|
|
|
|
|
'name' => q(decimetros), |
1137
|
|
|
|
|
|
|
'one' => q({0} decimetros), |
1138
|
|
|
|
|
|
|
'other' => q({0} decimetros), |
1139
|
|
|
|
|
|
|
}, |
1140
|
|
|
|
|
|
|
'degree' => { |
1141
|
|
|
|
|
|
|
'name' => q(grados), |
1142
|
|
|
|
|
|
|
'one' => q({0} grados), |
1143
|
|
|
|
|
|
|
'other' => q({0} grados), |
1144
|
|
|
|
|
|
|
}, |
1145
|
|
|
|
|
|
|
'fahrenheit' => { |
1146
|
|
|
|
|
|
|
'name' => q(grados Fahrenheit), |
1147
|
|
|
|
|
|
|
'one' => q({0} grados Fahrenheit), |
1148
|
|
|
|
|
|
|
'other' => q({0} grados Fahrenheit), |
1149
|
|
|
|
|
|
|
}, |
1150
|
|
|
|
|
|
|
'fluid-ounce' => { |
1151
|
|
|
|
|
|
|
'name' => q(uncias liquide), |
1152
|
|
|
|
|
|
|
'one' => q({0} uncias liquide), |
1153
|
|
|
|
|
|
|
'other' => q({0} uncias liquide), |
1154
|
|
|
|
|
|
|
}, |
1155
|
|
|
|
|
|
|
'foodcalorie' => { |
1156
|
|
|
|
|
|
|
'name' => q(kilocalorias), |
1157
|
|
|
|
|
|
|
'one' => q({0} kilocalorias), |
1158
|
|
|
|
|
|
|
'other' => q({0} kilocalorias), |
1159
|
|
|
|
|
|
|
}, |
1160
|
|
|
|
|
|
|
'foot' => { |
1161
|
|
|
|
|
|
|
'name' => q(pedes), |
1162
|
|
|
|
|
|
|
'one' => q({0} pedes), |
1163
|
|
|
|
|
|
|
'other' => q({0} pedes), |
1164
|
|
|
|
|
|
|
'per' => q({0} per pede), |
1165
|
|
|
|
|
|
|
}, |
1166
|
|
|
|
|
|
|
'g-force' => { |
1167
|
|
|
|
|
|
|
'name' => q(fortia g), |
1168
|
|
|
|
|
|
|
'one' => q({0} fortia g), |
1169
|
|
|
|
|
|
|
'other' => q({0} fortia g), |
1170
|
|
|
|
|
|
|
}, |
1171
|
|
|
|
|
|
|
'gallon' => { |
1172
|
|
|
|
|
|
|
'name' => q(gallones), |
1173
|
|
|
|
|
|
|
'one' => q({0} gallones), |
1174
|
|
|
|
|
|
|
'other' => q({0} gallones), |
1175
|
|
|
|
|
|
|
'per' => q({0} per gallon), |
1176
|
|
|
|
|
|
|
}, |
1177
|
|
|
|
|
|
|
'gallon-imperial' => { |
1178
|
|
|
|
|
|
|
'name' => q(gallones imp.), |
1179
|
|
|
|
|
|
|
'one' => q({0} gallones imp.), |
1180
|
|
|
|
|
|
|
'other' => q({0} gallones imp.), |
1181
|
|
|
|
|
|
|
'per' => q({0} per gallon imp.), |
1182
|
|
|
|
|
|
|
}, |
1183
|
|
|
|
|
|
|
'generic' => { |
1184
|
|
|
|
|
|
|
'name' => q(grados), |
1185
|
|
|
|
|
|
|
'one' => q({0} grados), |
1186
|
|
|
|
|
|
|
'other' => q({0} grados), |
1187
|
|
|
|
|
|
|
}, |
1188
|
|
|
|
|
|
|
'gigabit' => { |
1189
|
|
|
|
|
|
|
'name' => q(gigabits), |
1190
|
|
|
|
|
|
|
'one' => q({0} gigabits), |
1191
|
|
|
|
|
|
|
'other' => q({0} gigabits), |
1192
|
|
|
|
|
|
|
}, |
1193
|
|
|
|
|
|
|
'gigabyte' => { |
1194
|
|
|
|
|
|
|
'name' => q(gigabytes), |
1195
|
|
|
|
|
|
|
'one' => q({0} gigabytes), |
1196
|
|
|
|
|
|
|
'other' => q({0} gigabytes), |
1197
|
|
|
|
|
|
|
}, |
1198
|
|
|
|
|
|
|
'gigahertz' => { |
1199
|
|
|
|
|
|
|
'name' => q(gigahertz), |
1200
|
|
|
|
|
|
|
'one' => q({0} gigahertz), |
1201
|
|
|
|
|
|
|
'other' => q({0} gigahertz), |
1202
|
|
|
|
|
|
|
}, |
1203
|
|
|
|
|
|
|
'gigawatt' => { |
1204
|
|
|
|
|
|
|
'name' => q(gigawatts), |
1205
|
|
|
|
|
|
|
'one' => q({0} gigawatts), |
1206
|
|
|
|
|
|
|
'other' => q({0} gigawatts), |
1207
|
|
|
|
|
|
|
}, |
1208
|
|
|
|
|
|
|
'gram' => { |
1209
|
|
|
|
|
|
|
'name' => q(grammas), |
1210
|
|
|
|
|
|
|
'one' => q({0} grammas), |
1211
|
|
|
|
|
|
|
'other' => q({0} grammas), |
1212
|
|
|
|
|
|
|
'per' => q({0} per gramma), |
1213
|
|
|
|
|
|
|
}, |
1214
|
|
|
|
|
|
|
'hectare' => { |
1215
|
|
|
|
|
|
|
'name' => q(hectares), |
1216
|
|
|
|
|
|
|
'one' => q({0} hectares), |
1217
|
|
|
|
|
|
|
'other' => q({0} hectares), |
1218
|
|
|
|
|
|
|
}, |
1219
|
|
|
|
|
|
|
'hectoliter' => { |
1220
|
|
|
|
|
|
|
'name' => q(hectolitros), |
1221
|
|
|
|
|
|
|
'one' => q({0} hectolitros), |
1222
|
|
|
|
|
|
|
'other' => q({0} hectolitros), |
1223
|
|
|
|
|
|
|
}, |
1224
|
|
|
|
|
|
|
'hectopascal' => { |
1225
|
|
|
|
|
|
|
'name' => q(hectopascales), |
1226
|
|
|
|
|
|
|
'one' => q({0} hectopascales), |
1227
|
|
|
|
|
|
|
'other' => q({0} hectopascales), |
1228
|
|
|
|
|
|
|
}, |
1229
|
|
|
|
|
|
|
'hertz' => { |
1230
|
|
|
|
|
|
|
'name' => q(hertz), |
1231
|
|
|
|
|
|
|
'one' => q({0} hertz), |
1232
|
|
|
|
|
|
|
'other' => q({0} hertz), |
1233
|
|
|
|
|
|
|
}, |
1234
|
|
|
|
|
|
|
'horsepower' => { |
1235
|
|
|
|
|
|
|
'name' => q(cavallos-vapor), |
1236
|
|
|
|
|
|
|
'one' => q({0} cavallos-vapor), |
1237
|
|
|
|
|
|
|
'other' => q({0} cavallos-vapor), |
1238
|
|
|
|
|
|
|
}, |
1239
|
|
|
|
|
|
|
'hour' => { |
1240
|
|
|
|
|
|
|
'name' => q(horas), |
1241
|
|
|
|
|
|
|
'one' => q({0} horas), |
1242
|
|
|
|
|
|
|
'other' => q({0} horas), |
1243
|
|
|
|
|
|
|
'per' => q({0} per hora), |
1244
|
|
|
|
|
|
|
}, |
1245
|
|
|
|
|
|
|
'inch' => { |
1246
|
|
|
|
|
|
|
'name' => q(pollices), |
1247
|
|
|
|
|
|
|
'one' => q({0} pollices), |
1248
|
|
|
|
|
|
|
'other' => q({0} pollices), |
1249
|
|
|
|
|
|
|
'per' => q({0} per pollice), |
1250
|
|
|
|
|
|
|
}, |
1251
|
|
|
|
|
|
|
'inch-hg' => { |
1252
|
|
|
|
|
|
|
'name' => q(pollices de mercurio), |
1253
|
|
|
|
|
|
|
'one' => q({0} pollices de mercurio), |
1254
|
|
|
|
|
|
|
'other' => q({0} pollices de mercurio), |
1255
|
|
|
|
|
|
|
}, |
1256
|
|
|
|
|
|
|
'joule' => { |
1257
|
|
|
|
|
|
|
'name' => q(joules), |
1258
|
|
|
|
|
|
|
'one' => q({0} joules), |
1259
|
|
|
|
|
|
|
'other' => q({0} joules), |
1260
|
|
|
|
|
|
|
}, |
1261
|
|
|
|
|
|
|
'karat' => { |
1262
|
|
|
|
|
|
|
'name' => q(carates), |
1263
|
|
|
|
|
|
|
'one' => q({0} carates), |
1264
|
|
|
|
|
|
|
'other' => q({0} carates), |
1265
|
|
|
|
|
|
|
}, |
1266
|
|
|
|
|
|
|
'kelvin' => { |
1267
|
|
|
|
|
|
|
'name' => q(kelvin), |
1268
|
|
|
|
|
|
|
'one' => q({0} kelvin), |
1269
|
|
|
|
|
|
|
'other' => q({0} kelvin), |
1270
|
|
|
|
|
|
|
}, |
1271
|
|
|
|
|
|
|
'kilobit' => { |
1272
|
|
|
|
|
|
|
'name' => q(kilobits), |
1273
|
|
|
|
|
|
|
'one' => q({0} kilobits), |
1274
|
|
|
|
|
|
|
'other' => q({0} kilobits), |
1275
|
|
|
|
|
|
|
}, |
1276
|
|
|
|
|
|
|
'kilobyte' => { |
1277
|
|
|
|
|
|
|
'name' => q(kilobytes), |
1278
|
|
|
|
|
|
|
'one' => q({0} kilobytes), |
1279
|
|
|
|
|
|
|
'other' => q({0} kilobytes), |
1280
|
|
|
|
|
|
|
}, |
1281
|
|
|
|
|
|
|
'kilocalorie' => { |
1282
|
|
|
|
|
|
|
'name' => q(kilocalorias), |
1283
|
|
|
|
|
|
|
'one' => q({0} kilocalorias), |
1284
|
|
|
|
|
|
|
'other' => q({0} kilocalorias), |
1285
|
|
|
|
|
|
|
}, |
1286
|
|
|
|
|
|
|
'kilogram' => { |
1287
|
|
|
|
|
|
|
'name' => q(kilogrammas), |
1288
|
|
|
|
|
|
|
'one' => q({0} kilogrammas), |
1289
|
|
|
|
|
|
|
'other' => q({0} kilogrammas), |
1290
|
|
|
|
|
|
|
'per' => q({0} per kilogramma), |
1291
|
|
|
|
|
|
|
}, |
1292
|
|
|
|
|
|
|
'kilohertz' => { |
1293
|
|
|
|
|
|
|
'name' => q(kilohertz), |
1294
|
|
|
|
|
|
|
'one' => q({0} kilohertz), |
1295
|
|
|
|
|
|
|
'other' => q({0} kilohertz), |
1296
|
|
|
|
|
|
|
}, |
1297
|
|
|
|
|
|
|
'kilojoule' => { |
1298
|
|
|
|
|
|
|
'name' => q(kilojoules), |
1299
|
|
|
|
|
|
|
'one' => q({0} kilojoules), |
1300
|
|
|
|
|
|
|
'other' => q({0} kilojoules), |
1301
|
|
|
|
|
|
|
}, |
1302
|
|
|
|
|
|
|
'kilometer' => { |
1303
|
|
|
|
|
|
|
'name' => q(kilometros), |
1304
|
|
|
|
|
|
|
'one' => q({0} kilometros), |
1305
|
|
|
|
|
|
|
'other' => q({0} kilometros), |
1306
|
|
|
|
|
|
|
'per' => q({0} per kilometro), |
1307
|
|
|
|
|
|
|
}, |
1308
|
|
|
|
|
|
|
'kilometer-per-hour' => { |
1309
|
|
|
|
|
|
|
'name' => q(kilometros per hora), |
1310
|
|
|
|
|
|
|
'one' => q({0} kilometros per hora), |
1311
|
|
|
|
|
|
|
'other' => q({0} kilometros per hora), |
1312
|
|
|
|
|
|
|
}, |
1313
|
|
|
|
|
|
|
'kilowatt' => { |
1314
|
|
|
|
|
|
|
'name' => q(kilowatts), |
1315
|
|
|
|
|
|
|
'one' => q({0} kilowatts), |
1316
|
|
|
|
|
|
|
'other' => q({0} kilowatts), |
1317
|
|
|
|
|
|
|
}, |
1318
|
|
|
|
|
|
|
'kilowatt-hour' => { |
1319
|
|
|
|
|
|
|
'name' => q(kilowatthoras), |
1320
|
|
|
|
|
|
|
'one' => q({0} kilowatthoras), |
1321
|
|
|
|
|
|
|
'other' => q({0} kilowatthoras), |
1322
|
|
|
|
|
|
|
}, |
1323
|
|
|
|
|
|
|
'knot' => { |
1324
|
|
|
|
|
|
|
'name' => q(nodos), |
1325
|
|
|
|
|
|
|
'one' => q({0} nodos), |
1326
|
|
|
|
|
|
|
'other' => q({0} nodos), |
1327
|
|
|
|
|
|
|
}, |
1328
|
|
|
|
|
|
|
'light-year' => { |
1329
|
|
|
|
|
|
|
'name' => q(annos lumine), |
1330
|
|
|
|
|
|
|
'one' => q({0} annos lumine), |
1331
|
|
|
|
|
|
|
'other' => q({0} annos lumine), |
1332
|
|
|
|
|
|
|
}, |
1333
|
|
|
|
|
|
|
'liter' => { |
1334
|
|
|
|
|
|
|
'name' => q(litros), |
1335
|
|
|
|
|
|
|
'one' => q({0} litros), |
1336
|
|
|
|
|
|
|
'other' => q({0} litros), |
1337
|
|
|
|
|
|
|
'per' => q({0} per litro), |
1338
|
|
|
|
|
|
|
}, |
1339
|
|
|
|
|
|
|
'liter-per-100kilometers' => { |
1340
|
|
|
|
|
|
|
'name' => q(litros per 100 kilometros), |
1341
|
|
|
|
|
|
|
'one' => q({0} litros per 100 kilometros), |
1342
|
|
|
|
|
|
|
'other' => q({0} litros per 100 kilometros), |
1343
|
|
|
|
|
|
|
}, |
1344
|
|
|
|
|
|
|
'liter-per-kilometer' => { |
1345
|
|
|
|
|
|
|
'name' => q(litros per kilometro), |
1346
|
|
|
|
|
|
|
'one' => q({0} litros per kilometro), |
1347
|
|
|
|
|
|
|
'other' => q({0} litros per kilometro), |
1348
|
|
|
|
|
|
|
}, |
1349
|
|
|
|
|
|
|
'lux' => { |
1350
|
|
|
|
|
|
|
'name' => q(lux), |
1351
|
|
|
|
|
|
|
'one' => q({0} lux), |
1352
|
|
|
|
|
|
|
'other' => q({0} lux), |
1353
|
|
|
|
|
|
|
}, |
1354
|
|
|
|
|
|
|
'megabit' => { |
1355
|
|
|
|
|
|
|
'name' => q(megabits), |
1356
|
|
|
|
|
|
|
'one' => q({0} megabits), |
1357
|
|
|
|
|
|
|
'other' => q({0} megabits), |
1358
|
|
|
|
|
|
|
}, |
1359
|
|
|
|
|
|
|
'megabyte' => { |
1360
|
|
|
|
|
|
|
'name' => q(megabytes), |
1361
|
|
|
|
|
|
|
'one' => q({0} megabytes), |
1362
|
|
|
|
|
|
|
'other' => q({0} megabytes), |
1363
|
|
|
|
|
|
|
}, |
1364
|
|
|
|
|
|
|
'megahertz' => { |
1365
|
|
|
|
|
|
|
'name' => q(megahertz), |
1366
|
|
|
|
|
|
|
'one' => q({0} megahertz), |
1367
|
|
|
|
|
|
|
'other' => q({0} megahertz), |
1368
|
|
|
|
|
|
|
}, |
1369
|
|
|
|
|
|
|
'megaliter' => { |
1370
|
|
|
|
|
|
|
'name' => q(megalitros), |
1371
|
|
|
|
|
|
|
'one' => q({0} megalitros), |
1372
|
|
|
|
|
|
|
'other' => q({0} megalitros), |
1373
|
|
|
|
|
|
|
}, |
1374
|
|
|
|
|
|
|
'megawatt' => { |
1375
|
|
|
|
|
|
|
'name' => q(megawatts), |
1376
|
|
|
|
|
|
|
'one' => q({0} megawatts), |
1377
|
|
|
|
|
|
|
'other' => q({0} megawatts), |
1378
|
|
|
|
|
|
|
}, |
1379
|
|
|
|
|
|
|
'meter' => { |
1380
|
|
|
|
|
|
|
'name' => q(metros), |
1381
|
|
|
|
|
|
|
'one' => q({0} metros), |
1382
|
|
|
|
|
|
|
'other' => q({0} metros), |
1383
|
|
|
|
|
|
|
'per' => q({0} per metro), |
1384
|
|
|
|
|
|
|
}, |
1385
|
|
|
|
|
|
|
'meter-per-second' => { |
1386
|
|
|
|
|
|
|
'name' => q(metros per secunda), |
1387
|
|
|
|
|
|
|
'one' => q({0} metros per secunda), |
1388
|
|
|
|
|
|
|
'other' => q({0} metros per secunda), |
1389
|
|
|
|
|
|
|
}, |
1390
|
|
|
|
|
|
|
'meter-per-second-squared' => { |
1391
|
|
|
|
|
|
|
'name' => q(metros per secunda quadrate), |
1392
|
|
|
|
|
|
|
'one' => q({0} metros per secunda quadrate), |
1393
|
|
|
|
|
|
|
'other' => q({0} metros per secunda quadrate), |
1394
|
|
|
|
|
|
|
}, |
1395
|
|
|
|
|
|
|
'metric-ton' => { |
1396
|
|
|
|
|
|
|
'name' => q(tonnas), |
1397
|
|
|
|
|
|
|
'one' => q({0} tonnas), |
1398
|
|
|
|
|
|
|
'other' => q({0} tonnas), |
1399
|
|
|
|
|
|
|
}, |
1400
|
|
|
|
|
|
|
'microgram' => { |
1401
|
|
|
|
|
|
|
'name' => q(microgrammas), |
1402
|
|
|
|
|
|
|
'one' => q({0} microgrammas), |
1403
|
|
|
|
|
|
|
'other' => q({0} microgrammas), |
1404
|
|
|
|
|
|
|
}, |
1405
|
|
|
|
|
|
|
'micrometer' => { |
1406
|
|
|
|
|
|
|
'name' => q(micrometros), |
1407
|
|
|
|
|
|
|
'one' => q({0} micrometros), |
1408
|
|
|
|
|
|
|
'other' => q({0} micrometros), |
1409
|
|
|
|
|
|
|
}, |
1410
|
|
|
|
|
|
|
'microsecond' => { |
1411
|
|
|
|
|
|
|
'name' => q(microsecundas), |
1412
|
|
|
|
|
|
|
'one' => q({0} microsecundas), |
1413
|
|
|
|
|
|
|
'other' => q({0} microsecundas), |
1414
|
|
|
|
|
|
|
}, |
1415
|
|
|
|
|
|
|
'mile' => { |
1416
|
|
|
|
|
|
|
'name' => q(millias), |
1417
|
|
|
|
|
|
|
'one' => q({0} millias), |
1418
|
|
|
|
|
|
|
'other' => q({0} millias), |
1419
|
|
|
|
|
|
|
}, |
1420
|
|
|
|
|
|
|
'mile-per-gallon' => { |
1421
|
|
|
|
|
|
|
'name' => q(millias per gallon), |
1422
|
|
|
|
|
|
|
'one' => q({0} millias per gallon), |
1423
|
|
|
|
|
|
|
'other' => q({0} millias per gallon), |
1424
|
|
|
|
|
|
|
}, |
1425
|
|
|
|
|
|
|
'mile-per-gallon-imperial' => { |
1426
|
|
|
|
|
|
|
'name' => q(millias per gallon imperial), |
1427
|
|
|
|
|
|
|
'one' => q({0} millias per gallon imperial), |
1428
|
|
|
|
|
|
|
'other' => q({0} millias per gallon imperial), |
1429
|
|
|
|
|
|
|
}, |
1430
|
|
|
|
|
|
|
'mile-per-hour' => { |
1431
|
|
|
|
|
|
|
'name' => q(millias per hora), |
1432
|
|
|
|
|
|
|
'one' => q({0} millias per hora), |
1433
|
|
|
|
|
|
|
'other' => q({0} millias per hora), |
1434
|
|
|
|
|
|
|
}, |
1435
|
|
|
|
|
|
|
'mile-scandinavian' => { |
1436
|
|
|
|
|
|
|
'name' => q(millias scandinave), |
1437
|
|
|
|
|
|
|
'one' => q({0} millias scandinave), |
1438
|
|
|
|
|
|
|
'other' => q({0} millias scandinave), |
1439
|
|
|
|
|
|
|
}, |
1440
|
|
|
|
|
|
|
'milliampere' => { |
1441
|
|
|
|
|
|
|
'name' => q(milliamperes), |
1442
|
|
|
|
|
|
|
'one' => q({0} milliamperes), |
1443
|
|
|
|
|
|
|
'other' => q({0} milliamperes), |
1444
|
|
|
|
|
|
|
}, |
1445
|
|
|
|
|
|
|
'millibar' => { |
1446
|
|
|
|
|
|
|
'name' => q(millibares), |
1447
|
|
|
|
|
|
|
'one' => q({0} millibares), |
1448
|
|
|
|
|
|
|
'other' => q({0} millibares), |
1449
|
|
|
|
|
|
|
}, |
1450
|
|
|
|
|
|
|
'milligram' => { |
1451
|
|
|
|
|
|
|
'name' => q(milligrammas), |
1452
|
|
|
|
|
|
|
'one' => q({0} milligrammas), |
1453
|
|
|
|
|
|
|
'other' => q({0} milligrammas), |
1454
|
|
|
|
|
|
|
}, |
1455
|
|
|
|
|
|
|
'milligram-per-deciliter' => { |
1456
|
|
|
|
|
|
|
'name' => q(milligrammas per decilitro), |
1457
|
|
|
|
|
|
|
'one' => q({0} milligrammas per decilitro), |
1458
|
|
|
|
|
|
|
'other' => q({0} milligrammas per decilitro), |
1459
|
|
|
|
|
|
|
}, |
1460
|
|
|
|
|
|
|
'milliliter' => { |
1461
|
|
|
|
|
|
|
'name' => q(millilitros), |
1462
|
|
|
|
|
|
|
'one' => q({0} millilitros), |
1463
|
|
|
|
|
|
|
'other' => q({0} millilitros), |
1464
|
|
|
|
|
|
|
}, |
1465
|
|
|
|
|
|
|
'millimeter' => { |
1466
|
|
|
|
|
|
|
'name' => q(millimetros), |
1467
|
|
|
|
|
|
|
'one' => q({0} millimetros), |
1468
|
|
|
|
|
|
|
'other' => q({0} millimetros), |
1469
|
|
|
|
|
|
|
}, |
1470
|
|
|
|
|
|
|
'millimeter-of-mercury' => { |
1471
|
|
|
|
|
|
|
'name' => q(milimetros de mercurio), |
1472
|
|
|
|
|
|
|
'one' => q({0} milimetros de mercurio), |
1473
|
|
|
|
|
|
|
'other' => q({0} milimetros de mercurio), |
1474
|
|
|
|
|
|
|
}, |
1475
|
|
|
|
|
|
|
'millimole-per-liter' => { |
1476
|
|
|
|
|
|
|
'name' => q(millimoles per litro), |
1477
|
|
|
|
|
|
|
'one' => q({0} millimoles per litro), |
1478
|
|
|
|
|
|
|
'other' => q({0} millimoles per litro), |
1479
|
|
|
|
|
|
|
}, |
1480
|
|
|
|
|
|
|
'millisecond' => { |
1481
|
|
|
|
|
|
|
'name' => q(millisecundas), |
1482
|
|
|
|
|
|
|
'one' => q({0} millisecundas), |
1483
|
|
|
|
|
|
|
'other' => q({0} millisecundas), |
1484
|
|
|
|
|
|
|
}, |
1485
|
|
|
|
|
|
|
'milliwatt' => { |
1486
|
|
|
|
|
|
|
'name' => q(milliwatts), |
1487
|
|
|
|
|
|
|
'one' => q({0} milliwatts), |
1488
|
|
|
|
|
|
|
'other' => q({0} milliwatts), |
1489
|
|
|
|
|
|
|
}, |
1490
|
|
|
|
|
|
|
'minute' => { |
1491
|
|
|
|
|
|
|
'name' => q(minutas), |
1492
|
|
|
|
|
|
|
'one' => q({0} minutas), |
1493
|
|
|
|
|
|
|
'other' => q({0} minutas), |
1494
|
|
|
|
|
|
|
'per' => q({0} per minuta), |
1495
|
|
|
|
|
|
|
}, |
1496
|
|
|
|
|
|
|
'month' => { |
1497
|
|
|
|
|
|
|
'name' => q(menses), |
1498
|
|
|
|
|
|
|
'one' => q({0} menses), |
1499
|
|
|
|
|
|
|
'other' => q({0} menses), |
1500
|
|
|
|
|
|
|
'per' => q({0} per mense), |
1501
|
|
|
|
|
|
|
}, |
1502
|
|
|
|
|
|
|
'nanometer' => { |
1503
|
|
|
|
|
|
|
'name' => q(nanometros), |
1504
|
|
|
|
|
|
|
'one' => q({0} nanometros), |
1505
|
|
|
|
|
|
|
'other' => q({0} nanometros), |
1506
|
|
|
|
|
|
|
}, |
1507
|
|
|
|
|
|
|
'nanosecond' => { |
1508
|
|
|
|
|
|
|
'name' => q(nanosecundas), |
1509
|
|
|
|
|
|
|
'one' => q({0} nanosecundas), |
1510
|
|
|
|
|
|
|
'other' => q({0} nanosecundas), |
1511
|
|
|
|
|
|
|
}, |
1512
|
|
|
|
|
|
|
'nautical-mile' => { |
1513
|
|
|
|
|
|
|
'name' => q(millias nautic), |
1514
|
|
|
|
|
|
|
'one' => q({0} millias nautic), |
1515
|
|
|
|
|
|
|
'other' => q({0} millias nautic), |
1516
|
|
|
|
|
|
|
}, |
1517
|
|
|
|
|
|
|
'ohm' => { |
1518
|
|
|
|
|
|
|
'name' => q(ohms), |
1519
|
|
|
|
|
|
|
'one' => q({0} ohms), |
1520
|
|
|
|
|
|
|
'other' => q({0} ohms), |
1521
|
|
|
|
|
|
|
}, |
1522
|
|
|
|
|
|
|
'ounce' => { |
1523
|
|
|
|
|
|
|
'name' => q(uncias), |
1524
|
|
|
|
|
|
|
'one' => q({0} uncias), |
1525
|
|
|
|
|
|
|
'other' => q({0} uncias), |
1526
|
|
|
|
|
|
|
'per' => q({0} per uncia), |
1527
|
|
|
|
|
|
|
}, |
1528
|
|
|
|
|
|
|
'ounce-troy' => { |
1529
|
|
|
|
|
|
|
'name' => q(uncias troy), |
1530
|
|
|
|
|
|
|
'one' => q({0} uncias troy), |
1531
|
|
|
|
|
|
|
'other' => q({0} uncias troy), |
1532
|
|
|
|
|
|
|
}, |
1533
|
|
|
|
|
|
|
'parsec' => { |
1534
|
|
|
|
|
|
|
'name' => q(parsecs), |
1535
|
|
|
|
|
|
|
'one' => q({0} parsecs), |
1536
|
|
|
|
|
|
|
'other' => q({0} parsecs), |
1537
|
|
|
|
|
|
|
}, |
1538
|
|
|
|
|
|
|
'part-per-million' => { |
1539
|
|
|
|
|
|
|
'name' => q(partes per million), |
1540
|
|
|
|
|
|
|
'one' => q({0} partes per million), |
1541
|
|
|
|
|
|
|
'other' => q({0} partes per million), |
1542
|
|
|
|
|
|
|
}, |
1543
|
|
|
|
|
|
|
'per' => { |
1544
|
|
|
|
|
|
|
'1' => q({0} per {1}), |
1545
|
|
|
|
|
|
|
}, |
1546
|
|
|
|
|
|
|
'percent' => { |
1547
|
|
|
|
|
|
|
'name' => q(per cento), |
1548
|
|
|
|
|
|
|
'one' => q({0} per cento), |
1549
|
|
|
|
|
|
|
'other' => q({0} per cento), |
1550
|
|
|
|
|
|
|
}, |
1551
|
|
|
|
|
|
|
'permille' => { |
1552
|
|
|
|
|
|
|
'name' => q(per mille), |
1553
|
|
|
|
|
|
|
'one' => q({0} per mille), |
1554
|
|
|
|
|
|
|
'other' => q({0} per mille), |
1555
|
|
|
|
|
|
|
}, |
1556
|
|
|
|
|
|
|
'petabyte' => { |
1557
|
|
|
|
|
|
|
'name' => q(petabytes), |
1558
|
|
|
|
|
|
|
'one' => q({0} petabytes), |
1559
|
|
|
|
|
|
|
'other' => q({0} petabytes), |
1560
|
|
|
|
|
|
|
}, |
1561
|
|
|
|
|
|
|
'picometer' => { |
1562
|
|
|
|
|
|
|
'name' => q(picometros), |
1563
|
|
|
|
|
|
|
'one' => q({0} picometros), |
1564
|
|
|
|
|
|
|
'other' => q({0} picometros), |
1565
|
|
|
|
|
|
|
}, |
1566
|
|
|
|
|
|
|
'pint' => { |
1567
|
|
|
|
|
|
|
'name' => q(pintas), |
1568
|
|
|
|
|
|
|
'one' => q({0} pintas), |
1569
|
|
|
|
|
|
|
'other' => q({0} pintas), |
1570
|
|
|
|
|
|
|
}, |
1571
|
|
|
|
|
|
|
'pint-metric' => { |
1572
|
|
|
|
|
|
|
'name' => q(pintas metric), |
1573
|
|
|
|
|
|
|
'one' => q({0} pintas metric), |
1574
|
|
|
|
|
|
|
'other' => q({0} pintas metric), |
1575
|
|
|
|
|
|
|
}, |
1576
|
|
|
|
|
|
|
'point' => { |
1577
|
|
|
|
|
|
|
'name' => q(punctos), |
1578
|
|
|
|
|
|
|
'one' => q({0} punctos), |
1579
|
|
|
|
|
|
|
'other' => q({0} punctos), |
1580
|
|
|
|
|
|
|
}, |
1581
|
|
|
|
|
|
|
'pound' => { |
1582
|
|
|
|
|
|
|
'name' => q(libras), |
1583
|
|
|
|
|
|
|
'one' => q({0} libras), |
1584
|
|
|
|
|
|
|
'other' => q({0} libras), |
1585
|
|
|
|
|
|
|
'per' => q({0} per libra), |
1586
|
|
|
|
|
|
|
}, |
1587
|
|
|
|
|
|
|
'pound-per-square-inch' => { |
1588
|
|
|
|
|
|
|
'name' => q(libras per pollice quadrate), |
1589
|
|
|
|
|
|
|
'one' => q({0} libras per pollice quadrate), |
1590
|
|
|
|
|
|
|
'other' => q({0} libras per pollice quadrate), |
1591
|
|
|
|
|
|
|
}, |
1592
|
|
|
|
|
|
|
'quart' => { |
1593
|
|
|
|
|
|
|
'name' => q(quartos), |
1594
|
|
|
|
|
|
|
'one' => q({0} quartos), |
1595
|
|
|
|
|
|
|
'other' => q({0} quartos), |
1596
|
|
|
|
|
|
|
}, |
1597
|
|
|
|
|
|
|
'radian' => { |
1598
|
|
|
|
|
|
|
'name' => q(radianos), |
1599
|
|
|
|
|
|
|
'one' => q({0} radianos), |
1600
|
|
|
|
|
|
|
'other' => q({0} radianos), |
1601
|
|
|
|
|
|
|
}, |
1602
|
|
|
|
|
|
|
'revolution' => { |
1603
|
|
|
|
|
|
|
'name' => q(revolutiones), |
1604
|
|
|
|
|
|
|
'one' => q({0} revolutiones), |
1605
|
|
|
|
|
|
|
'other' => q({0} revolutiones), |
1606
|
|
|
|
|
|
|
}, |
1607
|
|
|
|
|
|
|
'second' => { |
1608
|
|
|
|
|
|
|
'name' => q(secundas), |
1609
|
|
|
|
|
|
|
'one' => q({0} secundas), |
1610
|
|
|
|
|
|
|
'other' => q({0} secundas), |
1611
|
|
|
|
|
|
|
'per' => q({0} per secunda), |
1612
|
|
|
|
|
|
|
}, |
1613
|
|
|
|
|
|
|
'square-centimeter' => { |
1614
|
|
|
|
|
|
|
'name' => q(centimetros quadrate), |
1615
|
|
|
|
|
|
|
'one' => q({0} centimetros quadrate), |
1616
|
|
|
|
|
|
|
'other' => q({0} centimetros quadrate), |
1617
|
|
|
|
|
|
|
'per' => q({0} per centimetro quadrate), |
1618
|
|
|
|
|
|
|
}, |
1619
|
|
|
|
|
|
|
'square-foot' => { |
1620
|
|
|
|
|
|
|
'name' => q(pedes quadrate), |
1621
|
|
|
|
|
|
|
'one' => q({0} pedes quadrate), |
1622
|
|
|
|
|
|
|
'other' => q({0} pedes quadrate), |
1623
|
|
|
|
|
|
|
}, |
1624
|
|
|
|
|
|
|
'square-inch' => { |
1625
|
|
|
|
|
|
|
'name' => q(pollices quadrate), |
1626
|
|
|
|
|
|
|
'one' => q({0} pollices quadrate), |
1627
|
|
|
|
|
|
|
'other' => q({0} pollices quadrate), |
1628
|
|
|
|
|
|
|
'per' => q({0} per pollice quadrate), |
1629
|
|
|
|
|
|
|
}, |
1630
|
|
|
|
|
|
|
'square-kilometer' => { |
1631
|
|
|
|
|
|
|
'name' => q(kilometros quadrate), |
1632
|
|
|
|
|
|
|
'one' => q({0} kilometros quadrate), |
1633
|
|
|
|
|
|
|
'other' => q({0} kilometros quadrate), |
1634
|
|
|
|
|
|
|
'per' => q({0} per kilometro quadrate), |
1635
|
|
|
|
|
|
|
}, |
1636
|
|
|
|
|
|
|
'square-meter' => { |
1637
|
|
|
|
|
|
|
'name' => q(metros quadrate), |
1638
|
|
|
|
|
|
|
'one' => q({0} metros quadrate), |
1639
|
|
|
|
|
|
|
'other' => q({0} metros quadrate), |
1640
|
|
|
|
|
|
|
'per' => q({0} per metro quadrate), |
1641
|
|
|
|
|
|
|
}, |
1642
|
|
|
|
|
|
|
'square-mile' => { |
1643
|
|
|
|
|
|
|
'name' => q(millias quadrate), |
1644
|
|
|
|
|
|
|
'one' => q({0} millias quadrate), |
1645
|
|
|
|
|
|
|
'other' => q({0} millias quadrate), |
1646
|
|
|
|
|
|
|
'per' => q({0} per millia quadrate), |
1647
|
|
|
|
|
|
|
}, |
1648
|
|
|
|
|
|
|
'square-yard' => { |
1649
|
|
|
|
|
|
|
'name' => q(yards quadrate), |
1650
|
|
|
|
|
|
|
'one' => q({0} yards quadrate), |
1651
|
|
|
|
|
|
|
'other' => q({0} yards quadrate), |
1652
|
|
|
|
|
|
|
}, |
1653
|
|
|
|
|
|
|
'tablespoon' => { |
1654
|
|
|
|
|
|
|
'name' => q(coclearatas a suppa), |
1655
|
|
|
|
|
|
|
'one' => q({0} coclearatas a suppa), |
1656
|
|
|
|
|
|
|
'other' => q({0} coclearatas a suppa), |
1657
|
|
|
|
|
|
|
}, |
1658
|
|
|
|
|
|
|
'teaspoon' => { |
1659
|
|
|
|
|
|
|
'name' => q(coclearatas a the), |
1660
|
|
|
|
|
|
|
'one' => q({0} coclearatas a the), |
1661
|
|
|
|
|
|
|
'other' => q({0} coclearatas a the), |
1662
|
|
|
|
|
|
|
}, |
1663
|
|
|
|
|
|
|
'terabit' => { |
1664
|
|
|
|
|
|
|
'name' => q(terabits), |
1665
|
|
|
|
|
|
|
'one' => q({0} terabits), |
1666
|
|
|
|
|
|
|
'other' => q({0} terabits), |
1667
|
|
|
|
|
|
|
}, |
1668
|
|
|
|
|
|
|
'terabyte' => { |
1669
|
|
|
|
|
|
|
'name' => q(terabytes), |
1670
|
|
|
|
|
|
|
'one' => q({0} terabytes), |
1671
|
|
|
|
|
|
|
'other' => q({0} terabytes), |
1672
|
|
|
|
|
|
|
}, |
1673
|
|
|
|
|
|
|
'ton' => { |
1674
|
|
|
|
|
|
|
'name' => q(tonnas curte), |
1675
|
|
|
|
|
|
|
'one' => q({0} tonnas curte), |
1676
|
|
|
|
|
|
|
'other' => q({0} tonnas curte), |
1677
|
|
|
|
|
|
|
}, |
1678
|
|
|
|
|
|
|
'volt' => { |
1679
|
|
|
|
|
|
|
'name' => q(volts), |
1680
|
|
|
|
|
|
|
'one' => q({0} volts), |
1681
|
|
|
|
|
|
|
'other' => q({0} volts), |
1682
|
|
|
|
|
|
|
}, |
1683
|
|
|
|
|
|
|
'watt' => { |
1684
|
|
|
|
|
|
|
'name' => q(watts), |
1685
|
|
|
|
|
|
|
'one' => q({0} watts), |
1686
|
|
|
|
|
|
|
'other' => q({0} watts), |
1687
|
|
|
|
|
|
|
}, |
1688
|
|
|
|
|
|
|
'week' => { |
1689
|
|
|
|
|
|
|
'name' => q(septimanas), |
1690
|
|
|
|
|
|
|
'one' => q({0} septimanas), |
1691
|
|
|
|
|
|
|
'other' => q({0} septimanas), |
1692
|
|
|
|
|
|
|
'per' => q({0} per septimana), |
1693
|
|
|
|
|
|
|
}, |
1694
|
|
|
|
|
|
|
'yard' => { |
1695
|
|
|
|
|
|
|
'name' => q(yards), |
1696
|
|
|
|
|
|
|
'one' => q({0} yards), |
1697
|
|
|
|
|
|
|
'other' => q({0} yards), |
1698
|
|
|
|
|
|
|
}, |
1699
|
|
|
|
|
|
|
'year' => { |
1700
|
|
|
|
|
|
|
'name' => q(annos), |
1701
|
|
|
|
|
|
|
'one' => q({0} annos), |
1702
|
|
|
|
|
|
|
'other' => q({0} annos), |
1703
|
|
|
|
|
|
|
'per' => q({0} per anno), |
1704
|
|
|
|
|
|
|
}, |
1705
|
|
|
|
|
|
|
}, |
1706
|
|
|
|
|
|
|
'narrow' => { |
1707
|
|
|
|
|
|
|
'' => { |
1708
|
|
|
|
|
|
|
'name' => q(dir.), |
1709
|
|
|
|
|
|
|
}, |
1710
|
|
|
|
|
|
|
'celsius' => { |
1711
|
|
|
|
|
|
|
'name' => q(°C), |
1712
|
|
|
|
|
|
|
'one' => q({0}°C), |
1713
|
|
|
|
|
|
|
'other' => q({0}°C), |
1714
|
|
|
|
|
|
|
}, |
1715
|
|
|
|
|
|
|
'centimeter' => { |
1716
|
|
|
|
|
|
|
'name' => q(cm), |
1717
|
|
|
|
|
|
|
'one' => q({0}cm), |
1718
|
|
|
|
|
|
|
'other' => q({0}cm), |
1719
|
|
|
|
|
|
|
}, |
1720
|
|
|
|
|
|
|
'coordinate' => { |
1721
|
|
|
|
|
|
|
'east' => q({0}E), |
1722
|
|
|
|
|
|
|
'north' => q({0}N), |
1723
|
|
|
|
|
|
|
'south' => q({0}S), |
1724
|
|
|
|
|
|
|
'west' => q({0}W), |
1725
|
|
|
|
|
|
|
}, |
1726
|
|
|
|
|
|
|
'day' => { |
1727
|
|
|
|
|
|
|
'name' => q(die), |
1728
|
|
|
|
|
|
|
'one' => q({0}d), |
1729
|
|
|
|
|
|
|
'other' => q({0}d), |
1730
|
|
|
|
|
|
|
}, |
1731
|
|
|
|
|
|
|
'gram' => { |
1732
|
|
|
|
|
|
|
'name' => q(g), |
1733
|
|
|
|
|
|
|
'one' => q({0}g), |
1734
|
|
|
|
|
|
|
'other' => q({0}g), |
1735
|
|
|
|
|
|
|
}, |
1736
|
|
|
|
|
|
|
'hour' => { |
1737
|
|
|
|
|
|
|
'name' => q(hora), |
1738
|
|
|
|
|
|
|
'one' => q({0}h), |
1739
|
|
|
|
|
|
|
'other' => q({0}h), |
1740
|
|
|
|
|
|
|
}, |
1741
|
|
|
|
|
|
|
'kilogram' => { |
1742
|
|
|
|
|
|
|
'name' => q(kg), |
1743
|
|
|
|
|
|
|
'one' => q({0}kg), |
1744
|
|
|
|
|
|
|
'other' => q({0}kg), |
1745
|
|
|
|
|
|
|
}, |
1746
|
|
|
|
|
|
|
'kilometer' => { |
1747
|
|
|
|
|
|
|
'name' => q(km), |
1748
|
|
|
|
|
|
|
'one' => q({0}km), |
1749
|
|
|
|
|
|
|
'other' => q({0}km), |
1750
|
|
|
|
|
|
|
}, |
1751
|
|
|
|
|
|
|
'kilometer-per-hour' => { |
1752
|
|
|
|
|
|
|
'name' => q(km/h), |
1753
|
|
|
|
|
|
|
'one' => q({0} km/h), |
1754
|
|
|
|
|
|
|
'other' => q({0} km/h), |
1755
|
|
|
|
|
|
|
}, |
1756
|
|
|
|
|
|
|
'liter' => { |
1757
|
|
|
|
|
|
|
'name' => q(L), |
1758
|
|
|
|
|
|
|
'one' => q({0}L), |
1759
|
|
|
|
|
|
|
'other' => q({0}L), |
1760
|
|
|
|
|
|
|
}, |
1761
|
|
|
|
|
|
|
'liter-per-100kilometers' => { |
1762
|
|
|
|
|
|
|
'name' => q(L/100km), |
1763
|
|
|
|
|
|
|
'one' => q({0} L/100km), |
1764
|
|
|
|
|
|
|
'other' => q({0} L/100km), |
1765
|
|
|
|
|
|
|
}, |
1766
|
|
|
|
|
|
|
'meter' => { |
1767
|
|
|
|
|
|
|
'name' => q(m), |
1768
|
|
|
|
|
|
|
'one' => q({0}m), |
1769
|
|
|
|
|
|
|
'other' => q({0}m), |
1770
|
|
|
|
|
|
|
}, |
1771
|
|
|
|
|
|
|
'millimeter' => { |
1772
|
|
|
|
|
|
|
'name' => q(mm), |
1773
|
|
|
|
|
|
|
'one' => q({0}mm), |
1774
|
|
|
|
|
|
|
'other' => q({0}mm), |
1775
|
|
|
|
|
|
|
}, |
1776
|
|
|
|
|
|
|
'millisecond' => { |
1777
|
|
|
|
|
|
|
'name' => q(millisec), |
1778
|
|
|
|
|
|
|
'one' => q({0}ms), |
1779
|
|
|
|
|
|
|
'other' => q({0}ms), |
1780
|
|
|
|
|
|
|
}, |
1781
|
|
|
|
|
|
|
'minute' => { |
1782
|
|
|
|
|
|
|
'name' => q(min), |
1783
|
|
|
|
|
|
|
'one' => q({0}m), |
1784
|
|
|
|
|
|
|
'other' => q({0}m), |
1785
|
|
|
|
|
|
|
}, |
1786
|
|
|
|
|
|
|
'month' => { |
1787
|
|
|
|
|
|
|
'name' => q(mense), |
1788
|
|
|
|
|
|
|
'one' => q({0}m), |
1789
|
|
|
|
|
|
|
'other' => q({0}m), |
1790
|
|
|
|
|
|
|
}, |
1791
|
|
|
|
|
|
|
'per' => { |
1792
|
|
|
|
|
|
|
'1' => q({0}/{1}), |
1793
|
|
|
|
|
|
|
}, |
1794
|
|
|
|
|
|
|
'percent' => { |
1795
|
|
|
|
|
|
|
'name' => q(%), |
1796
|
|
|
|
|
|
|
'one' => q({0}%), |
1797
|
|
|
|
|
|
|
'other' => q({0}%), |
1798
|
|
|
|
|
|
|
}, |
1799
|
|
|
|
|
|
|
'second' => { |
1800
|
|
|
|
|
|
|
'name' => q(s), |
1801
|
|
|
|
|
|
|
'one' => q({0}s), |
1802
|
|
|
|
|
|
|
'other' => q({0}s), |
1803
|
|
|
|
|
|
|
}, |
1804
|
|
|
|
|
|
|
'week' => { |
1805
|
|
|
|
|
|
|
'name' => q(sept.), |
1806
|
|
|
|
|
|
|
'one' => q({0}sept), |
1807
|
|
|
|
|
|
|
'other' => q({0}sept), |
1808
|
|
|
|
|
|
|
}, |
1809
|
|
|
|
|
|
|
'year' => { |
1810
|
|
|
|
|
|
|
'name' => q(an), |
1811
|
|
|
|
|
|
|
'one' => q({0}an), |
1812
|
|
|
|
|
|
|
'other' => q({0}an), |
1813
|
|
|
|
|
|
|
}, |
1814
|
|
|
|
|
|
|
}, |
1815
|
|
|
|
|
|
|
'short' => { |
1816
|
|
|
|
|
|
|
'' => { |
1817
|
|
|
|
|
|
|
'name' => q(direction), |
1818
|
|
|
|
|
|
|
}, |
1819
|
|
|
|
|
|
|
'acre' => { |
1820
|
|
|
|
|
|
|
'name' => q(ac), |
1821
|
|
|
|
|
|
|
'one' => q({0} ac), |
1822
|
|
|
|
|
|
|
'other' => q({0} ac), |
1823
|
|
|
|
|
|
|
}, |
1824
|
|
|
|
|
|
|
'acre-foot' => { |
1825
|
|
|
|
|
|
|
'name' => q(ac pd), |
1826
|
|
|
|
|
|
|
'one' => q({0} ac pd), |
1827
|
|
|
|
|
|
|
'other' => q({0} ac pd), |
1828
|
|
|
|
|
|
|
}, |
1829
|
|
|
|
|
|
|
'ampere' => { |
1830
|
|
|
|
|
|
|
'name' => q(A), |
1831
|
|
|
|
|
|
|
'one' => q({0} A), |
1832
|
|
|
|
|
|
|
'other' => q({0} A), |
1833
|
|
|
|
|
|
|
}, |
1834
|
|
|
|
|
|
|
'arc-minute' => { |
1835
|
|
|
|
|
|
|
'name' => q(â²), |
1836
|
|
|
|
|
|
|
'one' => q({0}â²), |
1837
|
|
|
|
|
|
|
'other' => q({0}â²), |
1838
|
|
|
|
|
|
|
}, |
1839
|
|
|
|
|
|
|
'arc-second' => { |
1840
|
|
|
|
|
|
|
'name' => q(â³), |
1841
|
|
|
|
|
|
|
'one' => q({0}â³), |
1842
|
|
|
|
|
|
|
'other' => q({0}â³), |
1843
|
|
|
|
|
|
|
}, |
1844
|
|
|
|
|
|
|
'astronomical-unit' => { |
1845
|
|
|
|
|
|
|
'name' => q(ua), |
1846
|
|
|
|
|
|
|
'one' => q({0} ua), |
1847
|
|
|
|
|
|
|
'other' => q({0} ua), |
1848
|
|
|
|
|
|
|
}, |
1849
|
|
|
|
|
|
|
'atmosphere' => { |
1850
|
|
|
|
|
|
|
'name' => q(atm), |
1851
|
|
|
|
|
|
|
'one' => q({0} atm), |
1852
|
|
|
|
|
|
|
'other' => q({0} atm), |
1853
|
|
|
|
|
|
|
}, |
1854
|
|
|
|
|
|
|
'bit' => { |
1855
|
|
|
|
|
|
|
'name' => q(b), |
1856
|
|
|
|
|
|
|
'one' => q({0} b), |
1857
|
|
|
|
|
|
|
'other' => q({0} b), |
1858
|
|
|
|
|
|
|
}, |
1859
|
|
|
|
|
|
|
'byte' => { |
1860
|
|
|
|
|
|
|
'name' => q(B), |
1861
|
|
|
|
|
|
|
'one' => q({0} B), |
1862
|
|
|
|
|
|
|
'other' => q({0} B), |
1863
|
|
|
|
|
|
|
}, |
1864
|
|
|
|
|
|
|
'calorie' => { |
1865
|
|
|
|
|
|
|
'name' => q(cal), |
1866
|
|
|
|
|
|
|
'one' => q({0} cal), |
1867
|
|
|
|
|
|
|
'other' => q({0} cal), |
1868
|
|
|
|
|
|
|
}, |
1869
|
|
|
|
|
|
|
'carat' => { |
1870
|
|
|
|
|
|
|
'name' => q(ct), |
1871
|
|
|
|
|
|
|
'one' => q({0} ct), |
1872
|
|
|
|
|
|
|
'other' => q({0} ct), |
1873
|
|
|
|
|
|
|
}, |
1874
|
|
|
|
|
|
|
'celsius' => { |
1875
|
|
|
|
|
|
|
'name' => q(°C), |
1876
|
|
|
|
|
|
|
'one' => q({0} °C), |
1877
|
|
|
|
|
|
|
'other' => q({0} °C), |
1878
|
|
|
|
|
|
|
}, |
1879
|
|
|
|
|
|
|
'centiliter' => { |
1880
|
|
|
|
|
|
|
'name' => q(cL), |
1881
|
|
|
|
|
|
|
'one' => q({0} cL), |
1882
|
|
|
|
|
|
|
'other' => q({0} cL), |
1883
|
|
|
|
|
|
|
}, |
1884
|
|
|
|
|
|
|
'centimeter' => { |
1885
|
|
|
|
|
|
|
'name' => q(cm), |
1886
|
|
|
|
|
|
|
'one' => q({0} cm), |
1887
|
|
|
|
|
|
|
'other' => q({0} cm), |
1888
|
|
|
|
|
|
|
'per' => q({0}/cm), |
1889
|
|
|
|
|
|
|
}, |
1890
|
|
|
|
|
|
|
'century' => { |
1891
|
|
|
|
|
|
|
'name' => q(scl), |
1892
|
|
|
|
|
|
|
'one' => q({0} scl), |
1893
|
|
|
|
|
|
|
'other' => q({0} scl), |
1894
|
|
|
|
|
|
|
}, |
1895
|
|
|
|
|
|
|
'coordinate' => { |
1896
|
|
|
|
|
|
|
'east' => q({0} E), |
1897
|
|
|
|
|
|
|
'north' => q({0} N), |
1898
|
|
|
|
|
|
|
'south' => q({0} S), |
1899
|
|
|
|
|
|
|
'west' => q({0} W), |
1900
|
|
|
|
|
|
|
}, |
1901
|
|
|
|
|
|
|
'cubic-centimeter' => { |
1902
|
|
|
|
|
|
|
'name' => q(cm³), |
1903
|
|
|
|
|
|
|
'one' => q({0} cm³), |
1904
|
|
|
|
|
|
|
'other' => q({0} cm³), |
1905
|
|
|
|
|
|
|
'per' => q({0}/cm³), |
1906
|
|
|
|
|
|
|
}, |
1907
|
|
|
|
|
|
|
'cubic-foot' => { |
1908
|
|
|
|
|
|
|
'name' => q(pd³), |
1909
|
|
|
|
|
|
|
'one' => q({0} pd³), |
1910
|
|
|
|
|
|
|
'other' => q({0} pd³), |
1911
|
|
|
|
|
|
|
}, |
1912
|
|
|
|
|
|
|
'cubic-inch' => { |
1913
|
|
|
|
|
|
|
'name' => q(in³), |
1914
|
|
|
|
|
|
|
'one' => q({0} in³), |
1915
|
|
|
|
|
|
|
'other' => q({0} in³), |
1916
|
|
|
|
|
|
|
}, |
1917
|
|
|
|
|
|
|
'cubic-kilometer' => { |
1918
|
|
|
|
|
|
|
'name' => q(km³), |
1919
|
|
|
|
|
|
|
'one' => q({0} km³), |
1920
|
|
|
|
|
|
|
'other' => q({0} km³), |
1921
|
|
|
|
|
|
|
}, |
1922
|
|
|
|
|
|
|
'cubic-meter' => { |
1923
|
|
|
|
|
|
|
'name' => q(m³), |
1924
|
|
|
|
|
|
|
'one' => q({0} m³), |
1925
|
|
|
|
|
|
|
'other' => q({0} m³), |
1926
|
|
|
|
|
|
|
'per' => q({0}/m³), |
1927
|
|
|
|
|
|
|
}, |
1928
|
|
|
|
|
|
|
'cubic-mile' => { |
1929
|
|
|
|
|
|
|
'name' => q(mi³), |
1930
|
|
|
|
|
|
|
'one' => q({0} mi³), |
1931
|
|
|
|
|
|
|
'other' => q({0} mi³), |
1932
|
|
|
|
|
|
|
}, |
1933
|
|
|
|
|
|
|
'cubic-yard' => { |
1934
|
|
|
|
|
|
|
'name' => q(yd³), |
1935
|
|
|
|
|
|
|
'one' => q({0} yd³), |
1936
|
|
|
|
|
|
|
'other' => q({0} yd³), |
1937
|
|
|
|
|
|
|
}, |
1938
|
|
|
|
|
|
|
'cup' => { |
1939
|
|
|
|
|
|
|
'name' => q(tas), |
1940
|
|
|
|
|
|
|
'one' => q({0} tas), |
1941
|
|
|
|
|
|
|
'other' => q({0} tas), |
1942
|
|
|
|
|
|
|
}, |
1943
|
|
|
|
|
|
|
'cup-metric' => { |
1944
|
|
|
|
|
|
|
'name' => q(tasm), |
1945
|
|
|
|
|
|
|
'one' => q({0} tasm), |
1946
|
|
|
|
|
|
|
'other' => q({0} tasm), |
1947
|
|
|
|
|
|
|
}, |
1948
|
|
|
|
|
|
|
'day' => { |
1949
|
|
|
|
|
|
|
'name' => q(dies), |
1950
|
|
|
|
|
|
|
'one' => q({0} dies), |
1951
|
|
|
|
|
|
|
'other' => q({0} dies), |
1952
|
|
|
|
|
|
|
'per' => q({0}/d), |
1953
|
|
|
|
|
|
|
}, |
1954
|
|
|
|
|
|
|
'deciliter' => { |
1955
|
|
|
|
|
|
|
'name' => q(dL), |
1956
|
|
|
|
|
|
|
'one' => q({0} dL), |
1957
|
|
|
|
|
|
|
'other' => q({0} dL), |
1958
|
|
|
|
|
|
|
}, |
1959
|
|
|
|
|
|
|
'decimeter' => { |
1960
|
|
|
|
|
|
|
'name' => q(dm), |
1961
|
|
|
|
|
|
|
'one' => q({0} dm), |
1962
|
|
|
|
|
|
|
'other' => q({0} dm), |
1963
|
|
|
|
|
|
|
}, |
1964
|
|
|
|
|
|
|
'degree' => { |
1965
|
|
|
|
|
|
|
'name' => q(°), |
1966
|
|
|
|
|
|
|
'one' => q({0}°), |
1967
|
|
|
|
|
|
|
'other' => q({0}°), |
1968
|
|
|
|
|
|
|
}, |
1969
|
|
|
|
|
|
|
'fahrenheit' => { |
1970
|
|
|
|
|
|
|
'name' => q(°F), |
1971
|
|
|
|
|
|
|
'one' => q({0} °F), |
1972
|
|
|
|
|
|
|
'other' => q({0} °F), |
1973
|
|
|
|
|
|
|
}, |
1974
|
|
|
|
|
|
|
'fluid-ounce' => { |
1975
|
|
|
|
|
|
|
'name' => q(oz liq), |
1976
|
|
|
|
|
|
|
'one' => q({0} oz liq), |
1977
|
|
|
|
|
|
|
'other' => q({0} oz liq), |
1978
|
|
|
|
|
|
|
}, |
1979
|
|
|
|
|
|
|
'foodcalorie' => { |
1980
|
|
|
|
|
|
|
'name' => q(kcal), |
1981
|
|
|
|
|
|
|
'one' => q({0} kcal), |
1982
|
|
|
|
|
|
|
'other' => q({0} kcal), |
1983
|
|
|
|
|
|
|
}, |
1984
|
|
|
|
|
|
|
'foot' => { |
1985
|
|
|
|
|
|
|
'name' => q(ft), |
1986
|
|
|
|
|
|
|
'one' => q({0} ft), |
1987
|
|
|
|
|
|
|
'other' => q({0} ft), |
1988
|
|
|
|
|
|
|
'per' => q({0}/ft), |
1989
|
|
|
|
|
|
|
}, |
1990
|
|
|
|
|
|
|
'g-force' => { |
1991
|
|
|
|
|
|
|
'name' => q(fortia g), |
1992
|
|
|
|
|
|
|
'one' => q({0} G), |
1993
|
|
|
|
|
|
|
'other' => q({0} G), |
1994
|
|
|
|
|
|
|
}, |
1995
|
|
|
|
|
|
|
'gallon' => { |
1996
|
|
|
|
|
|
|
'name' => q(gal), |
1997
|
|
|
|
|
|
|
'one' => q({0} gal), |
1998
|
|
|
|
|
|
|
'other' => q({0} gal), |
1999
|
|
|
|
|
|
|
'per' => q({0}/gal), |
2000
|
|
|
|
|
|
|
}, |
2001
|
|
|
|
|
|
|
'gallon-imperial' => { |
2002
|
|
|
|
|
|
|
'name' => q(gal imp), |
2003
|
|
|
|
|
|
|
'one' => q({0} gal imp), |
2004
|
|
|
|
|
|
|
'other' => q({0} gal imp), |
2005
|
|
|
|
|
|
|
'per' => q({0}/gal imp), |
2006
|
|
|
|
|
|
|
}, |
2007
|
|
|
|
|
|
|
'generic' => { |
2008
|
|
|
|
|
|
|
'name' => q(°), |
2009
|
|
|
|
|
|
|
'one' => q({0}°), |
2010
|
|
|
|
|
|
|
'other' => q({0}°), |
2011
|
|
|
|
|
|
|
}, |
2012
|
|
|
|
|
|
|
'gigabit' => { |
2013
|
|
|
|
|
|
|
'name' => q(Gb), |
2014
|
|
|
|
|
|
|
'one' => q({0} Gb), |
2015
|
|
|
|
|
|
|
'other' => q({0} Gb), |
2016
|
|
|
|
|
|
|
}, |
2017
|
|
|
|
|
|
|
'gigabyte' => { |
2018
|
|
|
|
|
|
|
'name' => q(GB), |
2019
|
|
|
|
|
|
|
'one' => q({0} GB), |
2020
|
|
|
|
|
|
|
'other' => q({0} GB), |
2021
|
|
|
|
|
|
|
}, |
2022
|
|
|
|
|
|
|
'gigahertz' => { |
2023
|
|
|
|
|
|
|
'name' => q(GHz), |
2024
|
|
|
|
|
|
|
'one' => q({0} GHz), |
2025
|
|
|
|
|
|
|
'other' => q({0} GHz), |
2026
|
|
|
|
|
|
|
}, |
2027
|
|
|
|
|
|
|
'gigawatt' => { |
2028
|
|
|
|
|
|
|
'name' => q(GW), |
2029
|
|
|
|
|
|
|
'one' => q({0} GW), |
2030
|
|
|
|
|
|
|
'other' => q({0} GW), |
2031
|
|
|
|
|
|
|
}, |
2032
|
|
|
|
|
|
|
'gram' => { |
2033
|
|
|
|
|
|
|
'name' => q(g), |
2034
|
|
|
|
|
|
|
'one' => q({0} g), |
2035
|
|
|
|
|
|
|
'other' => q({0} g), |
2036
|
|
|
|
|
|
|
'per' => q({0}/g), |
2037
|
|
|
|
|
|
|
}, |
2038
|
|
|
|
|
|
|
'hectare' => { |
2039
|
|
|
|
|
|
|
'name' => q(ha), |
2040
|
|
|
|
|
|
|
'one' => q({0} ha), |
2041
|
|
|
|
|
|
|
'other' => q({0} ha), |
2042
|
|
|
|
|
|
|
}, |
2043
|
|
|
|
|
|
|
'hectoliter' => { |
2044
|
|
|
|
|
|
|
'name' => q(hL), |
2045
|
|
|
|
|
|
|
'one' => q({0} hL), |
2046
|
|
|
|
|
|
|
'other' => q({0} hL), |
2047
|
|
|
|
|
|
|
}, |
2048
|
|
|
|
|
|
|
'hectopascal' => { |
2049
|
|
|
|
|
|
|
'name' => q(hPa), |
2050
|
|
|
|
|
|
|
'one' => q({0} hPa), |
2051
|
|
|
|
|
|
|
'other' => q({0} hPa), |
2052
|
|
|
|
|
|
|
}, |
2053
|
|
|
|
|
|
|
'hertz' => { |
2054
|
|
|
|
|
|
|
'name' => q(Hz), |
2055
|
|
|
|
|
|
|
'one' => q({0} Hz), |
2056
|
|
|
|
|
|
|
'other' => q({0} Hz), |
2057
|
|
|
|
|
|
|
}, |
2058
|
|
|
|
|
|
|
'horsepower' => { |
2059
|
|
|
|
|
|
|
'name' => q(cv), |
2060
|
|
|
|
|
|
|
'one' => q({0} cv), |
2061
|
|
|
|
|
|
|
'other' => q({0} cv), |
2062
|
|
|
|
|
|
|
}, |
2063
|
|
|
|
|
|
|
'hour' => { |
2064
|
|
|
|
|
|
|
'name' => q(horas), |
2065
|
|
|
|
|
|
|
'one' => q({0} hr), |
2066
|
|
|
|
|
|
|
'other' => q({0} hr), |
2067
|
|
|
|
|
|
|
'per' => q({0}/h), |
2068
|
|
|
|
|
|
|
}, |
2069
|
|
|
|
|
|
|
'inch' => { |
2070
|
|
|
|
|
|
|
'name' => q(in), |
2071
|
|
|
|
|
|
|
'one' => q({0} in), |
2072
|
|
|
|
|
|
|
'other' => q({0} in), |
2073
|
|
|
|
|
|
|
'per' => q({0}/in), |
2074
|
|
|
|
|
|
|
}, |
2075
|
|
|
|
|
|
|
'inch-hg' => { |
2076
|
|
|
|
|
|
|
'name' => q(inHg), |
2077
|
|
|
|
|
|
|
'one' => q({0} inHg), |
2078
|
|
|
|
|
|
|
'other' => q({0} inHg), |
2079
|
|
|
|
|
|
|
}, |
2080
|
|
|
|
|
|
|
'joule' => { |
2081
|
|
|
|
|
|
|
'name' => q(J), |
2082
|
|
|
|
|
|
|
'one' => q({0} J), |
2083
|
|
|
|
|
|
|
'other' => q({0} J), |
2084
|
|
|
|
|
|
|
}, |
2085
|
|
|
|
|
|
|
'karat' => { |
2086
|
|
|
|
|
|
|
'name' => q(kt), |
2087
|
|
|
|
|
|
|
'one' => q({0} kt), |
2088
|
|
|
|
|
|
|
'other' => q({0} kt), |
2089
|
|
|
|
|
|
|
}, |
2090
|
|
|
|
|
|
|
'kelvin' => { |
2091
|
|
|
|
|
|
|
'name' => q(K), |
2092
|
|
|
|
|
|
|
'one' => q({0} K), |
2093
|
|
|
|
|
|
|
'other' => q({0} K), |
2094
|
|
|
|
|
|
|
}, |
2095
|
|
|
|
|
|
|
'kilobit' => { |
2096
|
|
|
|
|
|
|
'name' => q(kb), |
2097
|
|
|
|
|
|
|
'one' => q({0} kb), |
2098
|
|
|
|
|
|
|
'other' => q({0} kb), |
2099
|
|
|
|
|
|
|
}, |
2100
|
|
|
|
|
|
|
'kilobyte' => { |
2101
|
|
|
|
|
|
|
'name' => q(kB), |
2102
|
|
|
|
|
|
|
'one' => q({0} kB), |
2103
|
|
|
|
|
|
|
'other' => q({0} kB), |
2104
|
|
|
|
|
|
|
}, |
2105
|
|
|
|
|
|
|
'kilocalorie' => { |
2106
|
|
|
|
|
|
|
'name' => q(kcal), |
2107
|
|
|
|
|
|
|
'one' => q({0} kcal), |
2108
|
|
|
|
|
|
|
'other' => q({0} kcal), |
2109
|
|
|
|
|
|
|
}, |
2110
|
|
|
|
|
|
|
'kilogram' => { |
2111
|
|
|
|
|
|
|
'name' => q(kg), |
2112
|
|
|
|
|
|
|
'one' => q({0} kg), |
2113
|
|
|
|
|
|
|
'other' => q({0} kg), |
2114
|
|
|
|
|
|
|
'per' => q({0}/kg), |
2115
|
|
|
|
|
|
|
}, |
2116
|
|
|
|
|
|
|
'kilohertz' => { |
2117
|
|
|
|
|
|
|
'name' => q(kHz), |
2118
|
|
|
|
|
|
|
'one' => q({0} kHz), |
2119
|
|
|
|
|
|
|
'other' => q({0} kHz), |
2120
|
|
|
|
|
|
|
}, |
2121
|
|
|
|
|
|
|
'kilojoule' => { |
2122
|
|
|
|
|
|
|
'name' => q(kJ), |
2123
|
|
|
|
|
|
|
'one' => q({0} kJ), |
2124
|
|
|
|
|
|
|
'other' => q({0} kJ), |
2125
|
|
|
|
|
|
|
}, |
2126
|
|
|
|
|
|
|
'kilometer' => { |
2127
|
|
|
|
|
|
|
'name' => q(km), |
2128
|
|
|
|
|
|
|
'one' => q({0} km), |
2129
|
|
|
|
|
|
|
'other' => q({0} km), |
2130
|
|
|
|
|
|
|
'per' => q({0}/km), |
2131
|
|
|
|
|
|
|
}, |
2132
|
|
|
|
|
|
|
'kilometer-per-hour' => { |
2133
|
|
|
|
|
|
|
'name' => q(km/h), |
2134
|
|
|
|
|
|
|
'one' => q({0} km/h), |
2135
|
|
|
|
|
|
|
'other' => q({0} km/h), |
2136
|
|
|
|
|
|
|
}, |
2137
|
|
|
|
|
|
|
'kilowatt' => { |
2138
|
|
|
|
|
|
|
'name' => q(kW), |
2139
|
|
|
|
|
|
|
'one' => q({0} kW), |
2140
|
|
|
|
|
|
|
'other' => q({0} kW), |
2141
|
|
|
|
|
|
|
}, |
2142
|
|
|
|
|
|
|
'kilowatt-hour' => { |
2143
|
|
|
|
|
|
|
'name' => q(kWh), |
2144
|
|
|
|
|
|
|
'one' => q({0} kWh), |
2145
|
|
|
|
|
|
|
'other' => q({0} kWh), |
2146
|
|
|
|
|
|
|
}, |
2147
|
|
|
|
|
|
|
'knot' => { |
2148
|
|
|
|
|
|
|
'name' => q(kn), |
2149
|
|
|
|
|
|
|
'one' => q({0} kn), |
2150
|
|
|
|
|
|
|
'other' => q({0} kn), |
2151
|
|
|
|
|
|
|
}, |
2152
|
|
|
|
|
|
|
'light-year' => { |
2153
|
|
|
|
|
|
|
'name' => q(al), |
2154
|
|
|
|
|
|
|
'one' => q({0} al), |
2155
|
|
|
|
|
|
|
'other' => q({0} al), |
2156
|
|
|
|
|
|
|
}, |
2157
|
|
|
|
|
|
|
'liter' => { |
2158
|
|
|
|
|
|
|
'name' => q(L), |
2159
|
|
|
|
|
|
|
'one' => q({0} L), |
2160
|
|
|
|
|
|
|
'other' => q({0} L), |
2161
|
|
|
|
|
|
|
'per' => q({0}/L), |
2162
|
|
|
|
|
|
|
}, |
2163
|
|
|
|
|
|
|
'liter-per-100kilometers' => { |
2164
|
|
|
|
|
|
|
'name' => q(L/100km), |
2165
|
|
|
|
|
|
|
'one' => q({0} L/100km), |
2166
|
|
|
|
|
|
|
'other' => q({0} L/100km), |
2167
|
|
|
|
|
|
|
}, |
2168
|
|
|
|
|
|
|
'liter-per-kilometer' => { |
2169
|
|
|
|
|
|
|
'name' => q(L/km), |
2170
|
|
|
|
|
|
|
'one' => q({0} L/km), |
2171
|
|
|
|
|
|
|
'other' => q({0} L/km), |
2172
|
|
|
|
|
|
|
}, |
2173
|
|
|
|
|
|
|
'lux' => { |
2174
|
|
|
|
|
|
|
'name' => q(lx), |
2175
|
|
|
|
|
|
|
'one' => q({0} lx), |
2176
|
|
|
|
|
|
|
'other' => q({0} lx), |
2177
|
|
|
|
|
|
|
}, |
2178
|
|
|
|
|
|
|
'megabit' => { |
2179
|
|
|
|
|
|
|
'name' => q(Mb), |
2180
|
|
|
|
|
|
|
'one' => q({0} Mb), |
2181
|
|
|
|
|
|
|
'other' => q({0} Mb), |
2182
|
|
|
|
|
|
|
}, |
2183
|
|
|
|
|
|
|
'megabyte' => { |
2184
|
|
|
|
|
|
|
'name' => q(MB), |
2185
|
|
|
|
|
|
|
'one' => q({0} MB), |
2186
|
|
|
|
|
|
|
'other' => q({0} MB), |
2187
|
|
|
|
|
|
|
}, |
2188
|
|
|
|
|
|
|
'megahertz' => { |
2189
|
|
|
|
|
|
|
'name' => q(MHz), |
2190
|
|
|
|
|
|
|
'one' => q({0} MHz), |
2191
|
|
|
|
|
|
|
'other' => q({0} MHz), |
2192
|
|
|
|
|
|
|
}, |
2193
|
|
|
|
|
|
|
'megaliter' => { |
2194
|
|
|
|
|
|
|
'name' => q(ML), |
2195
|
|
|
|
|
|
|
'one' => q({0} ML), |
2196
|
|
|
|
|
|
|
'other' => q({0} ML), |
2197
|
|
|
|
|
|
|
}, |
2198
|
|
|
|
|
|
|
'megawatt' => { |
2199
|
|
|
|
|
|
|
'name' => q(MW), |
2200
|
|
|
|
|
|
|
'one' => q({0} MW), |
2201
|
|
|
|
|
|
|
'other' => q({0} MW), |
2202
|
|
|
|
|
|
|
}, |
2203
|
|
|
|
|
|
|
'meter' => { |
2204
|
|
|
|
|
|
|
'name' => q(m), |
2205
|
|
|
|
|
|
|
'one' => q({0} m), |
2206
|
|
|
|
|
|
|
'other' => q({0} m), |
2207
|
|
|
|
|
|
|
'per' => q({0}/m), |
2208
|
|
|
|
|
|
|
}, |
2209
|
|
|
|
|
|
|
'meter-per-second' => { |
2210
|
|
|
|
|
|
|
'name' => q(m/s), |
2211
|
|
|
|
|
|
|
'one' => q({0} m/s), |
2212
|
|
|
|
|
|
|
'other' => q({0} m/s), |
2213
|
|
|
|
|
|
|
}, |
2214
|
|
|
|
|
|
|
'meter-per-second-squared' => { |
2215
|
|
|
|
|
|
|
'name' => q(m/s²), |
2216
|
|
|
|
|
|
|
'one' => q({0} m/s²), |
2217
|
|
|
|
|
|
|
'other' => q({0} m/s²), |
2218
|
|
|
|
|
|
|
}, |
2219
|
|
|
|
|
|
|
'metric-ton' => { |
2220
|
|
|
|
|
|
|
'name' => q(t), |
2221
|
|
|
|
|
|
|
'one' => q({0}t), |
2222
|
|
|
|
|
|
|
'other' => q({0}t), |
2223
|
|
|
|
|
|
|
}, |
2224
|
|
|
|
|
|
|
'microgram' => { |
2225
|
|
|
|
|
|
|
'name' => q(µg), |
2226
|
|
|
|
|
|
|
'one' => q({0} µg), |
2227
|
|
|
|
|
|
|
'other' => q({0} µg), |
2228
|
|
|
|
|
|
|
}, |
2229
|
|
|
|
|
|
|
'micrometer' => { |
2230
|
|
|
|
|
|
|
'name' => q(µm), |
2231
|
|
|
|
|
|
|
'one' => q({0} µm), |
2232
|
|
|
|
|
|
|
'other' => q({0} µm), |
2233
|
|
|
|
|
|
|
}, |
2234
|
|
|
|
|
|
|
'microsecond' => { |
2235
|
|
|
|
|
|
|
'name' => q(μs), |
2236
|
|
|
|
|
|
|
'one' => q({0}μs), |
2237
|
|
|
|
|
|
|
'other' => q({0}μs), |
2238
|
|
|
|
|
|
|
}, |
2239
|
|
|
|
|
|
|
'mile' => { |
2240
|
|
|
|
|
|
|
'name' => q(mi), |
2241
|
|
|
|
|
|
|
'one' => q({0} mi), |
2242
|
|
|
|
|
|
|
'other' => q({0} mi), |
2243
|
|
|
|
|
|
|
}, |
2244
|
|
|
|
|
|
|
'mile-per-gallon' => { |
2245
|
|
|
|
|
|
|
'name' => q(mi/gal), |
2246
|
|
|
|
|
|
|
'one' => q({0} mi/gal), |
2247
|
|
|
|
|
|
|
'other' => q({0} mi/gal), |
2248
|
|
|
|
|
|
|
}, |
2249
|
|
|
|
|
|
|
'mile-per-gallon-imperial' => { |
2250
|
|
|
|
|
|
|
'name' => q(mi/gal imp.), |
2251
|
|
|
|
|
|
|
'one' => q({0} mi/gal imp.), |
2252
|
|
|
|
|
|
|
'other' => q({0} mi/gal imp.), |
2253
|
|
|
|
|
|
|
}, |
2254
|
|
|
|
|
|
|
'mile-per-hour' => { |
2255
|
|
|
|
|
|
|
'name' => q(mi/h), |
2256
|
|
|
|
|
|
|
'one' => q({0} mi/h), |
2257
|
|
|
|
|
|
|
'other' => q({0} mi/h), |
2258
|
|
|
|
|
|
|
}, |
2259
|
|
|
|
|
|
|
'mile-scandinavian' => { |
2260
|
|
|
|
|
|
|
'name' => q(smi), |
2261
|
|
|
|
|
|
|
'one' => q({0} smi), |
2262
|
|
|
|
|
|
|
'other' => q({0} smi), |
2263
|
|
|
|
|
|
|
}, |
2264
|
|
|
|
|
|
|
'milliampere' => { |
2265
|
|
|
|
|
|
|
'name' => q(mA), |
2266
|
|
|
|
|
|
|
'one' => q({0} mA), |
2267
|
|
|
|
|
|
|
'other' => q({0} mA), |
2268
|
|
|
|
|
|
|
}, |
2269
|
|
|
|
|
|
|
'millibar' => { |
2270
|
|
|
|
|
|
|
'name' => q(mbar), |
2271
|
|
|
|
|
|
|
'one' => q({0} mbar), |
2272
|
|
|
|
|
|
|
'other' => q({0} mbar), |
2273
|
|
|
|
|
|
|
}, |
2274
|
|
|
|
|
|
|
'milligram' => { |
2275
|
|
|
|
|
|
|
'name' => q(mg), |
2276
|
|
|
|
|
|
|
'one' => q({0} mg), |
2277
|
|
|
|
|
|
|
'other' => q({0} mg), |
2278
|
|
|
|
|
|
|
}, |
2279
|
|
|
|
|
|
|
'milligram-per-deciliter' => { |
2280
|
|
|
|
|
|
|
'name' => q(mg/dL), |
2281
|
|
|
|
|
|
|
'one' => q({0} mg/dL), |
2282
|
|
|
|
|
|
|
'other' => q({0} mg/dL), |
2283
|
|
|
|
|
|
|
}, |
2284
|
|
|
|
|
|
|
'milliliter' => { |
2285
|
|
|
|
|
|
|
'name' => q(mL), |
2286
|
|
|
|
|
|
|
'one' => q({0} mL), |
2287
|
|
|
|
|
|
|
'other' => q({0} mL), |
2288
|
|
|
|
|
|
|
}, |
2289
|
|
|
|
|
|
|
'millimeter' => { |
2290
|
|
|
|
|
|
|
'name' => q(mm), |
2291
|
|
|
|
|
|
|
'one' => q({0} mm), |
2292
|
|
|
|
|
|
|
'other' => q({0} mm), |
2293
|
|
|
|
|
|
|
}, |
2294
|
|
|
|
|
|
|
'millimeter-of-mercury' => { |
2295
|
|
|
|
|
|
|
'name' => q(mm Hg), |
2296
|
|
|
|
|
|
|
'one' => q({0} mm Hg), |
2297
|
|
|
|
|
|
|
'other' => q({0} mm Hg), |
2298
|
|
|
|
|
|
|
}, |
2299
|
|
|
|
|
|
|
'millimole-per-liter' => { |
2300
|
|
|
|
|
|
|
'name' => q(mmol/L), |
2301
|
|
|
|
|
|
|
'one' => q({0} mmol/L), |
2302
|
|
|
|
|
|
|
'other' => q({0} mmol/L), |
2303
|
|
|
|
|
|
|
}, |
2304
|
|
|
|
|
|
|
'millisecond' => { |
2305
|
|
|
|
|
|
|
'name' => q(millisec), |
2306
|
|
|
|
|
|
|
'one' => q({0} ms), |
2307
|
|
|
|
|
|
|
'other' => q({0} ms), |
2308
|
|
|
|
|
|
|
}, |
2309
|
|
|
|
|
|
|
'milliwatt' => { |
2310
|
|
|
|
|
|
|
'name' => q(mW), |
2311
|
|
|
|
|
|
|
'one' => q({0} mW), |
2312
|
|
|
|
|
|
|
'other' => q({0} mW), |
2313
|
|
|
|
|
|
|
}, |
2314
|
|
|
|
|
|
|
'minute' => { |
2315
|
|
|
|
|
|
|
'name' => q(min), |
2316
|
|
|
|
|
|
|
'one' => q({0} min), |
2317
|
|
|
|
|
|
|
'other' => q({0} min), |
2318
|
|
|
|
|
|
|
'per' => q({0}/min), |
2319
|
|
|
|
|
|
|
}, |
2320
|
|
|
|
|
|
|
'month' => { |
2321
|
|
|
|
|
|
|
'name' => q(menses), |
2322
|
|
|
|
|
|
|
'one' => q({0} menses), |
2323
|
|
|
|
|
|
|
'other' => q({0} menses), |
2324
|
|
|
|
|
|
|
'per' => q({0}/m), |
2325
|
|
|
|
|
|
|
}, |
2326
|
|
|
|
|
|
|
'nanometer' => { |
2327
|
|
|
|
|
|
|
'name' => q(nm), |
2328
|
|
|
|
|
|
|
'one' => q({0} nm), |
2329
|
|
|
|
|
|
|
'other' => q({0} nm), |
2330
|
|
|
|
|
|
|
}, |
2331
|
|
|
|
|
|
|
'nanosecond' => { |
2332
|
|
|
|
|
|
|
'name' => q(ns), |
2333
|
|
|
|
|
|
|
'one' => q({0}ns), |
2334
|
|
|
|
|
|
|
'other' => q({0}ns), |
2335
|
|
|
|
|
|
|
}, |
2336
|
|
|
|
|
|
|
'nautical-mile' => { |
2337
|
|
|
|
|
|
|
'name' => q(nmi), |
2338
|
|
|
|
|
|
|
'one' => q({0} nmi), |
2339
|
|
|
|
|
|
|
'other' => q({0} nmi), |
2340
|
|
|
|
|
|
|
}, |
2341
|
|
|
|
|
|
|
'ohm' => { |
2342
|
|
|
|
|
|
|
'name' => q(Ω), |
2343
|
|
|
|
|
|
|
'one' => q({0} Ω), |
2344
|
|
|
|
|
|
|
'other' => q({0} Ω), |
2345
|
|
|
|
|
|
|
}, |
2346
|
|
|
|
|
|
|
'ounce' => { |
2347
|
|
|
|
|
|
|
'name' => q(oz), |
2348
|
|
|
|
|
|
|
'one' => q({0} oz), |
2349
|
|
|
|
|
|
|
'other' => q({0} oz), |
2350
|
|
|
|
|
|
|
'per' => q({0}/oz), |
2351
|
|
|
|
|
|
|
}, |
2352
|
|
|
|
|
|
|
'ounce-troy' => { |
2353
|
|
|
|
|
|
|
'name' => q(oz t), |
2354
|
|
|
|
|
|
|
'one' => q({0} oz t), |
2355
|
|
|
|
|
|
|
'other' => q({0} oz t), |
2356
|
|
|
|
|
|
|
}, |
2357
|
|
|
|
|
|
|
'parsec' => { |
2358
|
|
|
|
|
|
|
'name' => q(pc), |
2359
|
|
|
|
|
|
|
'one' => q({0} pc), |
2360
|
|
|
|
|
|
|
'other' => q({0} pc), |
2361
|
|
|
|
|
|
|
}, |
2362
|
|
|
|
|
|
|
'part-per-million' => { |
2363
|
|
|
|
|
|
|
'name' => q(ppm), |
2364
|
|
|
|
|
|
|
'one' => q({0} ppm), |
2365
|
|
|
|
|
|
|
'other' => q({0} ppm), |
2366
|
|
|
|
|
|
|
}, |
2367
|
|
|
|
|
|
|
'per' => { |
2368
|
|
|
|
|
|
|
'1' => q({0}/{1}), |
2369
|
|
|
|
|
|
|
}, |
2370
|
|
|
|
|
|
|
'percent' => { |
2371
|
|
|
|
|
|
|
'name' => q(%), |
2372
|
|
|
|
|
|
|
'one' => q({0}%), |
2373
|
|
|
|
|
|
|
'other' => q({0}%), |
2374
|
|
|
|
|
|
|
}, |
2375
|
|
|
|
|
|
|
'permille' => { |
2376
|
|
|
|
|
|
|
'name' => q(â°), |
2377
|
|
|
|
|
|
|
'one' => q({0}â°), |
2378
|
|
|
|
|
|
|
'other' => q({0}â°), |
2379
|
|
|
|
|
|
|
}, |
2380
|
|
|
|
|
|
|
'petabyte' => { |
2381
|
|
|
|
|
|
|
'name' => q(PB), |
2382
|
|
|
|
|
|
|
'one' => q({0} PB), |
2383
|
|
|
|
|
|
|
'other' => q({0} PB), |
2384
|
|
|
|
|
|
|
}, |
2385
|
|
|
|
|
|
|
'picometer' => { |
2386
|
|
|
|
|
|
|
'name' => q(pm), |
2387
|
|
|
|
|
|
|
'one' => q({0} pm), |
2388
|
|
|
|
|
|
|
'other' => q({0} pm), |
2389
|
|
|
|
|
|
|
}, |
2390
|
|
|
|
|
|
|
'pint' => { |
2391
|
|
|
|
|
|
|
'name' => q(pt), |
2392
|
|
|
|
|
|
|
'one' => q({0} pt), |
2393
|
|
|
|
|
|
|
'other' => q({0} pt), |
2394
|
|
|
|
|
|
|
}, |
2395
|
|
|
|
|
|
|
'pint-metric' => { |
2396
|
|
|
|
|
|
|
'name' => q(ptm), |
2397
|
|
|
|
|
|
|
'one' => q({0} ptm), |
2398
|
|
|
|
|
|
|
'other' => q({0} ptm), |
2399
|
|
|
|
|
|
|
}, |
2400
|
|
|
|
|
|
|
'point' => { |
2401
|
|
|
|
|
|
|
'name' => q(pt), |
2402
|
|
|
|
|
|
|
'one' => q({0} pt), |
2403
|
|
|
|
|
|
|
'other' => q({0} pt), |
2404
|
|
|
|
|
|
|
}, |
2405
|
|
|
|
|
|
|
'pound' => { |
2406
|
|
|
|
|
|
|
'name' => q(lb), |
2407
|
|
|
|
|
|
|
'one' => q({0} lb), |
2408
|
|
|
|
|
|
|
'other' => q({0} lb), |
2409
|
|
|
|
|
|
|
'per' => q({0}/lb), |
2410
|
|
|
|
|
|
|
}, |
2411
|
|
|
|
|
|
|
'pound-per-square-inch' => { |
2412
|
|
|
|
|
|
|
'name' => q(lb/in²), |
2413
|
|
|
|
|
|
|
'one' => q({0} lb/in²), |
2414
|
|
|
|
|
|
|
'other' => q({0} lb/in²), |
2415
|
|
|
|
|
|
|
}, |
2416
|
|
|
|
|
|
|
'quart' => { |
2417
|
|
|
|
|
|
|
'name' => q(qt), |
2418
|
|
|
|
|
|
|
'one' => q({0} qt), |
2419
|
|
|
|
|
|
|
'other' => q({0} qt), |
2420
|
|
|
|
|
|
|
}, |
2421
|
|
|
|
|
|
|
'radian' => { |
2422
|
|
|
|
|
|
|
'name' => q(rad), |
2423
|
|
|
|
|
|
|
'one' => q({0} rad), |
2424
|
|
|
|
|
|
|
'other' => q({0} rad), |
2425
|
|
|
|
|
|
|
}, |
2426
|
|
|
|
|
|
|
'revolution' => { |
2427
|
|
|
|
|
|
|
'name' => q(rev), |
2428
|
|
|
|
|
|
|
'one' => q({0} rev), |
2429
|
|
|
|
|
|
|
'other' => q({0} rev), |
2430
|
|
|
|
|
|
|
}, |
2431
|
|
|
|
|
|
|
'second' => { |
2432
|
|
|
|
|
|
|
'name' => q(sec), |
2433
|
|
|
|
|
|
|
'one' => q({0} sec), |
2434
|
|
|
|
|
|
|
'other' => q({0} sec), |
2435
|
|
|
|
|
|
|
'per' => q({0}/s), |
2436
|
|
|
|
|
|
|
}, |
2437
|
|
|
|
|
|
|
'square-centimeter' => { |
2438
|
|
|
|
|
|
|
'name' => q(cm²), |
2439
|
|
|
|
|
|
|
'one' => q({0} cm²), |
2440
|
|
|
|
|
|
|
'other' => q({0} cm²), |
2441
|
|
|
|
|
|
|
'per' => q({0}/cm²), |
2442
|
|
|
|
|
|
|
}, |
2443
|
|
|
|
|
|
|
'square-foot' => { |
2444
|
|
|
|
|
|
|
'name' => q(ft²), |
2445
|
|
|
|
|
|
|
'one' => q({0} ft²), |
2446
|
|
|
|
|
|
|
'other' => q({0} ft²), |
2447
|
|
|
|
|
|
|
}, |
2448
|
|
|
|
|
|
|
'square-inch' => { |
2449
|
|
|
|
|
|
|
'name' => q(in²), |
2450
|
|
|
|
|
|
|
'one' => q({0} in²), |
2451
|
|
|
|
|
|
|
'other' => q({0} in²), |
2452
|
|
|
|
|
|
|
'per' => q({0}/in²), |
2453
|
|
|
|
|
|
|
}, |
2454
|
|
|
|
|
|
|
'square-kilometer' => { |
2455
|
|
|
|
|
|
|
'name' => q(km²), |
2456
|
|
|
|
|
|
|
'one' => q({0} km²), |
2457
|
|
|
|
|
|
|
'other' => q({0} km²), |
2458
|
|
|
|
|
|
|
'per' => q({0}/km²), |
2459
|
|
|
|
|
|
|
}, |
2460
|
|
|
|
|
|
|
'square-meter' => { |
2461
|
|
|
|
|
|
|
'name' => q(m²), |
2462
|
|
|
|
|
|
|
'one' => q({0} m²), |
2463
|
|
|
|
|
|
|
'other' => q({0} m²), |
2464
|
|
|
|
|
|
|
'per' => q({0}/m²), |
2465
|
|
|
|
|
|
|
}, |
2466
|
|
|
|
|
|
|
'square-mile' => { |
2467
|
|
|
|
|
|
|
'name' => q(mi²), |
2468
|
|
|
|
|
|
|
'one' => q({0} mi²), |
2469
|
|
|
|
|
|
|
'other' => q({0} mi²), |
2470
|
|
|
|
|
|
|
'per' => q({0}/mi²), |
2471
|
|
|
|
|
|
|
}, |
2472
|
|
|
|
|
|
|
'square-yard' => { |
2473
|
|
|
|
|
|
|
'name' => q(yd²), |
2474
|
|
|
|
|
|
|
'one' => q({0} yd²), |
2475
|
|
|
|
|
|
|
'other' => q({0} yd²), |
2476
|
|
|
|
|
|
|
}, |
2477
|
|
|
|
|
|
|
'tablespoon' => { |
2478
|
|
|
|
|
|
|
'name' => q(cocl. a suppa), |
2479
|
|
|
|
|
|
|
'one' => q({0} cocl. a suppa), |
2480
|
|
|
|
|
|
|
'other' => q({0} cocl. a suppa), |
2481
|
|
|
|
|
|
|
}, |
2482
|
|
|
|
|
|
|
'teaspoon' => { |
2483
|
|
|
|
|
|
|
'name' => q(cocl. a the), |
2484
|
|
|
|
|
|
|
'one' => q({0} cocl. a the), |
2485
|
|
|
|
|
|
|
'other' => q({0} cocl. a the), |
2486
|
|
|
|
|
|
|
}, |
2487
|
|
|
|
|
|
|
'terabit' => { |
2488
|
|
|
|
|
|
|
'name' => q(Tb), |
2489
|
|
|
|
|
|
|
'one' => q({0} Tb), |
2490
|
|
|
|
|
|
|
'other' => q({0} Tb), |
2491
|
|
|
|
|
|
|
}, |
2492
|
|
|
|
|
|
|
'terabyte' => { |
2493
|
|
|
|
|
|
|
'name' => q(TB), |
2494
|
|
|
|
|
|
|
'one' => q({0} TB), |
2495
|
|
|
|
|
|
|
'other' => q({0} TB), |
2496
|
|
|
|
|
|
|
}, |
2497
|
|
|
|
|
|
|
'ton' => { |
2498
|
|
|
|
|
|
|
'name' => q(tn), |
2499
|
|
|
|
|
|
|
'one' => q({0} tn), |
2500
|
|
|
|
|
|
|
'other' => q({0} tn), |
2501
|
|
|
|
|
|
|
}, |
2502
|
|
|
|
|
|
|
'volt' => { |
2503
|
|
|
|
|
|
|
'name' => q(V), |
2504
|
|
|
|
|
|
|
'one' => q({0} V), |
2505
|
|
|
|
|
|
|
'other' => q({0} V), |
2506
|
|
|
|
|
|
|
}, |
2507
|
|
|
|
|
|
|
'watt' => { |
2508
|
|
|
|
|
|
|
'name' => q(W), |
2509
|
|
|
|
|
|
|
'one' => q({0} W), |
2510
|
|
|
|
|
|
|
'other' => q({0} W), |
2511
|
|
|
|
|
|
|
}, |
2512
|
|
|
|
|
|
|
'week' => { |
2513
|
|
|
|
|
|
|
'name' => q(septimanas), |
2514
|
|
|
|
|
|
|
'one' => q({0} sept), |
2515
|
|
|
|
|
|
|
'other' => q({0} sept), |
2516
|
|
|
|
|
|
|
'per' => q({0}/sept), |
2517
|
|
|
|
|
|
|
}, |
2518
|
|
|
|
|
|
|
'yard' => { |
2519
|
|
|
|
|
|
|
'name' => q(yd), |
2520
|
|
|
|
|
|
|
'one' => q({0} yd), |
2521
|
|
|
|
|
|
|
'other' => q({0} yd), |
2522
|
|
|
|
|
|
|
}, |
2523
|
|
|
|
|
|
|
'year' => { |
2524
|
|
|
|
|
|
|
'name' => q(annos), |
2525
|
|
|
|
|
|
|
'one' => q({0} an), |
2526
|
|
|
|
|
|
|
'other' => q({0} an), |
2527
|
|
|
|
|
|
|
'per' => q({0}/an), |
2528
|
|
|
|
|
|
|
}, |
2529
|
|
|
|
|
|
|
}, |
2530
|
|
|
|
|
|
|
} } |
2531
|
|
|
|
|
|
|
); |
2532
|
|
|
|
|
|
|
|
2533
|
|
|
|
|
|
|
has 'yesstr' => ( |
2534
|
|
|
|
|
|
|
is => 'ro', |
2535
|
|
|
|
|
|
|
isa => RegexpRef, |
2536
|
|
|
|
|
|
|
init_arg => undef, |
2537
|
|
|
|
|
|
|
default => sub { qr'^(?i:si|s|yes|y)$' } |
2538
|
|
|
|
|
|
|
); |
2539
|
|
|
|
|
|
|
|
2540
|
|
|
|
|
|
|
has 'nostr' => ( |
2541
|
|
|
|
|
|
|
is => 'ro', |
2542
|
|
|
|
|
|
|
isa => RegexpRef, |
2543
|
|
|
|
|
|
|
init_arg => undef, |
2544
|
|
|
|
|
|
|
default => sub { qr'^(?i:no|n)$' } |
2545
|
|
|
|
|
|
|
); |
2546
|
|
|
|
|
|
|
|
2547
|
|
|
|
|
|
|
has 'listPatterns' => ( |
2548
|
|
|
|
|
|
|
is => 'ro', |
2549
|
|
|
|
|
|
|
isa => HashRef, |
2550
|
|
|
|
|
|
|
init_arg => undef, |
2551
|
|
|
|
|
|
|
default => sub { { |
2552
|
|
|
|
|
|
|
start => q({0}, {1}), |
2553
|
|
|
|
|
|
|
middle => q({0}, {1}), |
2554
|
|
|
|
|
|
|
end => q({0}, {1}), |
2555
|
|
|
|
|
|
|
2 => q({0}, {1}), |
2556
|
|
|
|
|
|
|
} } |
2557
|
|
|
|
|
|
|
); |
2558
|
|
|
|
|
|
|
|
2559
|
|
|
|
|
|
|
has 'default_numbering_system' => ( |
2560
|
|
|
|
|
|
|
is => 'ro', |
2561
|
|
|
|
|
|
|
isa => Str, |
2562
|
|
|
|
|
|
|
init_arg => undef, |
2563
|
|
|
|
|
|
|
default => 'latn', |
2564
|
|
|
|
|
|
|
); |
2565
|
|
|
|
|
|
|
|
2566
|
|
|
|
|
|
|
has native_numbering_system => ( |
2567
|
|
|
|
|
|
|
is => 'ro', |
2568
|
|
|
|
|
|
|
isa => Str, |
2569
|
|
|
|
|
|
|
init_arg => undef, |
2570
|
|
|
|
|
|
|
default => 'latn', |
2571
|
|
|
|
|
|
|
); |
2572
|
|
|
|
|
|
|
|
2573
|
|
|
|
|
|
|
has 'minimum_grouping_digits' => ( |
2574
|
|
|
|
|
|
|
is =>'ro', |
2575
|
|
|
|
|
|
|
isa => Int, |
2576
|
|
|
|
|
|
|
init_arg => undef, |
2577
|
|
|
|
|
|
|
default => 2, |
2578
|
|
|
|
|
|
|
); |
2579
|
|
|
|
|
|
|
|
2580
|
|
|
|
|
|
|
has 'number_symbols' => ( |
2581
|
|
|
|
|
|
|
is => 'ro', |
2582
|
|
|
|
|
|
|
isa => HashRef, |
2583
|
|
|
|
|
|
|
init_arg => undef, |
2584
|
|
|
|
|
|
|
default => sub { { |
2585
|
|
|
|
|
|
|
'latn' => { |
2586
|
|
|
|
|
|
|
'decimal' => q(,), |
2587
|
|
|
|
|
|
|
'exponential' => q(E), |
2588
|
|
|
|
|
|
|
'group' => q(.), |
2589
|
|
|
|
|
|
|
'infinity' => q(â), |
2590
|
|
|
|
|
|
|
'minusSign' => q(-), |
2591
|
|
|
|
|
|
|
'nan' => q(NaN), |
2592
|
|
|
|
|
|
|
'perMille' => q(â°), |
2593
|
|
|
|
|
|
|
'percentSign' => q(%), |
2594
|
|
|
|
|
|
|
'plusSign' => q(+), |
2595
|
|
|
|
|
|
|
'superscriptingExponent' => q(Ã), |
2596
|
|
|
|
|
|
|
}, |
2597
|
|
|
|
|
|
|
} } |
2598
|
|
|
|
|
|
|
); |
2599
|
|
|
|
|
|
|
|
2600
|
|
|
|
|
|
|
has 'number_formats' => ( |
2601
|
|
|
|
|
|
|
is => 'ro', |
2602
|
|
|
|
|
|
|
isa => HashRef, |
2603
|
|
|
|
|
|
|
init_arg => undef, |
2604
|
|
|
|
|
|
|
default => sub { { |
2605
|
|
|
|
|
|
|
decimalFormat => { |
2606
|
|
|
|
|
|
|
'default' => { |
2607
|
|
|
|
|
|
|
'1000' => { |
2608
|
|
|
|
|
|
|
'one' => '0Â mil', |
2609
|
|
|
|
|
|
|
'other' => '0Â mil', |
2610
|
|
|
|
|
|
|
}, |
2611
|
|
|
|
|
|
|
'10000' => { |
2612
|
|
|
|
|
|
|
'one' => '00Â mil', |
2613
|
|
|
|
|
|
|
'other' => '00Â mil', |
2614
|
|
|
|
|
|
|
}, |
2615
|
|
|
|
|
|
|
'100000' => { |
2616
|
|
|
|
|
|
|
'one' => '000Â mil', |
2617
|
|
|
|
|
|
|
'other' => '000Â mil', |
2618
|
|
|
|
|
|
|
}, |
2619
|
|
|
|
|
|
|
'1000000' => { |
2620
|
|
|
|
|
|
|
'one' => '0Â mln', |
2621
|
|
|
|
|
|
|
'other' => '0Â mln', |
2622
|
|
|
|
|
|
|
}, |
2623
|
|
|
|
|
|
|
'10000000' => { |
2624
|
|
|
|
|
|
|
'one' => '00Â mln', |
2625
|
|
|
|
|
|
|
'other' => '00Â mln', |
2626
|
|
|
|
|
|
|
}, |
2627
|
|
|
|
|
|
|
'100000000' => { |
2628
|
|
|
|
|
|
|
'one' => '000Â mln', |
2629
|
|
|
|
|
|
|
'other' => '000Â mln', |
2630
|
|
|
|
|
|
|
}, |
2631
|
|
|
|
|
|
|
'1000000000' => { |
2632
|
|
|
|
|
|
|
'one' => '0Â mld', |
2633
|
|
|
|
|
|
|
'other' => '0Â mld', |
2634
|
|
|
|
|
|
|
}, |
2635
|
|
|
|
|
|
|
'10000000000' => { |
2636
|
|
|
|
|
|
|
'one' => '00Â mld', |
2637
|
|
|
|
|
|
|
'other' => '00Â mld', |
2638
|
|
|
|
|
|
|
}, |
2639
|
|
|
|
|
|
|
'100000000000' => { |
2640
|
|
|
|
|
|
|
'one' => '000Â mld', |
2641
|
|
|
|
|
|
|
'other' => '000Â mld', |
2642
|
|
|
|
|
|
|
}, |
2643
|
|
|
|
|
|
|
'1000000000000' => { |
2644
|
|
|
|
|
|
|
'one' => '0Â bln', |
2645
|
|
|
|
|
|
|
'other' => '0Â bln', |
2646
|
|
|
|
|
|
|
}, |
2647
|
|
|
|
|
|
|
'10000000000000' => { |
2648
|
|
|
|
|
|
|
'one' => '00Â bln', |
2649
|
|
|
|
|
|
|
'other' => '00Â bln', |
2650
|
|
|
|
|
|
|
}, |
2651
|
|
|
|
|
|
|
'100000000000000' => { |
2652
|
|
|
|
|
|
|
'one' => '000Â bln', |
2653
|
|
|
|
|
|
|
'other' => '000Â bln', |
2654
|
|
|
|
|
|
|
}, |
2655
|
|
|
|
|
|
|
'standard' => { |
2656
|
|
|
|
|
|
|
'default' => '#,##0.###', |
2657
|
|
|
|
|
|
|
}, |
2658
|
|
|
|
|
|
|
}, |
2659
|
|
|
|
|
|
|
'long' => { |
2660
|
|
|
|
|
|
|
'1000' => { |
2661
|
|
|
|
|
|
|
'one' => '0 milles', |
2662
|
|
|
|
|
|
|
'other' => '0 milles', |
2663
|
|
|
|
|
|
|
}, |
2664
|
|
|
|
|
|
|
'10000' => { |
2665
|
|
|
|
|
|
|
'one' => '00 milles', |
2666
|
|
|
|
|
|
|
'other' => '00 milles', |
2667
|
|
|
|
|
|
|
}, |
2668
|
|
|
|
|
|
|
'100000' => { |
2669
|
|
|
|
|
|
|
'one' => '000 milles', |
2670
|
|
|
|
|
|
|
'other' => '000 milles', |
2671
|
|
|
|
|
|
|
}, |
2672
|
|
|
|
|
|
|
'1000000' => { |
2673
|
|
|
|
|
|
|
'one' => '0 milliones', |
2674
|
|
|
|
|
|
|
'other' => '0 milliones', |
2675
|
|
|
|
|
|
|
}, |
2676
|
|
|
|
|
|
|
'10000000' => { |
2677
|
|
|
|
|
|
|
'one' => '00 milliones', |
2678
|
|
|
|
|
|
|
'other' => '00 milliones', |
2679
|
|
|
|
|
|
|
}, |
2680
|
|
|
|
|
|
|
'100000000' => { |
2681
|
|
|
|
|
|
|
'one' => '000 milliones', |
2682
|
|
|
|
|
|
|
'other' => '000 milliones', |
2683
|
|
|
|
|
|
|
}, |
2684
|
|
|
|
|
|
|
'1000000000' => { |
2685
|
|
|
|
|
|
|
'one' => '0 milliardos', |
2686
|
|
|
|
|
|
|
'other' => '0 milliardos', |
2687
|
|
|
|
|
|
|
}, |
2688
|
|
|
|
|
|
|
'10000000000' => { |
2689
|
|
|
|
|
|
|
'one' => '00 milliardos', |
2690
|
|
|
|
|
|
|
'other' => '00 milliardos', |
2691
|
|
|
|
|
|
|
}, |
2692
|
|
|
|
|
|
|
'100000000000' => { |
2693
|
|
|
|
|
|
|
'one' => '000 milliardos', |
2694
|
|
|
|
|
|
|
'other' => '000 milliardos', |
2695
|
|
|
|
|
|
|
}, |
2696
|
|
|
|
|
|
|
'1000000000000' => { |
2697
|
|
|
|
|
|
|
'one' => '0 billiones', |
2698
|
|
|
|
|
|
|
'other' => '0 billiones', |
2699
|
|
|
|
|
|
|
}, |
2700
|
|
|
|
|
|
|
'10000000000000' => { |
2701
|
|
|
|
|
|
|
'one' => '00 billiones', |
2702
|
|
|
|
|
|
|
'other' => '00 billiones', |
2703
|
|
|
|
|
|
|
}, |
2704
|
|
|
|
|
|
|
'100000000000000' => { |
2705
|
|
|
|
|
|
|
'one' => '000 billiones', |
2706
|
|
|
|
|
|
|
'other' => '000 billiones', |
2707
|
|
|
|
|
|
|
}, |
2708
|
|
|
|
|
|
|
}, |
2709
|
|
|
|
|
|
|
'short' => { |
2710
|
|
|
|
|
|
|
'1000' => { |
2711
|
|
|
|
|
|
|
'one' => '0Â mil', |
2712
|
|
|
|
|
|
|
'other' => '0Â mil', |
2713
|
|
|
|
|
|
|
}, |
2714
|
|
|
|
|
|
|
'10000' => { |
2715
|
|
|
|
|
|
|
'one' => '00Â mil', |
2716
|
|
|
|
|
|
|
'other' => '00Â mil', |
2717
|
|
|
|
|
|
|
}, |
2718
|
|
|
|
|
|
|
'100000' => { |
2719
|
|
|
|
|
|
|
'one' => '000Â mil', |
2720
|
|
|
|
|
|
|
'other' => '000Â mil', |
2721
|
|
|
|
|
|
|
}, |
2722
|
|
|
|
|
|
|
'1000000' => { |
2723
|
|
|
|
|
|
|
'one' => '0Â mln', |
2724
|
|
|
|
|
|
|
'other' => '0Â mln', |
2725
|
|
|
|
|
|
|
}, |
2726
|
|
|
|
|
|
|
'10000000' => { |
2727
|
|
|
|
|
|
|
'one' => '00Â mln', |
2728
|
|
|
|
|
|
|
'other' => '00Â mln', |
2729
|
|
|
|
|
|
|
}, |
2730
|
|
|
|
|
|
|
'100000000' => { |
2731
|
|
|
|
|
|
|
'one' => '000Â mln', |
2732
|
|
|
|
|
|
|
'other' => '000Â mln', |
2733
|
|
|
|
|
|
|
}, |
2734
|
|
|
|
|
|
|
'1000000000' => { |
2735
|
|
|
|
|
|
|
'one' => '0Â mld', |
2736
|
|
|
|
|
|
|
'other' => '0Â mld', |
2737
|
|
|
|
|
|
|
}, |
2738
|
|
|
|
|
|
|
'10000000000' => { |
2739
|
|
|
|
|
|
|
'one' => '00Â mld', |
2740
|
|
|
|
|
|
|
'other' => '00Â mld', |
2741
|
|
|
|
|
|
|
}, |
2742
|
|
|
|
|
|
|
'100000000000' => { |
2743
|
|
|
|
|
|
|
'one' => '000Â mld', |
2744
|
|
|
|
|
|
|
'other' => '000Â mld', |
2745
|
|
|
|
|
|
|
}, |
2746
|
|
|
|
|
|
|
'1000000000000' => { |
2747
|
|
|
|
|
|
|
'one' => '0Â bln', |
2748
|
|
|
|
|
|
|
'other' => '0Â bln', |
2749
|
|
|
|
|
|
|
}, |
2750
|
|
|
|
|
|
|
'10000000000000' => { |
2751
|
|
|
|
|
|
|
'one' => '00Â bln', |
2752
|
|
|
|
|
|
|
'other' => '00Â bln', |
2753
|
|
|
|
|
|
|
}, |
2754
|
|
|
|
|
|
|
'100000000000000' => { |
2755
|
|
|
|
|
|
|
'one' => '000Â bln', |
2756
|
|
|
|
|
|
|
'other' => '000Â bln', |
2757
|
|
|
|
|
|
|
}, |
2758
|
|
|
|
|
|
|
}, |
2759
|
|
|
|
|
|
|
}, |
2760
|
|
|
|
|
|
|
percentFormat => { |
2761
|
|
|
|
|
|
|
'default' => { |
2762
|
|
|
|
|
|
|
'standard' => { |
2763
|
|
|
|
|
|
|
'default' => '#,##0%', |
2764
|
|
|
|
|
|
|
}, |
2765
|
|
|
|
|
|
|
}, |
2766
|
|
|
|
|
|
|
}, |
2767
|
|
|
|
|
|
|
scientificFormat => { |
2768
|
|
|
|
|
|
|
'default' => { |
2769
|
|
|
|
|
|
|
'standard' => { |
2770
|
|
|
|
|
|
|
'default' => '#E0', |
2771
|
|
|
|
|
|
|
}, |
2772
|
|
|
|
|
|
|
}, |
2773
|
|
|
|
|
|
|
}, |
2774
|
|
|
|
|
|
|
} }, |
2775
|
|
|
|
|
|
|
); |
2776
|
|
|
|
|
|
|
|
2777
|
|
|
|
|
|
|
has 'number_currency_formats' => ( |
2778
|
|
|
|
|
|
|
is => 'ro', |
2779
|
|
|
|
|
|
|
isa => HashRef, |
2780
|
|
|
|
|
|
|
init_arg => undef, |
2781
|
|
|
|
|
|
|
default => sub { { |
2782
|
|
|
|
|
|
|
'latn' => { |
2783
|
|
|
|
|
|
|
'pattern' => { |
2784
|
|
|
|
|
|
|
'default' => { |
2785
|
|
|
|
|
|
|
'accounting' => { |
2786
|
|
|
|
|
|
|
'negative' => '(¤ #,##0.00)', |
2787
|
|
|
|
|
|
|
'positive' => '¤ #,##0.00', |
2788
|
|
|
|
|
|
|
}, |
2789
|
|
|
|
|
|
|
'standard' => { |
2790
|
|
|
|
|
|
|
'positive' => '¤ #,##0.00', |
2791
|
|
|
|
|
|
|
}, |
2792
|
|
|
|
|
|
|
}, |
2793
|
|
|
|
|
|
|
}, |
2794
|
|
|
|
|
|
|
}, |
2795
|
|
|
|
|
|
|
} }, |
2796
|
|
|
|
|
|
|
); |
2797
|
|
|
|
|
|
|
|
2798
|
|
|
|
|
|
|
has 'currencies' => ( |
2799
|
|
|
|
|
|
|
is => 'ro', |
2800
|
|
|
|
|
|
|
isa => HashRef, |
2801
|
|
|
|
|
|
|
init_arg => undef, |
2802
|
|
|
|
|
|
|
default => sub { { |
2803
|
|
|
|
|
|
|
'ALL' => { |
2804
|
|
|
|
|
|
|
display_name => { |
2805
|
|
|
|
|
|
|
'currency' => q(lek albanese), |
2806
|
|
|
|
|
|
|
'one' => q(lekë albanese), |
2807
|
|
|
|
|
|
|
'other' => q(lekë albanese), |
2808
|
|
|
|
|
|
|
}, |
2809
|
|
|
|
|
|
|
}, |
2810
|
|
|
|
|
|
|
'ANG' => { |
2811
|
|
|
|
|
|
|
display_name => { |
2812
|
|
|
|
|
|
|
'currency' => q(florino antillan), |
2813
|
|
|
|
|
|
|
'one' => q(florinos antillan), |
2814
|
|
|
|
|
|
|
'other' => q(florinos antillan), |
2815
|
|
|
|
|
|
|
}, |
2816
|
|
|
|
|
|
|
}, |
2817
|
|
|
|
|
|
|
'AOA' => { |
2818
|
|
|
|
|
|
|
display_name => { |
2819
|
|
|
|
|
|
|
'currency' => q(kwanza angolan), |
2820
|
|
|
|
|
|
|
'one' => q(kwanzas angolan), |
2821
|
|
|
|
|
|
|
'other' => q(kwanzas angolan), |
2822
|
|
|
|
|
|
|
}, |
2823
|
|
|
|
|
|
|
}, |
2824
|
|
|
|
|
|
|
'ARS' => { |
2825
|
|
|
|
|
|
|
display_name => { |
2826
|
|
|
|
|
|
|
'currency' => q(peso argentin), |
2827
|
|
|
|
|
|
|
'one' => q(pesos argentin), |
2828
|
|
|
|
|
|
|
'other' => q(pesos argentin), |
2829
|
|
|
|
|
|
|
}, |
2830
|
|
|
|
|
|
|
}, |
2831
|
|
|
|
|
|
|
'AUD' => { |
2832
|
|
|
|
|
|
|
display_name => { |
2833
|
|
|
|
|
|
|
'currency' => q(dollar australian), |
2834
|
|
|
|
|
|
|
'one' => q(dollares australian), |
2835
|
|
|
|
|
|
|
'other' => q(dollares australian), |
2836
|
|
|
|
|
|
|
}, |
2837
|
|
|
|
|
|
|
}, |
2838
|
|
|
|
|
|
|
'AWG' => { |
2839
|
|
|
|
|
|
|
display_name => { |
2840
|
|
|
|
|
|
|
'currency' => q(florino aruban), |
2841
|
|
|
|
|
|
|
'one' => q(florinos aruban), |
2842
|
|
|
|
|
|
|
'other' => q(florinos aruban), |
2843
|
|
|
|
|
|
|
}, |
2844
|
|
|
|
|
|
|
}, |
2845
|
|
|
|
|
|
|
'BAM' => { |
2846
|
|
|
|
|
|
|
display_name => { |
2847
|
|
|
|
|
|
|
'currency' => q(marco convertibile de Bosnia-Herzegovina), |
2848
|
|
|
|
|
|
|
'one' => q(marcos convertibile de Bosnia-Herzegovina), |
2849
|
|
|
|
|
|
|
'other' => q(marcos convertibile de Bosnia-Herzegovina), |
2850
|
|
|
|
|
|
|
}, |
2851
|
|
|
|
|
|
|
}, |
2852
|
|
|
|
|
|
|
'BBD' => { |
2853
|
|
|
|
|
|
|
display_name => { |
2854
|
|
|
|
|
|
|
'currency' => q(dollar barbadian), |
2855
|
|
|
|
|
|
|
'one' => q(dollares barbadian), |
2856
|
|
|
|
|
|
|
'other' => q(dollares barbadian), |
2857
|
|
|
|
|
|
|
}, |
2858
|
|
|
|
|
|
|
}, |
2859
|
|
|
|
|
|
|
'BGN' => { |
2860
|
|
|
|
|
|
|
display_name => { |
2861
|
|
|
|
|
|
|
'currency' => q(lev bulgare), |
2862
|
|
|
|
|
|
|
'one' => q(leva bulgare), |
2863
|
|
|
|
|
|
|
'other' => q(leva bulgare), |
2864
|
|
|
|
|
|
|
}, |
2865
|
|
|
|
|
|
|
}, |
2866
|
|
|
|
|
|
|
'BIF' => { |
2867
|
|
|
|
|
|
|
display_name => { |
2868
|
|
|
|
|
|
|
'currency' => q(franco burundese), |
2869
|
|
|
|
|
|
|
'one' => q(francos burundese), |
2870
|
|
|
|
|
|
|
'other' => q(francos burundese), |
2871
|
|
|
|
|
|
|
}, |
2872
|
|
|
|
|
|
|
}, |
2873
|
|
|
|
|
|
|
'BMD' => { |
2874
|
|
|
|
|
|
|
display_name => { |
2875
|
|
|
|
|
|
|
'currency' => q(dollar bermudan), |
2876
|
|
|
|
|
|
|
'one' => q(dollares bermudan), |
2877
|
|
|
|
|
|
|
'other' => q(dollares bermudan), |
2878
|
|
|
|
|
|
|
}, |
2879
|
|
|
|
|
|
|
}, |
2880
|
|
|
|
|
|
|
'BOB' => { |
2881
|
|
|
|
|
|
|
display_name => { |
2882
|
|
|
|
|
|
|
'currency' => q(boliviano bolivian), |
2883
|
|
|
|
|
|
|
'one' => q(bolivianos bolivian), |
2884
|
|
|
|
|
|
|
'other' => q(bolivianos bolivian), |
2885
|
|
|
|
|
|
|
}, |
2886
|
|
|
|
|
|
|
}, |
2887
|
|
|
|
|
|
|
'BRL' => { |
2888
|
|
|
|
|
|
|
display_name => { |
2889
|
|
|
|
|
|
|
'currency' => q(real brasilian), |
2890
|
|
|
|
|
|
|
'one' => q(reales brasilian), |
2891
|
|
|
|
|
|
|
'other' => q(reales brasilian), |
2892
|
|
|
|
|
|
|
}, |
2893
|
|
|
|
|
|
|
}, |
2894
|
|
|
|
|
|
|
'BSD' => { |
2895
|
|
|
|
|
|
|
display_name => { |
2896
|
|
|
|
|
|
|
'currency' => q(dollar bahamian), |
2897
|
|
|
|
|
|
|
'one' => q(dollares bahamian), |
2898
|
|
|
|
|
|
|
'other' => q(dollares bahamian), |
2899
|
|
|
|
|
|
|
}, |
2900
|
|
|
|
|
|
|
}, |
2901
|
|
|
|
|
|
|
'BWP' => { |
2902
|
|
|
|
|
|
|
display_name => { |
2903
|
|
|
|
|
|
|
'currency' => q(pula botswanese), |
2904
|
|
|
|
|
|
|
'one' => q(pula botswanese), |
2905
|
|
|
|
|
|
|
'other' => q(pula botswanese), |
2906
|
|
|
|
|
|
|
}, |
2907
|
|
|
|
|
|
|
}, |
2908
|
|
|
|
|
|
|
'BYN' => { |
2909
|
|
|
|
|
|
|
display_name => { |
2910
|
|
|
|
|
|
|
'currency' => q(rublo bielorusse), |
2911
|
|
|
|
|
|
|
'one' => q(rublos bielorusse), |
2912
|
|
|
|
|
|
|
'other' => q(rublos bielorusse), |
2913
|
|
|
|
|
|
|
}, |
2914
|
|
|
|
|
|
|
}, |
2915
|
|
|
|
|
|
|
'BZD' => { |
2916
|
|
|
|
|
|
|
display_name => { |
2917
|
|
|
|
|
|
|
'currency' => q(dollar belizan), |
2918
|
|
|
|
|
|
|
'one' => q(dollares belizan), |
2919
|
|
|
|
|
|
|
'other' => q(dollares belizan), |
2920
|
|
|
|
|
|
|
}, |
2921
|
|
|
|
|
|
|
}, |
2922
|
|
|
|
|
|
|
'CAD' => { |
2923
|
|
|
|
|
|
|
display_name => { |
2924
|
|
|
|
|
|
|
'currency' => q(dollar canadian), |
2925
|
|
|
|
|
|
|
'one' => q(dollares canadian), |
2926
|
|
|
|
|
|
|
'other' => q(dollares canadian), |
2927
|
|
|
|
|
|
|
}, |
2928
|
|
|
|
|
|
|
}, |
2929
|
|
|
|
|
|
|
'CDF' => { |
2930
|
|
|
|
|
|
|
display_name => { |
2931
|
|
|
|
|
|
|
'currency' => q(franco congolese), |
2932
|
|
|
|
|
|
|
'one' => q(francos congolese), |
2933
|
|
|
|
|
|
|
'other' => q(francos congolese), |
2934
|
|
|
|
|
|
|
}, |
2935
|
|
|
|
|
|
|
}, |
2936
|
|
|
|
|
|
|
'CHF' => { |
2937
|
|
|
|
|
|
|
display_name => { |
2938
|
|
|
|
|
|
|
'currency' => q(franco suisse), |
2939
|
|
|
|
|
|
|
'one' => q(francos suisse), |
2940
|
|
|
|
|
|
|
'other' => q(francos suisse), |
2941
|
|
|
|
|
|
|
}, |
2942
|
|
|
|
|
|
|
}, |
2943
|
|
|
|
|
|
|
'CLP' => { |
2944
|
|
|
|
|
|
|
display_name => { |
2945
|
|
|
|
|
|
|
'currency' => q(peso chilen), |
2946
|
|
|
|
|
|
|
'one' => q(pesos chilen), |
2947
|
|
|
|
|
|
|
'other' => q(pesos chilen), |
2948
|
|
|
|
|
|
|
}, |
2949
|
|
|
|
|
|
|
}, |
2950
|
|
|
|
|
|
|
'CNY' => { |
2951
|
|
|
|
|
|
|
display_name => { |
2952
|
|
|
|
|
|
|
'currency' => q(yuan chinese), |
2953
|
|
|
|
|
|
|
'one' => q(yuan chinese), |
2954
|
|
|
|
|
|
|
'other' => q(yuan chinese), |
2955
|
|
|
|
|
|
|
}, |
2956
|
|
|
|
|
|
|
}, |
2957
|
|
|
|
|
|
|
'COP' => { |
2958
|
|
|
|
|
|
|
display_name => { |
2959
|
|
|
|
|
|
|
'currency' => q(peso colombian), |
2960
|
|
|
|
|
|
|
'one' => q(pesos colombian), |
2961
|
|
|
|
|
|
|
'other' => q(pesos colombian), |
2962
|
|
|
|
|
|
|
}, |
2963
|
|
|
|
|
|
|
}, |
2964
|
|
|
|
|
|
|
'CRC' => { |
2965
|
|
|
|
|
|
|
display_name => { |
2966
|
|
|
|
|
|
|
'currency' => q(colon costarican), |
2967
|
|
|
|
|
|
|
'one' => q(colones costarican), |
2968
|
|
|
|
|
|
|
'other' => q(colones costarican), |
2969
|
|
|
|
|
|
|
}, |
2970
|
|
|
|
|
|
|
}, |
2971
|
|
|
|
|
|
|
'CUC' => { |
2972
|
|
|
|
|
|
|
display_name => { |
2973
|
|
|
|
|
|
|
'currency' => q(peso cuban convertibile), |
2974
|
|
|
|
|
|
|
'one' => q(pesos cuban convertibile), |
2975
|
|
|
|
|
|
|
'other' => q(pesos cuban convertibile), |
2976
|
|
|
|
|
|
|
}, |
2977
|
|
|
|
|
|
|
}, |
2978
|
|
|
|
|
|
|
'CUP' => { |
2979
|
|
|
|
|
|
|
display_name => { |
2980
|
|
|
|
|
|
|
'currency' => q(peso cuban), |
2981
|
|
|
|
|
|
|
'one' => q(pesos cuban), |
2982
|
|
|
|
|
|
|
'other' => q(pesos cuban), |
2983
|
|
|
|
|
|
|
}, |
2984
|
|
|
|
|
|
|
}, |
2985
|
|
|
|
|
|
|
'CVE' => { |
2986
|
|
|
|
|
|
|
display_name => { |
2987
|
|
|
|
|
|
|
'currency' => q(escudo capoverdian), |
2988
|
|
|
|
|
|
|
'one' => q(escudos capoverdian), |
2989
|
|
|
|
|
|
|
'other' => q(escudos capoverdian), |
2990
|
|
|
|
|
|
|
}, |
2991
|
|
|
|
|
|
|
}, |
2992
|
|
|
|
|
|
|
'CZK' => { |
2993
|
|
|
|
|
|
|
display_name => { |
2994
|
|
|
|
|
|
|
'currency' => q(corona chec), |
2995
|
|
|
|
|
|
|
'one' => q(coronas chec), |
2996
|
|
|
|
|
|
|
'other' => q(coronas chec), |
2997
|
|
|
|
|
|
|
}, |
2998
|
|
|
|
|
|
|
}, |
2999
|
|
|
|
|
|
|
'DEM' => { |
3000
|
|
|
|
|
|
|
display_name => { |
3001
|
|
|
|
|
|
|
'currency' => q(Marco geman), |
3002
|
|
|
|
|
|
|
'one' => q(marcos german), |
3003
|
|
|
|
|
|
|
'other' => q(marcos german), |
3004
|
|
|
|
|
|
|
}, |
3005
|
|
|
|
|
|
|
}, |
3006
|
|
|
|
|
|
|
'DJF' => { |
3007
|
|
|
|
|
|
|
display_name => { |
3008
|
|
|
|
|
|
|
'currency' => q(franco djibutian), |
3009
|
|
|
|
|
|
|
'one' => q(francos djibutian), |
3010
|
|
|
|
|
|
|
'other' => q(francos djibutian), |
3011
|
|
|
|
|
|
|
}, |
3012
|
|
|
|
|
|
|
}, |
3013
|
|
|
|
|
|
|
'DKK' => { |
3014
|
|
|
|
|
|
|
display_name => { |
3015
|
|
|
|
|
|
|
'currency' => q(corona danese), |
3016
|
|
|
|
|
|
|
'one' => q(coronas danese), |
3017
|
|
|
|
|
|
|
'other' => q(coronas danese), |
3018
|
|
|
|
|
|
|
}, |
3019
|
|
|
|
|
|
|
}, |
3020
|
|
|
|
|
|
|
'DOP' => { |
3021
|
|
|
|
|
|
|
display_name => { |
3022
|
|
|
|
|
|
|
'currency' => q(peso dominican), |
3023
|
|
|
|
|
|
|
'one' => q(pesos dominican), |
3024
|
|
|
|
|
|
|
'other' => q(pesos dominican), |
3025
|
|
|
|
|
|
|
}, |
3026
|
|
|
|
|
|
|
}, |
3027
|
|
|
|
|
|
|
'DZD' => { |
3028
|
|
|
|
|
|
|
display_name => { |
3029
|
|
|
|
|
|
|
'currency' => q(dinar algerin), |
3030
|
|
|
|
|
|
|
'one' => q(dinares algerin), |
3031
|
|
|
|
|
|
|
'other' => q(dinares algerin), |
3032
|
|
|
|
|
|
|
}, |
3033
|
|
|
|
|
|
|
}, |
3034
|
|
|
|
|
|
|
'EEK' => { |
3035
|
|
|
|
|
|
|
display_name => { |
3036
|
|
|
|
|
|
|
'currency' => q(Corona estonian), |
3037
|
|
|
|
|
|
|
'one' => q(coronas estonian), |
3038
|
|
|
|
|
|
|
'other' => q(coronas estonian), |
3039
|
|
|
|
|
|
|
}, |
3040
|
|
|
|
|
|
|
}, |
3041
|
|
|
|
|
|
|
'EGP' => { |
3042
|
|
|
|
|
|
|
display_name => { |
3043
|
|
|
|
|
|
|
'currency' => q(libra egyptie), |
3044
|
|
|
|
|
|
|
'one' => q(libras egyptie), |
3045
|
|
|
|
|
|
|
'other' => q(libras egyptie), |
3046
|
|
|
|
|
|
|
}, |
3047
|
|
|
|
|
|
|
}, |
3048
|
|
|
|
|
|
|
'ERN' => { |
3049
|
|
|
|
|
|
|
display_name => { |
3050
|
|
|
|
|
|
|
'currency' => q(nakfa eritree), |
3051
|
|
|
|
|
|
|
'one' => q(nakfas eritree), |
3052
|
|
|
|
|
|
|
'other' => q(nakfas eritree), |
3053
|
|
|
|
|
|
|
}, |
3054
|
|
|
|
|
|
|
}, |
3055
|
|
|
|
|
|
|
'ETB' => { |
3056
|
|
|
|
|
|
|
display_name => { |
3057
|
|
|
|
|
|
|
'currency' => q(birr ethiope), |
3058
|
|
|
|
|
|
|
'one' => q(birres ethiope), |
3059
|
|
|
|
|
|
|
'other' => q(birres ethiope), |
3060
|
|
|
|
|
|
|
}, |
3061
|
|
|
|
|
|
|
}, |
3062
|
|
|
|
|
|
|
'EUR' => { |
3063
|
|
|
|
|
|
|
display_name => { |
3064
|
|
|
|
|
|
|
'currency' => q(euro), |
3065
|
|
|
|
|
|
|
'one' => q(euros), |
3066
|
|
|
|
|
|
|
'other' => q(euros), |
3067
|
|
|
|
|
|
|
}, |
3068
|
|
|
|
|
|
|
}, |
3069
|
|
|
|
|
|
|
'FIM' => { |
3070
|
|
|
|
|
|
|
display_name => { |
3071
|
|
|
|
|
|
|
'currency' => q(Marco finnese), |
3072
|
|
|
|
|
|
|
'one' => q(marcos finnese), |
3073
|
|
|
|
|
|
|
'other' => q(marcos finnese), |
3074
|
|
|
|
|
|
|
}, |
3075
|
|
|
|
|
|
|
}, |
3076
|
|
|
|
|
|
|
'FJD' => { |
3077
|
|
|
|
|
|
|
display_name => { |
3078
|
|
|
|
|
|
|
'currency' => q(dollar fijian), |
3079
|
|
|
|
|
|
|
'one' => q(dollares fijian), |
3080
|
|
|
|
|
|
|
'other' => q(dollares fijian), |
3081
|
|
|
|
|
|
|
}, |
3082
|
|
|
|
|
|
|
}, |
3083
|
|
|
|
|
|
|
'FKP' => { |
3084
|
|
|
|
|
|
|
display_name => { |
3085
|
|
|
|
|
|
|
'currency' => q(libra falklandese), |
3086
|
|
|
|
|
|
|
'one' => q(libras falklandese), |
3087
|
|
|
|
|
|
|
'other' => q(libras falklandese), |
3088
|
|
|
|
|
|
|
}, |
3089
|
|
|
|
|
|
|
}, |
3090
|
|
|
|
|
|
|
'FRF' => { |
3091
|
|
|
|
|
|
|
display_name => { |
3092
|
|
|
|
|
|
|
'currency' => q(Franco francese), |
3093
|
|
|
|
|
|
|
'one' => q(francos francese), |
3094
|
|
|
|
|
|
|
'other' => q(francos francese), |
3095
|
|
|
|
|
|
|
}, |
3096
|
|
|
|
|
|
|
}, |
3097
|
|
|
|
|
|
|
'GBP' => { |
3098
|
|
|
|
|
|
|
display_name => { |
3099
|
|
|
|
|
|
|
'currency' => q(libra sterling), |
3100
|
|
|
|
|
|
|
'one' => q(libras sterling), |
3101
|
|
|
|
|
|
|
'other' => q(libras sterling), |
3102
|
|
|
|
|
|
|
}, |
3103
|
|
|
|
|
|
|
}, |
3104
|
|
|
|
|
|
|
'GHS' => { |
3105
|
|
|
|
|
|
|
display_name => { |
3106
|
|
|
|
|
|
|
'currency' => q(cedi ghanese), |
3107
|
|
|
|
|
|
|
'one' => q(cedis ghanese), |
3108
|
|
|
|
|
|
|
'other' => q(cedis ghanese), |
3109
|
|
|
|
|
|
|
}, |
3110
|
|
|
|
|
|
|
}, |
3111
|
|
|
|
|
|
|
'GIP' => { |
3112
|
|
|
|
|
|
|
display_name => { |
3113
|
|
|
|
|
|
|
'currency' => q(libra de Gibraltar), |
3114
|
|
|
|
|
|
|
'one' => q(libras de Gibraltar), |
3115
|
|
|
|
|
|
|
'other' => q(libras de Gibraltar), |
3116
|
|
|
|
|
|
|
}, |
3117
|
|
|
|
|
|
|
}, |
3118
|
|
|
|
|
|
|
'GMD' => { |
3119
|
|
|
|
|
|
|
display_name => { |
3120
|
|
|
|
|
|
|
'currency' => q(dalasi gambian), |
3121
|
|
|
|
|
|
|
'one' => q(dalasis gambian), |
3122
|
|
|
|
|
|
|
'other' => q(dalasis gambian), |
3123
|
|
|
|
|
|
|
}, |
3124
|
|
|
|
|
|
|
}, |
3125
|
|
|
|
|
|
|
'GNF' => { |
3126
|
|
|
|
|
|
|
display_name => { |
3127
|
|
|
|
|
|
|
'currency' => q(franco guinean), |
3128
|
|
|
|
|
|
|
'one' => q(francos guinean), |
3129
|
|
|
|
|
|
|
'other' => q(francos guinean), |
3130
|
|
|
|
|
|
|
}, |
3131
|
|
|
|
|
|
|
}, |
3132
|
|
|
|
|
|
|
'GTQ' => { |
3133
|
|
|
|
|
|
|
display_name => { |
3134
|
|
|
|
|
|
|
'currency' => q(quetzal guatemaltec), |
3135
|
|
|
|
|
|
|
'one' => q(quetzales guatemaltec), |
3136
|
|
|
|
|
|
|
'other' => q(quetzales guatemaltec), |
3137
|
|
|
|
|
|
|
}, |
3138
|
|
|
|
|
|
|
}, |
3139
|
|
|
|
|
|
|
'GYD' => { |
3140
|
|
|
|
|
|
|
display_name => { |
3141
|
|
|
|
|
|
|
'currency' => q(dollar guyanese), |
3142
|
|
|
|
|
|
|
'one' => q(dollares guyanese), |
3143
|
|
|
|
|
|
|
'other' => q(dollares guyanese), |
3144
|
|
|
|
|
|
|
}, |
3145
|
|
|
|
|
|
|
}, |
3146
|
|
|
|
|
|
|
'HNL' => { |
3147
|
|
|
|
|
|
|
display_name => { |
3148
|
|
|
|
|
|
|
'currency' => q(lempira hondurese), |
3149
|
|
|
|
|
|
|
'one' => q(lempiras hondurese), |
3150
|
|
|
|
|
|
|
'other' => q(lempiras hondurese), |
3151
|
|
|
|
|
|
|
}, |
3152
|
|
|
|
|
|
|
}, |
3153
|
|
|
|
|
|
|
'HRK' => { |
3154
|
|
|
|
|
|
|
display_name => { |
3155
|
|
|
|
|
|
|
'currency' => q(kuna croate), |
3156
|
|
|
|
|
|
|
'one' => q(kunas croate), |
3157
|
|
|
|
|
|
|
'other' => q(kunas croate), |
3158
|
|
|
|
|
|
|
}, |
3159
|
|
|
|
|
|
|
}, |
3160
|
|
|
|
|
|
|
'HTG' => { |
3161
|
|
|
|
|
|
|
display_name => { |
3162
|
|
|
|
|
|
|
'currency' => q(gourde haitian), |
3163
|
|
|
|
|
|
|
'one' => q(gourdes haitian), |
3164
|
|
|
|
|
|
|
'other' => q(gourdes haitian), |
3165
|
|
|
|
|
|
|
}, |
3166
|
|
|
|
|
|
|
}, |
3167
|
|
|
|
|
|
|
'HUF' => { |
3168
|
|
|
|
|
|
|
display_name => { |
3169
|
|
|
|
|
|
|
'currency' => q(forint hungare), |
3170
|
|
|
|
|
|
|
'one' => q(forintes hungare), |
3171
|
|
|
|
|
|
|
'other' => q(forintes hungare), |
3172
|
|
|
|
|
|
|
}, |
3173
|
|
|
|
|
|
|
}, |
3174
|
|
|
|
|
|
|
'IEP' => { |
3175
|
|
|
|
|
|
|
display_name => { |
3176
|
|
|
|
|
|
|
'currency' => q(Libra irlandese), |
3177
|
|
|
|
|
|
|
'one' => q(libras irlandese), |
3178
|
|
|
|
|
|
|
'other' => q(libras irlandese), |
3179
|
|
|
|
|
|
|
}, |
3180
|
|
|
|
|
|
|
}, |
3181
|
|
|
|
|
|
|
'INR' => { |
3182
|
|
|
|
|
|
|
display_name => { |
3183
|
|
|
|
|
|
|
'currency' => q(rupia indian), |
3184
|
|
|
|
|
|
|
'one' => q(rupias indian), |
3185
|
|
|
|
|
|
|
'other' => q(rupias indian), |
3186
|
|
|
|
|
|
|
}, |
3187
|
|
|
|
|
|
|
}, |
3188
|
|
|
|
|
|
|
'ISK' => { |
3189
|
|
|
|
|
|
|
display_name => { |
3190
|
|
|
|
|
|
|
'currency' => q(corona islandese), |
3191
|
|
|
|
|
|
|
'one' => q(coronas islandese), |
3192
|
|
|
|
|
|
|
'other' => q(coronas islandese), |
3193
|
|
|
|
|
|
|
}, |
3194
|
|
|
|
|
|
|
}, |
3195
|
|
|
|
|
|
|
'JMD' => { |
3196
|
|
|
|
|
|
|
display_name => { |
3197
|
|
|
|
|
|
|
'currency' => q(dollar jamaican), |
3198
|
|
|
|
|
|
|
'one' => q(dollares jamaican), |
3199
|
|
|
|
|
|
|
'other' => q(dollares jamaican), |
3200
|
|
|
|
|
|
|
}, |
3201
|
|
|
|
|
|
|
}, |
3202
|
|
|
|
|
|
|
'JPY' => { |
3203
|
|
|
|
|
|
|
display_name => { |
3204
|
|
|
|
|
|
|
'currency' => q(yen japonese), |
3205
|
|
|
|
|
|
|
'one' => q(yen japonese), |
3206
|
|
|
|
|
|
|
'other' => q(yen japonese), |
3207
|
|
|
|
|
|
|
}, |
3208
|
|
|
|
|
|
|
}, |
3209
|
|
|
|
|
|
|
'KES' => { |
3210
|
|
|
|
|
|
|
display_name => { |
3211
|
|
|
|
|
|
|
'currency' => q(shilling kenyan), |
3212
|
|
|
|
|
|
|
'one' => q(shillings kenyan), |
3213
|
|
|
|
|
|
|
'other' => q(shillings kenyan), |
3214
|
|
|
|
|
|
|
}, |
3215
|
|
|
|
|
|
|
}, |
3216
|
|
|
|
|
|
|
'KMF' => { |
3217
|
|
|
|
|
|
|
display_name => { |
3218
|
|
|
|
|
|
|
'currency' => q(franco comorian), |
3219
|
|
|
|
|
|
|
'one' => q(francos comorian), |
3220
|
|
|
|
|
|
|
'other' => q(francos comorian), |
3221
|
|
|
|
|
|
|
}, |
3222
|
|
|
|
|
|
|
}, |
3223
|
|
|
|
|
|
|
'KYD' => { |
3224
|
|
|
|
|
|
|
display_name => { |
3225
|
|
|
|
|
|
|
'currency' => q(dollar del Insulas Caiman), |
3226
|
|
|
|
|
|
|
'one' => q(dollares del Insulas Caiman), |
3227
|
|
|
|
|
|
|
'other' => q(dollares del Insulas Caiman), |
3228
|
|
|
|
|
|
|
}, |
3229
|
|
|
|
|
|
|
}, |
3230
|
|
|
|
|
|
|
'LRD' => { |
3231
|
|
|
|
|
|
|
display_name => { |
3232
|
|
|
|
|
|
|
'currency' => q(dollar liberian), |
3233
|
|
|
|
|
|
|
'one' => q(dollares liberian), |
3234
|
|
|
|
|
|
|
'other' => q(dollares liberian), |
3235
|
|
|
|
|
|
|
}, |
3236
|
|
|
|
|
|
|
}, |
3237
|
|
|
|
|
|
|
'LYD' => { |
3238
|
|
|
|
|
|
|
display_name => { |
3239
|
|
|
|
|
|
|
'currency' => q(dinar libyc), |
3240
|
|
|
|
|
|
|
'one' => q(dinares libyc), |
3241
|
|
|
|
|
|
|
'other' => q(dinares libyc), |
3242
|
|
|
|
|
|
|
}, |
3243
|
|
|
|
|
|
|
}, |
3244
|
|
|
|
|
|
|
'MAD' => { |
3245
|
|
|
|
|
|
|
display_name => { |
3246
|
|
|
|
|
|
|
'currency' => q(dirham marocchin), |
3247
|
|
|
|
|
|
|
'one' => q(dirhams marocchin), |
3248
|
|
|
|
|
|
|
'other' => q(dirhams marocchin), |
3249
|
|
|
|
|
|
|
}, |
3250
|
|
|
|
|
|
|
}, |
3251
|
|
|
|
|
|
|
'MDL' => { |
3252
|
|
|
|
|
|
|
display_name => { |
3253
|
|
|
|
|
|
|
'currency' => q(leu moldave), |
3254
|
|
|
|
|
|
|
'one' => q(lei moldave), |
3255
|
|
|
|
|
|
|
'other' => q(lei moldave), |
3256
|
|
|
|
|
|
|
}, |
3257
|
|
|
|
|
|
|
}, |
3258
|
|
|
|
|
|
|
'MGA' => { |
3259
|
|
|
|
|
|
|
display_name => { |
3260
|
|
|
|
|
|
|
'currency' => q(ariary malgache), |
3261
|
|
|
|
|
|
|
'one' => q(ariary malgache), |
3262
|
|
|
|
|
|
|
'other' => q(ariary malgache), |
3263
|
|
|
|
|
|
|
}, |
3264
|
|
|
|
|
|
|
}, |
3265
|
|
|
|
|
|
|
'MKD' => { |
3266
|
|
|
|
|
|
|
display_name => { |
3267
|
|
|
|
|
|
|
'currency' => q(denar macedonie), |
3268
|
|
|
|
|
|
|
'one' => q(denari macedonie), |
3269
|
|
|
|
|
|
|
'other' => q(denari macedonie), |
3270
|
|
|
|
|
|
|
}, |
3271
|
|
|
|
|
|
|
}, |
3272
|
|
|
|
|
|
|
'MRO' => { |
3273
|
|
|
|
|
|
|
display_name => { |
3274
|
|
|
|
|
|
|
'currency' => q(ouguiya mauritan \(1973â2017\)), |
3275
|
|
|
|
|
|
|
'one' => q(ouguiyas mauritan \(1973â2017\)), |
3276
|
|
|
|
|
|
|
'other' => q(ouguiyas mauritan \(1973â2017\)), |
3277
|
|
|
|
|
|
|
}, |
3278
|
|
|
|
|
|
|
}, |
3279
|
|
|
|
|
|
|
'MRU' => { |
3280
|
|
|
|
|
|
|
display_name => { |
3281
|
|
|
|
|
|
|
'currency' => q(ouguiya mauritan), |
3282
|
|
|
|
|
|
|
'one' => q(ouguiyas mauritan), |
3283
|
|
|
|
|
|
|
'other' => q(ouguiyas mauritan), |
3284
|
|
|
|
|
|
|
}, |
3285
|
|
|
|
|
|
|
}, |
3286
|
|
|
|
|
|
|
'MUR' => { |
3287
|
|
|
|
|
|
|
display_name => { |
3288
|
|
|
|
|
|
|
'currency' => q(rupia mauritian), |
3289
|
|
|
|
|
|
|
'one' => q(rupias mauritian), |
3290
|
|
|
|
|
|
|
'other' => q(rupias mauritian), |
3291
|
|
|
|
|
|
|
}, |
3292
|
|
|
|
|
|
|
}, |
3293
|
|
|
|
|
|
|
'MWK' => { |
3294
|
|
|
|
|
|
|
display_name => { |
3295
|
|
|
|
|
|
|
'currency' => q(kwacha malawian), |
3296
|
|
|
|
|
|
|
'one' => q(kwacha malawian), |
3297
|
|
|
|
|
|
|
'other' => q(kwacha malawian), |
3298
|
|
|
|
|
|
|
}, |
3299
|
|
|
|
|
|
|
}, |
3300
|
|
|
|
|
|
|
'MXN' => { |
3301
|
|
|
|
|
|
|
display_name => { |
3302
|
|
|
|
|
|
|
'currency' => q(peso mexican), |
3303
|
|
|
|
|
|
|
'one' => q(pesos mexican), |
3304
|
|
|
|
|
|
|
'other' => q(pesos mexican), |
3305
|
|
|
|
|
|
|
}, |
3306
|
|
|
|
|
|
|
}, |
3307
|
|
|
|
|
|
|
'MZN' => { |
3308
|
|
|
|
|
|
|
display_name => { |
3309
|
|
|
|
|
|
|
'currency' => q(metical mozambican), |
3310
|
|
|
|
|
|
|
'one' => q(meticales mozambican), |
3311
|
|
|
|
|
|
|
'other' => q(meticales mozambican), |
3312
|
|
|
|
|
|
|
}, |
3313
|
|
|
|
|
|
|
}, |
3314
|
|
|
|
|
|
|
'NAD' => { |
3315
|
|
|
|
|
|
|
display_name => { |
3316
|
|
|
|
|
|
|
'currency' => q(dollar namibian), |
3317
|
|
|
|
|
|
|
'one' => q(dollares namibian), |
3318
|
|
|
|
|
|
|
'other' => q(dollares namibian), |
3319
|
|
|
|
|
|
|
}, |
3320
|
|
|
|
|
|
|
}, |
3321
|
|
|
|
|
|
|
'NGN' => { |
3322
|
|
|
|
|
|
|
display_name => { |
3323
|
|
|
|
|
|
|
'currency' => q(naira nigerian), |
3324
|
|
|
|
|
|
|
'one' => q(nairas nigerian), |
3325
|
|
|
|
|
|
|
'other' => q(nairas nigerian), |
3326
|
|
|
|
|
|
|
}, |
3327
|
|
|
|
|
|
|
}, |
3328
|
|
|
|
|
|
|
'NIO' => { |
3329
|
|
|
|
|
|
|
display_name => { |
3330
|
|
|
|
|
|
|
'currency' => q(cordoba nicaraguan), |
3331
|
|
|
|
|
|
|
'one' => q(cordobas nicaraguan), |
3332
|
|
|
|
|
|
|
'other' => q(cordobas nicaraguan), |
3333
|
|
|
|
|
|
|
}, |
3334
|
|
|
|
|
|
|
}, |
3335
|
|
|
|
|
|
|
'NLG' => { |
3336
|
|
|
|
|
|
|
symbol => 'Æ', |
3337
|
|
|
|
|
|
|
display_name => { |
3338
|
|
|
|
|
|
|
'currency' => q(Florino nederlandese), |
3339
|
|
|
|
|
|
|
'one' => q(florinos nederlandese), |
3340
|
|
|
|
|
|
|
'other' => q(florinos nederlandese), |
3341
|
|
|
|
|
|
|
}, |
3342
|
|
|
|
|
|
|
}, |
3343
|
|
|
|
|
|
|
'NOK' => { |
3344
|
|
|
|
|
|
|
display_name => { |
3345
|
|
|
|
|
|
|
'currency' => q(corona norvegian), |
3346
|
|
|
|
|
|
|
'one' => q(coronas norvegian), |
3347
|
|
|
|
|
|
|
'other' => q(coronas norvegian), |
3348
|
|
|
|
|
|
|
}, |
3349
|
|
|
|
|
|
|
}, |
3350
|
|
|
|
|
|
|
'NZD' => { |
3351
|
|
|
|
|
|
|
display_name => { |
3352
|
|
|
|
|
|
|
'currency' => q(dollar neozelandese), |
3353
|
|
|
|
|
|
|
'one' => q(dollares neozelandese), |
3354
|
|
|
|
|
|
|
'other' => q(dollares neozelandese), |
3355
|
|
|
|
|
|
|
}, |
3356
|
|
|
|
|
|
|
}, |
3357
|
|
|
|
|
|
|
'PAB' => { |
3358
|
|
|
|
|
|
|
display_name => { |
3359
|
|
|
|
|
|
|
'currency' => q(balboa panamen), |
3360
|
|
|
|
|
|
|
'one' => q(balboas panamen), |
3361
|
|
|
|
|
|
|
'other' => q(balboas panamen), |
3362
|
|
|
|
|
|
|
}, |
3363
|
|
|
|
|
|
|
}, |
3364
|
|
|
|
|
|
|
'PEN' => { |
3365
|
|
|
|
|
|
|
display_name => { |
3366
|
|
|
|
|
|
|
'currency' => q(sol peruvian), |
3367
|
|
|
|
|
|
|
'one' => q(soles peruvian), |
3368
|
|
|
|
|
|
|
'other' => q(soles peruvian), |
3369
|
|
|
|
|
|
|
}, |
3370
|
|
|
|
|
|
|
}, |
3371
|
|
|
|
|
|
|
'PGK' => { |
3372
|
|
|
|
|
|
|
display_name => { |
3373
|
|
|
|
|
|
|
'currency' => q(kina papuan), |
3374
|
|
|
|
|
|
|
'one' => q(kinas papuan), |
3375
|
|
|
|
|
|
|
'other' => q(kinas papuan), |
3376
|
|
|
|
|
|
|
}, |
3377
|
|
|
|
|
|
|
}, |
3378
|
|
|
|
|
|
|
'PLN' => { |
3379
|
|
|
|
|
|
|
display_name => { |
3380
|
|
|
|
|
|
|
'currency' => q(zloty polonese), |
3381
|
|
|
|
|
|
|
'one' => q(zlotys polonese), |
3382
|
|
|
|
|
|
|
'other' => q(zlotys polonese), |
3383
|
|
|
|
|
|
|
}, |
3384
|
|
|
|
|
|
|
}, |
3385
|
|
|
|
|
|
|
'PYG' => { |
3386
|
|
|
|
|
|
|
display_name => { |
3387
|
|
|
|
|
|
|
'currency' => q(guarani paraguayan), |
3388
|
|
|
|
|
|
|
'one' => q(guaranis paraguayan), |
3389
|
|
|
|
|
|
|
'other' => q(guaranis paraguayan), |
3390
|
|
|
|
|
|
|
}, |
3391
|
|
|
|
|
|
|
}, |
3392
|
|
|
|
|
|
|
'RON' => { |
3393
|
|
|
|
|
|
|
display_name => { |
3394
|
|
|
|
|
|
|
'currency' => q(leu romanian), |
3395
|
|
|
|
|
|
|
'one' => q(lei romanian), |
3396
|
|
|
|
|
|
|
'other' => q(lei romanian), |
3397
|
|
|
|
|
|
|
}, |
3398
|
|
|
|
|
|
|
}, |
3399
|
|
|
|
|
|
|
'RSD' => { |
3400
|
|
|
|
|
|
|
display_name => { |
3401
|
|
|
|
|
|
|
'currency' => q(dinar serbe), |
3402
|
|
|
|
|
|
|
'one' => q(dinares serbe), |
3403
|
|
|
|
|
|
|
'other' => q(dinares serbe), |
3404
|
|
|
|
|
|
|
}, |
3405
|
|
|
|
|
|
|
}, |
3406
|
|
|
|
|
|
|
'RUB' => { |
3407
|
|
|
|
|
|
|
symbol => 'â½', |
3408
|
|
|
|
|
|
|
display_name => { |
3409
|
|
|
|
|
|
|
'currency' => q(rublo russe), |
3410
|
|
|
|
|
|
|
'one' => q(rublos russe), |
3411
|
|
|
|
|
|
|
'other' => q(rublos russe), |
3412
|
|
|
|
|
|
|
}, |
3413
|
|
|
|
|
|
|
}, |
3414
|
|
|
|
|
|
|
'RWF' => { |
3415
|
|
|
|
|
|
|
display_name => { |
3416
|
|
|
|
|
|
|
'currency' => q(franco ruandese), |
3417
|
|
|
|
|
|
|
'one' => q(francos ruandese), |
3418
|
|
|
|
|
|
|
'other' => q(francos ruandese), |
3419
|
|
|
|
|
|
|
}, |
3420
|
|
|
|
|
|
|
}, |
3421
|
|
|
|
|
|
|
'SBD' => { |
3422
|
|
|
|
|
|
|
display_name => { |
3423
|
|
|
|
|
|
|
'currency' => q(dollar del insulas Salomon), |
3424
|
|
|
|
|
|
|
'one' => q(dollares del insulas Salomon), |
3425
|
|
|
|
|
|
|
'other' => q(dollares del insulas Salomon), |
3426
|
|
|
|
|
|
|
}, |
3427
|
|
|
|
|
|
|
}, |
3428
|
|
|
|
|
|
|
'SCR' => { |
3429
|
|
|
|
|
|
|
display_name => { |
3430
|
|
|
|
|
|
|
'currency' => q(rupia seychellese), |
3431
|
|
|
|
|
|
|
'one' => q(rupias seychellese), |
3432
|
|
|
|
|
|
|
'other' => q(rupias seychellese), |
3433
|
|
|
|
|
|
|
}, |
3434
|
|
|
|
|
|
|
}, |
3435
|
|
|
|
|
|
|
'SDG' => { |
3436
|
|
|
|
|
|
|
display_name => { |
3437
|
|
|
|
|
|
|
'currency' => q(libra sudanese), |
3438
|
|
|
|
|
|
|
'one' => q(libras sudanese), |
3439
|
|
|
|
|
|
|
'other' => q(libras sudanese), |
3440
|
|
|
|
|
|
|
}, |
3441
|
|
|
|
|
|
|
}, |
3442
|
|
|
|
|
|
|
'SEK' => { |
3443
|
|
|
|
|
|
|
display_name => { |
3444
|
|
|
|
|
|
|
'currency' => q(corona svedese), |
3445
|
|
|
|
|
|
|
'one' => q(coronas svedese), |
3446
|
|
|
|
|
|
|
'other' => q(coronas svedese), |
3447
|
|
|
|
|
|
|
}, |
3448
|
|
|
|
|
|
|
}, |
3449
|
|
|
|
|
|
|
'SHP' => { |
3450
|
|
|
|
|
|
|
display_name => { |
3451
|
|
|
|
|
|
|
'currency' => q(libra de St. Helena), |
3452
|
|
|
|
|
|
|
'one' => q(libras de St. Helena), |
3453
|
|
|
|
|
|
|
'other' => q(libras de St. Helena), |
3454
|
|
|
|
|
|
|
}, |
3455
|
|
|
|
|
|
|
}, |
3456
|
|
|
|
|
|
|
'SLL' => { |
3457
|
|
|
|
|
|
|
display_name => { |
3458
|
|
|
|
|
|
|
'currency' => q(leone sierraleonese), |
3459
|
|
|
|
|
|
|
'one' => q(leones sierraleonese), |
3460
|
|
|
|
|
|
|
'other' => q(leones sierraleonese), |
3461
|
|
|
|
|
|
|
}, |
3462
|
|
|
|
|
|
|
}, |
3463
|
|
|
|
|
|
|
'SOS' => { |
3464
|
|
|
|
|
|
|
display_name => { |
3465
|
|
|
|
|
|
|
'currency' => q(shilling somali), |
3466
|
|
|
|
|
|
|
'one' => q(shillings somali), |
3467
|
|
|
|
|
|
|
'other' => q(shillings somali), |
3468
|
|
|
|
|
|
|
}, |
3469
|
|
|
|
|
|
|
}, |
3470
|
|
|
|
|
|
|
'SRD' => { |
3471
|
|
|
|
|
|
|
display_name => { |
3472
|
|
|
|
|
|
|
'currency' => q(dollar surinamese), |
3473
|
|
|
|
|
|
|
'one' => q(dollares surinamese), |
3474
|
|
|
|
|
|
|
'other' => q(dollares surinamese), |
3475
|
|
|
|
|
|
|
}, |
3476
|
|
|
|
|
|
|
}, |
3477
|
|
|
|
|
|
|
'SSP' => { |
3478
|
|
|
|
|
|
|
display_name => { |
3479
|
|
|
|
|
|
|
'currency' => q(libra sud-sudanese), |
3480
|
|
|
|
|
|
|
'one' => q(libras sud-sudanese), |
3481
|
|
|
|
|
|
|
'other' => q(libras sud-sudanese), |
3482
|
|
|
|
|
|
|
}, |
3483
|
|
|
|
|
|
|
}, |
3484
|
|
|
|
|
|
|
'STN' => { |
3485
|
|
|
|
|
|
|
display_name => { |
3486
|
|
|
|
|
|
|
'currency' => q(dobra de São Tomé e PrÃncipe), |
3487
|
|
|
|
|
|
|
'one' => q(dobras de São Tomé e PrÃncipe), |
3488
|
|
|
|
|
|
|
'other' => q(dobras de São Tomé e PrÃncipe), |
3489
|
|
|
|
|
|
|
}, |
3490
|
|
|
|
|
|
|
}, |
3491
|
|
|
|
|
|
|
'SZL' => { |
3492
|
|
|
|
|
|
|
display_name => { |
3493
|
|
|
|
|
|
|
'currency' => q(lilangeni swazilandese), |
3494
|
|
|
|
|
|
|
'one' => q(emalangeni swazilandese), |
3495
|
|
|
|
|
|
|
'other' => q(emalangeni swazilandese), |
3496
|
|
|
|
|
|
|
}, |
3497
|
|
|
|
|
|
|
}, |
3498
|
|
|
|
|
|
|
'TND' => { |
3499
|
|
|
|
|
|
|
display_name => { |
3500
|
|
|
|
|
|
|
'currency' => q(dinar tunisian), |
3501
|
|
|
|
|
|
|
'one' => q(dinares tunisian), |
3502
|
|
|
|
|
|
|
'other' => q(dinares tunisian), |
3503
|
|
|
|
|
|
|
}, |
3504
|
|
|
|
|
|
|
}, |
3505
|
|
|
|
|
|
|
'TOP' => { |
3506
|
|
|
|
|
|
|
display_name => { |
3507
|
|
|
|
|
|
|
'currency' => q(paʻanga tongan), |
3508
|
|
|
|
|
|
|
'one' => q(paʻangas tongan), |
3509
|
|
|
|
|
|
|
'other' => q(paʻangas tongan), |
3510
|
|
|
|
|
|
|
}, |
3511
|
|
|
|
|
|
|
}, |
3512
|
|
|
|
|
|
|
'TTD' => { |
3513
|
|
|
|
|
|
|
display_name => { |
3514
|
|
|
|
|
|
|
'currency' => q(dollar de Trinidad e Tobago), |
3515
|
|
|
|
|
|
|
'one' => q(dollares de Trinidad e Tobago), |
3516
|
|
|
|
|
|
|
'other' => q(dollares de Trinidad e Tobago), |
3517
|
|
|
|
|
|
|
}, |
3518
|
|
|
|
|
|
|
}, |
3519
|
|
|
|
|
|
|
'TZS' => { |
3520
|
|
|
|
|
|
|
display_name => { |
3521
|
|
|
|
|
|
|
'currency' => q(shilling tanzanian), |
3522
|
|
|
|
|
|
|
'one' => q(shillings tanzanian), |
3523
|
|
|
|
|
|
|
'other' => q(shillings tanzanian), |
3524
|
|
|
|
|
|
|
}, |
3525
|
|
|
|
|
|
|
}, |
3526
|
|
|
|
|
|
|
'UAH' => { |
3527
|
|
|
|
|
|
|
display_name => { |
3528
|
|
|
|
|
|
|
'currency' => q(hryvnia ukrainian), |
3529
|
|
|
|
|
|
|
'one' => q(hryvni ukrainian), |
3530
|
|
|
|
|
|
|
'other' => q(hryvni ukrainian), |
3531
|
|
|
|
|
|
|
}, |
3532
|
|
|
|
|
|
|
}, |
3533
|
|
|
|
|
|
|
'UGX' => { |
3534
|
|
|
|
|
|
|
display_name => { |
3535
|
|
|
|
|
|
|
'currency' => q(shilling ugandese), |
3536
|
|
|
|
|
|
|
'one' => q(shillings ugandese), |
3537
|
|
|
|
|
|
|
'other' => q(shillings ugandese), |
3538
|
|
|
|
|
|
|
}, |
3539
|
|
|
|
|
|
|
}, |
3540
|
|
|
|
|
|
|
'USD' => { |
3541
|
|
|
|
|
|
|
display_name => { |
3542
|
|
|
|
|
|
|
'currency' => q(dollar statounitese), |
3543
|
|
|
|
|
|
|
'one' => q(dollares statounitese), |
3544
|
|
|
|
|
|
|
'other' => q(dollares statounitese), |
3545
|
|
|
|
|
|
|
}, |
3546
|
|
|
|
|
|
|
}, |
3547
|
|
|
|
|
|
|
'UYU' => { |
3548
|
|
|
|
|
|
|
display_name => { |
3549
|
|
|
|
|
|
|
'currency' => q(peso uruguayan), |
3550
|
|
|
|
|
|
|
'one' => q(pesos uruguayan), |
3551
|
|
|
|
|
|
|
'other' => q(pesos uruguayan), |
3552
|
|
|
|
|
|
|
}, |
3553
|
|
|
|
|
|
|
}, |
3554
|
|
|
|
|
|
|
'VEF' => { |
3555
|
|
|
|
|
|
|
display_name => { |
3556
|
|
|
|
|
|
|
'currency' => q(bolivar venezuelan \(2008â2018\)), |
3557
|
|
|
|
|
|
|
'one' => q(bolivares venezuelan \(2008â2018\)), |
3558
|
|
|
|
|
|
|
'other' => q(bolivares venezuelan \(2008â2018\)), |
3559
|
|
|
|
|
|
|
}, |
3560
|
|
|
|
|
|
|
}, |
3561
|
|
|
|
|
|
|
'VES' => { |
3562
|
|
|
|
|
|
|
display_name => { |
3563
|
|
|
|
|
|
|
'currency' => q(bolivar venezuelan), |
3564
|
|
|
|
|
|
|
'one' => q(bolivares venezuelan), |
3565
|
|
|
|
|
|
|
'other' => q(bolivares venezuelan), |
3566
|
|
|
|
|
|
|
}, |
3567
|
|
|
|
|
|
|
}, |
3568
|
|
|
|
|
|
|
'VUV' => { |
3569
|
|
|
|
|
|
|
display_name => { |
3570
|
|
|
|
|
|
|
'currency' => q(vatu vanuatuan), |
3571
|
|
|
|
|
|
|
'one' => q(vatus vanuatuan), |
3572
|
|
|
|
|
|
|
'other' => q(vatus vanuatuan), |
3573
|
|
|
|
|
|
|
}, |
3574
|
|
|
|
|
|
|
}, |
3575
|
|
|
|
|
|
|
'WST' => { |
3576
|
|
|
|
|
|
|
display_name => { |
3577
|
|
|
|
|
|
|
'currency' => q(tala samoan), |
3578
|
|
|
|
|
|
|
'one' => q(talas samoan), |
3579
|
|
|
|
|
|
|
'other' => q(talas samoan), |
3580
|
|
|
|
|
|
|
}, |
3581
|
|
|
|
|
|
|
}, |
3582
|
|
|
|
|
|
|
'XAF' => { |
3583
|
|
|
|
|
|
|
display_name => { |
3584
|
|
|
|
|
|
|
'currency' => q(franco CFA de Africa Central), |
3585
|
|
|
|
|
|
|
'one' => q(francos CFA de Africa Central), |
3586
|
|
|
|
|
|
|
'other' => q(francos CFA de Africa Central), |
3587
|
|
|
|
|
|
|
}, |
3588
|
|
|
|
|
|
|
}, |
3589
|
|
|
|
|
|
|
'XCD' => { |
3590
|
|
|
|
|
|
|
display_name => { |
3591
|
|
|
|
|
|
|
'currency' => q(dollar del Caribes Oriental), |
3592
|
|
|
|
|
|
|
'one' => q(dollares del Caribes Oriental), |
3593
|
|
|
|
|
|
|
'other' => q(dollares del Caribes Oriental), |
3594
|
|
|
|
|
|
|
}, |
3595
|
|
|
|
|
|
|
}, |
3596
|
|
|
|
|
|
|
'XOF' => { |
3597
|
|
|
|
|
|
|
display_name => { |
3598
|
|
|
|
|
|
|
'currency' => q(franco CFA de Africa Occidental), |
3599
|
|
|
|
|
|
|
'one' => q(francos CFA de Africa Occidental), |
3600
|
|
|
|
|
|
|
'other' => q(francos CFA de Africa Occidental), |
3601
|
|
|
|
|
|
|
}, |
3602
|
|
|
|
|
|
|
}, |
3603
|
|
|
|
|
|
|
'XPF' => { |
3604
|
|
|
|
|
|
|
display_name => { |
3605
|
|
|
|
|
|
|
'currency' => q(franco CFP), |
3606
|
|
|
|
|
|
|
'one' => q(francos CFP), |
3607
|
|
|
|
|
|
|
'other' => q(francos CFP), |
3608
|
|
|
|
|
|
|
}, |
3609
|
|
|
|
|
|
|
}, |
3610
|
|
|
|
|
|
|
'XXX' => { |
3611
|
|
|
|
|
|
|
display_name => { |
3612
|
|
|
|
|
|
|
'currency' => q(moneta incognite), |
3613
|
|
|
|
|
|
|
'one' => q(\(moneta incognite\)), |
3614
|
|
|
|
|
|
|
'other' => q(\(moneta incognite\)), |
3615
|
|
|
|
|
|
|
}, |
3616
|
|
|
|
|
|
|
}, |
3617
|
|
|
|
|
|
|
'ZAR' => { |
3618
|
|
|
|
|
|
|
display_name => { |
3619
|
|
|
|
|
|
|
'currency' => q(rand sudafrican), |
3620
|
|
|
|
|
|
|
'one' => q(rand sudafrican), |
3621
|
|
|
|
|
|
|
'other' => q(rand sudafrican), |
3622
|
|
|
|
|
|
|
}, |
3623
|
|
|
|
|
|
|
}, |
3624
|
|
|
|
|
|
|
'ZMW' => { |
3625
|
|
|
|
|
|
|
display_name => { |
3626
|
|
|
|
|
|
|
'currency' => q(kwacha zambian), |
3627
|
|
|
|
|
|
|
'one' => q(kwacha zambian), |
3628
|
|
|
|
|
|
|
'other' => q(kwacha zambian), |
3629
|
|
|
|
|
|
|
}, |
3630
|
|
|
|
|
|
|
}, |
3631
|
|
|
|
|
|
|
} }, |
3632
|
|
|
|
|
|
|
); |
3633
|
|
|
|
|
|
|
|
3634
|
|
|
|
|
|
|
|
3635
|
|
|
|
|
|
|
has 'calendar_months' => ( |
3636
|
|
|
|
|
|
|
is => 'ro', |
3637
|
|
|
|
|
|
|
isa => HashRef, |
3638
|
|
|
|
|
|
|
init_arg => undef, |
3639
|
|
|
|
|
|
|
default => sub { { |
3640
|
|
|
|
|
|
|
'gregorian' => { |
3641
|
|
|
|
|
|
|
'format' => { |
3642
|
|
|
|
|
|
|
abbreviated => { |
3643
|
|
|
|
|
|
|
nonleap => [ |
3644
|
|
|
|
|
|
|
'jan', |
3645
|
|
|
|
|
|
|
'feb', |
3646
|
|
|
|
|
|
|
'mar', |
3647
|
|
|
|
|
|
|
'apr', |
3648
|
|
|
|
|
|
|
'mai', |
3649
|
|
|
|
|
|
|
'jun', |
3650
|
|
|
|
|
|
|
'jul', |
3651
|
|
|
|
|
|
|
'aug', |
3652
|
|
|
|
|
|
|
'sep', |
3653
|
|
|
|
|
|
|
'oct', |
3654
|
|
|
|
|
|
|
'nov', |
3655
|
|
|
|
|
|
|
'dec' |
3656
|
|
|
|
|
|
|
], |
3657
|
|
|
|
|
|
|
leap => [ |
3658
|
|
|
|
|
|
|
|
3659
|
|
|
|
|
|
|
], |
3660
|
|
|
|
|
|
|
}, |
3661
|
|
|
|
|
|
|
narrow => { |
3662
|
|
|
|
|
|
|
nonleap => [ |
3663
|
|
|
|
|
|
|
'j', |
3664
|
|
|
|
|
|
|
'f', |
3665
|
|
|
|
|
|
|
'm', |
3666
|
|
|
|
|
|
|
'a', |
3667
|
|
|
|
|
|
|
'm', |
3668
|
|
|
|
|
|
|
'j', |
3669
|
|
|
|
|
|
|
'j', |
3670
|
|
|
|
|
|
|
'a', |
3671
|
|
|
|
|
|
|
's', |
3672
|
|
|
|
|
|
|
'o', |
3673
|
|
|
|
|
|
|
'n', |
3674
|
|
|
|
|
|
|
'd' |
3675
|
|
|
|
|
|
|
], |
3676
|
|
|
|
|
|
|
leap => [ |
3677
|
|
|
|
|
|
|
|
3678
|
|
|
|
|
|
|
], |
3679
|
|
|
|
|
|
|
}, |
3680
|
|
|
|
|
|
|
wide => { |
3681
|
|
|
|
|
|
|
nonleap => [ |
3682
|
|
|
|
|
|
|
'januario', |
3683
|
|
|
|
|
|
|
'februario', |
3684
|
|
|
|
|
|
|
'martio', |
3685
|
|
|
|
|
|
|
'april', |
3686
|
|
|
|
|
|
|
'maio', |
3687
|
|
|
|
|
|
|
'junio', |
3688
|
|
|
|
|
|
|
'julio', |
3689
|
|
|
|
|
|
|
'augusto', |
3690
|
|
|
|
|
|
|
'septembre', |
3691
|
|
|
|
|
|
|
'octobre', |
3692
|
|
|
|
|
|
|
'novembre', |
3693
|
|
|
|
|
|
|
'decembre' |
3694
|
|
|
|
|
|
|
], |
3695
|
|
|
|
|
|
|
leap => [ |
3696
|
|
|
|
|
|
|
|
3697
|
|
|
|
|
|
|
], |
3698
|
|
|
|
|
|
|
}, |
3699
|
|
|
|
|
|
|
}, |
3700
|
|
|
|
|
|
|
'stand-alone' => { |
3701
|
|
|
|
|
|
|
abbreviated => { |
3702
|
|
|
|
|
|
|
nonleap => [ |
3703
|
|
|
|
|
|
|
'jan', |
3704
|
|
|
|
|
|
|
'feb', |
3705
|
|
|
|
|
|
|
'mar', |
3706
|
|
|
|
|
|
|
'apr', |
3707
|
|
|
|
|
|
|
'mai', |
3708
|
|
|
|
|
|
|
'jun', |
3709
|
|
|
|
|
|
|
'jul', |
3710
|
|
|
|
|
|
|
'aug', |
3711
|
|
|
|
|
|
|
'sep', |
3712
|
|
|
|
|
|
|
'oct', |
3713
|
|
|
|
|
|
|
'nov', |
3714
|
|
|
|
|
|
|
'dec' |
3715
|
|
|
|
|
|
|
], |
3716
|
|
|
|
|
|
|
leap => [ |
3717
|
|
|
|
|
|
|
|
3718
|
|
|
|
|
|
|
], |
3719
|
|
|
|
|
|
|
}, |
3720
|
|
|
|
|
|
|
narrow => { |
3721
|
|
|
|
|
|
|
nonleap => [ |
3722
|
|
|
|
|
|
|
'1', |
3723
|
|
|
|
|
|
|
'2', |
3724
|
|
|
|
|
|
|
'3', |
3725
|
|
|
|
|
|
|
'4', |
3726
|
|
|
|
|
|
|
'5', |
3727
|
|
|
|
|
|
|
'6', |
3728
|
|
|
|
|
|
|
'7', |
3729
|
|
|
|
|
|
|
'8', |
3730
|
|
|
|
|
|
|
'9', |
3731
|
|
|
|
|
|
|
'10', |
3732
|
|
|
|
|
|
|
'11', |
3733
|
|
|
|
|
|
|
'12' |
3734
|
|
|
|
|
|
|
], |
3735
|
|
|
|
|
|
|
leap => [ |
3736
|
|
|
|
|
|
|
|
3737
|
|
|
|
|
|
|
], |
3738
|
|
|
|
|
|
|
}, |
3739
|
|
|
|
|
|
|
wide => { |
3740
|
|
|
|
|
|
|
nonleap => [ |
3741
|
|
|
|
|
|
|
'januario', |
3742
|
|
|
|
|
|
|
'februario', |
3743
|
|
|
|
|
|
|
'martio', |
3744
|
|
|
|
|
|
|
'april', |
3745
|
|
|
|
|
|
|
'maio', |
3746
|
|
|
|
|
|
|
'junio', |
3747
|
|
|
|
|
|
|
'julio', |
3748
|
|
|
|
|
|
|
'augusto', |
3749
|
|
|
|
|
|
|
'septembre', |
3750
|
|
|
|
|
|
|
'octobre', |
3751
|
|
|
|
|
|
|
'novembre', |
3752
|
|
|
|
|
|
|
'decembre' |
3753
|
|
|
|
|
|
|
], |
3754
|
|
|
|
|
|
|
leap => [ |
3755
|
|
|
|
|
|
|
|
3756
|
|
|
|
|
|
|
], |
3757
|
|
|
|
|
|
|
}, |
3758
|
|
|
|
|
|
|
}, |
3759
|
|
|
|
|
|
|
}, |
3760
|
|
|
|
|
|
|
} }, |
3761
|
|
|
|
|
|
|
); |
3762
|
|
|
|
|
|
|
|
3763
|
|
|
|
|
|
|
has 'calendar_days' => ( |
3764
|
|
|
|
|
|
|
is => 'ro', |
3765
|
|
|
|
|
|
|
isa => HashRef, |
3766
|
|
|
|
|
|
|
init_arg => undef, |
3767
|
|
|
|
|
|
|
default => sub { { |
3768
|
|
|
|
|
|
|
'gregorian' => { |
3769
|
|
|
|
|
|
|
'format' => { |
3770
|
|
|
|
|
|
|
abbreviated => { |
3771
|
|
|
|
|
|
|
mon => 'lun', |
3772
|
|
|
|
|
|
|
tue => 'mar', |
3773
|
|
|
|
|
|
|
wed => 'mer', |
3774
|
|
|
|
|
|
|
thu => 'jov', |
3775
|
|
|
|
|
|
|
fri => 'ven', |
3776
|
|
|
|
|
|
|
sat => 'sab', |
3777
|
|
|
|
|
|
|
sun => 'dom' |
3778
|
|
|
|
|
|
|
}, |
3779
|
|
|
|
|
|
|
narrow => { |
3780
|
|
|
|
|
|
|
mon => 'l', |
3781
|
|
|
|
|
|
|
tue => 'm', |
3782
|
|
|
|
|
|
|
wed => 'm', |
3783
|
|
|
|
|
|
|
thu => 'j', |
3784
|
|
|
|
|
|
|
fri => 'v', |
3785
|
|
|
|
|
|
|
sat => 's', |
3786
|
|
|
|
|
|
|
sun => 'd' |
3787
|
|
|
|
|
|
|
}, |
3788
|
|
|
|
|
|
|
short => { |
3789
|
|
|
|
|
|
|
mon => 'lu', |
3790
|
|
|
|
|
|
|
tue => 'ma', |
3791
|
|
|
|
|
|
|
wed => 'me', |
3792
|
|
|
|
|
|
|
thu => 'jo', |
3793
|
|
|
|
|
|
|
fri => 've', |
3794
|
|
|
|
|
|
|
sat => 'sa', |
3795
|
|
|
|
|
|
|
sun => 'do' |
3796
|
|
|
|
|
|
|
}, |
3797
|
|
|
|
|
|
|
wide => { |
3798
|
|
|
|
|
|
|
mon => 'lunedi', |
3799
|
|
|
|
|
|
|
tue => 'martedi', |
3800
|
|
|
|
|
|
|
wed => 'mercuridi', |
3801
|
|
|
|
|
|
|
thu => 'jovedi', |
3802
|
|
|
|
|
|
|
fri => 'venerdi', |
3803
|
|
|
|
|
|
|
sat => 'sabbato', |
3804
|
|
|
|
|
|
|
sun => 'dominica' |
3805
|
|
|
|
|
|
|
}, |
3806
|
|
|
|
|
|
|
}, |
3807
|
|
|
|
|
|
|
'stand-alone' => { |
3808
|
|
|
|
|
|
|
abbreviated => { |
3809
|
|
|
|
|
|
|
mon => 'lun', |
3810
|
|
|
|
|
|
|
tue => 'mar', |
3811
|
|
|
|
|
|
|
wed => 'mer', |
3812
|
|
|
|
|
|
|
thu => 'jov', |
3813
|
|
|
|
|
|
|
fri => 'ven', |
3814
|
|
|
|
|
|
|
sat => 'sab', |
3815
|
|
|
|
|
|
|
sun => 'dom' |
3816
|
|
|
|
|
|
|
}, |
3817
|
|
|
|
|
|
|
narrow => { |
3818
|
|
|
|
|
|
|
mon => 'l', |
3819
|
|
|
|
|
|
|
tue => 'm', |
3820
|
|
|
|
|
|
|
wed => 'm', |
3821
|
|
|
|
|
|
|
thu => 'j', |
3822
|
|
|
|
|
|
|
fri => 'v', |
3823
|
|
|
|
|
|
|
sat => 's', |
3824
|
|
|
|
|
|
|
sun => 'd' |
3825
|
|
|
|
|
|
|
}, |
3826
|
|
|
|
|
|
|
short => { |
3827
|
|
|
|
|
|
|
mon => 'lu', |
3828
|
|
|
|
|
|
|
tue => 'ma', |
3829
|
|
|
|
|
|
|
wed => 'me', |
3830
|
|
|
|
|
|
|
thu => 'jo', |
3831
|
|
|
|
|
|
|
fri => 've', |
3832
|
|
|
|
|
|
|
sat => 'sa', |
3833
|
|
|
|
|
|
|
sun => 'do' |
3834
|
|
|
|
|
|
|
}, |
3835
|
|
|
|
|
|
|
wide => { |
3836
|
|
|
|
|
|
|
mon => 'lunedi', |
3837
|
|
|
|
|
|
|
tue => 'martedi', |
3838
|
|
|
|
|
|
|
wed => 'mercuridi', |
3839
|
|
|
|
|
|
|
thu => 'jovedi', |
3840
|
|
|
|
|
|
|
fri => 'venerdi', |
3841
|
|
|
|
|
|
|
sat => 'sabbato', |
3842
|
|
|
|
|
|
|
sun => 'dominica' |
3843
|
|
|
|
|
|
|
}, |
3844
|
|
|
|
|
|
|
}, |
3845
|
|
|
|
|
|
|
}, |
3846
|
|
|
|
|
|
|
} }, |
3847
|
|
|
|
|
|
|
); |
3848
|
|
|
|
|
|
|
|
3849
|
|
|
|
|
|
|
has 'calendar_quarters' => ( |
3850
|
|
|
|
|
|
|
is => 'ro', |
3851
|
|
|
|
|
|
|
isa => HashRef, |
3852
|
|
|
|
|
|
|
init_arg => undef, |
3853
|
|
|
|
|
|
|
default => sub { { |
3854
|
|
|
|
|
|
|
'gregorian' => { |
3855
|
|
|
|
|
|
|
'format' => { |
3856
|
|
|
|
|
|
|
abbreviated => {0 => 'T1', |
3857
|
|
|
|
|
|
|
1 => 'T2', |
3858
|
|
|
|
|
|
|
2 => 'T3', |
3859
|
|
|
|
|
|
|
3 => 'T4' |
3860
|
|
|
|
|
|
|
}, |
3861
|
|
|
|
|
|
|
narrow => {0 => '1', |
3862
|
|
|
|
|
|
|
1 => '2', |
3863
|
|
|
|
|
|
|
2 => '3', |
3864
|
|
|
|
|
|
|
3 => '4' |
3865
|
|
|
|
|
|
|
}, |
3866
|
|
|
|
|
|
|
wide => {0 => '1me trimestre', |
3867
|
|
|
|
|
|
|
1 => '2nde trimestre', |
3868
|
|
|
|
|
|
|
2 => '3tie trimestre', |
3869
|
|
|
|
|
|
|
3 => '4te trimestre' |
3870
|
|
|
|
|
|
|
}, |
3871
|
|
|
|
|
|
|
}, |
3872
|
|
|
|
|
|
|
'stand-alone' => { |
3873
|
|
|
|
|
|
|
abbreviated => {0 => 'T1', |
3874
|
|
|
|
|
|
|
1 => 'T2', |
3875
|
|
|
|
|
|
|
2 => 'T3', |
3876
|
|
|
|
|
|
|
3 => 'T4' |
3877
|
|
|
|
|
|
|
}, |
3878
|
|
|
|
|
|
|
narrow => {0 => '1', |
3879
|
|
|
|
|
|
|
1 => '2', |
3880
|
|
|
|
|
|
|
2 => '3', |
3881
|
|
|
|
|
|
|
3 => '4' |
3882
|
|
|
|
|
|
|
}, |
3883
|
|
|
|
|
|
|
wide => {0 => '1me trimestre', |
3884
|
|
|
|
|
|
|
1 => '2nde trimestre', |
3885
|
|
|
|
|
|
|
2 => '3tie trimestre', |
3886
|
|
|
|
|
|
|
3 => '4te trimestre' |
3887
|
|
|
|
|
|
|
}, |
3888
|
|
|
|
|
|
|
}, |
3889
|
|
|
|
|
|
|
}, |
3890
|
|
|
|
|
|
|
} }, |
3891
|
|
|
|
|
|
|
); |
3892
|
|
|
|
|
|
|
|
3893
|
|
|
|
|
|
|
has 'day_periods' => ( |
3894
|
|
|
|
|
|
|
is => 'ro', |
3895
|
|
|
|
|
|
|
isa => HashRef, |
3896
|
|
|
|
|
|
|
init_arg => undef, |
3897
|
|
|
|
|
|
|
default => sub { { |
3898
|
|
|
|
|
|
|
'gregorian' => { |
3899
|
|
|
|
|
|
|
'format' => { |
3900
|
|
|
|
|
|
|
'abbreviated' => { |
3901
|
|
|
|
|
|
|
'pm' => q{PM}, |
3902
|
|
|
|
|
|
|
'am' => q{AM}, |
3903
|
|
|
|
|
|
|
}, |
3904
|
|
|
|
|
|
|
'wide' => { |
3905
|
|
|
|
|
|
|
'am' => q{AM}, |
3906
|
|
|
|
|
|
|
'pm' => q{PM}, |
3907
|
|
|
|
|
|
|
}, |
3908
|
|
|
|
|
|
|
'narrow' => { |
3909
|
|
|
|
|
|
|
'pm' => q{PM}, |
3910
|
|
|
|
|
|
|
'am' => q{AM}, |
3911
|
|
|
|
|
|
|
}, |
3912
|
|
|
|
|
|
|
}, |
3913
|
|
|
|
|
|
|
'stand-alone' => { |
3914
|
|
|
|
|
|
|
'abbreviated' => { |
3915
|
|
|
|
|
|
|
'pm' => q{PM}, |
3916
|
|
|
|
|
|
|
'am' => q{AM}, |
3917
|
|
|
|
|
|
|
}, |
3918
|
|
|
|
|
|
|
'narrow' => { |
3919
|
|
|
|
|
|
|
'am' => q{AM}, |
3920
|
|
|
|
|
|
|
'pm' => q{PM}, |
3921
|
|
|
|
|
|
|
}, |
3922
|
|
|
|
|
|
|
'wide' => { |
3923
|
|
|
|
|
|
|
'am' => q{AM}, |
3924
|
|
|
|
|
|
|
'pm' => q{PM}, |
3925
|
|
|
|
|
|
|
}, |
3926
|
|
|
|
|
|
|
}, |
3927
|
|
|
|
|
|
|
}, |
3928
|
|
|
|
|
|
|
} }, |
3929
|
|
|
|
|
|
|
); |
3930
|
|
|
|
|
|
|
|
3931
|
|
|
|
|
|
|
has 'eras' => ( |
3932
|
|
|
|
|
|
|
is => 'ro', |
3933
|
|
|
|
|
|
|
isa => HashRef, |
3934
|
|
|
|
|
|
|
init_arg => undef, |
3935
|
|
|
|
|
|
|
default => sub { { |
3936
|
|
|
|
|
|
|
'generic' => { |
3937
|
|
|
|
|
|
|
}, |
3938
|
|
|
|
|
|
|
'gregorian' => { |
3939
|
|
|
|
|
|
|
abbreviated => { |
3940
|
|
|
|
|
|
|
'0' => 'a.Chr.', |
3941
|
|
|
|
|
|
|
'1' => 'p.Chr.' |
3942
|
|
|
|
|
|
|
}, |
3943
|
|
|
|
|
|
|
wide => { |
3944
|
|
|
|
|
|
|
'0' => 'ante Christo', |
3945
|
|
|
|
|
|
|
'1' => 'post Christo' |
3946
|
|
|
|
|
|
|
}, |
3947
|
|
|
|
|
|
|
}, |
3948
|
|
|
|
|
|
|
} }, |
3949
|
|
|
|
|
|
|
); |
3950
|
|
|
|
|
|
|
|
3951
|
|
|
|
|
|
|
has 'date_formats' => ( |
3952
|
|
|
|
|
|
|
is => 'ro', |
3953
|
|
|
|
|
|
|
isa => HashRef, |
3954
|
|
|
|
|
|
|
init_arg => undef, |
3955
|
|
|
|
|
|
|
default => sub { { |
3956
|
|
|
|
|
|
|
'generic' => { |
3957
|
|
|
|
|
|
|
'full' => q{EEEE 'le' d 'de' MMMM y G}, |
3958
|
|
|
|
|
|
|
'long' => q{d 'de' MMMM y G}, |
3959
|
|
|
|
|
|
|
'medium' => q{d MMM y G}, |
3960
|
|
|
|
|
|
|
'short' => q{dd-MM-y GGGGG}, |
3961
|
|
|
|
|
|
|
}, |
3962
|
|
|
|
|
|
|
'gregorian' => { |
3963
|
|
|
|
|
|
|
'full' => q{EEEE 'le' d 'de' MMMM y}, |
3964
|
|
|
|
|
|
|
'long' => q{d 'de' MMMM y}, |
3965
|
|
|
|
|
|
|
'medium' => q{d MMM y}, |
3966
|
|
|
|
|
|
|
'short' => q{dd-MM-y}, |
3967
|
|
|
|
|
|
|
}, |
3968
|
|
|
|
|
|
|
} }, |
3969
|
|
|
|
|
|
|
); |
3970
|
|
|
|
|
|
|
|
3971
|
|
|
|
|
|
|
has 'time_formats' => ( |
3972
|
|
|
|
|
|
|
is => 'ro', |
3973
|
|
|
|
|
|
|
isa => HashRef, |
3974
|
|
|
|
|
|
|
init_arg => undef, |
3975
|
|
|
|
|
|
|
default => sub { { |
3976
|
|
|
|
|
|
|
'generic' => { |
3977
|
|
|
|
|
|
|
}, |
3978
|
|
|
|
|
|
|
'gregorian' => { |
3979
|
|
|
|
|
|
|
'full' => q{HH:mm:ss zzzz}, |
3980
|
|
|
|
|
|
|
'long' => q{HH:mm:ss z}, |
3981
|
|
|
|
|
|
|
'medium' => q{HH:mm:ss}, |
3982
|
|
|
|
|
|
|
'short' => q{HH:mm}, |
3983
|
|
|
|
|
|
|
}, |
3984
|
|
|
|
|
|
|
} }, |
3985
|
|
|
|
|
|
|
); |
3986
|
|
|
|
|
|
|
|
3987
|
|
|
|
|
|
|
has 'datetime_formats' => ( |
3988
|
|
|
|
|
|
|
is => 'ro', |
3989
|
|
|
|
|
|
|
isa => HashRef, |
3990
|
|
|
|
|
|
|
init_arg => undef, |
3991
|
|
|
|
|
|
|
default => sub { { |
3992
|
|
|
|
|
|
|
'generic' => { |
3993
|
|
|
|
|
|
|
'full' => q{{1} 'a' {0}}, |
3994
|
|
|
|
|
|
|
'long' => q{{1} 'a' {0}}, |
3995
|
|
|
|
|
|
|
'medium' => q{{1}, {0}}, |
3996
|
|
|
|
|
|
|
'short' => q{{1}, {0}}, |
3997
|
|
|
|
|
|
|
}, |
3998
|
|
|
|
|
|
|
'gregorian' => { |
3999
|
|
|
|
|
|
|
'full' => q{{1} 'a' {0}}, |
4000
|
|
|
|
|
|
|
'long' => q{{1} 'a' {0}}, |
4001
|
|
|
|
|
|
|
'medium' => q{{1} {0}}, |
4002
|
|
|
|
|
|
|
'short' => q{{1} {0}}, |
4003
|
|
|
|
|
|
|
}, |
4004
|
|
|
|
|
|
|
} }, |
4005
|
|
|
|
|
|
|
); |
4006
|
|
|
|
|
|
|
|
4007
|
|
|
|
|
|
|
has 'datetime_formats_available_formats' => ( |
4008
|
|
|
|
|
|
|
is => 'ro', |
4009
|
|
|
|
|
|
|
isa => HashRef, |
4010
|
|
|
|
|
|
|
init_arg => undef, |
4011
|
|
|
|
|
|
|
default => sub { { |
4012
|
|
|
|
|
|
|
'gregorian' => { |
4013
|
|
|
|
|
|
|
Bh => q{h B}, |
4014
|
|
|
|
|
|
|
Bhm => q{h:mm B}, |
4015
|
|
|
|
|
|
|
Bhms => q{h:mm:ss B}, |
4016
|
|
|
|
|
|
|
E => q{ccc}, |
4017
|
|
|
|
|
|
|
EBhm => q{E h:mm B}, |
4018
|
|
|
|
|
|
|
EBhms => q{E h:mm:ss B}, |
4019
|
|
|
|
|
|
|
EHm => q{E HH:mm}, |
4020
|
|
|
|
|
|
|
EHms => q{E HH:mm:ss}, |
4021
|
|
|
|
|
|
|
Ed => q{E d}, |
4022
|
|
|
|
|
|
|
Ehm => q{E h:mm a}, |
4023
|
|
|
|
|
|
|
Ehms => q{E h:mm:ss a}, |
4024
|
|
|
|
|
|
|
Gy => q{y G}, |
4025
|
|
|
|
|
|
|
GyMMM => q{MMM y G}, |
4026
|
|
|
|
|
|
|
GyMMMEd => q{E d MMM y G}, |
4027
|
|
|
|
|
|
|
GyMMMd => q{d MMM y G}, |
4028
|
|
|
|
|
|
|
H => q{HH}, |
4029
|
|
|
|
|
|
|
Hm => q{HH:mm}, |
4030
|
|
|
|
|
|
|
Hms => q{HH:mm:ss}, |
4031
|
|
|
|
|
|
|
Hmsv => q{HH:mm:ss v}, |
4032
|
|
|
|
|
|
|
Hmv => q{HH:mm v}, |
4033
|
|
|
|
|
|
|
M => q{L}, |
4034
|
|
|
|
|
|
|
MEd => q{E dd-MM}, |
4035
|
|
|
|
|
|
|
MMM => q{LLL}, |
4036
|
|
|
|
|
|
|
MMMEd => q{E d MMM}, |
4037
|
|
|
|
|
|
|
MMMMW => q{'septimana' W 'de' MMMM}, |
4038
|
|
|
|
|
|
|
MMMMd => q{d 'de' MMMM}, |
4039
|
|
|
|
|
|
|
MMMd => q{d MMM}, |
4040
|
|
|
|
|
|
|
Md => q{dd-MM}, |
4041
|
|
|
|
|
|
|
d => q{d}, |
4042
|
|
|
|
|
|
|
h => q{h a}, |
4043
|
|
|
|
|
|
|
hm => q{h:mm a}, |
4044
|
|
|
|
|
|
|
hms => q{h:mm:ss a}, |
4045
|
|
|
|
|
|
|
hmsv => q{h:mm:ss a v}, |
4046
|
|
|
|
|
|
|
hmv => q{h:mm a v}, |
4047
|
|
|
|
|
|
|
ms => q{mm:ss}, |
4048
|
|
|
|
|
|
|
y => q{y}, |
4049
|
|
|
|
|
|
|
yM => q{MM-y}, |
4050
|
|
|
|
|
|
|
yMEd => q{E dd-MM-y}, |
4051
|
|
|
|
|
|
|
yMMM => q{MMM y}, |
4052
|
|
|
|
|
|
|
yMMMEd => q{E d MMM y}, |
4053
|
|
|
|
|
|
|
yMMMM => q{MMMM y}, |
4054
|
|
|
|
|
|
|
yMMMd => q{d MMM y}, |
4055
|
|
|
|
|
|
|
yMd => q{dd-MM-y}, |
4056
|
|
|
|
|
|
|
yQQQ => q{QQQ y}, |
4057
|
|
|
|
|
|
|
yQQQQ => q{QQQQ 'de' y}, |
4058
|
|
|
|
|
|
|
yw => q{'septimana' w 'de' Y}, |
4059
|
|
|
|
|
|
|
}, |
4060
|
|
|
|
|
|
|
'generic' => { |
4061
|
|
|
|
|
|
|
Bh => q{h B}, |
4062
|
|
|
|
|
|
|
Bhm => q{h:mm B}, |
4063
|
|
|
|
|
|
|
Bhms => q{h:mm:ss B}, |
4064
|
|
|
|
|
|
|
E => q{ccc}, |
4065
|
|
|
|
|
|
|
EBhm => q{E h:mm B}, |
4066
|
|
|
|
|
|
|
EBhms => q{E h:mm:ss B}, |
4067
|
|
|
|
|
|
|
EHm => q{E HH:mm}, |
4068
|
|
|
|
|
|
|
EHms => q{E HH:mm:ss}, |
4069
|
|
|
|
|
|
|
Ed => q{E d}, |
4070
|
|
|
|
|
|
|
Ehm => q{E h:mm a}, |
4071
|
|
|
|
|
|
|
Ehms => q{E h:mm:ss a}, |
4072
|
|
|
|
|
|
|
Gy => q{y G}, |
4073
|
|
|
|
|
|
|
GyMMM => q{MMM y G}, |
4074
|
|
|
|
|
|
|
GyMMMEd => q{E d MMM y G}, |
4075
|
|
|
|
|
|
|
GyMMMd => q{d MMM y G}, |
4076
|
|
|
|
|
|
|
H => q{HH}, |
4077
|
|
|
|
|
|
|
Hm => q{HH:mm}, |
4078
|
|
|
|
|
|
|
Hms => q{HH:mm:ss}, |
4079
|
|
|
|
|
|
|
M => q{L}, |
4080
|
|
|
|
|
|
|
MEd => q{E dd-MM}, |
4081
|
|
|
|
|
|
|
MMM => q{LLL}, |
4082
|
|
|
|
|
|
|
MMMEd => q{E d MMM}, |
4083
|
|
|
|
|
|
|
MMMMd => q{d 'de' MMMM}, |
4084
|
|
|
|
|
|
|
MMMd => q{d MMM}, |
4085
|
|
|
|
|
|
|
Md => q{dd-MM}, |
4086
|
|
|
|
|
|
|
d => q{d}, |
4087
|
|
|
|
|
|
|
h => q{h a}, |
4088
|
|
|
|
|
|
|
hm => q{h:mm a}, |
4089
|
|
|
|
|
|
|
hms => q{h:mm:ss a}, |
4090
|
|
|
|
|
|
|
ms => q{mm:ss}, |
4091
|
|
|
|
|
|
|
y => q{y G}, |
4092
|
|
|
|
|
|
|
yyyy => q{y G}, |
4093
|
|
|
|
|
|
|
yyyyM => q{MM-y GGGGG}, |
4094
|
|
|
|
|
|
|
yyyyMEd => q{E dd-MM-y GGGGG}, |
4095
|
|
|
|
|
|
|
yyyyMMM => q{MMM y G}, |
4096
|
|
|
|
|
|
|
yyyyMMMEd => q{E d MMM y G}, |
4097
|
|
|
|
|
|
|
yyyyMMMM => q{MMMM y G}, |
4098
|
|
|
|
|
|
|
yyyyMMMd => q{d MMM y G}, |
4099
|
|
|
|
|
|
|
yyyyMd => q{dd-MM-y GGGGG}, |
4100
|
|
|
|
|
|
|
yyyyQQQ => q{QQQ y G}, |
4101
|
|
|
|
|
|
|
yyyyQQQQ => q{QQQQ 'de' y G}, |
4102
|
|
|
|
|
|
|
}, |
4103
|
|
|
|
|
|
|
} }, |
4104
|
|
|
|
|
|
|
); |
4105
|
|
|
|
|
|
|
|
4106
|
|
|
|
|
|
|
has 'datetime_formats_append_item' => ( |
4107
|
|
|
|
|
|
|
is => 'ro', |
4108
|
|
|
|
|
|
|
isa => HashRef, |
4109
|
|
|
|
|
|
|
init_arg => undef, |
4110
|
|
|
|
|
|
|
default => sub { { |
4111
|
|
|
|
|
|
|
'gregorian' => { |
4112
|
|
|
|
|
|
|
'Timezone' => '{0} {1}', |
4113
|
|
|
|
|
|
|
}, |
4114
|
|
|
|
|
|
|
} }, |
4115
|
|
|
|
|
|
|
); |
4116
|
|
|
|
|
|
|
|
4117
|
|
|
|
|
|
|
has 'datetime_formats_interval' => ( |
4118
|
|
|
|
|
|
|
is => 'ro', |
4119
|
|
|
|
|
|
|
isa => HashRef, |
4120
|
|
|
|
|
|
|
init_arg => undef, |
4121
|
|
|
|
|
|
|
default => sub { { |
4122
|
|
|
|
|
|
|
'gregorian' => { |
4123
|
|
|
|
|
|
|
H => { |
4124
|
|
|
|
|
|
|
H => q{HH â HH}, |
4125
|
|
|
|
|
|
|
}, |
4126
|
|
|
|
|
|
|
Hm => { |
4127
|
|
|
|
|
|
|
H => q{HH:mm â HH:mm}, |
4128
|
|
|
|
|
|
|
m => q{HH:mm â HH:mm}, |
4129
|
|
|
|
|
|
|
}, |
4130
|
|
|
|
|
|
|
Hmv => { |
4131
|
|
|
|
|
|
|
H => q{HH:mm â HH:mm v}, |
4132
|
|
|
|
|
|
|
m => q{HH:mm â HH:mm v}, |
4133
|
|
|
|
|
|
|
}, |
4134
|
|
|
|
|
|
|
Hv => { |
4135
|
|
|
|
|
|
|
H => q{HH â HH v}, |
4136
|
|
|
|
|
|
|
}, |
4137
|
|
|
|
|
|
|
M => { |
4138
|
|
|
|
|
|
|
M => q{MM â MM}, |
4139
|
|
|
|
|
|
|
}, |
4140
|
|
|
|
|
|
|
MEd => { |
4141
|
|
|
|
|
|
|
M => q{E MM-dd â E MM-dd}, |
4142
|
|
|
|
|
|
|
d => q{E MM-dd â E MM-dd}, |
4143
|
|
|
|
|
|
|
}, |
4144
|
|
|
|
|
|
|
MMM => { |
4145
|
|
|
|
|
|
|
M => q{MMM â MMM}, |
4146
|
|
|
|
|
|
|
}, |
4147
|
|
|
|
|
|
|
MMMEd => { |
4148
|
|
|
|
|
|
|
M => q{E d MMM â E d MMM}, |
4149
|
|
|
|
|
|
|
d => q{E d MMM â E d MMM}, |
4150
|
|
|
|
|
|
|
}, |
4151
|
|
|
|
|
|
|
MMMd => { |
4152
|
|
|
|
|
|
|
M => q{d MMM â d MMM}, |
4153
|
|
|
|
|
|
|
d => q{d â d MMM}, |
4154
|
|
|
|
|
|
|
}, |
4155
|
|
|
|
|
|
|
Md => { |
4156
|
|
|
|
|
|
|
M => q{MM-dd â MM-dd}, |
4157
|
|
|
|
|
|
|
d => q{MM-dd â MM-dd}, |
4158
|
|
|
|
|
|
|
}, |
4159
|
|
|
|
|
|
|
d => { |
4160
|
|
|
|
|
|
|
d => q{d â d}, |
4161
|
|
|
|
|
|
|
}, |
4162
|
|
|
|
|
|
|
fallback => '{0} â {1}', |
4163
|
|
|
|
|
|
|
h => { |
4164
|
|
|
|
|
|
|
a => q{h a â h a}, |
4165
|
|
|
|
|
|
|
h => q{h â h a}, |
4166
|
|
|
|
|
|
|
}, |
4167
|
|
|
|
|
|
|
hm => { |
4168
|
|
|
|
|
|
|
a => q{h:mm a â h:mm a}, |
4169
|
|
|
|
|
|
|
h => q{h:mm â h:mm a}, |
4170
|
|
|
|
|
|
|
m => q{h:mm â h:mm a}, |
4171
|
|
|
|
|
|
|
}, |
4172
|
|
|
|
|
|
|
hmv => { |
4173
|
|
|
|
|
|
|
a => q{h:mm a â h:mm a v}, |
4174
|
|
|
|
|
|
|
h => q{h:mm â h:mm a v}, |
4175
|
|
|
|
|
|
|
m => q{h:mm â h:mm a v}, |
4176
|
|
|
|
|
|
|
}, |
4177
|
|
|
|
|
|
|
hv => { |
4178
|
|
|
|
|
|
|
a => q{h a â h a v}, |
4179
|
|
|
|
|
|
|
h => q{h â h a v}, |
4180
|
|
|
|
|
|
|
}, |
4181
|
|
|
|
|
|
|
y => { |
4182
|
|
|
|
|
|
|
y => q{y â y}, |
4183
|
|
|
|
|
|
|
}, |
4184
|
|
|
|
|
|
|
yM => { |
4185
|
|
|
|
|
|
|
M => q{MM-y â MM-y}, |
4186
|
|
|
|
|
|
|
y => q{MM-y â MM-y}, |
4187
|
|
|
|
|
|
|
}, |
4188
|
|
|
|
|
|
|
yMEd => { |
4189
|
|
|
|
|
|
|
M => q{E dd-MM-y â E dd-MM-y}, |
4190
|
|
|
|
|
|
|
d => q{E dd-MM-y â E dd-MM-y}, |
4191
|
|
|
|
|
|
|
y => q{E dd-MM-y â E dd-MM-y}, |
4192
|
|
|
|
|
|
|
}, |
4193
|
|
|
|
|
|
|
yMMM => { |
4194
|
|
|
|
|
|
|
M => q{MMM â MMM y}, |
4195
|
|
|
|
|
|
|
y => q{MMM y â MMM y}, |
4196
|
|
|
|
|
|
|
}, |
4197
|
|
|
|
|
|
|
yMMMEd => { |
4198
|
|
|
|
|
|
|
M => q{E d MMM â E d MMM y}, |
4199
|
|
|
|
|
|
|
d => q{E d MMM â E d MMM y}, |
4200
|
|
|
|
|
|
|
y => q{E d MMM y â E d MMM y}, |
4201
|
|
|
|
|
|
|
}, |
4202
|
|
|
|
|
|
|
yMMMM => { |
4203
|
|
|
|
|
|
|
M => q{MMMM â MMMM y}, |
4204
|
|
|
|
|
|
|
y => q{MMMM y â MMMM y}, |
4205
|
|
|
|
|
|
|
}, |
4206
|
|
|
|
|
|
|
yMMMd => { |
4207
|
|
|
|
|
|
|
M => q{d MMM â d MMM y}, |
4208
|
|
|
|
|
|
|
d => q{d â d MMM y}, |
4209
|
|
|
|
|
|
|
y => q{d MMM y â d MMM y}, |
4210
|
|
|
|
|
|
|
}, |
4211
|
|
|
|
|
|
|
yMd => { |
4212
|
|
|
|
|
|
|
M => q{dd-MM-y â dd-MM-y}, |
4213
|
|
|
|
|
|
|
d => q{dd-MM-y â dd-MM-y}, |
4214
|
|
|
|
|
|
|
y => q{dd-MM-y â dd-MM-y}, |
4215
|
|
|
|
|
|
|
}, |
4216
|
|
|
|
|
|
|
}, |
4217
|
|
|
|
|
|
|
'generic' => { |
4218
|
|
|
|
|
|
|
M => { |
4219
|
|
|
|
|
|
|
M => q{MM â MM}, |
4220
|
|
|
|
|
|
|
}, |
4221
|
|
|
|
|
|
|
MEd => { |
4222
|
|
|
|
|
|
|
M => q{E dd-MM â E dd-MM}, |
4223
|
|
|
|
|
|
|
d => q{E dd-MM â E dd-MM}, |
4224
|
|
|
|
|
|
|
}, |
4225
|
|
|
|
|
|
|
MMM => { |
4226
|
|
|
|
|
|
|
M => q{MMM â MMM}, |
4227
|
|
|
|
|
|
|
}, |
4228
|
|
|
|
|
|
|
MMMEd => { |
4229
|
|
|
|
|
|
|
M => q{E d MMM â E d MMM}, |
4230
|
|
|
|
|
|
|
d => q{E d MMM â E d MMM}, |
4231
|
|
|
|
|
|
|
}, |
4232
|
|
|
|
|
|
|
MMMd => { |
4233
|
|
|
|
|
|
|
M => q{d MMM â d MMM}, |
4234
|
|
|
|
|
|
|
d => q{d â d MMM}, |
4235
|
|
|
|
|
|
|
}, |
4236
|
|
|
|
|
|
|
Md => { |
4237
|
|
|
|
|
|
|
M => q{dd-MM â dd-MM}, |
4238
|
|
|
|
|
|
|
d => q{dd-MM â dd-MM}, |
4239
|
|
|
|
|
|
|
}, |
4240
|
|
|
|
|
|
|
d => { |
4241
|
|
|
|
|
|
|
d => q{d â d}, |
4242
|
|
|
|
|
|
|
}, |
4243
|
|
|
|
|
|
|
fallback => '{0} â {1}', |
4244
|
|
|
|
|
|
|
y => { |
4245
|
|
|
|
|
|
|
y => q{y â y G}, |
4246
|
|
|
|
|
|
|
}, |
4247
|
|
|
|
|
|
|
yM => { |
4248
|
|
|
|
|
|
|
M => q{MM-y â MM-y GGGGG}, |
4249
|
|
|
|
|
|
|
y => q{MM-y â MM-y GGGGG}, |
4250
|
|
|
|
|
|
|
}, |
4251
|
|
|
|
|
|
|
yMEd => { |
4252
|
|
|
|
|
|
|
M => q{E dd-MM-y â E dd-MM-y GGGGG}, |
4253
|
|
|
|
|
|
|
d => q{E dd-MM-y â E dd-MM-y GGGGG}, |
4254
|
|
|
|
|
|
|
y => q{E dd-MM-y â E dd-MM-y GGGGG}, |
4255
|
|
|
|
|
|
|
}, |
4256
|
|
|
|
|
|
|
yMMM => { |
4257
|
|
|
|
|
|
|
M => q{MMM â MMM y G}, |
4258
|
|
|
|
|
|
|
y => q{MMM y â MMM y G}, |
4259
|
|
|
|
|
|
|
}, |
4260
|
|
|
|
|
|
|
yMMMEd => { |
4261
|
|
|
|
|
|
|
M => q{E d MMM â E d MMM y G}, |
4262
|
|
|
|
|
|
|
d => q{E d MMM â E d MMM y G}, |
4263
|
|
|
|
|
|
|
y => q{E d MMM y â E d MMM y G}, |
4264
|
|
|
|
|
|
|
}, |
4265
|
|
|
|
|
|
|
yMMMM => { |
4266
|
|
|
|
|
|
|
M => q{MMMM â MMMM y G}, |
4267
|
|
|
|
|
|
|
y => q{MMMM y â MMMM y G}, |
4268
|
|
|
|
|
|
|
}, |
4269
|
|
|
|
|
|
|
yMMMd => { |
4270
|
|
|
|
|
|
|
M => q{d MMM â d MMM y G}, |
4271
|
|
|
|
|
|
|
d => q{d â d MMM y G}, |
4272
|
|
|
|
|
|
|
y => q{d MMM y â d MMM y G}, |
4273
|
|
|
|
|
|
|
}, |
4274
|
|
|
|
|
|
|
yMd => { |
4275
|
|
|
|
|
|
|
M => q{dd-MM-y â dd-MM-y GGGGG}, |
4276
|
|
|
|
|
|
|
d => q{dd-MM-y â dd-MM-y GGGGG}, |
4277
|
|
|
|
|
|
|
y => q{dd-MM-y â dd-MM-y GGGGG}, |
4278
|
|
|
|
|
|
|
}, |
4279
|
|
|
|
|
|
|
}, |
4280
|
|
|
|
|
|
|
} }, |
4281
|
|
|
|
|
|
|
); |
4282
|
|
|
|
|
|
|
|
4283
|
|
|
|
|
|
|
has 'time_zone_names' => ( |
4284
|
|
|
|
|
|
|
is => 'ro', |
4285
|
|
|
|
|
|
|
isa => HashRef, |
4286
|
|
|
|
|
|
|
init_arg => undef, |
4287
|
|
|
|
|
|
|
default => sub { { |
4288
|
|
|
|
|
|
|
hourFormat => q(+HH:mm;-HH:mm), |
4289
|
|
|
|
|
|
|
gmtFormat => q(GMT{0}), |
4290
|
|
|
|
|
|
|
gmtZeroFormat => q(GMT), |
4291
|
|
|
|
|
|
|
regionFormat => q(hora de {0}), |
4292
|
|
|
|
|
|
|
regionFormat => q(hora estive de {0}), |
4293
|
|
|
|
|
|
|
regionFormat => q(hora normal de {0}), |
4294
|
|
|
|
|
|
|
fallbackFormat => q({1} ({0})), |
4295
|
|
|
|
|
|
|
'Africa/Ceuta' => { |
4296
|
|
|
|
|
|
|
exemplarCity => q#Ceuta#, |
4297
|
|
|
|
|
|
|
}, |
4298
|
|
|
|
|
|
|
'Africa/Djibouti' => { |
4299
|
|
|
|
|
|
|
exemplarCity => q#Djibuti#, |
4300
|
|
|
|
|
|
|
}, |
4301
|
|
|
|
|
|
|
'Alaska' => { |
4302
|
|
|
|
|
|
|
long => { |
4303
|
|
|
|
|
|
|
'daylight' => q#hora estive de Alaska#, |
4304
|
|
|
|
|
|
|
'generic' => q#hora de Alaska#, |
4305
|
|
|
|
|
|
|
'standard' => q#hora normal de Alaska#, |
4306
|
|
|
|
|
|
|
}, |
4307
|
|
|
|
|
|
|
}, |
4308
|
|
|
|
|
|
|
'America/Adak' => { |
4309
|
|
|
|
|
|
|
exemplarCity => q#Adak#, |
4310
|
|
|
|
|
|
|
}, |
4311
|
|
|
|
|
|
|
'America/Anchorage' => { |
4312
|
|
|
|
|
|
|
exemplarCity => q#Anchorage#, |
4313
|
|
|
|
|
|
|
}, |
4314
|
|
|
|
|
|
|
'America/Anguilla' => { |
4315
|
|
|
|
|
|
|
exemplarCity => q#Anguilla#, |
4316
|
|
|
|
|
|
|
}, |
4317
|
|
|
|
|
|
|
'America/Antigua' => { |
4318
|
|
|
|
|
|
|
exemplarCity => q#Antigua#, |
4319
|
|
|
|
|
|
|
}, |
4320
|
|
|
|
|
|
|
'America/Aruba' => { |
4321
|
|
|
|
|
|
|
exemplarCity => q#Aruba#, |
4322
|
|
|
|
|
|
|
}, |
4323
|
|
|
|
|
|
|
'America/Bahia_Banderas' => { |
4324
|
|
|
|
|
|
|
exemplarCity => q#Bahia de Banderas#, |
4325
|
|
|
|
|
|
|
}, |
4326
|
|
|
|
|
|
|
'America/Barbados' => { |
4327
|
|
|
|
|
|
|
exemplarCity => q#Barbados#, |
4328
|
|
|
|
|
|
|
}, |
4329
|
|
|
|
|
|
|
'America/Belize' => { |
4330
|
|
|
|
|
|
|
exemplarCity => q#Belize#, |
4331
|
|
|
|
|
|
|
}, |
4332
|
|
|
|
|
|
|
'America/Blanc-Sablon' => { |
4333
|
|
|
|
|
|
|
exemplarCity => q#Blanc-Sablon#, |
4334
|
|
|
|
|
|
|
}, |
4335
|
|
|
|
|
|
|
'America/Boise' => { |
4336
|
|
|
|
|
|
|
exemplarCity => q#Boise#, |
4337
|
|
|
|
|
|
|
}, |
4338
|
|
|
|
|
|
|
'America/Cambridge_Bay' => { |
4339
|
|
|
|
|
|
|
exemplarCity => q#Cambridge Bay#, |
4340
|
|
|
|
|
|
|
}, |
4341
|
|
|
|
|
|
|
'America/Cancun' => { |
4342
|
|
|
|
|
|
|
exemplarCity => q#Cancun#, |
4343
|
|
|
|
|
|
|
}, |
4344
|
|
|
|
|
|
|
'America/Cayman' => { |
4345
|
|
|
|
|
|
|
exemplarCity => q#Caiman#, |
4346
|
|
|
|
|
|
|
}, |
4347
|
|
|
|
|
|
|
'America/Chicago' => { |
4348
|
|
|
|
|
|
|
exemplarCity => q#Chicago#, |
4349
|
|
|
|
|
|
|
}, |
4350
|
|
|
|
|
|
|
'America/Chihuahua' => { |
4351
|
|
|
|
|
|
|
exemplarCity => q#Chihuahua#, |
4352
|
|
|
|
|
|
|
}, |
4353
|
|
|
|
|
|
|
'America/Coral_Harbour' => { |
4354
|
|
|
|
|
|
|
exemplarCity => q#Atikokan#, |
4355
|
|
|
|
|
|
|
}, |
4356
|
|
|
|
|
|
|
'America/Costa_Rica' => { |
4357
|
|
|
|
|
|
|
exemplarCity => q#Costa Rica#, |
4358
|
|
|
|
|
|
|
}, |
4359
|
|
|
|
|
|
|
'America/Creston' => { |
4360
|
|
|
|
|
|
|
exemplarCity => q#Creston#, |
4361
|
|
|
|
|
|
|
}, |
4362
|
|
|
|
|
|
|
'America/Curacao' => { |
4363
|
|
|
|
|
|
|
exemplarCity => q#Curaçao#, |
4364
|
|
|
|
|
|
|
}, |
4365
|
|
|
|
|
|
|
'America/Danmarkshavn' => { |
4366
|
|
|
|
|
|
|
exemplarCity => q#Danmarkshavn#, |
4367
|
|
|
|
|
|
|
}, |
4368
|
|
|
|
|
|
|
'America/Dawson' => { |
4369
|
|
|
|
|
|
|
exemplarCity => q#Dawson#, |
4370
|
|
|
|
|
|
|
}, |
4371
|
|
|
|
|
|
|
'America/Dawson_Creek' => { |
4372
|
|
|
|
|
|
|
exemplarCity => q#Dawson Creek#, |
4373
|
|
|
|
|
|
|
}, |
4374
|
|
|
|
|
|
|
'America/Denver' => { |
4375
|
|
|
|
|
|
|
exemplarCity => q#Denver#, |
4376
|
|
|
|
|
|
|
}, |
4377
|
|
|
|
|
|
|
'America/Detroit' => { |
4378
|
|
|
|
|
|
|
exemplarCity => q#Detroit#, |
4379
|
|
|
|
|
|
|
}, |
4380
|
|
|
|
|
|
|
'America/Dominica' => { |
4381
|
|
|
|
|
|
|
exemplarCity => q#Dominica#, |
4382
|
|
|
|
|
|
|
}, |
4383
|
|
|
|
|
|
|
'America/Edmonton' => { |
4384
|
|
|
|
|
|
|
exemplarCity => q#Edmonton#, |
4385
|
|
|
|
|
|
|
}, |
4386
|
|
|
|
|
|
|
'America/El_Salvador' => { |
4387
|
|
|
|
|
|
|
exemplarCity => q#El Salvador#, |
4388
|
|
|
|
|
|
|
}, |
4389
|
|
|
|
|
|
|
'America/Fort_Nelson' => { |
4390
|
|
|
|
|
|
|
exemplarCity => q#Fort Nelson#, |
4391
|
|
|
|
|
|
|
}, |
4392
|
|
|
|
|
|
|
'America/Glace_Bay' => { |
4393
|
|
|
|
|
|
|
exemplarCity => q#Glace Bay#, |
4394
|
|
|
|
|
|
|
}, |
4395
|
|
|
|
|
|
|
'America/Godthab' => { |
4396
|
|
|
|
|
|
|
exemplarCity => q#Nuuk#, |
4397
|
|
|
|
|
|
|
}, |
4398
|
|
|
|
|
|
|
'America/Goose_Bay' => { |
4399
|
|
|
|
|
|
|
exemplarCity => q#Goose Bay#, |
4400
|
|
|
|
|
|
|
}, |
4401
|
|
|
|
|
|
|
'America/Grand_Turk' => { |
4402
|
|
|
|
|
|
|
exemplarCity => q#Grand Turk#, |
4403
|
|
|
|
|
|
|
}, |
4404
|
|
|
|
|
|
|
'America/Grenada' => { |
4405
|
|
|
|
|
|
|
exemplarCity => q#Grenada#, |
4406
|
|
|
|
|
|
|
}, |
4407
|
|
|
|
|
|
|
'America/Guadeloupe' => { |
4408
|
|
|
|
|
|
|
exemplarCity => q#Guadeloupe#, |
4409
|
|
|
|
|
|
|
}, |
4410
|
|
|
|
|
|
|
'America/Guatemala' => { |
4411
|
|
|
|
|
|
|
exemplarCity => q#Guatemala#, |
4412
|
|
|
|
|
|
|
}, |
4413
|
|
|
|
|
|
|
'America/Halifax' => { |
4414
|
|
|
|
|
|
|
exemplarCity => q#Halifax#, |
4415
|
|
|
|
|
|
|
}, |
4416
|
|
|
|
|
|
|
'America/Havana' => { |
4417
|
|
|
|
|
|
|
exemplarCity => q#Havana#, |
4418
|
|
|
|
|
|
|
}, |
4419
|
|
|
|
|
|
|
'America/Hermosillo' => { |
4420
|
|
|
|
|
|
|
exemplarCity => q#Hermosillo#, |
4421
|
|
|
|
|
|
|
}, |
4422
|
|
|
|
|
|
|
'America/Indiana/Knox' => { |
4423
|
|
|
|
|
|
|
exemplarCity => q#Knox, Indiana#, |
4424
|
|
|
|
|
|
|
}, |
4425
|
|
|
|
|
|
|
'America/Indiana/Marengo' => { |
4426
|
|
|
|
|
|
|
exemplarCity => q#Marengo, Indiana#, |
4427
|
|
|
|
|
|
|
}, |
4428
|
|
|
|
|
|
|
'America/Indiana/Petersburg' => { |
4429
|
|
|
|
|
|
|
exemplarCity => q#Petersburg, Indiana#, |
4430
|
|
|
|
|
|
|
}, |
4431
|
|
|
|
|
|
|
'America/Indiana/Tell_City' => { |
4432
|
|
|
|
|
|
|
exemplarCity => q#Tell City, Indiana#, |
4433
|
|
|
|
|
|
|
}, |
4434
|
|
|
|
|
|
|
'America/Indiana/Vevay' => { |
4435
|
|
|
|
|
|
|
exemplarCity => q#Vevay, Indiana#, |
4436
|
|
|
|
|
|
|
}, |
4437
|
|
|
|
|
|
|
'America/Indiana/Vincennes' => { |
4438
|
|
|
|
|
|
|
exemplarCity => q#Vincennes, Indiana#, |
4439
|
|
|
|
|
|
|
}, |
4440
|
|
|
|
|
|
|
'America/Indiana/Winamac' => { |
4441
|
|
|
|
|
|
|
exemplarCity => q#Winamac, Indiana#, |
4442
|
|
|
|
|
|
|
}, |
4443
|
|
|
|
|
|
|
'America/Indianapolis' => { |
4444
|
|
|
|
|
|
|
exemplarCity => q#Indianapolis#, |
4445
|
|
|
|
|
|
|
}, |
4446
|
|
|
|
|
|
|
'America/Inuvik' => { |
4447
|
|
|
|
|
|
|
exemplarCity => q#Inuvik#, |
4448
|
|
|
|
|
|
|
}, |
4449
|
|
|
|
|
|
|
'America/Iqaluit' => { |
4450
|
|
|
|
|
|
|
exemplarCity => q#Iqaluit#, |
4451
|
|
|
|
|
|
|
}, |
4452
|
|
|
|
|
|
|
'America/Jamaica' => { |
4453
|
|
|
|
|
|
|
exemplarCity => q#Jamaica#, |
4454
|
|
|
|
|
|
|
}, |
4455
|
|
|
|
|
|
|
'America/Juneau' => { |
4456
|
|
|
|
|
|
|
exemplarCity => q#Juneau#, |
4457
|
|
|
|
|
|
|
}, |
4458
|
|
|
|
|
|
|
'America/Kentucky/Monticello' => { |
4459
|
|
|
|
|
|
|
exemplarCity => q#Monticello, Kentucky#, |
4460
|
|
|
|
|
|
|
}, |
4461
|
|
|
|
|
|
|
'America/Kralendijk' => { |
4462
|
|
|
|
|
|
|
exemplarCity => q#Kralendijk#, |
4463
|
|
|
|
|
|
|
}, |
4464
|
|
|
|
|
|
|
'America/Los_Angeles' => { |
4465
|
|
|
|
|
|
|
exemplarCity => q#Los Angeles#, |
4466
|
|
|
|
|
|
|
}, |
4467
|
|
|
|
|
|
|
'America/Louisville' => { |
4468
|
|
|
|
|
|
|
exemplarCity => q#Louisville#, |
4469
|
|
|
|
|
|
|
}, |
4470
|
|
|
|
|
|
|
'America/Lower_Princes' => { |
4471
|
|
|
|
|
|
|
exemplarCity => q#Lower Princeâs Quarter#, |
4472
|
|
|
|
|
|
|
}, |
4473
|
|
|
|
|
|
|
'America/Managua' => { |
4474
|
|
|
|
|
|
|
exemplarCity => q#Managua#, |
4475
|
|
|
|
|
|
|
}, |
4476
|
|
|
|
|
|
|
'America/Marigot' => { |
4477
|
|
|
|
|
|
|
exemplarCity => q#Marigot#, |
4478
|
|
|
|
|
|
|
}, |
4479
|
|
|
|
|
|
|
'America/Martinique' => { |
4480
|
|
|
|
|
|
|
exemplarCity => q#Martinica#, |
4481
|
|
|
|
|
|
|
}, |
4482
|
|
|
|
|
|
|
'America/Matamoros' => { |
4483
|
|
|
|
|
|
|
exemplarCity => q#Matamoros#, |
4484
|
|
|
|
|
|
|
}, |
4485
|
|
|
|
|
|
|
'America/Mazatlan' => { |
4486
|
|
|
|
|
|
|
exemplarCity => q#Mazatlan#, |
4487
|
|
|
|
|
|
|
}, |
4488
|
|
|
|
|
|
|
'America/Menominee' => { |
4489
|
|
|
|
|
|
|
exemplarCity => q#Menominee#, |
4490
|
|
|
|
|
|
|
}, |
4491
|
|
|
|
|
|
|
'America/Merida' => { |
4492
|
|
|
|
|
|
|
exemplarCity => q#Merida#, |
4493
|
|
|
|
|
|
|
}, |
4494
|
|
|
|
|
|
|
'America/Metlakatla' => { |
4495
|
|
|
|
|
|
|
exemplarCity => q#Metlakatla#, |
4496
|
|
|
|
|
|
|
}, |
4497
|
|
|
|
|
|
|
'America/Mexico_City' => { |
4498
|
|
|
|
|
|
|
exemplarCity => q#Citate de Mexico#, |
4499
|
|
|
|
|
|
|
}, |
4500
|
|
|
|
|
|
|
'America/Miquelon' => { |
4501
|
|
|
|
|
|
|
exemplarCity => q#Miquelon#, |
4502
|
|
|
|
|
|
|
}, |
4503
|
|
|
|
|
|
|
'America/Moncton' => { |
4504
|
|
|
|
|
|
|
exemplarCity => q#Moncton#, |
4505
|
|
|
|
|
|
|
}, |
4506
|
|
|
|
|
|
|
'America/Monterrey' => { |
4507
|
|
|
|
|
|
|
exemplarCity => q#Monterrey#, |
4508
|
|
|
|
|
|
|
}, |
4509
|
|
|
|
|
|
|
'America/Montserrat' => { |
4510
|
|
|
|
|
|
|
exemplarCity => q#Montserrat#, |
4511
|
|
|
|
|
|
|
}, |
4512
|
|
|
|
|
|
|
'America/Nassau' => { |
4513
|
|
|
|
|
|
|
exemplarCity => q#Nassau#, |
4514
|
|
|
|
|
|
|
}, |
4515
|
|
|
|
|
|
|
'America/New_York' => { |
4516
|
|
|
|
|
|
|
exemplarCity => q#Nove York#, |
4517
|
|
|
|
|
|
|
}, |
4518
|
|
|
|
|
|
|
'America/Nipigon' => { |
4519
|
|
|
|
|
|
|
exemplarCity => q#Nipigon#, |
4520
|
|
|
|
|
|
|
}, |
4521
|
|
|
|
|
|
|
'America/Nome' => { |
4522
|
|
|
|
|
|
|
exemplarCity => q#Nome#, |
4523
|
|
|
|
|
|
|
}, |
4524
|
|
|
|
|
|
|
'America/North_Dakota/Beulah' => { |
4525
|
|
|
|
|
|
|
exemplarCity => q#Beulah, Dakota del Nord#, |
4526
|
|
|
|
|
|
|
}, |
4527
|
|
|
|
|
|
|
'America/North_Dakota/Center' => { |
4528
|
|
|
|
|
|
|
exemplarCity => q#Center, Dakota del Nord#, |
4529
|
|
|
|
|
|
|
}, |
4530
|
|
|
|
|
|
|
'America/North_Dakota/New_Salem' => { |
4531
|
|
|
|
|
|
|
exemplarCity => q#New Salem, Dakota del Nord#, |
4532
|
|
|
|
|
|
|
}, |
4533
|
|
|
|
|
|
|
'America/Ojinaga' => { |
4534
|
|
|
|
|
|
|
exemplarCity => q#Ojinaga#, |
4535
|
|
|
|
|
|
|
}, |
4536
|
|
|
|
|
|
|
'America/Panama' => { |
4537
|
|
|
|
|
|
|
exemplarCity => q#Panama#, |
4538
|
|
|
|
|
|
|
}, |
4539
|
|
|
|
|
|
|
'America/Pangnirtung' => { |
4540
|
|
|
|
|
|
|
exemplarCity => q#Pangnirtung#, |
4541
|
|
|
|
|
|
|
}, |
4542
|
|
|
|
|
|
|
'America/Phoenix' => { |
4543
|
|
|
|
|
|
|
exemplarCity => q#Phoenix#, |
4544
|
|
|
|
|
|
|
}, |
4545
|
|
|
|
|
|
|
'America/Port-au-Prince' => { |
4546
|
|
|
|
|
|
|
exemplarCity => q#Port-au-Prince#, |
4547
|
|
|
|
|
|
|
}, |
4548
|
|
|
|
|
|
|
'America/Port_of_Spain' => { |
4549
|
|
|
|
|
|
|
exemplarCity => q#Port of Spain#, |
4550
|
|
|
|
|
|
|
}, |
4551
|
|
|
|
|
|
|
'America/Puerto_Rico' => { |
4552
|
|
|
|
|
|
|
exemplarCity => q#Porto Rico#, |
4553
|
|
|
|
|
|
|
}, |
4554
|
|
|
|
|
|
|
'America/Rainy_River' => { |
4555
|
|
|
|
|
|
|
exemplarCity => q#Rainy River#, |
4556
|
|
|
|
|
|
|
}, |
4557
|
|
|
|
|
|
|
'America/Rankin_Inlet' => { |
4558
|
|
|
|
|
|
|
exemplarCity => q#Rankin Inlet#, |
4559
|
|
|
|
|
|
|
}, |
4560
|
|
|
|
|
|
|
'America/Regina' => { |
4561
|
|
|
|
|
|
|
exemplarCity => q#Regina#, |
4562
|
|
|
|
|
|
|
}, |
4563
|
|
|
|
|
|
|
'America/Resolute' => { |
4564
|
|
|
|
|
|
|
exemplarCity => q#Resolute#, |
4565
|
|
|
|
|
|
|
}, |
4566
|
|
|
|
|
|
|
'America/Santo_Domingo' => { |
4567
|
|
|
|
|
|
|
exemplarCity => q#Santo Domingo#, |
4568
|
|
|
|
|
|
|
}, |
4569
|
|
|
|
|
|
|
'America/Scoresbysund' => { |
4570
|
|
|
|
|
|
|
exemplarCity => q#Ittoqqortoormiit#, |
4571
|
|
|
|
|
|
|
}, |
4572
|
|
|
|
|
|
|
'America/Sitka' => { |
4573
|
|
|
|
|
|
|
exemplarCity => q#Sitka#, |
4574
|
|
|
|
|
|
|
}, |
4575
|
|
|
|
|
|
|
'America/St_Barthelemy' => { |
4576
|
|
|
|
|
|
|
exemplarCity => q#Sancte Bartholomeo#, |
4577
|
|
|
|
|
|
|
}, |
4578
|
|
|
|
|
|
|
'America/St_Johns' => { |
4579
|
|
|
|
|
|
|
exemplarCity => q#Sancte Johannes de Terranova#, |
4580
|
|
|
|
|
|
|
}, |
4581
|
|
|
|
|
|
|
'America/St_Kitts' => { |
4582
|
|
|
|
|
|
|
exemplarCity => q#Sancte Christophoro#, |
4583
|
|
|
|
|
|
|
}, |
4584
|
|
|
|
|
|
|
'America/St_Lucia' => { |
4585
|
|
|
|
|
|
|
exemplarCity => q#Sancte Lucia#, |
4586
|
|
|
|
|
|
|
}, |
4587
|
|
|
|
|
|
|
'America/St_Thomas' => { |
4588
|
|
|
|
|
|
|
exemplarCity => q#Sancte Thomas#, |
4589
|
|
|
|
|
|
|
}, |
4590
|
|
|
|
|
|
|
'America/St_Vincent' => { |
4591
|
|
|
|
|
|
|
exemplarCity => q#Sancte Vincente#, |
4592
|
|
|
|
|
|
|
}, |
4593
|
|
|
|
|
|
|
'America/Swift_Current' => { |
4594
|
|
|
|
|
|
|
exemplarCity => q#Swift Current#, |
4595
|
|
|
|
|
|
|
}, |
4596
|
|
|
|
|
|
|
'America/Tegucigalpa' => { |
4597
|
|
|
|
|
|
|
exemplarCity => q#Tegucigalpa#, |
4598
|
|
|
|
|
|
|
}, |
4599
|
|
|
|
|
|
|
'America/Thule' => { |
4600
|
|
|
|
|
|
|
exemplarCity => q#Thule#, |
4601
|
|
|
|
|
|
|
}, |
4602
|
|
|
|
|
|
|
'America/Thunder_Bay' => { |
4603
|
|
|
|
|
|
|
exemplarCity => q#Thunder Bay#, |
4604
|
|
|
|
|
|
|
}, |
4605
|
|
|
|
|
|
|
'America/Tijuana' => { |
4606
|
|
|
|
|
|
|
exemplarCity => q#Tijuana#, |
4607
|
|
|
|
|
|
|
}, |
4608
|
|
|
|
|
|
|
'America/Toronto' => { |
4609
|
|
|
|
|
|
|
exemplarCity => q#Toronto#, |
4610
|
|
|
|
|
|
|
}, |
4611
|
|
|
|
|
|
|
'America/Tortola' => { |
4612
|
|
|
|
|
|
|
exemplarCity => q#Tortola#, |
4613
|
|
|
|
|
|
|
}, |
4614
|
|
|
|
|
|
|
'America/Vancouver' => { |
4615
|
|
|
|
|
|
|
exemplarCity => q#Vancouver#, |
4616
|
|
|
|
|
|
|
}, |
4617
|
|
|
|
|
|
|
'America/Whitehorse' => { |
4618
|
|
|
|
|
|
|
exemplarCity => q#Whitehorse#, |
4619
|
|
|
|
|
|
|
}, |
4620
|
|
|
|
|
|
|
'America/Winnipeg' => { |
4621
|
|
|
|
|
|
|
exemplarCity => q#Winnipeg#, |
4622
|
|
|
|
|
|
|
}, |
4623
|
|
|
|
|
|
|
'America/Yakutat' => { |
4624
|
|
|
|
|
|
|
exemplarCity => q#Yakutat#, |
4625
|
|
|
|
|
|
|
}, |
4626
|
|
|
|
|
|
|
'America/Yellowknife' => { |
4627
|
|
|
|
|
|
|
exemplarCity => q#Yellowknife#, |
4628
|
|
|
|
|
|
|
}, |
4629
|
|
|
|
|
|
|
'America_Central' => { |
4630
|
|
|
|
|
|
|
long => { |
4631
|
|
|
|
|
|
|
'daylight' => q#hora estive central#, |
4632
|
|
|
|
|
|
|
'generic' => q#hora central#, |
4633
|
|
|
|
|
|
|
'standard' => q#hora normal central#, |
4634
|
|
|
|
|
|
|
}, |
4635
|
|
|
|
|
|
|
}, |
4636
|
|
|
|
|
|
|
'America_Eastern' => { |
4637
|
|
|
|
|
|
|
long => { |
4638
|
|
|
|
|
|
|
'daylight' => q#hora estive del est#, |
4639
|
|
|
|
|
|
|
'generic' => q#hora del est#, |
4640
|
|
|
|
|
|
|
'standard' => q#hora normal del est#, |
4641
|
|
|
|
|
|
|
}, |
4642
|
|
|
|
|
|
|
}, |
4643
|
|
|
|
|
|
|
'America_Mountain' => { |
4644
|
|
|
|
|
|
|
long => { |
4645
|
|
|
|
|
|
|
'daylight' => q#hora estive del montanias#, |
4646
|
|
|
|
|
|
|
'generic' => q#hora del montanias#, |
4647
|
|
|
|
|
|
|
'standard' => q#hora normal del montanias#, |
4648
|
|
|
|
|
|
|
}, |
4649
|
|
|
|
|
|
|
}, |
4650
|
|
|
|
|
|
|
'America_Pacific' => { |
4651
|
|
|
|
|
|
|
long => { |
4652
|
|
|
|
|
|
|
'daylight' => q#hora estive pacific#, |
4653
|
|
|
|
|
|
|
'generic' => q#hora pacific#, |
4654
|
|
|
|
|
|
|
'standard' => q#hora normal pacific#, |
4655
|
|
|
|
|
|
|
}, |
4656
|
|
|
|
|
|
|
}, |
4657
|
|
|
|
|
|
|
'Arctic/Longyearbyen' => { |
4658
|
|
|
|
|
|
|
exemplarCity => q#Longyearbyen#, |
4659
|
|
|
|
|
|
|
}, |
4660
|
|
|
|
|
|
|
'Asia/Anadyr' => { |
4661
|
|
|
|
|
|
|
exemplarCity => q#Anadyr#, |
4662
|
|
|
|
|
|
|
}, |
4663
|
|
|
|
|
|
|
'Asia/Barnaul' => { |
4664
|
|
|
|
|
|
|
exemplarCity => q#Barnaul#, |
4665
|
|
|
|
|
|
|
}, |
4666
|
|
|
|
|
|
|
'Asia/Chita' => { |
4667
|
|
|
|
|
|
|
exemplarCity => q#Chita#, |
4668
|
|
|
|
|
|
|
}, |
4669
|
|
|
|
|
|
|
'Asia/Hong_Kong' => { |
4670
|
|
|
|
|
|
|
exemplarCity => q#Hongkong#, |
4671
|
|
|
|
|
|
|
}, |
4672
|
|
|
|
|
|
|
'Asia/Irkutsk' => { |
4673
|
|
|
|
|
|
|
exemplarCity => q#Irkutsk#, |
4674
|
|
|
|
|
|
|
}, |
4675
|
|
|
|
|
|
|
'Asia/Kamchatka' => { |
4676
|
|
|
|
|
|
|
exemplarCity => q#Kamchatka#, |
4677
|
|
|
|
|
|
|
}, |
4678
|
|
|
|
|
|
|
'Asia/Khandyga' => { |
4679
|
|
|
|
|
|
|
exemplarCity => q#Chandyga#, |
4680
|
|
|
|
|
|
|
}, |
4681
|
|
|
|
|
|
|
'Asia/Krasnoyarsk' => { |
4682
|
|
|
|
|
|
|
exemplarCity => q#Krasnoyarsk#, |
4683
|
|
|
|
|
|
|
}, |
4684
|
|
|
|
|
|
|
'Asia/Magadan' => { |
4685
|
|
|
|
|
|
|
exemplarCity => q#Magadan#, |
4686
|
|
|
|
|
|
|
}, |
4687
|
|
|
|
|
|
|
'Asia/Novokuznetsk' => { |
4688
|
|
|
|
|
|
|
exemplarCity => q#Novokuznetsk#, |
4689
|
|
|
|
|
|
|
}, |
4690
|
|
|
|
|
|
|
'Asia/Novosibirsk' => { |
4691
|
|
|
|
|
|
|
exemplarCity => q#Novosibirsk#, |
4692
|
|
|
|
|
|
|
}, |
4693
|
|
|
|
|
|
|
'Asia/Omsk' => { |
4694
|
|
|
|
|
|
|
exemplarCity => q#Omsk#, |
4695
|
|
|
|
|
|
|
}, |
4696
|
|
|
|
|
|
|
'Asia/Sakhalin' => { |
4697
|
|
|
|
|
|
|
exemplarCity => q#Sachalin#, |
4698
|
|
|
|
|
|
|
}, |
4699
|
|
|
|
|
|
|
'Asia/Srednekolymsk' => { |
4700
|
|
|
|
|
|
|
exemplarCity => q#Srednekolymsk#, |
4701
|
|
|
|
|
|
|
}, |
4702
|
|
|
|
|
|
|
'Asia/Tomsk' => { |
4703
|
|
|
|
|
|
|
exemplarCity => q#Tomsk#, |
4704
|
|
|
|
|
|
|
}, |
4705
|
|
|
|
|
|
|
'Asia/Ust-Nera' => { |
4706
|
|
|
|
|
|
|
exemplarCity => q#Ust-Nera#, |
4707
|
|
|
|
|
|
|
}, |
4708
|
|
|
|
|
|
|
'Asia/Vladivostok' => { |
4709
|
|
|
|
|
|
|
exemplarCity => q#Vladivostok#, |
4710
|
|
|
|
|
|
|
}, |
4711
|
|
|
|
|
|
|
'Asia/Yakutsk' => { |
4712
|
|
|
|
|
|
|
exemplarCity => q#Yakutsk#, |
4713
|
|
|
|
|
|
|
}, |
4714
|
|
|
|
|
|
|
'Asia/Yekaterinburg' => { |
4715
|
|
|
|
|
|
|
exemplarCity => q#Ekaterinburg#, |
4716
|
|
|
|
|
|
|
}, |
4717
|
|
|
|
|
|
|
'Atlantic' => { |
4718
|
|
|
|
|
|
|
long => { |
4719
|
|
|
|
|
|
|
'daylight' => q#hora estive atlantic#, |
4720
|
|
|
|
|
|
|
'generic' => q#hora atlantic#, |
4721
|
|
|
|
|
|
|
'standard' => q#hora normal atlantic#, |
4722
|
|
|
|
|
|
|
}, |
4723
|
|
|
|
|
|
|
}, |
4724
|
|
|
|
|
|
|
'Atlantic/Azores' => { |
4725
|
|
|
|
|
|
|
exemplarCity => q#Azores#, |
4726
|
|
|
|
|
|
|
}, |
4727
|
|
|
|
|
|
|
'Atlantic/Bermuda' => { |
4728
|
|
|
|
|
|
|
exemplarCity => q#Bermuda#, |
4729
|
|
|
|
|
|
|
}, |
4730
|
|
|
|
|
|
|
'Atlantic/Canary' => { |
4731
|
|
|
|
|
|
|
exemplarCity => q#Canarias#, |
4732
|
|
|
|
|
|
|
}, |
4733
|
|
|
|
|
|
|
'Atlantic/Cape_Verde' => { |
4734
|
|
|
|
|
|
|
exemplarCity => q#Capo Verde#, |
4735
|
|
|
|
|
|
|
}, |
4736
|
|
|
|
|
|
|
'Atlantic/Faeroe' => { |
4737
|
|
|
|
|
|
|
exemplarCity => q#Feroe#, |
4738
|
|
|
|
|
|
|
}, |
4739
|
|
|
|
|
|
|
'Atlantic/Madeira' => { |
4740
|
|
|
|
|
|
|
exemplarCity => q#Madeira#, |
4741
|
|
|
|
|
|
|
}, |
4742
|
|
|
|
|
|
|
'Atlantic/Reykjavik' => { |
4743
|
|
|
|
|
|
|
exemplarCity => q#Reykjavik#, |
4744
|
|
|
|
|
|
|
}, |
4745
|
|
|
|
|
|
|
'Azores' => { |
4746
|
|
|
|
|
|
|
long => { |
4747
|
|
|
|
|
|
|
'daylight' => q#hora estive del Azores#, |
4748
|
|
|
|
|
|
|
'generic' => q#hora del Azores#, |
4749
|
|
|
|
|
|
|
'standard' => q#hora normal del Azores#, |
4750
|
|
|
|
|
|
|
}, |
4751
|
|
|
|
|
|
|
}, |
4752
|
|
|
|
|
|
|
'Cuba' => { |
4753
|
|
|
|
|
|
|
long => { |
4754
|
|
|
|
|
|
|
'daylight' => q#hora estive de Cuba#, |
4755
|
|
|
|
|
|
|
'generic' => q#hora de Cuba#, |
4756
|
|
|
|
|
|
|
'standard' => q#hora normal de Cuba#, |
4757
|
|
|
|
|
|
|
}, |
4758
|
|
|
|
|
|
|
}, |
4759
|
|
|
|
|
|
|
'Etc/UTC' => { |
4760
|
|
|
|
|
|
|
long => { |
4761
|
|
|
|
|
|
|
'standard' => q#Universal Tempore Coordinate#, |
4762
|
|
|
|
|
|
|
}, |
4763
|
|
|
|
|
|
|
}, |
4764
|
|
|
|
|
|
|
'Etc/Unknown' => { |
4765
|
|
|
|
|
|
|
exemplarCity => q#Citate incognite#, |
4766
|
|
|
|
|
|
|
}, |
4767
|
|
|
|
|
|
|
'Europe/Amsterdam' => { |
4768
|
|
|
|
|
|
|
exemplarCity => q#Amsterdam#, |
4769
|
|
|
|
|
|
|
}, |
4770
|
|
|
|
|
|
|
'Europe/Andorra' => { |
4771
|
|
|
|
|
|
|
exemplarCity => q#Andorra#, |
4772
|
|
|
|
|
|
|
}, |
4773
|
|
|
|
|
|
|
'Europe/Astrakhan' => { |
4774
|
|
|
|
|
|
|
exemplarCity => q#Astrakhan#, |
4775
|
|
|
|
|
|
|
}, |
4776
|
|
|
|
|
|
|
'Europe/Athens' => { |
4777
|
|
|
|
|
|
|
exemplarCity => q#Athenas#, |
4778
|
|
|
|
|
|
|
}, |
4779
|
|
|
|
|
|
|
'Europe/Belgrade' => { |
4780
|
|
|
|
|
|
|
exemplarCity => q#Belgrado#, |
4781
|
|
|
|
|
|
|
}, |
4782
|
|
|
|
|
|
|
'Europe/Berlin' => { |
4783
|
|
|
|
|
|
|
exemplarCity => q#Berlin#, |
4784
|
|
|
|
|
|
|
}, |
4785
|
|
|
|
|
|
|
'Europe/Bratislava' => { |
4786
|
|
|
|
|
|
|
exemplarCity => q#Bratislava#, |
4787
|
|
|
|
|
|
|
}, |
4788
|
|
|
|
|
|
|
'Europe/Brussels' => { |
4789
|
|
|
|
|
|
|
exemplarCity => q#Bruxelles#, |
4790
|
|
|
|
|
|
|
}, |
4791
|
|
|
|
|
|
|
'Europe/Bucharest' => { |
4792
|
|
|
|
|
|
|
exemplarCity => q#Bucarest#, |
4793
|
|
|
|
|
|
|
}, |
4794
|
|
|
|
|
|
|
'Europe/Budapest' => { |
4795
|
|
|
|
|
|
|
exemplarCity => q#Budapest#, |
4796
|
|
|
|
|
|
|
}, |
4797
|
|
|
|
|
|
|
'Europe/Busingen' => { |
4798
|
|
|
|
|
|
|
exemplarCity => q#Büsingen#, |
4799
|
|
|
|
|
|
|
}, |
4800
|
|
|
|
|
|
|
'Europe/Chisinau' => { |
4801
|
|
|
|
|
|
|
exemplarCity => q#Chisinau#, |
4802
|
|
|
|
|
|
|
}, |
4803
|
|
|
|
|
|
|
'Europe/Copenhagen' => { |
4804
|
|
|
|
|
|
|
exemplarCity => q#Copenhagen#, |
4805
|
|
|
|
|
|
|
}, |
4806
|
|
|
|
|
|
|
'Europe/Dublin' => { |
4807
|
|
|
|
|
|
|
exemplarCity => q#Dublin#, |
4808
|
|
|
|
|
|
|
long => { |
4809
|
|
|
|
|
|
|
'daylight' => q#Hora estive irlandese#, |
4810
|
|
|
|
|
|
|
}, |
4811
|
|
|
|
|
|
|
}, |
4812
|
|
|
|
|
|
|
'Europe/Gibraltar' => { |
4813
|
|
|
|
|
|
|
exemplarCity => q#Gibraltar#, |
4814
|
|
|
|
|
|
|
}, |
4815
|
|
|
|
|
|
|
'Europe/Guernsey' => { |
4816
|
|
|
|
|
|
|
exemplarCity => q#Guernsey#, |
4817
|
|
|
|
|
|
|
}, |
4818
|
|
|
|
|
|
|
'Europe/Helsinki' => { |
4819
|
|
|
|
|
|
|
exemplarCity => q#Helsinki#, |
4820
|
|
|
|
|
|
|
}, |
4821
|
|
|
|
|
|
|
'Europe/Isle_of_Man' => { |
4822
|
|
|
|
|
|
|
exemplarCity => q#Insula de Man#, |
4823
|
|
|
|
|
|
|
}, |
4824
|
|
|
|
|
|
|
'Europe/Jersey' => { |
4825
|
|
|
|
|
|
|
exemplarCity => q#Jersey#, |
4826
|
|
|
|
|
|
|
}, |
4827
|
|
|
|
|
|
|
'Europe/Kaliningrad' => { |
4828
|
|
|
|
|
|
|
exemplarCity => q#Kaliningrad#, |
4829
|
|
|
|
|
|
|
}, |
4830
|
|
|
|
|
|
|
'Europe/Kiev' => { |
4831
|
|
|
|
|
|
|
exemplarCity => q#Kiev#, |
4832
|
|
|
|
|
|
|
}, |
4833
|
|
|
|
|
|
|
'Europe/Kirov' => { |
4834
|
|
|
|
|
|
|
exemplarCity => q#Kirov#, |
4835
|
|
|
|
|
|
|
}, |
4836
|
|
|
|
|
|
|
'Europe/Lisbon' => { |
4837
|
|
|
|
|
|
|
exemplarCity => q#Lisbona#, |
4838
|
|
|
|
|
|
|
}, |
4839
|
|
|
|
|
|
|
'Europe/Ljubljana' => { |
4840
|
|
|
|
|
|
|
exemplarCity => q#Ljubljana#, |
4841
|
|
|
|
|
|
|
}, |
4842
|
|
|
|
|
|
|
'Europe/London' => { |
4843
|
|
|
|
|
|
|
exemplarCity => q#London#, |
4844
|
|
|
|
|
|
|
long => { |
4845
|
|
|
|
|
|
|
'daylight' => q#Hora estive britannic#, |
4846
|
|
|
|
|
|
|
}, |
4847
|
|
|
|
|
|
|
}, |
4848
|
|
|
|
|
|
|
'Europe/Luxembourg' => { |
4849
|
|
|
|
|
|
|
exemplarCity => q#Luxemburg#, |
4850
|
|
|
|
|
|
|
}, |
4851
|
|
|
|
|
|
|
'Europe/Madrid' => { |
4852
|
|
|
|
|
|
|
exemplarCity => q#Madrid#, |
4853
|
|
|
|
|
|
|
}, |
4854
|
|
|
|
|
|
|
'Europe/Malta' => { |
4855
|
|
|
|
|
|
|
exemplarCity => q#Malta#, |
4856
|
|
|
|
|
|
|
}, |
4857
|
|
|
|
|
|
|
'Europe/Mariehamn' => { |
4858
|
|
|
|
|
|
|
exemplarCity => q#Mariehamn#, |
4859
|
|
|
|
|
|
|
}, |
4860
|
|
|
|
|
|
|
'Europe/Minsk' => { |
4861
|
|
|
|
|
|
|
exemplarCity => q#Minsk#, |
4862
|
|
|
|
|
|
|
}, |
4863
|
|
|
|
|
|
|
'Europe/Monaco' => { |
4864
|
|
|
|
|
|
|
exemplarCity => q#Monaco#, |
4865
|
|
|
|
|
|
|
}, |
4866
|
|
|
|
|
|
|
'Europe/Moscow' => { |
4867
|
|
|
|
|
|
|
exemplarCity => q#Moscova#, |
4868
|
|
|
|
|
|
|
}, |
4869
|
|
|
|
|
|
|
'Europe/Oslo' => { |
4870
|
|
|
|
|
|
|
exemplarCity => q#Oslo#, |
4871
|
|
|
|
|
|
|
}, |
4872
|
|
|
|
|
|
|
'Europe/Paris' => { |
4873
|
|
|
|
|
|
|
exemplarCity => q#Paris#, |
4874
|
|
|
|
|
|
|
}, |
4875
|
|
|
|
|
|
|
'Europe/Podgorica' => { |
4876
|
|
|
|
|
|
|
exemplarCity => q#Podgorica#, |
4877
|
|
|
|
|
|
|
}, |
4878
|
|
|
|
|
|
|
'Europe/Prague' => { |
4879
|
|
|
|
|
|
|
exemplarCity => q#Praga#, |
4880
|
|
|
|
|
|
|
}, |
4881
|
|
|
|
|
|
|
'Europe/Riga' => { |
4882
|
|
|
|
|
|
|
exemplarCity => q#Riga#, |
4883
|
|
|
|
|
|
|
}, |
4884
|
|
|
|
|
|
|
'Europe/Rome' => { |
4885
|
|
|
|
|
|
|
exemplarCity => q#Roma#, |
4886
|
|
|
|
|
|
|
}, |
4887
|
|
|
|
|
|
|
'Europe/Samara' => { |
4888
|
|
|
|
|
|
|
exemplarCity => q#Samara#, |
4889
|
|
|
|
|
|
|
}, |
4890
|
|
|
|
|
|
|
'Europe/San_Marino' => { |
4891
|
|
|
|
|
|
|
exemplarCity => q#San Marino#, |
4892
|
|
|
|
|
|
|
}, |
4893
|
|
|
|
|
|
|
'Europe/Sarajevo' => { |
4894
|
|
|
|
|
|
|
exemplarCity => q#Sarajevo#, |
4895
|
|
|
|
|
|
|
}, |
4896
|
|
|
|
|
|
|
'Europe/Saratov' => { |
4897
|
|
|
|
|
|
|
exemplarCity => q#Saratov#, |
4898
|
|
|
|
|
|
|
}, |
4899
|
|
|
|
|
|
|
'Europe/Simferopol' => { |
4900
|
|
|
|
|
|
|
exemplarCity => q#Simferopol#, |
4901
|
|
|
|
|
|
|
}, |
4902
|
|
|
|
|
|
|
'Europe/Skopje' => { |
4903
|
|
|
|
|
|
|
exemplarCity => q#Skopje#, |
4904
|
|
|
|
|
|
|
}, |
4905
|
|
|
|
|
|
|
'Europe/Sofia' => { |
4906
|
|
|
|
|
|
|
exemplarCity => q#Sofia#, |
4907
|
|
|
|
|
|
|
}, |
4908
|
|
|
|
|
|
|
'Europe/Stockholm' => { |
4909
|
|
|
|
|
|
|
exemplarCity => q#Stockholm#, |
4910
|
|
|
|
|
|
|
}, |
4911
|
|
|
|
|
|
|
'Europe/Tallinn' => { |
4912
|
|
|
|
|
|
|
exemplarCity => q#Tallinn#, |
4913
|
|
|
|
|
|
|
}, |
4914
|
|
|
|
|
|
|
'Europe/Tirane' => { |
4915
|
|
|
|
|
|
|
exemplarCity => q#Tirana#, |
4916
|
|
|
|
|
|
|
}, |
4917
|
|
|
|
|
|
|
'Europe/Ulyanovsk' => { |
4918
|
|
|
|
|
|
|
exemplarCity => q#Ulyanovsk#, |
4919
|
|
|
|
|
|
|
}, |
4920
|
|
|
|
|
|
|
'Europe/Uzhgorod' => { |
4921
|
|
|
|
|
|
|
exemplarCity => q#Uzhgorod#, |
4922
|
|
|
|
|
|
|
}, |
4923
|
|
|
|
|
|
|
'Europe/Vaduz' => { |
4924
|
|
|
|
|
|
|
exemplarCity => q#Vaduz#, |
4925
|
|
|
|
|
|
|
}, |
4926
|
|
|
|
|
|
|
'Europe/Vatican' => { |
4927
|
|
|
|
|
|
|
exemplarCity => q#Vaticano#, |
4928
|
|
|
|
|
|
|
}, |
4929
|
|
|
|
|
|
|
'Europe/Vienna' => { |
4930
|
|
|
|
|
|
|
exemplarCity => q#Vienna#, |
4931
|
|
|
|
|
|
|
}, |
4932
|
|
|
|
|
|
|
'Europe/Vilnius' => { |
4933
|
|
|
|
|
|
|
exemplarCity => q#Vilnius#, |
4934
|
|
|
|
|
|
|
}, |
4935
|
|
|
|
|
|
|
'Europe/Volgograd' => { |
4936
|
|
|
|
|
|
|
exemplarCity => q#Volgograd#, |
4937
|
|
|
|
|
|
|
}, |
4938
|
|
|
|
|
|
|
'Europe/Warsaw' => { |
4939
|
|
|
|
|
|
|
exemplarCity => q#Varsovia#, |
4940
|
|
|
|
|
|
|
}, |
4941
|
|
|
|
|
|
|
'Europe/Zagreb' => { |
4942
|
|
|
|
|
|
|
exemplarCity => q#Zagreb#, |
4943
|
|
|
|
|
|
|
}, |
4944
|
|
|
|
|
|
|
'Europe/Zaporozhye' => { |
4945
|
|
|
|
|
|
|
exemplarCity => q#Zaporozhye#, |
4946
|
|
|
|
|
|
|
}, |
4947
|
|
|
|
|
|
|
'Europe/Zurich' => { |
4948
|
|
|
|
|
|
|
exemplarCity => q#Zurich#, |
4949
|
|
|
|
|
|
|
}, |
4950
|
|
|
|
|
|
|
'Europe_Central' => { |
4951
|
|
|
|
|
|
|
long => { |
4952
|
|
|
|
|
|
|
'daylight' => q#hora estive de Europa central#, |
4953
|
|
|
|
|
|
|
'generic' => q#hora de Europa central#, |
4954
|
|
|
|
|
|
|
'standard' => q#hora normal de Europa central#, |
4955
|
|
|
|
|
|
|
}, |
4956
|
|
|
|
|
|
|
}, |
4957
|
|
|
|
|
|
|
'Europe_Eastern' => { |
4958
|
|
|
|
|
|
|
long => { |
4959
|
|
|
|
|
|
|
'daylight' => q#hora estive de Europa oriental#, |
4960
|
|
|
|
|
|
|
'generic' => q#hora de Europa oriental#, |
4961
|
|
|
|
|
|
|
'standard' => q#hora normal de Europa oriental#, |
4962
|
|
|
|
|
|
|
}, |
4963
|
|
|
|
|
|
|
}, |
4964
|
|
|
|
|
|
|
'Europe_Further_Eastern' => { |
4965
|
|
|
|
|
|
|
long => { |
4966
|
|
|
|
|
|
|
'standard' => q#hora de Europa ultra-oriental#, |
4967
|
|
|
|
|
|
|
}, |
4968
|
|
|
|
|
|
|
}, |
4969
|
|
|
|
|
|
|
'Europe_Western' => { |
4970
|
|
|
|
|
|
|
long => { |
4971
|
|
|
|
|
|
|
'daylight' => q#hora estive de Europa occidental#, |
4972
|
|
|
|
|
|
|
'generic' => q#hora de Europa occidental#, |
4973
|
|
|
|
|
|
|
'standard' => q#hora normal de Europa occidental#, |
4974
|
|
|
|
|
|
|
}, |
4975
|
|
|
|
|
|
|
}, |
4976
|
|
|
|
|
|
|
'GMT' => { |
4977
|
|
|
|
|
|
|
long => { |
4978
|
|
|
|
|
|
|
'standard' => q#hora medie de Greenwich#, |
4979
|
|
|
|
|
|
|
}, |
4980
|
|
|
|
|
|
|
}, |
4981
|
|
|
|
|
|
|
'Greenland_Eastern' => { |
4982
|
|
|
|
|
|
|
long => { |
4983
|
|
|
|
|
|
|
'daylight' => q#hora estive de Groenlandia oriental#, |
4984
|
|
|
|
|
|
|
'generic' => q#hora de Groenlandia oriental#, |
4985
|
|
|
|
|
|
|
'standard' => q#hora normal de Groenlandia oriental#, |
4986
|
|
|
|
|
|
|
}, |
4987
|
|
|
|
|
|
|
}, |
4988
|
|
|
|
|
|
|
'Greenland_Western' => { |
4989
|
|
|
|
|
|
|
long => { |
4990
|
|
|
|
|
|
|
'daylight' => q#hora estive de Groenlandia occidental#, |
4991
|
|
|
|
|
|
|
'generic' => q#hora de Groenlandia occidental#, |
4992
|
|
|
|
|
|
|
'standard' => q#hora normal de Groenlandia occidental#, |
4993
|
|
|
|
|
|
|
}, |
4994
|
|
|
|
|
|
|
}, |
4995
|
|
|
|
|
|
|
'Hawaii_Aleutian' => { |
4996
|
|
|
|
|
|
|
long => { |
4997
|
|
|
|
|
|
|
'daylight' => q#hora estive de Hawaii-Aleutianas#, |
4998
|
|
|
|
|
|
|
'generic' => q#hora de Hawaii-Aleutianas#, |
4999
|
|
|
|
|
|
|
'standard' => q#hora normal de Hawaii-Aleutianas#, |
5000
|
|
|
|
|
|
|
}, |
5001
|
|
|
|
|
|
|
}, |
5002
|
|
|
|
|
|
|
'Indian/Maldives' => { |
5003
|
|
|
|
|
|
|
exemplarCity => q#Maldivas#, |
5004
|
|
|
|
|
|
|
}, |
5005
|
|
|
|
|
|
|
'Indian/Mauritius' => { |
5006
|
|
|
|
|
|
|
exemplarCity => q#Mauritio#, |
5007
|
|
|
|
|
|
|
}, |
5008
|
|
|
|
|
|
|
'Indian/Mayotte' => { |
5009
|
|
|
|
|
|
|
exemplarCity => q#Mayotta#, |
5010
|
|
|
|
|
|
|
}, |
5011
|
|
|
|
|
|
|
'Irkutsk' => { |
5012
|
|
|
|
|
|
|
long => { |
5013
|
|
|
|
|
|
|
'daylight' => q#hora estive de Irkutsk#, |
5014
|
|
|
|
|
|
|
'generic' => q#hora de Irkutsk#, |
5015
|
|
|
|
|
|
|
'standard' => q#hora normal de Irkutsk#, |
5016
|
|
|
|
|
|
|
}, |
5017
|
|
|
|
|
|
|
}, |
5018
|
|
|
|
|
|
|
'Krasnoyarsk' => { |
5019
|
|
|
|
|
|
|
long => { |
5020
|
|
|
|
|
|
|
'daylight' => q#hora estive de Krasnoyarsk#, |
5021
|
|
|
|
|
|
|
'generic' => q#hora de Krasnoyarsk#, |
5022
|
|
|
|
|
|
|
'standard' => q#hora normal de Krasnoyarsk#, |
5023
|
|
|
|
|
|
|
}, |
5024
|
|
|
|
|
|
|
}, |
5025
|
|
|
|
|
|
|
'Magadan' => { |
5026
|
|
|
|
|
|
|
long => { |
5027
|
|
|
|
|
|
|
'daylight' => q#hora estive de Magadan#, |
5028
|
|
|
|
|
|
|
'generic' => q#hora de Magadan#, |
5029
|
|
|
|
|
|
|
'standard' => q#hora normal de Magadan#, |
5030
|
|
|
|
|
|
|
}, |
5031
|
|
|
|
|
|
|
}, |
5032
|
|
|
|
|
|
|
'Mexico_Northwest' => { |
5033
|
|
|
|
|
|
|
long => { |
5034
|
|
|
|
|
|
|
'daylight' => q#hora estive del nordwest de Mexico#, |
5035
|
|
|
|
|
|
|
'generic' => q#hora del nordwest de Mexico#, |
5036
|
|
|
|
|
|
|
'standard' => q#hora normal del nordwest de Mexico#, |
5037
|
|
|
|
|
|
|
}, |
5038
|
|
|
|
|
|
|
}, |
5039
|
|
|
|
|
|
|
'Mexico_Pacific' => { |
5040
|
|
|
|
|
|
|
long => { |
5041
|
|
|
|
|
|
|
'daylight' => q#hora estive del Pacifico mexican#, |
5042
|
|
|
|
|
|
|
'generic' => q#hora del Pacifico mexican#, |
5043
|
|
|
|
|
|
|
'standard' => q#hora normal del Pacifico mexican#, |
5044
|
|
|
|
|
|
|
}, |
5045
|
|
|
|
|
|
|
}, |
5046
|
|
|
|
|
|
|
'Moscow' => { |
5047
|
|
|
|
|
|
|
long => { |
5048
|
|
|
|
|
|
|
'daylight' => q#hora estive de Moscova#, |
5049
|
|
|
|
|
|
|
'generic' => q#hora de Moscova#, |
5050
|
|
|
|
|
|
|
'standard' => q#hora normal de Moscova#, |
5051
|
|
|
|
|
|
|
}, |
5052
|
|
|
|
|
|
|
}, |
5053
|
|
|
|
|
|
|
'Newfoundland' => { |
5054
|
|
|
|
|
|
|
long => { |
5055
|
|
|
|
|
|
|
'daylight' => q#hora estive de Terranova#, |
5056
|
|
|
|
|
|
|
'generic' => q#hora de Terranova#, |
5057
|
|
|
|
|
|
|
'standard' => q#hora normal de Terranova#, |
5058
|
|
|
|
|
|
|
}, |
5059
|
|
|
|
|
|
|
}, |
5060
|
|
|
|
|
|
|
'Novosibirsk' => { |
5061
|
|
|
|
|
|
|
long => { |
5062
|
|
|
|
|
|
|
'daylight' => q#hora estive de Novosibirsk#, |
5063
|
|
|
|
|
|
|
'generic' => q#hora de Novosibirsk#, |
5064
|
|
|
|
|
|
|
'standard' => q#hora normal de Novosibirsk#, |
5065
|
|
|
|
|
|
|
}, |
5066
|
|
|
|
|
|
|
}, |
5067
|
|
|
|
|
|
|
'Omsk' => { |
5068
|
|
|
|
|
|
|
long => { |
5069
|
|
|
|
|
|
|
'daylight' => q#hora estive de Omsk#, |
5070
|
|
|
|
|
|
|
'generic' => q#hora de Omsk#, |
5071
|
|
|
|
|
|
|
'standard' => q#hora normal de Omsk#, |
5072
|
|
|
|
|
|
|
}, |
5073
|
|
|
|
|
|
|
}, |
5074
|
|
|
|
|
|
|
'Pacific/Pitcairn' => { |
5075
|
|
|
|
|
|
|
exemplarCity => q#Insula Pitcairn#, |
5076
|
|
|
|
|
|
|
}, |
5077
|
|
|
|
|
|
|
'Pierre_Miquelon' => { |
5078
|
|
|
|
|
|
|
long => { |
5079
|
|
|
|
|
|
|
'daylight' => q#hora estive de Saint-Pierre e Miquelon#, |
5080
|
|
|
|
|
|
|
'generic' => q#hora de Saint-Pierre e Miquelon#, |
5081
|
|
|
|
|
|
|
'standard' => q#hora normal de Saint-Pierre e Miquelon#, |
5082
|
|
|
|
|
|
|
}, |
5083
|
|
|
|
|
|
|
}, |
5084
|
|
|
|
|
|
|
'Sakhalin' => { |
5085
|
|
|
|
|
|
|
long => { |
5086
|
|
|
|
|
|
|
'daylight' => q#hora estive de Sachalin#, |
5087
|
|
|
|
|
|
|
'generic' => q#hora de Sachalin#, |
5088
|
|
|
|
|
|
|
'standard' => q#hora normal de Sachalin#, |
5089
|
|
|
|
|
|
|
}, |
5090
|
|
|
|
|
|
|
}, |
5091
|
|
|
|
|
|
|
'Vladivostok' => { |
5092
|
|
|
|
|
|
|
long => { |
5093
|
|
|
|
|
|
|
'daylight' => q#hora estive de Vladivostok#, |
5094
|
|
|
|
|
|
|
'generic' => q#hora de Vladivostok#, |
5095
|
|
|
|
|
|
|
'standard' => q#hora normal de Vladivostok#, |
5096
|
|
|
|
|
|
|
}, |
5097
|
|
|
|
|
|
|
}, |
5098
|
|
|
|
|
|
|
'Volgograd' => { |
5099
|
|
|
|
|
|
|
long => { |
5100
|
|
|
|
|
|
|
'daylight' => q#hora estive de Volgograd#, |
5101
|
|
|
|
|
|
|
'generic' => q#hora de Volgograd#, |
5102
|
|
|
|
|
|
|
'standard' => q#hora normal de Volgograd#, |
5103
|
|
|
|
|
|
|
}, |
5104
|
|
|
|
|
|
|
}, |
5105
|
|
|
|
|
|
|
'Yakutsk' => { |
5106
|
|
|
|
|
|
|
long => { |
5107
|
|
|
|
|
|
|
'daylight' => q#hora estive de Yakutsk#, |
5108
|
|
|
|
|
|
|
'generic' => q#hora de Yakutsk#, |
5109
|
|
|
|
|
|
|
'standard' => q#hora normal de Yakutsk#, |
5110
|
|
|
|
|
|
|
}, |
5111
|
|
|
|
|
|
|
}, |
5112
|
|
|
|
|
|
|
'Yekaterinburg' => { |
5113
|
|
|
|
|
|
|
long => { |
5114
|
|
|
|
|
|
|
'daylight' => q#hora estive de Ekaterinburg#, |
5115
|
|
|
|
|
|
|
'generic' => q#hora de Ekaterinburg#, |
5116
|
|
|
|
|
|
|
'standard' => q#hora normal de Ekaterinburg#, |
5117
|
|
|
|
|
|
|
}, |
5118
|
|
|
|
|
|
|
}, |
5119
|
|
|
|
|
|
|
} } |
5120
|
|
|
|
|
|
|
); |
5121
|
1
|
|
|
1
|
|
9115
|
no Moo; |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
13
|
|
5122
|
|
|
|
|
|
|
|
5123
|
|
|
|
|
|
|
1; |
5124
|
|
|
|
|
|
|
|
5125
|
|
|
|
|
|
|
# vim: tabstop=4 |