— |
our $VERSION = version->declare( 'v0.27.2' );
use if $^V ge v5.12.0, feature => 'unicode_strings' ;
extends ( 'Locale::CLDR::Locales::En::Any::001' );
has 'units' => (
is => 'ro' ,
isa => 'HashRef[HashRef[HashRef[Str]]]' ,
init_arg => undef ,
default => sub { {
'narrow' => {
'celsius' => {
'one' => q({0}°C) ,
'other' => q({0}°C) ,
},
'fahrenheit' => {
'one' => q({0}°) ,
'other' => q({0}°) ,
},
},
} }
);
has 'curriencies' => (
is => 'ro' ,
isa => 'HashRef' ,
init_arg => undef ,
default => sub { {
'KYD' => {
symbol => '$' ,
},
} },
);
no Moose;
__PACKAGE__->meta->make_immutable;
1;
|