| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
=head1 |
|
2
|
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
Locale::CLDR::Locales::Es::Any::Bo - Package for language Spanish |
|
4
|
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
=cut |
|
6
|
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
package Locale::CLDR::Locales::Es::Any::Bo; |
|
8
|
|
|
|
|
|
|
# This file auto generated from Data\common\main\es_BO.xml |
|
9
|
|
|
|
|
|
|
# on Sun 24 Apr 8:25:35 am GMT |
|
10
|
|
|
|
|
|
|
|
|
11
|
1
|
|
|
1
|
|
1542
|
use version; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
10
|
|
|
12
|
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
our $VERSION = version->declare('v0.29.0'); |
|
14
|
|
|
|
|
|
|
|
|
15
|
1
|
|
|
1
|
|
133
|
use v5.10.1; |
|
|
1
|
|
|
|
|
3
|
|
|
16
|
1
|
|
|
1
|
|
7
|
use mro 'c3'; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
11
|
|
|
17
|
1
|
|
|
1
|
|
52
|
use utf8; |
|
|
1
|
|
|
|
|
1
|
|
|
|
1
|
|
|
|
|
11
|
|
|
18
|
1
|
|
|
1
|
|
49
|
use if $^V ge v5.12.0, feature => 'unicode_strings'; |
|
|
1
|
|
|
|
|
3
|
|
|
|
1
|
|
|
|
|
26
|
|
|
19
|
|
|
|
|
|
|
|
|
20
|
1
|
|
|
1
|
|
153
|
use Types::Standard qw( Str Int HashRef ArrayRef CodeRef RegexpRef ); |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
14
|
|
|
21
|
1
|
|
|
1
|
|
1132
|
use Moo; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
9
|
|
|
22
|
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
extends('Locale::CLDR::Locales::Es::Any::419'); |
|
24
|
|
|
|
|
|
|
has 'number_symbols' => ( |
|
25
|
|
|
|
|
|
|
is => 'ro', |
|
26
|
|
|
|
|
|
|
isa => HashRef, |
|
27
|
|
|
|
|
|
|
init_arg => undef, |
|
28
|
|
|
|
|
|
|
default => sub { { |
|
29
|
|
|
|
|
|
|
'latn' => { |
|
30
|
|
|
|
|
|
|
'decimal' => q(,), |
|
31
|
|
|
|
|
|
|
'group' => q(.), |
|
32
|
|
|
|
|
|
|
}, |
|
33
|
|
|
|
|
|
|
} } |
|
34
|
|
|
|
|
|
|
); |
|
35
|
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
has 'currencies' => ( |
|
37
|
|
|
|
|
|
|
is => 'ro', |
|
38
|
|
|
|
|
|
|
isa => HashRef, |
|
39
|
|
|
|
|
|
|
init_arg => undef, |
|
40
|
|
|
|
|
|
|
default => sub { { |
|
41
|
|
|
|
|
|
|
'BOB' => { |
|
42
|
|
|
|
|
|
|
symbol => 'Bs', |
|
43
|
|
|
|
|
|
|
}, |
|
44
|
|
|
|
|
|
|
} }, |
|
45
|
|
|
|
|
|
|
); |
|
46
|
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
has 'time_zone_names' => ( |
|
49
|
|
|
|
|
|
|
is => 'ro', |
|
50
|
|
|
|
|
|
|
isa => HashRef, |
|
51
|
|
|
|
|
|
|
init_arg => undef, |
|
52
|
|
|
|
|
|
|
default => sub { { |
|
53
|
|
|
|
|
|
|
'Bolivia' => { |
|
54
|
|
|
|
|
|
|
short => { |
|
55
|
|
|
|
|
|
|
'standard' => q(BOT), |
|
56
|
|
|
|
|
|
|
}, |
|
57
|
|
|
|
|
|
|
}, |
|
58
|
|
|
|
|
|
|
} } |
|
59
|
|
|
|
|
|
|
); |
|
60
|
1
|
|
|
1
|
|
3152
|
no Moo; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
6
|
|
|
61
|
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
1; |
|
63
|
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
# vim: tabstop=4 |