File Coverage

blib/lib/Ado/I18n/en.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::en;
2 14     14   15040 use Mojo::Base 'Ado::I18n';
  14         24  
  14         113  
3 14     14   9130 use I18N::LangTags::List;
  14         112952  
  14         2388  
4             our %Lexicon = ( ##no critic(ProhibitPackageVars)
5             hello => 'Hello [_1],',
6             Logout => 'Sign out',
7             login_name => 'User',
8             login_password => 'Password',
9             login_field_error => 'Please enter a valid value for the field "[_1]"!',
10             first_name => 'First Name',
11             last_name => 'Last Name',
12             title => 'Title/Name',
13             tags => 'Tags',
14             time_created => 'Created on',
15             tstamp => 'Changed on',
16             body => 'Content (body)',
17             invisible => 'Invisible',
18             language => 'Language',
19             group_id => 'Group',
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             ASC => 'Ascending',
25             DESC => 'Descending',
26             created_by => 'Created by',
27             created_by_help => 'Who created this user?',
28             changed_by_help => 'Who modified this user the last time?',
29             changed_by => 'Changed by',
30             reg_date => 'Date of registration',
31             disabled => 'Locked',
32             description => 'Description',
33             'Sign in' => 'Sign in',
34             Translate => 'Translate',
35             LoginThanks => 'Thanks for logging in! Welcome!',
36              
37             );
38              
39             1;
40              
41             =pod
42              
43             =encoding utf8
44              
45             =head1 NAME
46              
47             Ado::I18n::en - lexicon for English
48              
49             =cut