|
our $VERSION = version->declare( 'v0.25.1' );
use if $^V ge v5.12.0, feature => 'unicode_strings' ;
extends ( 'Locale::CLDR::Root' );
has 'display_name_language' => (
is => 'ro' ,
isa => 'CodeRef' ,
init_arg => undef ,
default => sub {
sub {
my %languages = (
'nso' => 'Sesotho sa Leboa' ,
);
if ( @_ ) {
return $languages { $_ [0]};
}
return \ %languages ;
}
},
);
has 'characters' => (
is => 'ro' ,
isa => 'HashRef' ,
init_arg => undef ,
default => sub {
no warnings 'experimental::regex_sets' ;
return {
auxiliary => qr{(?^u:[c q v z])} ,
index => [ 'A' , 'B' , 'C' , 'D' , 'E' , 'F' , 'G' , 'H' , 'I' , 'J' , 'K' , 'L' , 'M' , 'N' , 'O' , 'P' , 'Q' , 'R' , 'S' , 'T' , 'U' , 'V' , 'W' , 'X' , 'Y' , 'Z' ],
main => qr{(?^u:[a b d e ê f g h i j k l m n o ô p r s š t u w x y])} ,
};
},
);
has 'quote_start' => (
is => 'ro' ,
isa => 'Str' ,
init_arg => undef ,
default => qq{‘} ,
);
has 'quote_end' => (
is => 'ro' ,
isa => 'Str' ,
init_arg => undef ,
default => qq{’} ,
);
has 'alternate_quote_start' => (
is => 'ro' ,
isa => 'Str' ,
init_arg => undef ,
default => qq{“} ,
);
has 'alternate_quote_end' => (
is => 'ro' ,
isa => 'Str' ,
init_arg => undef ,
default => qq{”} ,
);
has 'number_symbols' => (
is => 'ro' ,
isa => 'HashRef' ,
init_arg => undef ,
default => sub { {
'latn' => {
'decimal' => q(,) ,
'exponential' => q() ,
'group' => q( ) ,
'infinity' => q() ,
'list' => q() ,
'minusSign' => q() ,
'nan' => q() ,
'perMille' => q() ,
'percentSign' => q() ,
'plusSign' => q() ,
'superscriptingExponent' => q() ,
},
} }
);
has 'number_formats' => (
is => 'ro' ,
isa => 'HashRef' ,
init_arg => undef ,
default => sub { {
decimalFormat => {
'default' => {
'0' => {
'default' => '#,##0.###' ,
},
},
},
percentFormat => {
'default' => {
'0' => {
'default' => '#,##0%' ,
},
},
},
scientificFormat => {
'default' => {
'0' => {
'default' => '#E0' ,
},
},
},
} },
);
has 'number_currency_formats' => (
is => 'ro' ,
isa => 'HashRef' ,
init_arg => undef ,
default => sub { {
'latn' => {
'pattern' => {
'default' => {
'standard' => {
'negative' => '¤#,##0.00' ,
'positive' => '¤#,##0.00' ,
},
},
},
},
} },
);
has 'curriencies' => (
is => 'ro' ,
isa => 'HashRef' ,
init_arg => undef ,
default => sub { {
'ZAR' => {
symbol => 'R' ,
},
} },
);
has 'calendar_months' => (
is => 'ro' ,
isa => 'HashRef' ,
init_arg => undef ,
default => sub { {
'gregorian' => {
'format' => {
abbreviated => {
nonleap => [
'Jan' ,
'Feb' ,
'Mat' ,
'Apo' ,
'Mei' ,
'Jun' ,
'Jul' ,
'Ago' ,
'Set' ,
'Okt' ,
'Nof' ,
'Dis'
],
leap => [
],
},
wide => {
nonleap => [
'Janaware' ,
'Feberware' ,
'Matšhe' ,
'Aporele' ,
'Mei' ,
'June' ,
'Julae' ,
'Agostose' ,
'Setemere' ,
'Oktobore' ,
'Nofemere' ,
'Disemere'
],
leap => [
],
},
},
},
} },
);
has 'calendar_days' => (
is => 'ro' ,
isa => 'HashRef' ,
init_arg => undef ,
default => sub { {
'gregorian' => {
'format' => {
abbreviated => {
mon => 'Mos' ,
tue => 'Bed' ,
wed => 'Rar' ,
thu => 'Ne' ,
fri => 'Hla' ,
sat => 'Mok' ,
sun => 'Son'
},
wide => {
mon => 'Mosupalogo' ,
tue => 'Labobedi' ,
wed => 'Laboraro' ,
thu => 'Labone' ,
fri => 'Labohlano' ,
sat => 'Mokibelo' ,
sun => 'Sontaga'
},
},
},
} },
);
has 'eras' => (
is => 'ro' ,
isa => 'HashRef' ,
init_arg => undef ,
default => sub { {
'gregorian' => {
},
} },
);
has 'date_formats' => (
is => 'ro' ,
isa => 'HashRef' ,
init_arg => undef ,
default => sub { {
'gregorian' => {
},
} },
);
has 'time_formats' => (
is => 'ro' ,
isa => 'HashRef' ,
init_arg => undef ,
default => sub { {
'gregorian' => {
},
} },
);
has 'datetime_formats' => (
is => 'ro' ,
isa => 'HashRef' ,
init_arg => undef ,
default => sub { {
'gregorian' => {
},
} },
);
has 'datetime_formats_available_formats' => (
is => 'ro' ,
isa => 'HashRef' ,
init_arg => undef ,
default => sub { {
} },
);
has 'datetime_formats_append_item' => (
is => 'ro' ,
isa => 'HashRef' ,
init_arg => undef ,
default => sub { {
} },
);
has 'datetime_formats_interval' => (
is => 'ro' ,
isa => 'HashRef' ,
init_arg => undef ,
default => sub { {
} },
);
no Moose;
__PACKAGE__->meta->make_immutable;
1;
|