File Coverage

blib/lib/Locale/CLDR/Locales/Ta/Any/Sg.pm
Criterion Covered Total %
statement 29 29 100.0
branch n/a
condition n/a
subroutine 10 10 100.0
pod n/a
total 39 39 100.0


line stmt bran cond sub pod time code
1             =encoding utf8
2              
3             =head1
4              
5             Locale::CLDR::Locales::Ta::Any::Sg - Package for language Tamil
6              
7             =cut
8              
9             package Locale::CLDR::Locales::Ta::Any::Sg;
10             # This file auto generated from Data\common\main\ta_SG.xml
11             # on Sun 16 Dec 4:39:18 pm GMT
12              
13 1     1   1045 use strict;
  1         18  
  1         26  
14 1     1   5 use warnings;
  1         2  
  1         23  
15 1     1   4 use version;
  1         2  
  1         5  
16              
17             our $VERSION = version->declare('v0.34.0');
18              
19 1     1   103 use v5.10.1;
  1         3  
20 1     1   11 use mro 'c3';
  1         2  
  1         7  
21 1     1   34 use utf8;
  1         2  
  1         6  
22 1     1   29 use if $^V ge v5.12.0, feature => 'unicode_strings';
  1         2  
  1         26  
23 1     1   101 use Types::Standard qw( Str Int HashRef ArrayRef CodeRef RegexpRef );
  1         2  
  1         6  
24 1     1   929 use Moo;
  1         1  
  1         5  
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 => '$',
76             },
77             'USD' => {
78             symbol => 'US$',
79             },
80             } },
81             );
82              
83              
84             has 'time_zone_names' => (
85             is => 'ro',
86             isa => HashRef,
87             init_arg => undef,
88             default => sub { {
89             'India' => {
90             short => {
91             'standard' => q#∅∅∅#,
92             },
93             },
94             'Malaysia' => {
95             short => {
96             'standard' => q#MYT#,
97             },
98             },
99             'Singapore' => {
100             short => {
101             'standard' => q#SGT#,
102             },
103             },
104             } }
105             );
106 1     1   549 no Moo;
  1         2  
  1         3  
107              
108             1;
109              
110             # vim: tabstop=4