File Coverage

blib/lib/DateTime/Format/Human/Duration/Simple/Locale/no.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package DateTime::Format::Human::Duration::Simple::Locale::no;
2 1     1   943 use Moose;
  1         2  
  1         7  
3 1     1   6633 use namespace::autoclean;
  1         2  
  1         11  
4 1     1   70 use utf8;
  1         3  
  1         7  
5              
6             extends 'DateTime::Format::Human::Duration::Simple::Locale';
7              
8             override '_build_translations' => sub {
9             my $self = shift;
10              
11             return {
12             and => [ 'og' ],
13              
14             year => [ 'Ã¥r', 'Ã¥r' ],
15             month => [ 'mÃ¥ned', 'mÃ¥neder' ],
16             week => [ 'uke', 'uker' ],
17             day => [ 'dag', 'dager' ],
18             hour => [ 'time', 'timer' ],
19             minute => [ 'minutt', 'minutter' ],
20             second => [ 'sekund', 'sekunder' ],
21             millisecond => [ 'millisekund', 'millisekunder' ],
22             nanosecond => [ 'nanosekund', 'nanosekunder' ],
23             };
24             };
25              
26             __PACKAGE__->meta->make_immutable;
27              
28             1;