|
extends ( 'Locale::CLDR::Pt::Any' );
has 'curriencies' => (
is => 'ro' ,
isa => 'HashRef' ,
init_arg => undef ,
default => sub { {
'AOA' => {
symbol => 'Kz' ,
},
} },
);
has 'time_zone_names' => (
is => 'ro' ,
isa => 'HashRef' ,
init_arg => undef ,
default => sub { {
'Azores' => {
short => {
'daylight' => q(∅∅∅) ,
'generic' => q(∅∅∅) ,
'standard' => q(∅∅∅) ,
},
},
'Europe_Central' => {
short => {
'daylight' => q(∅∅∅) ,
'generic' => q(∅∅∅) ,
'standard' => q(∅∅∅) ,
},
},
'Europe_Eastern' => {
short => {
'daylight' => q(∅∅∅) ,
'generic' => q(∅∅∅) ,
'standard' => q(∅∅∅) ,
},
},
'Europe_Western' => {
short => {
'daylight' => q(∅∅∅) ,
'generic' => q(∅∅∅) ,
'standard' => q(∅∅∅) ,
},
},
} }
);
no Moose;
__PACKAGE__->meta->make_immutable;
1;
|