line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Time::Duration::Concise::Locale::pl; |
2
|
|
|
|
|
|
|
|
3
|
2
|
|
|
2
|
|
3040
|
use 5.006; |
|
2
|
|
|
|
|
4
|
|
4
|
2
|
|
|
2
|
|
7
|
use strict; |
|
2
|
|
|
|
|
2
|
|
|
2
|
|
|
|
|
36
|
|
5
|
2
|
|
|
2
|
|
7
|
use warnings FATAL => 'all'; |
|
2
|
|
|
|
|
1
|
|
|
2
|
|
|
|
|
64
|
|
6
|
2
|
|
|
2
|
|
4
|
use utf8; |
|
2
|
|
|
|
|
2
|
|
|
2
|
|
|
|
|
12
|
|
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
our $VERSION = '0.1'; |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
=head1 NAME |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
Time::Duration::Concise::Locale::pl - Polish locale translation. |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head1 DESCRIPTION |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
Time::Duration::Concise uses Time::Duration::Concise::Locale::pl to localize concise time duration string representation. |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 VERSION |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
Version 0.1 |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head1 METHODS |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head2 translation |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
Localized translation hash |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=cut |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
sub translation { |
31
|
2
|
|
|
2
|
1
|
10
|
my ($self) = @_; |
32
|
|
|
|
|
|
|
return { |
33
|
2
|
|
|
|
|
11
|
'second' => 'sek.', |
34
|
|
|
|
|
|
|
'seconds' => 'sek.', |
35
|
|
|
|
|
|
|
'minute' => 'minuta', |
36
|
|
|
|
|
|
|
'minutes' => 'min.', |
37
|
|
|
|
|
|
|
'hour' => 'godzina', |
38
|
|
|
|
|
|
|
'hours' => 'godziny', |
39
|
|
|
|
|
|
|
'day' => 'dzień', |
40
|
|
|
|
|
|
|
'days' => 'dni', |
41
|
|
|
|
|
|
|
'month' => 'miesiąc', |
42
|
|
|
|
|
|
|
'months' => 'miesiące', |
43
|
|
|
|
|
|
|
'year' => 'rok', |
44
|
|
|
|
|
|
|
}; |
45
|
|
|
|
|
|
|
} |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=head1 AUTHOR |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
Binary.com, C<< >> |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
=cut |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
1; # End of Time::Duration::Concise::Locale::pl |