File Coverage

blib/lib/Locale/CLDR/Locales/Zh/Hant/Mo.pm
Criterion Covered Total %
statement 29 29 100.0
branch n/a
condition n/a
subroutine 10 10 100.0
pod n/a
total 39 39 100.0


line stmt bran cond sub pod time code
1             =encoding utf8
2              
3             =head1 NAME
4              
5             Locale::CLDR::Locales::Zh::Hant::Mo - Package for language Chinese
6              
7             =cut
8              
9             package Locale::CLDR::Locales::Zh::Hant::Mo;
10             # This file auto generated from Data\common\main\zh_Hant_MO.xml
11             # on Fri 17 Jan 12:03:31 pm GMT
12              
13 1     1   1950 use strict;
  1         5  
  1         48  
14 1     1   6 use warnings;
  1         3  
  1         77  
15 1     1   8 use version;
  1         3  
  1         10  
16              
17             our $VERSION = version->declare('v0.46.0');
18              
19 1     1   203 use v5.12.0;
  1         7  
20 1     1   7 use mro 'c3';
  1         3  
  1         9  
21 1     1   69 use utf8;
  1         3  
  1         10  
22 1     1   45 use feature 'unicode_strings';
  1         3  
  1         216  
23 1     1   9 use Types::Standard qw( Str Int HashRef ArrayRef CodeRef RegexpRef );
  1         2  
  1         14  
24 1     1   3211 use Moo;
  1         2  
  1         8  
25              
26             extends('Locale::CLDR::Locales::Zh::Hant::Hk');
27             has 'display_name_language' => (
28             is => 'ro',
29             isa => CodeRef,
30             init_arg => undef,
31             default => sub {
32             sub {
33             my %languages = (
34             'yue@alt=menu' => '粵語',
35              
36             );
37             if (@_) {
38             return $languages{$_[0]};
39             }
40             return \%languages;
41             }
42             },
43             );
44              
45             has 'display_name_region' => (
46             is => 'ro',
47             isa => HashRef[Str],
48             init_arg => undef,
49             default => sub {
50             {
51             'CI@alt=variant' => '象牙海岸',
52              
53             }
54             },
55             );
56              
57             has 'currencies' => (
58             is => 'ro',
59             isa => HashRef,
60             init_arg => undef,
61             default => sub { {
62             'MOP' => {
63             symbol => 'MOP$',
64             },
65             } },
66             );
67              
68              
69 1     1   1129 no Moo;
  1         3  
  1         6  
70              
71             1;
72              
73             # vim: tabstop=4