— |
our $VERSION = version->declare( 'v0.26.4' );
use if $^V ge v5.12.0, feature => 'unicode_strings' ;
extends ( 'Locale::CLDR::Locales::En::Any' );
has 'units' => (
is => 'ro' ,
isa => 'HashRef[HashRef[HashRef[Str]]]' ,
init_arg => undef ,
default => sub { {
'narrow' => {
'celsius' => {
'one' => q({0}°) ,
'other' => q({0}°) ,
},
'fahrenheit' => {
'one' => q({0}°F) ,
'other' => q({0}°F) ,
},
},
} }
);
has 'curriencies' => (
is => 'ro' ,
isa => 'HashRef' ,
init_arg => undef ,
default => sub { {
'USD' => {
symbol => 'US$' ,
},
} },
);
has 'time_zone_names' => (
is => 'ro' ,
isa => 'HashRef' ,
init_arg => undef ,
default => sub { {
'Alaska' => {
short => {
'daylight' => q(∅∅∅) ,
'generic' => q(∅∅∅) ,
'standard' => q(∅∅∅) ,
},
},
'America_Central' => {
short => {
'daylight' => q(∅∅∅) ,
'generic' => q(∅∅∅) ,
'standard' => q(∅∅∅) ,
},
},
'America_Eastern' => {
short => {
'daylight' => q(∅∅∅) ,
'generic' => q(∅∅∅) ,
'standard' => q(∅∅∅) ,
},
},
'America_Mountain' => {
short => {
'daylight' => q(∅∅∅) ,
'generic' => q(∅∅∅) ,
'standard' => q(∅∅∅) ,
},
},
'America_Pacific' => {
short => {
'daylight' => q(∅∅∅) ,
'generic' => q(∅∅∅) ,
'standard' => q(∅∅∅) ,
},
},
'Atlantic' => {
short => {
'daylight' => q(∅∅∅) ,
'generic' => q(∅∅∅) ,
'standard' => q(∅∅∅) ,
},
},
'Hawaii_Aleutian' => {
short => {
'daylight' => q(∅∅∅) ,
'generic' => q(∅∅∅) ,
'standard' => q(∅∅∅) ,
},
},
'Pacific/Honolulu' => {
short => {
'daylight' => q(∅∅∅) ,
'generic' => q(∅∅∅) ,
'standard' => q(∅∅∅) ,
},
},
} }
);
no Moose;
__PACKAGE__->meta->make_immutable;
1;
|