line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
=head1 |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
Locale::CLDR::Locales::Ta::Any::Sg - Package for language Tamil |
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
=cut |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
package Locale::CLDR::Locales::Ta::Any::Sg; |
8
|
|
|
|
|
|
|
# This file auto generated from Data\common\main\ta_SG.xml |
9
|
|
|
|
|
|
|
# on Sun 24 Apr 8:53:01 am GMT |
10
|
|
|
|
|
|
|
|
11
|
1
|
|
|
1
|
|
847
|
use version; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
5
|
|
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
our $VERSION = version->declare('v0.29.0'); |
14
|
|
|
|
|
|
|
|
15
|
1
|
|
|
1
|
|
78
|
use v5.10.1; |
|
1
|
|
|
|
|
2
|
|
16
|
1
|
|
|
1
|
|
3
|
use mro 'c3'; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
4
|
|
17
|
1
|
|
|
1
|
|
33
|
use utf8; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
5
|
|
18
|
1
|
|
|
1
|
|
24
|
use if $^V ge v5.12.0, feature => 'unicode_strings'; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
9
|
|
19
|
|
|
|
|
|
|
|
20
|
1
|
|
|
1
|
|
111
|
use Types::Standard qw( Str Int HashRef ArrayRef CodeRef RegexpRef ); |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
5
|
|
21
|
1
|
|
|
1
|
|
607
|
use Moo; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
4
|
|
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
extends('Locale::CLDR::Locales::Ta::Any'); |
24
|
|
|
|
|
|
|
has 'number_formats' => ( |
25
|
|
|
|
|
|
|
is => 'ro', |
26
|
|
|
|
|
|
|
isa => HashRef, |
27
|
|
|
|
|
|
|
init_arg => undef, |
28
|
|
|
|
|
|
|
default => sub { { |
29
|
|
|
|
|
|
|
decimalFormat => { |
30
|
|
|
|
|
|
|
'default' => { |
31
|
|
|
|
|
|
|
'standard' => { |
32
|
|
|
|
|
|
|
'' => '#,##0.###', |
33
|
|
|
|
|
|
|
}, |
34
|
|
|
|
|
|
|
}, |
35
|
|
|
|
|
|
|
}, |
36
|
|
|
|
|
|
|
percentFormat => { |
37
|
|
|
|
|
|
|
'default' => { |
38
|
|
|
|
|
|
|
'standard' => { |
39
|
|
|
|
|
|
|
'' => '#,##0%', |
40
|
|
|
|
|
|
|
}, |
41
|
|
|
|
|
|
|
}, |
42
|
|
|
|
|
|
|
}, |
43
|
|
|
|
|
|
|
} }, |
44
|
|
|
|
|
|
|
); |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
has 'number_currency_formats' => ( |
47
|
|
|
|
|
|
|
is => 'ro', |
48
|
|
|
|
|
|
|
isa => HashRef, |
49
|
|
|
|
|
|
|
init_arg => undef, |
50
|
|
|
|
|
|
|
default => sub { { |
51
|
|
|
|
|
|
|
'latn' => { |
52
|
|
|
|
|
|
|
'pattern' => { |
53
|
|
|
|
|
|
|
'default' => { |
54
|
|
|
|
|
|
|
'standard' => { |
55
|
|
|
|
|
|
|
'positive' => '¤ #,##0.00', |
56
|
|
|
|
|
|
|
}, |
57
|
|
|
|
|
|
|
}, |
58
|
|
|
|
|
|
|
}, |
59
|
|
|
|
|
|
|
}, |
60
|
|
|
|
|
|
|
} }, |
61
|
|
|
|
|
|
|
); |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
has 'currencies' => ( |
64
|
|
|
|
|
|
|
is => 'ro', |
65
|
|
|
|
|
|
|
isa => HashRef, |
66
|
|
|
|
|
|
|
init_arg => undef, |
67
|
|
|
|
|
|
|
default => sub { { |
68
|
|
|
|
|
|
|
'MYR' => { |
69
|
|
|
|
|
|
|
symbol => 'RM', |
70
|
|
|
|
|
|
|
}, |
71
|
|
|
|
|
|
|
'SGD' => { |
72
|
|
|
|
|
|
|
symbol => '$', |
73
|
|
|
|
|
|
|
}, |
74
|
|
|
|
|
|
|
'USD' => { |
75
|
|
|
|
|
|
|
symbol => 'US$', |
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
|
|
1840
|
no Moo; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
4
|
|
104
|
|
|
|
|
|
|
|
105
|
|
|
|
|
|
|
1; |
106
|
|
|
|
|
|
|
|
107
|
|
|
|
|
|
|
# vim: tabstop=4 |