| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
=head1 |
|
2
|
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
Locale::CLDR::Locales::Nnh - Package for language Ngiemboon |
|
4
|
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
=cut |
|
6
|
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
package Locale::CLDR::Locales::Nnh; |
|
8
|
|
|
|
|
|
|
# This file auto generated from Data\common\main\nnh.xml |
|
9
|
|
|
|
|
|
|
# on Sun 24 Apr 8:45:27 am GMT |
|
10
|
|
|
|
|
|
|
|
|
11
|
1
|
|
|
1
|
|
2583785
|
use version; |
|
|
1
|
|
|
|
|
1
|
|
|
|
1
|
|
|
|
|
6
|
|
|
12
|
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
our $VERSION = version->declare('v0.29.0'); |
|
14
|
|
|
|
|
|
|
|
|
15
|
1
|
|
|
1
|
|
83
|
use v5.10.1; |
|
|
1
|
|
|
|
|
3
|
|
|
16
|
1
|
|
|
1
|
|
4
|
use mro 'c3'; |
|
|
1
|
|
|
|
|
5
|
|
|
|
1
|
|
|
|
|
7
|
|
|
17
|
1
|
|
|
1
|
|
30
|
use utf8; |
|
|
1
|
|
|
|
|
1
|
|
|
|
1
|
|
|
|
|
6
|
|
|
18
|
1
|
|
|
1
|
|
28
|
use if $^V ge v5.12.0, feature => 'unicode_strings'; |
|
|
1
|
|
|
|
|
1
|
|
|
|
1
|
|
|
|
|
11
|
|
|
19
|
|
|
|
|
|
|
|
|
20
|
1
|
|
|
1
|
|
1007
|
use Types::Standard qw( Str Int HashRef ArrayRef CodeRef RegexpRef ); |
|
|
1
|
|
|
|
|
48654
|
|
|
|
1
|
|
|
|
|
13
|
|
|
21
|
1
|
|
|
1
|
|
1480
|
use Moo; |
|
|
1
|
|
|
|
|
9413
|
|
|
|
1
|
|
|
|
|
4
|
|
|
22
|
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
extends('Locale::CLDR::Locales::Root'); |
|
24
|
|
|
|
|
|
|
has 'display_name_language' => ( |
|
25
|
|
|
|
|
|
|
is => 'ro', |
|
26
|
|
|
|
|
|
|
isa => CodeRef, |
|
27
|
|
|
|
|
|
|
init_arg => undef, |
|
28
|
|
|
|
|
|
|
default => sub { |
|
29
|
|
|
|
|
|
|
sub { |
|
30
|
|
|
|
|
|
|
my %languages = ( |
|
31
|
|
|
|
|
|
|
'bas' => 'ShwóÅò pÊa mbasÇ', |
|
32
|
|
|
|
|
|
|
'bax' => 'ShwóÅò pamom', |
|
33
|
|
|
|
|
|
|
'bbj' => 'ShwóÅò pÊa nzsekà ʼa', |
|
34
|
|
|
|
|
|
|
'bfd' => 'ShwóÅò pafud', |
|
35
|
|
|
|
|
|
|
'bkm' => 'ShwóÅò pÊÌa njinikom', |
|
36
|
|
|
|
|
|
|
'bss' => 'ShwóÅò pakÉsi', |
|
37
|
|
|
|
|
|
|
'bum' => 'ShwóÅò mbulu', |
|
38
|
|
|
|
|
|
|
'byv' => 'ShwóÅò ngáÅtÿÉʼ', |
|
39
|
|
|
|
|
|
|
'de' => 'nzÇmÉÌÉn', |
|
40
|
|
|
|
|
|
|
'en' => 'ngilÃsè', |
|
41
|
|
|
|
|
|
|
'ewo' => 'ShwóÅò pÊa YÉÉnmendi', |
|
42
|
|
|
|
|
|
|
'ff' => 'ShwóÅò menkesaÅ', |
|
43
|
|
|
|
|
|
|
'fr' => 'felaÅsée', |
|
44
|
|
|
|
|
|
|
'kkj' => 'ShwóÅò pÊa shÿó BÉgtùa', |
|
45
|
|
|
|
|
|
|
'nnh' => 'ShwóÅò ngiembÉÉn', |
|
46
|
|
|
|
|
|
|
'yav' => 'ShwóÅò pÊa shÿó Mbafìa', |
|
47
|
|
|
|
|
|
|
'ybb' => 'ShwóÅò TsaÅ', |
|
48
|
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
); |
|
50
|
|
|
|
|
|
|
if (@_) { |
|
51
|
|
|
|
|
|
|
return $languages{$_[0]}; |
|
52
|
|
|
|
|
|
|
} |
|
53
|
|
|
|
|
|
|
return \%languages; |
|
54
|
|
|
|
|
|
|
} |
|
55
|
|
|
|
|
|
|
}, |
|
56
|
|
|
|
|
|
|
); |
|
57
|
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
has 'display_name_region' => ( |
|
59
|
|
|
|
|
|
|
is => 'ro', |
|
60
|
|
|
|
|
|
|
isa => HashRef[Str], |
|
61
|
|
|
|
|
|
|
init_arg => undef, |
|
62
|
|
|
|
|
|
|
default => sub { |
|
63
|
|
|
|
|
|
|
{ |
|
64
|
|
|
|
|
|
|
'CM' => 'Kà malûm', |
|
65
|
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
} |
|
67
|
|
|
|
|
|
|
}, |
|
68
|
|
|
|
|
|
|
); |
|
69
|
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
has 'display_name_key' => ( |
|
71
|
|
|
|
|
|
|
is => 'ro', |
|
72
|
|
|
|
|
|
|
isa => HashRef[Str], |
|
73
|
|
|
|
|
|
|
init_arg => undef, |
|
74
|
|
|
|
|
|
|
default => sub { |
|
75
|
|
|
|
|
|
|
{ |
|
76
|
|
|
|
|
|
|
'calendar' => 'fÊÌʼ njÿó', |
|
77
|
|
|
|
|
|
|
'currency' => 'nkáb', |
|
78
|
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
} |
|
80
|
|
|
|
|
|
|
}, |
|
81
|
|
|
|
|
|
|
); |
|
82
|
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
has 'display_name_measurement_system' => ( |
|
84
|
|
|
|
|
|
|
is => 'ro', |
|
85
|
|
|
|
|
|
|
isa => HashRef[Str], |
|
86
|
|
|
|
|
|
|
init_arg => undef, |
|
87
|
|
|
|
|
|
|
default => sub { |
|
88
|
|
|
|
|
|
|
{ |
|
89
|
|
|
|
|
|
|
'metric' => q{fÊÌÊ¼Ê mmó}, |
|
90
|
|
|
|
|
|
|
|
|
91
|
|
|
|
|
|
|
} |
|
92
|
|
|
|
|
|
|
}, |
|
93
|
|
|
|
|
|
|
); |
|
94
|
|
|
|
|
|
|
|
|
95
|
|
|
|
|
|
|
has 'characters' => ( |
|
96
|
|
|
|
|
|
|
is => 'ro', |
|
97
|
|
|
|
|
|
|
isa => HashRef, |
|
98
|
|
|
|
|
|
|
init_arg => undef, |
|
99
|
|
|
|
|
|
|
default => $^V ge v5.18.0 |
|
100
|
|
|
|
|
|
|
? eval <<'EOT' |
|
101
|
|
|
|
|
|
|
sub { |
|
102
|
|
|
|
|
|
|
no warnings 'experimental::regex_sets'; |
|
103
|
|
|
|
|
|
|
return { |
|
104
|
|
|
|
|
|
|
auxiliary => qr{(?^u:[q r x])}, |
|
105
|
|
|
|
|
|
|
index => ['A', 'B', 'C', 'D', 'E', 'Æ', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'Å', 'O', 'Æ', 'P', '{Pf}', 'R', 'S', '{Sh}', 'T', '{Ts}', 'U', 'É', 'V', 'W', 'áº', 'Y', 'Ÿ', 'Z', 'ʼ'], |
|
106
|
|
|
|
|
|
|
main => qr{(?^u:[a á à â Ç b c d e é è ê Ä É {ÉÌ} {ÉÌ} {ÉÌ} {ÉÌ} f g h i à ì j k l m ḿ n Å Å o ó ò ô Ç É {ÉÌ} {ÉÌ} {ÉÌ} {ÉÌ} p {pf} s {sh} t {ts} u ú ù û Ç Ê {ÊÌ} {ÊÌ} {ÊÌ} {ÊÌ} v w áº
y ÿ z ʼ])}, |
|
107
|
|
|
|
|
|
|
punctuation => qr{(?^u:[, ; \: ! ? . ' â â « »])}, |
|
108
|
|
|
|
|
|
|
}; |
|
109
|
|
|
|
|
|
|
}, |
|
110
|
|
|
|
|
|
|
EOT |
|
111
|
|
|
|
|
|
|
: sub { |
|
112
|
|
|
|
|
|
|
return { index => ['A', 'B', 'C', 'D', 'E', 'Æ', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'Å', 'O', 'Æ', 'P', '{Pf}', 'R', 'S', '{Sh}', 'T', '{Ts}', 'U', 'É', 'V', 'W', 'áº', 'Y', 'Ÿ', 'Z', 'ʼ'], }; |
|
113
|
|
|
|
|
|
|
}, |
|
114
|
1
|
|
|
1
|
|
101
|
); |
|
|
1
|
|
|
|
|
1
|
|
|
|
1
|
|
|
|
|
188
|
|
|
115
|
|
|
|
|
|
|
|
|
116
|
|
|
|
|
|
|
|
|
117
|
|
|
|
|
|
|
has 'quote_start' => ( |
|
118
|
|
|
|
|
|
|
is => 'ro', |
|
119
|
|
|
|
|
|
|
isa => Str, |
|
120
|
|
|
|
|
|
|
init_arg => undef, |
|
121
|
|
|
|
|
|
|
default => qq{«}, |
|
122
|
|
|
|
|
|
|
); |
|
123
|
|
|
|
|
|
|
|
|
124
|
|
|
|
|
|
|
has 'quote_end' => ( |
|
125
|
|
|
|
|
|
|
is => 'ro', |
|
126
|
|
|
|
|
|
|
isa => Str, |
|
127
|
|
|
|
|
|
|
init_arg => undef, |
|
128
|
|
|
|
|
|
|
default => qq{»}, |
|
129
|
|
|
|
|
|
|
); |
|
130
|
|
|
|
|
|
|
|
|
131
|
|
|
|
|
|
|
has 'alternate_quote_start' => ( |
|
132
|
|
|
|
|
|
|
is => 'ro', |
|
133
|
|
|
|
|
|
|
isa => Str, |
|
134
|
|
|
|
|
|
|
init_arg => undef, |
|
135
|
|
|
|
|
|
|
default => qq{â}, |
|
136
|
|
|
|
|
|
|
); |
|
137
|
|
|
|
|
|
|
|
|
138
|
|
|
|
|
|
|
has 'alternate_quote_end' => ( |
|
139
|
|
|
|
|
|
|
is => 'ro', |
|
140
|
|
|
|
|
|
|
isa => Str, |
|
141
|
|
|
|
|
|
|
init_arg => undef, |
|
142
|
|
|
|
|
|
|
default => qq{â}, |
|
143
|
|
|
|
|
|
|
); |
|
144
|
|
|
|
|
|
|
|
|
145
|
|
|
|
|
|
|
has 'number_symbols' => ( |
|
146
|
|
|
|
|
|
|
is => 'ro', |
|
147
|
|
|
|
|
|
|
isa => HashRef, |
|
148
|
|
|
|
|
|
|
init_arg => undef, |
|
149
|
|
|
|
|
|
|
default => sub { { |
|
150
|
|
|
|
|
|
|
'latn' => { |
|
151
|
|
|
|
|
|
|
'decimal' => q(,), |
|
152
|
|
|
|
|
|
|
'group' => q(.), |
|
153
|
|
|
|
|
|
|
'list' => q(;), |
|
154
|
|
|
|
|
|
|
'percentSign' => q(%), |
|
155
|
|
|
|
|
|
|
}, |
|
156
|
|
|
|
|
|
|
} } |
|
157
|
|
|
|
|
|
|
); |
|
158
|
|
|
|
|
|
|
|
|
159
|
|
|
|
|
|
|
has 'number_formats' => ( |
|
160
|
|
|
|
|
|
|
is => 'ro', |
|
161
|
|
|
|
|
|
|
isa => HashRef, |
|
162
|
|
|
|
|
|
|
init_arg => undef, |
|
163
|
|
|
|
|
|
|
default => sub { { |
|
164
|
|
|
|
|
|
|
decimalFormat => { |
|
165
|
|
|
|
|
|
|
'default' => { |
|
166
|
|
|
|
|
|
|
'standard' => { |
|
167
|
|
|
|
|
|
|
'' => '#,##0.###', |
|
168
|
|
|
|
|
|
|
}, |
|
169
|
|
|
|
|
|
|
}, |
|
170
|
|
|
|
|
|
|
}, |
|
171
|
|
|
|
|
|
|
} }, |
|
172
|
|
|
|
|
|
|
); |
|
173
|
|
|
|
|
|
|
|
|
174
|
|
|
|
|
|
|
has 'number_currency_formats' => ( |
|
175
|
|
|
|
|
|
|
is => 'ro', |
|
176
|
|
|
|
|
|
|
isa => HashRef, |
|
177
|
|
|
|
|
|
|
init_arg => undef, |
|
178
|
|
|
|
|
|
|
default => sub { { |
|
179
|
|
|
|
|
|
|
'latn' => { |
|
180
|
|
|
|
|
|
|
'pattern' => { |
|
181
|
|
|
|
|
|
|
'default' => { |
|
182
|
|
|
|
|
|
|
'standard' => { |
|
183
|
|
|
|
|
|
|
'positive' => '¤ #,##0.00', |
|
184
|
|
|
|
|
|
|
}, |
|
185
|
|
|
|
|
|
|
}, |
|
186
|
|
|
|
|
|
|
}, |
|
187
|
|
|
|
|
|
|
}, |
|
188
|
|
|
|
|
|
|
} }, |
|
189
|
|
|
|
|
|
|
); |
|
190
|
|
|
|
|
|
|
|
|
191
|
|
|
|
|
|
|
has 'currencies' => ( |
|
192
|
|
|
|
|
|
|
is => 'ro', |
|
193
|
|
|
|
|
|
|
isa => HashRef, |
|
194
|
|
|
|
|
|
|
init_arg => undef, |
|
195
|
|
|
|
|
|
|
default => sub { { |
|
196
|
|
|
|
|
|
|
'XAF' => { |
|
197
|
|
|
|
|
|
|
symbol => 'FCFA', |
|
198
|
|
|
|
|
|
|
display_name => { |
|
199
|
|
|
|
|
|
|
'currency' => q(feláŠCFA), |
|
200
|
|
|
|
|
|
|
}, |
|
201
|
|
|
|
|
|
|
}, |
|
202
|
|
|
|
|
|
|
} }, |
|
203
|
|
|
|
|
|
|
); |
|
204
|
|
|
|
|
|
|
|
|
205
|
|
|
|
|
|
|
|
|
206
|
|
|
|
|
|
|
has 'calendar_months' => ( |
|
207
|
|
|
|
|
|
|
is => 'ro', |
|
208
|
|
|
|
|
|
|
isa => HashRef, |
|
209
|
|
|
|
|
|
|
init_arg => undef, |
|
210
|
|
|
|
|
|
|
default => sub { { |
|
211
|
|
|
|
|
|
|
'gregorian' => { |
|
212
|
|
|
|
|
|
|
'format' => { |
|
213
|
|
|
|
|
|
|
abbreviated => { |
|
214
|
|
|
|
|
|
|
nonleap => [ |
|
215
|
|
|
|
|
|
|
'saÅ tsetsÉÌÉ lùm', |
|
216
|
|
|
|
|
|
|
'saÅ kà g ngwóÅ', |
|
217
|
|
|
|
|
|
|
'saŠlepyè shúm', |
|
218
|
|
|
|
|
|
|
'saŠcÿó', |
|
219
|
|
|
|
|
|
|
'saÅ tsÉÌÉ cÿó', |
|
220
|
|
|
|
|
|
|
'saŠnjÿoláʼ', |
|
221
|
|
|
|
|
|
|
'saÅ tyÉÌb tyÉÌb mbÊÌÅ', |
|
222
|
|
|
|
|
|
|
'saÅ mbÊÌÅ', |
|
223
|
|
|
|
|
|
|
'saÅ ngwÉÌʼ mbÿÉ', |
|
224
|
|
|
|
|
|
|
'saÅ tà Åa tsetsáʼ', |
|
225
|
|
|
|
|
|
|
'saÅ mejwoÅó', |
|
226
|
|
|
|
|
|
|
'saŠlùm' |
|
227
|
|
|
|
|
|
|
], |
|
228
|
|
|
|
|
|
|
leap => [ |
|
229
|
|
|
|
|
|
|
|
|
230
|
|
|
|
|
|
|
], |
|
231
|
|
|
|
|
|
|
}, |
|
232
|
|
|
|
|
|
|
wide => { |
|
233
|
|
|
|
|
|
|
nonleap => [ |
|
234
|
|
|
|
|
|
|
'saÅ tsetsÉÌÉ lùm', |
|
235
|
|
|
|
|
|
|
'saÅ kà g ngwóÅ', |
|
236
|
|
|
|
|
|
|
'saŠlepyè shúm', |
|
237
|
|
|
|
|
|
|
'saŠcÿó', |
|
238
|
|
|
|
|
|
|
'saÅ tsÉÌÉ cÿó', |
|
239
|
|
|
|
|
|
|
'saŠnjÿoláʼ', |
|
240
|
|
|
|
|
|
|
'saÅ tyÉÌb tyÉÌb mbÊÌÅ', |
|
241
|
|
|
|
|
|
|
'saÅ mbÊÌÅ', |
|
242
|
|
|
|
|
|
|
'saÅ ngwÉÌʼ mbÿÉ', |
|
243
|
|
|
|
|
|
|
'saÅ tà Åa tsetsáʼ', |
|
244
|
|
|
|
|
|
|
'saÅ mejwoÅó', |
|
245
|
|
|
|
|
|
|
'saŠlùm' |
|
246
|
|
|
|
|
|
|
], |
|
247
|
|
|
|
|
|
|
leap => [ |
|
248
|
|
|
|
|
|
|
|
|
249
|
|
|
|
|
|
|
], |
|
250
|
|
|
|
|
|
|
}, |
|
251
|
|
|
|
|
|
|
}, |
|
252
|
|
|
|
|
|
|
'stand-alone' => { |
|
253
|
|
|
|
|
|
|
abbreviated => { |
|
254
|
|
|
|
|
|
|
nonleap => [ |
|
255
|
|
|
|
|
|
|
'saÅ tsetsÉÌÉ lùm', |
|
256
|
|
|
|
|
|
|
'saÅ kà g ngwóÅ', |
|
257
|
|
|
|
|
|
|
'saŠlepyè shúm', |
|
258
|
|
|
|
|
|
|
'saŠcÿó', |
|
259
|
|
|
|
|
|
|
'saÅ tsÉÌÉ cÿó', |
|
260
|
|
|
|
|
|
|
'saŠnjÿoláʼ', |
|
261
|
|
|
|
|
|
|
'saÅ tyÉÌb tyÉÌb mbÊÌÅ', |
|
262
|
|
|
|
|
|
|
'saÅ mbÊÌÅ', |
|
263
|
|
|
|
|
|
|
'saÅ ngwÉÌʼ mbÿÉ', |
|
264
|
|
|
|
|
|
|
'saÅ tà Åa tsetsáʼ', |
|
265
|
|
|
|
|
|
|
'saÅ mejwoÅó', |
|
266
|
|
|
|
|
|
|
'saŠlùm' |
|
267
|
|
|
|
|
|
|
], |
|
268
|
|
|
|
|
|
|
leap => [ |
|
269
|
|
|
|
|
|
|
|
|
270
|
|
|
|
|
|
|
], |
|
271
|
|
|
|
|
|
|
}, |
|
272
|
|
|
|
|
|
|
wide => { |
|
273
|
|
|
|
|
|
|
nonleap => [ |
|
274
|
|
|
|
|
|
|
'saÅ tsetsÉÌÉ lùm', |
|
275
|
|
|
|
|
|
|
'saÅ kà g ngwóÅ', |
|
276
|
|
|
|
|
|
|
'saŠlepyè shúm', |
|
277
|
|
|
|
|
|
|
'saŠcÿó', |
|
278
|
|
|
|
|
|
|
'saÅ tsÉÌÉ cÿó', |
|
279
|
|
|
|
|
|
|
'saŠnjÿoláʼ', |
|
280
|
|
|
|
|
|
|
'saÅ tyÉÌb tyÉÌb mbÊÌÅ', |
|
281
|
|
|
|
|
|
|
'saÅ mbÊÌÅ', |
|
282
|
|
|
|
|
|
|
'saÅ ngwÉÌʼ mbÿÉ', |
|
283
|
|
|
|
|
|
|
'saÅ tà Åa tsetsáʼ', |
|
284
|
|
|
|
|
|
|
'saÅ mejwoÅó', |
|
285
|
|
|
|
|
|
|
'saŠlùm' |
|
286
|
|
|
|
|
|
|
], |
|
287
|
|
|
|
|
|
|
leap => [ |
|
288
|
|
|
|
|
|
|
|
|
289
|
|
|
|
|
|
|
], |
|
290
|
|
|
|
|
|
|
}, |
|
291
|
|
|
|
|
|
|
}, |
|
292
|
|
|
|
|
|
|
}, |
|
293
|
|
|
|
|
|
|
} }, |
|
294
|
|
|
|
|
|
|
); |
|
295
|
|
|
|
|
|
|
|
|
296
|
|
|
|
|
|
|
has 'calendar_days' => ( |
|
297
|
|
|
|
|
|
|
is => 'ro', |
|
298
|
|
|
|
|
|
|
isa => HashRef, |
|
299
|
|
|
|
|
|
|
init_arg => undef, |
|
300
|
|
|
|
|
|
|
default => sub { { |
|
301
|
|
|
|
|
|
|
'gregorian' => { |
|
302
|
|
|
|
|
|
|
'format' => { |
|
303
|
|
|
|
|
|
|
abbreviated => { |
|
304
|
|
|
|
|
|
|
mon => 'mvfò lyÉÌʼ', |
|
305
|
|
|
|
|
|
|
tue => 'mbÉÌÉntè mvfò lyÉÌʼ', |
|
306
|
|
|
|
|
|
|
wed => 'tsètsÉÌÉ lyÉÌʼ', |
|
307
|
|
|
|
|
|
|
thu => 'mbÉÌÉntè tsetsÉÌÉ lyÉÌʼ', |
|
308
|
|
|
|
|
|
|
fri => 'mvfò mà ga lyÉÌʼ', |
|
309
|
|
|
|
|
|
|
sat => 'mà ga lyÉÌʼ', |
|
310
|
|
|
|
|
|
|
sun => 'lyÉʼÉÌ sáº
́t̬' |
|
311
|
|
|
|
|
|
|
}, |
|
312
|
|
|
|
|
|
|
short => { |
|
313
|
|
|
|
|
|
|
mon => 'mvfò lyÉÌʼ', |
|
314
|
|
|
|
|
|
|
tue => 'mbÉÌÉntè mvfò lyÉÌʼ', |
|
315
|
|
|
|
|
|
|
wed => 'tsètsÉÌÉ lyÉÌʼ', |
|
316
|
|
|
|
|
|
|
thu => 'mbÉÌÉntè tsetsÉÌÉ lyÉÌʼ', |
|
317
|
|
|
|
|
|
|
fri => 'mvfò mà ga lyÉÌʼ', |
|
318
|
|
|
|
|
|
|
sat => 'mà ga lyÉÌʼ', |
|
319
|
|
|
|
|
|
|
sun => 'lyÉʼÉÌ sáº
́t̬' |
|
320
|
|
|
|
|
|
|
}, |
|
321
|
|
|
|
|
|
|
wide => { |
|
322
|
|
|
|
|
|
|
mon => 'mvfò lyÉÌʼ', |
|
323
|
|
|
|
|
|
|
tue => 'mbÉÌÉntè mvfò lyÉÌʼ', |
|
324
|
|
|
|
|
|
|
wed => 'tsètsÉÌÉ lyÉÌʼ', |
|
325
|
|
|
|
|
|
|
thu => 'mbÉÌÉntè tsetsÉÌÉ lyÉÌʼ', |
|
326
|
|
|
|
|
|
|
fri => 'mvfò mà ga lyÉÌʼ', |
|
327
|
|
|
|
|
|
|
sat => 'mà ga lyÉÌʼ', |
|
328
|
|
|
|
|
|
|
sun => 'lyÉʼÉÌ sáº
́t̬' |
|
329
|
|
|
|
|
|
|
}, |
|
330
|
|
|
|
|
|
|
}, |
|
331
|
|
|
|
|
|
|
'stand-alone' => { |
|
332
|
|
|
|
|
|
|
abbreviated => { |
|
333
|
|
|
|
|
|
|
mon => 'mvfò lyÉÌʼ', |
|
334
|
|
|
|
|
|
|
tue => 'mbÉÌÉntè mvfò lyÉÌʼ', |
|
335
|
|
|
|
|
|
|
wed => 'tsètsÉÌÉ lyÉÌʼ', |
|
336
|
|
|
|
|
|
|
thu => 'mbÉÌÉntè tsetsÉÌÉ lyÉÌʼ', |
|
337
|
|
|
|
|
|
|
fri => 'mvfò mà ga lyÉÌʼ', |
|
338
|
|
|
|
|
|
|
sat => 'mà ga lyÉÌʼ', |
|
339
|
|
|
|
|
|
|
sun => 'lyÉʼÉÌ sáº
́t̬' |
|
340
|
|
|
|
|
|
|
}, |
|
341
|
|
|
|
|
|
|
short => { |
|
342
|
|
|
|
|
|
|
mon => 'mvfò lyÉÌʼ', |
|
343
|
|
|
|
|
|
|
tue => 'mbÉÌÉntè mvfò lyÉÌʼ', |
|
344
|
|
|
|
|
|
|
wed => 'tsètsÉÌÉ lyÉÌʼ', |
|
345
|
|
|
|
|
|
|
thu => 'mbÉÌÉntè tsetsÉÌÉ lyÉÌʼ', |
|
346
|
|
|
|
|
|
|
fri => 'mvfò mà ga lyÉÌʼ', |
|
347
|
|
|
|
|
|
|
sat => 'mà ga lyÉÌʼ', |
|
348
|
|
|
|
|
|
|
sun => 'lyÉʼÉÌ sáº
́t̬' |
|
349
|
|
|
|
|
|
|
}, |
|
350
|
|
|
|
|
|
|
wide => { |
|
351
|
|
|
|
|
|
|
mon => 'mvfò lyÉÌʼ', |
|
352
|
|
|
|
|
|
|
tue => 'mbÉÌÉntè mvfò lyÉÌʼ', |
|
353
|
|
|
|
|
|
|
wed => 'tsètsÉÌÉ lyÉÌʼ', |
|
354
|
|
|
|
|
|
|
thu => 'mbÉÌÉntè tsetsÉÌÉ lyÉÌʼ', |
|
355
|
|
|
|
|
|
|
fri => 'mvfò mà ga lyÉÌʼ', |
|
356
|
|
|
|
|
|
|
sat => 'mà ga lyÉÌʼ', |
|
357
|
|
|
|
|
|
|
sun => 'lyÉʼÉÌ sáº
́t̬' |
|
358
|
|
|
|
|
|
|
}, |
|
359
|
|
|
|
|
|
|
}, |
|
360
|
|
|
|
|
|
|
}, |
|
361
|
|
|
|
|
|
|
} }, |
|
362
|
|
|
|
|
|
|
); |
|
363
|
|
|
|
|
|
|
|
|
364
|
|
|
|
|
|
|
has 'day_periods' => ( |
|
365
|
|
|
|
|
|
|
is => 'ro', |
|
366
|
|
|
|
|
|
|
isa => HashRef, |
|
367
|
|
|
|
|
|
|
init_arg => undef, |
|
368
|
|
|
|
|
|
|
default => sub { { |
|
369
|
|
|
|
|
|
|
'gregorian' => { |
|
370
|
|
|
|
|
|
|
'format' => { |
|
371
|
|
|
|
|
|
|
'abbreviated' => { |
|
372
|
|
|
|
|
|
|
'pm' => q{ncwònzém}, |
|
373
|
|
|
|
|
|
|
'am' => q{mbaʼámbaʼ}, |
|
374
|
|
|
|
|
|
|
}, |
|
375
|
|
|
|
|
|
|
'wide' => { |
|
376
|
|
|
|
|
|
|
'am' => q{mbaʼámbaʼ}, |
|
377
|
|
|
|
|
|
|
'pm' => q{ncwònzém}, |
|
378
|
|
|
|
|
|
|
}, |
|
379
|
|
|
|
|
|
|
}, |
|
380
|
|
|
|
|
|
|
}, |
|
381
|
|
|
|
|
|
|
} }, |
|
382
|
|
|
|
|
|
|
); |
|
383
|
|
|
|
|
|
|
|
|
384
|
|
|
|
|
|
|
has 'eras' => ( |
|
385
|
|
|
|
|
|
|
is => 'ro', |
|
386
|
|
|
|
|
|
|
isa => HashRef, |
|
387
|
|
|
|
|
|
|
init_arg => undef, |
|
388
|
|
|
|
|
|
|
default => sub { { |
|
389
|
|
|
|
|
|
|
'generic' => { |
|
390
|
|
|
|
|
|
|
}, |
|
391
|
|
|
|
|
|
|
'gregorian' => { |
|
392
|
|
|
|
|
|
|
abbreviated => { |
|
393
|
|
|
|
|
|
|
'0' => 'm.z.Y.', |
|
394
|
|
|
|
|
|
|
'1' => 'm.g.n.Y.' |
|
395
|
|
|
|
|
|
|
}, |
|
396
|
|
|
|
|
|
|
wide => { |
|
397
|
|
|
|
|
|
|
'0' => 'mé zyé YÄsô', |
|
398
|
|
|
|
|
|
|
'1' => 'mé gÿo Åzyé YÄsô' |
|
399
|
|
|
|
|
|
|
}, |
|
400
|
|
|
|
|
|
|
}, |
|
401
|
|
|
|
|
|
|
} }, |
|
402
|
|
|
|
|
|
|
); |
|
403
|
|
|
|
|
|
|
|
|
404
|
|
|
|
|
|
|
has 'date_formats' => ( |
|
405
|
|
|
|
|
|
|
is => 'ro', |
|
406
|
|
|
|
|
|
|
isa => HashRef, |
|
407
|
|
|
|
|
|
|
init_arg => undef, |
|
408
|
|
|
|
|
|
|
default => sub { { |
|
409
|
|
|
|
|
|
|
'generic' => { |
|
410
|
|
|
|
|
|
|
'full' => q{EEEE , 'lyÉ'Ìʼ d 'na' MMMM, y G}, |
|
411
|
|
|
|
|
|
|
'long' => q{'lyÉ'Ìʼ d 'na' MMMM, y G}, |
|
412
|
|
|
|
|
|
|
'medium' => q{d MMM, y G}, |
|
413
|
|
|
|
|
|
|
'short' => q{dd/MM/yy GGGGG}, |
|
414
|
|
|
|
|
|
|
}, |
|
415
|
|
|
|
|
|
|
'gregorian' => { |
|
416
|
|
|
|
|
|
|
'full' => q{EEEE , 'lyÉ'Ìʼ d 'na' MMMM, y}, |
|
417
|
|
|
|
|
|
|
'long' => q{'lyÉ'Ìʼ d 'na' MMMM, y}, |
|
418
|
|
|
|
|
|
|
'medium' => q{d MMM, y}, |
|
419
|
|
|
|
|
|
|
'short' => q{dd/MM/yy}, |
|
420
|
|
|
|
|
|
|
}, |
|
421
|
|
|
|
|
|
|
} }, |
|
422
|
|
|
|
|
|
|
); |
|
423
|
|
|
|
|
|
|
|
|
424
|
|
|
|
|
|
|
has 'time_formats' => ( |
|
425
|
|
|
|
|
|
|
is => 'ro', |
|
426
|
|
|
|
|
|
|
isa => HashRef, |
|
427
|
|
|
|
|
|
|
init_arg => undef, |
|
428
|
|
|
|
|
|
|
default => sub { { |
|
429
|
|
|
|
|
|
|
'generic' => { |
|
430
|
|
|
|
|
|
|
}, |
|
431
|
|
|
|
|
|
|
'gregorian' => { |
|
432
|
|
|
|
|
|
|
}, |
|
433
|
|
|
|
|
|
|
} }, |
|
434
|
|
|
|
|
|
|
); |
|
435
|
|
|
|
|
|
|
|
|
436
|
|
|
|
|
|
|
has 'datetime_formats' => ( |
|
437
|
|
|
|
|
|
|
is => 'ro', |
|
438
|
|
|
|
|
|
|
isa => HashRef, |
|
439
|
|
|
|
|
|
|
init_arg => undef, |
|
440
|
|
|
|
|
|
|
default => sub { { |
|
441
|
|
|
|
|
|
|
'generic' => { |
|
442
|
|
|
|
|
|
|
'full' => q{{1},{0}}, |
|
443
|
|
|
|
|
|
|
'long' => q{{1}, {0}}, |
|
444
|
|
|
|
|
|
|
}, |
|
445
|
|
|
|
|
|
|
'gregorian' => { |
|
446
|
|
|
|
|
|
|
'full' => q{{1},{0}}, |
|
447
|
|
|
|
|
|
|
'long' => q{{1}, {0}}, |
|
448
|
|
|
|
|
|
|
}, |
|
449
|
|
|
|
|
|
|
} }, |
|
450
|
|
|
|
|
|
|
); |
|
451
|
|
|
|
|
|
|
|
|
452
|
|
|
|
|
|
|
has 'datetime_formats_available_formats' => ( |
|
453
|
|
|
|
|
|
|
is => 'ro', |
|
454
|
|
|
|
|
|
|
isa => HashRef, |
|
455
|
|
|
|
|
|
|
init_arg => undef, |
|
456
|
|
|
|
|
|
|
default => sub { { |
|
457
|
|
|
|
|
|
|
'gregorian' => { |
|
458
|
|
|
|
|
|
|
yMEd => q{E , 'lyÉ'Ìʼ d 'na' M, y}, |
|
459
|
|
|
|
|
|
|
yMMM => q{MMM y}, |
|
460
|
|
|
|
|
|
|
yMMMEd => q{E , 'lyÉ'Ìʼ d 'na' MMM, y}, |
|
461
|
|
|
|
|
|
|
yMMMd => q{'lyÉ'Ìʼ d 'na' MMMM, y}, |
|
462
|
|
|
|
|
|
|
yMd => q{d/M/y}, |
|
463
|
|
|
|
|
|
|
}, |
|
464
|
|
|
|
|
|
|
'generic' => { |
|
465
|
|
|
|
|
|
|
yMEd => q{E , 'lyÉ'Ìʼ d 'na' M, y}, |
|
466
|
|
|
|
|
|
|
yMMM => q{MMM y}, |
|
467
|
|
|
|
|
|
|
yMMMEd => q{E , 'lyÉ'Ìʼ d 'na' MMM, y}, |
|
468
|
|
|
|
|
|
|
yMMMd => q{'lyÉ'Ìʼ d 'na' MMMM, y}, |
|
469
|
|
|
|
|
|
|
yMd => q{d/M/y}, |
|
470
|
|
|
|
|
|
|
}, |
|
471
|
|
|
|
|
|
|
} }, |
|
472
|
|
|
|
|
|
|
); |
|
473
|
|
|
|
|
|
|
|
|
474
|
|
|
|
|
|
|
has 'datetime_formats_append_item' => ( |
|
475
|
|
|
|
|
|
|
is => 'ro', |
|
476
|
|
|
|
|
|
|
isa => HashRef, |
|
477
|
|
|
|
|
|
|
init_arg => undef, |
|
478
|
|
|
|
|
|
|
default => sub { { |
|
479
|
|
|
|
|
|
|
} }, |
|
480
|
|
|
|
|
|
|
); |
|
481
|
|
|
|
|
|
|
|
|
482
|
|
|
|
|
|
|
has 'datetime_formats_interval' => ( |
|
483
|
|
|
|
|
|
|
is => 'ro', |
|
484
|
|
|
|
|
|
|
isa => HashRef, |
|
485
|
|
|
|
|
|
|
init_arg => undef, |
|
486
|
|
|
|
|
|
|
default => sub { { |
|
487
|
|
|
|
|
|
|
} }, |
|
488
|
|
|
|
|
|
|
); |
|
489
|
|
|
|
|
|
|
|
|
490
|
1
|
|
|
1
|
|
4526
|
no Moo; |
|
|
1
|
|
|
|
|
1
|
|
|
|
1
|
|
|
|
|
5
|
|
|
491
|
|
|
|
|
|
|
|
|
492
|
|
|
|
|
|
|
1; |
|
493
|
|
|
|
|
|
|
|
|
494
|
|
|
|
|
|
|
# vim: tabstop=4 |