| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
=encoding utf8 |
|
2
|
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
=head1 NAME |
|
4
|
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
Locale::CLDR::Locales::Zh::Latn - Package for language Chinese |
|
6
|
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
=cut |
|
8
|
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
package Locale::CLDR::Locales::Zh::Latn; |
|
10
|
|
|
|
|
|
|
# This file auto generated from Data\common\main\zh_Latn.xml |
|
11
|
|
|
|
|
|
|
# on Fri 17 Jan 12:03:31 pm GMT |
|
12
|
|
|
|
|
|
|
|
|
13
|
1
|
|
|
1
|
|
813
|
use strict; |
|
|
1
|
|
|
|
|
3
|
|
|
|
1
|
|
|
|
|
46
|
|
|
14
|
1
|
|
|
1
|
|
8
|
use warnings; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
55
|
|
|
15
|
1
|
|
|
1
|
|
8
|
use version; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
7
|
|
|
16
|
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
our $VERSION = version->declare('v0.46.0'); |
|
18
|
|
|
|
|
|
|
|
|
19
|
1
|
|
|
1
|
|
1247
|
use v5.12.0; |
|
|
1
|
|
|
|
|
4
|
|
|
20
|
1
|
|
|
1
|
|
34
|
use mro 'c3'; |
|
|
1
|
|
|
|
|
3
|
|
|
|
1
|
|
|
|
|
9
|
|
|
21
|
1
|
|
|
1
|
|
47
|
use utf8; |
|
|
1
|
|
|
|
|
3
|
|
|
|
1
|
|
|
|
|
8
|
|
|
22
|
1
|
|
|
1
|
|
57
|
use feature 'unicode_strings'; |
|
|
1
|
|
|
|
|
3
|
|
|
|
1
|
|
|
|
|
224
|
|
|
23
|
1
|
|
|
1
|
|
9
|
use Types::Standard qw( Str Int HashRef ArrayRef CodeRef RegexpRef ); |
|
|
1
|
|
|
|
|
3
|
|
|
|
1
|
|
|
|
|
9
|
|
|
24
|
1
|
|
|
1
|
|
3031
|
use Moo; |
|
|
1
|
|
|
|
|
3
|
|
|
|
1
|
|
|
|
|
7
|
|
|
25
|
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
extends('Locale::CLDR::Locales::Zh'); |
|
27
|
|
|
|
|
|
|
has 'characters' => ( |
|
28
|
|
|
|
|
|
|
is => 'ro', |
|
29
|
|
|
|
|
|
|
isa => HashRef, |
|
30
|
|
|
|
|
|
|
init_arg => undef, |
|
31
|
|
|
|
|
|
|
default => $^V ge v5.18.0 |
|
32
|
|
|
|
|
|
|
? eval <<'EOT' |
|
33
|
|
|
|
|
|
|
sub { |
|
34
|
|
|
|
|
|
|
no warnings 'experimental::regex_sets'; |
|
35
|
|
|
|
|
|
|
return { |
|
36
|
|
|
|
|
|
|
auxiliary => qr{[v]}, |
|
37
|
|
|
|
|
|
|
main => qr{[aáàǎā b cĉ d eéèêếề{ê̌}{ê̄}ěē f g h iíìǐī j k l mḿ{m̀}{m̄} nńǹň ŋ oóòǒō p q r sŝ t uúùǔüǘǜǚǖū w x y zẑ]}, |
|
38
|
|
|
|
|
|
|
numbers => qr{[0 1 2 3 4 5 6 7 8 9]}, |
|
39
|
|
|
|
|
|
|
punctuation => qr{[\- ‑ , ! ? . · ' "]}, |
|
40
|
|
|
|
|
|
|
}; |
|
41
|
|
|
|
|
|
|
}, |
|
42
|
|
|
|
|
|
|
EOT |
|
43
|
|
|
|
|
|
|
: sub { |
|
44
|
|
|
|
|
|
|
return {}; |
|
45
|
|
|
|
|
|
|
}, |
|
46
|
1
|
|
|
1
|
|
193
|
); |
|
|
1
|
|
|
|
|
3
|
|
|
|
1
|
|
|
|
|
311
|
|
|
47
|
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
|
|
49
|
1
|
|
|
1
|
|
819
|
no Moo; |
|
|
1
|
|
|
|
|
5
|
|
|
|
1
|
|
|
|
|
7
|
|
|
50
|
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
1; |
|
52
|
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
# vim: tabstop=4 |