File Coverage

blib/lib/Locale/CLDR/Locales/En/Any/Gb.pm
Criterion Covered Total %
statement 20 20 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod n/a
total 27 27 100.0


line stmt bran cond sub pod time code
1             =head1
2              
3             Locale::CLDR::Locales::En::Any::Gb - Package for language English
4              
5             =cut
6              
7             package Locale::CLDR::Locales::En::Any::Gb;
8             # This file auto generated from Data\common\main\en_GB.xml
9             # on Sun 15 Nov 4:10:11 pm GMT
10              
11 16     16   539125 use version;
  16         39  
  16         152  
12              
13             our $VERSION = version->declare('v0.28.2');
14              
15 16     16   2021 use v5.10.1;
  16         63  
16 16     16   104 use mro 'c3';
  16         32  
  16         141  
17 16     16   628 use utf8;
  16         61  
  16         158  
18 16     16   627 use if $^V ge v5.12.0, feature => 'unicode_strings';
  16         32  
  16         278  
19              
20 16     16   2261 use Moose;
  16         33  
  16         149  
21              
22             extends('Locale::CLDR::Locales::En::Any::001');
23             has 'display_name_language' => (
24             is => 'ro',
25             isa => 'CodeRef',
26             init_arg => undef,
27             default => sub {
28             sub {
29             my %languages = (
30             'nds_NL' => 'West Low German',
31              
32             );
33             if (@_) {
34             return $languages{$_[0]};
35             }
36             return \%languages;
37             }
38             },
39             );
40              
41             has 'display_name_key' => (
42             is => 'ro',
43             isa => 'HashRef[Str]',
44             init_arg => undef,
45             default => sub {
46             {
47             'colnormalization' => 'Normalised Sorting',
48              
49             }
50             },
51             );
52              
53             has 'display_name_type' => (
54             is => 'ro',
55             isa => 'HashRef[HashRef[Str]]',
56             init_arg => undef,
57             default => sub {
58             {
59             'colnormalization' => {
60             'no' => q{Sort Without Normalisation},
61             'yes' => q{Sort Unicode Normalised},
62             },
63              
64             }
65             },
66             );
67              
68             has 'units' => (
69             is => 'ro',
70             isa => 'HashRef[HashRef[HashRef[Str]]]',
71             init_arg => undef,
72             default => sub { {
73             'long' => {
74             'kelvin' => {
75             'name' => q(kelvin),
76             'one' => q({0} kelvin),
77             'other' => q({0} kelvin),
78             },
79             'stone' => {
80             'name' => q(stone),
81             'one' => q({0} stone),
82             'other' => q({0} stone),
83             },
84             },
85             'short' => {
86             'hour' => {
87             'per' => q({0}ph),
88             },
89             'second' => {
90             'per' => q({0}ps),
91             },
92             'stone' => {
93             'name' => q(stone),
94             },
95             },
96             } }
97             );
98              
99             has 'listPatterns' => (
100             is => 'ro',
101             isa => 'HashRef',
102             init_arg => undef,
103             default => sub { {
104             end => q({0} and {1}),
105             } }
106             );
107              
108             has 'currencies' => (
109             is => 'ro',
110             isa => 'HashRef',
111             init_arg => undef,
112             default => sub { {
113             'ILR' => {
114             display_name => {
115             'currency' => q(Israeli Shekel \(1980–1985\)),
116             'one' => q(Israeli shekel \(1980–1985\)),
117             'other' => q(Israeli shekels \(1980–1985\)),
118             },
119             },
120             'ILS' => {
121             display_name => {
122             'currency' => q(Israeli New Shekel),
123             'one' => q(Israeli new shekel),
124             'other' => q(Israeli new shekels),
125             },
126             },
127             } },
128             );
129              
130              
131             has 'day_period_data' => (
132             traits => ['Code'],
133             is => 'ro',
134             isa => 'CodeRef',
135             init_arg => undef,
136             handles => { call => 'execute_method' },
137             default => sub { sub {
138             # Time in hhmm format
139             my ($self, $type, $time, $day_period_type) = @_;
140             $day_period_type //= 'default';
141             SWITCH:
142             for ($type) {
143             if ($_ eq 'gregorian') {
144             if($day_period_type eq 'selection') {
145             return 'morning1' if $time >= 600
146             && $time < 1200;
147             return 'night1' if $time >= 2100
148             && $time < 2400;
149             return 'evening1' if $time >= 1800
150             && $time < 2100;
151             return 'afternoon1' if $time >= 1200
152             && $time < 1800;
153             }
154             if($day_period_type eq 'default') {
155             return 'noon' if $time == 1200;
156             return 'afternoon1' if $time > 1200
157             && $time < 1800;
158             return 'evening1' if $time >= 1800
159             && $time < 2100;
160             return 'night1' if $time >= 2100
161             && $time < 2400;
162             return 'midnight' if $time == 0;
163             return 'morning1' if $time >= 600
164             && $time < 1200;
165             }
166             last SWITCH;
167             }
168             }
169             } },
170             );
171              
172             has 'day_periods' => (
173             is => 'ro',
174             isa => 'HashRef',
175             init_arg => undef,
176             default => sub { {
177             'gregorian' => {
178             'format' => {
179             'narrow' => {
180             'noon' => q{n},
181             },
182             'abbreviated' => {
183             'noon' => q{noon},
184             'pm' => q{pm},
185             'am' => q{am},
186             },
187             'wide' => {
188             'pm' => q{pm},
189             'am' => q{am},
190             'noon' => q{noon},
191             },
192             },
193             'stand-alone' => {
194             'wide' => {
195             'pm' => q{pm},
196             'am' => q{am},
197             },
198             'narrow' => {
199             'pm' => q{p},
200             'am' => q{a},
201             'noon' => q{n},
202             },
203             },
204             },
205             } },
206             );
207              
208             has 'eras' => (
209             is => 'ro',
210             isa => 'HashRef',
211             init_arg => undef,
212             default => sub { {
213             'gregorian' => {
214             },
215             } },
216             );
217              
218             has 'date_formats' => (
219             is => 'ro',
220             isa => 'HashRef',
221             init_arg => undef,
222             default => sub { {
223             'gregorian' => {
224             },
225             } },
226             );
227              
228             has 'time_formats' => (
229             is => 'ro',
230             isa => 'HashRef',
231             init_arg => undef,
232             default => sub { {
233             'gregorian' => {
234             'full' => q{HH:mm:ss zzzz},
235             'long' => q{HH:mm:ss z},
236             'medium' => q{HH:mm:ss},
237             'short' => q{HH:mm},
238             },
239             } },
240             );
241              
242             has 'datetime_formats' => (
243             is => 'ro',
244             isa => 'HashRef',
245             init_arg => undef,
246             default => sub { {
247             'gregorian' => {
248             },
249             } },
250             );
251              
252             has 'datetime_formats_available_formats' => (
253             is => 'ro',
254             isa => 'HashRef',
255             init_arg => undef,
256             default => sub { {
257             } },
258             );
259              
260             has 'datetime_formats_append_item' => (
261             is => 'ro',
262             isa => 'HashRef',
263             init_arg => undef,
264             default => sub { {
265             } },
266             );
267              
268             has 'datetime_formats_interval' => (
269             is => 'ro',
270             isa => 'HashRef',
271             init_arg => undef,
272             default => sub { {
273             } },
274             );
275              
276             has 'time_zone_names' => (
277             is => 'ro',
278             isa => 'HashRef',
279             init_arg => undef,
280             default => sub { {
281             'Europe/London' => {
282             short => {
283             'daylight' => q(BST),
284             },
285             },
286             'Europe_Central' => {
287             short => {
288             'daylight' => q(CEST),
289             'generic' => q(CET),
290             'standard' => q(CET),
291             },
292             },
293             'Europe_Eastern' => {
294             short => {
295             'daylight' => q(EEST),
296             'generic' => q(EET),
297             'standard' => q(EET),
298             },
299             },
300             'Europe_Western' => {
301             short => {
302             'daylight' => q(WEST),
303             'generic' => q(WET),
304             'standard' => q(WET),
305             },
306             },
307             } }
308             );
309 16     16   138050 no Moose;
  16         36  
  16         98  
310             __PACKAGE__->meta->make_immutable;
311              
312             1;
313              
314             # vim: tabstop=4