line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
=encoding utf8 |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
=head1 |
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
Locale::CLDR::Locales::En::Any::Au - Package for language English |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
=cut |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
# This file auto generated from Data/common/main/en_AU.xml |
10
|
|
|
|
|
|
|
# on Mon 11 Apr 5:27:00 pm GMT |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
use strict; |
13
|
1
|
|
|
1
|
|
810
|
use warnings; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
22
|
|
14
|
1
|
|
|
1
|
|
4
|
use version; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
17
|
|
15
|
1
|
|
|
1
|
|
4
|
|
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
3
|
|
16
|
|
|
|
|
|
|
our $VERSION = version->declare('v0.34.1'); |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
use v5.10.1; |
19
|
1
|
|
|
1
|
|
114
|
use mro 'c3'; |
|
1
|
|
|
|
|
3
|
|
20
|
1
|
|
|
1
|
|
5
|
use utf8; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
4
|
|
21
|
1
|
|
|
1
|
|
29
|
use if $^V ge v5.12.0, feature => 'unicode_strings'; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
4
|
|
22
|
1
|
|
|
1
|
|
26
|
use Types::Standard qw( Str Int HashRef ArrayRef CodeRef RegexpRef ); |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
9
|
|
23
|
1
|
|
|
1
|
|
83
|
use Moo; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
4
|
|
24
|
1
|
|
|
1
|
|
766
|
|
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
4
|
|
25
|
|
|
|
|
|
|
extends('Locale::CLDR::Locales::En::Any::001'); |
26
|
|
|
|
|
|
|
has 'display_name_language' => ( |
27
|
|
|
|
|
|
|
is => 'ro', |
28
|
|
|
|
|
|
|
isa => CodeRef, |
29
|
|
|
|
|
|
|
init_arg => undef, |
30
|
|
|
|
|
|
|
default => sub { |
31
|
|
|
|
|
|
|
sub { |
32
|
|
|
|
|
|
|
my %languages = ( |
33
|
|
|
|
|
|
|
'bn' => 'Bengali', |
34
|
|
|
|
|
|
|
'en_US' => 'United States English', |
35
|
|
|
|
|
|
|
'frc' => 'frc', |
36
|
|
|
|
|
|
|
'lou' => 'lou', |
37
|
|
|
|
|
|
|
'ro_MD' => 'Moldovan', |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
); |
40
|
|
|
|
|
|
|
if (@_) { |
41
|
|
|
|
|
|
|
return $languages{$_[0]}; |
42
|
|
|
|
|
|
|
} |
43
|
|
|
|
|
|
|
return \%languages; |
44
|
|
|
|
|
|
|
} |
45
|
|
|
|
|
|
|
}, |
46
|
|
|
|
|
|
|
); |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
has 'display_name_script' => ( |
49
|
|
|
|
|
|
|
is => 'ro', |
50
|
|
|
|
|
|
|
isa => CodeRef, |
51
|
|
|
|
|
|
|
init_arg => undef, |
52
|
|
|
|
|
|
|
default => sub { |
53
|
|
|
|
|
|
|
sub { |
54
|
|
|
|
|
|
|
my %scripts = ( |
55
|
|
|
|
|
|
|
'Beng' => 'Bengali', |
56
|
|
|
|
|
|
|
'Cham' => 'Cham', |
57
|
|
|
|
|
|
|
'Modi' => 'Modi', |
58
|
|
|
|
|
|
|
'Thai' => 'Thai', |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
); |
61
|
|
|
|
|
|
|
if ( @_ ) { |
62
|
|
|
|
|
|
|
return $scripts{$_[0]}; |
63
|
|
|
|
|
|
|
} |
64
|
|
|
|
|
|
|
return \%scripts; |
65
|
|
|
|
|
|
|
} |
66
|
|
|
|
|
|
|
} |
67
|
|
|
|
|
|
|
); |
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
has 'display_name_type' => ( |
70
|
|
|
|
|
|
|
is => 'ro', |
71
|
|
|
|
|
|
|
isa => HashRef[HashRef[Str]], |
72
|
|
|
|
|
|
|
init_arg => undef, |
73
|
|
|
|
|
|
|
default => sub { |
74
|
|
|
|
|
|
|
{ |
75
|
|
|
|
|
|
|
'calendar' => { |
76
|
|
|
|
|
|
|
'dangi' => q{Korean Calendar}, |
77
|
|
|
|
|
|
|
'ethiopic' => q{Ethiopian Calendar}, |
78
|
|
|
|
|
|
|
}, |
79
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
} |
81
|
|
|
|
|
|
|
}, |
82
|
|
|
|
|
|
|
); |
83
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
has 'characters' => ( |
85
|
|
|
|
|
|
|
is => 'ro', |
86
|
|
|
|
|
|
|
isa => HashRef, |
87
|
|
|
|
|
|
|
init_arg => undef, |
88
|
|
|
|
|
|
|
default => $^V ge v5.18.0 |
89
|
|
|
|
|
|
|
? eval <<'EOT' |
90
|
|
|
|
|
|
|
sub { |
91
|
|
|
|
|
|
|
no warnings 'experimental::regex_sets'; |
92
|
|
|
|
|
|
|
return { |
93
|
|
|
|
|
|
|
numbers => qr{[↑]}, |
94
|
|
|
|
|
|
|
}; |
95
|
|
|
|
|
|
|
}, |
96
|
|
|
|
|
|
|
EOT |
97
|
|
|
|
|
|
|
: sub { |
98
|
|
|
|
|
|
|
return {}; |
99
|
|
|
|
|
|
|
}, |
100
|
|
|
|
|
|
|
); |
101
|
1
|
|
|
1
|
|
94
|
|
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
72
|
|
102
|
|
|
|
|
|
|
|
103
|
|
|
|
|
|
|
has 'units' => ( |
104
|
|
|
|
|
|
|
is => 'ro', |
105
|
|
|
|
|
|
|
isa => HashRef[HashRef[HashRef[Str]]], |
106
|
|
|
|
|
|
|
init_arg => undef, |
107
|
|
|
|
|
|
|
default => sub { { |
108
|
|
|
|
|
|
|
'long' => { |
109
|
|
|
|
|
|
|
'generic' => { |
110
|
|
|
|
|
|
|
'name' => q(degrees), |
111
|
|
|
|
|
|
|
'one' => q({0} degree), |
112
|
|
|
|
|
|
|
'other' => q({0} degrees), |
113
|
|
|
|
|
|
|
}, |
114
|
|
|
|
|
|
|
'kilometer' => { |
115
|
|
|
|
|
|
|
'name' => q(kilometre), |
116
|
|
|
|
|
|
|
}, |
117
|
|
|
|
|
|
|
'kilowatt-hour' => { |
118
|
|
|
|
|
|
|
'name' => q(kilowatt hours), |
119
|
|
|
|
|
|
|
'one' => q({0} kilowatt hour), |
120
|
|
|
|
|
|
|
'other' => q({0} kilowatt hours), |
121
|
|
|
|
|
|
|
}, |
122
|
|
|
|
|
|
|
'metric-ton' => { |
123
|
|
|
|
|
|
|
'name' => q(tonnes), |
124
|
|
|
|
|
|
|
'one' => q(tonne), |
125
|
|
|
|
|
|
|
'other' => q({0} tonnes), |
126
|
|
|
|
|
|
|
}, |
127
|
|
|
|
|
|
|
'micrometer' => { |
128
|
|
|
|
|
|
|
'name' => q(micrometres), |
129
|
|
|
|
|
|
|
}, |
130
|
|
|
|
|
|
|
'percent' => { |
131
|
|
|
|
|
|
|
'name' => q(per cent), |
132
|
|
|
|
|
|
|
'one' => q({0} per cent), |
133
|
|
|
|
|
|
|
'other' => q({0} per cent), |
134
|
|
|
|
|
|
|
}, |
135
|
|
|
|
|
|
|
'permille' => { |
136
|
|
|
|
|
|
|
'name' => q(per mill), |
137
|
|
|
|
|
|
|
'one' => q({0} per mill), |
138
|
|
|
|
|
|
|
'other' => q({0} per mill), |
139
|
|
|
|
|
|
|
}, |
140
|
|
|
|
|
|
|
'stone' => { |
141
|
|
|
|
|
|
|
'one' => q({0} stone), |
142
|
|
|
|
|
|
|
}, |
143
|
|
|
|
|
|
|
}, |
144
|
|
|
|
|
|
|
'narrow' => { |
145
|
|
|
|
|
|
|
'bushel' => { |
146
|
|
|
|
|
|
|
'one' => q({0} bus.), |
147
|
|
|
|
|
|
|
'other' => q({0} bus.), |
148
|
|
|
|
|
|
|
}, |
149
|
|
|
|
|
|
|
'celsius' => { |
150
|
|
|
|
|
|
|
'one' => q({0}°C), |
151
|
|
|
|
|
|
|
'other' => q({0}°C), |
152
|
|
|
|
|
|
|
}, |
153
|
|
|
|
|
|
|
'centiliter' => { |
154
|
|
|
|
|
|
|
'name' => q(cL), |
155
|
|
|
|
|
|
|
'one' => q({0}cL), |
156
|
|
|
|
|
|
|
'other' => q({0}cL), |
157
|
|
|
|
|
|
|
}, |
158
|
|
|
|
|
|
|
'deciliter' => { |
159
|
|
|
|
|
|
|
'name' => q(dL), |
160
|
|
|
|
|
|
|
'one' => q({0}dL), |
161
|
|
|
|
|
|
|
'other' => q({0}dL), |
162
|
|
|
|
|
|
|
}, |
163
|
|
|
|
|
|
|
'hectoliter' => { |
164
|
|
|
|
|
|
|
'name' => q(hL), |
165
|
|
|
|
|
|
|
'one' => q({0}hL), |
166
|
|
|
|
|
|
|
'other' => q({0}hL), |
167
|
|
|
|
|
|
|
}, |
168
|
|
|
|
|
|
|
'kilometer-per-hour' => { |
169
|
|
|
|
|
|
|
'one' => q({0} km/h), |
170
|
|
|
|
|
|
|
'other' => q({0} km/h), |
171
|
|
|
|
|
|
|
}, |
172
|
|
|
|
|
|
|
'liter' => { |
173
|
|
|
|
|
|
|
'one' => q({0}L), |
174
|
|
|
|
|
|
|
'other' => q({0}L), |
175
|
|
|
|
|
|
|
'per' => q({0}/L), |
176
|
|
|
|
|
|
|
}, |
177
|
|
|
|
|
|
|
'liter-per-100kilometers' => { |
178
|
|
|
|
|
|
|
'name' => q(L/100km), |
179
|
|
|
|
|
|
|
'one' => q({0}L/100km), |
180
|
|
|
|
|
|
|
'other' => q({0}L/100km), |
181
|
|
|
|
|
|
|
}, |
182
|
|
|
|
|
|
|
'liter-per-kilometer' => { |
183
|
|
|
|
|
|
|
'name' => q(L/km), |
184
|
|
|
|
|
|
|
'one' => q({0}L/km), |
185
|
|
|
|
|
|
|
'other' => q({0}L/km), |
186
|
|
|
|
|
|
|
}, |
187
|
|
|
|
|
|
|
'megaliter' => { |
188
|
|
|
|
|
|
|
'name' => q(ML), |
189
|
|
|
|
|
|
|
'one' => q({0}ML), |
190
|
|
|
|
|
|
|
'other' => q({0}ML), |
191
|
|
|
|
|
|
|
}, |
192
|
|
|
|
|
|
|
'mile-per-hour' => { |
193
|
|
|
|
|
|
|
'name' => q(m.p.h.), |
194
|
|
|
|
|
|
|
'one' => q({0} m.p.h.), |
195
|
|
|
|
|
|
|
'other' => q({0} m.p.h.), |
196
|
|
|
|
|
|
|
}, |
197
|
|
|
|
|
|
|
'milligram-per-deciliter' => { |
198
|
|
|
|
|
|
|
'name' => q(mg/dL), |
199
|
|
|
|
|
|
|
'one' => q({0}mg/dL), |
200
|
|
|
|
|
|
|
'other' => q({0}mg/dL), |
201
|
|
|
|
|
|
|
}, |
202
|
|
|
|
|
|
|
'milliliter' => { |
203
|
|
|
|
|
|
|
'name' => q(mL), |
204
|
|
|
|
|
|
|
'one' => q({0}mL), |
205
|
|
|
|
|
|
|
'other' => q({0}mL), |
206
|
|
|
|
|
|
|
}, |
207
|
|
|
|
|
|
|
'millimole-per-liter' => { |
208
|
|
|
|
|
|
|
'name' => q(mmol/L), |
209
|
|
|
|
|
|
|
'one' => q({0}mmol/L), |
210
|
|
|
|
|
|
|
'other' => q({0}mmol/L), |
211
|
|
|
|
|
|
|
}, |
212
|
|
|
|
|
|
|
'millisecond' => { |
213
|
|
|
|
|
|
|
'name' => q(msec.), |
214
|
|
|
|
|
|
|
'one' => q({0} ms), |
215
|
|
|
|
|
|
|
'other' => q({0} ms), |
216
|
|
|
|
|
|
|
}, |
217
|
|
|
|
|
|
|
'minute' => { |
218
|
|
|
|
|
|
|
'name' => q(min.), |
219
|
|
|
|
|
|
|
'one' => q({0} min.), |
220
|
|
|
|
|
|
|
'other' => q({0} min.), |
221
|
|
|
|
|
|
|
}, |
222
|
|
|
|
|
|
|
'second' => { |
223
|
|
|
|
|
|
|
'name' => q(sec.), |
224
|
|
|
|
|
|
|
'one' => q({0} s.), |
225
|
|
|
|
|
|
|
'other' => q({0} s.), |
226
|
|
|
|
|
|
|
}, |
227
|
|
|
|
|
|
|
}, |
228
|
|
|
|
|
|
|
'short' => { |
229
|
|
|
|
|
|
|
'arc-minute' => { |
230
|
|
|
|
|
|
|
'name' => q(arcmin.), |
231
|
|
|
|
|
|
|
'one' => q({0} arcmin.), |
232
|
|
|
|
|
|
|
'other' => q({0} arcmin.), |
233
|
|
|
|
|
|
|
}, |
234
|
|
|
|
|
|
|
'arc-second' => { |
235
|
|
|
|
|
|
|
'name' => q(arcsec.), |
236
|
|
|
|
|
|
|
'one' => q({0} arcsec.), |
237
|
|
|
|
|
|
|
'other' => q({0} arcsec.), |
238
|
|
|
|
|
|
|
}, |
239
|
|
|
|
|
|
|
'astronomical-unit' => { |
240
|
|
|
|
|
|
|
'name' => q(AU), |
241
|
|
|
|
|
|
|
'one' => q({0} AU), |
242
|
|
|
|
|
|
|
'other' => q({0} AU), |
243
|
|
|
|
|
|
|
}, |
244
|
|
|
|
|
|
|
'bushel' => { |
245
|
|
|
|
|
|
|
'one' => q({0} bus.), |
246
|
|
|
|
|
|
|
'other' => q({0} bus.), |
247
|
|
|
|
|
|
|
}, |
248
|
|
|
|
|
|
|
'carat' => { |
249
|
|
|
|
|
|
|
'one' => q({0} CM), |
250
|
|
|
|
|
|
|
'other' => q({0} CM), |
251
|
|
|
|
|
|
|
}, |
252
|
|
|
|
|
|
|
'centiliter' => { |
253
|
|
|
|
|
|
|
'name' => q(cL), |
254
|
|
|
|
|
|
|
'one' => q({0} cL), |
255
|
|
|
|
|
|
|
'other' => q({0} cL), |
256
|
|
|
|
|
|
|
}, |
257
|
|
|
|
|
|
|
'century' => { |
258
|
|
|
|
|
|
|
'name' => q(C.), |
259
|
|
|
|
|
|
|
'one' => q({0} C.), |
260
|
|
|
|
|
|
|
'other' => q({0} C.), |
261
|
|
|
|
|
|
|
}, |
262
|
|
|
|
|
|
|
'cubic-centimeter' => { |
263
|
|
|
|
|
|
|
'one' => q({0} cm³), |
264
|
|
|
|
|
|
|
}, |
265
|
|
|
|
|
|
|
'deciliter' => { |
266
|
|
|
|
|
|
|
'name' => q(dL), |
267
|
|
|
|
|
|
|
'one' => q({0} dL), |
268
|
|
|
|
|
|
|
'other' => q({0} dL), |
269
|
|
|
|
|
|
|
}, |
270
|
|
|
|
|
|
|
'degree' => { |
271
|
|
|
|
|
|
|
'one' => q({0} deg.), |
272
|
|
|
|
|
|
|
'other' => q({0} deg.), |
273
|
|
|
|
|
|
|
}, |
274
|
|
|
|
|
|
|
'gallon' => { |
275
|
|
|
|
|
|
|
'name' => q(US gal.), |
276
|
|
|
|
|
|
|
'one' => q({0} gal. US), |
277
|
|
|
|
|
|
|
'other' => q({0} gal. US), |
278
|
|
|
|
|
|
|
'per' => q({0}/gal. US), |
279
|
|
|
|
|
|
|
}, |
280
|
|
|
|
|
|
|
'gallon-imperial' => { |
281
|
|
|
|
|
|
|
'name' => q(gal.), |
282
|
|
|
|
|
|
|
'one' => q({0} gal.), |
283
|
|
|
|
|
|
|
'other' => q({0} gal.), |
284
|
|
|
|
|
|
|
'per' => q({0}/gal.), |
285
|
|
|
|
|
|
|
}, |
286
|
|
|
|
|
|
|
'generic' => { |
287
|
|
|
|
|
|
|
'name' => q(deg.), |
288
|
|
|
|
|
|
|
}, |
289
|
|
|
|
|
|
|
'hectoliter' => { |
290
|
|
|
|
|
|
|
'name' => q(hL), |
291
|
|
|
|
|
|
|
'one' => q({0} hL), |
292
|
|
|
|
|
|
|
'other' => q({0} hL), |
293
|
|
|
|
|
|
|
}, |
294
|
|
|
|
|
|
|
'hour' => { |
295
|
|
|
|
|
|
|
'per' => q({0} phr), |
296
|
|
|
|
|
|
|
}, |
297
|
|
|
|
|
|
|
'kilocalorie' => { |
298
|
|
|
|
|
|
|
'name' => q(Cal), |
299
|
|
|
|
|
|
|
'one' => q({0} Cal), |
300
|
|
|
|
|
|
|
'other' => q({0} Cal), |
301
|
|
|
|
|
|
|
}, |
302
|
|
|
|
|
|
|
'kilowatt-hour' => { |
303
|
|
|
|
|
|
|
'name' => q(kWh), |
304
|
|
|
|
|
|
|
}, |
305
|
|
|
|
|
|
|
'light-year' => { |
306
|
|
|
|
|
|
|
'one' => q({0} l.y.), |
307
|
|
|
|
|
|
|
'other' => q({0} l.y.), |
308
|
|
|
|
|
|
|
}, |
309
|
|
|
|
|
|
|
'liter' => { |
310
|
|
|
|
|
|
|
'one' => q({0} L), |
311
|
|
|
|
|
|
|
'other' => q({0} L), |
312
|
|
|
|
|
|
|
'per' => q({0}/L), |
313
|
|
|
|
|
|
|
}, |
314
|
|
|
|
|
|
|
'liter-per-100kilometers' => { |
315
|
|
|
|
|
|
|
'name' => q(L/100 km), |
316
|
|
|
|
|
|
|
'one' => q({0} L/100 km), |
317
|
|
|
|
|
|
|
'other' => q({0} L/100 km), |
318
|
|
|
|
|
|
|
}, |
319
|
|
|
|
|
|
|
'liter-per-kilometer' => { |
320
|
|
|
|
|
|
|
'one' => q({0} L/km), |
321
|
|
|
|
|
|
|
'other' => q({0} L/km), |
322
|
|
|
|
|
|
|
}, |
323
|
|
|
|
|
|
|
'megaliter' => { |
324
|
|
|
|
|
|
|
'name' => q(ML), |
325
|
|
|
|
|
|
|
'one' => q({0} ML), |
326
|
|
|
|
|
|
|
'other' => q({0} ML), |
327
|
|
|
|
|
|
|
}, |
328
|
|
|
|
|
|
|
'meter-per-second' => { |
329
|
|
|
|
|
|
|
'name' => q(metres/sec.), |
330
|
|
|
|
|
|
|
'one' => q({0} m/s.), |
331
|
|
|
|
|
|
|
'other' => q({0} m/s.), |
332
|
|
|
|
|
|
|
}, |
333
|
|
|
|
|
|
|
'microsecond' => { |
334
|
|
|
|
|
|
|
'name' => q(μsec.), |
335
|
|
|
|
|
|
|
}, |
336
|
|
|
|
|
|
|
'mile-per-gallon' => { |
337
|
|
|
|
|
|
|
'name' => q(miles/gal. US), |
338
|
|
|
|
|
|
|
'one' => q({0} m.p.g. US), |
339
|
|
|
|
|
|
|
'other' => q({0} m.p.g. US), |
340
|
|
|
|
|
|
|
}, |
341
|
|
|
|
|
|
|
'mile-per-gallon-imperial' => { |
342
|
|
|
|
|
|
|
'name' => q(miles/gal.), |
343
|
|
|
|
|
|
|
'one' => q({0} m.p.g.), |
344
|
|
|
|
|
|
|
'other' => q({0} m.p.g.), |
345
|
|
|
|
|
|
|
}, |
346
|
|
|
|
|
|
|
'mile-per-hour' => { |
347
|
|
|
|
|
|
|
'one' => q({0} m.p.h.), |
348
|
|
|
|
|
|
|
'other' => q({0} m.p.h.), |
349
|
|
|
|
|
|
|
}, |
350
|
|
|
|
|
|
|
'millibar' => { |
351
|
|
|
|
|
|
|
'name' => q(mb), |
352
|
|
|
|
|
|
|
'one' => q({0} mb), |
353
|
|
|
|
|
|
|
'other' => q({0} mb), |
354
|
|
|
|
|
|
|
}, |
355
|
|
|
|
|
|
|
'milligram-per-deciliter' => { |
356
|
|
|
|
|
|
|
'name' => q(mg/dL), |
357
|
|
|
|
|
|
|
'one' => q({0} mg/dL), |
358
|
|
|
|
|
|
|
'other' => q({0} mg/dL), |
359
|
|
|
|
|
|
|
}, |
360
|
|
|
|
|
|
|
'milliliter' => { |
361
|
|
|
|
|
|
|
'name' => q(mL), |
362
|
|
|
|
|
|
|
'one' => q({0} mL), |
363
|
|
|
|
|
|
|
'other' => q({0} mL), |
364
|
|
|
|
|
|
|
}, |
365
|
|
|
|
|
|
|
'millimole-per-liter' => { |
366
|
|
|
|
|
|
|
'one' => q({0} mmol/L), |
367
|
|
|
|
|
|
|
'other' => q({0} mmol/L), |
368
|
|
|
|
|
|
|
}, |
369
|
|
|
|
|
|
|
'millisecond' => { |
370
|
|
|
|
|
|
|
'name' => q(millisec.), |
371
|
|
|
|
|
|
|
}, |
372
|
|
|
|
|
|
|
'minute' => { |
373
|
|
|
|
|
|
|
'name' => q(min.), |
374
|
|
|
|
|
|
|
'one' => q({0} min.), |
375
|
|
|
|
|
|
|
'other' => q({0} min.), |
376
|
|
|
|
|
|
|
'per' => q({0}/min.), |
377
|
|
|
|
|
|
|
}, |
378
|
|
|
|
|
|
|
'month' => { |
379
|
|
|
|
|
|
|
'one' => q({0} m.), |
380
|
|
|
|
|
|
|
'other' => q({0} m.), |
381
|
|
|
|
|
|
|
}, |
382
|
|
|
|
|
|
|
'nanosecond' => { |
383
|
|
|
|
|
|
|
'name' => q(nanosec.), |
384
|
|
|
|
|
|
|
}, |
385
|
|
|
|
|
|
|
'percent' => { |
386
|
|
|
|
|
|
|
'name' => q(per cent), |
387
|
|
|
|
|
|
|
}, |
388
|
|
|
|
|
|
|
'permille' => { |
389
|
|
|
|
|
|
|
'name' => q(per mill), |
390
|
|
|
|
|
|
|
}, |
391
|
|
|
|
|
|
|
'second' => { |
392
|
|
|
|
|
|
|
'name' => q(sec.), |
393
|
|
|
|
|
|
|
'one' => q({0} sec.), |
394
|
|
|
|
|
|
|
'other' => q({0} sec.), |
395
|
|
|
|
|
|
|
'per' => q({0} ps.), |
396
|
|
|
|
|
|
|
}, |
397
|
|
|
|
|
|
|
}, |
398
|
|
|
|
|
|
|
} } |
399
|
|
|
|
|
|
|
); |
400
|
|
|
|
|
|
|
|
401
|
|
|
|
|
|
|
has 'listPatterns' => ( |
402
|
|
|
|
|
|
|
is => 'ro', |
403
|
|
|
|
|
|
|
isa => HashRef, |
404
|
|
|
|
|
|
|
init_arg => undef, |
405
|
|
|
|
|
|
|
default => sub { { |
406
|
|
|
|
|
|
|
end => q({0} and {1}), |
407
|
|
|
|
|
|
|
} } |
408
|
|
|
|
|
|
|
); |
409
|
|
|
|
|
|
|
|
410
|
|
|
|
|
|
|
has 'number_symbols' => ( |
411
|
|
|
|
|
|
|
is => 'ro', |
412
|
|
|
|
|
|
|
isa => HashRef, |
413
|
|
|
|
|
|
|
init_arg => undef, |
414
|
|
|
|
|
|
|
default => sub { { |
415
|
|
|
|
|
|
|
'latn' => { |
416
|
|
|
|
|
|
|
'exponential' => q(e), |
417
|
|
|
|
|
|
|
'timeSeparator' => q(.), |
418
|
|
|
|
|
|
|
}, |
419
|
|
|
|
|
|
|
} } |
420
|
|
|
|
|
|
|
); |
421
|
|
|
|
|
|
|
|
422
|
|
|
|
|
|
|
has 'currencies' => ( |
423
|
|
|
|
|
|
|
is => 'ro', |
424
|
|
|
|
|
|
|
isa => HashRef, |
425
|
|
|
|
|
|
|
init_arg => undef, |
426
|
|
|
|
|
|
|
default => sub { { |
427
|
|
|
|
|
|
|
'AUD' => { |
428
|
|
|
|
|
|
|
symbol => '$', |
429
|
|
|
|
|
|
|
}, |
430
|
|
|
|
|
|
|
'BAM' => { |
431
|
|
|
|
|
|
|
display_name => { |
432
|
|
|
|
|
|
|
'currency' => q(Bosnia-Herzegovina Convertible Marka), |
433
|
|
|
|
|
|
|
'one' => q(Bosnia-Herzegovina convertible marka), |
434
|
|
|
|
|
|
|
'other' => q(Bosnia-Herzegovina convertible marka), |
435
|
|
|
|
|
|
|
}, |
436
|
|
|
|
|
|
|
}, |
437
|
|
|
|
|
|
|
'BBD' => { |
438
|
|
|
|
|
|
|
display_name => { |
439
|
|
|
|
|
|
|
'currency' => q(Barbados Dollar), |
440
|
|
|
|
|
|
|
'one' => q(Barbados dollar), |
441
|
|
|
|
|
|
|
'other' => q(Barbados dollars), |
442
|
|
|
|
|
|
|
}, |
443
|
|
|
|
|
|
|
}, |
444
|
|
|
|
|
|
|
'BDT' => { |
445
|
|
|
|
|
|
|
symbol => 'Tk', |
446
|
|
|
|
|
|
|
}, |
447
|
|
|
|
|
|
|
'BMD' => { |
448
|
|
|
|
|
|
|
display_name => { |
449
|
|
|
|
|
|
|
'currency' => q(Bermuda Dollar), |
450
|
|
|
|
|
|
|
'one' => q(Bermuda dollar), |
451
|
|
|
|
|
|
|
'other' => q(Bermuda dollars), |
452
|
|
|
|
|
|
|
}, |
453
|
|
|
|
|
|
|
}, |
454
|
|
|
|
|
|
|
'BOB' => { |
455
|
|
|
|
|
|
|
symbol => '$b', |
456
|
|
|
|
|
|
|
display_name => { |
457
|
|
|
|
|
|
|
'currency' => q(Boliviano), |
458
|
|
|
|
|
|
|
'one' => q(boliviano), |
459
|
|
|
|
|
|
|
'other' => q(bolivianos), |
460
|
|
|
|
|
|
|
}, |
461
|
|
|
|
|
|
|
}, |
462
|
|
|
|
|
|
|
'BRL' => { |
463
|
|
|
|
|
|
|
symbol => 'BRL', |
464
|
|
|
|
|
|
|
}, |
465
|
|
|
|
|
|
|
'CAD' => { |
466
|
|
|
|
|
|
|
symbol => 'CAD', |
467
|
|
|
|
|
|
|
}, |
468
|
|
|
|
|
|
|
'CNH' => { |
469
|
|
|
|
|
|
|
display_name => { |
470
|
|
|
|
|
|
|
'currency' => q(CNH), |
471
|
|
|
|
|
|
|
'one' => q(CNH), |
472
|
|
|
|
|
|
|
'other' => q(CNH), |
473
|
|
|
|
|
|
|
}, |
474
|
|
|
|
|
|
|
}, |
475
|
|
|
|
|
|
|
'CNY' => { |
476
|
|
|
|
|
|
|
symbol => 'CNY', |
477
|
|
|
|
|
|
|
}, |
478
|
|
|
|
|
|
|
'CUP' => { |
479
|
|
|
|
|
|
|
symbol => '₱', |
480
|
|
|
|
|
|
|
}, |
481
|
|
|
|
|
|
|
'EGP' => { |
482
|
|
|
|
|
|
|
symbol => '£', |
483
|
|
|
|
|
|
|
}, |
484
|
|
|
|
|
|
|
'EUR' => { |
485
|
|
|
|
|
|
|
symbol => 'EUR', |
486
|
|
|
|
|
|
|
display_name => { |
487
|
|
|
|
|
|
|
'one' => q(euro), |
488
|
|
|
|
|
|
|
'other' => q(euro), |
489
|
|
|
|
|
|
|
}, |
490
|
|
|
|
|
|
|
}, |
491
|
|
|
|
|
|
|
'GBP' => { |
492
|
|
|
|
|
|
|
symbol => 'GBP', |
493
|
|
|
|
|
|
|
}, |
494
|
|
|
|
|
|
|
'GEL' => { |
495
|
|
|
|
|
|
|
display_name => { |
496
|
|
|
|
|
|
|
'one' => q(Georgian lari), |
497
|
|
|
|
|
|
|
'other' => q(Georgian lari), |
498
|
|
|
|
|
|
|
}, |
499
|
|
|
|
|
|
|
}, |
500
|
|
|
|
|
|
|
'HKD' => { |
501
|
|
|
|
|
|
|
symbol => 'HKD', |
502
|
|
|
|
|
|
|
}, |
503
|
|
|
|
|
|
|
'ILS' => { |
504
|
|
|
|
|
|
|
symbol => 'ILS', |
505
|
|
|
|
|
|
|
display_name => { |
506
|
|
|
|
|
|
|
'currency' => q(Israeli Shekel), |
507
|
|
|
|
|
|
|
'one' => q(Israeli shekel), |
508
|
|
|
|
|
|
|
'other' => q(Israeli sheckles), |
509
|
|
|
|
|
|
|
}, |
510
|
|
|
|
|
|
|
}, |
511
|
|
|
|
|
|
|
'INR' => { |
512
|
|
|
|
|
|
|
symbol => 'INR', |
513
|
|
|
|
|
|
|
}, |
514
|
|
|
|
|
|
|
'ISK' => { |
515
|
|
|
|
|
|
|
symbol => 'Kr', |
516
|
|
|
|
|
|
|
}, |
517
|
|
|
|
|
|
|
'JPY' => { |
518
|
|
|
|
|
|
|
symbol => 'JPY', |
519
|
|
|
|
|
|
|
}, |
520
|
|
|
|
|
|
|
'KRW' => { |
521
|
|
|
|
|
|
|
symbol => 'KRW', |
522
|
|
|
|
|
|
|
}, |
523
|
|
|
|
|
|
|
'KZT' => { |
524
|
|
|
|
|
|
|
display_name => { |
525
|
|
|
|
|
|
|
'one' => q(Kazakhstani tenge), |
526
|
|
|
|
|
|
|
'other' => q(Kazakhstani tenge), |
527
|
|
|
|
|
|
|
}, |
528
|
|
|
|
|
|
|
}, |
529
|
|
|
|
|
|
|
'LAK' => { |
530
|
|
|
|
|
|
|
display_name => { |
531
|
|
|
|
|
|
|
'one' => q(Laotian kip), |
532
|
|
|
|
|
|
|
'other' => q(Laotian kip), |
533
|
|
|
|
|
|
|
}, |
534
|
|
|
|
|
|
|
}, |
535
|
|
|
|
|
|
|
'MGA' => { |
536
|
|
|
|
|
|
|
display_name => { |
537
|
|
|
|
|
|
|
'one' => q(Malagasy ariary), |
538
|
|
|
|
|
|
|
}, |
539
|
|
|
|
|
|
|
}, |
540
|
|
|
|
|
|
|
'MKD' => { |
541
|
|
|
|
|
|
|
display_name => { |
542
|
|
|
|
|
|
|
'one' => q(Macedonian denar), |
543
|
|
|
|
|
|
|
'other' => q(Macedonian denar), |
544
|
|
|
|
|
|
|
}, |
545
|
|
|
|
|
|
|
}, |
546
|
|
|
|
|
|
|
'MXN' => { |
547
|
|
|
|
|
|
|
symbol => 'MXN', |
548
|
|
|
|
|
|
|
}, |
549
|
|
|
|
|
|
|
'NZD' => { |
550
|
|
|
|
|
|
|
symbol => 'NZD', |
551
|
|
|
|
|
|
|
}, |
552
|
|
|
|
|
|
|
'PGK' => { |
553
|
|
|
|
|
|
|
display_name => { |
554
|
|
|
|
|
|
|
'one' => q(Papua New Guinean kina), |
555
|
|
|
|
|
|
|
'other' => q(Papua New Guinean kinas), |
556
|
|
|
|
|
|
|
}, |
557
|
|
|
|
|
|
|
}, |
558
|
|
|
|
|
|
|
'PYG' => { |
559
|
|
|
|
|
|
|
symbol => 'Gs', |
560
|
|
|
|
|
|
|
}, |
561
|
|
|
|
|
|
|
'QAR' => { |
562
|
|
|
|
|
|
|
display_name => { |
563
|
|
|
|
|
|
|
'currency' => q(Qatari Riyal), |
564
|
|
|
|
|
|
|
'one' => q(Qatari riyal), |
565
|
|
|
|
|
|
|
'other' => q(Quatari riyals), |
566
|
|
|
|
|
|
|
}, |
567
|
|
|
|
|
|
|
}, |
568
|
|
|
|
|
|
|
'SCR' => { |
569
|
|
|
|
|
|
|
symbol => 'Rs', |
570
|
|
|
|
|
|
|
}, |
571
|
|
|
|
|
|
|
'SEK' => { |
572
|
|
|
|
|
|
|
symbol => 'Kr', |
573
|
|
|
|
|
|
|
}, |
574
|
|
|
|
|
|
|
'SRD' => { |
575
|
|
|
|
|
|
|
display_name => { |
576
|
|
|
|
|
|
|
'currency' => q(Suriname Dollar), |
577
|
|
|
|
|
|
|
'one' => q(Suriname dollar), |
578
|
|
|
|
|
|
|
'other' => q(Suriname dollars), |
579
|
|
|
|
|
|
|
}, |
580
|
|
|
|
|
|
|
}, |
581
|
|
|
|
|
|
|
'TRY' => { |
582
|
|
|
|
|
|
|
display_name => { |
583
|
|
|
|
|
|
|
'one' => q(Turkish lira), |
584
|
|
|
|
|
|
|
'other' => q(Turkish lire), |
585
|
|
|
|
|
|
|
}, |
586
|
|
|
|
|
|
|
}, |
587
|
|
|
|
|
|
|
'TWD' => { |
588
|
|
|
|
|
|
|
symbol => 'TWD', |
589
|
|
|
|
|
|
|
}, |
590
|
|
|
|
|
|
|
'USD' => { |
591
|
|
|
|
|
|
|
symbol => 'USD', |
592
|
|
|
|
|
|
|
}, |
593
|
|
|
|
|
|
|
'UYU' => { |
594
|
|
|
|
|
|
|
symbol => '$U', |
595
|
|
|
|
|
|
|
display_name => { |
596
|
|
|
|
|
|
|
'currency' => q(Peso Uruguayo), |
597
|
|
|
|
|
|
|
}, |
598
|
|
|
|
|
|
|
}, |
599
|
|
|
|
|
|
|
'UZS' => { |
600
|
|
|
|
|
|
|
display_name => { |
601
|
|
|
|
|
|
|
'one' => q(Uzbekistani som), |
602
|
|
|
|
|
|
|
'other' => q(Uzbekistani soms), |
603
|
|
|
|
|
|
|
}, |
604
|
|
|
|
|
|
|
}, |
605
|
|
|
|
|
|
|
'VEF' => { |
606
|
|
|
|
|
|
|
display_name => { |
607
|
|
|
|
|
|
|
'one' => q(Venezuelan bolívar), |
608
|
|
|
|
|
|
|
'other' => q(Venezuelan bolívars), |
609
|
|
|
|
|
|
|
}, |
610
|
|
|
|
|
|
|
}, |
611
|
|
|
|
|
|
|
'VES' => { |
612
|
|
|
|
|
|
|
display_name => { |
613
|
|
|
|
|
|
|
'currency' => q(VES), |
614
|
|
|
|
|
|
|
'one' => q(VES), |
615
|
|
|
|
|
|
|
'other' => q(VES), |
616
|
|
|
|
|
|
|
}, |
617
|
|
|
|
|
|
|
}, |
618
|
|
|
|
|
|
|
'VND' => { |
619
|
|
|
|
|
|
|
symbol => 'VND', |
620
|
|
|
|
|
|
|
display_name => { |
621
|
|
|
|
|
|
|
'one' => q(Vietnamese dong), |
622
|
|
|
|
|
|
|
'other' => q(Vietnamese dongs), |
623
|
|
|
|
|
|
|
}, |
624
|
|
|
|
|
|
|
}, |
625
|
|
|
|
|
|
|
'WST' => { |
626
|
|
|
|
|
|
|
display_name => { |
627
|
|
|
|
|
|
|
'one' => q(Samoan tala), |
628
|
|
|
|
|
|
|
'other' => q(Samoan talas), |
629
|
|
|
|
|
|
|
}, |
630
|
|
|
|
|
|
|
}, |
631
|
|
|
|
|
|
|
'XAF' => { |
632
|
|
|
|
|
|
|
symbol => 'XAF', |
633
|
|
|
|
|
|
|
}, |
634
|
|
|
|
|
|
|
'XCD' => { |
635
|
|
|
|
|
|
|
symbol => 'XCD', |
636
|
|
|
|
|
|
|
}, |
637
|
|
|
|
|
|
|
'XOF' => { |
638
|
|
|
|
|
|
|
symbol => 'XOF', |
639
|
|
|
|
|
|
|
}, |
640
|
|
|
|
|
|
|
'XPF' => { |
641
|
|
|
|
|
|
|
symbol => 'CFP', |
642
|
|
|
|
|
|
|
}, |
643
|
|
|
|
|
|
|
} }, |
644
|
|
|
|
|
|
|
); |
645
|
|
|
|
|
|
|
|
646
|
|
|
|
|
|
|
|
647
|
|
|
|
|
|
|
has 'calendar_months' => ( |
648
|
|
|
|
|
|
|
is => 'ro', |
649
|
|
|
|
|
|
|
isa => HashRef, |
650
|
|
|
|
|
|
|
init_arg => undef, |
651
|
|
|
|
|
|
|
default => sub { { |
652
|
|
|
|
|
|
|
'chinese' => { |
653
|
|
|
|
|
|
|
'stand-alone' => { |
654
|
|
|
|
|
|
|
abbreviated => { |
655
|
|
|
|
|
|
|
nonleap => [ |
656
|
|
|
|
|
|
|
'Mo1', |
657
|
|
|
|
|
|
|
'Mo2', |
658
|
|
|
|
|
|
|
'Mo3', |
659
|
|
|
|
|
|
|
'Mo4', |
660
|
|
|
|
|
|
|
'Mo5', |
661
|
|
|
|
|
|
|
'Mo6', |
662
|
|
|
|
|
|
|
'Mo7', |
663
|
|
|
|
|
|
|
'Mo8' |
664
|
|
|
|
|
|
|
], |
665
|
|
|
|
|
|
|
leap => [ |
666
|
|
|
|
|
|
|
|
667
|
|
|
|
|
|
|
], |
668
|
|
|
|
|
|
|
}, |
669
|
|
|
|
|
|
|
wide => { |
670
|
|
|
|
|
|
|
nonleap => [ |
671
|
|
|
|
|
|
|
'', |
672
|
|
|
|
|
|
|
'', |
673
|
|
|
|
|
|
|
'Third Month', |
674
|
|
|
|
|
|
|
'Fourth Month', |
675
|
|
|
|
|
|
|
'Fifth Month', |
676
|
|
|
|
|
|
|
'Sixth Month', |
677
|
|
|
|
|
|
|
'Seventh Month', |
678
|
|
|
|
|
|
|
'Eighth Month', |
679
|
|
|
|
|
|
|
'Ninth Month', |
680
|
|
|
|
|
|
|
'Tenth Month', |
681
|
|
|
|
|
|
|
'Eleventh Month', |
682
|
|
|
|
|
|
|
'Twelfth Month' |
683
|
|
|
|
|
|
|
], |
684
|
|
|
|
|
|
|
leap => [ |
685
|
|
|
|
|
|
|
|
686
|
|
|
|
|
|
|
], |
687
|
|
|
|
|
|
|
}, |
688
|
|
|
|
|
|
|
}, |
689
|
|
|
|
|
|
|
}, |
690
|
|
|
|
|
|
|
} }, |
691
|
|
|
|
|
|
|
); |
692
|
|
|
|
|
|
|
|
693
|
|
|
|
|
|
|
has 'calendar_days' => ( |
694
|
|
|
|
|
|
|
is => 'ro', |
695
|
|
|
|
|
|
|
isa => HashRef, |
696
|
|
|
|
|
|
|
init_arg => undef, |
697
|
|
|
|
|
|
|
default => sub { { |
698
|
|
|
|
|
|
|
'gregorian' => { |
699
|
|
|
|
|
|
|
'format' => { |
700
|
|
|
|
|
|
|
narrow => { |
701
|
|
|
|
|
|
|
mon => 'M.', |
702
|
|
|
|
|
|
|
tue => 'Tu.', |
703
|
|
|
|
|
|
|
wed => 'W.', |
704
|
|
|
|
|
|
|
thu => 'Th.', |
705
|
|
|
|
|
|
|
fri => 'F.', |
706
|
|
|
|
|
|
|
sat => 'Sa.', |
707
|
|
|
|
|
|
|
sun => 'Su.' |
708
|
|
|
|
|
|
|
}, |
709
|
|
|
|
|
|
|
short => { |
710
|
|
|
|
|
|
|
mon => 'Mon', |
711
|
|
|
|
|
|
|
tue => 'Tu', |
712
|
|
|
|
|
|
|
wed => 'Wed', |
713
|
|
|
|
|
|
|
thu => 'Th', |
714
|
|
|
|
|
|
|
fri => 'Fri', |
715
|
|
|
|
|
|
|
sat => 'Sat', |
716
|
|
|
|
|
|
|
sun => 'Su' |
717
|
|
|
|
|
|
|
}, |
718
|
|
|
|
|
|
|
}, |
719
|
|
|
|
|
|
|
'stand-alone' => { |
720
|
|
|
|
|
|
|
narrow => { |
721
|
|
|
|
|
|
|
mon => 'M.', |
722
|
|
|
|
|
|
|
tue => 'Tu.', |
723
|
|
|
|
|
|
|
wed => 'W.', |
724
|
|
|
|
|
|
|
thu => 'Th.', |
725
|
|
|
|
|
|
|
fri => 'F.', |
726
|
|
|
|
|
|
|
sat => 'Sa.', |
727
|
|
|
|
|
|
|
sun => 'Su.' |
728
|
|
|
|
|
|
|
}, |
729
|
|
|
|
|
|
|
short => { |
730
|
|
|
|
|
|
|
mon => 'Mon', |
731
|
|
|
|
|
|
|
tue => 'Tu', |
732
|
|
|
|
|
|
|
wed => 'Wed', |
733
|
|
|
|
|
|
|
thu => 'Th', |
734
|
|
|
|
|
|
|
fri => 'Fri', |
735
|
|
|
|
|
|
|
sat => 'Sat', |
736
|
|
|
|
|
|
|
sun => 'Su' |
737
|
|
|
|
|
|
|
}, |
738
|
|
|
|
|
|
|
}, |
739
|
|
|
|
|
|
|
}, |
740
|
|
|
|
|
|
|
} }, |
741
|
|
|
|
|
|
|
); |
742
|
|
|
|
|
|
|
|
743
|
|
|
|
|
|
|
has 'day_period_data' => ( |
744
|
|
|
|
|
|
|
is => 'ro', |
745
|
|
|
|
|
|
|
isa => CodeRef, |
746
|
|
|
|
|
|
|
init_arg => undef, |
747
|
|
|
|
|
|
|
default => sub { sub { |
748
|
|
|
|
|
|
|
# Time in hhmm format |
749
|
|
|
|
|
|
|
my ($self, $type, $time, $day_period_type) = @_; |
750
|
|
|
|
|
|
|
$day_period_type //= 'default'; |
751
|
|
|
|
|
|
|
SWITCH: |
752
|
|
|
|
|
|
|
for ($type) { |
753
|
|
|
|
|
|
|
if ($_ eq 'chinese') { |
754
|
|
|
|
|
|
|
if($day_period_type eq 'default') { |
755
|
|
|
|
|
|
|
return 'midnight' if $time == 0; |
756
|
|
|
|
|
|
|
return 'noon' if $time == 1200; |
757
|
|
|
|
|
|
|
return 'afternoon1' if $time >= 1200 |
758
|
|
|
|
|
|
|
&& $time < 1800; |
759
|
|
|
|
|
|
|
return 'evening1' if $time >= 1800 |
760
|
|
|
|
|
|
|
&& $time < 2100; |
761
|
|
|
|
|
|
|
return 'morning1' if $time >= 600 |
762
|
|
|
|
|
|
|
&& $time < 1200; |
763
|
|
|
|
|
|
|
return 'night1' if $time >= 2100; |
764
|
|
|
|
|
|
|
return 'night1' if $time < 600; |
765
|
|
|
|
|
|
|
} |
766
|
|
|
|
|
|
|
if($day_period_type eq 'selection') { |
767
|
|
|
|
|
|
|
return 'afternoon1' if $time >= 1200 |
768
|
|
|
|
|
|
|
&& $time < 1800; |
769
|
|
|
|
|
|
|
return 'evening1' if $time >= 1800 |
770
|
|
|
|
|
|
|
&& $time < 2100; |
771
|
|
|
|
|
|
|
return 'morning1' if $time >= 600 |
772
|
|
|
|
|
|
|
&& $time < 1200; |
773
|
|
|
|
|
|
|
return 'night1' if $time >= 2100; |
774
|
|
|
|
|
|
|
return 'night1' if $time < 600; |
775
|
|
|
|
|
|
|
} |
776
|
|
|
|
|
|
|
last SWITCH; |
777
|
|
|
|
|
|
|
} |
778
|
|
|
|
|
|
|
if ($_ eq 'generic') { |
779
|
|
|
|
|
|
|
if($day_period_type eq 'default') { |
780
|
|
|
|
|
|
|
return 'midnight' if $time == 0; |
781
|
|
|
|
|
|
|
return 'noon' if $time == 1200; |
782
|
|
|
|
|
|
|
return 'afternoon1' if $time >= 1200 |
783
|
|
|
|
|
|
|
&& $time < 1800; |
784
|
|
|
|
|
|
|
return 'evening1' if $time >= 1800 |
785
|
|
|
|
|
|
|
&& $time < 2100; |
786
|
|
|
|
|
|
|
return 'morning1' if $time >= 600 |
787
|
|
|
|
|
|
|
&& $time < 1200; |
788
|
|
|
|
|
|
|
return 'night1' if $time >= 2100; |
789
|
|
|
|
|
|
|
return 'night1' if $time < 600; |
790
|
|
|
|
|
|
|
} |
791
|
|
|
|
|
|
|
if($day_period_type eq 'selection') { |
792
|
|
|
|
|
|
|
return 'afternoon1' if $time >= 1200 |
793
|
|
|
|
|
|
|
&& $time < 1800; |
794
|
|
|
|
|
|
|
return 'evening1' if $time >= 1800 |
795
|
|
|
|
|
|
|
&& $time < 2100; |
796
|
|
|
|
|
|
|
return 'morning1' if $time >= 600 |
797
|
|
|
|
|
|
|
&& $time < 1200; |
798
|
|
|
|
|
|
|
return 'night1' if $time >= 2100; |
799
|
|
|
|
|
|
|
return 'night1' if $time < 600; |
800
|
|
|
|
|
|
|
} |
801
|
|
|
|
|
|
|
last SWITCH; |
802
|
|
|
|
|
|
|
} |
803
|
|
|
|
|
|
|
if ($_ eq 'gregorian') { |
804
|
|
|
|
|
|
|
if($day_period_type eq 'default') { |
805
|
|
|
|
|
|
|
return 'midnight' if $time == 0; |
806
|
|
|
|
|
|
|
return 'noon' if $time == 1200; |
807
|
|
|
|
|
|
|
return 'afternoon1' if $time >= 1200 |
808
|
|
|
|
|
|
|
&& $time < 1800; |
809
|
|
|
|
|
|
|
return 'evening1' if $time >= 1800 |
810
|
|
|
|
|
|
|
&& $time < 2100; |
811
|
|
|
|
|
|
|
return 'morning1' if $time >= 600 |
812
|
|
|
|
|
|
|
&& $time < 1200; |
813
|
|
|
|
|
|
|
return 'night1' if $time >= 2100; |
814
|
|
|
|
|
|
|
return 'night1' if $time < 600; |
815
|
|
|
|
|
|
|
} |
816
|
|
|
|
|
|
|
if($day_period_type eq 'selection') { |
817
|
|
|
|
|
|
|
return 'afternoon1' if $time >= 1200 |
818
|
|
|
|
|
|
|
&& $time < 1800; |
819
|
|
|
|
|
|
|
return 'evening1' if $time >= 1800 |
820
|
|
|
|
|
|
|
&& $time < 2100; |
821
|
|
|
|
|
|
|
return 'morning1' if $time >= 600 |
822
|
|
|
|
|
|
|
&& $time < 1200; |
823
|
|
|
|
|
|
|
return 'night1' if $time >= 2100; |
824
|
|
|
|
|
|
|
return 'night1' if $time < 600; |
825
|
|
|
|
|
|
|
} |
826
|
|
|
|
|
|
|
last SWITCH; |
827
|
|
|
|
|
|
|
} |
828
|
|
|
|
|
|
|
if ($_ eq 'islamic') { |
829
|
|
|
|
|
|
|
if($day_period_type eq 'default') { |
830
|
|
|
|
|
|
|
return 'midnight' if $time == 0; |
831
|
|
|
|
|
|
|
return 'noon' if $time == 1200; |
832
|
|
|
|
|
|
|
return 'afternoon1' if $time >= 1200 |
833
|
|
|
|
|
|
|
&& $time < 1800; |
834
|
|
|
|
|
|
|
return 'evening1' if $time >= 1800 |
835
|
|
|
|
|
|
|
&& $time < 2100; |
836
|
|
|
|
|
|
|
return 'morning1' if $time >= 600 |
837
|
|
|
|
|
|
|
&& $time < 1200; |
838
|
|
|
|
|
|
|
return 'night1' if $time >= 2100; |
839
|
|
|
|
|
|
|
return 'night1' if $time < 600; |
840
|
|
|
|
|
|
|
} |
841
|
|
|
|
|
|
|
if($day_period_type eq 'selection') { |
842
|
|
|
|
|
|
|
return 'afternoon1' if $time >= 1200 |
843
|
|
|
|
|
|
|
&& $time < 1800; |
844
|
|
|
|
|
|
|
return 'evening1' if $time >= 1800 |
845
|
|
|
|
|
|
|
&& $time < 2100; |
846
|
|
|
|
|
|
|
return 'morning1' if $time >= 600 |
847
|
|
|
|
|
|
|
&& $time < 1200; |
848
|
|
|
|
|
|
|
return 'night1' if $time >= 2100; |
849
|
|
|
|
|
|
|
return 'night1' if $time < 600; |
850
|
|
|
|
|
|
|
} |
851
|
|
|
|
|
|
|
last SWITCH; |
852
|
|
|
|
|
|
|
} |
853
|
|
|
|
|
|
|
} |
854
|
|
|
|
|
|
|
} }, |
855
|
|
|
|
|
|
|
); |
856
|
|
|
|
|
|
|
|
857
|
|
|
|
|
|
|
around day_period_data => sub { |
858
|
|
|
|
|
|
|
my ($orig, $self) = @_; |
859
|
|
|
|
|
|
|
return $self->$orig; |
860
|
|
|
|
|
|
|
}; |
861
|
|
|
|
|
|
|
|
862
|
|
|
|
|
|
|
has 'day_periods' => ( |
863
|
|
|
|
|
|
|
is => 'ro', |
864
|
|
|
|
|
|
|
isa => HashRef, |
865
|
|
|
|
|
|
|
init_arg => undef, |
866
|
|
|
|
|
|
|
default => sub { { |
867
|
|
|
|
|
|
|
'gregorian' => { |
868
|
|
|
|
|
|
|
'format' => { |
869
|
|
|
|
|
|
|
'abbreviated' => { |
870
|
|
|
|
|
|
|
'afternoon1' => q{afternoon}, |
871
|
|
|
|
|
|
|
'evening1' => q{evening}, |
872
|
|
|
|
|
|
|
'midnight' => q{midnight}, |
873
|
|
|
|
|
|
|
'morning1' => q{morning}, |
874
|
|
|
|
|
|
|
'night1' => q{night}, |
875
|
|
|
|
|
|
|
'noon' => q{midday}, |
876
|
|
|
|
|
|
|
}, |
877
|
|
|
|
|
|
|
'narrow' => { |
878
|
|
|
|
|
|
|
'afternoon1' => q{afternoon}, |
879
|
|
|
|
|
|
|
'am' => q{am}, |
880
|
|
|
|
|
|
|
'evening1' => q{evening}, |
881
|
|
|
|
|
|
|
'midnight' => q{midnight}, |
882
|
|
|
|
|
|
|
'morning1' => q{morning}, |
883
|
|
|
|
|
|
|
'night1' => q{night}, |
884
|
|
|
|
|
|
|
'noon' => q{midday}, |
885
|
|
|
|
|
|
|
'pm' => q{pm}, |
886
|
|
|
|
|
|
|
}, |
887
|
|
|
|
|
|
|
'wide' => { |
888
|
|
|
|
|
|
|
'afternoon1' => q{in the afternoon}, |
889
|
|
|
|
|
|
|
'evening1' => q{in the evening}, |
890
|
|
|
|
|
|
|
'midnight' => q{midnight}, |
891
|
|
|
|
|
|
|
'morning1' => q{in the morning}, |
892
|
|
|
|
|
|
|
'night1' => q{at night}, |
893
|
|
|
|
|
|
|
'noon' => q{midday}, |
894
|
|
|
|
|
|
|
}, |
895
|
|
|
|
|
|
|
}, |
896
|
|
|
|
|
|
|
'stand-alone' => { |
897
|
|
|
|
|
|
|
'abbreviated' => { |
898
|
|
|
|
|
|
|
'noon' => q{midday}, |
899
|
|
|
|
|
|
|
}, |
900
|
|
|
|
|
|
|
'narrow' => { |
901
|
|
|
|
|
|
|
'noon' => q{midday}, |
902
|
|
|
|
|
|
|
}, |
903
|
|
|
|
|
|
|
'wide' => { |
904
|
|
|
|
|
|
|
'noon' => q{midday}, |
905
|
|
|
|
|
|
|
}, |
906
|
|
|
|
|
|
|
}, |
907
|
|
|
|
|
|
|
}, |
908
|
|
|
|
|
|
|
} }, |
909
|
|
|
|
|
|
|
); |
910
|
|
|
|
|
|
|
|
911
|
|
|
|
|
|
|
has 'eras' => ( |
912
|
|
|
|
|
|
|
is => 'ro', |
913
|
|
|
|
|
|
|
isa => HashRef, |
914
|
|
|
|
|
|
|
init_arg => undef, |
915
|
|
|
|
|
|
|
default => sub { { |
916
|
|
|
|
|
|
|
'chinese' => { |
917
|
|
|
|
|
|
|
}, |
918
|
|
|
|
|
|
|
'generic' => { |
919
|
|
|
|
|
|
|
}, |
920
|
|
|
|
|
|
|
'gregorian' => { |
921
|
|
|
|
|
|
|
}, |
922
|
|
|
|
|
|
|
'islamic' => { |
923
|
|
|
|
|
|
|
}, |
924
|
|
|
|
|
|
|
} }, |
925
|
|
|
|
|
|
|
); |
926
|
|
|
|
|
|
|
|
927
|
|
|
|
|
|
|
has 'date_formats' => ( |
928
|
|
|
|
|
|
|
is => 'ro', |
929
|
|
|
|
|
|
|
isa => HashRef, |
930
|
|
|
|
|
|
|
init_arg => undef, |
931
|
|
|
|
|
|
|
default => sub { { |
932
|
|
|
|
|
|
|
'chinese' => { |
933
|
|
|
|
|
|
|
}, |
934
|
|
|
|
|
|
|
'generic' => { |
935
|
|
|
|
|
|
|
}, |
936
|
|
|
|
|
|
|
'gregorian' => { |
937
|
|
|
|
|
|
|
'short' => q{d/M/yy}, |
938
|
|
|
|
|
|
|
}, |
939
|
|
|
|
|
|
|
'islamic' => { |
940
|
|
|
|
|
|
|
}, |
941
|
|
|
|
|
|
|
} }, |
942
|
|
|
|
|
|
|
); |
943
|
|
|
|
|
|
|
|
944
|
|
|
|
|
|
|
has 'time_formats' => ( |
945
|
|
|
|
|
|
|
is => 'ro', |
946
|
|
|
|
|
|
|
isa => HashRef, |
947
|
|
|
|
|
|
|
init_arg => undef, |
948
|
|
|
|
|
|
|
default => sub { { |
949
|
|
|
|
|
|
|
'chinese' => { |
950
|
|
|
|
|
|
|
}, |
951
|
|
|
|
|
|
|
'generic' => { |
952
|
|
|
|
|
|
|
}, |
953
|
|
|
|
|
|
|
'gregorian' => { |
954
|
|
|
|
|
|
|
}, |
955
|
|
|
|
|
|
|
'islamic' => { |
956
|
|
|
|
|
|
|
}, |
957
|
|
|
|
|
|
|
} }, |
958
|
|
|
|
|
|
|
); |
959
|
|
|
|
|
|
|
|
960
|
|
|
|
|
|
|
has 'datetime_formats' => ( |
961
|
|
|
|
|
|
|
is => 'ro', |
962
|
|
|
|
|
|
|
isa => HashRef, |
963
|
|
|
|
|
|
|
init_arg => undef, |
964
|
|
|
|
|
|
|
default => sub { { |
965
|
|
|
|
|
|
|
'chinese' => { |
966
|
|
|
|
|
|
|
}, |
967
|
|
|
|
|
|
|
'generic' => { |
968
|
|
|
|
|
|
|
}, |
969
|
|
|
|
|
|
|
'gregorian' => { |
970
|
|
|
|
|
|
|
}, |
971
|
|
|
|
|
|
|
'islamic' => { |
972
|
|
|
|
|
|
|
}, |
973
|
|
|
|
|
|
|
} }, |
974
|
|
|
|
|
|
|
); |
975
|
|
|
|
|
|
|
|
976
|
|
|
|
|
|
|
has 'datetime_formats_available_formats' => ( |
977
|
|
|
|
|
|
|
is => 'ro', |
978
|
|
|
|
|
|
|
isa => HashRef, |
979
|
|
|
|
|
|
|
init_arg => undef, |
980
|
|
|
|
|
|
|
default => sub { { |
981
|
|
|
|
|
|
|
'generic' => { |
982
|
|
|
|
|
|
|
yMEd => q{E, dd/MM/y}, |
983
|
|
|
|
|
|
|
yMd => q{dd/MM/y}, |
984
|
|
|
|
|
|
|
}, |
985
|
|
|
|
|
|
|
'gregorian' => { |
986
|
|
|
|
|
|
|
MEd => q{E, d/M}, |
987
|
|
|
|
|
|
|
Md => q{d/M}, |
988
|
|
|
|
|
|
|
}, |
989
|
|
|
|
|
|
|
'islamic' => { |
990
|
|
|
|
|
|
|
yMEd => q{E, dd/MM/y}, |
991
|
|
|
|
|
|
|
yMd => q{dd/MM/y}, |
992
|
|
|
|
|
|
|
}, |
993
|
|
|
|
|
|
|
} }, |
994
|
|
|
|
|
|
|
); |
995
|
|
|
|
|
|
|
|
996
|
|
|
|
|
|
|
has 'datetime_formats_append_item' => ( |
997
|
|
|
|
|
|
|
is => 'ro', |
998
|
|
|
|
|
|
|
isa => HashRef, |
999
|
|
|
|
|
|
|
init_arg => undef, |
1000
|
|
|
|
|
|
|
default => sub { { |
1001
|
|
|
|
|
|
|
} }, |
1002
|
|
|
|
|
|
|
); |
1003
|
|
|
|
|
|
|
|
1004
|
|
|
|
|
|
|
has 'datetime_formats_interval' => ( |
1005
|
|
|
|
|
|
|
is => 'ro', |
1006
|
|
|
|
|
|
|
isa => HashRef, |
1007
|
|
|
|
|
|
|
init_arg => undef, |
1008
|
|
|
|
|
|
|
default => sub { { |
1009
|
|
|
|
|
|
|
'generic' => { |
1010
|
|
|
|
|
|
|
MEd => { |
1011
|
|
|
|
|
|
|
M => q{E, d/M – E, d/M}, |
1012
|
|
|
|
|
|
|
d => q{E, d/M – E, d/M}, |
1013
|
|
|
|
|
|
|
}, |
1014
|
|
|
|
|
|
|
MMMEd => { |
1015
|
|
|
|
|
|
|
M => q{E, d MMM – E, d MMM}, |
1016
|
|
|
|
|
|
|
d => q{E, d MMM – E, d MMM}, |
1017
|
|
|
|
|
|
|
}, |
1018
|
|
|
|
|
|
|
yMMMEd => { |
1019
|
|
|
|
|
|
|
d => q{E, d MMM – E, d MMM y G}, |
1020
|
|
|
|
|
|
|
}, |
1021
|
|
|
|
|
|
|
}, |
1022
|
|
|
|
|
|
|
} }, |
1023
|
|
|
|
|
|
|
); |
1024
|
|
|
|
|
|
|
|
1025
|
|
|
|
|
|
|
has 'time_zone_names' => ( |
1026
|
|
|
|
|
|
|
is => 'ro', |
1027
|
|
|
|
|
|
|
isa => HashRef, |
1028
|
|
|
|
|
|
|
init_arg => undef, |
1029
|
|
|
|
|
|
|
default => sub { { |
1030
|
|
|
|
|
|
|
'Africa_Eastern' => { |
1031
|
|
|
|
|
|
|
long => { |
1032
|
|
|
|
|
|
|
'standard' => q#Eastern Africa Time#, |
1033
|
|
|
|
|
|
|
}, |
1034
|
|
|
|
|
|
|
}, |
1035
|
|
|
|
|
|
|
'America/St_Barthelemy' => { |
1036
|
|
|
|
|
|
|
exemplarCity => q#St Barthélemy#, |
1037
|
|
|
|
|
|
|
}, |
1038
|
|
|
|
|
|
|
'Arabian' => { |
1039
|
|
|
|
|
|
|
long => { |
1040
|
|
|
|
|
|
|
'daylight' => q#Arabia Daylight Time#, |
1041
|
|
|
|
|
|
|
'generic' => q#Arabia Time#, |
1042
|
|
|
|
|
|
|
'standard' => q#Arabia Standard Time#, |
1043
|
|
|
|
|
|
|
}, |
1044
|
|
|
|
|
|
|
}, |
1045
|
|
|
|
|
|
|
'Asia/Rangoon' => { |
1046
|
|
|
|
|
|
|
exemplarCity => q#Rangoon#, |
1047
|
|
|
|
|
|
|
}, |
1048
|
|
|
|
|
|
|
'Australia_Central' => { |
1049
|
|
|
|
|
|
|
long => { |
1050
|
|
|
|
|
|
|
'daylight' => q#Australian Central Daylight Time#, |
1051
|
|
|
|
|
|
|
'generic' => q#Australian Central Time#, |
1052
|
|
|
|
|
|
|
'standard' => q#Australian Central Standard Time#, |
1053
|
|
|
|
|
|
|
}, |
1054
|
|
|
|
|
|
|
short => { |
1055
|
|
|
|
|
|
|
'daylight' => q#ACDT#, |
1056
|
|
|
|
|
|
|
'generic' => q#ACT#, |
1057
|
|
|
|
|
|
|
'standard' => q#ACST#, |
1058
|
|
|
|
|
|
|
}, |
1059
|
|
|
|
|
|
|
}, |
1060
|
|
|
|
|
|
|
'Australia_CentralWestern' => { |
1061
|
|
|
|
|
|
|
short => { |
1062
|
|
|
|
|
|
|
'daylight' => q#ACWDT#, |
1063
|
|
|
|
|
|
|
'generic' => q#ACWT#, |
1064
|
|
|
|
|
|
|
'standard' => q#ACWST#, |
1065
|
|
|
|
|
|
|
}, |
1066
|
|
|
|
|
|
|
}, |
1067
|
|
|
|
|
|
|
'Australia_Eastern' => { |
1068
|
|
|
|
|
|
|
long => { |
1069
|
|
|
|
|
|
|
'daylight' => q#Australian Eastern Daylight Time#, |
1070
|
|
|
|
|
|
|
'generic' => q#Australian Eastern Time#, |
1071
|
|
|
|
|
|
|
'standard' => q#Australian Eastern Standard Time#, |
1072
|
|
|
|
|
|
|
}, |
1073
|
|
|
|
|
|
|
short => { |
1074
|
|
|
|
|
|
|
'daylight' => q#AEDT#, |
1075
|
|
|
|
|
|
|
'generic' => q#AET#, |
1076
|
|
|
|
|
|
|
'standard' => q#AEST#, |
1077
|
|
|
|
|
|
|
}, |
1078
|
|
|
|
|
|
|
}, |
1079
|
|
|
|
|
|
|
'Australia_Western' => { |
1080
|
|
|
|
|
|
|
long => { |
1081
|
|
|
|
|
|
|
'daylight' => q#Australian Western Daylight Time#, |
1082
|
|
|
|
|
|
|
'generic' => q#Australian Western Time#, |
1083
|
|
|
|
|
|
|
'standard' => q#Australian Western Standard Time#, |
1084
|
|
|
|
|
|
|
}, |
1085
|
|
|
|
|
|
|
short => { |
1086
|
|
|
|
|
|
|
'daylight' => q#AWDT#, |
1087
|
|
|
|
|
|
|
'generic' => q#AWT#, |
1088
|
|
|
|
|
|
|
'standard' => q#AWST#, |
1089
|
|
|
|
|
|
|
}, |
1090
|
|
|
|
|
|
|
}, |
1091
|
|
|
|
|
|
|
'China' => { |
1092
|
|
|
|
|
|
|
long => { |
1093
|
|
|
|
|
|
|
'daylight' => q#China Summer Time#, |
1094
|
|
|
|
|
|
|
'generic' => q#China Time#, |
1095
|
|
|
|
|
|
|
'standard' => q#China Standard Time#, |
1096
|
|
|
|
|
|
|
}, |
1097
|
|
|
|
|
|
|
}, |
1098
|
|
|
|
|
|
|
'Cook' => { |
1099
|
|
|
|
|
|
|
long => { |
1100
|
|
|
|
|
|
|
'daylight' => q#Cook Island Summer Time#, |
1101
|
|
|
|
|
|
|
'generic' => q#Cook Island Time#, |
1102
|
|
|
|
|
|
|
'standard' => q#Cook Island Standard Time#, |
1103
|
|
|
|
|
|
|
}, |
1104
|
|
|
|
|
|
|
}, |
1105
|
|
|
|
|
|
|
'Iran' => { |
1106
|
|
|
|
|
|
|
long => { |
1107
|
|
|
|
|
|
|
'generic' => q#Iran Time#, |
1108
|
|
|
|
|
|
|
'standard' => q#Iran Standard Time#, |
1109
|
|
|
|
|
|
|
}, |
1110
|
|
|
|
|
|
|
}, |
1111
|
|
|
|
|
|
|
'Israel' => { |
1112
|
|
|
|
|
|
|
long => { |
1113
|
|
|
|
|
|
|
'generic' => q#Israel Time#, |
1114
|
|
|
|
|
|
|
'standard' => q#Israel Standard Time#, |
1115
|
|
|
|
|
|
|
}, |
1116
|
|
|
|
|
|
|
}, |
1117
|
|
|
|
|
|
|
'Japan' => { |
1118
|
|
|
|
|
|
|
long => { |
1119
|
|
|
|
|
|
|
'daylight' => q#Japan Summer Time#, |
1120
|
|
|
|
|
|
|
'generic' => q#Japan Time#, |
1121
|
|
|
|
|
|
|
'standard' => q#Japan Standard Time#, |
1122
|
|
|
|
|
|
|
}, |
1123
|
|
|
|
|
|
|
}, |
1124
|
|
|
|
|
|
|
'Korea' => { |
1125
|
|
|
|
|
|
|
long => { |
1126
|
|
|
|
|
|
|
'daylight' => q#Korean Summer Time#, |
1127
|
|
|
|
|
|
|
'generic' => q#Korea Time#, |
1128
|
|
|
|
|
|
|
'standard' => q#Korean Standard Time#, |
1129
|
|
|
|
|
|
|
}, |
1130
|
|
|
|
|
|
|
}, |
1131
|
|
|
|
|
|
|
'Lord_Howe' => { |
1132
|
|
|
|
|
|
|
short => { |
1133
|
|
|
|
|
|
|
'daylight' => q#LHDT#, |
1134
|
|
|
|
|
|
|
'generic' => q#LHT#, |
1135
|
|
|
|
|
|
|
'standard' => q#LHST#, |
1136
|
|
|
|
|
|
|
}, |
1137
|
|
|
|
|
|
|
}, |
1138
|
|
|
|
|
|
|
'Moscow' => { |
1139
|
|
|
|
|
|
|
long => { |
1140
|
|
|
|
|
|
|
'daylight' => q#Moscow Daylight Time#, |
1141
|
|
|
|
|
|
|
'generic' => q#Moscow Time#, |
1142
|
|
|
|
|
|
|
'standard' => q#Moscow Standard Time#, |
1143
|
|
|
|
|
|
|
}, |
1144
|
|
|
|
|
|
|
}, |
1145
|
|
|
|
|
|
|
'New_Zealand' => { |
1146
|
|
|
|
|
|
|
short => { |
1147
|
|
|
|
|
|
|
'daylight' => q#NZDT#, |
1148
|
|
|
|
|
|
|
'generic' => q#NZT#, |
1149
|
|
|
|
|
|
|
'standard' => q#NZST#, |
1150
|
|
|
|
|
|
|
}, |
1151
|
|
|
|
|
|
|
}, |
1152
|
|
|
|
|
|
|
'Samoa' => { |
1153
|
|
|
|
|
|
|
long => { |
1154
|
|
|
|
|
|
|
'daylight' => q#Samoa Summer Time#, |
1155
|
|
|
|
|
|
|
'generic' => q#Samoa Time#, |
1156
|
|
|
|
|
|
|
'standard' => q#Samoa Standard Time#, |
1157
|
|
|
|
|
|
|
}, |
1158
|
|
|
|
|
|
|
}, |
1159
|
|
|
|
|
|
|
'Taipei' => { |
1160
|
|
|
|
|
|
|
long => { |
1161
|
|
|
|
|
|
|
'daylight' => q#Taipei Summer Time#, |
1162
|
|
|
|
|
|
|
'generic' => q#Taipei Time#, |
1163
|
|
|
|
|
|
|
'standard' => q#Taipei Standard Time#, |
1164
|
|
|
|
|
|
|
}, |
1165
|
|
|
|
|
|
|
}, |
1166
|
|
|
|
|
|
|
} } |
1167
|
|
|
|
|
|
|
); |
1168
|
|
|
|
|
|
|
no Moo; |
1169
|
1
|
|
|
1
|
|
2563
|
|
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
10
|
|
1170
|
|
|
|
|
|
|
1; |
1171
|
|
|
|
|
|
|
|
1172
|
|
|
|
|
|
|
# vim: tabstop=4 |