|
extends ( 'Locale::CLDR::Ta::Any' );
has 'number_formats' => (
is => 'ro' ,
isa => 'HashRef' ,
init_arg => undef ,
default => sub { {
decimalFormat => {
'default' => {
'0' => {
'default' => '#,##0.###' ,
},
},
},
percentFormat => {
'default' => {
'0' => {
'default' => '#,##0%' ,
},
},
},
} },
);
has 'number_currency_formats' => (
is => 'ro' ,
isa => 'HashRef' ,
init_arg => undef ,
default => sub { {
'latn' => {
'pattern' => {
'default' => {
'standard' => {
'negative' => '¤ #,##0.00' ,
'positive' => '¤ #,##0.00' ,
},
},
},
},
} },
);
has 'curriencies' => (
is => 'ro' ,
isa => 'HashRef' ,
init_arg => undef ,
default => sub { {
'MYR' => {
symbol => 'RM' ,
display_name => {
'currency' => q(மலேசிய ரிங்கிட்) ,
},
},
'SGD' => {
symbol => '$' ,
},
'USD' => {
symbol => 'US$' ,
},
} },
);
has 'time_zone_names' => (
is => 'ro' ,
isa => 'HashRef' ,
init_arg => undef ,
default => sub { {
'Brunei' => {
long => {
'standard' => q(புருணை டாரு சலாம் நேரம்) ,
},
},
'India' => {
short => {
'standard' => q(∅∅∅) ,
},
},
'Indonesia_Central' => {
long => {
'standard' => q(மத்திய இந்தோனேசிய நேரம்) ,
},
},
'Indonesia_Eastern' => {
long => {
'standard' => q(கிழக்கத்திய இந்தோனேசிய நேரம்) ,
},
},
'Indonesia_Western' => {
long => {
'standard' => q(மேற்கத்திய இந்தோனேசிய நேரம்) ,
},
},
'Malaysia' => {
long => {
'standard' => q(மலேசிய நேரம்) ,
},
short => {
'standard' => q(MYT) ,
},
},
'Singapore' => {
long => {
'standard' => q(சிங்கப்பூர் நேரம்) ,
},
short => {
'standard' => q(SGT) ,
},
},
} }
);
no Moose;
__PACKAGE__->meta->make_immutable;
1;
|