| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
=encoding utf8 |
|
2
|
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
=head1 NAME |
|
4
|
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
Locale::CLDR::Locales::Bss - Package for language Akoose |
|
6
|
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
=cut |
|
8
|
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
package Locale::CLDR::Locales::Bss; |
|
10
|
|
|
|
|
|
|
# This file auto generated from Data\common\main\bss.xml |
|
11
|
|
|
|
|
|
|
# on Fri 17 Jan 12:03:31 pm GMT |
|
12
|
|
|
|
|
|
|
|
|
13
|
1
|
|
|
1
|
|
1673262
|
use strict; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
29
|
|
|
14
|
1
|
|
|
1
|
|
4
|
use warnings; |
|
|
1
|
|
|
|
|
1
|
|
|
|
1
|
|
|
|
|
47
|
|
|
15
|
1
|
|
|
1
|
|
3
|
use version; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
7
|
|
|
16
|
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
our $VERSION = version->declare('v0.46.0'); |
|
18
|
|
|
|
|
|
|
|
|
19
|
1
|
|
|
1
|
|
90
|
use v5.12.0; |
|
|
1
|
|
|
|
|
4
|
|
|
20
|
1
|
|
|
1
|
|
4
|
use mro 'c3'; |
|
|
1
|
|
|
|
|
1
|
|
|
|
1
|
|
|
|
|
7
|
|
|
21
|
1
|
|
|
1
|
|
53
|
use utf8; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
7
|
|
|
22
|
1
|
|
|
1
|
|
35
|
use feature 'unicode_strings'; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
117
|
|
|
23
|
1
|
|
|
1
|
|
4
|
use Types::Standard qw( Str Int HashRef ArrayRef CodeRef RegexpRef ); |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
18
|
|
|
24
|
1
|
|
|
1
|
|
1650
|
use Moo; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
6
|
|
|
25
|
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
extends('Locale::CLDR::Locales::Root'); |
|
27
|
|
|
|
|
|
|
has 'display_name_language' => ( |
|
28
|
|
|
|
|
|
|
is => 'ro', |
|
29
|
|
|
|
|
|
|
isa => CodeRef, |
|
30
|
|
|
|
|
|
|
init_arg => undef, |
|
31
|
|
|
|
|
|
|
default => sub { |
|
32
|
|
|
|
|
|
|
sub { |
|
33
|
|
|
|
|
|
|
my %languages = ( |
|
34
|
|
|
|
|
|
|
'bss' => 'Akoose', |
|
35
|
|
|
|
|
|
|
'en' => 'Akáálé', |
|
36
|
|
|
|
|
|
|
'fr' => 'Frɛnsé', |
|
37
|
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
); |
|
39
|
|
|
|
|
|
|
if (@_) { |
|
40
|
|
|
|
|
|
|
return $languages{$_[0]}; |
|
41
|
|
|
|
|
|
|
} |
|
42
|
|
|
|
|
|
|
return \%languages; |
|
43
|
|
|
|
|
|
|
} |
|
44
|
|
|
|
|
|
|
}, |
|
45
|
|
|
|
|
|
|
); |
|
46
|
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
has 'display_name_script' => ( |
|
48
|
|
|
|
|
|
|
is => 'ro', |
|
49
|
|
|
|
|
|
|
isa => CodeRef, |
|
50
|
|
|
|
|
|
|
init_arg => undef, |
|
51
|
|
|
|
|
|
|
default => sub { |
|
52
|
|
|
|
|
|
|
sub { |
|
53
|
|
|
|
|
|
|
my %scripts = ( |
|
54
|
|
|
|
|
|
|
'Latn' => 'Akoose', |
|
55
|
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
); |
|
57
|
|
|
|
|
|
|
if ( @_ ) { |
|
58
|
|
|
|
|
|
|
return $scripts{$_[0]}; |
|
59
|
|
|
|
|
|
|
} |
|
60
|
|
|
|
|
|
|
return \%scripts; |
|
61
|
|
|
|
|
|
|
} |
|
62
|
|
|
|
|
|
|
} |
|
63
|
|
|
|
|
|
|
); |
|
64
|
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
has 'display_name_region' => ( |
|
66
|
|
|
|
|
|
|
is => 'ro', |
|
67
|
|
|
|
|
|
|
isa => HashRef[Str], |
|
68
|
|
|
|
|
|
|
init_arg => undef, |
|
69
|
|
|
|
|
|
|
default => sub { |
|
70
|
|
|
|
|
|
|
{ |
|
71
|
|
|
|
|
|
|
'CM' => 'Kamerûn', |
|
72
|
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
} |
|
74
|
|
|
|
|
|
|
}, |
|
75
|
|
|
|
|
|
|
); |
|
76
|
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
has 'display_name_key' => ( |
|
78
|
|
|
|
|
|
|
is => 'ro', |
|
79
|
|
|
|
|
|
|
isa => HashRef[Str], |
|
80
|
|
|
|
|
|
|
init_arg => undef, |
|
81
|
|
|
|
|
|
|
default => sub { |
|
82
|
|
|
|
|
|
|
{ |
|
83
|
|
|
|
|
|
|
'currency' => 'mɔné', |
|
84
|
|
|
|
|
|
|
|
|
85
|
|
|
|
|
|
|
} |
|
86
|
|
|
|
|
|
|
}, |
|
87
|
|
|
|
|
|
|
); |
|
88
|
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
has 'characters' => ( |
|
90
|
|
|
|
|
|
|
is => 'ro', |
|
91
|
|
|
|
|
|
|
isa => HashRef, |
|
92
|
|
|
|
|
|
|
init_arg => undef, |
|
93
|
|
|
|
|
|
|
default => $^V ge v5.18.0 |
|
94
|
|
|
|
|
|
|
? eval <<'EOT' |
|
95
|
|
|
|
|
|
|
sub { |
|
96
|
|
|
|
|
|
|
no warnings 'experimental::regex_sets'; |
|
97
|
|
|
|
|
|
|
return { |
|
98
|
|
|
|
|
|
|
auxiliary => qr{[f q r v x]}, |
|
99
|
|
|
|
|
|
|
index => ['A', 'B', 'C', 'D', 'E', 'Ə', 'Ɛ', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'Ŋ', 'O', 'Ɔ', 'P', 'S', 'T', 'U', 'W', 'Y', 'Z'], |
|
100
|
|
|
|
|
|
|
main => qr{[aáâǎā b c d eéêěē ə{ə́}{ə̂}{ə̌}{ə̄} ɛ{ɛ́}{ɛ̂}{ɛ̌}{ɛ̄} g h iíîǐī j k l mḿ nń ŋ oóôǒō ɔ{ɔ́}{ɔ̂}{ɔ̌}{ɔ̄} p s t uúûǔū w y z ʼ]}, |
|
101
|
|
|
|
|
|
|
punctuation => qr{[, ; \: ! ? . ' "]}, |
|
102
|
|
|
|
|
|
|
}; |
|
103
|
|
|
|
|
|
|
}, |
|
104
|
|
|
|
|
|
|
EOT |
|
105
|
|
|
|
|
|
|
: sub { |
|
106
|
|
|
|
|
|
|
return { index => ['A', 'B', 'C', 'D', 'E', 'Ə', 'Ɛ', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'Ŋ', 'O', 'Ɔ', 'P', 'S', 'T', 'U', 'W', 'Y', 'Z'], }; |
|
107
|
|
|
|
|
|
|
}, |
|
108
|
1
|
|
|
1
|
|
200
|
); |
|
|
1
|
|
|
|
|
3
|
|
|
|
1
|
|
|
|
|
306
|
|
|
109
|
|
|
|
|
|
|
|
|
110
|
|
|
|
|
|
|
|
|
111
|
|
|
|
|
|
|
has 'listPatterns' => ( |
|
112
|
|
|
|
|
|
|
is => 'ro', |
|
113
|
|
|
|
|
|
|
isa => HashRef, |
|
114
|
|
|
|
|
|
|
init_arg => undef, |
|
115
|
|
|
|
|
|
|
default => sub { { |
|
116
|
|
|
|
|
|
|
end => q({0} {1}), |
|
117
|
|
|
|
|
|
|
} } |
|
118
|
|
|
|
|
|
|
); |
|
119
|
|
|
|
|
|
|
|
|
120
|
|
|
|
|
|
|
has 'currencies' => ( |
|
121
|
|
|
|
|
|
|
is => 'ro', |
|
122
|
|
|
|
|
|
|
isa => HashRef, |
|
123
|
|
|
|
|
|
|
init_arg => undef, |
|
124
|
|
|
|
|
|
|
default => sub { { |
|
125
|
|
|
|
|
|
|
'XAF' => { |
|
126
|
|
|
|
|
|
|
display_name => { |
|
127
|
|
|
|
|
|
|
'currency' => q(Frânke CFA), |
|
128
|
|
|
|
|
|
|
}, |
|
129
|
|
|
|
|
|
|
}, |
|
130
|
|
|
|
|
|
|
} }, |
|
131
|
|
|
|
|
|
|
); |
|
132
|
|
|
|
|
|
|
|
|
133
|
|
|
|
|
|
|
|
|
134
|
1
|
|
|
1
|
|
834
|
no Moo; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
4
|
|
|
135
|
|
|
|
|
|
|
|
|
136
|
|
|
|
|
|
|
1; |
|
137
|
|
|
|
|
|
|
|
|
138
|
|
|
|
|
|
|
# vim: tabstop=4 |