File Coverage

blib/lib/Ado/I18n/de.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Ado::I18n::de;
2 2     2   2050 use Mojo::Base 'Ado::I18n';
  2         3  
  2         18  
3 2     2   404 use I18N::LangTags::List;
  2         3  
  2         255  
4             our %Lexicon = ( ##no critic(ProhibitPackageVars)
5             hello => 'Hallo [_1],',
6             Logout => 'Ausloggen',
7             login_name => 'Benutzer',
8             login_password => 'Passwort',
9             login_field_error => 'Bitte gültigen Wert in Feld "[_1]" eintragen!',
10             first_name => 'Vorname',
11             last_name => 'Nachname',
12             title => 'Titel/Name',
13             tags => 'Tags',
14             time_created => 'Angelegt am',
15             tstamp => 'Verändert am',
16             body => 'Inhalt (body)',
17             invisible => 'Versteckt',
18             language => 'Sprache',
19             group_id => 'Gruppe',
20             bg => I18N::LangTags::List::name('bg'),
21             en => I18N::LangTags::List::name('en'),
22             ru => I18N::LangTags::List::name('ru'),
23             de => I18N::LangTags::List::name('de'),
24              
25             ASC => 'Aufsteigend',
26             DESC => 'Absteigend',
27             created_by => 'Erstellt von',
28             disabled => 'Gesperrt',
29             );
30              
31             1;
32              
33             =pod
34              
35             =encoding utf8
36              
37             =head1 NAME
38              
39             Ado::I18n::de - lexicon for German language
40              
41             =cut