|
our $VERSION = version->declare( 'v0.25.5' );
use if $^V ge v5.12.0, feature => 'unicode_strings' ;
extends ( 'Locale::CLDR::Ar::Any' );
has 'default_numbering_system' => (
is => 'ro' ,
isa => 'Str' ,
init_arg => undef ,
default => 'latn' ,
);
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_currency_formats' => (
is => 'ro' ,
isa => 'HashRef' ,
init_arg => undef ,
default => sub { {
'latn' => {
'pattern' => {
'default' => {
'standard' => {
'negative' => '¤#0.00' ,
'positive' => '¤#0.00' ,
},
},
},
},
} },
);
has 'calendar_months' => (
is => 'ro' ,
isa => 'HashRef' ,
init_arg => undef ,
default => sub { {
'gregorian' => {
'format' => {
abbreviated => {
nonleap => [
'جانفي' ,
'فيفري' ,
'مارس' ,
'أفريل' ,
'ماي' ,
'جوان' ,
'جويلية' ,
'أوت' ,
'سبتمبر' ,
'أكتوبر' ,
'نوفمبر' ,
'ديسمبر'
],
leap => [
],
},
narrow => {
nonleap => [
'ج' ,
'ف' ,
'م' ,
'أ' ,
'م' ,
'ج' ,
'ج' ,
'أ' ,
'س' ,
'أ' ,
'ن' ,
'د'
],
leap => [
],
},
wide => {
nonleap => [
'جانفي' ,
'فيفري' ,
'مارس' ,
'أفريل' ,
'ماي' ,
'جوان' ,
'جويلية' ,
'أوت' ,
'سبتمبر' ,
'أكتوبر' ,
'نوفمبر' ,
'ديسمبر'
],
leap => [
],
},
},
'stand-alone' => {
abbreviated => {
nonleap => [
'جانفي' ,
'فيفري' ,
'مارس' ,
'أفريل' ,
'ماي' ,
'جوان' ,
'جويلية' ,
'أوت' ,
'سبتمبر' ,
'أكتوبر' ,
'نوفمبر' ,
'ديسمبر'
],
leap => [
],
},
narrow => {
nonleap => [
'ج' ,
'ف' ,
'م' ,
'أ' ,
'م' ,
'ج' ,
'ج' ,
'أ' ,
'س' ,
'أ' ,
'ن' ,
'د'
],
leap => [
],
},
wide => {
nonleap => [
'جانفي' ,
'فيفري' ,
'مارس' ,
'أفريل' ,
'ماي' ,
'جوان' ,
'جويلية' ,
'أوت' ,
'سبتمبر' ,
'أكتوبر' ,
'نوفمبر' ,
'ديسمبر'
],
leap => [
],
},
},
},
} },
);
has 'eras' => (
is => 'ro' ,
isa => 'HashRef' ,
init_arg => undef ,
default => sub { {
'generic' => {
},
'gregorian' => {
},
} },
);
has 'date_formats' => (
is => 'ro' ,
isa => 'HashRef' ,
init_arg => undef ,
default => sub { {
'generic' => {
'medium' => q{G y/MM/dd} ,
'short' => q{GGGGG y/M/d} ,
},
'gregorian' => {
'medium' => q{y/MM/dd} ,
'short' => q{y/M/d} ,
},
} },
);
has 'time_formats' => (
is => 'ro' ,
isa => 'HashRef' ,
init_arg => undef ,
default => sub { {
'generic' => {
},
'gregorian' => {
},
} },
);
has 'datetime_formats' => (
is => 'ro' ,
isa => 'HashRef' ,
init_arg => undef ,
default => sub { {
'generic' => {
},
'gregorian' => {
},
} },
);
has 'datetime_formats_available_formats' => (
is => 'ro' ,
isa => 'HashRef' ,
init_arg => undef ,
default => sub { {
'generic' => {
MMdd => q{MM/dd} ,
Md => q{M/d} ,
yyyyM => q{G y/M} ,
yyyyMM => q{G y/MM} ,
yyyyMd => q{G y/M/d} ,
},
'gregorian' => {
MMdd => q{MM/dd} ,
Md => q{M/d} ,
yM => q{y/M} ,
yMM => q{y/MM} ,
yMd => q{y/M/d} ,
},
} },
);
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 { {
'generic' => {
M => {
M => q{M-M} ,
},
MMMd => {
d => q{d-d MMM} ,
},
d => {
d => q{d-d} ,
},
y => {
y => q{G y-y} ,
},
yMMMd => {
d => q{d-d MMM، y G} ,
},
},
'gregorian' => {
M => {
M => q{M-M} ,
},
MMMd => {
d => q{d-d MMM} ,
},
d => {
d => q{d-d} ,
},
y => {
y => q{y-y} ,
},
yMMMd => {
d => q{d-d MMM، y} ,
},
},
} },
);
no Moose;
__PACKAGE__->meta->make_immutable;
1;
|