=encoding utf8 =head1 NAME Locale::CLDR::Locales::Ny - Package for language Nyanja =cut package Locale::CLDR::Locales::Ny; # This file auto generated from Data\common\main\ny.xml # on Thu 25 Jan 8:49:00 am GMT use strict; use warnings; use version; our $VERSION = version->declare('v0.44.0'); use v5.10.1; use mro 'c3'; use utf8; use if $^V ge v5.12.0, feature => 'unicode_strings'; use Types::Standard qw( Str Int HashRef ArrayRef CodeRef RegexpRef ); use Moo; extends('Locale::CLDR::Locales::Root'); has 'display_name_language' => ( is => 'ro', isa => CodeRef, init_arg => undef, default => sub { sub { my %languages = ( 'ny' => 'Nyanja', ); if (@_) { return $languages{$_[0]}; } return \%languages; } }, ); has 'characters' => ( is => 'ro', isa => HashRef, init_arg => undef, default => $^V ge v5.18.0 ? eval <<'EOT' sub { no warnings 'experimental::regex_sets'; return { auxiliary => qr{[q v x]}, 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{[a b c d e f g h i j k l m n o p r s t u wŵ y z]}, }; }, EOT : sub { return { 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'], }; }, ); has 'currencies' => ( is => 'ro', isa => HashRef, init_arg => undef, default => sub { { 'MWK' => { display_name => { 'currency' => q(Malawian Kwacha), }, }, } }, ); has 'calendar_months' => ( is => 'ro', isa => HashRef, init_arg => undef, default => sub { { 'gregorian' => { 'format' => { abbreviated => { nonleap => [ 'Jan', 'Feb', 'Mal', 'Epu', 'Mei', 'Jun', 'Jul', 'Oga', 'Sep', 'Oku', 'Nov', 'Dis' ], leap => [ ], }, wide => { nonleap => [ 'Januwale', 'Febuluwale', 'Malichi', 'Epulo', 'Mei', 'Juni', 'Julai', 'Ogasiti', 'Seputemba', 'Okutoba', 'Novemba', 'Disemba' ], leap => [ ], }, }, }, } }, ); has 'calendar_days' => ( is => 'ro', isa => HashRef, init_arg => undef, default => sub { { 'gregorian' => { 'format' => { abbreviated => { mon => 'Lem', tue => 'Wir', wed => 'Tat', thu => 'Nai', fri => 'San', sat => 'Wer', sun => 'Mul' }, wide => { mon => 'Lolemba', tue => 'Lachiwiri', wed => 'Lachitatu', thu => 'Lachinayi', fri => 'Lachisanu', sat => 'Loweruka', sun => 'Lamulungu' }, }, }, } }, ); 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' => { 'full' => q{h:mm:ss a zzzz}, 'long' => q{h:mm:ss a z}, 'medium' => q{h:mm:ss a}, 'short' => q{h:mm a}, }, } }, ); 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 Moo; 1; # vim: tabstop=4