— |
our $VERSION = version->declare( 'v0.34.0' );
use if $^V ge v5.12.0, feature => 'unicode_strings' ;
extends ( 'Locale::CLDR::Locales::En::Any::150' );
has 'number_symbols' => (
is => 'ro' ,
isa => HashRef,
init_arg => undef ,
default => sub { {
'latn' => {
'exponential' => q(e) ,
},
} }
);
has 'number_currency_formats' => (
is => 'ro' ,
isa => HashRef,
init_arg => undef ,
default => sub { {
'latn' => {
'pattern' => {
'default' => {
'accounting' => {
'negative' => '(#,##0.00 ¤)' ,
'positive' => '#,##0.00 ¤' ,
},
},
},
},
} },
);
no Moo;
1;
|