xref: /plugin/statistics/lang/en/lang.php (revision 6985b606aaf02e1973f52317ffb8c31daa2f119a)
1<?php
2/**
3 * english language file
4 */
5
6// for admin plugins, the menu prompt to be displayed in the admin menu
7$lang['menu'] = 'Access and Usage Statistics';
8
9// custom language strings for the plugin
10
11$lang['percent'] = 'Percent';
12$lang['count']   = 'Count';
13$lang['reason']  = 'Reason';
14
15
16$lang['time_select']            = 'Select the timeframe:';
17$lang['time_today']             = 'Today';
18$lang['time_last1']             = 'Yesterday';
19$lang['time_last7']             = 'Last 7 Days';
20$lang['time_last30']            = 'Last 30 Days';
21$lang['time_go']                = 'Go';
22
23// the different pages
24$lang['dashboard']              = 'Dashboard';
25$lang['page']                   = 'Pages';
26$lang['referer']                = 'Incoming Links';
27$lang['newreferer']             = 'New Incoming Links';
28$lang['outlinks']               = 'Outgoing Links';
29$lang['searchphrases']          = 'External Search Phrases';
30$lang['searchwords']            = 'External Search Words';
31$lang['internalsearchphrases']  = 'Internal Search Phrases';
32$lang['internalsearchwords']    = 'Internal Search Words';
33$lang['searchengines']          = 'Search Engines';
34$lang['browsers']               = 'Browsers';
35$lang['os']                     = 'Operating Systems';
36$lang['countries']              = 'Countries';
37$lang['resolution']             = 'Resolution';
38
39// the dashboard items
40$lang['dash_pageviews']         = '%d Page Views';
41$lang['dash_sessions']          = '%d Visits (Sessions)';
42$lang['dash_visitors']          = '%d Unique Visitors';
43$lang['dash_users']             = '%d Logged in Users';
44$lang['dash_logins']            = '%d User Logins';
45$lang['dash_registrations']     = '%s New Registrations';
46$lang['dash_bouncerate']        = '%.1f%% Bounces';
47$lang['dash_timespent']         = '%.2f Minutes Spent in an Avarage Session';
48$lang['dash_avgpages']          = '%.2f Pages Viewed in an Avarage Session';
49$lang['dash_newvisitors']       = '%.1f%% New Visitors';
50
51