— |
our $VERSION = version->declare( 'v0.44.1' );
use if $^V ge v5.12.0, feature => 'unicode_strings' ;
extends ( 'Locale::CLDR::Locales::Pt::Latn::Pt' );
has 'currencies' => (
is => 'ro' ,
isa => HashRef,
init_arg => undef ,
default => sub { {
'STN' => {
symbol => 'Db' ,
},
} },
);
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 Moo;
1;
|