xref: /plugin/statistics/lang/en/lang.php (revision 878be5c9350ceb1daa56aa2d51bb6be322688564)
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// custom language strings for the plugin
10
11$lang['percent'] = 'Percent';
12$lang['count']   = 'Count';
13$lang['reason']  = 'Reason';
14
15
16$lang['time_select']            = 'Select the timeframe:';
17$lang['time_today']             = 'Today';
18$lang['time_last1']             = 'Yesterday';
19$lang['time_last7']             = 'Last 7 Days';
20$lang['time_last30']            = 'Last 30 Days';
21$lang['time_go']                = 'Go';
22
23// the different pages
24$lang['dashboard']              = 'Dashboard';
25$lang['page']                   = 'Pages';
26$lang['referer']                = 'Incoming Links';
27$lang['newreferer']             = 'New Incoming Links';
28$lang['outlinks']               = 'Outgoing Links';
29$lang['searchphrases']          = 'External Search Phrases';
30$lang['searchwords']            = 'External Search Words';
31$lang['internalsearchphrases']  = 'Internal Search Phrases';
32$lang['internalsearchwords']    = 'Internal Search Words';
33$lang['searchengines']          = 'Search Engines';
34$lang['browsers']               = 'Browsers';
35$lang['os']                     = 'Operating Systems';
36$lang['countries']              = 'Countries';
37$lang['resolution']             = 'Resolution';
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
54
55
56// the dashboard items
57$lang['dash_pageviews']         = '<strong>%d</strong> Page Views';
58$lang['dash_sessions']          = '<strong>%d</strong> Visits (Sessions)';
59$lang['dash_visitors']          = '<strong>%d</strong> Unique Visitors';
60$lang['dash_users']             = '<strong>%d</strong> Logged in Users';
61$lang['dash_logins']            = '<strong>%d</strong> User Logins';
62$lang['dash_registrations']     = '<strong>%s</strong> New Registrations';
63$lang['dash_bouncerate']        = '<strong>%.1f%%</strong> Bounces';
64$lang['dash_timespent']         = '<strong>%.2f</strong> Minutes Spent in an Avarage Session';
65$lang['dash_avgpages']          = '<strong>%.2f</strong> Pages Viewed in an Avarage Session';
66$lang['dash_newvisitors']       = '<strong>%.1f%%</strong> New Visitors';
67
68$lang['dash_mostpopular']       = 'Most Popular Pages';
69$lang['dash_newincoming']       = 'Top Incoming New Links';
70$lang['dash_topsearch']         = 'Top Search Phrases';
71
72