| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
=encoding utf8 |
|
2
|
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
=head1 NAME |
|
4
|
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
Locale::CLDR::Locales::Sdh - Package for language Southern Kurdish |
|
6
|
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
=cut |
|
8
|
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
package Locale::CLDR::Locales::Sdh; |
|
10
|
|
|
|
|
|
|
# This file auto generated from Data\common\main\sdh.xml |
|
11
|
|
|
|
|
|
|
# on Fri 17 Jan 12:03:31 pm GMT |
|
12
|
|
|
|
|
|
|
|
|
13
|
1
|
|
|
1
|
|
1990789
|
use strict; |
|
|
1
|
|
|
|
|
4
|
|
|
|
1
|
|
|
|
|
44
|
|
|
14
|
1
|
|
|
1
|
|
6
|
use warnings; |
|
|
1
|
|
|
|
|
9
|
|
|
|
1
|
|
|
|
|
71
|
|
|
15
|
1
|
|
|
1
|
|
8
|
use version; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
10
|
|
|
16
|
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
our $VERSION = version->declare('v0.46.0'); |
|
18
|
|
|
|
|
|
|
|
|
19
|
1
|
|
|
1
|
|
175
|
use v5.12.0; |
|
|
1
|
|
|
|
|
6
|
|
|
20
|
1
|
|
|
1
|
|
6
|
use mro 'c3'; |
|
|
1
|
|
|
|
|
3
|
|
|
|
1
|
|
|
|
|
9
|
|
|
21
|
1
|
|
|
1
|
|
65
|
use utf8; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
10
|
|
|
22
|
1
|
|
|
1
|
|
51
|
use feature 'unicode_strings'; |
|
|
1
|
|
|
|
|
3
|
|
|
|
1
|
|
|
|
|
206
|
|
|
23
|
1
|
|
|
1
|
|
9
|
use Types::Standard qw( Str Int HashRef ArrayRef CodeRef RegexpRef ); |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
13
|
|
|
24
|
1
|
|
|
1
|
|
3120
|
use Moo; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
36
|
|
|
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
|
|
|
|
|
|
|
'eo' => 'ئسپرانتو', |
|
35
|
|
|
|
|
|
|
'sdh' => 'کوردی خوارگ', |
|
36
|
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
); |
|
38
|
|
|
|
|
|
|
if (@_) { |
|
39
|
|
|
|
|
|
|
return $languages{$_[0]}; |
|
40
|
|
|
|
|
|
|
} |
|
41
|
|
|
|
|
|
|
return \%languages; |
|
42
|
|
|
|
|
|
|
} |
|
43
|
|
|
|
|
|
|
}, |
|
44
|
|
|
|
|
|
|
); |
|
45
|
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
has 'text_orientation' => ( |
|
47
|
|
|
|
|
|
|
is => 'ro', |
|
48
|
|
|
|
|
|
|
isa => HashRef[Str], |
|
49
|
|
|
|
|
|
|
init_arg => undef, |
|
50
|
|
|
|
|
|
|
default => sub { return { |
|
51
|
|
|
|
|
|
|
lines => '', |
|
52
|
|
|
|
|
|
|
characters => 'right-to-left', |
|
53
|
|
|
|
|
|
|
}} |
|
54
|
|
|
|
|
|
|
); |
|
55
|
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
has 'characters' => ( |
|
57
|
|
|
|
|
|
|
is => 'ro', |
|
58
|
|
|
|
|
|
|
isa => HashRef, |
|
59
|
|
|
|
|
|
|
init_arg => undef, |
|
60
|
|
|
|
|
|
|
default => $^V ge v5.18.0 |
|
61
|
|
|
|
|
|
|
? eval <<'EOT' |
|
62
|
|
|
|
|
|
|
sub { |
|
63
|
|
|
|
|
|
|
no warnings 'experimental::regex_sets'; |
|
64
|
|
|
|
|
|
|
return { |
|
65
|
|
|
|
|
|
|
auxiliary => qr{[ ً ٌ َ ُ ِ ّ ْ ٔ ٰ ء آ أ ؤ إ ة ث ذ ص ض ط ظ ك ه ى ي]}, |
|
66
|
|
|
|
|
|
|
index => ['ئ', 'ا', 'ب', 'پ', 'ت', 'ج', 'چ', 'ح', 'خ', 'د', 'ر', 'ز', 'ڕ', 'ژ', 'س', 'ش', 'ع', 'غ', 'ف', 'ڤ', 'ق', 'ک', 'گ', 'ل', 'ڵ', 'م', 'ن', 'ھ', 'ە', 'و', 'ۆ', 'ۊ', 'ی', 'ێ'], |
|
67
|
|
|
|
|
|
|
main => qr{[ئ ا ب پ ت ج چ ح خ د ر ز ڕ ژ س ش ع غ ف ڤ ق ک گ ل ڵ م ن ھ ە و ۆ ۊ ی ێ]}, |
|
68
|
|
|
|
|
|
|
punctuation => qr{[\- ‐‑ ، ٫ ٬ ؛ \: ! ؟ . … ‹ › « » ( ) \[ \] * / \\]}, |
|
69
|
|
|
|
|
|
|
}; |
|
70
|
|
|
|
|
|
|
}, |
|
71
|
|
|
|
|
|
|
EOT |
|
72
|
|
|
|
|
|
|
: sub { |
|
73
|
|
|
|
|
|
|
return { index => ['ئ', 'ا', 'ب', 'پ', 'ت', 'ج', 'چ', 'ح', 'خ', 'د', 'ر', 'ز', 'ڕ', 'ژ', 'س', 'ش', 'ع', 'غ', 'ف', 'ڤ', 'ق', 'ک', 'گ', 'ل', 'ڵ', 'م', 'ن', 'ھ', 'ە', 'و', 'ۆ', 'ۊ', 'ی', 'ێ'], }; |
|
74
|
|
|
|
|
|
|
}, |
|
75
|
1
|
|
|
1
|
|
225
|
); |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
330
|
|
|
76
|
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
has 'more_information' => ( |
|
79
|
|
|
|
|
|
|
is => 'ro', |
|
80
|
|
|
|
|
|
|
isa => Str, |
|
81
|
|
|
|
|
|
|
init_arg => undef, |
|
82
|
|
|
|
|
|
|
default => qq{؟}, |
|
83
|
|
|
|
|
|
|
); |
|
84
|
|
|
|
|
|
|
|
|
85
|
|
|
|
|
|
|
has 'quote_start' => ( |
|
86
|
|
|
|
|
|
|
is => 'ro', |
|
87
|
|
|
|
|
|
|
isa => Str, |
|
88
|
|
|
|
|
|
|
init_arg => undef, |
|
89
|
|
|
|
|
|
|
default => qq{«}, |
|
90
|
|
|
|
|
|
|
); |
|
91
|
|
|
|
|
|
|
|
|
92
|
|
|
|
|
|
|
has 'quote_end' => ( |
|
93
|
|
|
|
|
|
|
is => 'ro', |
|
94
|
|
|
|
|
|
|
isa => Str, |
|
95
|
|
|
|
|
|
|
init_arg => undef, |
|
96
|
|
|
|
|
|
|
default => qq{»}, |
|
97
|
|
|
|
|
|
|
); |
|
98
|
|
|
|
|
|
|
|
|
99
|
|
|
|
|
|
|
has 'alternate_quote_start' => ( |
|
100
|
|
|
|
|
|
|
is => 'ro', |
|
101
|
|
|
|
|
|
|
isa => Str, |
|
102
|
|
|
|
|
|
|
init_arg => undef, |
|
103
|
|
|
|
|
|
|
default => qq{‹}, |
|
104
|
|
|
|
|
|
|
); |
|
105
|
|
|
|
|
|
|
|
|
106
|
|
|
|
|
|
|
has 'alternate_quote_end' => ( |
|
107
|
|
|
|
|
|
|
is => 'ro', |
|
108
|
|
|
|
|
|
|
isa => Str, |
|
109
|
|
|
|
|
|
|
init_arg => undef, |
|
110
|
|
|
|
|
|
|
default => qq{›}, |
|
111
|
|
|
|
|
|
|
); |
|
112
|
|
|
|
|
|
|
|
|
113
|
|
|
|
|
|
|
has 'default_numbering_system' => ( |
|
114
|
|
|
|
|
|
|
is => 'ro', |
|
115
|
|
|
|
|
|
|
isa => Str, |
|
116
|
|
|
|
|
|
|
init_arg => undef, |
|
117
|
|
|
|
|
|
|
default => 'arab', |
|
118
|
|
|
|
|
|
|
); |
|
119
|
|
|
|
|
|
|
|
|
120
|
|
|
|
|
|
|
has native_numbering_system => ( |
|
121
|
|
|
|
|
|
|
is => 'ro', |
|
122
|
|
|
|
|
|
|
isa => Str, |
|
123
|
|
|
|
|
|
|
init_arg => undef, |
|
124
|
|
|
|
|
|
|
default => 'arab', |
|
125
|
|
|
|
|
|
|
); |
|
126
|
|
|
|
|
|
|
|
|
127
|
1
|
|
|
1
|
|
1404
|
no Moo; |
|
|
1
|
|
|
|
|
3
|
|
|
|
1
|
|
|
|
|
6
|
|
|
128
|
|
|
|
|
|
|
|
|
129
|
|
|
|
|
|
|
1; |
|
130
|
|
|
|
|
|
|
|
|
131
|
|
|
|
|
|
|
# vim: tabstop=4 |