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