line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package PGXN::Site::Locale::fr; |
2
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
1360
|
use 5.10.0; |
|
1
|
|
|
|
|
3
|
|
4
|
1
|
|
|
1
|
|
5
|
use utf8; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
5
|
|
5
|
1
|
|
|
1
|
|
39
|
use parent 'PGXN::Site::Locale'; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
4
|
|
6
|
|
|
|
|
|
|
our $VERSION = v0.22.2; |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
our %Lexicon = ( |
9
|
|
|
|
|
|
|
listcomma => ',', |
10
|
|
|
|
|
|
|
listand => 'et', |
11
|
|
|
|
|
|
|
openquote => '«', |
12
|
|
|
|
|
|
|
shutquote => '»', |
13
|
|
|
|
|
|
|
in => 'dans', |
14
|
|
|
|
|
|
|
); |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
1; |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 Name |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
PGXN::Site::Locale::fr - French localization for PGXN::Site |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head1 Synopsis |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
use PGXN::Site::Locale; |
25
|
|
|
|
|
|
|
my $mt = PGXN::Site::Locale->accept('fr'); |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head1 Description |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
Subclass of L providing French localization. |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head1 Author |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
David E. Wheeler |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=head1 Copyright and License |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
Copyright (c) 2010-2021 David E. Wheeler. |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
This module is free software; you can redistribute it and/or modify it under |
40
|
|
|
|
|
|
|
the L. |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
Permission to use, copy, modify, and distribute this software and its |
43
|
|
|
|
|
|
|
documentation for any purpose, without fee, and without a written agreement is |
44
|
|
|
|
|
|
|
hereby granted, provided that the above copyright notice and this paragraph |
45
|
|
|
|
|
|
|
and the following two paragraphs appear in all copies. |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
In no event shall David E. Wheeler be liable to any party for direct, |
48
|
|
|
|
|
|
|
indirect, special, incidental, or consequential damages, including lost |
49
|
|
|
|
|
|
|
profits, arising out of the use of this software and its documentation, even |
50
|
|
|
|
|
|
|
if David E. Wheeler has been advised of the possibility of such damage. |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
David E. Wheeler specifically disclaims any warranties, including, but not |
53
|
|
|
|
|
|
|
limited to, the implied warranties of merchantability and fitness for a |
54
|
|
|
|
|
|
|
particular purpose. The software provided hereunder is on an "as is" basis, |
55
|
|
|
|
|
|
|
and David E. Wheeler has no obligations to provide maintenance, support, |
56
|
|
|
|
|
|
|
updates, enhancements, or modifications. |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
=cut |