File: fr.pm

package info (click to toggle)
libhtml-formfu-perl 2.07000-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,396 kB
  • sloc: perl: 12,777; makefile: 9; sql: 5
file content (81 lines) | stat: -rw-r--r-- 2,885 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
use strict;

package HTML::FormFu::I18N::fr;
# ABSTRACT: French
$HTML::FormFu::I18N::fr::VERSION = '2.07';
use utf8;

use Moose;
extends 'HTML::FormFu::I18N';

our %Lexicon = (
    form_error_message =>
        'Votre requête contient des erreurs. Consultez les détails ci-dessous.',
    form_constraint_allornone => 'Erreur',
    form_constraint_ascii    => 'Ce champs contient des caratères non valides',
    form_constraint_autoset  => 'Ce champs contient un choix non valide',
    form_constraint_bool     => 'Ce champs doit avoir une valeur booléenne',
    form_constraint_callback => 'Entrée non valide',
    form_constraint_datetime => 'Date non valide',
    form_constraint_dependon => 'Erreur',
    form_constraint_email    => 'Ce champs doit contenir une adresse email',
    form_constraint_equal    => 'Erreur',
    form_constraint_file     => "Il ne s'agit pas d'un fichier",
    form_constraint_file_mime => 'Type de fichier non valide',
    form_constraint_file_size => 'Taille de fichier non valide',
    form_constraint_integer   => 'Ce champs doit être un entier',
    form_constraint_length    => 'Entrée non valide',
    form_constraint_minlength =>
        'Ce champs doit contenir au moins [_1] caractères',
    form_constraint_minmaxfields => 'Entrée non valide',
    form_constraint_maxlength =>
        'Ce champs doit contenir au maximum [_1] caractères',
    form_constraint_number => 'Ce champs doit être un nombre',
    form_constraint_printable =>
        'Ce champs contient des caractères non valides',
    form_constraint_range       => 'Entrée non valide',
    form_constraint_regex       => 'Entrée non valide',
    form_constraint_required    => 'Ce champs est obligatoire',
    form_constraint_set         => 'Ce champs contient un choix non valide',
    form_constraint_singlevalue => 'Ce champs accepte une seule valeur',
    form_constraint_word => 'Ce champs contient des caractères non valides',
    form_inflator_compounddatetime => 'Date non valide',
    form_inflator_datetime         => 'Date non valide',
    form_validator_callback        => 'Erreur lors de la validation',
    form_transformer_callback      => 'Erreur lors de la transformation',

    form_inflator_imager       => "Erreur lors de l'ouverture du fichier image",
    form_validator_imager_size => "Image à charger trop grosse",
    form_transformer_imager    => "Erreur lors du traitement de l'image",
);

__PACKAGE__->meta->make_immutable( inline_constructor => 0 );

1;

__END__

=pod

=encoding UTF-8

=head1 NAME

HTML::FormFu::I18N::fr - French

=head1 VERSION

version 2.07

=head1 AUTHOR

Carl Franks <cpan@fireartist.com>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2018 by Carl Franks.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=cut