xref: /plugin/statistics/lang/en/lang.php (revision 878be5c9350ceb1daa56aa2d51bb6be322688564)
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
39*878be5c9SAndreas Gohr// the intro texts
40*878be5c9SAndreas Gohr$lang['intro_dashboard']        = 'This page gives you a quick overview on what has happened in your wiki during the chosen timeframe.<br />For detailed insights and graphs pick a topic from the Table of Contents.';
41*878be5c9SAndreas Gohr$lang['intro_page']             = 'These are the wiki pages most viewed in the selected timeframe – your top content.';
42*878be5c9SAndreas Gohr$lang['intro_referer']          = 'Of all <strong>%d</strong> external visits, <strong>%d</strong> (<strong>%.1f%%</strong>) were direct (or bookmarked) accesses, <strong>%d</strong> (<strong>%.1f%%</strong>) came from search engines and <strong>%d</strong> (<strong>%.1f%%</strong>) were referred through links from other pages.<br />These other pages are listed below.';
43*878be5c9SAndreas Gohr$lang['intro_newreferer']       = 'The following incoming links where first logged in the selected timeframe and have never been seen before.';
44*878be5c9SAndreas Gohr$lang['intro_outlinks']         = 'These are the most clicked on links to external sites in your wiki.';
45*878be5c9SAndreas Gohr$lang['intro_searchengines']    = 'The following search engines were used by users to find your wiki.';
46*878be5c9SAndreas Gohr$lang['intro_searchphrases']    = 'These are the exact phrases people used to search when they found your wiki.';
47*878be5c9SAndreas Gohr$lang['intro_searchwords']      = 'These are the most common words people used to search when they found your wiki.';
48*878be5c9SAndreas Gohr$lang['intro_internalsearchphrases'] = 'These are the exact phrases people used to search inside your wiki.';
49*878be5c9SAndreas Gohr$lang['intro_internalsearchwords']   = 'These are the most common words people used to search inside your wiki.';
50*878be5c9SAndreas Gohr$lang['intro_browsers']         = 'Here are the most popular browsers used by your users.';
51*878be5c9SAndreas Gohr$lang['intro_os']               = 'Here are the most popular platforms used by your users.';
52*878be5c9SAndreas Gohr$lang['intro_countries']        = 'This is where your users come from. Note that resolving IP addresses to countries is error prone and no exact science.';
53*878be5c9SAndreas Gohr
54*878be5c9SAndreas Gohr
55*878be5c9SAndreas Gohr
566985b606SAndreas Gohr// the dashboard items
57*878be5c9SAndreas Gohr$lang['dash_pageviews']         = '<strong>%d</strong> Page Views';
58*878be5c9SAndreas Gohr$lang['dash_sessions']          = '<strong>%d</strong> Visits (Sessions)';
59*878be5c9SAndreas Gohr$lang['dash_visitors']          = '<strong>%d</strong> Unique Visitors';
60*878be5c9SAndreas Gohr$lang['dash_users']             = '<strong>%d</strong> Logged in Users';
61*878be5c9SAndreas Gohr$lang['dash_logins']            = '<strong>%d</strong> User Logins';
62*878be5c9SAndreas Gohr$lang['dash_registrations']     = '<strong>%s</strong> New Registrations';
63*878be5c9SAndreas Gohr$lang['dash_bouncerate']        = '<strong>%.1f%%</strong> Bounces';
64*878be5c9SAndreas Gohr$lang['dash_timespent']         = '<strong>%.2f</strong> Minutes Spent in an Avarage Session';
65*878be5c9SAndreas Gohr$lang['dash_avgpages']          = '<strong>%.2f</strong> Pages Viewed in an Avarage Session';
66*878be5c9SAndreas Gohr$lang['dash_newvisitors']       = '<strong>%.1f%%</strong> New Visitors';
67dc7b1e5eSAndreas Gohr
68dc7b1e5eSAndreas Gohr$lang['dash_mostpopular']       = 'Most Popular Pages';
69dc7b1e5eSAndreas Gohr$lang['dash_newincoming']       = 'Top Incoming New Links';
70dc7b1e5eSAndreas Gohr$lang['dash_topsearch']         = 'Top Search Phrases';
71eabe0d07SAndreas Gohr
72