xref: /plugin/statistics/lang/en/lang.php (revision 535aeea1040f5c184382c2d5edecf3296fd7552b)
114d99ec0SAndreas Gohr<?php
214d99ec0SAndreas Gohr/**
314d99ec0SAndreas Gohr * english language file
414d99ec0SAndreas Gohr */
514d99ec0SAndreas Gohr
614d99ec0SAndreas Gohr// for admin plugins, the menu prompt to be displayed in the admin menu
714d99ec0SAndreas Gohr// if set here, the plugin doesn't need to override the getMenuText() method
814d99ec0SAndreas Gohr$lang['menu'] = 'Access Statistics';
914d99ec0SAndreas Gohr
1014d99ec0SAndreas Gohr// custom language strings for the plugin
1114d99ec0SAndreas Gohr
1214d99ec0SAndreas Gohr$lang['percent'] = 'Percent';
1314d99ec0SAndreas Gohr$lang['count']   = 'Count';
1414d99ec0SAndreas Gohr$lang['reason']  = 'Reason';
1514d99ec0SAndreas Gohr
1647ffcf7dSAndreas Gohr
1747ffcf7dSAndreas Gohr$lang['dashboard']     = 'Dashboard';
1847ffcf7dSAndreas Gohr$lang['page']          = 'Pages';
1947ffcf7dSAndreas Gohr$lang['referer']       = 'Incoming Links';
2047ffcf7dSAndreas Gohr$lang['newreferer']    = 'New Incoming Links';
2147ffcf7dSAndreas Gohr$lang['outlinks']      = 'Outgoing Links';
225bccfe87SAndreas Gohr$lang['searchphrases'] = 'External Search Phrases';
235bccfe87SAndreas Gohr$lang['searchwords']   = 'External Search Words';
245bccfe87SAndreas Gohr$lang['internalsearchphrases'] = 'Internal Search Phrases';
255bccfe87SAndreas Gohr$lang['internalsearchwords']   = 'Internal Search Words';
2647ffcf7dSAndreas Gohr$lang['searchengines'] = 'Search Engines';
274f41a2ccSAndreas Gohr$lang['browsers']      = 'Browsers';
2847ffcf7dSAndreas Gohr$lang['os']            = 'Operating Systems';
294f41a2ccSAndreas Gohr$lang['countries']     = 'Countries';
3047ffcf7dSAndreas Gohr$lang['resolution']    = 'Resolution';
31eabe0d07SAndreas Gohr
32eabe0d07SAndreas Gohr
33eabe0d07SAndreas Gohr$lang['dash_pageviews']     = '%d Page Views';
34eabe0d07SAndreas Gohr$lang['dash_sessions']      = '%d Visits (Sessions)';
35eabe0d07SAndreas Gohr$lang['dash_visitors']      = '%d Unique Visitors';
36eabe0d07SAndreas Gohr$lang['dash_users']         = '%d Logged in Users';
37f7bc755dSAndreas Gohr$lang['dash_logins']        = '%d User Logins';
38*535aeea1SAndreas Gohr$lang['dash_registrations'] = '%s New Registrations';
397299bd6dSAndreas Gohr$lang['dash_bouncerate']    = '%.1f%% Bounces';
40fe29a898SAndreas Gohr$lang['dash_timespent']     = '%.2f Minutes Spent in an Avarage Session';
41fe29a898SAndreas Gohr$lang['dash_avgpages']      = '%.2f Pages Viewed in an Avarage Session';
427299bd6dSAndreas Gohr$lang['dash_newvisitors']   = '%.1f%% New Visitors';
43eabe0d07SAndreas Gohr
44