=head1
Locale::CLDR::Locales::En::Any::001 - Package for language English
=cut
# This file auto generated from Data\common\main\en_001.xml
# on Fri 19 Dec 1:36:31 am GMT
# XML file generated 2014-07-23 16:10:33 -0500 (Wed, 23 Jul 2014)
use version;
our $VERSION = version->declare('v0.26.4');
use v5.10;
use mro 'c3';
use utf8;
use if $^V ge v5.12.0, feature => 'unicode_strings';
use Moose;
extends('Locale::CLDR::Locales::En::Any');
has 'units' => (
is => 'ro',
isa => 'HashRef[HashRef[HashRef[Str]]]',
init_arg => undef,
default => sub { {
'narrow' => {
'celsius' => {
'one' => q({0}°),
'other' => q({0}°),
},
'fahrenheit' => {
'one' => q({0}°F),
'other' => q({0}°F),
},
},
} }
);
has 'curriencies' => (
is => 'ro',
isa => 'HashRef',
init_arg => undef,
default => sub { {
'USD' => {
symbol => 'US$',
},
} },
);
has 'time_zone_names' => (
is => 'ro',
isa => 'HashRef',
init_arg => undef,
default => sub { {
'Alaska' => {
short => {
'daylight' => q(∅∅∅),
'generic' => q(∅∅∅),
'standard' => q(∅∅∅),
},
},
'America_Central' => {
short => {
'daylight' => q(∅∅∅),
'generic' => q(∅∅∅),
'standard' => q(∅∅∅),
},
},
'America_Eastern' => {
short => {
'daylight' => q(∅∅∅),
'generic' => q(∅∅∅),
'standard' => q(∅∅∅),
},
},
'America_Mountain' => {
short => {
'daylight' => q(∅∅∅),
'generic' => q(∅∅∅),
'standard' => q(∅∅∅),
},
},
'America_Pacific' => {
short => {
'daylight' => q(∅∅∅),
'generic' => q(∅∅∅),
'standard' => q(∅∅∅),
},
},
'Atlantic' => {
short => {
'daylight' => q(∅∅∅),
'generic' => q(∅∅∅),
'standard' => q(∅∅∅),
},
},
'Hawaii_Aleutian' => {
short => {
'daylight' => q(∅∅∅),
'generic' => q(∅∅∅),
'standard' => q(∅∅∅),
},
},
'Pacific/Honolulu' => {
short => {
'daylight' => q(∅∅∅),
'generic' => q(∅∅∅),
'standard' => q(∅∅∅),
},
},
} }
);
no Moose;
__PACKAGE__->meta->make_immutable;
1;
# vim: tabstop=4