File Coverage

blib/lib/Locale/CLDR/Locales/Sq/Any/Mk.pm
Criterion Covered Total %
statement 29 29 100.0
branch n/a
condition n/a
subroutine 10 10 100.0
pod n/a
total 39 39 100.0


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