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