|
our $VERSION = version->declare( 'v0.25.3' );
use if $^V ge v5.12.0, feature => 'unicode_strings' ;
extends ( 'Locale::CLDR::Pt::Any' );
has 'algorithmic_number_format_data' => (
is => 'ro' ,
isa => 'HashRef' ,
init_arg => undef ,
default => sub { {
} },
);
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;
|