xref: /plugin/statistics/lang/en/lang.php (revision dc7b1e5edbabde79b3e7141a080533f795acf4bd)
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
76985b606SAndreas Gohr$lang['menu'] = 'Access and Usage Statistics';
814d99ec0SAndreas Gohr
914d99ec0SAndreas Gohr// custom language strings for the plugin
1014d99ec0SAndreas Gohr
1114d99ec0SAndreas Gohr$lang['percent'] = 'Percent';
1214d99ec0SAndreas Gohr$lang['count']   = 'Count';
1314d99ec0SAndreas Gohr$lang['reason']  = 'Reason';
1414d99ec0SAndreas Gohr
1547ffcf7dSAndreas Gohr
166985b606SAndreas Gohr$lang['time_select']            = 'Select the timeframe:';
176985b606SAndreas Gohr$lang['time_today']             = 'Today';
186985b606SAndreas Gohr$lang['time_last1']             = 'Yesterday';
196985b606SAndreas Gohr$lang['time_last7']             = 'Last 7 Days';
206985b606SAndreas Gohr$lang['time_last30']            = 'Last 30 Days';
216985b606SAndreas Gohr$lang['time_go']                = 'Go';
226985b606SAndreas Gohr
236985b606SAndreas Gohr// the different pages
2447ffcf7dSAndreas Gohr$lang['dashboard']              = 'Dashboard';
2547ffcf7dSAndreas Gohr$lang['page']                   = 'Pages';
2647ffcf7dSAndreas Gohr$lang['referer']                = 'Incoming Links';
2747ffcf7dSAndreas Gohr$lang['newreferer']             = 'New Incoming Links';
2847ffcf7dSAndreas Gohr$lang['outlinks']               = 'Outgoing Links';
295bccfe87SAndreas Gohr$lang['searchphrases']          = 'External Search Phrases';
305bccfe87SAndreas Gohr$lang['searchwords']            = 'External Search Words';
315bccfe87SAndreas Gohr$lang['internalsearchphrases']  = 'Internal Search Phrases';
325bccfe87SAndreas Gohr$lang['internalsearchwords']    = 'Internal Search Words';
3347ffcf7dSAndreas Gohr$lang['searchengines']          = 'Search Engines';
344f41a2ccSAndreas Gohr$lang['browsers']               = 'Browsers';
3547ffcf7dSAndreas Gohr$lang['os']                     = 'Operating Systems';
364f41a2ccSAndreas Gohr$lang['countries']              = 'Countries';
3747ffcf7dSAndreas Gohr$lang['resolution']             = 'Resolution';
38eabe0d07SAndreas Gohr
396985b606SAndreas Gohr// the dashboard items
40*dc7b1e5eSAndreas Gohr$lang['dash_pageviews']         = '<span>%d</span> Page Views';
41*dc7b1e5eSAndreas Gohr$lang['dash_sessions']          = '<span>%d</span> Visits (Sessions)';
42*dc7b1e5eSAndreas Gohr$lang['dash_visitors']          = '<span>%d</span> Unique Visitors';
43*dc7b1e5eSAndreas Gohr$lang['dash_users']             = '<span>%d</span> Logged in Users';
44*dc7b1e5eSAndreas Gohr$lang['dash_logins']            = '<span>%d</span> User Logins';
45*dc7b1e5eSAndreas Gohr$lang['dash_registrations']     = '<span>%s</span> New Registrations';
46*dc7b1e5eSAndreas Gohr$lang['dash_bouncerate']        = '<span>%.1f%%</span> Bounces';
47*dc7b1e5eSAndreas Gohr$lang['dash_timespent']         = '<span>%.2f</span> Minutes Spent in an Avarage Session';
48*dc7b1e5eSAndreas Gohr$lang['dash_avgpages']          = '<span>%.2f</span> Pages Viewed in an Avarage Session';
49*dc7b1e5eSAndreas Gohr$lang['dash_newvisitors']       = '<span>%.1f%%</span> New Visitors';
50*dc7b1e5eSAndreas Gohr
51*dc7b1e5eSAndreas Gohr$lang['dash_mostpopular']       = 'Most Popular Pages';
52*dc7b1e5eSAndreas Gohr$lang['dash_newincoming']       = 'Top Incoming New Links';
53*dc7b1e5eSAndreas Gohr$lang['dash_topsearch']         = 'Top Search Phrases';
54eabe0d07SAndreas Gohr
55