line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Date::Manip::Lang::index; |
2
|
|
|
|
|
|
|
# Copyright (c) 2003-2022 Sullivan Beck. All rights reserved. |
3
|
|
|
|
|
|
|
# This program is free software; you can redistribute it and/or modify it |
4
|
|
|
|
|
|
|
# under the same terms as Perl itself. |
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
######################################################################## |
7
|
|
|
|
|
|
|
######################################################################## |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
=pod |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 NAME |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
Date::Manip::Lang::index - An index of languages supported by Date::Manip |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 SYNPOSIS |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
This module is not intended to be used directly. Other Date::Manip |
18
|
|
|
|
|
|
|
modules will load it as needed. |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=cut |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
require 5.010000; |
23
|
|
|
|
|
|
|
|
24
|
168
|
|
|
168
|
|
1262
|
use strict; |
|
168
|
|
|
|
|
368
|
|
|
168
|
|
|
|
|
5266
|
|
25
|
168
|
|
|
168
|
|
954
|
use warnings; |
|
168
|
|
|
|
|
379
|
|
|
168
|
|
|
|
|
24588
|
|
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
our($VERSION); |
28
|
|
|
|
|
|
|
$VERSION='6.90'; |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
our(%Lang); |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
# A list of languages, and their module name |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
%Lang = qw( |
35
|
|
|
|
|
|
|
catalan catalan |
36
|
|
|
|
|
|
|
ca catalan |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
danish danish |
39
|
|
|
|
|
|
|
da danish |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
dutch dutch |
42
|
|
|
|
|
|
|
nederlands dutch |
43
|
|
|
|
|
|
|
nl dutch |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
english english |
46
|
|
|
|
|
|
|
en english |
47
|
|
|
|
|
|
|
en_us english |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
finnish finnish |
50
|
|
|
|
|
|
|
fi finnish |
51
|
|
|
|
|
|
|
fi_fi finnish |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
french french |
54
|
|
|
|
|
|
|
fr french |
55
|
|
|
|
|
|
|
fr_fr french |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
german german |
58
|
|
|
|
|
|
|
de german |
59
|
|
|
|
|
|
|
de_de german |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
italian italian |
62
|
|
|
|
|
|
|
it italian |
63
|
|
|
|
|
|
|
it_it italian |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
norwegian norwegian |
66
|
|
|
|
|
|
|
nb norwegian |
67
|
|
|
|
|
|
|
nb_no norwegian |
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
polish polish |
70
|
|
|
|
|
|
|
pl polish |
71
|
|
|
|
|
|
|
pl_pl polish |
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
portuguese portugue |
74
|
|
|
|
|
|
|
pt portugue |
75
|
|
|
|
|
|
|
pt_pt portugue |
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
romanian romanian |
78
|
|
|
|
|
|
|
ro romanian |
79
|
|
|
|
|
|
|
ro_ro romanian |
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
russian russian |
82
|
|
|
|
|
|
|
ru russian |
83
|
|
|
|
|
|
|
ru_ru russian |
84
|
|
|
|
|
|
|
|
85
|
|
|
|
|
|
|
spanish spanish |
86
|
|
|
|
|
|
|
es spanish |
87
|
|
|
|
|
|
|
es_es spanish |
88
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
swedish swedish |
90
|
|
|
|
|
|
|
sv swedish |
91
|
|
|
|
|
|
|
|
92
|
|
|
|
|
|
|
turkish turkish |
93
|
|
|
|
|
|
|
tr turkish |
94
|
|
|
|
|
|
|
tr_tr turkish |
95
|
|
|
|
|
|
|
); |
96
|
|
|
|
|
|
|
|
97
|
|
|
|
|
|
|
1; |