Filename | /usr/share/perl5/Date/Manip/Lang/index.pm |
Statements | Executed 10 statements in 152µs |
Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
---|---|---|---|---|---|
1 | 1 | 1 | 11µs | 22µs | BEGIN@24 | Date::Manip::Lang::index::
1 | 1 | 1 | 7µs | 11µs | BEGIN@25 | Date::Manip::Lang::index::
Line | State ments |
Time on line |
Calls | Time in subs |
Code |
---|---|---|---|---|---|
1 | package Date::Manip::Lang::index; | ||||
2 | # Copyright (c) 2003-2014 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 | 1 | 7µs | require 5.010000; | ||
23 | |||||
24 | 2 | 22µs | 2 | 32µs | # spent 22µs (11+11) within Date::Manip::Lang::index::BEGIN@24 which was called:
# once (11µs+11µs) by Date::Manip::Date::BEGIN@26 at line 24 # spent 22µs making 1 call to Date::Manip::Lang::index::BEGIN@24
# spent 11µs making 1 call to strict::import |
25 | 2 | 99µs | 2 | 15µs | # spent 11µs (7+4) within Date::Manip::Lang::index::BEGIN@25 which was called:
# once (7µs+4µs) by Date::Manip::Date::BEGIN@26 at line 25 # spent 11µs making 1 call to Date::Manip::Lang::index::BEGIN@25
# spent 4µs making 1 call to warnings::import |
26 | |||||
27 | 1 | 100ns | our($VERSION); | ||
28 | 1 | 300ns | $VERSION='6.47'; | ||
29 | |||||
30 | 1 | 200ns | our(%Lang); | ||
31 | |||||
32 | # A list of languages, and their module name | ||||
33 | |||||
34 | 1 | 16µs | %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 | 6µs | 1; |