File Coverage

blib/lib/HTML/FormFu/I18N/de.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1 1     1   755 use strict;
  1         2  
  1         51  
2              
3             package HTML::FormFu::I18N::de;
4             # ABSTRACT: German
5             $HTML::FormFu::I18N::de::VERSION = '2.07';
6 1     1   6 use utf8;
  1         2  
  1         6  
7              
8 1     1   24 use Moose;
  1         2  
  1         6  
9             extends 'HTML::FormFu::I18N';
10              
11             our %Lexicon = (
12             form_error_message =>
13             'Ihre Eingabe enhält Fehler, Hinweise sind unten aufgeführt',
14             form_constraint_allornone => 'Ungültig',
15             form_constraint_ascii => 'Feld enthält ungültige Zeichen',
16             form_constraint_autoset => 'Feld enthält eine ungültige Auswahl',
17             form_constraint_bool => 'Feld muss einen Logikwert enthalten',
18             form_constraint_callback => 'Ungültiger Eintrag',
19             form_constraint_datetime => 'Ungültiges Datum',
20             form_constraint_dependon =>
21             "Dieses Feld ist vorgeschrieben wenn Feld '[_1]' ausgefüllt ist",
22             form_constraint_email => 'Feld muss eine Email Adresse enthalten',
23             form_constraint_equal => "Entspricht nicht mit Wert '[_1]' überein",
24             form_constraint_file => 'Ist nicht eine Datei',
25             form_constraint_file_mime => 'Ungültiger Datei Typ',
26             form_constraint_file_maxsize =>
27             'Datei kann nicht grösser als [_1] Bytes sein',
28             form_constraint_file_minsize =>
29             'Datei muss mindestens [_1] Bytes gross sein',
30             form_constraint_file_size =>
31             'Dateigrösse muss zwischen [_1] und [_2] Bytes sein',
32             form_constraint_integer => 'Feld muss eine Ganzzahl enthalten',
33             form_constraint_length => 'Länge muss zwischen [_1] und [_2] Zeichen sein',
34             form_constraint_minlength => 'Muss mindestens [_1] Zeichen lang sein',
35             form_constraint_minrange => 'Muss mindenstens [_1] sein',
36             form_constraint_minmaxfields => 'Ungültiger Eintrag',
37             form_constraint_maxlength => 'Muss nicht länger als [_1] Zeichen sein',
38             form_constraint_maxrange => 'Muss nicht mehr als [_1] sein',
39             form_constraint_number => 'Feld muss eine Zahl enthalten',
40             form_constraint_printable => 'Feld enthält nicht druckbare Zeichen',
41             form_constraint_range => 'Muss zwischen [_1] und [_2] sein',
42             form_constraint_recaptcha => 'reCAPTCHA Fehler',
43             form_constraint_regex => 'Ungültiger Eintrag',
44             form_constraint_required => 'Feld muss ausgefüllt sein',
45             form_constraint_set => 'Feld enthält eine ungültige Auswahl',
46             form_constraint_singlevalue => 'Feld darf nur einen einzigen Wert enhalten',
47             form_constraint_word => 'Feld enthält ungültige Zeichen',
48             form_inflator_compounddatetime => 'Ungültiges Datum',
49             form_inflator_datetime => 'Ungültiges Datum',
50             form_validator_callback => 'Validierungsfehler',
51             form_transformer_callback => 'Umwandlungsfehler',
52              
53             form_inflator_imager => 'Fehler beim öffnen der Bilddatei',
54             form_validator_imager_size => 'Hochgeladetes Bild zu gross',
55             form_transformer_imager => 'Fehler bei der Berabeitung der Bilddatei',
56             );
57              
58             __PACKAGE__->meta->make_immutable( inline_constructor => 0 );
59              
60             1;
61              
62             __END__
63              
64             =pod
65              
66             =encoding UTF-8
67              
68             =head1 NAME
69              
70             HTML::FormFu::I18N::de - German
71              
72             =head1 VERSION
73              
74             version 2.07
75              
76             =head1 AUTHOR
77              
78             Carl Franks <cpan@fireartist.com>
79              
80             =head1 COPYRIGHT AND LICENSE
81              
82             This software is copyright (c) 2018 by Carl Franks.
83              
84             This is free software; you can redistribute it and/or modify it under
85             the same terms as the Perl 5 programming language system itself.
86              
87             =cut