line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Time::Duration::Concise::Locale::ar; |
2
|
|
|
|
|
|
|
|
3
|
2
|
|
|
2
|
|
1145
|
use 5.006; |
|
2
|
|
|
|
|
4
|
|
4
|
2
|
|
|
2
|
|
7
|
use strict; |
|
2
|
|
|
|
|
2
|
|
|
2
|
|
|
|
|
32
|
|
5
|
2
|
|
|
2
|
|
5
|
use warnings FATAL => 'all'; |
|
2
|
|
|
|
|
6
|
|
|
2
|
|
|
|
|
52
|
|
6
|
2
|
|
|
2
|
|
6
|
use utf8; |
|
2
|
|
|
|
|
2
|
|
|
2
|
|
|
|
|
7
|
|
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
our $VERSION = '2.61'; ## VERSION |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
=head1 NAME |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
Time::Duration::Concise::Locale::ar - Arabic locale translation. |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head1 DESCRIPTION |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
Time::Duration::Concise uses Time::Duration::Concise::Locale::ar to localize concise time duration string representation. |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 METHODS |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head2 translation |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
Localized translation hash |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=cut |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
sub translation { |
27
|
2
|
|
|
2
|
1
|
4
|
my ($self) = @_; |
28
|
|
|
|
|
|
|
return { |
29
|
2
|
|
|
|
|
18
|
'second' => 'ثانية', |
30
|
|
|
|
|
|
|
'seconds' => 'ثوانى', |
31
|
|
|
|
|
|
|
'minute' => 'دقيقة', |
32
|
|
|
|
|
|
|
'minutes' => 'دقائق', |
33
|
|
|
|
|
|
|
'hour' => 'ساعة', |
34
|
|
|
|
|
|
|
'hours' => 'ساعات', |
35
|
|
|
|
|
|
|
'day' => 'يوم', |
36
|
|
|
|
|
|
|
'days' => 'أيام', |
37
|
|
|
|
|
|
|
'month' => 'شهر', |
38
|
|
|
|
|
|
|
'months' => 'شهور', |
39
|
|
|
|
|
|
|
'year' => 'عام', |
40
|
|
|
|
|
|
|
}; |
41
|
|
|
|
|
|
|
} |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=head1 AUTHOR |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
Binary.com, C<< >> |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=cut |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
1; # End of Time::Duration::Concise::Locale::ar |