line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
=encoding utf8 |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
=head1 |
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
Locale::CLDR::Locales::Ta::Any::My - Package for language Tamil |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
=cut |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
package Locale::CLDR::Locales::Ta::Any::My; |
10
|
|
|
|
|
|
|
# This file auto generated from Data\common\main\ta_MY.xml |
11
|
|
|
|
|
|
|
# on Sun 16 Dec 4:39:17 pm GMT |
12
|
|
|
|
|
|
|
|
13
|
1
|
|
|
1
|
|
1056
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
27
|
|
14
|
1
|
|
|
1
|
|
5
|
use warnings; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
25
|
|
15
|
1
|
|
|
1
|
|
4
|
use version; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
21
|
|
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
our $VERSION = version->declare('v0.34.0'); |
18
|
|
|
|
|
|
|
|
19
|
1
|
|
|
1
|
|
104
|
use v5.10.1; |
|
1
|
|
|
|
|
4
|
|
20
|
1
|
|
|
1
|
|
5
|
use mro 'c3'; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
6
|
|
21
|
1
|
|
|
1
|
|
33
|
use utf8; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
6
|
|
22
|
1
|
|
|
1
|
|
30
|
use if $^V ge v5.12.0, feature => 'unicode_strings'; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
19
|
|
23
|
1
|
|
|
1
|
|
114
|
use Types::Standard qw( Str Int HashRef ArrayRef CodeRef RegexpRef ); |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
8
|
|
24
|
1
|
|
|
1
|
|
1041
|
use Moo; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
6
|
|
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
extends('Locale::CLDR::Locales::Ta::Any'); |
27
|
|
|
|
|
|
|
has 'number_formats' => ( |
28
|
|
|
|
|
|
|
is => 'ro', |
29
|
|
|
|
|
|
|
isa => HashRef, |
30
|
|
|
|
|
|
|
init_arg => undef, |
31
|
|
|
|
|
|
|
default => sub { { |
32
|
|
|
|
|
|
|
decimalFormat => { |
33
|
|
|
|
|
|
|
'default' => { |
34
|
|
|
|
|
|
|
'standard' => { |
35
|
|
|
|
|
|
|
'default' => '#,##0.###', |
36
|
|
|
|
|
|
|
}, |
37
|
|
|
|
|
|
|
}, |
38
|
|
|
|
|
|
|
}, |
39
|
|
|
|
|
|
|
percentFormat => { |
40
|
|
|
|
|
|
|
'default' => { |
41
|
|
|
|
|
|
|
'standard' => { |
42
|
|
|
|
|
|
|
'default' => '#,##0%', |
43
|
|
|
|
|
|
|
}, |
44
|
|
|
|
|
|
|
}, |
45
|
|
|
|
|
|
|
}, |
46
|
|
|
|
|
|
|
} }, |
47
|
|
|
|
|
|
|
); |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
has 'number_currency_formats' => ( |
50
|
|
|
|
|
|
|
is => 'ro', |
51
|
|
|
|
|
|
|
isa => HashRef, |
52
|
|
|
|
|
|
|
init_arg => undef, |
53
|
|
|
|
|
|
|
default => sub { { |
54
|
|
|
|
|
|
|
'latn' => { |
55
|
|
|
|
|
|
|
'pattern' => { |
56
|
|
|
|
|
|
|
'default' => { |
57
|
|
|
|
|
|
|
'standard' => { |
58
|
|
|
|
|
|
|
'positive' => '¤ #,##0.00', |
59
|
|
|
|
|
|
|
}, |
60
|
|
|
|
|
|
|
}, |
61
|
|
|
|
|
|
|
}, |
62
|
|
|
|
|
|
|
}, |
63
|
|
|
|
|
|
|
} }, |
64
|
|
|
|
|
|
|
); |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
has 'currencies' => ( |
67
|
|
|
|
|
|
|
is => 'ro', |
68
|
|
|
|
|
|
|
isa => HashRef, |
69
|
|
|
|
|
|
|
init_arg => undef, |
70
|
|
|
|
|
|
|
default => sub { { |
71
|
|
|
|
|
|
|
'MYR' => { |
72
|
|
|
|
|
|
|
symbol => 'RM', |
73
|
|
|
|
|
|
|
}, |
74
|
|
|
|
|
|
|
'SGD' => { |
75
|
|
|
|
|
|
|
symbol => 'S$', |
76
|
|
|
|
|
|
|
}, |
77
|
|
|
|
|
|
|
} }, |
78
|
|
|
|
|
|
|
); |
79
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
has 'time_zone_names' => ( |
82
|
|
|
|
|
|
|
is => 'ro', |
83
|
|
|
|
|
|
|
isa => HashRef, |
84
|
|
|
|
|
|
|
init_arg => undef, |
85
|
|
|
|
|
|
|
default => sub { { |
86
|
|
|
|
|
|
|
'India' => { |
87
|
|
|
|
|
|
|
short => { |
88
|
|
|
|
|
|
|
'standard' => q#â
â
â
#, |
89
|
|
|
|
|
|
|
}, |
90
|
|
|
|
|
|
|
}, |
91
|
|
|
|
|
|
|
'Malaysia' => { |
92
|
|
|
|
|
|
|
short => { |
93
|
|
|
|
|
|
|
'standard' => q#MYT#, |
94
|
|
|
|
|
|
|
}, |
95
|
|
|
|
|
|
|
}, |
96
|
|
|
|
|
|
|
'Singapore' => { |
97
|
|
|
|
|
|
|
short => { |
98
|
|
|
|
|
|
|
'standard' => q#SGT#, |
99
|
|
|
|
|
|
|
}, |
100
|
|
|
|
|
|
|
}, |
101
|
|
|
|
|
|
|
} } |
102
|
|
|
|
|
|
|
); |
103
|
1
|
|
|
1
|
|
557
|
no Moo; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
4
|
|
104
|
|
|
|
|
|
|
|
105
|
|
|
|
|
|
|
1; |
106
|
|
|
|
|
|
|
|
107
|
|
|
|
|
|
|
# vim: tabstop=4 |