1use strict;
2
3package HTML::FormFu::I18N::fr;
4# ABSTRACT: French
5$HTML::FormFu::I18N::fr::VERSION = '2.07';
6use utf8;
7
8use Moose;
9extends 'HTML::FormFu::I18N';
10
11our %Lexicon = (
12    form_error_message =>
13        'Votre requête contient des erreurs. Consultez les détails ci-dessous.',
14    form_constraint_allornone => 'Erreur',
15    form_constraint_ascii    => 'Ce champs contient des caratères non valides',
16    form_constraint_autoset  => 'Ce champs contient un choix non valide',
17    form_constraint_bool     => 'Ce champs doit avoir une valeur booléenne',
18    form_constraint_callback => 'Entrée non valide',
19    form_constraint_datetime => 'Date non valide',
20    form_constraint_dependon => 'Erreur',
21    form_constraint_email    => 'Ce champs doit contenir une adresse email',
22    form_constraint_equal    => 'Erreur',
23    form_constraint_file     => "Il ne s'agit pas d'un fichier",
24    form_constraint_file_mime => 'Type de fichier non valide',
25    form_constraint_file_size => 'Taille de fichier non valide',
26    form_constraint_integer   => 'Ce champs doit être un entier',
27    form_constraint_length    => 'Entrée non valide',
28    form_constraint_minlength =>
29        'Ce champs doit contenir au moins [_1] caractères',
30    form_constraint_minmaxfields => 'Entrée non valide',
31    form_constraint_maxlength =>
32        'Ce champs doit contenir au maximum [_1] caractères',
33    form_constraint_number => 'Ce champs doit être un nombre',
34    form_constraint_printable =>
35        'Ce champs contient des caractères non valides',
36    form_constraint_range       => 'Entrée non valide',
37    form_constraint_regex       => 'Entrée non valide',
38    form_constraint_required    => 'Ce champs est obligatoire',
39    form_constraint_set         => 'Ce champs contient un choix non valide',
40    form_constraint_singlevalue => 'Ce champs accepte une seule valeur',
41    form_constraint_word => 'Ce champs contient des caractères non valides',
42    form_inflator_compounddatetime => 'Date non valide',
43    form_inflator_datetime         => 'Date non valide',
44    form_validator_callback        => 'Erreur lors de la validation',
45    form_transformer_callback      => 'Erreur lors de la transformation',
46
47    form_inflator_imager       => "Erreur lors de l'ouverture du fichier image",
48    form_validator_imager_size => "Image à charger trop grosse",
49    form_transformer_imager    => "Erreur lors du traitement de l'image",
50);
51
52__PACKAGE__->meta->make_immutable( inline_constructor => 0 );
53
541;
55
56__END__
57
58=pod
59
60=encoding UTF-8
61
62=head1 NAME
63
64HTML::FormFu::I18N::fr - French
65
66=head1 VERSION
67
68version 2.07
69
70=head1 AUTHOR
71
72Carl Franks <cpan@fireartist.com>
73
74=head1 COPYRIGHT AND LICENSE
75
76This software is copyright (c) 2018 by Carl Franks.
77
78This is free software; you can redistribute it and/or modify it under
79the same terms as the Perl 5 programming language system itself.
80
81=cut
82