|
our $VERSION = version->declare( 'v0.25.2' );
use if $^V ge v5.12.0, feature => 'unicode_strings' ;
extends ( 'Locale::CLDR::Sr::Latn' );
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' => {
'long' => q{d.MM.y. G} ,
},
'gregorian' => {
'long' => q{d.MM.y.} ,
},
} },
);
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 { {
} },
);
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 { {
'gregorian' => {
MMMEd => {
M => q{E, d.MM - E, d.MM} ,
d => q{E, d.MM - E, d.MM} ,
},
MMMd => {
M => q{d.MM - d.MM} ,
d => q{d.MM - d.MM} ,
},
yMMM => {
M => q{MM.y - MM.y} ,
y => q{MM.y - MM.y} ,
},
yMMMd => {
M => q{d.MM.y. - d.MM.y.} ,
d => q{d.MM.y. - d.MM.y.} ,
y => q{d.MM.y. - d.MM.y.} ,
},
},
'generic' => {
MMMEd => {
M => q{E, d.MM - E, d.MM} ,
d => q{E, d.MM - E, d.MM} ,
},
MMMd => {
M => q{d.MM - d.MM} ,
d => q{d.MM - d.MM} ,
},
yMMM => {
M => q{MM.y - MM.y} ,
y => q{MM.y - MM.y} ,
},
yMMMd => {
M => q{d.MM.y. - d.MM.y.} ,
d => q{d.MM.y. - d.MM.y.} ,
y => q{d.MM.y. - d.MM.y.} ,
},
},
} },
);
no Moose;
__PACKAGE__->meta->make_immutable;
1;
|