— |
our $VERSION = version->declare( 'v0.40.1' );
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 { {
'ZAR' => {
symbol => 'R' ,
},
} },
);
has 'time_zone_names' => (
is => 'ro' ,
isa => HashRef,
init_arg => undef ,
default => sub { {
'Africa_Central' => {
short => {
'standard' => q#CAT# ,
},
},
'Africa_Eastern' => {
short => {
'standard' => q#EAT# ,
},
},
'Africa_Southern' => {
short => {
'standard' => q#SAST# ,
},
},
'Africa_Western' => {
short => {
'daylight' => q#WAST# ,
'generic' => q#WAT# ,
'standard' => q#WAT# ,
},
},
} }
);
no Moo;
1;
|