— |
our $VERSION = version->declare( 'v0.28.3' );
use if $^V ge v5.12.0, feature => 'unicode_strings' ;
extends ( 'Locale::CLDR::Locales::En::Any::001' );
has 'currencies' => (
is => 'ro' ,
isa => 'HashRef' ,
init_arg => undef ,
default => sub { {
'MOP' => {
symbol => 'MOP$' ,
},
} },
);
has 'time_zone_names' => (
is => 'ro' ,
isa => 'HashRef' ,
init_arg => undef ,
default => sub { {
'Hong_Kong' => {
short => {
'daylight' => q(HKST) ,
'generic' => q(HKT) ,
'standard' => q(HKT) ,
},
},
'Macau' => {
short => {
'daylight' => q(MDT) ,
'generic' => q(MST) ,
'standard' => q(MST) ,
},
},
} }
);
no Moose;
__PACKAGE__->meta->make_immutable;
1;
|