|
extends ( 'Locale::CLDR::Es::Any' );
has 'number_symbols' => (
is => 'ro' ,
isa => 'HashRef' ,
init_arg => undef ,
default => sub { {
'latn' => {
'decimal' => q(,) ,
'exponential' => q() ,
'group' => q(.) ,
'infinity' => q() ,
'list' => q() ,
'minusSign' => q() ,
'nan' => q() ,
'perMille' => q() ,
'percentSign' => q() ,
'plusSign' => q() ,
'superscriptingExponent' => q() ,
},
} }
);
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 { {
'PYG' => {
symbol => '₲' ,
},
} },
);
no Moose;
__PACKAGE__->meta->make_immutable;
1;
|