File Coverage

blib/lib/PGXN/Site/Locale/fr.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 19 19 100.0


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