File Coverage

blib/lib/Locale/CLDR/Locales/En/Any/Im.pm
Criterion Covered Total %
statement 23 23 100.0
branch n/a
condition n/a
subroutine 8 8 100.0
pod n/a
total 31 31 100.0


line stmt bran cond sub pod time code
1             =head1
2              
3             Locale::CLDR::Locales::En::Any::Im - Package for language English
4              
5             =cut
6              
7             package Locale::CLDR::Locales::En::Any::Im;
8             # This file auto generated from Data\common\main\en_IM.xml
9             # on Sun 24 Apr 8:24:43 am GMT
10              
11 1     1   725 use version;
  1         2  
  1         5  
12              
13             our $VERSION = version->declare('v0.29.0');
14              
15 1     1   78 use v5.10.1;
  1         3  
16 1     1   4 use mro 'c3';
  1         1  
  1         5  
17 1     1   29 use utf8;
  1         2  
  1         5  
18 1     1   31 use if $^V ge v5.12.0, feature => 'unicode_strings';
  1         1  
  1         10  
19              
20 1     1   86 use Types::Standard qw( Str Int HashRef ArrayRef CodeRef RegexpRef );
  1         2  
  1         5  
21 1     1   684 use Moo;
  1         1  
  1         6  
22              
23             extends('Locale::CLDR::Locales::En::Any::001');
24             has 'currencies' => (
25             is => 'ro',
26             isa => HashRef,
27             init_arg => undef,
28             default => sub { {
29             'GBP' => {
30             display_name => {
31             'currency' => q(UK Pound),
32             'one' => q(UK pound),
33             'other' => q(UK pounds),
34             },
35             },
36             } },
37             );
38              
39              
40             has 'day_period_data' => (
41             is => 'ro',
42             isa => CodeRef,
43             init_arg => undef,
44             default => sub { sub {
45             # Time in hhmm format
46             my ($self, $type, $time, $day_period_type) = @_;
47             $day_period_type //= 'default';
48             SWITCH:
49             for ($type) {
50             if ($_ eq 'gregorian') {
51             if($day_period_type eq 'default') {
52             return 'noon' if $time == 1200;
53             return 'midnight' if $time == 0;
54             return 'evening1' if $time >= 1800
55             && $time < 2100;
56             return 'night1' if $time >= 2100;
57             return 'night1' if $time < 600;
58             return 'afternoon1' if $time >= 1200
59             && $time < 1800;
60             return 'morning1' if $time >= 600
61             && $time < 1200;
62             }
63             if($day_period_type eq 'selection') {
64             return 'afternoon1' if $time >= 1200
65             && $time < 1800;
66             return 'morning1' if $time >= 600
67             && $time < 1200;
68             return 'night1' if $time >= 2100;
69             return 'night1' if $time < 600;
70             return 'evening1' if $time >= 1800
71             && $time < 2100;
72             }
73             last SWITCH;
74             }
75             }
76             } },
77             );
78              
79             around day_period_data => sub {
80             my ($orig, $self) = @_;
81             return $self->$orig;
82             };
83              
84             has 'eras' => (
85             is => 'ro',
86             isa => HashRef,
87             init_arg => undef,
88             default => sub { {
89             'gregorian' => {
90             },
91             } },
92             );
93              
94             has 'date_formats' => (
95             is => 'ro',
96             isa => HashRef,
97             init_arg => undef,
98             default => sub { {
99             'gregorian' => {
100             },
101             } },
102             );
103              
104             has 'time_formats' => (
105             is => 'ro',
106             isa => HashRef,
107             init_arg => undef,
108             default => sub { {
109             'gregorian' => {
110             'full' => q{HH:mm:ss zzzz},
111             'long' => q{HH:mm:ss z},
112             'medium' => q{HH:mm:ss},
113             'short' => q{HH:mm},
114             },
115             } },
116             );
117              
118             has 'datetime_formats' => (
119             is => 'ro',
120             isa => HashRef,
121             init_arg => undef,
122             default => sub { {
123             'gregorian' => {
124             },
125             } },
126             );
127              
128             has 'datetime_formats_available_formats' => (
129             is => 'ro',
130             isa => HashRef,
131             init_arg => undef,
132             default => sub { {
133             } },
134             );
135              
136             has 'datetime_formats_append_item' => (
137             is => 'ro',
138             isa => HashRef,
139             init_arg => undef,
140             default => sub { {
141             } },
142             );
143              
144             has 'datetime_formats_interval' => (
145             is => 'ro',
146             isa => HashRef,
147             init_arg => undef,
148             default => sub { {
149             } },
150             );
151              
152 1     1   2103 no Moo;
  1         2  
  1         5  
153              
154             1;
155              
156             # vim: tabstop=4