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