xref: /plugin/statistics/lang/en/lang.php (revision eabe0d07c30a5b0d4bf51212b11c020f21d748b1)
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';
31*eabe0d07SAndreas Gohr
32*eabe0d07SAndreas Gohr
33*eabe0d07SAndreas Gohr$lang['dash_pageviews'] = '%d Page Views';
34*eabe0d07SAndreas Gohr$lang['dash_sessions']  = '%d Visits (Sessions)';
35*eabe0d07SAndreas Gohr$lang['dash_visitors']  = '%d Unique Visitors';
36*eabe0d07SAndreas Gohr$lang['dash_users']     = '%d Logged in Users';
37*eabe0d07SAndreas Gohr$lang['dash_timespent'] = '%.2f Minutes spent in an avarage Session';
38*eabe0d07SAndreas Gohr
39