xref: /plugin/statistics/lang/en/lang.php (revision 0c3b1e448cd08bc149a2a6083846bacf817ee0fd)
1<?php
2/**
3 * english language file
4 */
5
6// for admin plugins, the menu prompt to be displayed in the admin menu
7$lang['menu'] = 'Access and Usage Statistics';
8
9
10$lang['more'] = 'more';
11$lang['prev'] = 'previous page';
12$lang['next'] = 'next page';
13
14// time selection
15$lang['time_select']            = 'Select the timeframe:';
16$lang['time_today']             = 'Today';
17$lang['time_last1']             = 'Yesterday';
18$lang['time_last7']             = 'Last 7 Days';
19$lang['time_last30']            = 'Last 30 Days';
20$lang['time_go']                = 'Go';
21
22// the different pages
23$lang['dashboard']              = 'Dashboard';
24$lang['page']                   = 'Pages';
25$lang['referer']                = 'Incoming Links';
26$lang['newreferer']             = 'New Incoming Links';
27$lang['outlinks']               = 'Outgoing Links';
28$lang['searchphrases']          = 'External Search Phrases';
29$lang['searchwords']            = 'External Search Words';
30$lang['internalsearchphrases']  = 'Internal Search Phrases';
31$lang['internalsearchwords']    = 'Internal Search Words';
32$lang['searchengines']          = 'Search Engines';
33$lang['browsers']               = 'Browsers';
34$lang['os']                     = 'Operating Systems';
35$lang['countries']              = 'Countries';
36$lang['resolution']             = 'Screen Size';
37$lang['viewport']               = 'Browser Viewport';
38
39// the intro texts
40$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$lang['intro_page']             = 'These are the wiki pages most viewed in the selected timeframe – your top content.';
42$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$lang['intro_newreferer']       = 'The following incoming links where first logged in the selected timeframe and have never been seen before.';
44$lang['intro_outlinks']         = 'These are the most clicked on links to external sites in your wiki.';
45$lang['intro_searchengines']    = 'The following search engines were used by users to find your wiki.';
46$lang['intro_searchphrases']    = 'These are the exact phrases people used to search when they found your wiki.';
47$lang['intro_searchwords']      = 'These are the most common words people used to search when they found your wiki.';
48$lang['intro_internalsearchphrases'] = 'These are the exact phrases people used to search inside your wiki.';
49$lang['intro_internalsearchwords']   = 'These are the most common words people used to search inside your wiki.';
50$lang['intro_browsers']         = 'Here are the most popular browsers used by your users.';
51$lang['intro_os']               = 'Here are the most popular platforms used by your users.';
52$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$lang['intro_resolution']       = 'This page gives you some info about the screen size (resolution) of your users. This is how much screen estate they have, not how much of that is available to the browser\'s display area. For the latter see the Browser Viewport page. All values are rounded to 100 pixels, the graph shows the top 100 values only.';
54$lang['intro_viewport']         = 'These are the area sizes that your users\' browsers have available for rendering your wiki. All values are rounded to 100 pixels, the graph shows the top 100 values only.';
55
56
57
58// the dashboard items
59$lang['dash_pageviews']         = '<strong>%d</strong> Page Views';
60$lang['dash_sessions']          = '<strong>%d</strong> Visits (Sessions)';
61$lang['dash_visitors']          = '<strong>%d</strong> Unique Visitors';
62$lang['dash_users']             = '<strong>%d</strong> Logged in Users';
63$lang['dash_logins']            = '<strong>%d</strong> User Logins';
64$lang['dash_registrations']     = '<strong>%s</strong> New Registrations';
65$lang['dash_bouncerate']        = '<strong>%.1f%%</strong> Bounces';
66$lang['dash_timespent']         = '<strong>%.2f</strong> Minutes Spent in an Avarage Session';
67$lang['dash_avgpages']          = '<strong>%.2f</strong> Pages Viewed in an Avarage Session';
68$lang['dash_newvisitors']       = '<strong>%.1f%%</strong> New Visitors';
69
70$lang['dash_mostpopular']       = 'Most Popular Pages';
71$lang['dash_newincoming']       = 'Top Incoming New Links';
72$lang['dash_topsearch']         = 'Top Search Phrases';
73
74