<?php
/**
 * english language file
 */

// for admin plugins, the menu prompt to be displayed in the admin menu
$lang['menu'] = 'Access and Usage Statistics';

// custom language strings for the plugin

$lang['percent'] = 'Percent';
$lang['count']   = 'Count';
$lang['reason']  = 'Reason';


$lang['time_select']            = 'Select the timeframe:';
$lang['time_today']             = 'Today';
$lang['time_last1']             = 'Yesterday';
$lang['time_last7']             = 'Last 7 Days';
$lang['time_last30']            = 'Last 30 Days';
$lang['time_go']                = 'Go';

// the different pages
$lang['dashboard']              = 'Dashboard';
$lang['page']                   = 'Pages';
$lang['referer']                = 'Incoming Links';
$lang['newreferer']             = 'New Incoming Links';
$lang['outlinks']               = 'Outgoing Links';
$lang['searchphrases']          = 'External Search Phrases';
$lang['searchwords']            = 'External Search Words';
$lang['internalsearchphrases']  = 'Internal Search Phrases';
$lang['internalsearchwords']    = 'Internal Search Words';
$lang['searchengines']          = 'Search Engines';
$lang['browsers']               = 'Browsers';
$lang['os']                     = 'Operating Systems';
$lang['countries']              = 'Countries';
$lang['resolution']             = 'Resolution';

// the intro texts
$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.';
$lang['intro_page']             = 'These are the wiki pages most viewed in the selected timeframe – your top content.';
$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.';
$lang['intro_newreferer']       = 'The following incoming links where first logged in the selected timeframe and have never been seen before.';
$lang['intro_outlinks']         = 'These are the most clicked on links to external sites in your wiki.';
$lang['intro_searchengines']    = 'The following search engines were used by users to find your wiki.';
$lang['intro_searchphrases']    = 'These are the exact phrases people used to search when they found your wiki.';
$lang['intro_searchwords']      = 'These are the most common words people used to search when they found your wiki.';
$lang['intro_internalsearchphrases'] = 'These are the exact phrases people used to search inside your wiki.';
$lang['intro_internalsearchwords']   = 'These are the most common words people used to search inside your wiki.';
$lang['intro_browsers']         = 'Here are the most popular browsers used by your users.';
$lang['intro_os']               = 'Here are the most popular platforms used by your users.';
$lang['intro_countries']        = 'This is where your users come from. Note that resolving IP addresses to countries is error prone and no exact science.';



// the dashboard items
$lang['dash_pageviews']         = '<strong>%d</strong> Page Views';
$lang['dash_sessions']          = '<strong>%d</strong> Visits (Sessions)';
$lang['dash_visitors']          = '<strong>%d</strong> Unique Visitors';
$lang['dash_users']             = '<strong>%d</strong> Logged in Users';
$lang['dash_logins']            = '<strong>%d</strong> User Logins';
$lang['dash_registrations']     = '<strong>%s</strong> New Registrations';
$lang['dash_bouncerate']        = '<strong>%.1f%%</strong> Bounces';
$lang['dash_timespent']         = '<strong>%.2f</strong> Minutes Spent in an Avarage Session';
$lang['dash_avgpages']          = '<strong>%.2f</strong> Pages Viewed in an Avarage Session';
$lang['dash_newvisitors']       = '<strong>%.1f%%</strong> New Visitors';

$lang['dash_mostpopular']       = 'Most Popular Pages';
$lang['dash_newincoming']       = 'Top Incoming New Links';
$lang['dash_topsearch']         = 'Top Search Phrases';

