diff --git a/wp-content/plugins/wp-piwik/classes/WP_Piwik.php b/wp-content/plugins/wp-piwik/classes/WP_Piwik.php
index d856b02fee3ab4172b42483621a9884cf1d10fea..cca5ae77a36c5e9b6b48565562de8b70a2b0a471 100644
--- a/wp-content/plugins/wp-piwik/classes/WP_Piwik.php
+++ b/wp-content/plugins/wp-piwik/classes/WP_Piwik.php
@@ -1,1463 +1,1245 @@
-<?php
-
-class wp_piwik {
-
-	private static
-		$intRevisionId = 92000,
-		$strVersion = '0.9.9.10',
-		$blog_id,
-		$intDashboardID = 30,
-		$strPluginBasename = NULL,
-		$bolJustActivated = false,
-		$logger,
-		$settings;
-				
-	private
-		$intStatsPage = NULL,
-		$bolNetwork = false,
-		$aryAttributes = array(),
-		$strResult = '';
-
-	public function __construct() {
-		global $blog_id;
-		self::$blog_id = (isset($blog_id)?$blog_id:'n/a');
-		$this->openLogger();
-		$this->openSettings();
-		$this->setup();
-		$this->addFilters();
-		$this->addActions();
-		$this->addShortcodes();
-		self::$settings->save();
-	}
-
-	public function __destruct() {
-		$this->closeLogger();
-	}
-
-	private function setup() {
-		self::$strPluginBasename = plugin_basename(__FILE__);
-		register_activation_hook(__FILE__, array($this, 'installPlugin'));
-		if ($this->isUpdated())
-			$this->upgradePlugin();
-		if ($this->isConfigSubmitted())
-			$this->applySettings();
-		if ($this->isPHPMode())
-			self::definePiwikConstants();
-		$this->loadLanguage();
-	}
-	
-	private function addActions() {
-		add_action('admin_menu', array($this, 'buildAdminMenu'));
-		add_action('admin_post_save_wp-piwik_stats', array(&$this, 'onStatsPageSaveChanges'));
-		add_action('load-post.php', array(&$this, 'postMetaboxes'));
-		add_action('load-post-new.php', array(&$this, 'postMetaboxes'));
-		if ($this->isNetworkMode())
-			add_action('network_admin_menu', array($this, 'buildNetworkAdminMenu'));
-		if ($this->isDashboardActive())
-			add_action('wp_dashboard_setup', array($this, 'extendWordPressDashboard'));
-		if ($this->isToolbarActive()) {
-			add_action(is_admin()?'admin_head':'wp_head', array($this, 'loadToolbarRequirements'));
-			add_action('admin_bar_menu', array(&$this, 'extendWordPressToolbar'), 1000);
-		}
-		if ($this->isTrackingActive()) {
-			add_action(self::$settings->getGlobalOption('track_codeposition') == 'footer'?'wp_footer':'wp_head', array($this, 'addJavascriptCode'));
-			if ($this->isAddNoScriptCode())
-				add_action('wp_footer', array($this, 'addNoscriptCode'));
-			if ($this->isAdminTrackingActive())
-				add_action('admin_head', array($this, 'addAdminHeaderTracking'));
-		}
-		if (self::$settings->getGlobalOption('add_post_annotations'))
-			add_action('transition_post_status', array($this, 'onPostStatusTransition'));
-	}
-
-	private function addFilters() {
-		add_filter('plugin_row_meta', array($this, 'setPluginMeta'), 10, 2);
-		add_filter('screen_layout_columns', array(&$this, 'onScreenLayoutColumns'), 10, 2);
-		if ($this->isTrackingActive()) {
-			if ($this->isTrackFeed()) {
-				add_filter('the_excerpt_rss', array(&$this, 'addFeedTracking'));
-				add_filter('the_content', array(&$this, 'addFeedTracking'));
-			}
-			if ($this->isAddFeedCampaign())
-				add_filter('post_link', array(&$this, 'addFeedCampaign'));
-		}
-	}
-		
-	private function addShortcodes() {
-		if ($this->isAddShortcode())
-			add_shortcode('wp-piwik', array(&$this, 'shortcode'));
-	}
-	
-	private function loadLanguage() {
-		load_plugin_textdomain('wp-piwik', false, dirname(self::$strPluginBasename)."/../languages/");
-	}
-			
-	function installPlugin() {
-		self::$logger->log('Running WP-Piwik installation');
-		add_action('admin_notices', array($this, 'updateMessage'));
-		self::$bolJustActivated = true;
-		self::$settings->setGlobalOption('revision', self::$intRevisionId);
-		self::$settings->setGlobalOption('last_settings_update', time());
-	}
-
-	static function uninstallPlugin() {
-		self::$logger->log('Running WP-Piwik uninstallation');
-		if (!defined('WP_UNINSTALL_PLUGIN'))
-			exit();
-		self::$settings->resetSettings(true);
-	}
-
-	function upgradePlugin() {
-		self::$logger->log('Upgrade WP-Piwik to '.self::$strVersion);
-		add_action('admin_notices', array($this, 'updateMessage'));
-		$patches = glob(dirname(__FILE__).DIRECTORY_SEPARATOR.'update'.DIRECTORY_SEPARATOR.'*.php');
-		if (is_array($patches)) {
-			sort($patches);
-			foreach ($patches as $patch) {
-				$patchVersion = (int) pathinfo($patch, PATHINFO_FILENAME);
-				if ($patchVersion && self::$settings->getGlobalOption('revision') < $patchVersion)
-					self::includeFile('update'.DIRECTORY_SEPARATOR.$patchVersion);
-			} 
-		}
-		$this->installPlugin();	  
-	}
-
-	function updateMessage() {
-		$text = sprintf(__('%s %s installed.', 'wp-piwik'), self::$settings->getGlobalOption('plugin_display_name'), self::$strVersion);
-		$notice = (!self::isConfigured()?
-			__('Next you should connect to Piwik','wp-piwik'):
-			__('Please validate your configuration','wp-piwik')
-		);
-		$link = sprintf('<a href="'.getSettingsURL.'?page=%s">%s</a>', self::$strPluginBasename, __('Settings', 'wp-piwik'));
-		printf('<div class="updated fade"><p>%s<strong>%s:</strong> %s: %s</p></div>', $text, __('Important', 'wp-piwik'), $notice, $link);
-	}
-	
-	function getSettingsURL() {
-		return (self::$settings->checkNetworkActivation()?'settings':'options-general').'.php';
-	}
-
-	private function updateTrackingCode() {
-		if (!self::$settings->getOption('site_id') || !self::$settings->getOption('tracking_code'))
-			$this->addPiwikSite();
-		if ($this->isCurrentTrackingCode()) {
-			self::$settings->setOption('tracking_code', $this->callPiwikAPI('SitesManager.getJavascriptTag'));
-			self::$settings->save();
-		}
-	}
-
-	/* -- </REFACTORED><OLD> -- */
-		
-	function addJavascriptCode() {
-		if ($this->isHiddenUser()) {
-			self::$logger->log('Do not add tracking code to site header (user should not be tracked) Blog ID: '.self::$blog_id.' Site ID: '.self::$settings->getOption('site_id'));
-			return;
-		}
-		$this->updateTrackingCode();
-		
-		// Change code if 404
-		if (is_404() && self::$settings->getGlobalOption('track_404')) {
-			self::$logger->log('Apply 404 changes. Blog ID: '.self::$blog_id.' Site ID: '.self::$settings->getOption('site_id'));
-			$strTrackingCode = str_replace("_paq.push(['trackPageView']);", "_paq.push(['setDocumentTitle', '404/URL = '+String(document.location.pathname+document.location.search).replace(/\//g,'%2f') + '/From = ' + String(document.referrer).replace(/\//g,'%2f')]);\n_paq.push(['trackPageView']);", self::$settings->getOption('tracking_code'));
-		}
-		// Change code if search result
-		elseif (is_search() && self::$settings->getGlobalOption('track_search')) {
-			self::$logger->log('Apply search tracking changes. Blog ID: '.self::$blog_id.' Site ID: '.self::$settings->getOption('site_id'));
-			$objSearch = new WP_Query("s=" . get_search_query() . '&showposts=-1'); 
-			$intResultCount = $objSearch->post_count;
-			$strTrackingCode = str_replace("_paq.push(['trackPageView']);", "_paq.push(['trackSiteSearch','".get_search_query()."', false, ".$intResultCount."]);\n_paq.push(['trackPageView']);", self::$settings->getOption('tracking_code'));
-		// Use default tracking code
-		} else 
-			$strTrackingCode = self::$settings->getOption('tracking_code');
-		// Send tracking code
-		self::$logger->log('Add tracking code. Blog ID: '.self::$blog_id.' Site ID: '.self::$settings->getOption('site_id'));
-		// Add custom variables if set:
-		if (is_single()) {
-			$strCustomVars = '';
-			for ($i = 1; $i <= 5; $i++) {
-				// Get post ID
-				$intID = get_the_ID();
-				// Get key
-				$strMetaKey = get_post_meta($intID, 'wp-piwik_custom_cat'.$i, true);
-				// Get value
-				$strMetaVal = get_post_meta($intID, 'wp-piwik_custom_val'.$i, true);
-				if (!empty($strMetaKey) && !empty($strMetaVal))
-					$strCustomVars .= "_paq.push(['setCustomVariable',".$i.", '".$strMetaKey."', '".$strMetaVal."', 'page']);\n";
-			}
-			if (!empty($strCustomVars)) $strTrackingCode = str_replace("_paq.push(['trackPageView']);", $strCustomVars."_paq.push(['trackPageView']);", $strTrackingCode);
-		}
-		echo $strTrackingCode;
-		$strName = get_bloginfo('name');
-		if (self::$settings->getOption('name') != $strName)
-			$this->updatePiwikSite();
-	}
-
-	function addNoscriptCode() {
-		// Hotfix: Custom capability problem with WP multisite
-		if (is_multisite()) {
-			foreach (self::$settings->getGlobalOption('capability_stealth') as $strKey => $strVal)
-				if ($strVal && current_user_can($strKey))
-					return;
-		// Don't add tracking code?
-		} elseif (current_user_can('wp-piwik_stealth')) return;
-		// Send tracking code
-		self::$logger->log('Add noscript code. Blog ID: '.self::$blog_id.' Site ID: '.self::$settings->getOption('site_id'));
-		echo self::$settings->getOption('noscript_code')."\n";
-	}
-	
-	/**
-	 * Shortcode function
-	 **/
-	 
-	function shortcode($aryAttributes) {
-		$this->aryAttributes = shortcode_atts(
-			array(
-				'title' => '',
-				'module' => 'overview',
-				'period' => 'day',
-				'date' => 'yesterday',
-				'limit' => 10,
-				'width' => '100%',
-				'height' => '200px',
-				'language' => 'en',
-				'range' => false,
-				'key' => 'sum_daily_nb_uniq_visitors'
-			), $aryAttributes);
-		switch ($this->aryAttributes['module']) {
-			case 'opt-out':
-				$this->strResult = '<iframe frameborder="no" width="'.$this->aryAttributes['width'].'" height="'.$this->aryAttributes['height'].'" src="'.self::$settings->getGlobalOption('piwik_url').'index.php?module=CoreAdminHome&action=optOut&language='.$this->aryAttributes['language'].'"></iframe>';
-			break;
-			case 'post':
-				self::includeFile('shortcodes/post');
-			break;
-			case 'overview':
-			default:
-				self::includeFile('shortcodes/overview');
-		}
-		return $this->strResult;
-	}
-	
-	/**
-	 * Add metaboxes to posts
-	 */
-	function postMetaboxes() {
-		if (self::$settings->getGlobalOption('add_customvars_box')) {
-			add_action('add_meta_boxes', array(&$this, 'postAddMetaboxes'));
-			add_action('save_post', array(&$this, 'postCustomvarsSave'), 10, 2);
-		}
-		// Show per post stats if enabled
-		if (self::$settings->getGlobalOption('perpost_stats')) {
-			$this->includeFile('classes/WP_Piwik_MetaBox_PerPost_Stats');
-			add_action('add_meta_boxes', array(new WP_Piwik_MetaBox_PerPost_Stats($this->subClassConfig()), 'addMetabox'));
-		}
-	}
-
-	/**
-	 * Create post meta boxes
-	 */
-	function postAddMetaboxes() {
-		add_meta_box(
-			'wp-piwik_post_customvars',
-			__('Piwik Custom Variables', 'wp-piwik'),
-			array(&$this, 'postCustomvars'),
-			'post',
-			'side',
-			'default'
-		);
-	}
-	
-	/**
-	 * Display custom variables meta box
-	 */
-	function postCustomvars($objPost, $objBox ) {
-		wp_nonce_field(basename( __FILE__ ), 'wp-piwik_post_customvars_nonce'); ?>
-	 	<table>
-	 		<tr><th></th><th><?php _e('Name', 'wp-piwik'); ?></th><th><?php _e('Value', 'wp-piwik'); ?></th></tr>
-	 	<?php for($i = 1; $i <= 5; $i++) { ?>
-		 	<tr>
-		 		<th><label for="wp-piwik_customvar1"><?php echo $i; ?>: </label></th>
-		 		<td><input class="widefat" type="text" name="wp-piwik_custom_cat<?php echo $i; ?>" value="<?php echo esc_attr(get_post_meta($objPost->ID, 'wp-piwik_custom_cat'.$i, true ) ); ?>" size="200" /></td>
-		 		<td><input class="widefat" type="text" name="wp-piwik_custom_val<?php echo $i; ?>" value="<?php echo esc_attr(get_post_meta($objPost->ID, 'wp-piwik_custom_val'.$i, true ) ); ?>" size="200" /></td>
-		 	</tr>
-		<?php } ?>
-		</table>
-		<p><?php _e('Set custom variables for a page view', 'wp-piwik'); ?>. (<a href="http://piwik.org/docs/custom-variables/"><?php _e('More information', 'wp-piwik'); ?></a>.)</p>
-		<?php 
-	}
-
-	/**
-	 * Save post custom variables
-	 */
-	function postCustomvarsSave($intID, $objPost) {
-		// Verify the nonce before proceeding.
-		if (!isset( $_POST['wp-piwik_post_customvars_nonce'] ) || !wp_verify_nonce( $_POST['wp-piwik_post_customvars_nonce'], basename( __FILE__ ) ) )
-			return $intID;
-		// Get post type object
-		$objPostType = get_post_type_object($objPost->post_type);
-		// Check if the current user has permission to edit the post.
-		if (!current_user_can($objPostType->cap->edit_post, $intID))
-			return $intID;
-		$aryNames = array('cat', 'val');
-		for ($i = 1; $i <= 5; $i++)
-			for ($j = 0; $j <= 1; $j++) {
-				// Get data
-				$strMetaVal = (isset($_POST['wp-piwik_custom_'.$aryNames[$j].$i])?htmlentities($_POST['wp-piwik_custom_'.$aryNames[$j].$i]):'');
-				// Create key
-				$strMetaKey = 'wp-piwik_custom_'.$aryNames[$j].$i;
-				// Get the meta value of the custom field key
-				$strCurVal = get_post_meta($intID, $strMetaKey, true);
-				// Add meta val:
-				if ($strMetaVal && '' == $strCurVal)
-					add_post_meta($intID, $strMetaKey, $strMetaVal, true);
-				// Update meta val:
-				elseif ($strMetaVal && $strMetaVal != $strCurVal)
-					update_post_meta($intID, $strMetaKey, $strMetaVal);
-				// Delete meta val:
-				elseif (''==$strMetaVal && $strCurVal)
-					delete_post_meta($intID, $strMetaKey, $strCurVal);
-			}
-	}
-
-	/**
-	 * Add pages to admin menu
-	 */
-	function buildAdminMenu() {
-		// Show stats dashboard page if WP-Piwik is configured
-		if (self::isConfigured()) {
-			// Add dashboard page
-			$this->intStatsPage = add_dashboard_page(
-				__('Piwik Statistics', 'wp-piwik'), 
-				self::$settings->getGlobalOption('plugin_display_name'), 
-				'wp-piwik_read_stats',
-				'wp-piwik_stats',
-				array($this, 'showStats')
-			);
-			// Add required scripts
-			add_action('admin_print_scripts-'.$this->intStatsPage, array($this, 'loadStatsScripts'));
-			// Add required styles
-			add_action('admin_print_styles-'.$this->intStatsPage, array($this, 'addAdminStyle'));
-			// Add required header tags
-			add_action('admin_head-'.$this->intStatsPage, array($this, 'addAdminHeaderStats'));
-			// Stats page onload callback
-			add_action('load-'.$this->intStatsPage, array(&$this, 'onloadStatsPage'));
-		}
-		if (!self::$settings->checkNetworkActivation()) {
-			// Add options page
-			$intOptionsPage = add_options_page(
-				self::$settings->getGlobalOption('plugin_display_name'),
-				self::$settings->getGlobalOption('plugin_display_name'), 
-				'activate_plugins',
-				__FILE__,
-				array($this, 'showSettings')
-			);
-			// Add required scripts
-			add_action('admin_print_scripts-'.$this->intStatsPage, array($this, 'loadSettingsScripts'));
-			// Add required header tags
-			add_action('admin_head-'.$intOptionsPage, array($this, 'addAdminHeaderSettings'));
-			// Add styles required by options page
-			add_action('admin_print_styles-'.$intOptionsPage, array($this, 'addAdminStyle'));
-		}
-	}
-
-	/**
-	 * Add pages to network admin menu
-	 */
-	function buildNetworkAdminMenu() {
-		// Show stats dashboard page if WP-Piwik is configured
-		if (self::isConfigured()) {
-			// Add dashboard page
-			$this->intStatsPage = add_dashboard_page(
-				__('Piwik Statistics', 'wp-piwik'), 
-				self::$settings->getGlobalOption('plugin_display_name'), 
-				'manage_sites',
-				'wp-piwik_stats',
-				array($this, 'showStatsNetwork')
-			);
-			// Add required scripts
-			add_action('admin_print_scripts-'.$this->intStatsPage, array($this, 'loadStatsScripts'));
-			// Add required styles
-			add_action('admin_print_styles-'.$this->intStatsPage, array($this, 'addAdminStyle'));
-			// Add required header tags
-			add_action('admin_head-'.$this->intStatsPage, array($this, 'addAdminHeaderStats'));
-			// Stats page onload callback
-			add_action('load-'.$this->intStatsPage, array(&$this, 'onloadStatsPage'));
-		}
-		$intOptionsPage = add_submenu_page(
-			'settings.php',
-			self::$settings->getGlobalOption('plugin_display_name'),
-			self::$settings->getGlobalOption('plugin_display_name'),
-			'manage_sites',
-			__FILE__,
-			array($this, 'showSettings')
-		);
-		
-		// Add styles required by options page
-		add_action('admin_print_styles-'.$intOptionsPage, array($this, 'addAdminStyle'));
-		add_action('admin_head-'.$intOptionsPage, array($this, 'addAdminHeaderSettings'));
-	}
-	
-	/**
-	 * Support two columns 
-	 * seen in Heiko Rabe's metabox demo plugin 
-	 * 
-	 * @see http://tinyurl.com/5r5vnzs 
-	 */ 
-	function onScreenLayoutColumns($aryColumns, $strScreen) {		
-		if ($strScreen == $this->intStatsPage)
-			$aryColumns[$this->intStatsPage] = 3;
-		return $aryColumns;
-	}
-	
-	/**
-	 * Add widgets to WordPress dashboard
-	 */
-	function extendWordPressDashboard() {
-		// Is user allowed to see stats?
-		if (current_user_can('wp-piwik_read_stats')) {
-			// TODO: Use bitmask here
-			// Add data widget if enabled
-			if (self::$settings->getGlobalOption('dashboard_widget'))
-				$this->addWordPressDashboardWidget();
-			// Add chart widget if enabled
-			if (self::$settings->getGlobalOption('dashboard_chart')) {				
-				// Add required scripts
-				add_action('admin_print_scripts-index.php', array($this, 'loadStatsScripts'));
-				// Add required styles
-				add_action('admin_print_styles-index.php', array($this, 'addAdminStyle'));
-				// Add required header tags
-				add_action('admin_head-index.php', array($this, 'addAdminHeaderStats'));
-				$this->addWordPressDashboardChart();
-			}
-			// Add SEO widget if enabled
-			if (self::$settings->getGlobalOption('dashboard_seo'))
-				$this->addWordPressDashboardSEO();
-		}
-	}
-	
-	/**
-	 * Add widgets to WordPress Toolbar
-	 */
-	public function extendWordPressToolbar(&$objToolbar) {
-		// Is user allowed to see stats?
-		if (current_user_can('wp-piwik_read_stats') && is_admin_bar_showing()) {
-			$aryUnique = $this->callPiwikAPI('VisitsSummary.getUniqueVisitors','day','last30',null);
-			if (!is_array($aryUnique)) $aryUnique = array();
-			$strGraph = '<script type="text/javascript">';	
-			$strGraph .= "var \$jSpark = jQuery.noConflict();\$jSpark(function() {var piwikSparkVals=[".implode(',',$aryUnique)."];\$jSpark('.wp-piwik_dynbar').sparkline(piwikSparkVals, {type: 'bar', barColor: '#ccc', barWidth:2});});";
-			$strGraph .= '</script>';
-			$strGraph .= '<span class="wp-piwik_dynbar">Loading...</span>';
-			$objToolbar->add_menu(array(
-				'id' => 'wp-piwik_stats',
-				'title' => $strGraph,
-				'href' => admin_url().'?page=wp-piwik_stats'
-			));
-		}		
-	}
-
-	/**
-	 * Add a data widget to the WordPress dashboard
-	 */
-	function addWordPressDashboardWidget() {
-		$aryConfig = array(
-			'params' => array('period' => 'day','date'  => self::$settings->getGlobalOption('dashboard_widget'),'limit' => null),
-			'inline' => true,			
-		);
-		$strFile = 'overview';
-		add_meta_box(
-				'wp-piwik_stats-dashboard-overview', 
-				self::$settings->getGlobalOption('plugin_display_name').' - '.__(self::$settings->getGlobalOption('dashboard_widget'), 'wp-piwik'), 
-				array(&$this, 'createDashboardWidget'), 
-				'dashboard', 
-				'side', 
-				'high',
-				array('strFile' => $strFile, 'aryConfig' => $aryConfig)
-			);
-	}
-	
-	/**
-	 * Add a visitor chart to the WordPress dashboard
-	 */
-	function addWordPressDashboardChart() {
-		$aryConfig = array(
-			'params' => array('period' => 'day','date'  => 'last30','limit' => null),
-			'inline' => true,			
-		);
-		$strFile = 'visitors';
-		add_meta_box(
-				'wp-piwik_stats-dashboard-chart', 
-				self::$settings->getGlobalOption('plugin_display_name').' - '.__('Visitors', 'wp-piwik'), 
-				array(&$this, 'createDashboardWidget'), 
-				'dashboard', 
-				'side', 
-				'high',
-				array('strFile' => $strFile, 'aryConfig' => $aryConfig)
-			);
-	}	
-
-	/**
-	 * Add a SEO widget to the WordPress dashboard
-	 */
-	function addWordPressDashboardSEO() {
-		$aryConfig = array(
-			'params' => array('period' => 'day','date'  => 'today','limit' => null),
-			'inline' => true,			
-		);
-		$strFile = 'seo';
-		add_meta_box(
-				'wp-piwik_stats-dashboard-seo', 
-				self::$settings->getGlobalOption('plugin_display_name').' - '.__('SEO', 'wp-piwik'), 
-				array(&$this, 'createDashboardWidget'), 
-				'dashboard', 
-				'side', 
-				'high',
-				array('strFile' => $strFile, 'aryConfig' => $aryConfig)
-			);
-	}
-
-	/**
-	 * Add plugin meta links to plugin details
-	 * 
-	 * @see http://wpengineer.com/1295/meta-links-for-wordpress-plugins/
-	 */
-	function setPluginMeta($strLinks, $strFile) {
-		// Get plugin basename
-		$strPlugin = plugin_basename(__FILE__);
-		// Add link just to this plugin's details
-		if ($strFile == self::$strPluginBasename) 
-			return array_merge(
-				$strLinks,
-				array(
-					sprintf('<a href="'.(self::$settings->checkNetworkActivation()?'settings':'options-general').'.php?page=%s">%s</a>', self::$strPluginBasename, __('Settings', 'wp-piwik'))
-				)
-			);
-		// Don't affect other plugins details
-		return $strLinks;
-	}
-
-	/**
-	 * Load required scripts to stats page
-	 */
-	function loadStatsScripts() {
-		// Load WP-Piwik script
-		wp_enqueue_script('wp-piwik', $this->getPluginURL().'js/wp-piwik.js', array(), self::$strVersion, true);
-		// Load jqPlot
-		wp_enqueue_script('wp-piwik-jqplot',$this->getPluginURL().'js/jqplot/wp-piwik.jqplot.js',array('jquery'));
-	}
-
-	/**
-	 * Load scripts required by Toolbar graphs
-	 */
-	function loadToolbarRequirements() {
-		// Only load if user is allowed to see stats
-		if (current_user_can('wp-piwik_read_stats') && is_admin_bar_showing()) {
-			// Load Sparklines
-			wp_enqueue_script('wp-piwik-sparkline',$this->getPluginURL().'js/sparkline/jquery.sparkline.min.js',array('jquery'),'2.1.1');
-			// Load CSS
-			wp_enqueue_style('wp-piwik', $this->getPluginURL().'css/wp-piwik-spark.css');
-		}
-	}
-
-	/**
-	 * Load required scripts to settings page
-	 */
-	function loadSettingsScripts() {
-		wp_enqueue_script('jquery');
-	}
-
-	/**
-	 * Load required styles to admin pages
-	 */
-	function addAdminStyle() {
-		// Load WP-Piwik styles
-		wp_enqueue_style('wp-piwik', $this->getPluginURL().'css/wp-piwik.css',array(),self::$strVersion);
-	}
-
-	/**
-	 * Add tracking code to admin header
-	 */
-	function addAdminHeaderTracking() {
-		$this->site_header();	
-	}
-
-	/**
-	 * Add tracking image to feeds
-	 **/
-	function addFeedTracking($content) {
-		global $post;
-		if(is_feed()) {
-			self::$logger->log('Add tracking image to feed entry.');
-			if (!self::$settings->getOption('site_id'))
-				self::addPiwikSite();
-			$title = the_title(null,null,false);
-			$posturl = get_permalink($post->ID);
-			$urlref = get_bloginfo('rss2_url');
-			$url = self::$settings->getGlobalOption('piwik_url');
-			if (substr($url, -10, 10) == '/index.php')
-				$url = str_replace('/index.php', '/piwik.php', $url);
-			else $url .= 'piwik.php';
-			$trackingImage = $url.'?idsite='.self::$settings->getOption('site_id').'&amp;rec=1'.
-				'&amp;url='.urlencode($posturl).
-				'&amp;action_name='.urlencode($title).
-				'&amp;urlref='.urlencode($urlref);
-			$content .= '<img src="'.$trackingImage.'" style="border:0;width:0;height:0" width="0" height="0" alt="" />';
-		}
-		return $content;
-	}
-
-	/**
-	 * Add tracking image to feeds
-	 **/
-	function addFeedCampaign($permalink) {
-		global $post;
-		if(is_feed()) {
-			self::$logger->log('Add campaign to feed permalink.');
-			$sep = (strpos($permalink, '?') === false?'?':'&');
-			$permalink .= $sep.'pk_campaign='.urlencode(self::$settings->getGlobalOption('track_feed_campaign')).'&pk_kwd='.urlencode($post->post_name);
-		}
-		return $permalink;
-	}
-
-	function addPiwikAnnotation($postID) {
-		$this->callPiwikAPI('Annotations.add', '', date('Y-m-d'), '', false, false, 'PHP', '', false, 'Published: '.get_post($postID)->post_title.' - URL: '.get_permalink($postID));
-	}
-
-	/**
-	 * Add required header tags to stats page
-	 */
-	function addAdminHeaderStats() {
-		// Load jqPlot IE compatibility script
-		echo '<!--[if IE]><script language="javascript" type="text/javascript" src="'.$this->getPluginURL().'js/jqplot/excanvas.min.js"></script><![endif]-->';
-		// Load jqPlot styles
-		echo '<link rel="stylesheet" href="'.$this->getPluginURL().'js/jqplot/jquery.jqplot.min.css" type="text/css"/>';
-		echo '<script type="text/javascript">var $j = jQuery.noConflict();</script>';
-	}
-
-	/**
-	 * Add required header tags to settings page
-	 */
-	function addAdminHeaderSettings() {
-		echo '<script type="text/javascript">var $j = jQuery.noConflict();</script>';
-	}
-	
-	/**
-	 * Get this plugin's URL
-	 */
-	function getPluginURL() {
-		// Return plugins URL + /wp-piwik/
-		return trailingslashit(plugins_url().'/wp-piwik/');
-	}
-
-	/**
-	 * Call REST API
-	 * 
-	 * @param $strURL Remote file URL
-	 */
-	function callREST($strURL) {
-		$strPiwikURL = self::$settings->getGlobalOption('piwik_url');
-		if (substr($strPiwikURL, -1, 1) != '/') $strPiwikURL .= '/';
-		$strURL = $strPiwikURL.'?module=API'.$strURL;
-		// Use cURL if available	
-		if (function_exists('curl_init')) {
-			// Init cURL
-			$c = curl_init($strURL);
-			// Disable SSL peer verification if asked to
-			curl_setopt($c, CURLOPT_SSL_VERIFYPEER, !self::$settings->getGlobalOption('disable_ssl_verify'));
-			// Set user agent
-			curl_setopt($c, CURLOPT_USERAGENT, self::$settings->getGlobalOption('piwik_useragent')=='php'?ini_get('user_agent'):self::$settings->getGlobalOption('piwik_useragent_string'));
-			// Configure cURL CURLOPT_RETURNTRANSFER = 1
-			curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);
-			// Configure cURL CURLOPT_HEADER = 0 
-			curl_setopt($c, CURLOPT_HEADER, 0);
-			// Set cURL timeout
-			curl_setopt($c, CURLOPT_TIMEOUT, self::$settings->getGlobalOption('connection_timeout'));
-			$httpProxyClass = new WP_HTTP_Proxy();
-			if ($httpProxyClass->is_enabled() && $httpProxyClass->send_through_proxy($strURL)) {
-				curl_setopt($c, CURLOPT_PROXY, $httpProxyClass->host());
-				curl_setopt($c, CURLOPT_PROXYPORT, $httpProxyClass->port());
-				if ($httpProxyClass->use_authentication())
-					curl_setopt($c, CURLOPT_PROXYUSERPWD, $httpProxyClass->username().':'.$httpProxyClass->password());
-			}
-			// Get result
-			$strResult = curl_exec($c);
-			// Close connection			
-			curl_close($c);
-		// cURL not available but url fopen allowed
-		} elseif (ini_get('allow_url_fopen')) {
-			// Set timeout
-			$resContext = stream_context_create(array('http'=>array('timeout' => self::$settings->getGlobalOption('connection_timeout'))));
-			// Get file using file_get_contents
-			$strResult = @file_get_contents($strURL, false, $strContext);
-		// Error: Not possible to get remote file
-		} else $strResult = serialize(array(
-				'result' => 'error',
-				'message' => 'Remote access to Piwik not possible. Enable allow_url_fopen or CURL.'
-			));
-		// Return result
-		return $strResult;
-	}
-	
-	/**
-	 * Call PHP API
-	 * 
-	 * @param $strParams API call params
-	 */
-	function callPHP($strParams) {
-		if (!defined('PIWIK_INCLUDE_PATH'))
-			return;
-		if (PIWIK_INCLUDE_PATH === FALSE)
-			return serialize(array('result' => 'error', 'message' => __('Could not resolve','wp-piwik').' &quot;'.htmlentities(self::$settings->getGlobalOption('piwik_path')).'&quot;: '.__('realpath() returns false','wp-piwik').'.'));
-		if (file_exists(PIWIK_INCLUDE_PATH . "/index.php"))
-			require_once PIWIK_INCLUDE_PATH . "/index.php";
-		if (file_exists(PIWIK_INCLUDE_PATH . "/core/API/Request.php"))
-			require_once PIWIK_INCLUDE_PATH . "/core/API/Request.php";
-		if (class_exists('Piwik\FrontController'))
-			Piwik\FrontController::getInstance()->init();
-		else serialize(array('result' => 'error', 'message' => __('Class Piwik\FrontController does not exists.','wp-piwik')));
-		if (class_exists('Piwik\API\Request'))
-			$objRequest = new Piwik\API\Request($strParams);
-		else serialize(array('result' => 'error', 'message' => __('Class Piwik\API\Request does not exists.','wp-piwik')));
-		return $objRequest->process();		
-	}
-
-	/**
-	 * Get remote file
-	 * 
-	 * @param String $strURL Remote file URL
-	 */
-	function getRemoteFile($strURL, $blogURL = '') {
-		if (self::$settings->getGlobalOption('piwik_mode') == 'php')
-			return $this->callPHP($strURL.($blogURL?'&url='.$blogURL:''));
-		else
-			return $this->callREST($strURL.($blogURL?'&url='.urlencode($blogURL):''));
-	}
-
-	/**
-	 * Add a new site to Piwik if a new blog was requested,
-	 * or get its ID by URL
-	 */ 
-	function addPiwikSite() {
-		if (isset($_GET['wpmu_show_stats']) && self::$settings->checkNetworkActivation()) {
-			self::$logger->log('Switch blog ID: '.(int) $_GET['wpmu_show_stats']);
-			switch_to_blog((int) $_GET['wpmu_show_stats']);
-		}
-		self::$logger->log('Get the blog\'s site ID by URL: '.get_bloginfo('url'));
-		// Check if blog URL already known
-		$strURL = '&method=SitesManager.getSitesIdFromSiteUrl';
-		$strURL .= '&format=PHP';
-		$strURL .= '&token_auth='.self::$settings->getGlobalOption('piwik_token');
-		$aryResult = unserialize($this->getRemoteFile($strURL, get_bloginfo('url')));
-		if (!empty($aryResult) && isset($aryResult[0]['idsite'])) {
-			self::$settings->setOption('site_id', (int) $aryResult[0]['idsite']);
-		// Otherwise create new site
-		} elseif (self::isConfigured() && !empty($strURL)) {
-			self::$logger->log('Blog not known yet - create new site');
-			$strName = get_bloginfo('name');
-			if (empty($strName)) $strName = get_bloginfo('url');
-			self::$settings->setOption('name', $strName);
-			$strURL .= '&method=SitesManager.addSite';
-			$strURL .= '&siteName='.urlencode($strName).'&urls='.urlencode(get_bloginfo('url'));
-			$strURL .= '&format=PHP';
-			$strURL .= '&token_auth='.self::$settings->getGlobalOption('piwik_token');
-			$strResult = unserialize($this->getRemoteFile($strURL, get_bloginfo('url')));
-			if (!empty($strResult)) self::$settings->setOption('site_id', (int) $strResult);
-		}
-		// Store new data if site created
-		if (self::$settings->getOption('site_id')) {
-			self::$logger->log('Get the site\'s tracking code');
-			self::$settings->setOption('tracking_code', $this->callPiwikAPI('SitesManager.getJavascriptTag'));
-		} else self::$settings->getOption('tracking_code', '');
-		self::$settings->save();
-		if (isset($_GET['wpmu_show_stats']) && self::$settings->checkNetworkActivation()) {
-			self::$logger->log('Back to current blog');
-			restore_current_blog();
-		}
-		return array('js' => self::$settings->getOption('tracking_code'), 'id' => self::$settings->getOption('site_id'));
-	}
-
-	/**
-	 * Update a site 
-	 */ 
-	function updatePiwikSite() {
-		$strBlogURL = get_bloginfo('url');
-		// Check if blog URL already known
-		$strName = get_bloginfo('name');
-		if (empty($strName)) $strName = $strBlogURL;
-		self::$settings->setOption('name', $strName);
-		$strURL = '&method=SitesManager.updateSite';
-		$strURL .= '&idSite='.self::$settings->getOption('site_id');
-		$strURL .= '&siteName='.urlencode($strName).'&urls='.urlencode($strBlogURL);
-		$strURL .= '&format=PHP';
-		$strURL .= '&token_auth='.self::$settings->getGlobalOption('piwik_token');
-		$strResult = unserialize($this->getRemoteFile($strURL));		
-		// Store new data
-		self::$settings->getOption('tracking_code', $this->callPiwikAPI('SitesManager.getJavascriptTag'));
-		self::$settings->save();
-	}
-
-	/**
-	 * Apply configured Tracking Code changes
-	 */
-	function applyJSCodeChanges($strCode) {
-		self::$logger->log('Apply tracking code changes.');
-		self::$settings->setOption('last_tracking_code_update', time());
-		$strCode = html_entity_decode($strCode);
-		// Change code if js/index.php should be used
-		if (self::$settings->getGlobalOption('track_mode') == 1) {
-			$strCode = str_replace('piwik.js', 'js/', $strCode);
-			$strCode = str_replace('piwik.php', 'js/', $strCode);
-		} elseif (self::$settings->getGlobalOption('track_mode') == 2) {
-			$strCode = str_replace('piwik.js', 'piwik.php', $strCode);
-			$strURL = str_replace('https://', '://', self::$settings->getGlobalOption('piwik_url'));
-			$strURL = str_replace('http://', '://', $strURL);
-			$strProxy = str_replace('https://', '://', plugins_url('wp-piwik'));
-			$strProxy = str_replace('http://', '://', $strProxy);
-			$strProxy .= '/';
-			$strCode = str_replace($strURL, $strProxy, $strCode);
-		}
-		$strCode = str_replace('//";','/"',$strCode);
-		if (self::$settings->getGlobalOption('track_cdnurl')||self::$settings->getGlobalOption('track_cdnurlssl')) {
-			$strCode = str_replace("var d=doc", "var ucdn=(('https:' == document.location.protocol) ? 'https://".(self::$settings->getGlobalOption('track_cdnurlssl')?self::$settings->getGlobalOption('track_cdnurlssl'):self::$settings->getGlobalOption('track_cdnurl'))."/' : 'http://".(self::$settings->getGlobalOption('track_cdnurl')?self::$settings->getGlobalOption('track_cdnurl'):self::$settings->getGlobalOption('track_cdnurlssl'))."/');\nvar d=doc", $strCode);
-			$strCode = str_replace("g.src=u+", "g.src=ucdn+", $strCode);
-		}
-		// Change code if POST is forced to be used
-		if (self::$settings->getGlobalOption('track_post') && self::$settings->getGlobalOption('track_mode') != 2) $strCode = str_replace("_paq.push(['trackPageView']);", "_paq.push(['setRequestMethod', 'POST']);\n_paq.push(['trackPageView']);", $strCode);
-		// Change code if cookies are disabled
-		if (self::$settings->getGlobalOption('track_across')) {
-			$referrerParsed = parse_url(get_bloginfo('url'));
-			$strCode =  str_replace("_paq.push(['trackPageView']);", "_paq.push(['setCookieDomain', '*.".$referrerParsed['host']."']);\n_paq.push(['trackPageView']);", $strCode);
-		}
-		if (self::$settings->getGlobalOption('disable_cookies')) $strCode = str_replace("_paq.push(['trackPageView']);", "_paq.push(['disableCookies']);\n_paq.push(['trackPageView']);", $strCode);
-		if (self::$settings->getGlobalOption('limit_cookies')) $strCode = str_replace("_paq.push(['trackPageView']);", "_paq.push(['setVisitorCookieTimeout', '".self::$settings->getGlobalOption('limit_cookies_visitor')."']);\n_paq.push(['setSessionCookieTimeout', '".self::$settings->getGlobalOption('limit_cookies_session')."']);\n_paq.push(['trackPageView']);", $strCode);
-		// Store <noscript> code
-		$aryNoscript = array();
-		preg_match('/<noscript>(.*)<\/noscript>/', $strCode, $aryNoscript);
-		if (isset($aryNoscript[0])) {
-			if (self::$settings->getGlobalOption('track_nojavascript'))
-				$aryNoscript[0] = str_replace('?idsite', '?rec=1&idsite', $aryNoscript[0]);
-			self::$settings->setOption('noscript_code', $aryNoscript[0]);
-		}
-		if (self::$settings->getGlobalOption('track_datacfasync'))
-			$strCode = str_replace('<script type', '<script data-cfasync="false" type', $strCode);
-		// Remove <noscript> code
-		$strCode = preg_replace('/<noscript>(.*)<\/noscript>/', '', $strCode);
-		// Return code without empty lines
-		return preg_replace('/\s+(\r\n|\r|\n)/', '$1', $strCode);
-	}
-	
-	/**
-	 * Create a WordPress dashboard widget
-	 */
-	function createDashboardWidget($objPost, $aryMetabox) {
-		// Create description and ID
-		$strDesc = $strID = '';
-		$aryConfig = $aryMetabox['args']['aryConfig'];
-		foreach ($aryConfig['params'] as $strParam)
-			if (!empty($strParam)) {
-				$strDesc .= $strParam.', ';
-				$strID .= '_'.$strParam;
-			}
-		// Remove dots from filename
-		$strFile = str_replace('.', '', $aryMetabox['args']['strFile']);
-		// Finalize configuration
-		$aryConf = array_merge($aryConfig, array(
-			'id' => $strFile.$strID,
-			'desc' => substr($strDesc, 0, -2)));
-		// Include widget file
-		if (file_exists(dirname(__FILE__).DIRECTORY_SEPARATOR.'..'.DIRECTORY_SEPARATOR.'dashboard/'.$strFile.'.php'))
-			include(dirname(__FILE__).DIRECTORY_SEPARATOR.'..'.DIRECTORY_SEPARATOR.'dashboard/'.$strFile.'.php');
- 	}
-
-	/**
-	 * Call Piwik's API
-	 */
-	function callPiwikAPI($strMethod, $strPeriod='', $strDate='', $intLimit='',$bolExpanded=false, $intId = false, $strFormat = 'PHP', $strPageURL = '', $useCache = true, $strNote = '') {
-		// Create unique cache key
-		$strKey = 'wp-piwik_'.md5($strMethod.'_'.$strPeriod.'_'.$strDate.'_'.$intLimit.'_'.self::$settings->getGlobalOption('piwik_token').'_'.self::$settings->getGlobalOption('piwik_url').'_'.$intId.'_'.$strPageURL);
-		// Call API if data not cached
-		if (self::$settings->getGlobalOption('cache') && $useCache) {
-			$result = get_transient($strKey);
-			self::$logger->log('API method: '.$strMethod.' Fetch call from cache: '.$strKey);
-		} else $result = false;
-		if ($strMethod == "SitesManager.getSitesWithAtLeastViewAccess" || false === $result) {
-			$strToken = self::$settings->getGlobalOption('piwik_token');
-			// If multisite stats are shown, maybe the super admin wants to show other blog's stats.
-			if (self::$settings->checkNetworkActivation() && function_exists('is_super_admin') && function_exists('wp_get_current_user') && is_super_admin() && isset($_GET['wpmu_show_stats'])) {
-				$aryOptions = get_blog_option((int) $_GET['wpmu_show_stats'], 'wp-piwik_settings' , array());
-				if (!empty($aryOptions) && isset($aryOptions['site_id']))
-					$intSite = $aryOptions['site_id'];
-				else $intSite = self::$settings->getOption('site_id');
-			// Otherwise use the current site's id.
-			} else {
-				if (!self::$settings->getOption('site_id'))
-					self::addPiwikSite();
-				$intSite = self::$settings->getOption('site_id');
-			}
-			//die($intSite);
-			// Create error message if WP-Piwik isn't configured
-			if (!self::isConfigured()) {
-				$result = array(
-					'result' => 'error',
-					'message' => 'Piwik URL/path or auth token not set.'
-				);
-				return $result;
-			}
-			// Build URL			
-			$strURL = '&method='.$strMethod;
-			$strURL .= '&idSite='.(int)$intSite.'&period='.$strPeriod.'&date='.$strDate;
-			$strURL .= '&filter_limit='.$intLimit;
-			$strURL .= '&token_auth='.$strToken;
-			$strURL .= '&expanded='.$bolExpanded;
-			$strURL .= '&format='.$strFormat;
-			$strURL .= ($strPageURL?'&pageUrl='.urlencode($strPageURL):'');
-			$strURL .= ($strNote?'&note='.urlencode($strNote):'');
-			// Fetch data if site exists
-			if (!empty($intSite) || $strMethod='SitesManager.getSitesWithAtLeastViewAccess') {
-				self::$logger->log('API method: '.$strMethod.' API call: '.$strURL);
-				$strResult = (string) $this->getRemoteFile($strURL, get_bloginfo('url'));			
-				$result = ($strFormat == 'PHP'?unserialize($strResult):$strResult);
-				// Apply tracking code changes if configured
-				if ($strMethod == 'SitesManager.getJavascriptTag' && !empty($result)) {
-					$result = is_string($result)?$this->applyJSCodeChanges($result):'<!-- WP-Piwik ERROR: Tracking code not availbale -->'."\n";
-				}
-			// Otherwise return error message
-			} else $result = array('result' => 'error', 'message' => 'Unknown site/blog.');
-			if (
-					$strMethod != 'SitesManager.getJavascriptTag' &&
-					$strDate != 'today' && $strDate != date('Ymd') && substr($strDate, 0, 4) != 'last' &&
-					self::$settings->getGlobalOption('cache') &&
-					!(isset($result['result']) && $result['result'] == 'error')&&
-					!empty($result)
-				) set_transient($strKey, $result, WEEK_IN_SECONDS);
-		}	
-		return $result;	
-	}
- 	
-	/* TODO: Add post stats
-	 * function display_post_unique_column($aryCols) {
-	 * 	$aryCols['wp-piwik_unique'] = __('Unique');
-	 *		return $aryCols;
-	 * }
-	 *
-	 * function display_post_unique_content($strCol, $intID) {
-	 *	if( $strCol == 'wp-piwik_unique' ) {
-	 *	}
-	 * }
-	 */
-
-	function onloadStatsPage() {
-		wp_enqueue_script('common');
-		wp_enqueue_script('wp-lists');
-		wp_enqueue_script('postbox');
-		$strToken = self::$settings->getGlobalOption('piwik_token');
-		$strPiwikURL = self::$settings->getGlobalOption('piwik_url');
-		$aryDashboard = array();
-		// Set default configuration
-		$arySortOrder = array(
-			'side' => array(
-				'overview' => array(__('Overview', 'wp-piwik'), 'day', 'yesterday'),
-				'seo' => array(__('SEO', 'wp-piwik'), 'day', 'yesterday'),
-				'pages' => array(__('Pages', 'wp-piwik'), 'day', 'yesterday'),
-				'keywords' => array(__('Keywords', 'wp-piwik'), 'day', 'yesterday', 10),
-				'websites' => array(__('Websites', 'wp-piwik'), 'day', 'yesterday', 10),
-				'plugins' => array(__('Plugins', 'wp-piwik'), 'day', 'yesterday'),
-				'search' => array(__('Site Search Keywords', 'wp-piwik'), 'day', 'yesterday', 10),
-				'noresult' => array(__('Site Search without Results', 'wp-piwik'), 'day', 'yesterday', 10),
-			),
-			'normal' => array(
-				'visitors' => array(__('Visitors', 'wp-piwik'), 'day', 'last30'),
-				'browsers' => array(__('Browser', 'wp-piwik'), 'day', 'yesterday'),
-				'browserdetails' => array(__('Browser Details', 'wp-piwik'), 'day', 'yesterday'),
-				'screens' => array(__('Resolution', 'wp-piwik'), 'day', 'yesterday'),
-				'systems' => array(__('Operating System', 'wp-piwik'), 'day', 'yesterday')
-			)
-		);
-		// Don't show SEO stats if disabled
-		if (!self::$settings->getGlobalOption('stats_seo'))
-			unset($arySortOrder['side']['seo']);
-			
-		foreach ($arySortOrder as $strCol => $aryWidgets) {
-			if (is_array($aryWidgets)) foreach ($aryWidgets as $strFile => $aryParams) {
-					$aryDashboard[$strCol][$strFile] = array(
-						'params' => array(
-							'title'	 => (isset($aryParams[0])?$aryParams[0]:$strFile),
-							'period' => (isset($aryParams[1])?$aryParams[1]:''),
-							'date'   => (isset($aryParams[2])?$aryParams[2]:''),
-							'limit'  => (isset($aryParams[3])?$aryParams[3]:'')
-						)
-					);
-					if (isset($_GET['date']) && preg_match('/^[0-9]{8}$/', $_GET['date']) && $strFile != 'visitors')
-						$aryDashboard[$strCol][$strFile]['params']['date'] = $_GET['date'];
-					elseif ($strFile != 'visitors') 
-						$aryDashboard[$strCol][$strFile]['params']['date'] = self::$settings->getGlobalOption('default_date');
-			}
-		}
-		$intSideBoxCnt = $intContentBox = 0;
-		foreach ($aryDashboard['side'] as $strFile => $aryConfig) {
-			$intSideBoxCnt++;
-			if (preg_match('/(\d{4})(\d{2})(\d{2})/', $aryConfig['params']['date'], $aryResult))
-				$strDate = $aryResult[1]."-".$aryResult[2]."-".$aryResult[3];
-			else $strDate = $aryConfig['params']['date'];
-			add_meta_box(
-				'wp-piwik_stats-sidebox-'.$intSideBoxCnt, 
-				$aryConfig['params']['title'].' '.($aryConfig['params']['title']!='SEO'?__($strDate, 'wp-piwik'):''), 
-				array(&$this, 'createDashboardWidget'), 
-				$this->intStatsPage, 
-				'side', 
-				'core',
-				array('strFile' => $strFile, 'aryConfig' => $aryConfig)
-			);
-		}
-		foreach ($aryDashboard['normal'] as $strFile => $aryConfig) {
-			if (preg_match('/(\d{4})(\d{2})(\d{2})/', $aryConfig['params']['date'], $aryResult))
-				$strDate = $aryResult[1]."-".$aryResult[2]."-".$aryResult[3];
-			else $strDate = $aryConfig['params']['date'];
-			$intContentBox++;
-			add_meta_box(
-				'wp-piwik_stats-contentbox-'.$intContentBox, 
-				$aryConfig['params']['title'].' '.($aryConfig['params']['title']!='SEO'?__($strDate, 'wp-piwik'):''),
-				array(&$this, 'createDashboardWidget'), 
-				$this->intStatsPage, 
-				'normal', 
-				'core',
-				array('strFile' => $strFile, 'aryConfig' => $aryConfig)
-			);
-		}
-	}
-	
-	// Open stats page as network admin
-	function showStatsNetwork() {
-		$this->bolNetwork = true;
-		$this->showStats();
-	}	
-	
-	function showStats() {
-		// Disabled time limit if required
-		if (self::$settings->getGlobalOption('disable_timelimit') && self::$settings->getGlobalOption('disable_timelimit')) 
-			set_time_limit(0);
-		//we need the global screen column value to be able to have a sidebar in WordPress 2.8
-		global $screen_layout_columns;
-		if (empty($screen_layout_columns)) $screen_layout_columns = 2;
-/***************************************************************************/ ?>
-<div id="wp-piwik-stats-general" class="wrap">
-	<?php screen_icon('options-general'); ?>
-	<h2><?php echo (self::$settings->getGlobalOption('plugin_display_name') == 'WP-Piwik'?'Piwik '.__('Statistics', 'wp-piwik'):self::$settings->getGlobalOption('plugin_display_name')); ?></h2>
-<?php /************************************************************************/
-		if (self::$settings->checkNetworkActivation() && function_exists('is_super_admin') && is_super_admin() && $this->bolNetwork) {
-			if (isset($_GET['wpmu_show_stats'])) {
-				switch_to_blog((int) $_GET['wpmu_show_stats']);
-				// TODO OPTIMIZE
-			} else {
-				$this->includeFile('settings/sitebrowser');
-				return;
-			}
-			echo '<p>'.__('Currently shown stats:').' <a href="'.get_bloginfo('url').'">'.(int) $_GET['wpmu_show_stats'].' - '.get_bloginfo('name').'</a>.'.' <a href="?page=wp-piwik_stats">Show site overview</a>.</p>'."\n";			
-			echo '</form>'."\n";
-		}
-/***************************************************************************/ ?>
-	<form action="admin-post.php" method="post">
-		<?php wp_nonce_field('wp-piwik_stats-general'); ?>
-		<?php wp_nonce_field('closedpostboxes', 'closedpostboxesnonce', false ); ?>
-		<?php wp_nonce_field('meta-box-order', 'meta-box-order-nonce', false ); ?>
-		<input type="hidden" name="action" value="save_wp-piwik_stats_general" />		
-		<div id="dashboard-widgets" class="metabox-holder columns-<?php echo $screen_layout_columns; ?><?php echo 2 <= $screen_layout_columns?' has-right-sidebar':''; ?>">
-				<div id='postbox-container-1' class='postbox-container'>
-					<?php $meta_boxes = do_meta_boxes($this->intStatsPage, 'normal', null); ?>	
-				</div>
-				
-				<div id='postbox-container-2' class='postbox-container'>
-					<?php do_meta_boxes($this->intStatsPage, 'side', null); ?>
-				</div>
-				
-				<div id='postbox-container-3' class='postbox-container'>
-					<?php do_meta_boxes($this->intStatsPage, 'column3', null); ?>
-				</div>
-				
-		</div>
-	</form>
-</div>
-<script type="text/javascript">
-	//<![CDATA[
-	jQuery(document).ready( function($) {
-		// close postboxes that should be closed
-		$('.if-js-closed').removeClass('if-js-closed').addClass('closed');
-		// postboxes setup
-		postboxes.add_postbox_toggles('<?php echo $this->intStatsPage; ?>');
-	});
-	//]]>
-</script>
-<?php /************************************************************************/
-		if (self::$settings->checkNetworkActivation() && function_exists('is_super_admin') && is_super_admin()) {
-			restore_current_blog();
-		}
-	}
-
-	/* Stats page changes by POST submit
-	   seen in Heiko Rabe's metabox demo plugin 
-	   http://tinyurl.com/5r5vnzs */
-	function onStatsPageSaveChanges() {
-		//user permission check
-		if ( !current_user_can('manage_options') )
-			wp_die( __('Cheatin&#8217; uh?') );			
-		//cross check the given referer
-		check_admin_referer('wp-piwik_stats');
-		//process here your on $_POST validation and / or option saving
-		//lets redirect the post request into get request (you may add additional params at the url, if you need to show save results
-		wp_redirect($_POST['_wp_http_referer']);		
-	}
-
-	/**
-	 * Add tabs to settings page
-	 * See http://wp.smashingmagazine.com/2011/10/20/create-tabs-wordpress-settings-pages/
-	 */
-	function showSettingsTabs($bolFull = true, $strCurr = 'homepage') {
-		$aryTabs = ($bolFull?array(
-			'homepage' => __('Home','wp-piwik'),
-			'piwik' => __('Piwik Settings','wp-piwik'),
-			'tracking' => __('Tracking','wp-piwik'),
-			'views' => __('Statistics','wp-piwik'),
-			'support' => __('Support','wp-piwik'),
-			'credits' => __('Credits','wp-piwik')
-		):array(
-			'piwik' => __('Piwik Settings','wp-piwik'),
-			'support' => __('Support','wp-piwik'),
-			'credits' => __('Credits','wp-piwik')
-		));
-		if (empty($strCurr)) $strCurr = 'homepage';
-		elseif (!isset($aryTabs[$strCurr]) && $strCurr != 'sitebrowser') $strCurr = 'piwik';
-		echo '<div id="icon-themes" class="icon32"><br></div>';
-		echo '<h2 class="nav-tab-wrapper">';
-		foreach($aryTabs as $strTab => $strName) {
-			$strClass = ($strTab == $strCurr?' nav-tab-active':'');
-			echo '<a class="nav-tab'.$strClass.'" href="?page=wp-piwik/classes/WP_Piwik.php&tab='.$strTab.'">'.$strName.'</a>';
-		}
-		echo '</h2>';
-		return $strCurr;
-	}
-		
-	/**
-	 * Apply & store new settings
-	 */
-	function applySettings() {
-		$strTab = (isset($_GET['tab'])?$_GET['tab']:'homepage');
-		self::$logger->log('Apply changes: '.$strTab);
-		switch ($strTab) {
-			case 'views':
-				self::$settings->setGlobalOption('plugin_display_name', (!empty($_POST['wp-piwik_displayname'])?htmlentities($_POST['wp-piwik_displayname']):'WP-Piwk'));
-				self::$settings->setGlobalOption('dashboard_widget',(isset($_POST['wp-piwik_dbwidget'])?$_POST['wp-piwik_dbwidget']:0));
-				self::$settings->setGlobalOption('dashboard_chart',(isset($_POST['wp-piwik_dbchart'])?$_POST['wp-piwik_dbchart']:false));
-				self::$settings->setGlobalOption('dashboard_seo',(isset($_POST['wp-piwik_dbseo'])?$_POST['wp-piwik_dbseo']:false));
-				self::$settings->setGlobalOption('stats_seo',(isset($_POST['wp-piwik_statsseo'])?$_POST['wp-piwik_statsseo']:false));
-				self::$settings->setGlobalOption('piwik_shortcut', (isset($_POST['wp-piwik_piwiklink'])?$_POST['wp-piwik_piwiklink']:false));
-				self::$settings->setGlobalOption('default_date', (isset($_POST['wp-piwik_default_date'])?$_POST['wp-piwik_default_date']:'yesterday'));
-				self::$settings->setGlobalOption('capability_read_stats', (isset($_POST['wp-piwik_displayto'])?$_POST['wp-piwik_displayto']:array()));
-				self::$settings->setGlobalOption('disable_timelimit', (isset($_POST['wp-piwik_disabletimelimit'])?$_POST['wp-piwik_disabletimelimit']:false));
-				self::$settings->setGlobalOption('toolbar', (isset($_POST['wp-piwik_toolbar'])?$_POST['wp-piwik_toolbar']:false));
-				self::$settings->setGlobalOption('shortcodes', (isset($_POST['wp-piwik_shortcodes'])?$_POST['wp-piwik_shortcodes']:false));
-				self::$settings->setGlobalOption('perpost_stats', (isset($_POST['wp-piwik_perpost'])?$_POST['wp-piwik_perpost']:false));
-			break;
-			case 'tracking':
-				self::$settings->setGlobalOption('add_tracking_code', (isset($_POST['wp-piwik_addjs'])?$_POST['wp-piwik_addjs']:false));
-				self::$settings->setGlobalOption('track_404', (isset($_POST['wp-piwik_404'])?$_POST['wp-piwik_404']:false));
-				self::$settings->setGlobalOption('track_search', (isset($_POST['wp-piwik_search'])?$_POST['wp-piwik_search']:false));
-				self::$settings->setGlobalOption('track_mode', (isset($_POST['wp-piwik_trackingmode'])?(int)$_POST['wp-piwik_trackingmode']:0));
-				self::$settings->setGlobalOption('track_post', (isset($_POST['wp-piwik_reqpost'])?$_POST['wp-piwik_reqpost']:false));
-				self::$settings->setGlobalOption('track_proxy', (isset($_POST['wp-piwik_proxy'])?$_POST['wp-piwik_proxy']:false));
-				self::$settings->setGlobalOption('track_cdnurl', trim(isset($_POST['wp-piwik_cdnurl'])?$_POST['wp-piwik_cdnurl']:''));				
-				self::$settings->setGlobalOption('track_cdnurlssl', trim(isset($_POST['wp-piwik_cdnurlssl'])?$_POST['wp-piwik_cdnurlssl']:self::$settings->getGlobalOption('track_cdnurl')));
-				self::$settings->setGlobalOption('track_noscript', (isset($_POST['wp-piwik_noscript'])?$_POST['wp-piwik_noscript']:false));
-				self::$settings->setGlobalOption('track_codeposition', (isset($_POST['wp-piwik_codeposition'])?$_POST['wp-piwik_codeposition']:'footer'));
-				self::$settings->setGlobalOption('track_nojavascript', (isset($_POST['wp-piwik_nojavascript'])?$_POST['wp-piwik_nojavascript']:false));
-				self::$settings->setGlobalOption('track_admin', (isset($_POST['wp-piwik_trackadmin'])?$_POST['wp-piwik_trackadmin']:false));
-				self::$settings->setGlobalOption('track_feed', (isset($_POST['wp-piwik_trackfeed'])?$_POST['wp-piwik_trackfeed']:false));
-				self::$settings->setGlobalOption('track_feed_goal', (isset($_POST['wp-piwik_trackfeed_goal'])&&!empty($_POST['wp-piwik_trackfeed_goal'])?(int)$_POST['wp-piwik_trackfeed_goal']:''));
-				self::$settings->setGlobalOption('track_feed_revenue', (isset($_POST['wp-piwik_trackfeed_revenue'])&&!empty($_POST['wp-piwik_trackfeed_revenue'])?(int)$_POST['wp-piwik_trackfeed_revenue']:''));
-				self::$settings->setGlobalOption('track_feed_campaign', (isset($_POST['wp-piwik_trackfeed_campaign'])?$_POST['wp-piwik_trackfeed_campaign']:'feed'));
-				self::$settings->setGlobalOption('track_feed_addcampaign', (isset($_POST['wp-piwik_trackfeed_addcampaign'])?$_POST['wp-piwik_trackfeed_addcampaign']:false));
-				self::$settings->setGlobalOption('track_datacfasync', (isset($_POST['wp-piwik_datacfasync'])?$_POST['wp-piwik_datacfasync']:false));
-				self::$settings->setGlobalOption('track_across', (isset($_POST['wp-piwik_track_across'])?$_POST['wp-piwik_track_across']:false));
-				self::$settings->setGlobalOption('add_post_annotations', (isset($_POST['wp-piwik_annotations'])?$_POST['wp-piwik_annotations']:false));
-				self::$settings->setGlobalOption('add_customvars_box', (isset($_POST['wp-piwik_customvars'])?$_POST['wp-piwik_customvars']:false));
-				self::$settings->setGlobalOption('capability_stealth', (isset($_POST['wp-piwik_filter'])?$_POST['wp-piwik_filter']:array()));
-				self::$settings->setGlobalOption('disable_cookies', (isset($_POST['wp-piwik_disable_cookies'])?$_POST['wp-piwik_disable_cookies']:false));
-				self::$settings->setGlobalOption('limit_cookies', (isset($_POST['wp-piwik_limit_cookies'])?$_POST['wp-piwik_limit_cookies']:false));
-				self::$settings->setGlobalOption('limit_cookies_visitor', (isset($_POST['wp-piwik_limit_cookies_visitor'])?(int)$_POST['wp-piwik_limit_cookies_visitor']:1209600));
-				self::$settings->setGlobalOption('limit_cookies_session', (isset($_POST['wp-piwik_limit_cookies_session'])?(int)$_POST['wp-piwik_limit_cookies_session']:0));
-				self::$settings->setOption('tracking_code', $this->callPiwikAPI('SitesManager.getJavascriptTag'));
-			break;
-			case 'piwik':
-				self::$settings->setGlobalOption('piwik_token', (isset($_POST['wp-piwik_token'])?$_POST['wp-piwik_token']:''));
-				self::$settings->setGlobalOption('piwik_url', self::checkURL((isset($_POST['wp-piwik_url'])?$_POST['wp-piwik_url']:'')));
-				self::$settings->setGlobalOption('piwik_path', (isset($_POST['wp-piwik_path']) && !empty($_POST['wp-piwik_path'])?realpath($_POST['wp-piwik_path']):''));
-				self::$settings->setGlobalOption('cache', (isset($_POST['wp-piwik_cache'])?$_POST['wp-piwik_cache']:false));
-				self::$settings->setGlobalOption('piwik_mode', (isset($_POST['wp-piwik_mode'])?$_POST['wp-piwik_mode']:'http'));
-				self::$settings->setGlobalOption('piwik_useragent', (isset($_POST['wp-piwik_useragent'])?$_POST['wp-piwik_useragent']:'php'));
-				self::$settings->setGlobalOption('connection_timeout', (isset($_POST['wp-piwik_timeout'])?(int)$_POST['wp-piwik_timeout']:5));
-				self::$settings->setGlobalOption('piwik_useragent_string', (isset($_POST['wp-piwik_useragent_string'])?$_POST['wp-piwik_useragent_string']:'WP-Piwik'));
-				self::$settings->setGlobalOption('disable_ssl_verify', (isset($_POST['wp-piwik_disable_ssl_verify'])?$_POST['wp-piwik_disable_ssl_verify']:false));
-				if (!self::$settings->checkNetworkActivation()) {
-					self::$settings->setGlobalOption('auto_site_config', (isset($_POST['wp-piwik_auto_site_config'])?$_POST['wp-piwik_auto_site_config']:false));
-					if (!self::$settings->getGlobalOption('auto_site_config'))
-						self::$settings->setOption('site_id', (isset($_POST['wp-piwik_siteid'])?$_POST['wp-piwik_siteid']:self::$settings->getOption('site_id')));
-				} else self::$settings->setGlobalOption('auto_site_config', true);
-			break;
-		}
-		if (self::$settings->getGlobalOption('auto_site_config') && self::isConfigured()) {
-			if (self::$settings->getGlobalOption('piwik_mode') == 'php' && !defined('PIWIK_INCLUDE_PATH')) 
-				self::definePiwikConstants();
-			$aryReturn = $this->addPiwikSite();
-			self::$settings->getOption('tracking_code', $aryReturn['js']);
-			self::$settings->getOption('site_id', $aryReturn['id']);
-		}
-		self::$settings->setGlobalOption('last_settings_update', time());
-	}
-
-	/**
-	 * Check & prepare URL
-	 */
-	static function checkURL($strURL) {
-		if (empty($strURL)) return '';
-		if (substr($strURL, -1, 1) != '/' && substr($strURL, -10, 10) != '/index.php') 
-			$strURL .= '/';
-		return $strURL;
-	}
-	
-	/**
-	 * Show settings page
-	 */
-	function showSettings() {
-		// Define globals and get request vars
-		global $pagenow;
-		$strTab = (isset($_GET['tab'])?$_GET['tab']:'homepage');
-		// Show update message if stats saved
-		if (isset($_POST['wp-piwik_settings_submit']) && $_POST['wp-piwik_settings_submit'] == 'Y')
-			echo '<div id="message" class="updated fade"><p>'.__('Changes saved','wp-piwik').'</p></div>';
-		// Show settings page title
-		echo '<div class="wrap"><h2>'.self::$settings->getGlobalOption('plugin_display_name').' '.__('Settings', 'wp-piwik').'</h2>';
-		// Show tabs
-		$strTab = $this->showSettingsTabs(self::isConfigured(), $strTab);
-		if ($strTab != 'sitebrowser') {
-/***************************************************************************/ ?>
-		<div class="wp-piwik-donate">
-			<p><strong><?php _e('Donate','wp-piwik'); ?></strong></p>
-			<p><?php _e('If you like WP-Piwik, you can support its development by a donation:', 'wp-piwik'); ?></p>
-			<div>
-				<script type="text/javascript">
-					var flattr_url = 'http://www.braekling.de/wp-piwik-wpmu-piwik-wordpress';
-				</script>
-				<script src="http<?php echo (self::isSSL()?'s':''); ?>://api.flattr.com/button/load.js" type="text/javascript"></script>
-			</div>
-			<div>Paypal
-				<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
-					<input type="hidden" name="cmd" value="_s-xclick" />
-					<input type="hidden" name="hosted_button_id" value="6046779" />
-					<input type="image" src="https://www.paypal.com/en_GB/i/btn/btn_donateCC_LG.gif" name="submit" alt="PayPal - The safer, easier way to pay online." />
-					<img alt="" border="0" src="https://www.paypal.com/de_DE/i/scr/pixel.gif" width="1" height="1" />
-				</form>
-			</div>
-			<div>
-				<a href="http://www.amazon.de/gp/registry/wishlist/111VUJT4HP1RA?reveal=unpurchased&amp;filter=all&amp;sort=priority&amp;layout=standard&amp;x=12&amp;y=14"><?php _e('My Amazon.de wishlist', 'wp-piwik'); ?></a>
-			</div>
-			<div>
-				<?php _e('Please don\'t forget to vote the compatibility at the','wp-piwik'); ?> <a href="http://wordpress.org/extend/plugins/wp-piwik/">WordPress.org Plugin Directory</a>. 
-			</div>
-		</div>
-<?php /***************************************************************************/
-		}
-		echo '<form class="'.($strTab != 'sitebrowser'?'wp-piwik-settings':'').'" method="post" action="'.admin_url(($pagenow == 'settings.php'?'network/':'').$pagenow.'?page=wp-piwik/classes/WP_Piwik.php&tab='.$strTab).'">';
-		echo '<input type="hidden" name="action" value="save_wp-piwik_settings" />';
-		wp_nonce_field('wp-piwik_settings');
-		// Show settings
-		if (($pagenow == 'options-general.php' || $pagenow == 'settings.php') && $_GET['page'] == 'wp-piwik/classes/WP_Piwik.php') {
-			echo '<table class="wp-piwik-form-table form-table">';
-			// Get tab contents
-			$this->includeFile('settings/'.$strTab);
-		// Show submit button
-			if (!in_array($strTab, array('homepage','credits','support','sitebrowser')))
-				echo '<tr><td><p class="submit" style="clear: both;padding:0;margin:0"><input type="submit" name="Submit"  class="button-primary" value="'.__('Save settings', 'wp-piwik').'" /><input type="hidden" name="wp-piwik_settings_submit" value="Y" /></p></td></tr>';
-			echo '</table>';
-		}
-		// Close form
-		echo '</form></div>';
-	}
-
-	/**
-	 * Check if SSL is used
-	 */
-	private static function isSSL() {
-		return (isset($_SERVER['HTTPS']) && !empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] != 'off');
-	}
-
-	/**
-	 * Show an error message extended by a support site link
-	 */
-	private static function showErrorMessage($strMessage) {
-		echo '<strong class="wp-piwik-error">'.__('An error occured', 'wp-piwik').':</strong> '.$strMessage.' [<a href="'.(self::$settings->checkNetworkActivation()?'network/settings':'options-general').'.php?page=wp-piwik/classes/WP_Piwik.php&tab=support">'.__('Support','wp-piwik').'</a>]';
-	}
-
-	/**
-	 * Read a RSS feed
-	 */
-	private static function readRSSFeed($strFeedURL, $intCount = 5) {
- 		$aryResult = array();
-		if (function_exists('simplexml_load_file') && !empty($strFeedURL)) {
-			$objXML = @simplexml_load_file($strFeedURL);
-			if (empty($strFeedURL) || !$objXML || !isset($objXML->channel[0]->item))
-				return array(array('title' => 'Can\'t read RSS feed.','url' => $strFeedURL));
- 			foreach($objXML->channel[0]->item as $objItem) {
-				if( $intCount-- == 0 ) break;
-				$aryResult[] = array('title' => $objItem->title[0], 'url' => $objItem->link[0]);
-			}
-		}
-		return $aryResult;
-	}
-
-	/**
-	 * Execute test script
-	 */
-	private static function loadTestscript() {
-		require_once('../debug/testscript.php');
-	}
-	
-	/**
-	 * Get a blog's piwik ID
-	 */
-	public static function getSiteID($intBlogID = null) {
-		$intResult = self::$settings->getOption('site_id');
-		if (self::$settings->checkNetworkActivation() && !empty($intBlogID)) {
-			$aryResult = get_blog_option($intBlogID, 'wp-piwik_settings');
-			$intResult = $aryResult['site_id'];
-		}
-		return (is_int($intResult)?$intResult:'n/a');
-	}
-
-	public static function isConfigured() {
-		return (
-			self::$settings->getGlobalOption('piwik_token') 
-			&& (
-				(
-					(self::$settings->getGlobalOption('piwik_mode') == 'http') && (self::$settings->getGlobalOption('piwik_url'))
-				) || (
-					(self::$settings->getGlobalOption('piwik_mode') == 'php') && (self::$settings->getGlobalOption('piwik_path'))
-				)
-			)
-		);
-	}
-		
-	private function isUpdated() {
-		return self::$settings->getGlobalOption('revision') && self::$settings->getGlobalOption('revision') < self::$intRevisionId;
-	}
-	
-	private function isConfigSubmitted() {
-		return isset($_POST['action']) && $_POST['action'] == 'save_wp-piwik_settings';
-	}
-	
-	private function isPHPMode() {
-		return self::$settings->getGlobalOption('piwik_mode') && self::$settings->getGlobalOption('piwik_mode') == 'php';
-	}
-	
-	private function isNetworkMode() {
-		return self::$settings->checkNetworkActivation();
-	}
-	
-	private function isDashboardActive() {
-		return self::$settings->getGlobalOption('dashboard_widget') || self::$settings->getGlobalOption('dashboard_chart') || self::$settings->getGlobalOption('dashboard_seo');
-	}
-	
-	private function isToolbarActive() {
-		return self::$settings->getGlobalOption('toolbar');
-	}
-	
-	private function isTrackingActive() {
-		return self::$settings->getGlobalOption('add_tracking_code');
-	}
-	
-	private function isAdminTrackingActive() {
-		return self::$settings->getGlobalOption('track_admin');
-	}
-	
-	private function isAddNoScriptCode() {
-		return self::$settings->getGlobalOption('track_noscript');
-	}
-	
-	private function isTrackFeed() {
-		return self::$settings->getGlobalOption('track_feed');
-	}
-	
-	private function isAddFeedCampaign() {
-		return self::$settings->getGlobalOption('track_feed_addcampaign');
-	}
-	
-	private function isAddShortcode() {
-		return self::$settings->getGlobalOption('shortcodes');
-	}
-
-	private static function definePiwikConstants() {
-		define('PIWIK_INCLUDE_PATH', self::$settings->getGlobalOption('piwik_path'));
-		define('PIWIK_USER_PATH', self::$settings->getGlobalOption('piwik_path'));
-		define('PIWIK_ENABLE_DISPATCH', false);
-		define('PIWIK_ENABLE_ERROR_HANDLER', false);
-		define('PIWIK_ENABLE_SESSION_START', false);
-	}
-	
-	private function openLogger() {
-		switch (WP_PIWIK_ACTIVATE_LOGGER) {
-			case 2:
-				require_once('WP_Piwik_Logger_File.php');
-				self::$logger = new WP_Piwik_Logger_File(__CLASS__);
-			break;
-			default:
-				require_once('WP_Piwik_Logger_Dummy.php');
-				self::$logger = new WP_Piwik_Logger_Dummy(__CLASS__);
-		}
-	}
-
-	private function closeLogger() {
-		self::$logger = null;
-	}
-
-	private function openSettings() {
-		$this->includeFile('classes/WP_Piwik_Settings');
-		self::$settings = new WP_Piwik_Settings(self::$logger);
-	}
-
-	private function subClassConfig() {
-		return array(
-			'wp_piwik' => $this,
-			'logger' => self::$logger,
-			'settings' => self::$settings
-		);
-	}
-	
-	private function includeFile($strFile) {
-		self::$logger->log('Include '.$strFile.'.php');
-		if (file_exists(dirname(__FILE__).DIRECTORY_SEPARATOR.'..'.DIRECTORY_SEPARATOR.$strFile.'.php'))
-			include(dirname(__FILE__).DIRECTORY_SEPARATOR.'..'.DIRECTORY_SEPARATOR.$strFile.'.php');
-	}
-	
-	private function isHiddenUser() {
-		if (is_multisite())
-			foreach (self::$settings->getGlobalOption('capability_stealth') as $key => $val)
-				if ($val && current_user_can($key)) return true;
-		return current_user_can('wp-piwik_stealth');
-	}
-	
-	private function isCurrentTrackingCode() {
-		return (self::$settings->getOption('last_tracking_code_update') < self::$settings->getGlobalOption('last_settings_update'));
-	}
-	
-	function site_header() {
-		self::$logger->log('Using deprecated function site_header');
-		$this->addJavascriptCode();
-	}
-	
-	function site_footer() {
-		self::$logger->log('Using deprecated function site_footer');
-		$this->addNoscriptCode();
-	}
-	
-	private function onPostStatusTransition($newStatus, $oldStatus = 'false', $post = null) {
-		if ($newStatus == 'publish' && $oldStatus != 'publish' ) {
-			add_action('publish_post', array($this, 'addPiwikAnnotation'));
-		}
-	}
-	
+<?php
+
+/**
+ * The main WP-Piwik class configures, registers and manages the plugin
+ *
+ * @author Andr&eacute; Br&auml;kling <webmaster@braekling.de>
+ * @package WP_Piwik
+ */
+class WP_Piwik {
+
+	/**
+	 *
+	 * @var Runtime environment variables
+	 */
+	private static $revisionId = 2015072101, $version = '1.0.3', $blog_id, $pluginBasename = NULL, $logger, $settings, $request;
+
+	/**
+	 * Constructor class to configure and register all WP-Piwik components
+	 */
+	public function __construct() {
+		global $blog_id;
+		self::$blog_id = (isset ( $blog_id ) ? $blog_id : 'n/a');
+		$this->openLogger ();
+		$this->openSettings ();
+		$this->setup ();
+		$this->addFilters ();
+		$this->addActions ();
+		$this->addShortcodes ();
+	}
+
+	/**
+	 * Destructor class to finish logging
+	 */
+	public function __destruct() {
+		$this->closeLogger ();
+	}
+
+	/**
+	 * Setup class to prepare settings and check for installation and update
+	 */
+	private function setup() {
+		self::$pluginBasename = plugin_basename ( __FILE__ );
+		if (! $this->isInstalled ())
+			$this->installPlugin ();
+		elseif ($this->isUpdated ())
+			$this->updatePlugin ();
+		if ($this->isConfigSubmitted ())
+			$this->applySettings ();
+		self::$settings->save ();
+	}
+
+	/**
+	 * Register WordPress actions
+	 */
+	private function addActions() {
+		if ( is_admin () ) {
+			add_action ( 'admin_menu', array (
+					$this,
+					'buildAdminMenu'
+			) );
+			add_action ( 'admin_post_save_wp-piwik_stats', array (
+					$this,
+					'onStatsPageSaveChanges'
+			) );
+			add_action ( 'load-post.php', array (
+					$this,
+					'addPostMetaboxes'
+			) );
+			add_action ( 'load-post-new.php', array (
+					$this,
+					'addPostMetaboxes'
+			) );
+			if ($this->isNetworkMode ()) {
+				add_action ( 'network_admin_notices', array (
+						$this,
+						'showNotices'
+				) );
+				add_action ( 'network_admin_menu', array (
+						$this,
+						'buildNetworkAdminMenu'
+				) );
+				add_action ( 'update_site_option_blogname', array (
+						$this,
+						'onBlogNameChange'
+				) );
+				add_action ( 'update_site_option_siteurl', array (
+						$this,
+						'onSiteUrlChange'
+				) );
+			} else {
+				add_action ( 'admin_notices', array (
+						$this,
+						'showNotices'
+				) );
+				add_action ( 'update_option_blogname', array (
+						$this,
+						'onBlogNameChange'
+				) );
+				add_action ( 'update_option_siteurl', array (
+						$this,
+						'onSiteUrlChange'
+				) );
+			}
+			if ($this->isDashboardActive ())
+				add_action ( 'wp_dashboard_setup', array (
+						$this,
+						'extendWordPressDashboard'
+				) );
+			if (self::$settings->getGlobalOption ( 'add_post_annotations' ))
+				add_action ( 'transition_post_status', array (
+						$this,
+						'onPostStatusTransition'
+				), 10, 3 );
+		}
+		if ($this->isToolbarActive ()) {
+			add_action ( is_admin () ? 'admin_head' : 'wp_head', array (
+					$this,
+					'loadToolbarRequirements'
+			) );
+			add_action ( 'admin_bar_menu', array (
+					$this,
+					'extendWordPressToolbar'
+			), 1000 );
+		}
+		if ($this->isTrackingActive ()) {
+			if ( !is_admin () ) {
+				add_action ( self::$settings->getGlobalOption ( 'track_codeposition' ) == 'footer' ? 'wp_footer' : 'wp_head', array (
+						$this,
+						'addJavascriptCode'
+					) );
+				if ($this->isAddNoScriptCode ())
+					add_action ( 'wp_footer', array (
+							$this,
+							'addNoscriptCode'
+					) );
+			} else if ($this->isAdminTrackingActive ())
+				add_action ( self::$settings->getGlobalOption ( 'track_codeposition' ) == 'footer' ? 'admin_footer' : 'admin_head', array (
+						$this,
+						'addJavascriptCode'
+				) );
+		}
+	}
+
+	/**
+	 * Register WordPress filters
+	 */
+	private function addFilters() {
+		if (is_admin()) {
+			add_filter ( 'plugin_row_meta', array (
+					$this,
+					'setPluginMeta'
+			), 10, 2 );
+			add_filter ( 'screen_layout_columns', array (
+					$this,
+					'onScreenLayoutColumns'
+			), 10, 2 );
+		} elseif ($this->isTrackingActive ()) {
+			if ($this->isTrackFeed ()) {
+				add_filter ( 'the_excerpt_rss', array (
+						$this,
+						'addFeedTracking'
+				) );
+				add_filter ( 'the_content', array (
+						$this,
+						'addFeedTracking'
+				) );
+			}
+			if ($this->isAddFeedCampaign ())
+				add_filter ( 'post_link', array (
+						$this,
+						'addFeedCampaign'
+				) );
+		}
+	}
+
+	/**
+	 * Register WordPress shortcodes
+	 */
+	private function addShortcodes() {
+		if ($this->isAddShortcode ())
+			add_shortcode ( 'wp-piwik', array (
+					$this,
+					'shortcode'
+			) );
+	}
+
+	/**
+	 * Install WP-Piwik for the first time
+	 */
+	private function installPlugin($isUpdate = false) {
+		self::$logger->log ( 'Running WP-Piwik installation' );
+		if (! $isUpdate)
+			$this->addNotice ( 'install', sprintf ( __ ( '%s %s installed.', 'wp-piwik' ), self::$settings->getGlobalOption ( 'plugin_display_name' ), self::$version ), __ ( 'Next you should connect to Piwik', 'wp-piwik' ) );
+		self::$settings->setGlobalOption ( 'revision', self::$revisionId );
+		self::$settings->setGlobalOption ( 'last_settings_update', time () );
+	}
+
+	/**
+	 * Uninstall WP-Piwik
+	 */
+	public static function uninstallPlugin() {
+		self::$logger->log ( 'Running WP-Piwik uninstallation' );
+		if (! defined ( 'WP_UNINSTALL_PLUGIN' ))
+			exit ();
+		$this->deleteWordPressOption ( 'wp-piwik-notices' );
+		self::$settings->resetSettings ( true );
+	}
+
+	/**
+	 * Update WP-Piwik
+	 */
+	private function updatePlugin() {
+		self::$logger->log ( 'Upgrade WP-Piwik to ' . self::$version );
+		$patches = glob ( dirname ( __FILE__ ) . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . 'update' . DIRECTORY_SEPARATOR . '*.php' );
+		$isPatched = false;
+		if (is_array ( $patches )) {
+			sort ( $patches );
+			foreach ( $patches as $patch ) {
+				$patchVersion = ( int ) pathinfo ( $patch, PATHINFO_FILENAME );
+				if ($patchVersion && self::$settings->getGlobalOption ( 'revision' ) < $patchVersion) {
+					self::includeFile ( 'update' . DIRECTORY_SEPARATOR . $patchVersion );
+					$isPatched = true;
+				}
+			}
+		}
+		if ((self::$settings->getGlobalOption('update_notice') == 'enabled') || ((self::$settings->getGlobalOption('update_notice') == 'script') && $isPatched))
+			$this->addNotice ( 'update', sprintf ( __ ( '%s updated to %s.', 'wp-piwik' ), self::$settings->getGlobalOption ( 'plugin_display_name' ), self::$version ), __ ( 'Please validate your configuration', 'wp-piwik' ) );
+		$this->installPlugin ( true );
+	}
+
+	/**
+	 * Define a notice
+	 *
+	 * @param string $type
+	 *        	identifier
+	 * @param string $subject
+	 *        	notice headline
+	 * @param string $text
+	 *        	notice content
+	 * @param boolean $stay
+	 *        	set to true if the message should persist (default: false)
+	 */
+	private function addNotice($type, $subject, $text, $stay = false) {
+		$notices = $this->getWordPressOption ( 'wp-piwik-notices', array () );
+		$notices [$type] = array (
+				'subject' => $subject,
+				'text' => $text,
+				'stay' => $stay
+		);
+		$this->updateWordPressOption ( 'wp-piwik-notices', $notices );
+	}
+
+	/**
+	 * Show all notices defined previously
+	 *
+	 * @see addNotice()
+	 */
+	public function showNotices() {
+		$link = sprintf ( '<a href="' . $this->getSettingsURL () . '">%s</a>', __ ( 'Settings', 'wp-piwik' ) );
+		if ($notices = $this->getWordPressOption ( 'wp-piwik-notices' )) {
+			foreach ( $notices as $type => $notice ) {
+				printf ( '<div class="updated fade"><p>%s <strong>%s:</strong> %s: %s</p></div>', $notice ['subject'], __ ( 'Important', 'wp-piwik' ), $notice ['text'], $link );
+				if (! $notice ['stay'])
+					unset ( $notices [$type] );
+			}
+		}
+		$this->updateWordPressOption ( 'wp-piwik-notices', $notices );
+	}
+
+	/**
+	 * Get the settings page URL
+	 *
+	 * @return string settings page URL
+	 */
+	private function getSettingsURL() {
+		return (self::$settings->checkNetworkActivation () ? 'settings' : 'options-general') . '.php?page=' . self::$pluginBasename;
+	}
+
+	/**
+	 * Echo javascript tracking code
+	 */
+	public function addJavascriptCode() {
+		if ($this->isHiddenUser ()) {
+			self::$logger->log ( 'Do not add tracking code to site (user should not be tracked) Blog ID: ' . self::$blog_id . ' Site ID: ' . self::$settings->getOption ( 'site_id' ) );
+			return;
+		}
+		$trackingCode = new WP_Piwik\TrackingCode ( $this );
+		$trackingCode->is404 = (is_404 () && self::$settings->getGlobalOption ( 'track_404' ));
+		$trackingCode->isSearch = (is_search () && self::$settings->getGlobalOption ( 'track_search' ));
+		self::$logger->log ( 'Add tracking code. Blog ID: ' . self::$blog_id . ' Site ID: ' . self::$settings->getOption ( 'site_id' ) );
+		if ($this->isNetworkMode () && self::$settings->getGlobalOption ( 'track_mode' ) == 'manually') {
+			$siteId = $this->getPiwikSiteId ();
+			if ($siteId != 'n/a')
+				echo str_replace ( '{ID}', $siteId, $trackingCode->getTrackingCode () );
+			else
+				echo '<!-- Site will be created and tracking code added on next request -->';
+		} else
+			echo $trackingCode->getTrackingCode ();
+	}
+
+	/**
+	 * Echo noscript tracking code
+	 */
+	public function addNoscriptCode() {
+		if (self::$settings->getGlobalOption ( 'track_mode' ) == 'proxy')
+			return;
+		if ($this->isHiddenUser ()) {
+			self::$logger->log ( 'Do not add noscript code to site (user should not be tracked) Blog ID: ' . self::$blog_id . ' Site ID: ' . self::$settings->getOption ( 'site_id' ) );
+			return;
+		}
+		self::$logger->log ( 'Add noscript code. Blog ID: ' . self::$blog_id . ' Site ID: ' . self::$settings->getOption ( 'site_id' ) );
+		echo self::$settings->getOption ( 'noscript_code' ) . "\n";
+	}
+
+	/**
+	 * Register post view meta boxes
+	 */
+	public function addPostMetaboxes() {
+		if (self::$settings->getGlobalOption ( 'add_customvars_box' )) {
+			add_action ( 'add_meta_boxes', array (
+					new WP_Piwik\Template\MetaBoxCustomVars ( $this, self::$settings ),
+					'addMetabox'
+			) );
+			add_action ( 'save_post', array (
+					new WP_Piwik\Template\MetaBoxCustomVars ( $this, self::$settings ),
+					'saveCustomVars'
+			), 10, 2 );
+		}
+		if (self::$settings->getGlobalOption ( 'perpost_stats' )) {
+			add_action ( 'add_meta_boxes', array (
+					$this,
+					'onloadPostPage'
+			) );
+		}
+	}
+
+	/**
+	 * Register admin menu components
+	 */
+	public function buildAdminMenu() {
+		if (self::isConfigured ()) {
+			$cap = 'wp-piwik_read_stats';
+			if (self::$settings->checkNetworkActivation ()) {
+				global $current_user;
+				$userRoles = $current_user->roles;
+				$allowed = self::$settings->getGlobalOption ( 'capability_read_stats' );
+				if (is_array($userRoles) && is_array($allowed)) 
+					foreach ($userRoles as $userRole)
+						if (isset( $allowed[$userRole] ) && $allowed[$userRole]) {
+							$cap = 'read';
+							break;
+						}
+			}
+			$statsPage = new WP_Piwik\Admin\Statistics ( $this, self::$settings );
+			$this->statsPageId = add_dashboard_page ( __ ( 'Piwik Statistics', 'wp-piwik' ), self::$settings->getGlobalOption ( 'plugin_display_name' ), $cap, 'wp-piwik_stats', array (
+					$statsPage,
+					'show'
+			) );
+			$this->loadAdminStatsHeader ( $this->statsPageId, $statsPage );
+		}
+		if (! self::$settings->checkNetworkActivation ()) {
+			$optionsPage = new WP_Piwik\Admin\Settings ( $this, self::$settings );
+			$optionsPageId = add_options_page ( self::$settings->getGlobalOption ( 'plugin_display_name' ), self::$settings->getGlobalOption ( 'plugin_display_name' ), 'activate_plugins', __FILE__, array (
+					$optionsPage,
+					'show'
+			) );
+			$this->loadAdminSettingsHeader ( $optionsPageId, $optionsPage );
+		}
+	}
+
+	/**
+	 * Register network admin menu components
+	 */
+	public function buildNetworkAdminMenu() {		
+		if (self::isConfigured ()) {
+			$statsPage = new WP_Piwik\Admin\Network ( $this, self::$settings );
+			$this->statsPageId = add_dashboard_page ( __ ( 'Piwik Statistics', 'wp-piwik' ), self::$settings->getGlobalOption ( 'plugin_display_name' ), 'manage_sites', 'wp-piwik_stats', array (
+					$statsPage,
+					'show'
+			) );
+			$this->loadAdminStatsHeader ( $this->statsPageId, $statsPage );
+		}
+		$optionsPage = new WP_Piwik\Admin\Settings ( $this, self::$settings );
+		$optionsPageId = add_submenu_page ( 'settings.php', self::$settings->getGlobalOption ( 'plugin_display_name' ), self::$settings->getGlobalOption ( 'plugin_display_name' ), 'manage_sites', __FILE__, array (
+				$optionsPage,
+				'show'
+		) );
+		$this->loadAdminSettingsHeader ( $optionsPageId, $optionsPage );
+	}
+
+	/**
+	 * Register admin header extensions for stats page
+	 *
+	 * @param $optionsPageId options
+	 *        	page id
+	 * @param $optionsPage options
+	 *        	page object
+	 */
+	public function loadAdminStatsHeader($statsPageId, $statsPage) {
+		add_action ( 'admin_print_scripts-' . $statsPageId, array (
+				$statsPage,
+				'printAdminScripts'
+		) );
+		add_action ( 'admin_print_styles-' . $statsPageId, array (
+				$statsPage,
+				'printAdminStyles'
+		) );
+		add_action ( 'admin_head-' . $statsPageId, array (
+				$statsPage,
+				'extendAdminHeader'
+		) );
+		add_action ( 'load-' . $statsPageId, array (
+				$this,
+				'onloadStatsPage'
+		) );
+	}
+
+	/**
+	 * Register admin header extensions for settings page
+	 *
+	 * @param $optionsPageId options
+	 *        	page id
+	 * @param $optionsPage options
+	 *        	page object
+	 */
+	public function loadAdminSettingsHeader($optionsPageId, $optionsPage) {
+		add_action ( 'admin_head-' . $optionsPageId, array (
+				$optionsPage,
+				'extendAdminHeader'
+		) );
+		add_action ( 'admin_print_styles-' . $optionsPageId, array (
+				$optionsPage,
+				'printAdminStyles'
+		) );
+	}
+
+	/**
+	 * Register WordPress dashboard widgets
+	 */
+	public function extendWordPressDashboard() {
+		if (current_user_can ( 'wp-piwik_read_stats' )) {
+			if (self::$settings->getGlobalOption ( 'dashboard_widget' ) != 'disabled')
+				new WP_Piwik\Widget\Overview ( $this, self::$settings, 'dashboard', 'side', 'default', array (
+						'date' => self::$settings->getGlobalOption ( 'dashboard_widget' ),
+						'period' => 'day'
+				) );
+			if (self::$settings->getGlobalOption ( 'dashboard_chart' ))
+				new WP_Piwik\Widget\Chart ( $this, self::$settings );
+			if (self::$settings->getGlobalOption ( 'dashboard_seo' ))
+				new WP_Piwik\Widget\Seo ( $this, self::$settings );
+		}
+	}
+
+	/**
+	 * Register WordPress toolbar components
+	 */
+	public function extendWordPressToolbar($toolbar) {
+		if (current_user_can ( 'wp-piwik_read_stats' ) && is_admin_bar_showing ()) {
+			$id = WP_Piwik\Request::register ( 'VisitsSummary.getUniqueVisitors', array (
+					'period' => 'day',
+					'date' => 'last30'
+			) );
+			$unique = $this->request ( $id );
+			$url = is_network_admin () ? $this->getSettingsURL () : false;
+			$content = is_network_admin () ? __('Configure WP-Piwik', 'wp-piwik') : '';
+			// Leave if result array does contain a message instead of valid data
+			if (isset($unique['result']))
+				$content .= '<!-- '.$unique['result'].': '.($unique['message']?$unique['message']:'...').' -->';
+			elseif (is_array ( $unique ) ) {
+				$content = "<script type='text/javascript'>var \$jSpark = jQuery.noConflict();\$jSpark(function() {var piwikSparkVals=[" . implode ( ',', $unique ) . "];\$jSpark('.wp-piwik_dynbar').sparkline(piwikSparkVals, {type: 'bar', barColor: '#ccc', barWidth:2});});</script><span class='wp-piwik_dynbar'>Loading...</span>";
+				$url = $this->getStatsURL ();
+			}
+			$toolbar->add_menu ( array (
+				'id' => 'wp-piwik_stats',
+				'title' => $content,
+				'href' => $url
+			) );
+		}
+	}
+
+	/**
+	 * Add plugin meta data
+	 *
+	 * @param array $links
+	 *        	list of already defined plugin meta data
+	 * @param string $file
+	 *        	handled file
+	 * @return array complete list of plugin meta data
+	 */
+	public function setPluginMeta($links, $file) {
+		if ($file == 'wp-piwik/wp-piwik.php')
+			return array_merge ( $links, array (
+					sprintf ( '<a href="%s">%s</a>', self::getSettingsURL (), __ ( 'Settings', 'wp-piwik' ) )
+			) );
+		return $links;
+	}
+
+	/**
+	 * Prepare toolbar widget requirements
+	 */
+	public function loadToolbarRequirements() {
+		if (is_admin_bar_showing ()) {
+			wp_enqueue_script ( 'wp-piwik-sparkline', $this->getPluginURL () . 'js/sparkline/jquery.sparkline.min.js', array (
+					'jquery'
+			), self::$version );
+			wp_enqueue_style ( 'wp-piwik', $this->getPluginURL () . 'css/wp-piwik-spark.css', array (), $this->getPluginVersion () );
+		}
+	}
+
+	/**
+	 * Add tracking pixels to feed content
+	 *
+	 * @param string $content
+	 *        	post content
+	 * @return string post content extended by tracking pixel
+	 */
+	public function addFeedTracking($content) {
+		global $post;
+		if (is_feed ()) {
+			self::$logger->log ( 'Add tracking image to feed entry.' );
+			if (! self::$settings->getOption ( 'site_id' )) {
+				$siteId = $this->requestPiwikSiteId ();
+				if ($siteId != 'n/a')
+					self::$settings->setOption ( 'site_id', $siteId );
+				else
+					return false;
+			}
+			$title = the_title ( null, null, false );
+			$posturl = get_permalink ( $post->ID );
+			$urlref = get_bloginfo ( 'rss2_url' );
+			$url = self::$settings->getGlobalOption ( 'piwik_url' );
+			if (substr ( $url, - 10, 10 ) == '/index.php')
+				$url = str_replace ( '/index.php', '/piwik.php', $url );
+			else
+				$url .= 'piwik.php';
+			$trackingImage = $url . '?idsite=' . self::$settings->getOption ( 'site_id' ) . '&amp;rec=1&amp;url=' . urlencode ( $posturl ) . '&amp;action_name=' . urlencode ( $title ) . '&amp;urlref=' . urlencode ( $urlref );
+			$content .= '<img src="' . $trackingImage . '" style="border:0;width:0;height:0" width="0" height="0" alt="" />';
+		}
+		return $content;
+	}
+
+	/**
+	 * Add a campaign parameter to feed permalink
+	 *
+	 * @param string $permalink
+	 *        	permalink
+	 * @return string permalink extended by campaign parameter
+	 */
+	public function addFeedCampaign($permalink) {
+		global $post;
+		if (is_feed ()) {
+			self::$logger->log ( 'Add campaign to feed permalink.' );
+			$sep = (strpos ( $permalink, '?' ) === false ? '?' : '&');
+			$permalink .= $sep . 'pk_campaign=' . urlencode ( self::$settings->getGlobalOption ( 'track_feed_campaign' ) ) . '&pk_kwd=' . urlencode ( $post->post_name );
+		}
+		return $permalink;
+	}
+
+	/**
+	 * Add a new post annotation in Piwik
+	 *
+	 * @param int $postID
+	 *        	The new post's ID
+	 */
+	public function addPiwikAnnotation($postID) {
+		$note = 'Published: ' . get_post ( $postID )->post_title . ' - URL: ' . get_permalink ( $postID );
+		$id = WP_Piwik\Request::register ( 'Annotations.add', array (
+				'idSite' => $this->getPiwikSiteId (),
+				'date' => date ( 'Y-m-d' ),
+				'note' => $note
+		) );
+		$result = $this->request ( $id );
+		self::$logger->log ( 'Add post annotation. ' . $note . ' - ' . serialize ( $result ) );
+	}
+
+	/**
+	 * Apply settings update
+	 *
+	 * @return boolean settings update applied
+	 */
+	private function applySettings() {
+		self::$settings->applyChanges ( $_POST ['wp-piwik'] );
+		if (self::$settings->getGlobalOption ( 'auto_site_config' ) && self::isConfigured ()) {
+			if ($this->isPHPMode () && ! defined ( 'PIWIK_INCLUDE_PATH' ))
+				self::definePiwikConstants ();
+			$siteId = $this->getPiwikSiteId ();
+			$trackingCode = $this->updateTrackingCode ( $siteId );
+			self::$settings->setOption ( 'site_id', $siteId );
+		}
+		self::$settings->setGlobalOption ( 'revision', self::$revisionId );
+		self::$settings->setGlobalOption ( 'last_settings_update', time () );
+		return true;
+	}
+
+	/**
+	 * Check if WP-Piwik is configured
+	 *
+	 * @return boolean Is WP-Piwik configured?
+	 */
+	public static function isConfigured() {
+		return (self::$settings->getGlobalOption ( 'piwik_token' ) && (self::$settings->getGlobalOption ( 'piwik_mode' ) != 'disabled') && (((self::$settings->getGlobalOption ( 'piwik_mode' ) == 'http') && (self::$settings->getGlobalOption ( 'piwik_url' ))) || ((self::$settings->getGlobalOption ( 'piwik_mode' ) == 'php') && (self::$settings->getGlobalOption ( 'piwik_path' ))) || ((self::$settings->getGlobalOption ( 'piwik_mode' ) == 'pro') && (self::$settings->getGlobalOption ( 'piwik_user' )))));
+	}
+
+	/**
+	 * Check if WP-Piwik was updated
+	 *
+	 * @return boolean Was WP-Piwik updated?
+	 */
+	private function isUpdated() {
+		return self::$settings->getGlobalOption ( 'revision' ) && self::$settings->getGlobalOption ( 'revision' ) < self::$revisionId;
+	}
+
+	/**
+	 * Check if WP-Piwik is already installed
+	 *
+	 * @return boolean Is WP-Piwik installed?
+	 */
+	private function isInstalled() {
+		$oldSettings = $this->getWordPressOption ( 'wp-piwik_global-settings', false );
+		if ($oldSettings && isset( $oldSettings['revision'] )) {
+			self::log('Save old settings');
+			self::$settings->setGlobalOption ( 'revision', $oldSettings['revision'] );
+		} else self::log( 'Current revision '.self::$settings->getGlobalOption ( 'revision' ) );
+		return self::$settings->getGlobalOption ( 'revision' ) > 0;
+	}
+
+	/**
+	 * Check if new settings were submitted
+	 *
+	 * @return boolean Are new settings submitted?
+	 */
+	private function isConfigSubmitted() {
+		return isset ( $_POST ) && isset ( $_POST ['wp-piwik'] );
+	}
+
+	/**
+	 * Check if PHP mode is chosen
+	 *
+	 * @return Is PHP mode chosen?
+	 */
+	public function isPHPMode() {
+		return self::$settings->getGlobalOption ( 'piwik_mode' ) && self::$settings->getGlobalOption ( 'piwik_mode' ) == 'php';
+	}
+
+	/**
+	 * Check if WordPress is running in network mode
+	 *
+	 * @return boolean Is WordPress running in network mode?
+	 */
+	public function isNetworkMode() {
+		return self::$settings->checkNetworkActivation ();
+	}
+
+	/**
+	 * Check if a WP-Piwik dashboard widget is enabled
+	 *
+	 * @return boolean Is a dashboard widget enabled?
+	 */
+	private function isDashboardActive() {
+		return self::$settings->getGlobalOption ( 'dashboard_widget' ) || self::$settings->getGlobalOption ( 'dashboard_chart' ) || self::$settings->getGlobalOption ( 'dashboard_seo' );
+	}
+
+	/**
+	 * Check if a WP-Piwik toolbar widget is enabled
+	 *
+	 * @return boolean Is a toolbar widget enabled?
+	 */
+	private function isToolbarActive() {
+		return self::$settings->getGlobalOption ( 'toolbar' );
+	}
+
+	/**
+	 * Check if WP-Piwik tracking code insertion is enabled
+	 *
+	 * @return boolean Insert tracking code?
+	 */
+	private function isTrackingActive() {
+		return self::$settings->getGlobalOption ( 'track_mode' ) != 'disabled';
+	}
+
+	/**
+	 * Check if admin tracking is enabled
+	 *
+	 * @return boolean Is admin tracking enabled?
+	 */
+	private function isAdminTrackingActive() {
+		return self::$settings->getGlobalOption ( 'track_admin' ) && is_admin ();
+	}
+
+	/**
+	 * Check if WP-Piwik noscript code insertion is enabled
+	 *
+	 * @return boolean Insert noscript code?
+	 */
+	private function isAddNoScriptCode() {
+		return self::$settings->getGlobalOption ( 'track_noscript' );
+	}
+
+	/**
+	 * Check if feed tracking is enabled
+	 *
+	 * @return boolean Is feed tracking enabled?
+	 */
+	private function isTrackFeed() {
+		return self::$settings->getGlobalOption ( 'track_feed' );
+	}
+
+	/**
+	 * Check if feed permalinks get a campaign parameter
+	 *
+	 * @return boolean Add campaign parameter to feed permalinks?
+	 */
+	private function isAddFeedCampaign() {
+		return self::$settings->getGlobalOption ( 'track_feed_addcampaign' );
+	}
+
+	/**
+	 * Check if WP-Piwik shortcodes are enabled
+	 *
+	 * @return boolean Are shortcodes enabled?
+	 */
+	private function isAddShortcode() {
+		return self::$settings->getGlobalOption ( 'shortcodes' );
+	}
+
+	/**
+	 * Define Piwik constants for PHP reporting API
+	 */
+	public static function definePiwikConstants() {
+		if (! defined ( 'PIWIK_INCLUDE_PATH' )) {
+			@header ( 'Content-type: text/xml' );
+			define ( 'PIWIK_INCLUDE_PATH', self::$settings->getGlobalOption ( 'piwik_path' ) );
+			define ( 'PIWIK_USER_PATH', self::$settings->getGlobalOption ( 'piwik_path' ) );
+			define ( 'PIWIK_ENABLE_DISPATCH', false );
+			define ( 'PIWIK_ENABLE_ERROR_HANDLER', false );
+			define ( 'PIWIK_ENABLE_SESSION_START', false );
+		}
+	}
+
+	/**
+	 * Start chosen logging method
+	 */
+	private function openLogger() {
+		switch (WP_PIWIK_ACTIVATE_LOGGER) {
+			case 1 :
+				self::$logger = new WP_Piwik\Logger\Screen ( __CLASS__ );
+				break;
+			case 2 :
+				self::$logger = new WP_Piwik\Logger\File ( __CLASS__ );
+				break;
+			default :
+				self::$logger = new WP_Piwik\Logger\Dummy ( __CLASS__ );
+		}
+	}
+
+	/**
+	 * Log a message
+	 *
+	 * @param string $message
+	 *        	logger message
+	 */
+	public static function log($message) {
+		self::$logger->log ( $message );
+	}
+
+	/**
+	 * End logging
+	 */
+	private function closeLogger() {
+		self::$logger = null;
+	}
+
+	/**
+	 * Load WP-Piwik settings
+	 */
+	private function openSettings() {
+		self::$settings = new WP_Piwik\Settings ( $this, self::$logger );
+		if (! $this->isConfigSubmitted () && $this->isPHPMode () && ! defined ( 'PIWIK_INCLUDE_PATH' ))
+			self::definePiwikConstants ();
+	}
+
+	/**
+	 * Include a WP-Piwik file
+	 */
+	private function includeFile($strFile) {
+		self::$logger->log ( 'Include ' . $strFile . '.php' );
+		if (WP_PIWIK_PATH . $strFile . '.php')
+			include (WP_PIWIK_PATH . $strFile . '.php');
+	}
+
+	/**
+	 * Check if user should not be tracked
+	 *
+	 * @return boolean Do not track user?
+	 */
+	private function isHiddenUser() {
+		if (is_multisite ())
+			foreach ( self::$settings->getGlobalOption ( 'capability_stealth' ) as $key => $val )
+				if ($val && current_user_can ( $key ))
+					return true;
+		return current_user_can ( 'wp-piwik_stealth' );
+	}
+
+	/**
+	 * Check if tracking code is up to date
+	 *
+	 * @return boolean Is tracking code up to date?
+	 */
+	public function isCurrentTrackingCode() {
+		return (self::$settings->getOption ( 'last_tracking_code_update' ) && self::$settings->getOption ( 'last_tracking_code_update' ) > self::$settings->getGlobalOption ( 'last_settings_update' ));
+	}
+
+	/**
+	 * DEPRECTAED Add javascript code to site header
+	 *
+	 * @deprecated
+	 *
+	 */
+	public function site_header() {
+		self::$logger->log ( 'Using deprecated function site_header' );
+		$this->addJavascriptCode ();
+	}
+
+	/**
+	 * DEPRECTAED Add javascript code to site footer
+	 *
+	 * @deprecated
+	 *
+	 */
+	public function site_footer() {
+		self::$logger->log ( 'Using deprecated function site_footer' );
+		$this->addNoscriptCode ();
+	}
+
+	/**
+	 * Identify new posts if an annotation is required
+	 *
+	 * @param string $newStatus
+	 *        	new post status
+	 * @param strint $oldStatus
+	 *        	new post status
+	 * @param object $post
+	 *        	current post object
+	 */
+	public function onPostStatusTransition($newStatus, $oldStatus, $post) {
+		if ($newStatus == 'publish' && $oldStatus != 'publish') {
+			add_action ( 'publish_post', array (
+					$this,
+					'addPiwikAnnotation'
+			) );
+		}
+	}
+
+	/**
+	 * Get WP-Piwik's URL
+	 */
+	public function getPluginURL() {
+		return trailingslashit ( plugins_url () . '/wp-piwik/' );
+	}
+
+	/**
+	 * Get WP-Piwik's version
+	 */
+	public function getPluginVersion() {
+		return self::$version;
+	}
+
+	/**
+	 * Enable three columns for WP-Piwik stats screen
+	 *
+	 * @param
+	 *        	array full list of column settings
+	 * @param
+	 *        	mixed current screen id
+	 * @return array updated list of column settings
+	 */
+	public function onScreenLayoutColumns($columns, $screen) {
+		if (isset( $this->statsPageId ) && $screen == $this->statsPageId)
+			$columns [$this->statsPageId] = 3;
+		return $columns;
+	}
+
+	/**
+	 * Add tracking code to admin header
+	 */
+	function addAdminHeaderTracking() {
+		$this->addJavascriptCode ();
+	}
+
+	/**
+	 * Get option value
+	 *
+	 * @param string $key
+	 *        	option key
+	 * @return mixed option value
+	 */
+	public function getOption($key) {
+		return self::$settings->getOption ( $key );
+	}
+
+	/**
+	 * Get global option value
+	 *
+	 * @param string $key
+	 *        	global option key
+	 * @return mixed global option value
+	 */
+	public function getGlobalOption($key) {
+		return self::$settings->getGlobalOption ( $key );
+	}
+
+	/**
+	 * Get stats page URL
+	 *
+	 * @return string stats page URL
+	 */
+	public function getStatsURL() {
+		return admin_url () . '?page=wp-piwik_stats';
+	}
+
+	/**
+	 * Execute WP-Piwik test script
+	 */
+	private function loadTestscript() {
+		$this->includeFile ( 'debug' . DIRECTORY_SEPARATOR . 'testscript' );
+	}
+
+	/**
+	 * Echo an error message
+	 *
+	 * @param string $message
+	 *        	message content
+	 */
+	private static function showErrorMessage($message) {
+		echo '<strong class="wp-piwik-error">' . __ ( 'An error occured', 'wp-piwik' ) . ':</strong> ' . $message . ' [<a href="' . (self::$settings->checkNetworkActivation () ? 'network/settings' : 'options-general') . '.php?page=wp-piwik/classes/WP_Piwik.php&tab=support">' . __ ( 'Support', 'wp-piwik' ) . '</a>]';
+	}
+
+	/**
+	 * Perform a Piwik request
+	 *
+	 * @param string $id
+	 *        	request ID
+	 * @return mixed request result
+	 */
+	public function request($id, $debug = false) {
+		if ( self::$settings->getGlobalOption ( 'piwik_mode' ) == 'disabled' )
+			return 'n/a';
+		if (! isset ( self::$request ) || empty ( self::$request ))
+			self::$request = (self::$settings->getGlobalOption ( 'piwik_mode' ) == 'http' || self::$settings->getGlobalOption ( 'piwik_mode' ) == 'pro' ? new WP_Piwik\Request\Rest ( $this, self::$settings ) : new WP_Piwik\Request\Php ( $this, self::$settings ));
+		if ($debug)
+			return self::$request->getDebug ( $id );
+		return self::$request->perform ( $id );
+	}
+
+	/**
+	 * Reset request object
+	 */
+	public function resetRequest() {
+		if (is_object(self::$request))
+			self::$request->reset();
+		self::$request = NULL;
+	}
+
+	/**
+	 * Execute WP-Piwik shortcode
+	 *
+	 * @param array $attributes
+	 *        	attribute list
+	 */
+	public function shortcode($attributes) {
+		load_plugin_textdomain ( 'wp-piwik', false, 'wp-piwik' . DIRECTORY_SEPARATOR . 'languages' . DIRECTORY_SEPARATOR );
+		shortcode_atts ( array (
+				'title' => '',
+				'module' => 'overview',
+				'period' => 'day',
+				'date' => 'yesterday',
+				'limit' => 10,
+				'width' => '100%',
+				'height' => '200px',
+				'language' => 'en',
+				'range' => false,
+				'key' => 'sum_daily_nb_uniq_visitors'
+		), $attributes );
+		$shortcodeObject = new \WP_Piwik\Shortcode ( $attributes, $this, self::$settings );
+		return $shortcodeObject->get();
+	}
+
+	/**
+	 * Get Piwik site ID by blog ID
+	 *
+	 * @param int $blogId
+	 *        	which blog's Piwik site ID to get, default is the current blog
+	 * @return mixed Piwik site ID or n/a
+	 */
+	public function getPiwikSiteId($blogId = null) {
+		if (! $blogId && $this->isNetworkMode ())
+			$blogId = get_current_blog_id ();
+		$result = self::$settings->getOption ( 'site_id', $blogId );
+		return (! empty ( $result ) ? $result : $this->requestPiwikSiteId ( $blogId ));
+	}
+
+	/**
+	 * Get a detailed list of all Piwik sites
+	 *
+	 * @return array Piwik sites
+	 */
+	public function getPiwikSiteDetails() {
+		$id = WP_Piwik\Request::register ( 'SitesManager.getSitesWithAtLeastViewAccess', array () );
+		$piwikSiteDetails = $this->request ( $id );
+		return $piwikSiteDetails;
+	}
+
+	/**
+	 * Estimate a Piwik site ID by blog ID
+	 *
+	 * @param int $blogId
+	 *        	which blog's Piwik site ID to estimate, default is the current blog
+	 * @return mixed Piwik site ID or n/a
+	 */
+	private function requestPiwikSiteId($blogId = null) {
+		$isCurrent = ! self::$settings->checkNetworkActivation () || empty ( $blogId );
+		if (self::$settings->getGlobalOption ( 'auto_site_config' )) {
+			$id = WP_Piwik\Request::register ( 'SitesManager.getSitesIdFromSiteUrl', array (
+					'url' => $isCurrent ? get_bloginfo ( 'url' ) : get_blog_details ( $blogId )->siteurl
+			) );
+			$result = $this->request ( $id );
+			$this->log ( 'Tried to identify current site, result: ' . serialize ( $result ) );
+			if (is_array( $result ) && empty( $result ))
+				$result = $this->addPiwikSite ( $blogId );
+			elseif ( $result != 'n/a' )
+				$result = $result [0] ['idsite'];
+		} else
+			$result = null;
+		self::$logger->log ( 'Get Piwik ID: WordPress site ' . ($isCurrent ? get_bloginfo ( 'url' ) : get_blog_details ( $blogId )->siteurl) . ' = Piwik ID ' . $result );
+		if ($result !== null) {
+			self::$settings->setOption ( 'site_id', $result, $blogId );
+			if (self::$settings->getGlobalOption ( 'track_mode' ) != 'disabled' && self::$settings->getGlobalOption ( 'track_mode' ) != 'manually') {
+				$code = $this->updateTrackingCode ( $result, $blogId );
+			}
+			$this::$settings->save ();
+			return $result;
+		}
+		return 'n/a';
+	}
+
+	/**
+	 * Add a new Piwik
+	 *
+	 * @param int $blogId
+	 *        	which blog's Piwik site to create, default is the current blog
+	 * @return int Piwik site ID
+	 */
+	public function addPiwikSite($blogId = null) {
+		$isCurrent = ! self::$settings->checkNetworkActivation () || empty ( $blogId );
+		// Do not add site if Piwik connection is unreliable
+		if (! $this->request ( 'global.getPiwikVersion' ))
+			return null;
+		$id = WP_Piwik\Request::register ( 'SitesManager.addSite', array (
+				'urls' => $isCurrent ? get_bloginfo ( 'url' ) : get_blog_details ( $blogId )->siteurl,
+				'siteName' => urlencode( $isCurrent ? get_bloginfo ( 'name' ) : get_blog_details ( $blogId )->blogname )
+		) );
+		$result = $this->request ( $id );
+		self::$logger->log ( 'Get Piwik ID: WordPress site ' . ($isCurrent ? get_bloginfo ( 'url' ) : get_blog_details ( $blogId )->siteurl) . ' = Piwik ID ' . ( int ) $result );
+		if (empty ( $result ) || ! isset ( $result [0] ))
+			return null;
+		else
+			return $result [0] ['idsite'];
+	}
+
+	/**
+	 * Update a Piwik site's detail information
+	 *
+	 * @param int $siteId
+	 *        	which Piwik site to updated
+	 * @param int $blogId
+	 *        	which blog's Piwik site ID to get, default is the current blog
+	 */
+	private function updatePiwikSite($siteId, $blogId = null) {
+		$isCurrent = ! self::$settings->checkNetworkActivation () || empty ( $blogId );
+		$id = WP_Piwik\Request::register ( 'SitesManager.updateSite', array (
+				'idSite' => $siteId,
+				'urls' => $isCurrent ? get_bloginfo ( 'url' ) : get_blog_details ( $blogId )->$siteurl,
+				'siteName' => $isCurrent ? get_bloginfo ( 'name' ) : get_blog_details ( $blogId )->$blogname
+		) );
+		$result = $this->request ( $id );
+		self::$logger->log ( 'Update Piwik site: WordPress site ' . ($isCurrent ? get_bloginfo ( 'url' ) : get_blog_details ( $blogId )->$siteurl) );
+	}
+
+	/**
+	 * Update a site's tracking code
+	 *
+	 * @param int $siteId
+	 *        	which Piwik site to updated
+	 * @param int $blogId
+	 *        	which blog's Piwik site ID to get, default is the current blog
+	 * @return string tracking code
+	 */
+	public function updateTrackingCode($siteId = false, $blogId = null) {
+		if (!$siteId)
+			$siteId = $this->getPiwikSiteId ();
+		if (self::$settings->getGlobalOption ( 'track_mode' ) == 'disabled' || self::$settings->getGlobalOption ( 'track_mode' ) == 'manually')
+			return false;
+		$id = WP_Piwik\Request::register ( 'SitesManager.getJavascriptTag', array (
+				'idSite' => $siteId,
+				'mergeSubdomains' => self::$settings->getGlobalOption ( 'track_across' ) ? 1 : 0,
+				'mergeAliasUrls' => self::$settings->getGlobalOption ( 'track_across_alias' ) ? 1 : 0,
+				'disableCookies' => self::$settings->getGlobalOption ( 'disable_cookies' ) ? 1 : 0
+			) );
+		$code = $this->request ( $id );
+		if (is_array($code) && isset($code['value']))
+			$code = $code['value'];
+		$result = !is_array ( $code ) ? html_entity_decode ( $code ) : '<!-- '.json_encode($code).' -->';
+		self::$logger->log ( 'Delivered tracking code: ' . $result );
+		$result = WP_Piwik\TrackingCode::prepareTrackingCode ( $result, self::$settings, self::$logger, true );
+		if (isset ( $result ['script'] ) && ! empty ( $result ['script'] )) {
+			self::$settings->setOption ( 'tracking_code', $result ['script'], $blogId );
+			self::$settings->setOption ( 'noscript_code', $result ['noscript'], $blogId );
+			self::$settings->setGlobalOption ( 'proxy_url', $result ['proxy'], $blogId );
+		}
+		return $result;
+	}
+
+	/**
+	 * Update Piwik site if blog name changes
+	 *
+	 * @param string $oldValue
+	 *        	old blog name
+	 * @param string $newValue
+	 *        	new blog name
+	 */
+	public function onBlogNameChange($oldValue, $newValue) {
+		$this->updatePiwikSite ( self::$settings->getOption ( 'site_id' ) );
+	}
+
+	/**
+	 * Update Piwik site if blog URL changes
+	 *
+	 * @param string $oldValue
+	 *        	old blog URL
+	 * @param string $newValue
+	 *        	new blog URL
+	 */
+	public function onSiteUrlChange($oldValue, $newValue) {
+		$this->updatePiwikSite ( self::$settings->getOption ( 'site_id' ) );
+	}
+
+	/**
+	 * Register stats page meta boxes
+	 *
+	 * @param mixed $statsPageId
+	 *        	WordPress stats page ID
+	 */
+	public function onloadStatsPage($statsPageId) {
+		if (self::$settings->getGlobalOption ( 'disable_timelimit' ))
+			set_time_limit ( 0 );
+		wp_enqueue_script ( 'common' );
+		wp_enqueue_script ( 'wp-lists' );
+		wp_enqueue_script ( 'postbox' );
+		wp_enqueue_script ( 'wp-piwik', $this->getPluginURL () . 'js/wp-piwik.js', array (), self::$version, true );
+		wp_enqueue_script ( 'wp-piwik-jqplot', $this->getPluginURL () . 'js/jqplot/wp-piwik.jqplot.js', array (
+				'jquery'
+		), self::$version );
+		new \WP_Piwik\Widget\Chart ( $this, self::$settings, $this->statsPageId );
+		new \WP_Piwik\Widget\Visitors ( $this, self::$settings, $this->statsPageId );
+		new \WP_Piwik\Widget\Overview ( $this, self::$settings, $this->statsPageId );
+		if (self::$settings->getGlobalOption ( 'stats_seo' ))
+			new \WP_Piwik\Widget\Seo ( $this, self::$settings, $this->statsPageId );
+		new \WP_Piwik\Widget\Pages ( $this, self::$settings, $this->statsPageId );
+		new \WP_Piwik\Widget\Keywords ( $this, self::$settings, $this->statsPageId );
+		new \WP_Piwik\Widget\Referrers ( $this, self::$settings, $this->statsPageId );
+		new \WP_Piwik\Widget\Plugins ( $this, self::$settings, $this->statsPageId );
+		new \WP_Piwik\Widget\Search ( $this, self::$settings, $this->statsPageId );
+		new \WP_Piwik\Widget\Noresult ( $this, self::$settings, $this->statsPageId );
+		new \WP_Piwik\Widget\Browsers ( $this, self::$settings, $this->statsPageId );
+		new \WP_Piwik\Widget\BrowserDetails ( $this, self::$settings, $this->statsPageId );
+		new \WP_Piwik\Widget\Screens ( $this, self::$settings, $this->statsPageId );
+		new \WP_Piwik\Widget\Systems ( $this, self::$settings, $this->statsPageId );
+		new \WP_Piwik\Widget\SystemDetails ( $this, self::$settings, $this->statsPageId );
+	}
+
+	/**
+	 * Add per post statistics to a post's page
+	 *
+	 * @param mixed $postPageId
+	 *        	WordPress post page ID
+	 */
+	public function onloadPostPage($postPageId) {
+		global $post;
+		$postUrl = get_permalink ( $post->ID );
+		$this->log ( 'Load per post statistics: ' . $postUrl );
+		array (
+				new \WP_Piwik\Widget\Post ( $this, self::$settings, 'post', 'side', 'default', array (
+						'url' => $postUrl
+				) ),
+				'show'
+		);
+	}
+
+	/**
+	 * Stats page changes by POST submit
+	 *
+	 * @see http://tinyurl.com/5r5vnzs
+	 */
+	function onStatsPageSaveChanges() {
+		if (! current_user_can ( 'manage_options' ))
+			wp_die ( __ ( 'Cheatin&#8217; uh?' ) );
+		check_admin_referer ( 'wp-piwik_stats' );
+		wp_redirect ( $_POST ['_wp_http_referer'] );
+	}
+
+	/**
+	 * Get option value, choose method depending on network mode
+	 *
+	 * @param string $option option key
+	 * @return string option value
+	 */
+	private function getWordPressOption($option, $default = null) {
+		return ($this->isNetworkMode () ? get_site_option ( $option, $default ) : get_option ( $option, $default ));
+	}
+
+	/**
+	 * Delete option, choose method depending on network mode
+	 *
+	 * @param string $option option key
+	 */
+	private function deleteWordPressOption($option) {
+		if ( $this->isNetworkMode () )
+			delete_site_option ( $option );
+		else
+			delete_option ( $option );
+	}
+
+	/**
+	 * Set option value, choose method depending on network mode
+	 *
+	 * @param string $option option key
+	 * @param mixed $value option value
+	 */
+	private function updateWordPressOption($option, $value) {
+		if ( $this->isNetworkMode () )
+			update_site_option ( $option, $value );
+		else
+			update_option ( $option, $value );
+	}
 }
\ No newline at end of file
diff --git a/wp-content/plugins/wp-piwik/classes/WP_Piwik/Admin.php b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Admin.php
new file mode 100644
index 0000000000000000000000000000000000000000..23d83dbcb25d63613eaeb3bc09917f45a41b49fa
--- /dev/null
+++ b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Admin.php
@@ -0,0 +1,26 @@
+<?php
+
+	namespace WP_Piwik;
+	
+	abstract class Admin {
+		
+		protected static $wpPiwik, $pageID, $settings;
+		
+		public function __construct($wpPiwik, $settings) {
+			self::$wpPiwik = $wpPiwik;
+			self::$settings = $settings;
+		}
+
+		abstract public function show();
+		
+		abstract public function printAdminScripts();
+				
+		abstract public function extendAdminHeader();
+
+		public function printAdminStyles() {
+			wp_enqueue_style('wp-piwik', self::$wpPiwik->getPluginURL().'css/wp-piwik.css', array(), self::$wpPiwik->getPluginVersion());
+		}
+		
+		public function onLoad() {}
+
+	}
\ No newline at end of file
diff --git a/wp-content/plugins/wp-piwik/classes/WP_Piwik/Admin/Network.php b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Admin/Network.php
new file mode 100644
index 0000000000000000000000000000000000000000..b60575e2c94360974997b34a290328d60a50575b
--- /dev/null
+++ b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Admin/Network.php
@@ -0,0 +1,25 @@
+<?php
+
+	namespace WP_Piwik\Admin;
+
+	class Network extends \WP_Piwik\Admin\Statistics {
+
+		public function show() {
+			parent::show();
+		}
+		
+		public function printAdminScripts() {
+			wp_enqueue_script('wp-piwik', self::$wpPiwik->getPluginURL().'js/wp-piwik.js', array(), self::$wpPiwik->getPluginVersion(), true);
+			wp_enqueue_script('wp-piwik-jqplot', self::$wpPiwik->getPluginURL().'js/jqplot/wp-piwik.jqplot.js',array('jquery'), self::$wpPiwik->getPluginVersion());
+		}
+		
+		public function extendAdminHeader() {
+			echo '<!--[if IE]><script language="javascript" type="text/javascript" src="'.(parent::$wpPiwik->getPluginURL()).'js/jqplot/excanvas.min.js"></script><![endif]-->';
+			echo '<link rel="stylesheet" href="'.(parent::$wpPiwik->getPluginURL()).'js/jqplot/jquery.jqplot.min.css" type="text/css"/>';
+			echo '<script type="text/javascript">var $j = jQuery.noConflict();</script>';		
+		}
+		
+		public function onLoad() {
+			self::$wpPiwik->onloadStatsPage(self::$pageID);
+		}
+	}
\ No newline at end of file
diff --git a/wp-content/plugins/wp-piwik/classes/WP_Piwik/Admin/Settings.php b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Admin/Settings.php
new file mode 100644
index 0000000000000000000000000000000000000000..7d6657e3c37725926ba6e2f6e4b12fc297239f86
--- /dev/null
+++ b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Admin/Settings.php
@@ -0,0 +1,699 @@
+<?php
+
+namespace WP_Piwik\Admin;
+
+/**
+ * WordPress Admin settings page
+ *
+ * @package WP_Piwik\Admin
+ * @author Andr&eacute; Br&auml;kling <webmaster@braekling.de>
+ */
+class Settings extends \WP_Piwik\Admin {
+
+	/**
+	 * Builds and displays the settings page
+	 */
+	public function show() {
+		if (isset($_GET['sitebrowser']) && $_GET['sitebrowser']) {
+			new \WP_Piwik\Admin\Sitebrowser(self::$wpPiwik);
+			return;
+		}
+		if (isset($_GET['clear']) && $_GET['clear']) {
+			$this->clear($_GET['clear'] == 2);
+			self::$wpPiwik->resetRequest();
+			echo '<form method="post" action="?page='.$_GET['page'].'"><input type="submit" value="'.__('Reload', 'wp-piwik').'" /></form>';
+			return;
+		} elseif (isset ( $_POST ) && isset ( $_POST ['wp-piwik'] )) {
+			$this->showBox ( 'updated', 'yes', __ ( 'Changes saved.' ) );
+			self::$wpPiwik->resetRequest();
+			self::$wpPiwik->updateTrackingCode();
+		}
+		global $wp_roles;
+		?>
+<div id="plugin-options-wrap" class="widefat">
+	<?php
+		echo $this->getHeadline ( 1, 'admin-generic', 'Settings', true );
+		if (isset($_GET['testscript']) && $_GET['testscript'])
+			$this->runTestscript();
+	?>
+	<form method="post" action="?page=<?php echo $_GET['page']; ?>">
+		<input type="hidden" name="wp-piwik[revision]" value="<?php echo self::$settings->getGlobalOption('revision'); ?>" />
+		<?php wp_nonce_field('wp-piwik_settings'); ?>
+		<table class="wp-piwik-form">
+			<tbody>
+			<?php
+		$submitButton = '<tr><td colspan="2"><p class="submit"><input name="Submit" type="submit" class="button-primary" value="' . esc_attr__ ( 'Save Changes' ) . '" /></p></td></tr>';
+		printf ( '<tr><td colspan="2">%s</td></tr>', __ ( 'Thanks for using WP-Piwik!', 'wp-piwik' ) );
+		if (self::$wpPiwik->isConfigured ()) {
+			$piwikVersion = self::$wpPiwik->request ( 'global.getPiwikVersion' );
+			if (is_array ( $piwikVersion ) && isset( $piwikVersion['value'] ))
+				$piwikVersion = $piwikVersion['value'];
+			if (! empty ( $piwikVersion ) && !is_array( $piwikVersion )) {				
+				$this->showText ( sprintf ( __ ( 'WP-Piwik %s is successfully connected to Piwik %s.', 'wp-piwik' ), self::$wpPiwik->getPluginVersion (), $piwikVersion ) . ' ' . (! self::$wpPiwik->isNetworkMode () ? sprintf ( __ ( 'You are running WordPress %s.', 'wp-piwik' ), get_bloginfo ( 'version' ) ) : sprintf ( __ ( 'You are running a WordPress %s blog network (WPMU). WP-Piwik will handle your sites as different websites.', 'wp-piwik' ), get_bloginfo ( 'version' ) )) );
+				$this->showDonation();
+			} else {
+				$this->showBox ( 'error', 'no', sprintf ( __ ( 'WP-Piwik %s was not able to connect to Piwik using your configuration. Check the &raquo;Connect to Piwik&laquo; section below.', 'wp-piwik' ), self::$wpPiwik->getPluginVersion () ) );
+			}
+		} else
+			$this->showBox ( 'error', 'no', sprintf ( __ ( 'WP-Piwik %s has to be connected to Piwik first. Check the &raquo;Connect to Piwik&laquo; section below.', 'wp-piwik' ), self::$wpPiwik->getPluginVersion () ) );
+
+		$tabs ['connect'] = array (
+				'icon' => 'admin-plugins',
+				'name' => __('Connect to Piwik', 'wp-piwik')
+		);
+		if (self::$wpPiwik->isConfigured ()) {
+			$tabs ['statistics'] = array (
+					'icon' => 'chart-pie',
+					'name' => __('Show Statistics', 'wp-piwik')
+			);
+			$tabs ['tracking'] = array (
+					'icon' => 'location-alt',
+					'name' => __('Enable Tracking', 'wp-piwik')
+			);
+		}
+		$tabs ['expert'] = array (
+				'icon' => 'shield',
+				'name' => __('Expert Settings', 'wp-piwik')
+		);
+		$tabs ['support'] = array (
+				'icon' => 'lightbulb',
+				'name' => __('Support', 'wp-piwik')
+		);
+		$tabs ['credits'] = array (
+				'icon' => 'groups',
+				'name' => __('Credits', 'wp-piwik')
+		);
+
+		echo '<tr><td colspan="2"><h2 class="nav-tab-wrapper">';
+		foreach ( $tabs as $tab => $details ) {
+			$class = ($tab == 'connect') ? ' nav-tab-active' : '';
+			echo '<a style="cursor:pointer;" id="tab-' . $tab . '" class="nav-tab' . $class . '" onclick="javascript:$j(\'table.wp-piwik_menu-tab\').addClass(\'hidden\');$j(\'#' . $tab . '\').removeClass(\'hidden\');$j(\'a.nav-tab\').removeClass(\'nav-tab-active\');$j(\'#tab-' . $tab . '\').addClass(\'nav-tab-active\');">';
+			$this->showHeadline ( 0, $details ['icon'], $details ['name'] );
+			echo "</a>";
+		}
+		echo '</h2></td></tr></tbody></table><table id="connect" class="wp-piwik_menu-tab"><tbody>';
+
+		if (! self::$wpPiwik->isConfigured ())
+			$this->showBox ( 'updated', 'info', sprintf ( '%s <a href="%s">%s</a> %s <a href="%s">%s</a>.', __ ( 'WP-Piwik is a WordPress plugin to show a selection of Piwik stats in your WordPress admin dashboard and to add and configure your Piwik tracking code. To use this you will need your own Piwik instance. If you do not already have a Piwik setup, you have two simple options: use either', 'wp-piwik' ), 'http://piwik.org/', __ ( 'Self-hosted', 'wp-piwik' ), __ ( 'or', 'wp-piwik' ), 'http://piwik.org/hosting/', __ ( 'Cloud-hosted', 'wp-piwik' ) ) );
+
+		if (! function_exists ( 'curl_init' ) && ! ini_get ( 'allow_url_fopen' ))
+			$this->showBox ( 'error', 'no', __ ( 'Neither cURL nor fopen are available. So WP-Piwik can not use the HTTP API and not connect to Piwik Pro.' ) . ' ' . sprintf ( '<a href="%s">%s.</a>', 'https://wordpress.org/plugins/wp-piwik/faq/', __ ( 'More information', 'wp-piwik' ) ) );
+
+		$description = sprintf ( '%s<br /><strong>%s:</strong> %s<br /><strong>%s:</strong> %s<br /><strong>%s:</strong> %s', __ ( 'You can choose between three connection methods:', 'wp-piwik' ), __ ( 'Self-hosted (HTTP API, default)', 'wp-piwik' ), __ ( 'This is the default option for a self-hosted Piwik and should work for most configurations. WP-Piwik will connect to Piwik using http(s).', 'wp-piwik' ), __ ( 'Self-hosted (PHP API)', 'wp-piwik' ), __ ( 'Choose this, if your self-hosted Piwik and WordPress are running on the same machine and you know the full server path to your Piwik instance.', 'wp-piwik' ), __ ( 'Cloud-hosted (Piwik Pro)', 'wp-piwik' ), __ ( 'If you are using a cloud-hosted Piwik by Piwik Pro, you can simply use this option.', 'wp-piwik' ) );
+		$this->showSelect ( 'piwik_mode', __ ( 'Piwik Mode', 'wp-piwik' ), array (
+				'disabled' => __ ( 'Disabled (WP-Piwik will not connect to Piwik)', 'wp-piwik' ),
+				'http' => __ ( 'Self-hosted (HTTP API, default)', 'wp-piwik' ),
+				'php' => __ ( 'Self-hosted (PHP API)', 'wp-piwik' ),
+				'pro' => __ ( 'Cloud-hosted (Piwik Pro)', 'wp-piwik' )
+		), $description, '$j(\'tr.wp-piwik-mode-option\').addClass(\'hidden\'); $j(\'#wp-piwik-mode-option-\' + $j(\'#piwik_mode\').val()).removeClass(\'hidden\');', false, '', self::$wpPiwik->isConfigured () );
+
+		$this->showInput ( 'piwik_url', __ ( 'Piwik URL', 'wp-piwik' ), __( 'Enter your Piwik URL. This is the same URL you use to access your Piwik instance, e.g. http://www.example.com/piwik/.', 'wp-piwik' ), self::$settings->getGlobalOption ( 'piwik_mode' ) != 'http', 'wp-piwik-mode-option', 'http', self::$wpPiwik->isConfigured (), true );
+		$this->showInput ( 'piwik_path', __ ( 'Piwik path', 'wp-piwik' ), __( 'Enter the file path to your Piwik instance, e.g. /var/www/piwik/.', 'wp-piwik' ), self::$settings->getGlobalOption ( 'piwik_mode' ) != 'php', 'wp-piwik-mode-option', 'php', self::$wpPiwik->isConfigured (), true );
+		$this->showInput ( 'piwik_user', __ ( 'Piwik user', 'wp-piwik' ), __( 'Enter your Piwik Pro username. It is also part of your URL: http://USERNAME.piwik.pro.', 'wp-piwik' ), self::$settings->getGlobalOption ( 'piwik_mode' ) != 'pro', 'wp-piwik-mode-option', 'pro', self::$wpPiwik->isConfigured () );
+		$this->showInput ( 'piwik_token', __ ( 'Auth token', 'wp-piwik' ), __( 'Enter your Piwik auth token here. It is an alphanumerical code like 0a1b2c34d56e78901fa2bc3d45678efa.', 'wp-piwik' ).' '.sprintf ( __ ( 'See %sWP-Piwik FAQ%s.', 'wp-piwik' ), '<a href="https://wordpress.org/plugins/wp-piwik/faq/">', '</a>' ), false, '', '', self::$wpPiwik->isConfigured (), true );
+
+		// Site configuration
+		$piwikSiteId = self::$wpPiwik->isConfigured () ? self::$wpPiwik->getPiwikSiteId () : false;
+		if (! self::$wpPiwik->isNetworkMode() ) {
+			$this->showCheckbox ( 'auto_site_config', __ ( 'Auto config', 'wp-piwik' ), __ ( 'Check this to automatically choose your blog from your Piwik sites by URL. If your blog is not added to Piwik yet, WP-Piwik will add a new site.', 'wp-piwik' ), false, '$j(\'tr.wp-piwik-auto-option\').toggle(\'hidden\');' . ($piwikSiteId ? '$j(\'#site_id\').val(' . $piwikSiteId . ');' : '') );
+			if (self::$wpPiwik->isConfigured ()) {
+				$piwikSiteList = self::$wpPiwik->getPiwikSiteDetails ();
+				if (is_array($piwikSiteList))
+					foreach ($piwikSiteList as $details)
+						$piwikSiteDetails[$details['idsite']] = $details;
+				unset($piwikSiteList);
+				if ( $piwikSiteId != 'n/a' && isset( $piwikSiteDetails ) && is_array( $piwikSiteDetails ) )
+					$piwikSiteDescription = $piwikSiteDetails [$piwikSiteId] ['name'] . ' (' . $piwikSiteDetails [$piwikSiteId] ['main_url'] . ')';
+				else
+					$piwikSiteDescription = 'n/a';
+				echo '<tr class="wp-piwik-auto-option' . (! self::$settings->getGlobalOption ( 'auto_site_config' ) ? ' hidden' : '') . '"><th scope="row">' . __ ( 'Determined site', 'wp-piwik' ) . ':</th><td>' . $piwikSiteDescription . '</td></tr>';
+				if (isset ( $piwikSiteDetails ) && is_array ( $piwikSiteDetails ))
+					foreach ( $piwikSiteDetails as $key => $siteData )
+						$siteList [$siteData['idsite']] = $siteData ['name'] . ' (' . $siteData ['main_url'] . ')';
+					if (isset($siteList))
+						$this->showSelect ( 'site_id', __ ( 'Select site', 'wp-piwik' ), $siteList, 'Choose the Piwik site corresponding to this blog.', '', self::$settings->getGlobalOption ( 'auto_site_config' ), 'wp-piwik-auto-option', true, false );
+			}
+		} else echo '<tr class="hidden"><td colspan="2"><input type="hidden" name="wp-piwik[auto_site_config]" value="1" /></td></tr>';
+
+		echo $submitButton;
+
+		echo '</tbody></table><table id="statistics" class="wp-piwik_menu-tab hidden"><tbody>';
+		// Stats configuration
+		$this->showSelect ( 'default_date', __ ( 'Piwik default date', 'wp-piwik' ), array (
+				'today' => __ ( 'Today', 'wp-piwik' ),
+				'yesterday' => __ ( 'Yesterday', 'wp-piwik' ),
+				'current_month' => __ ( 'Current month', 'wp-piwik' ),
+				'last_month' => __ ( 'Last month', 'wp-piwik' ),
+				'current_week' => __ ( 'Current week', 'wp-piwik' ),
+				'last_week' => __ ( 'Last week', 'wp-piwik' )
+		), __ ( 'Default date shown on statistics page.', 'wp-piwik' ) );
+
+		$this->showCheckbox ( 'stats_seo', __ ( 'Show SEO data', 'wp-piwik' ), __ ( 'Display SEO ranking data on statistics page.', 'wp-piwik' ) . ' (' . __ ( 'Slow!', 'wp-piwik' ) . ')' );
+
+		$this->showSelect ( 'dashboard_widget', __ ( 'Dashboard overview', 'wp-piwik' ), array (
+				'disabled' => __ ( 'Disabled', 'wp-piwik' ),
+				'yesterday' => __ ( 'Yesterday', 'wp-piwik' ),
+				'today' => __ ( 'Today', 'wp-piwik' ),
+				'last30' => __ ( 'Last 30 days', 'wp-piwik' )
+		), __ ( 'Enable WP-Piwik dashboard widget &quot;Overview&quot;.', 'wp-piwik' ) );
+
+		$this->showCheckbox ( 'dashboard_chart', __ ( 'Dashboard graph', 'wp-piwik' ), __ ( 'Enable WP-Piwik dashboard widget &quot;Graph&quot;.', 'wp-piwik' ) );
+
+		$this->showCheckbox ( 'dashboard_seo', __ ( 'Dashboard SEO', 'wp-piwik' ), __ ( 'Enable WP-Piwik dashboard widget &quot;SEO&quot;.', 'wp-piwik' ) . ' (' . __ ( 'Slow!', 'wp-piwik' ) . ')' );
+
+		$this->showCheckbox ( 'toolbar', __ ( 'Show graph on WordPress Toolbar', 'wp-piwik' ), __ ( 'Display a last 30 days visitor graph on WordPress\' toolbar.', 'wp-piwik' ) );
+
+		echo '<tr><th scope="row"><label for="capability_read_stats">' . __ ( 'Display stats to', 'wp-piwik' ) . '</label>:</th><td>';
+		$filter = self::$settings->getGlobalOption ( 'capability_read_stats' );
+		foreach ( $wp_roles->role_names as $key => $name ) {
+			echo '<input type="checkbox" ' . (isset ( $filter [$key] ) && $filter [$key] ? 'checked="checked" ' : '') . 'value="1" onchange="$j(\'#capability_read_stats-' . $key . '-input\').val(this.checked?1:0);" />';
+			echo '<input id="capability_read_stats-' . $key . '-input" type="hidden" name="wp-piwik[capability_read_stats][' . $key . ']" value="' . ( int ) (isset ( $filter [$key] ) && $filter [$key]) . '" />';
+			echo $name . ' &nbsp; ';
+		}
+		echo '<span class="dashicons dashicons-editor-help" onclick="$j(\'#capability_read_stats-desc\').toggleClass(\'hidden\');"></span> <p class="description hidden" id="capability_read_stats-desc">' . __ ( 'Choose user roles allowed to see the statistics page.', 'wp-piwik' ) . '</p></td></tr>';
+
+		$this->showCheckbox ( 'perpost_stats', __ ( 'Show per post stats', 'wp-piwik' ), __ ( 'Show stats about single posts at the post edit admin page.', 'wp-piwik' ) );
+
+		$this->showCheckbox ( 'piwik_shortcut', __ ( 'Piwik shortcut', 'wp-piwik' ), __ ( 'Display a shortcut to Piwik itself.', 'wp-piwik' ) );
+
+		$this->showInput ( 'plugin_display_name', __ ( 'WP-Piwik display name', 'wp-piwik' ), __ ( 'Plugin name shown in WordPress.', 'wp-piwik' ) );
+
+		$this->showCheckbox ( 'shortcodes', __ ( 'Enable shortcodes', 'wp-piwik' ), __ ( 'Enable shortcodes in post or page content.', 'wp-piwik' ) );
+
+		echo $submitButton;
+
+		echo '</tbody></table><table id="tracking" class="wp-piwik_menu-tab hidden"><tbody>';
+
+		// Tracking Configuration
+		$isNotTracking = self::$settings->getGlobalOption ( 'track_mode' ) == 'disabled';
+		$isNotGeneratedTracking = $isNotTracking || self::$settings->getGlobalOption ( 'track_mode' ) == 'manually';
+		$fullGeneratedTrackingGroup = 'wp-piwik-track-option wp-piwik-track-option-default wp-piwik-track-option-js wp-piwik-track-option-proxy';
+
+		$description = sprintf ( '%s<br /><strong>%s:</strong> %s<br /><strong>%s:</strong> %s<br /><strong>%s:</strong> %s<br /><strong>%s:</strong> %s<br /><strong>%s:</strong> %s', __ ( 'You can choose between four tracking code modes:', 'wp-piwik' ), __ ( 'Disabled', 'wp-piwik' ), __ ( 'WP-Piwik will not add the tracking code. Use this, if you want to add the tracking code to your template files or you use another plugin to add the tracking code.', 'wp-piwik' ), __ ( 'Default tracking', 'wp-piwik' ), __ ( 'WP-Piwik will use Piwik\'s standard tracking code.', 'wp-piwik' ), __ ( 'Use js/index.php', 'wp-piwik' ), __ ( 'You can choose this tracking code, to deliver a minified proxy code and to avoid using the files called piwik.js or piwik.php.', 'wp-piwik' ).' '.sprintf( __( 'See %sreadme file%s.', 'wp-piwik' ), '<a href="http://demo.piwik.org/js/README">', '</a>'), __ ( 'Use proxy script', 'wp-piwik' ), __ ( 'Use this tracking code to not reveal the Piwik server URL.', 'wp-piwik' ) . ' ' . sprintf ( __ ( 'See %sPiwik FAQ%s.', 'wp-piwik' ), '<a href="http://piwik.org/faq/how-to/#faq_132">', '</a>' ) , __ ( 'Enter manually', 'wp-piwik' ), __ ( 'Enter your own tracking code manually. You can choose one of the prior options, pre-configure your tracking code and switch to manually editing at last.', 'wp-piwik' ).( self::$wpPiwik->isNetworkMode() ? ' '.__ ( 'Use the placeholder {ID} to add the Piwik site ID.', 'wp-piwik' ) : '' ) );
+		$this->showSelect ( 'track_mode', __ ( 'Add tracking code', 'wp-piwik' ), array (
+				'disabled' => __ ( 'Disabled', 'wp-piwik' ),
+				'default' => __ ( 'Default tracking', 'wp-piwik' ),
+				'js' => __ ( 'Use js/index.php', 'wp-piwik' ),
+				'proxy' => __ ( 'Use proxy script', 'wp-piwik' ),
+				'manually' => __ ( 'Enter manually', 'wp-piwik' )
+		), $description, '$j(\'tr.wp-piwik-track-option\').addClass(\'hidden\'); $j(\'tr.wp-piwik-track-option-\' + $j(\'#track_mode\').val()).removeClass(\'hidden\'); $j(\'#tracking_code, #noscript_code\').prop(\'readonly\', $j(\'#track_mode\').val() != \'manually\');' );
+
+		$this->showTextarea ( 'tracking_code', __ ( 'Tracking code', 'wp-piwik' ), 15, 'This is a preview of your current tracking code. If you choose to enter your tracking code manually, you can change it here.', $isNotTracking, 'wp-piwik-track-option wp-piwik-track-option-default wp-piwik-track-option-js wp-piwik-track-option-proxy wp-piwik-track-option-manually', true, '', (self::$settings->getGlobalOption ( 'track_mode' ) != 'manually'), false );
+
+		$this->showSelect ( 'track_codeposition', __ ( 'JavaScript code position', 'wp-piwik' ), array (
+				'footer' => __ ( 'Footer', 'wp-piwik' ),
+				'header' => __ ( 'Header', 'wp-piwik' )
+		), __ ( 'Choose whether the JavaScript code is added to the footer or the header.', 'wp-piwik' ), '', $isNotTracking, 'wp-piwik-track-option wp-piwik-track-option-default wp-piwik-track-option-js wp-piwik-track-option-proxy wp-piwik-track-option-manually' );
+
+		$this->showTextarea ( 'noscript_code', __ ( 'Noscript code', 'wp-piwik' ), 2, 'This is a preview of your &lt;noscript&gt; code which is part of your tracking code.', $isNotGeneratedTracking || self::$settings->getGlobalOption ( 'track_mode' ) == 'proxy', 'wp-piwik-track-option wp-piwik-track-option-default wp-piwik-track-option-js', true, '', true, false );
+
+		$this->showCheckbox ( 'track_noscript', __ ( 'Add &lt;noscript&gt;', 'wp-piwik' ), __ ( 'Adds the &lt;noscript&gt; code to your footer.', 'wp-piwik' ) . ' ' . __ ( 'Disabled in proxy mode.', 'wp-piwik' ), $isNotGeneratedTracking || self::$settings->getGlobalOption ( 'track_mode' ) == 'proxy', 'wp-piwik-track-option wp-piwik-track-option-default wp-piwik-track-option-js' );
+
+		$this->showCheckbox ( 'track_nojavascript', __ ( 'Add rec parameter to noscript code', 'wp-piwik' ), __ ( 'Enable tracking for visitors without JavaScript (not recommended).', 'wp-piwik' ) . ' ' . sprintf ( __ ( 'See %sPiwik FAQ%s.', 'wp-piwik' ), '<a href="http://piwik.org/faq/how-to/#faq_176">', '</a>' ) . ' ' . __ ( 'Disabled in proxy mode.', 'wp-piwik' ), $isNotGeneratedTracking || self::$settings->getGlobalOption ( 'track_mode' ) == 'proxy', 'wp-piwik-track-option wp-piwik-track-option-default wp-piwik-track-option-js' );
+
+		$this->showSelect ( 'track_content', __ ( 'Enable content tracking', 'wp-piwik' ), array (
+				'disabled' => __ ( 'Disabled', 'wp-piwik' ),
+				'all' => __ ( 'Track all content blocks', 'wp-piwik' ),
+				'visible' => __ ( 'Track only visible content blocks', 'wp-piwik' )
+		), __ ( 'Content tracking allows you to track interaction with the content of a web page or application.' ) . ' ' . sprintf ( __ ( 'See %sPiwik documentation%s.', 'wp-piwik' ), '<a href="https://developer.piwik.org/guides/content-tracking">', '</a>' ), '', $isNotTracking, $fullGeneratedTrackingGroup . ' wp-piwik-track-option-manually' );
+
+		$this->showCheckbox ( 'track_search', __ ( 'Track search', 'wp-piwik' ), __ ( 'Use Piwik\'s advanced Site Search Analytics feature.' ) . ' ' . sprintf ( __ ( 'See %sPiwik documentation%s.', 'wp-piwik' ), '<a href="http://piwik.org/docs/site-search/#track-site-search-using-the-tracking-api-advanced-users-only">', '</a>' ), $isNotTracking, $fullGeneratedTrackingGroup . ' wp-piwik-track-option-manually' );
+
+		$this->showCheckbox ( 'track_404', __ ( 'Track 404', 'wp-piwik' ), __ ( 'WP-Piwik can automatically add a 404-category to track 404-page-visits.', 'wp-piwik' ) . ' ' . sprintf ( __ ( 'See %sPiwik FAQ%s.', 'wp-piwik' ), '<a href="http://piwik.org/faq/how-to/faq_60/">', '</a>' ), $isNotTracking, $fullGeneratedTrackingGroup . ' wp-piwik-track-option-manually' );
+
+		$this->showCheckbox ( 'add_post_annotations', __ ( 'Add annotation on new post', 'wp-piwik' ), __ ( 'Add a Piwik annotation on each new post.', 'wp-piwik' ) . ' ' . sprintf ( __ ( 'See %sPiwik documentation%s.', 'wp-piwik' ), '<a href="http://piwik.org/docs/annotations/">', '</a>' ), $isNotTracking, $fullGeneratedTrackingGroup . ' wp-piwik-track-option-manually' );
+
+		$this->showCheckbox ( 'add_customvars_box', __ ( 'Show custom variables box', 'wp-piwik' ), __ ( ' Show a &quot;custom variables&quot; edit box on post edit page.', 'wp-piwik' ) . ' ' . sprintf ( __ ( 'See %sPiwik documentation%s.', 'wp-piwik' ), '<a href="http://piwik.org/docs/custom-variables/">', '</a>' ), $isNotGeneratedTracking, $fullGeneratedTrackingGroup . ' wp-piwik-track-option-manually' );
+
+		$this->showInput ( 'add_download_extensions', __ ( 'Add new file types for download tracking', 'wp-piwik' ), __ ( 'Add file extensions for download tracking, divided by a vertical bar (&#124;).', 'wp-piwik' ) . ' ' . sprintf ( __ ( 'See %sPiwik documentation%s.', 'wp-piwik' ), '<a href="https://developer.piwik.org/guides/tracking-javascript-guide#file-extensions-for-tracking-downloads">', '</a>' ), $isNotGeneratedTracking, $fullGeneratedTrackingGroup );
+
+		$this->showCheckbox ( 'disable_cookies', __ ( 'Disable cookies', 'wp-piwik' ), __ ( 'Disable all tracking cookies for a visitor.', 'wp-piwik' ), $isNotGeneratedTracking, $fullGeneratedTrackingGroup );
+
+		$this->showCheckbox ( 'limit_cookies', __ ( 'Limit cookie lifetime', 'wp-piwik' ), __ ( 'You can limit the cookie lifetime to avoid tracking your users over a longer period as necessary.', 'wp-piwik' ), $isNotGeneratedTracking, $fullGeneratedTrackingGroup, true, '$j(\'tr.wp-piwik-cookielifetime-option\').toggleClass(\'wp-piwik-hidden\');' );
+
+		$this->showInput ( 'limit_cookies_visitor', __ ( 'Visitor timeout (seconds)', 'wp-piwik' ), false, $isNotGeneratedTracking || ! self::$settings->getGlobalOption ( 'limit_cookies' ), $fullGeneratedTrackingGroup.' wp-piwik-cookielifetime-option'. (self::$settings->getGlobalOption ( 'limit_cookies' )? '': ' wp-piwik-hidden') );
+
+		$this->showInput ( 'limit_cookies_session', __ ( 'Session timeout (seconds)', 'wp-piwik' ), false, $isNotGeneratedTracking || ! self::$settings->getGlobalOption ( 'limit_cookies' ), $fullGeneratedTrackingGroup .' wp-piwik-cookielifetime-option'. (self::$settings->getGlobalOption ( 'limit_cookies' )? '': ' wp-piwik-hidden') );
+
+		$this->showInput ( 'limit_cookies_referral', __ ( 'Referral timeout (seconds)', 'wp-piwik' ), false, $isNotGeneratedTracking || ! self::$settings->getGlobalOption ( 'limit_cookies' ), $fullGeneratedTrackingGroup .' wp-piwik-cookielifetime-option'. (self::$settings->getGlobalOption ( 'limit_cookies' )? '': ' wp-piwik-hidden') );
+
+		$this->showCheckbox ( 'track_admin', __ ( 'Track admin pages', 'wp-piwik' ), __ ( 'Enable to track users on admin pages (remember to configure the tracking filter appropriately).', 'wp-piwik' ), $isNotTracking, $fullGeneratedTrackingGroup . ' wp-piwik-track-option-manually' );
+
+		echo '<tr class="' . $fullGeneratedTrackingGroup . ' wp-piwik-track-option-manually' . ($isNotTracking ? ' hidden' : '') . '">';
+		echo '<th scope="row"><label for="capability_stealth">' . __ ( 'Tracking filter', 'wp-piwik' ) . '</label>:</th><td>';
+		$filter = self::$settings->getGlobalOption ( 'capability_stealth' );
+		foreach ( $wp_roles->role_names as $key => $name )
+			echo '<input type="checkbox" ' . (isset ( $filter [$key] ) && $filter [$key] ? 'checked="checked" ' : '') . 'value="1" name="wp-piwik[capability_stealth][' . $key . ']" /> ' . $name . ' &nbsp; ';
+		echo '<span class="dashicons dashicons-editor-help" onclick="$j(\'#capability_stealth-desc\').toggleClass(\'hidden\');"></span> <p class="description hidden" id="capability_stealth-desc">' . __ ( 'Choose users by user role you do <strong>not</strong> want to track.', 'wp-piwik' ) . '</p></td></tr>';
+
+		$this->showCheckbox ( 'track_across', __ ( 'Track subdomains in the same website', 'wp-piwik' ), __ ( 'Adds *.-prefix to cookie domain.', 'wp-piwik' ) . ' ' . sprintf ( __ ( 'See %sPiwik documentation%s.', 'wp-piwik' ), '<a href="https://developer.piwik.org/guides/tracking-javascript-guide#tracking-subdomains-in-the-same-website">', '</a>' ), $isNotGeneratedTracking, $fullGeneratedTrackingGroup );
+
+		$this->showCheckbox ( 'track_across_alias', __ ( 'Do not count subdomains as outlink', 'wp-piwik' ), __ ( 'Adds *.-prefix to tracked domain.', 'wp-piwik' ) . ' ' . sprintf ( __ ( 'See %sPiwik documentation%s.', 'wp-piwik' ), '<a href="https://developer.piwik.org/guides/tracking-javascript-guide#outlink-tracking-exclusions">', '</a>' ), $isNotGeneratedTracking, $fullGeneratedTrackingGroup );
+
+		$this->showCheckbox ( 'track_feed', __ ( 'Track RSS feeds', 'wp-piwik' ), __ ( 'Enable to track posts in feeds via tracking pixel.', 'wp-piwik' ), $isNotTracking, $fullGeneratedTrackingGroup . ' wp-piwik-track-option-manually' );
+
+		$this->showCheckbox ( 'track_feed_addcampaign', __ ( 'Track RSS feed links as campaign', 'wp-piwik' ), __ ( 'This will add Piwik campaign parameters to the RSS feed links.' . ' ' . sprintf ( __ ( 'See %sPiwik documentation%s.', 'wp-piwik' ), '<a href="http://piwik.org/docs/tracking-campaigns/">', '</a>' ), 'wp-piwik' ), $isNotTracking, $fullGeneratedTrackingGroup . ' wp-piwik-track-option-manually', true, '$j(\'tr.wp-piwik-feed_campaign-option\').toggle(\'hidden\');' );
+
+		$this->showInput ( 'track_feed_campaign', __ ( 'RSS feed campaign', 'wp-piwik' ), __ ( 'Keyword: post name.', 'wp-piwik' ), $isNotGeneratedTracking || ! self::$settings->getGlobalOption ( 'track_feed_addcampaign' ), $fullGeneratedTrackingGroup . ' wp-piwik-feed_campaign-option' );
+
+		$this->showInput ( 'track_heartbeat', __ ( 'Enable heartbeat timer', 'wp-piwik' ), __ ( 'Enable a heartbeat timer to get more accurate visit lengths by sending periodical HTTP ping requests as long as the site is opened. Enter the time between the pings in seconds (Piwik default: 15) to enable or 0 to disable this feature. <strong>Note:</strong> This will cause a lot of additional HTTP requests on your site.', 'wp-piwik' ), $isNotGeneratedTracking, $fullGeneratedTrackingGroup );
+
+		echo $submitButton;
+		echo '</tbody></table><table id="expert" class="wp-piwik_menu-tab hidden"><tbody>';
+
+		$this->showText ( __ ( 'Usually, you do not need to change these settings. If you want to do so, you should know what you do or you got an expert\'s advice.', 'wp-piwik' ) );
+
+		$this->showCheckbox ( 'cache', __ ( 'Enable cache', 'wp-piwik' ), __ ( 'Cache API calls, which not contain today\'s values, for a week.', 'wp-piwik' ) );
+
+		if (function_exists('curl_init') && ini_get('allow_url_fopen'))
+			$this->showSelect ( 'http_connection', __ ( 'HTTP connection via', 'wp-piwik' ), array (
+				'curl' => __ ( 'cURL', 'wp-piwik' ),
+				'fopen' => __ ( 'fopen', 'wp-piwik' )
+			), __('Choose whether WP-Piwik should use cURL or fopen to connect to Piwik in HTTP or Pro mode.', 'wp-piwik' ) );
+
+		$this->showSelect ( 'http_method', __ ( 'HTTP method', 'wp-piwik' ), array (
+				'post' => __ ( 'POST', 'wp-piwik' ),
+				'get' => __ ( 'GET', 'wp-piwik' )
+		), __('Choose whether WP-Piwik should use POST or GET in HTTP or Pro mode.', 'wp-piwik' ) );
+
+		$this->showCheckbox ( 'disable_timelimit', __ ( 'Disable time limit', 'wp-piwik' ), __ ( 'Use set_time_limit(0) if stats page causes a time out.', 'wp-piwik' ) );
+
+		$this->showInput ( 'connection_timeout', __ ( 'Connection timeout', 'wp-piwik' ), 'Define a connection timeout for all HTTP requests done by WP-Piwik in seconds.' );
+
+		$this->showCheckbox ( 'disable_ssl_verify', __ ( 'Disable SSL peer verification', 'wp-piwik' ), '(' . __ ( 'not recommended', 'wp-piwik' ) . ')' );
+
+		$this->showSelect ( 'piwik_useragent', __ ( 'User agent', 'wp-piwik' ), array (
+				'php' => __ ( 'Use the PHP default user agent', 'wp-piwik' ) . (ini_get ( 'user_agent' ) ? '(' . ini_get ( 'user_agent' ) . ')' : ' (' . __ ( 'empty', 'wp-piwik' ) . ')'),
+				'own' => __ ( 'Define a specific user agent', 'wp-piwik' )
+		), 'WP-Piwik can send the default user agent defined by your PHP settings or use a specific user agent below. The user agent is send by WP-Piwik if HTTP requests are performed.', '$j(\'tr.wp-piwik-useragent-option\').toggleClass(\'hidden\');' );
+		$this->showInput ( 'piwik_useragent_string', __ ( 'Specific user agent', 'wp-piwik' ), 'Define a user agent description which is send by WP-Piwik if HTTP requests are performed.', self::$settings->getGlobalOption ( 'piwik_useragent' ) != 'own', 'wp-piwik-useragent-option' );
+
+		$this->showCheckbox ( 'track_datacfasync', __ ( 'Add data-cfasync=false', 'wp-piwik' ), __ ( 'Adds data-cfasync=false to the script tag, e.g., to ask Rocket Loader to ignore the script.' . ' ' . sprintf ( __ ( 'See %sCloudFlare Knowledge Base%s.', 'wp-piwik' ), '<a href="https://support.cloudflare.com/hc/en-us/articles/200169436-How-can-I-have-Rocket-Loader-ignore-my-script-s-in-Automatic-Mode-">', '</a>' ), 'wp-piwik' ) );
+
+		$this->showInput ( 'track_cdnurl', __ ( 'CDN URL', 'wp-piwik' ).' http://', 'Enter URL if you want to load the tracking code via CDN.' );
+
+		$this->showInput ( 'track_cdnurlssl', __ ( 'CDN URL (SSL)', 'wp-piwik' ).' https://', 'Enter URL if you want to load the tracking code via a separate SSL CDN.' );
+
+		$this->showSelect ( 'force_protocol', __ ( 'Force Piwik to use a specific protocol', 'wp-piwik' ), array (
+				'disabled' => __ ( 'Disabled (default)', 'wp-piwik' ),
+				'http' => __ ( 'http', 'wp-piwik' ),
+				'https' => __ ( 'https (SSL)', 'wp-piwik' )
+		), __ ( 'Choose if you want to explicitly force Piwik to use HTTP or HTTPS. Does not work with a CDN URL.', 'wp-piwik' ) );
+
+		$this->showSelect ( 'update_notice', __ ( 'Update notice', 'wp-piwik' ), array (
+				'enabled' => __ ( 'Show always if WP-Piwik is updated', 'wp-piwik' ),
+				'script' => __ ( 'Show only if WP-Piwik is updated and settings were changed', 'wp-piwik' ),
+				'disabled' => __ ( 'Disabled', 'wp-piwik' )
+		), __ ( 'Choose if you want to get an update notice if WP-Piwik is updated.', 'wp-piwik' ) );
+
+		echo $submitButton;
+		?>
+			</tbody>
+		</table>
+		<table id="support" class="wp-piwik_menu-tab hidden">
+			<tbody>
+				<tr><td colspan="2"><?php
+					echo $this->showSupport();
+				?></td></tr>
+			</tbody>
+		</table>
+		<table id="credits" class="wp-piwik_menu-tab hidden">
+			<tbody>
+				<tr><td colspan="2"><?php
+					echo $this->showCredits();
+				?></td></tr>
+			</tbody>
+		</table>
+		<input type="hidden" name="wp-piwik[proxy_url]"
+			value="<?php echo self::$settings->getGlobalOption('proxy_url'); ?>" />
+	</form>
+</div>
+<?php
+	}
+
+	/**
+	 * Show an option's description
+	 *
+	 * @param string $id option id
+	 * @param string $description option description
+	 * @param boolean $hideDescription set to false to show description initially (default: true)
+	 * @return string full description HTML
+	 */
+	private function getDescription($id, $description, $hideDescription = true) {
+		return sprintf ( '<span class="dashicons dashicons-editor-help" onclick="$j(\'#%s-desc\').toggleClass(\'hidden\');"></span> <p class="description' . ($hideDescription ? ' hidden' : '') . '" id="%1$s-desc">%s</p>', $id, $description );
+	}
+
+	/**
+	 * Show a checkbox option
+	 *
+	 * @param string $id option id
+	 * @param string $name descriptive option name
+	 * @param string $description option description
+	 * @param boolean $isHidden set to true to initially hide the option (default: false)
+	 * @param string $groupName define a class name to access a group of option rows by javascript (default: empty)
+	 * @param boolean $hideDescription $hideDescription set to false to show description initially (default: true)
+	 * @param string $onChange javascript for onchange event (default: empty)
+	 */
+	private function showCheckbox($id, $name, $description, $isHidden = false, $groupName = '', $hideDescription = true, $onChange = '') {
+		printf ( '<tr class="' . $groupName . ($isHidden ? ' hidden' : '') . '"><th scope="row"><label for="%2$s">%s</label>:</th><td><input type="checkbox" value="1"' . (self::$settings->getGlobalOption ( $id ) ? ' checked="checked"' : '') . ' onchange="$j(\'#%s\').val(this.checked?1:0);%s" /><input id="%2$s" type="hidden" name="wp-piwik[%2$s]" value="' . ( int ) self::$settings->getGlobalOption ( $id ) . '" /> %s</td></tr>', $name, $id, $onChange, $this->getDescription ( $id, $description, $hideDescription ) );
+	}
+
+	/**
+	 * Show a textarea option
+	 *
+	 * @param string $id option id
+	 * @param string $name descriptive option name
+	 * @param int $rows number of rows to show
+	 * @param string $description option description
+	 * @param boolean $isHidden set to true to initially hide the option (default: false)
+	 * @param string $groupName define a class name to access a group of option rows by javascript (default: empty)
+	 * @param boolean $hideDescription $hideDescription set to false to show description initially (default: true)
+	 * @param string $onChange javascript for onchange event (default: empty)
+	 * @param boolean $isReadonly set textarea to read only (default: false)
+	 * @param boolean $global set to false if the textarea shows a site-specific option (default: true)
+	 */
+	private function showTextarea($id, $name, $rows, $description, $isHidden, $groupName, $hideDescription = true, $onChange = '', $isReadonly = false, $global = true) {
+		printf (
+			'<tr class="' . $groupName . ($isHidden ? ' hidden' : '') . '"><th scope="row"><label for="%2$s">%s</label>:</th><td><textarea cols="80" rows="' . $rows . '" id="%s" name="wp-piwik[%2$s]" onchange="%s"' . ($isReadonly ? ' readonly="readonly"' : '') . '>%s</textarea> %s</td></tr>', $name, $id, $onChange, ($global ? self::$settings->getGlobalOption ( $id ) : self::$settings->getOption ( $id )), $this->getDescription ( $id, $description, $hideDescription ) );
+	}
+
+	/**
+	 * Show a simple text
+	 *
+	 * @param string $text Text to show
+	 */
+	private function showText($text) {
+		printf ( '<tr><td colspan="2"><p>%s</p></td></tr>', $text );
+	}
+
+	/**
+	 * Show an input option
+	 *
+	 * @param string $id option id
+	 * @param string $name descriptive option name
+	 * @param string $description option description
+	 * @param boolean $isHidden set to true to initially hide the option (default: false)
+	 * @param string $groupName define a class name to access a group of option rows by javascript (default: empty)
+	 * @param string $rowName define a class name to access the specific option row by javascript (default: empty)
+	 * @param boolean $hideDescription $hideDescription set to false to show description initially (default: true)
+	 * @param boolean $wide Create a wide box (default: false)
+	 */
+	private function showInput($id, $name, $description, $isHidden = false, $groupName = '', $rowName = false, $hideDescription = true, $wide = false) {
+		printf ( '<tr class="%s%s"%s><th scope="row"><label for="%5$s">%s:</label></th><td><input '.($wide?'class="wp-piwik-wide" ':'').'name="wp-piwik[%s]" id="%5$s" value="%s" /> %s</td></tr>', $isHidden ? 'hidden ' : '', $groupName ? $groupName : '', $rowName ? ' id="' . $groupName . '-' . $rowName . '"' : '', $name, $id, self::$settings->getGlobalOption ( $id ), !empty($description) ? $this->getDescription ( $id, $description, $hideDescription ) : '' );
+	}
+
+	/**
+	 * Show a select box option
+	 *
+	 * @param string $id option id
+	 * @param string $name descriptive option name
+	 * @param array $options list of options to show array[](option id => descriptive name)
+	 * @param string $description option description
+	 * @param string $onChange javascript for onchange event (default: empty)
+	 * @param boolean $isHidden set to true to initially hide the option (default: false)
+	 * @param string $groupName define a class name to access a group of option rows by javascript (default: empty)
+	 * @param boolean $hideDescription $hideDescription set to false to show description initially (default: true)
+	 * @param boolean $global set to false if the textarea shows a site-specific option (default: true)
+	 */
+	private function showSelect($id, $name, $options = array(), $description = '', $onChange = '', $isHidden = false, $groupName = '', $hideDescription = true, $global = true) {
+		$optionList = '';
+		$default = $global ? self::$settings->getGlobalOption ( $id ) : self::$settings->getOption ( $id );
+		if (is_array ( $options ))
+			foreach ( $options as $key => $value )
+				$optionList .= sprintf ( '<option value="%s"' . ($key == $default ? ' selected="selected"' : '') . '>%s</option>', $key, $value );
+		printf ( '<tr class="' . $groupName . ($isHidden ? ' hidden' : '') . '"><th scope="row"><label for="%2$s">%s:</label></th><td><select name="wp-piwik[%s]" id="%2$s" onchange="%s">%s</select> %s</td></tr>', $name, $id, $onChange, $optionList, $this->getDescription ( $id, $description, $hideDescription ) );
+	}
+
+	/**
+	 * Show an info box
+	 *
+	 * @param string $type box style (e.g., updated, error)
+	 * @param string $icon box icon, see https://developer.wordpress.org/resource/dashicons/
+	 * @param string $content box message
+	 */
+	private function showBox($type, $icon, $content) {
+		printf ( '<tr><td colspan="2"><div class="%s"><p><span class="dashicons dashicons-%s"></span> %s</p></div></td></tr>', $type, $icon, $content );
+	}
+
+	/**
+	 * Show headline
+	 * @param int $order headline order (h?-tag), set to 0 to avoid headline-tagging
+	 * @param string $icon headline icon, see https://developer.wordpress.org/resource/dashicons/
+	 * @param string $headline headline text
+	 * @param string $addPluginName set to true to add the plugin name to the headline (default: false)
+	 */
+	private function showHeadline($order, $icon, $headline, $addPluginName = false) {
+		echo $this->getHeadline ( $order, $icon, $headline, $addPluginName = false );
+	}
+
+	/**
+	 * Get headline HTML
+	 *
+	 * @param int $order headline order (h?-tag), set to 0 to avoid headline-tagging
+	 * @param string $icon headline icon, see https://developer.wordpress.org/resource/dashicons/
+	 * @param string $headline headline text
+	 * @param string $addPluginName set to true to add the plugin name to the headline (default: false)
+	 */
+	private function getHeadline($order, $icon, $headline, $addPluginName = false) {
+		echo ($order > 0 ? "<h$order>" : '') . sprintf ( '<span class="dashicons dashicons-%s"></span> %s%s', $icon, ($addPluginName ? self::$settings->getGlobalOption ( 'plugin_display_name' ) . ' ' : ''), __ ( $headline, 'wp-piwik' ) ) . ($order > 0 ? "</h$order>" : '');
+	}
+
+	/**
+	 * Show donation info
+	 */
+	private function showDonation() {
+		?>
+<div class="wp-piwik-donate">
+	<p>
+		<strong><?php _e('Donate','wp-piwik'); ?></strong>
+	</p>
+	<p><?php _e('If you like WP-Piwik, you can support its development by a donation:', 'wp-piwik'); ?></p>
+	<script type="text/javascript">
+			/* <![CDATA[ */
+			window.onload = function() {
+        		FlattrLoader.render({
+            		'uid': 'flattr',
+            		'url': 'http://wp.local',
+            		'title': 'Title of the thing',
+            		'description': 'Description of the thing'
+				}, 'element_id', 'replace');
+			};
+			/* ]]> */
+			</script>
+	<div>
+		<a class="FlattrButton" style="display: none;"
+			title="WordPress Plugin WP-Piwik"
+			rel="flattr;uid:braekling;category:software;tags:wordpress,piwik,plugin,statistics;"
+			href="https://www.braekling.de/wp-piwik-wpmu-piwik-wordpress">This
+			WordPress plugin adds a Piwik stats site to your WordPress dashboard.
+			It's also able to add the Piwik tracking code to your blog using
+			wp_footer. You need a running Piwik installation and at least view
+			access to your stats.</a>
+	</div>
+	<div>
+		Paypal
+		<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
+			<input type="hidden" name="cmd" value="_s-xclick" /> <input
+				type="hidden" name="hosted_button_id" value="6046779" /> <input
+				type="image"
+				src="https://www.paypal.com/en_GB/i/btn/btn_donateCC_LG.gif"
+				name="submit" alt="PayPal - The safer, easier way to pay online." />
+			<img alt="" border="0"
+				src="https://www.paypal.com/de_DE/i/scr/pixel.gif" width="1"
+				height="1" />
+		</form>
+	</div>
+	<div>
+		<a
+			href="http://www.amazon.de/gp/registry/wishlist/111VUJT4HP1RA?reveal=unpurchased&amp;filter=all&amp;sort=priority&amp;layout=standard&amp;x=12&amp;y=14"><?php _e('My Amazon.de wishlist', 'wp-piwik'); ?></a>
+	</div>
+	<div>
+				<?php _e('Please don\'t forget to vote the compatibility at the','wp-piwik'); ?> <a
+			href="http://wordpress.org/extend/plugins/wp-piwik/">WordPress.org
+			Plugin Directory</a>.
+	</div>
+</div><?php
+	}
+
+	/**
+	 * Register admin scripts
+	 *
+	 * @see \WP_Piwik\Admin::printAdminScripts()
+	 */
+	public function printAdminScripts() {
+		wp_enqueue_script ( 'jquery' );
+	}
+
+	/**
+	 * Extend admin header
+	 *
+	 * @see \WP_Piwik\Admin::extendAdminHeader()
+	 */
+	public function extendAdminHeader() {
+		echo '<script type="text/javascript">var $j = jQuery.noConflict();</script>';
+		echo '<script type="text/javascript">/* <![CDATA[ */(function() {var s = document.createElement(\'script\');var t = document.getElementsByTagName(\'script\')[0];s.type = \'text/javascript\';s.async = true;s.src = \'//api.flattr.com/js/0.6/load.js?mode=auto\';t.parentNode.insertBefore(s, t);})();/* ]]> */</script>';
+	}
+
+	/**
+	 * Show credits
+	 */
+	public function showCredits() {
+		?>
+		<p><strong><?php _e('Thank you very much for your donation', 'wp-piwik'); ?>:</strong> Marco L., Rolf W., Tobias U., Lars K., Donna F., Kevin D., Ramos S., Thomas M., John C., Andreas G., Ben M., Myra R. I., Carlos U. R.-S., Oleg I., M. N., Daniel K., James L., Jochen K., Cyril P., Thomas K., <?php _e('the Piwik team itself','wp-piwik');?><?php _e(', and all people flattering this','wp-piwik'); ?>!</p>
+		<p><?php _e('Graphs powered by <a href="http://www.jqplot.com/">jqPlot</a> (License: GPL 2.0 and MIT) and <a href="http://omnipotent.net/jquery.sparkline/">jQuery Sparklines</a> (License: New BSD License).','wp-piwik'); ?></p>
+		<p><?php _e('Metabox support inspired by', 'wp-piwik'); echo ' <a href="http://www.code-styling.de/english/how-to-use-wordpress-metaboxes-at-own-plugins">Heiko Rabe\'s metabox demo plugin</a>.';?></p>
+		<p><?php _e('Tabbed settings page suggested by the', 'wp-piwik'); echo' <a href="http://wp.smashingmagazine.com/2011/10/20/create-tabs-wordpress-settings-pages/">Smashing Magazine</a>.';?></p>
+		<p><?php _e('Thank you very much','wp-piwik'); ?>, Besnik Bleta, FatCow, Rene, Fab, EzBizNiz, Gormer, Natalya, AggelioPolis, Web Hosting Geeks, Web Hosting Rating, Nata Strazda (Web Hosting Hub), Hossein (LibreOffice localization team), Ste &amp; Chris <?php _e('for your translation work','wp-piwik'); ?>!</p>
+		<p><?php _e('Thank you very much, all users who send me mails containing criticism, commendation, feature requests and bug reports! You help me to make WP-Piwik much better.','wp-piwik'); ?></p>
+		<p><?php _e('Thank <strong>you</strong> for using my plugin. It is the best commendation if my piece of code is really used!','wp-piwik'); ?></p>
+		<?php
+	}
+
+	/**
+	 * Show support information
+	 */
+	public function showSupport() {
+		?><ul>
+			<li><?php _e('The best place to get help:', 'wp-piwik'); ?> <a href="https://wordpress.org/support/plugin/wp-piwik"><?php _e('WP-Piwik support forum','wp-piwik'); ?></a></li>
+			<li><?php _e('Please don\'t forget to vote the compatibility at the','wp-piwik'); ?> <a href="http://wordpress.org/extend/plugins/wp-piwik/">WordPress.org Plugin Directory</a>.</li>
+		</ul>
+		<h3><?php _e('Debugging', 'wp-piwik'); ?></h3>
+		<p><?php _e('Either allow_url_fopen has to be enabled <em>or</em> cURL has to be available:', 'wp-piwik'); ?></p>
+		<ol>
+			<li><?php
+				_e('cURL is','wp-piwik');
+				echo ' <strong>'.(function_exists('curl_init')?'':__('not','wp-piwik')).' ';
+				_e('available','wp-piwik');
+			?></strong>.</li>
+			<li><?php
+				_e('allow_url_fopen is','wp-piwik');
+				echo ' <strong>'.(ini_get('allow_url_fopen')?'':__('not','wp-piwik')).' ';
+				_e('enabled','wp-piwik');
+			?></strong>.</li>
+			<li><strong><?php echo (((function_exists('curl_init') && ini_get('allow_url_fopen') && self::$settings->getGlobalOption('http_connection') == 'curl') || (function_exists('curl_init') && !ini_get('allow_url_fopen')))?__('cURL', 'wp-piwik'):__('fopen', 'wp-piwik')).' ('.(self::$settings->getGlobalOption('http_method')=='post'?__('POST','wp-piwik'):__('GET','wp-piwik')).')</strong> '.__('is used.', 'wp-piwik'); ?></li>
+			<?php if (self::$settings->getGlobalOption('piwik_mode') == 'php') { ?><li><?php
+				_e('Determined Piwik base URL is', 'wp-piwik');
+				echo ' <strong>'.(self::$settings->getGlobalOption('proxy_url')).'</strong>';
+			?></li><?php } ?>	
+		</ol>
+		<p><?php _e('Tools', 'wp-piwik'); ?>:</p>
+		<ol>
+			<li><a href="<?php echo admin_url( (self::$settings->checkNetworkActivation () ? 'network/settings' : 'options-general').'.php?page='.$_GET['page'].'&testscript=1' ); ?>"><?php _e('Run testscript', 'wp-piwik'); ?></a></li>
+			<li><a href="<?php echo admin_url( (self::$settings->checkNetworkActivation () ? 'network/settings' : 'options-general').'.php?page='.$_GET['page'].'&sitebrowser=1' ); ?>"><?php _e('Sitebrowser', 'wp-piwik'); ?></a></li>
+			<li><a href="<?php echo admin_url( (self::$settings->checkNetworkActivation () ? 'network/settings' : 'options-general').'.php?page='.$_GET['page'].'&clear=1' ); ?>"><?php _e('Clear cache', 'wp-piwik'); ?></a></li>
+			<li><a onclick="return confirm('<?php _e('Are you sure you want to clear all settings?', 'wp-piwik'); ?>')" href="<?php echo admin_url( (self::$settings->checkNetworkActivation () ? 'network/settings' : 'options-general').'.php?page='.$_GET['page'].'&clear=2' ); ?>"><?php _e('Reset WP-Piwik', 'wp-piwik'); ?></a></li>
+		</ol>
+		<h3><?php _e('Latest support threads on WordPress.org', 'wp-piwik'); ?></h3><?php
+		$supportThreads = $this->readRSSFeed('http://wordpress.org/support/rss/plugin/wp-piwik');
+		if (!empty($supportThreads)) {
+			echo '<ol>';
+			foreach ($supportThreads as $supportThread)
+				echo '<li><a href="'.$supportThread['url'].'">'.$supportThread['title'].'</a></li>';
+			echo '</ol>';
+		}
+	}
+
+	/**
+	 * Read RSS feed
+	 *
+	 * @param string $feed
+	 *        	feed URL
+	 * @param int $cnt
+	 *        	item limit
+	 * @return array feed items array[](title, url)
+	 *
+	 */
+	private function readRSSFeed($feed, $cnt = 5) {
+		$result = array ();
+		if (function_exists ( 'simplexml_load_file' ) && ! empty ( $feed )) {
+			$xml = @simplexml_load_file ( $feed );
+			if (! $xml || ! isset ( $xml->channel [0]->item ))
+				return array (
+						array (
+								'title' => 'Can\'t read RSS feed.',
+								'url' => $xml
+						)
+				);
+			foreach ( $xml->channel [0]->item as $item ) {
+				if ($cnt -- == 0)
+					break;
+				$result [] = array (
+						'title' => $item->title [0],
+						'url' => $item->link [0]
+				);
+			}
+		}
+		return $result;
+	}
+
+	/**
+	 * Clear cache and reset settings
+	 *
+	 * @param boolean $clearSettings set to true to reset settings (default: false)
+	 */
+	private function clear($clearSettings = false) {
+		if ($clearSettings) {
+			self::$settings->resetSettings();
+			$this->showBox ( 'updated', 'yes', __ ( 'Settings cleared (except connection settings).' ) );
+		}
+		global $wpdb;
+		if (self::$settings->checkNetworkActivation()) {
+			$aryBlogs = \WP_Piwik\Settings::getBlogList();
+			if (is_array($aryBlogs))
+				foreach ($aryBlogs as $aryBlog) {
+					switch_to_blog($aryBlog['blog_id']);
+					$wpdb->query("DELETE FROM $wpdb->options WHERE option_name LIKE '_transient_wp-piwik_%'");
+					$wpdb->query("DELETE FROM $wpdb->options WHERE option_name LIKE '_transient_timeout_wp-piwik_%'");
+					restore_current_blog();
+				}
+		} else {
+			$wpdb->query("DELETE FROM $wpdb->options WHERE option_name LIKE '_transient_wp-piwik_%'");
+			$wpdb->query("DELETE FROM $wpdb->options WHERE option_name LIKE '_transient_timeout_wp-piwik_%'");
+		}
+		$this->showBox ( 'updated', 'yes', __ ( 'Cache cleared.' ) );
+	}
+
+	/**
+	 * Execute test script and display results
+	 */
+	private function runTestscript() { ?>
+		<div class="wp-piwik-debug">
+		<h2>Testscript Result</h2>
+		<?php
+			if (self::$wpPiwik->isConfigured()) {
+				if (isset($_GET['testscript_id']) && $_GET['testscript_id'])
+					switch_to_blog((int) $_GET['testscript_id']);
+		?>
+		<textarea cols="80" rows="10"><?php
+			echo '`WP-Piwik '.self::$wpPiwik->getPluginVersion()."\nMode: ".self::$settings->getGlobalOption('piwik_mode')."\n\n";
+		?>Test 1/3: global.getPiwikVersion<?php
+			$GLOBALS ['wp-piwik_debug'] = true;
+			$id = \WP_Piwik\Request::register ( 'API.getPiwikVersion', array() );
+			echo "\n\n"; var_dump( self::$wpPiwik->request( $id ) ); echo "\n";
+			var_dump( self::$wpPiwik->request( $id, true ) ); echo "\n";
+			$GLOBALS ['wp-piwik_debug'] = false;
+		?>Test 2/3: SitesManager.getSitesWithAtLeastViewAccess<?php
+			$GLOBALS ['wp-piwik_debug'] = true;
+			$id = \WP_Piwik\Request::register ( 'SitesManager.getSitesWithAtLeastViewAccess', array() );
+			echo "\n\n"; var_dump( self::$wpPiwik->request( $id ) ); echo "\n";
+			var_dump( self::$wpPiwik->request( $id, true ) ); echo "\n";
+			$GLOBALS ['wp-piwik_debug'] = false;
+		?>Test 3/3: SitesManager.getSitesIdFromSiteUrl<?php
+			$GLOBALS ['wp-piwik_debug'] = true;
+			$id = \WP_Piwik\Request::register ( 'SitesManager.getSitesIdFromSiteUrl', array (
+				'url' => get_bloginfo ( 'url' )
+			) );
+			echo "\n\n";  var_dump( self::$wpPiwik->request( $id ) ); echo "\n";
+			var_dump( self::$wpPiwik->request( $id, true ) ); echo "\n";
+			echo "\n\n";  var_dump( self::$settings->getDebugData() ); echo "`";
+			$GLOBALS ['wp-piwik_debug'] = false;
+		?></textarea>
+		<?php
+				if (isset($_GET['testscript_id']) && $_GET['testscript_id'])
+					restore_current_blog();
+			} else echo '<p>Please configure WP-Piwik first.</p>';
+		?>
+		</div>
+	<?php }
+
+}
\ No newline at end of file
diff --git a/wp-content/plugins/wp-piwik/classes/WP_Piwik/Admin/Sitebrowser.php b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Admin/Sitebrowser.php
new file mode 100644
index 0000000000000000000000000000000000000000..e4bc29cbeb412aae3f4eadb2c40f86e0ca7fbbd2
--- /dev/null
+++ b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Admin/Sitebrowser.php
@@ -0,0 +1,98 @@
+<?php
+
+namespace WP_Piwik\Admin;
+
+if (! class_exists ( 'WP_List_Table' ))
+	require_once (ABSPATH . 'wp-admin/includes/class-wp-list-table.php');
+
+class Sitebrowser extends \WP_List_Table {
+	
+	private $data = array (), $wpPiwik;
+	
+	public function __construct($wpPiwik) {
+		$this->wpPiwik = $wpPiwik;
+		$cnt = $this->prepare_items ();
+		global $status, $page;
+		parent::__construct ( array (
+				'singular' => __ ( 'site', 'wp-piwik' ),
+				'plural' => __ ( 'sites', 'wp-piwik' ),
+				'ajax' => false 
+		) );
+		if ($cnt > 0)
+			$this->display ();
+		else
+			echo '<p>' . __ ( 'No site configured yet.', 'wp-piwik' ) . '</p>';
+	}
+	
+	public function get_columns() {
+		$columns = array (
+				'id' => __ ( 'Blog ID', 'wp-piwik' ),
+				'name' => __ ( 'Title', 'wp-piwik' ),
+				'siteurl' => __ ( 'URL', 'wp-piwik' ),
+				'piwikid' => __ ( 'Site ID (Piwik)', 'wp-piwik' ) 
+		);
+		return $columns;
+	}
+	
+	public function prepare_items() {
+		$current_page = $this->get_pagenum ();
+		$per_page = 10;
+		global $blog_id;
+		global $wpdb;
+		global $pagenow;
+		if (is_plugin_active_for_network ( 'wp-piwik/wp-piwik.php' )) {
+			$total_items = $wpdb->get_var ( 'SELECT COUNT(*) FROM ' . $wpdb->blogs );
+			$blogs = \WP_Piwik\Settings::getBlogList($per_page, $current_page);
+			foreach ( $blogs as $blog ) {
+				$blogDetails = get_blog_details ( $blog['blog_id'], true );
+				$this->data [] = array (
+						'name' => $blogDetails->blogname,
+						'id' => $blogDetails->blog_id,
+						'siteurl' => $blogDetails->siteurl,
+						'piwikid' => $this->wpPiwik->getPiwikSiteId ( $blogDetails->blog_id ) 
+				);
+			}
+		} else {
+			$blogDetails = get_bloginfo ();
+			$this->data [] = array (
+					'name' => get_bloginfo ( 'name' ),
+					'id' => '-',
+					'siteurl' => get_bloginfo ( 'url' ),
+					'piwikid' => $this->wpPiwik->getPiwikSiteId () 
+			);
+			$total_items = 1;
+		}
+		$columns = $this->get_columns ();
+		$hidden = array ();
+		$sortable = array ();
+		$this->_column_headers = array (
+				$columns,
+				$hidden,
+				$sortable 
+		);
+		$this->set_pagination_args ( array (
+				'total_items' => $total_items,
+				'per_page' => $per_page 
+		) );
+		foreach ( $this->data as $key => $dataset ) {
+			if (empty ( $dataset ['piwikid'] ) || $dataset ['piwikid'] == 'n/a')
+				$this->data [$key] ['piwikid'] = __ ( 'Site not created yet.', 'wp-piwik' );
+			if ($this->wpPiwik->isNetworkMode ())
+				$this->data [$key] ['name'] = '<a href="index.php?page=wp-piwik_stats&wpmu_show_stats=' . $dataset ['id'] . '">' . $dataset ['name'] . '</a>';
+		}
+		$this->items = $this->data;
+		return count ( $this->items );
+	}
+	
+	public function column_default($item, $column_name) {
+		switch ($column_name) {
+			case 'id' :
+			case 'name' :
+			case 'siteurl' :
+			case 'piwikid' :
+				return $item [$column_name];
+			default :
+				return print_r ( $item, true );
+		}
+	}
+}
\ No newline at end of file
diff --git a/wp-content/plugins/wp-piwik/classes/WP_Piwik/Admin/Statistics.php b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Admin/Statistics.php
new file mode 100644
index 0000000000000000000000000000000000000000..341a45934d85a6ae511cf882ab4f8230c790ef1b
--- /dev/null
+++ b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Admin/Statistics.php
@@ -0,0 +1,53 @@
+<?php
+	
+	namespace WP_Piwik\Admin;
+
+	class Statistics extends \WP_Piwik\Admin {
+
+		public function show() {
+			global $screen_layout_columns;
+			if (empty($screen_layout_columns)) $screen_layout_columns = 2;
+			if (self::$settings->getGlobalOption('disable_timelimit')) set_time_limit(0);
+			echo '<div id="wp-piwik-stats-general" class="wrap">';
+			echo '<h2>'.(self::$settings->getGlobalOption('plugin_display_name') == 'WP-Piwik'?'Piwik '.__('Statistics', 'wp-piwik'):self::$settings->getGlobalOption('plugin_display_name')).'</h2>';
+			if (self::$settings->checkNetworkActivation() && function_exists('is_super_admin') && is_super_admin()) {
+				if (isset($_GET['wpmu_show_stats'])) {
+					switch_to_blog((int) $_GET['wpmu_show_stats']);
+				} else {
+					new \WP_Piwik\Admin\Sitebrowser(self::$wpPiwik);
+					return;
+				}
+				echo '<p>'.__('Currently shown stats:').' <a href="'.get_bloginfo('url').'">'.(int) $_GET['wpmu_show_stats'].' - '.get_bloginfo('name').'</a>.'.' <a href="?page=wp-piwik_stats">Show site overview</a>.</p>';
+				echo '</form>'."\n";
+			}
+			echo '<form action="admin-post.php" method="post"><input type="hidden" name="action" value="save_wp-piwik_stats_general" /><div id="dashboard-widgets" class="metabox-holder columns-'.$screen_layout_columns.(2 <= $screen_layout_columns?' has-right-sidebar':'').'">';
+			wp_nonce_field('wp-piwik_stats-general');
+			wp_nonce_field('closedpostboxes', 'closedpostboxesnonce', false);
+			wp_nonce_field('meta-box-order', 'meta-box-order-nonce', false);
+			$columns = array('normal', 'side', 'column3');
+			for ($i = 0; $i < 3; $i++) {
+				echo '<div id="postbox-container-'.($i+1).'" class="postbox-container">';
+				do_meta_boxes(self::$wpPiwik->statsPageId, $columns[$i], null);
+				echo '</div>';
+			}
+			echo '</div></form></div>';
+			echo '<script type="text/javascript">//<![CDATA['."\n";
+			echo 'jQuery(document).ready(function($) {$(".if-js-closed").removeClass("if-js-closed").addClass("closed"); postboxes.add_postbox_toggles("'.self::$wpPiwik->statsPageId.'");});'."\n";
+			echo '//]]></script>'."\n";
+			if (self::$settings->checkNetworkActivation() && function_exists('is_super_admin') && is_super_admin()) {
+				restore_current_blog();
+			}
+		}
+
+		public function printAdminScripts() {
+			wp_enqueue_script('wp-piwik', self::$wpPiwik->getPluginURL().'js/wp-piwik.js', array(), self::$wpPiwik->getPluginVersion(), true);
+			wp_enqueue_script('wp-piwik-jqplot', self::$wpPiwik->getPluginURL().'js/jqplot/wp-piwik.jqplot.js',array('jquery'), self::$wpPiwik->getPluginVersion());
+		}
+		
+		public function extendAdminHeader() {
+			echo '<!--[if IE]><script language="javascript" type="text/javascript" src="'.(self::$wpPiwik->getPluginURL()).'js/jqplot/excanvas.min.js"></script><![endif]-->';
+			echo '<link rel="stylesheet" href="'.(self::$wpPiwik->getPluginURL()).'js/jqplot/jquery.jqplot.min.css" type="text/css"/>';
+			echo '<script type="text/javascript">var $j = jQuery.noConflict();</script>';		
+		}
+		
+	}
\ No newline at end of file
diff --git a/wp-content/plugins/wp-piwik/classes/WP_Piwik/Logger.php b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Logger.php
new file mode 100644
index 0000000000000000000000000000000000000000..d016661f4233f89fc03768fc47c8fee962786925
--- /dev/null
+++ b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Logger.php
@@ -0,0 +1,47 @@
+<?php
+
+	namespace WP_Piwik;
+
+	abstract class Logger {
+		
+		private $loggerName = 'unnamed';
+		private $loggerContent = array();
+		private $startMicrotime = null;
+		
+		abstract function loggerOutput($loggerTime, $loggerMessage);
+
+		public function __construct($loggerName) {
+			$this->setName($loggerName);
+			$this->setStartMicrotime(microtime(true));
+			$this->log('Logging started -------------------------------');
+		}
+				
+		public function __destruct() {
+			$this->log('Logging finished ------------------------------');
+		}
+		
+		public function log($loggerMessage) {
+			$this->loggerOutput($this->getElapsedMicrotime(), $loggerMessage);
+		}
+		
+		private function setName($loggerName) {
+			$this->loggerName = $loggerName;
+		}
+		
+		public function getName() {
+			return $this->loggerName;
+		}
+		
+		private function setStartMicrotime($startMicrotime) {
+			$this->startMicrotime = $startMicrotime;
+		}
+		
+		public function getStartMicrotime() {
+			return $this->startMicrotime;
+		}
+		
+		public function getElapsedMicrotime() {
+			return microtime(true) - $this->getStartMicrotime();
+		}
+		
+	}
\ No newline at end of file
diff --git a/wp-content/plugins/wp-piwik/classes/WP_Piwik/Logger/Dummy.php b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Logger/Dummy.php
new file mode 100644
index 0000000000000000000000000000000000000000..211c871d76e8663241651a1f3e53bbad036a94dc
--- /dev/null
+++ b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Logger/Dummy.php
@@ -0,0 +1,9 @@
+<?php
+
+	namespace WP_Piwik\Logger;
+	
+	class Dummy extends \WP_Piwik\Logger {
+
+		public function loggerOutput($loggerTime, $loggerMessage) {}
+		
+    }
\ No newline at end of file
diff --git a/wp-content/plugins/wp-piwik/classes/WP_Piwik/Logger/File.php b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Logger/File.php
new file mode 100644
index 0000000000000000000000000000000000000000..6b0389950392ef8bdc999e3edb50ac506138a966
--- /dev/null
+++ b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Logger/File.php
@@ -0,0 +1,48 @@
+<?php
+	
+	namespace WP_Piwik\Logger;
+	
+	class File extends \WP_Piwik\Logger {
+	
+		private $loggerFile = null;
+	
+		private function encodeFilename($fileName) {
+			$fileName = str_replace (' ', '_', $fileName);
+			preg_replace('/[^0-9^a-z^_^.]/', '', $fileName);
+			return $fileName;
+		}
+		
+		private function setFilename() {
+			$this->loggerFile = WP_PIWIK_PATH.'logs'.DIRECTORY_SEPARATOR.
+				date('Ymd').'_'.$this->encodeFilename($this->getName()).'.log';
+		}
+		
+		private function getFilename() {
+			return $this->loggerFile;
+		}
+		
+		private function openFile() {
+			if (!$this->loggerFile)
+				$this->setFilename();
+			return fopen($this->getFilename(), 'a');			
+		}
+		
+		private function closeFile($fileHandle) {
+			fclose($fileHandle);
+		}
+		
+		private function writeFile($fileHandle, $fileContent) {
+			fwrite($fileHandle, $fileContent."\n");
+		}
+		
+		private function formatMicrotime($loggerTime) {
+			return sprintf('[%6s sec]',number_format($loggerTime,3));
+		}
+		
+		public function loggerOutput($loggerTime, $loggerMessage) {
+			if ($fileHandle = $this->openFile()) {
+				$this->writeFile($fileHandle, $this->formatMicrotime($loggerTime).' '.$loggerMessage);
+				$this->closeFile($fileHandle);
+			}
+		}
+    }
\ No newline at end of file
diff --git a/wp-content/plugins/wp-piwik/classes/WP_Piwik/Logger/Screen.php b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Logger/Screen.php
new file mode 100644
index 0000000000000000000000000000000000000000..88afa23d54c9ca46d766d7d694a76ccfdb26eea1
--- /dev/null
+++ b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Logger/Screen.php
@@ -0,0 +1,27 @@
+<?php
+	
+	namespace WP_Piwik\Logger;
+
+	class Screen extends \WP_Piwik\Logger {
+	
+		private $logs = array();
+		
+		private function formatMicrotime($loggerTime) {
+			return sprintf('[%6s sec]',number_format($loggerTime,3));
+		}
+		
+		public function __construct($loggerName) {
+			add_action(is_admin()?'admin_footer':'wp_footer', array($this, 'echoResults'));
+			parent::__construct($loggerName);
+		}
+		
+		public function loggerOutput($loggerTime, $loggerMessage) {
+			$this->logs[] = $this->formatMicrotime($loggerTime).' '.$loggerMessage;
+		}
+		
+		public function echoResults() {
+			echo '<pre>';
+			print_r($this->logs);
+			echo '</pre>';			
+		} 
+    }
\ No newline at end of file
diff --git a/wp-content/plugins/wp-piwik/classes/WP_Piwik/Request.php b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Request.php
new file mode 100644
index 0000000000000000000000000000000000000000..84369e14cdbaf9bb562b57d274d9ff143a1b38e0
--- /dev/null
+++ b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Request.php
@@ -0,0 +1,91 @@
+<?php
+
+	namespace WP_Piwik;
+
+	abstract class Request {
+		
+		protected static $wpPiwik, $settings, $debug, $requests = array(), $results = array(), $isCacheable = array(), $piwikVersion;
+		
+		public function __construct($wpPiwik, $settings) {
+			self::$wpPiwik = $wpPiwik;
+			self::$settings = $settings;
+			self::register('API.getPiwikVersion', array());
+		}
+		
+		public function reset() {
+			self::$debug = null;
+			self::$requests = array();
+			self::$results = array();
+			self::$isCacheable = array();
+			self::$piwikVersion = null;
+		}
+		
+		public static function register($method, $parameter) {
+			if ($method == 'API.getPiwikVersion')
+				$id = 'global.getPiwikVersion';
+			else
+				$id = 'method='.$method.self::parameterToString($parameter);
+			if ( 
+				in_array( $method, array( 'API.getPiwikVersion', 'SitesManager.getJavascriptTag', 'SitesManager.getSitesWithAtLeastViewAccess', 'SitesManager.getSitesIdFromSiteUrl', 'SitesManager.addSite', 'SitesManager.updateSite', 'SitesManager.getSitesWithAtLeastViewAccess' ) ) ||
+				!isset( $parameter['date'] ) ||
+				!isset( $parameter['period'] ) ||
+				substr($parameter['date'], 0, 4) == 'last' ||
+				$parameter['date'] == 'today' ||
+				( $parameter['period'] == 'day' && $parameter['date'] == date('Ymd') ) ||
+				( $parameter['period'] == 'month' && $parameter['date'] == date('Ym') ) ||
+				( $parameter['period'] == 'week' && $parameter['date'] == date( 'Ymd', strtotime( "last Monday" ) ) ) 
+			) self::$isCacheable[$id] = false;
+			else self::$isCacheable[$id] = $method.'-'.$parameter['period'].'-'.$parameter['date'];
+			if (!isset(self::$requests[$id]))
+				self::$requests[$id] = array('method' => $method, 'parameter' => $parameter);
+			return $id;
+		}
+		
+		private static function parameterToString($parameter) {
+			$return = '';
+			if (is_array($parameter))
+				foreach ($parameter as $key => $value)
+					$return .= '&'.$key.'='.$value;
+			return $return;
+		}
+		
+		public function perform($id) {
+			if ( self::$settings->getGlobalOption('cache') && false !== ( $cached = get_transient( 'wp-piwik_c_'.md5(self::$isCacheable[$id] ) ) ) ) {
+				if (!empty ( $cached ) && !(! empty ( $cached['result'] ) &&  $cached['result'] == 'error') ) { 
+					self::$wpPiwik->log("Deliver cached data: ".$id);
+					return $cached;
+				}
+			}
+			self::$wpPiwik->log("Perform request: ".$id);
+			if (!isset(self::$requests[$id]))
+				return array('result' => 'error', 'message' => 'Request '.$id.' was not registered.');
+			elseif (!isset(self::$results[$id])) {
+				$this->request($id);
+			}
+			if ( isset ( self::$results[$id] ) ) {
+				if ( self::$settings->getGlobalOption('cache') && self::$isCacheable[$id] ) {
+					set_transient( 'wp-piwik_c_'.md5(self::$isCacheable[$id]) , self::$results[$id], WEEK_IN_SECONDS );
+				}
+				return self::$results[$id];
+			} else return false;
+		}
+		
+		public function getDebug($id) {
+			return isset( self::$debug[$id] )? self::$debug[$id] : false;
+		}
+		
+		protected function buildURL($config, $urlDecode = false) {
+			$url = 'method='.($config['method']).'&idSite='.self::$settings->getOption('site_id');
+			foreach ($config['parameter'] as $key => $value)
+				$url .= '&'.$key.'='.($urlDecode?urldecode($value):$value);
+			return $url;
+		}
+		
+		protected function unserialize($str) {
+			self::$wpPiwik->log("Result string: ".$str);
+		    return ($str == json_decode(false, true) || @json_decode($str, true) !== false)?json_decode($str, true):array();
+		}
+		
+		abstract protected function request($id);
+			
+	}
\ No newline at end of file
diff --git a/wp-content/plugins/wp-piwik/classes/WP_Piwik/Request/Php.php b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Request/Php.php
new file mode 100644
index 0000000000000000000000000000000000000000..50fd2079026ea9714d3531dee7f4b4e9d69d0c5d
--- /dev/null
+++ b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Request/Php.php
@@ -0,0 +1,53 @@
+<?php
+
+	namespace WP_Piwik\Request;
+
+	class Php extends \WP_Piwik\Request {
+
+		private static $piwikEnvironment = false;
+
+		protected function request($id) {
+			$count = 0;
+			$url = self::$settings->getGlobalOption('piwik_url');
+			foreach (self::$requests as $requestID => $config) {
+				if (!isset(self::$results[$requestID])) {
+					$params = 'module=API&format=json&'.$this->buildURL($config);
+					$map[$count] = $requestID;
+					$result = $this->call($id, $url, $params);
+					self::$results[$map[$count]] = $result;
+					$count++;
+				}
+			}
+		}
+
+		private function call($id, $url, $params) {
+			if (!defined('PIWIK_INCLUDE_PATH'))
+				return false;
+			if (PIWIK_INCLUDE_PATH === FALSE)
+				 return array('result' => 'error', 'message' => __('Could not resolve','wp-piwik').' &quot;'.htmlentities(self::$settings->getGlobalOption('piwik_path')).'&quot;: '.__('realpath() returns false','wp-piwik').'.');
+			if (file_exists(PIWIK_INCLUDE_PATH . "/index.php"))
+				require_once PIWIK_INCLUDE_PATH . "/index.php";
+			if (file_exists(PIWIK_INCLUDE_PATH . "/core/API/Request.php"))
+				require_once PIWIK_INCLUDE_PATH . "/core/API/Request.php";
+			if (class_exists('\Piwik\Application\Environment') && !self::$piwikEnvironment) {
+				// Piwik 2.14.* compatibility fix
+				self::$piwikEnvironment = new \Piwik\Application\Environment(null);
+				self::$piwikEnvironment->init();
+			}
+			if (class_exists('Piwik\FrontController'))
+				\Piwik\FrontController::getInstance()->init();
+			else return array('result' => 'error', 'message' => __('Class Piwik\FrontController does not exists.','wp-piwik'));
+			if (class_exists('Piwik\API\Request'))
+				$request = new \Piwik\API\Request($params.'&token_auth='.self::$settings->getGlobalOption('piwik_token'));
+			else return array('result' => 'error', 'message' => __('Class Piwik\API\Request does not exists.','wp-piwik'));
+			if (isset($request))
+				$result = $request->process();
+			else $result = null;
+			if (!headers_sent())
+				header("Content-Type: text/html", true);
+			$result = $this->unserialize($result);
+			if ($GLOBALS ['wp-piwik_debug'])
+				self::$debug[$id] = array ( $params.'&token_auth=...' );
+			return $result;
+		}
+	}
\ No newline at end of file
diff --git a/wp-content/plugins/wp-piwik/classes/WP_Piwik/Request/Rest.php b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Request/Rest.php
new file mode 100644
index 0000000000000000000000000000000000000000..6da5285bde50f140eab02bbdd4ca80ff77b4584e
--- /dev/null
+++ b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Request/Rest.php
@@ -0,0 +1,69 @@
+<?php
+
+	namespace WP_Piwik\Request;
+
+	class Rest extends \WP_Piwik\Request {
+			
+		protected function request($id) {
+			$count = 0;
+			$url = self::$settings->getGlobalOption('piwik_mode') == 'http'?
+				self::$settings->getGlobalOption('piwik_url'):
+				'https://'.self::$settings->getGlobalOption('piwik_user').'.piwik.pro/';
+			$params = 'module=API&method=API.getBulkRequest&format=json';
+			foreach (self::$requests as $requestID => $config) {
+				if (!isset(self::$results[$requestID])) {
+					$params .= '&urls['.$count.']='.urlencode($this->buildURL($config));
+					$map[$count] = $requestID;
+					$count++;
+				}
+			}
+			$results = ((function_exists('curl_init') && ini_get('allow_url_fopen') && self::$settings->getGlobalOption('http_connection') == 'curl') || (function_exists('curl_init') && !ini_get('allow_url_fopen')))?$this->curl($id, $url, $params):$this->fopen($id, $url, $params);
+			if (is_array($results))
+				foreach ($results as $num => $result)
+					self::$results[$map[$num]] = $result;
+		}
+			
+		private function curl($id, $url, $params) {
+			if (self::$settings->getGlobalOption('http_method')=='post') {
+				$c = curl_init($url);
+				curl_setopt($c, CURLOPT_POST, 1);
+				curl_setopt($c, CURLOPT_POSTFIELDS, $params.'&token_auth='.self::$settings->getGlobalOption('piwik_token'));
+			} else $c = curl_init($url.'?'.$params.'&token_auth='.self::$settings->getGlobalOption('piwik_token'));
+			curl_setopt($c, CURLOPT_SSL_VERIFYPEER, !self::$settings->getGlobalOption('disable_ssl_verify'));
+			curl_setopt($c, CURLOPT_USERAGENT, self::$settings->getGlobalOption('piwik_useragent')=='php'?ini_get('user_agent'):self::$settings->getGlobalOption('piwik_useragent_string'));
+			curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);
+			curl_setopt($c, CURLOPT_HEADER, $GLOBALS ['wp-piwik_debug'] );
+			curl_setopt($c, CURLOPT_TIMEOUT, self::$settings->getGlobalOption('connection_timeout'));
+			$httpProxyClass = new \WP_HTTP_Proxy();
+			if ($httpProxyClass->is_enabled() && $httpProxyClass->send_through_proxy($strURL)) {
+				curl_setopt($c, CURLOPT_PROXY, $httpProxyClass->host());
+				curl_setopt($c, CURLOPT_PROXYPORT, $httpProxyClass->port());
+				if ($httpProxyClass->use_authentication())
+					curl_setopt($c, CURLOPT_PROXYUSERPWD, $httpProxyClass->username().':'.$httpProxyClass->password());
+			}
+			$result = curl_exec($c);
+			if ($GLOBALS ['wp-piwik_debug']) {
+				$header_size = curl_getinfo($c, CURLINFO_HEADER_SIZE);
+				$header = substr($result, 0, $header_size);
+				$body = substr($result, $header_size);
+				$result = $this->unserialize($body);
+				self::$debug[$id] = array ( $header, $url.'?'.$params.'&token_auth=...' );
+			} else $result = $this->unserialize($result);
+			curl_close($c);
+			return $result;
+		}
+
+		private function fopen($id, $url, $params) {
+			$contextDefinition = array('http'=>array('timeout' => self::$settings->getGlobalOption('connection_timeout')));
+			if (self::$settings->getGlobalOption('http_method')=='post') {
+				$fullUrl = $url;
+				$contextDefinition['http']['method'] = 'POST';
+				$contextDefinition['http']['content'] = $params.'&token_auth='.self::$settings->getGlobalOption('piwik_token');
+			} else $fullUrl = $url.'?'.$params.'&token_auth='.self::$settings->getGlobalOption('piwik_token');	
+			$context = stream_context_create($contextDefinition);
+			$result = $this->unserialize(@file_get_contents($fullUrl, false, $context));
+			if ($GLOBALS ['wp-piwik_debug'])
+				self::$debug[$id] = array ( get_headers($fullUrl, 1), $url.'?'.$params.'&token_auth=...' );
+			return $result;
+		}
+	}
\ No newline at end of file
diff --git a/wp-content/plugins/wp-piwik/classes/WP_Piwik/Settings.php b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Settings.php
new file mode 100644
index 0000000000000000000000000000000000000000..caf88d53f41f7f9a5dc1b13cd6e0162071d467b2
--- /dev/null
+++ b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Settings.php
@@ -0,0 +1,397 @@
+<?php
+
+namespace WP_Piwik;
+
+/**
+ * Manage WP-Piwik settings
+ *
+ * @author Andr&eacute; Br&auml;kling
+ * @package WP_Piwik
+ */
+class Settings {
+	
+	/**
+	 *
+	 * @var Environment variables and default settings container
+	 */
+	private static $wpPiwik, $defaultSettings;
+	
+	/**
+	 *
+	 * @var Define callback functions for changed settings
+	 */
+	private $checkSettings = array (
+			'piwik_url' => 'checkPiwikUrl',
+			'piwik_token' => 'checkPiwikToken',
+			'site_id' => 'requestPiwikSiteID',
+			'tracking_code' => 'prepareTrackingCode',
+			'noscript_code' => 'prepareNocscriptCode' 
+	);
+	
+	/**
+	 *
+	 * @var Register default configuration set
+	 */
+	private $globalSettings = array (
+			// Plugin settings
+			'revision' => 0,
+			'last_settings_update' => 0,
+			// User settings: Piwik configuration
+			'piwik_mode' => 'http',
+			'piwik_url' => '',
+			'piwik_path' => '',
+			'piwik_user' => '',
+			'piwik_token' => '',
+			'auto_site_config' => true,
+			// User settings: Stats configuration
+			'default_date' => 'yesterday',
+			'stats_seo' => false,
+			'dashboard_widget' => false,
+			'dashboard_chart' => false,
+			'dashboard_seo' => false,
+			'toolbar' => false,
+			'capability_read_stats' => array (
+					'administrator' => true 
+			),
+			'perpost_stats' => false,
+			'plugin_display_name' => 'WP-Piwik',
+			'piwik_shortcut' => false,
+			'shortcodes' => false,
+			// User settings: Tracking configuration
+			'track_mode' => 'disabled',
+			'track_codeposition' => 'footer',
+			'track_noscript' => false,
+			'track_nojavascript' => false,
+			'proxy_url' => '',
+			'track_content' => 'disabled',
+			'track_search' => false,
+			'track_404' => false,
+			'add_post_annotations' => false,
+			'add_customvars_box' => false,
+			'add_download_extensions' => '',
+			'disable_cookies' => false,
+			'limit_cookies' => false,
+			'limit_cookies_visitor' => 34186669, // Piwik default 13 months
+			'limit_cookies_session' => 1800, // Piwik default 30 minutes
+			'limit_cookies_referral' => 15778463, // Piwik default 6 months
+			'track_admin' => false,
+			'capability_stealth' => array (),
+			'track_across' => false,
+			'track_across_alias' => false,
+			'track_feed' => false,
+			'track_feed_addcampaign' => false,
+			'track_feed_campaign' => 'feed',
+			'track_heartbeat' => 0,
+			// User settings: Expert configuration
+			'cache' => true,
+			'http_connection' => 'curl',
+			'http_method' => 'post',
+			'disable_timelimit' => false,
+			'connection_timeout' => 5,
+			'disable_ssl_verify' => false,
+			'piwik_useragent' => 'php',
+			'piwik_useragent_string' => 'WP-Piwik',
+			'track_datacfasync' => false,
+			'track_cdnurl' => '',
+			'track_cdnurlssl' => '',
+			'force_protocol' => 'disabled',
+			'update_notice' => 'enabled'
+	), $settings = array (
+			'name' => '',
+			'site_id' => NULL,
+			'noscript_code' => '',
+			'tracking_code' => '',
+			'last_tracking_code_update' => 0,
+			'dashboard_revision' => 0 
+	), $settingsChanged = false;
+	
+	/**
+	 * Constructor class to prepare settings manager
+	 *
+	 * @param WP_Piwik $wpPiwik
+	 *        	active WP-Piwik instance
+	 */
+	public function __construct($wpPiwik) {
+		self::$wpPiwik = $wpPiwik;
+		self::$wpPiwik->log ( 'Store default settings' );
+		self::$defaultSettings = array (
+				'globalSettings' => $this->globalSettings,
+				'settings' => $this->settings 
+		);
+		self::$wpPiwik->log ( 'Load settings' );
+		foreach ( $this->globalSettings as $key => $default ) {
+			$this->globalSettings [$key] = ($this->checkNetworkActivation () ? get_site_option ( 'wp-piwik_global-' . $key, $default ) : get_option ( 'wp-piwik_global-' . $key, $default ));
+		}
+		foreach ( $this->settings as $key => $default )
+			$this->settings [$key] = get_option ( 'wp-piwik-' . $key, $default );
+	}
+	
+	/**
+	 * Save all settings as WordPress options
+	 */
+	public function save() {
+		if (! $this->settingsChanged) {
+			self::$wpPiwik->log ( 'No settings changed yet' );
+			return;
+		}
+		self::$wpPiwik->log ( 'Save settings' );
+		foreach ( $this->globalSettings as $key => $value ) {
+			if ( $this->checkNetworkActivation() )
+				update_site_option ( 'wp-piwik_global-' . $key, $value );
+			else
+				update_option ( 'wp-piwik_global-' . $key, $value );
+		}
+		foreach ( $this->settings as $key => $value ) {
+			update_option ( 'wp-piwik-' . $key, $value );
+		}
+		global $wp_roles;
+		if (! is_object ( $wp_roles ))
+			$wp_roles = new \WP_Roles ();
+		if (! is_object ( $wp_roles ))
+			die ( "STILL NO OBJECT" );
+		foreach ( $wp_roles->role_names as $strKey => $strName ) {
+			$objRole = get_role ( $strKey );
+			foreach ( array (
+					'stealth',
+					'read_stats' 
+			) as $strCap ) {
+				$aryCaps = $this->getGlobalOption ( 'capability_' . $strCap );
+				if (isset ( $aryCaps [$strKey] ) && $aryCaps [$strKey])
+					$wp_roles->add_cap ( $strKey, 'wp-piwik_' . $strCap );
+				else $wp_roles->remove_cap ( $strKey, 'wp-piwik_' . $strCap );
+			}
+		}
+		$this->settingsChanged = false;
+	}
+	
+	/**
+	 * Get a global option's value
+	 *
+	 * @param string $key
+	 *        	option key
+	 * @return string option value
+	 */
+	public function getGlobalOption($key) {
+		return isset ( $this->globalSettings [$key] ) ? $this->globalSettings [$key] : self::$defaultSettings ['globalSettings'] [$key];
+	}
+	
+	/**
+	 * Get an option's value related to a specific blog
+	 *
+	 * @param string $key
+	 *        	option key
+	 * @param int $blogID
+	 *        	blog ID (default: current blog)
+	 * @return \WP_Piwik\Register
+	 */
+	public function getOption($key, $blogID = null) {
+		if ($this->checkNetworkActivation () && ! empty ( $blogID )) {
+			return get_blog_option ( $blogID, 'wp-piwik-'.$key );
+		}
+		return isset ( $this->settings [$key] ) ? $this->settings [$key] : self::$defaultSettings ['settings'] [$key];
+	}
+	
+	/**
+	 * Set a global option's value
+	 *
+	 * @param string $key
+	 *        	option key
+	 * @param string $value
+	 *        	new option value
+	 */
+	public function setGlobalOption($key, $value) {
+		$this->settingsChanged = true;
+		self::$wpPiwik->log ( 'Changed global option ' . $key . ': ' . (is_array ( $value ) ? serialize ( $value ) : $value) );
+		$this->globalSettings [$key] = $value;
+	}
+	
+	/**
+	 * Set an option's value related to a specific blog
+	 *
+	 * @param string $key
+	 *        	option key
+	 * @param int $blogID
+	 *        	blog ID (default: current blog)
+	 * @param string $value
+	 *        	new option value
+	 */
+	public function setOption($key, $value, $blogID = null) {
+		$this->settingsChanged = true;
+		self::$wpPiwik->log ( 'Changed option ' . $key . ': ' . $value );
+		if ($this->checkNetworkActivation () && ! empty ( $blogID )) {
+			add_blog_option ( $blogID, 'wp-piwik-'.$key, $value );
+		} else
+			$this->settings [$key] = $value;
+	}
+	
+	/**
+	 * Reset settings to default
+	 */
+	public function resetSettings() {
+		self::$wpPiwik->log ( 'Reset WP-Piwik settings' );
+		global $wpdb;
+		if ( $this->checkNetworkActivation() ) {
+			$aryBlogs = self::getBlogList();
+			if (is_array($aryBlogs))
+				foreach ($aryBlogs as $aryBlog) {
+					switch_to_blog($aryBlog['blog_id']);
+					$wpdb->query("DELETE FROM $wpdb->options WHERE option_name LIKE 'wp-piwik-%'");
+					restore_current_blog();
+				}
+			$wpdb->query("DELETE FROM $wpdb->sitemeta WHERE meta_key LIKE 'wp-piwik_global-%'");
+		}
+		else $wpdb->query("DELETE FROM $wpdb->options WHERE option_name LIKE 'wp-piwik_global-%'");
+	}
+	
+	/**
+	 * Get blog list
+	 */
+	public static function getBlogList($limit = null, $page = null) {
+		if ( !\wp_is_large_network() )
+			return \wp_get_sites ( array('limit' => $limit, 'offset' => $page?($page - 1) * $limit:null));
+		if ($limit && $page) 
+			$queryLimit = ' LIMIT '.(int) (($page - 1) * $limit).','.(int) $limit;
+		global $wpdb;
+		return $wpdb->get_results('SELECT blog_id FROM '.$wpdb->blogs.' ORDER BY blog_id'.$queryLimit, ARRAY_A);
+	}
+	
+	/**
+	 * Check if plugin is network activated
+	 *
+	 * @return boolean Is network activated?
+	 */
+	public function checkNetworkActivation() {
+		if (! function_exists ( "is_plugin_active_for_network" ))
+			require_once (ABSPATH . 'wp-admin/includes/plugin.php');
+		return is_plugin_active_for_network ( 'wp-piwik/wp-piwik.php' );
+	}
+	
+	/**
+	 * Apply new configuration
+	 *
+	 * @param array $in
+	 *        	new configuration set
+	 */
+	public function applyChanges($in) {
+		$in = $this->checkSettings ( $in );
+		self::$wpPiwik->log ( 'Apply changed settings:' );
+		foreach ( self::$defaultSettings ['globalSettings'] as $key => $val )
+			$this->setGlobalOption ( $key, isset ( $in [$key] ) ? $in [$key] : $val );
+		foreach ( self::$defaultSettings ['settings'] as $key => $val )
+			$this->setOption ( $key, isset ( $in [$key] ) ? $in [$key] : $val );
+		$this->setGlobalOption ( 'last_settings_update', time () );
+		$this->save ();
+	}
+	
+	/**
+	 * Apply callback function on new settings
+	 *
+	 * @param array $in
+	 *        	new configuration set
+	 * @return array configuration set after callback functions were applied
+	 */
+	private function checkSettings($in) {
+		foreach ( $this->checkSettings as $key => $value )
+			if (isset ( $in [$key] ))
+				$in [$key] = call_user_func_array ( array (
+						$this,
+						$value 
+				), array (
+						$in [$key],
+						$in 
+				) );
+		return $in;
+	}
+	
+	/**
+	 * Add slash to Piwik URL if necessary
+	 *
+	 * @param string $value
+	 *        	Piwik URL
+	 * @param array $in
+	 *        	configuration set
+	 * @return string Piwik URL
+	 */
+	private function checkPiwikUrl($value, $in) {
+		return substr ( $value, - 1, 1 ) != '/' ? $value . '/' : $value;
+	}
+	
+	/**
+	 * Remove &amp;token_auth= from auth token
+	 *
+	 * @param string $value
+	 *        	Piwik auth token
+	 * @param array $in
+	 *        	configuration set
+	 * @return string Piwik auth token
+	 */
+	private function checkPiwikToken($value, $in) {
+		return str_replace ( '&token_auth=', '', $value );
+	}
+	
+	/**
+	 * Request the site ID (if not set before)
+	 *
+	 * @param string $value
+	 *        	tracking code
+	 * @param array $in
+	 *        	configuration set
+	 * @return int Piwik site ID
+	 */
+	private function requestPiwikSiteID($value, $in) {
+		if ($in ['auto_site_config'] && ! $value)
+			return self::$wpPiwik->getPiwikSiteId();
+		return $value;
+	}
+	
+	/**
+	 * Prepare the tracking code
+	 *
+	 * @param string $value
+	 *        	tracking code
+	 * @param array $in
+	 *        	configuration set
+	 * @return string tracking code
+	 */
+	private function prepareTrackingCode($value, $in) {
+		if ($in ['track_mode'] == 'manually' || $in ['track_mode'] == 'disabled') {
+			$value = stripslashes ( $value );
+			if ($this->checkNetworkActivation ())
+				add_site_option ( 'wp-piwik-manually', $value );
+			return $value;
+		}
+		/*$result = self::$wpPiwik->updateTrackingCode ();
+		echo '<pre>'; print_r($result); echo '</pre>';
+		$this->setOption ( 'noscript_code', $result ['noscript'] );*/
+		return; // $result ['script'];
+	}
+	
+	/**
+	 * Prepare the nocscript code
+	 *
+	 * @param string $value
+	 *        	noscript code
+	 * @param array $in
+	 *        	configuration set
+	 * @return string noscript code
+	 */
+	private function prepareNocscriptCode($value, $in) {
+		if ($in ['track_mode'] == 'manually')
+			return stripslashes ( $value );
+		return $this->getOption ( 'noscript_code' );
+	}
+	
+	/**
+	 * Get debug data
+	 *
+	 * @return array WP-Piwik settings for debug output
+	 */
+	public function getDebugData() {
+		$debug = array(
+			'global_settings' => $this->globalSettings,
+			'settings' => $this->settings
+		);
+		$debug['global_settings']['piwik_token'] = !empty($debug['global_settings']['piwik_token'])?'set':'not set';
+		return $debug;
+	}
+}
\ No newline at end of file
diff --git a/wp-content/plugins/wp-piwik/classes/WP_Piwik/Shortcode.php b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Shortcode.php
new file mode 100644
index 0000000000000000000000000000000000000000..c2c9ee5289a60d733c6265d613f3215b0eef79f7
--- /dev/null
+++ b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Shortcode.php
@@ -0,0 +1,28 @@
+<?php
+	
+	namespace WP_Piwik;
+	
+	class Shortcode {
+		
+		private $available = array(
+			'opt-out' => 'OptOut',
+			'post' => 'Post',
+			'overview' => 'Overview'
+		), $content;
+		
+		public function __construct($attributes, $wpPiwik, $settings) {
+			$wpPiwik->log('Check requested shortcode widget '.$attributes['module']);
+			if (isset($attributes['module']) && isset($this->available[$attributes['module']])) {
+				$wpPiwik->log('Add shortcode widget '.$this->available[$attributes['module']]);
+				$class = '\\WP_Piwik\\Widget\\'.$this->available[$attributes['module']];
+				$widget = new $class($wpPiwik, $settings, null, null, null, $attributes, true);
+				$widget->show();
+				$this->content = $widget->get();
+			}
+		}
+		
+		public function get() {
+			return $this->content;
+		}
+		
+	}
\ No newline at end of file
diff --git a/wp-content/plugins/wp-piwik/classes/WP_Piwik/Template.php b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Template.php
new file mode 100644
index 0000000000000000000000000000000000000000..8342a108077434584c130e8f209437ec7e384bdb
--- /dev/null
+++ b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Template.php
@@ -0,0 +1,31 @@
+<?php
+
+	namespace WP_Piwik;
+
+	class Template {
+		
+		public static $logger, $settings, $wpPiwik;
+		
+		public function __construct($wpPiwik, $settings) {
+			self::$settings = $settings;
+			self::$wpPiwik = $wpPiwik;
+		}
+
+		public function output($array, $key, $default = '') {
+			if (isset($array[$key]))
+				return $array[$key];
+			else
+				return $default; 
+		}
+		
+		public function tabRow($name, $value) {
+			echo '<tr><td>'.$name.'</td><td>'.$value.'</td></tr>';
+		}
+		
+		public function getRangeLast30() {
+			$diff = (self::$settings->getGlobalOption('default_date') == 'yesterday') ? -86400 : 0;
+			$end = time() + $diff;
+			$start = time() - 2592000 + $diff;
+			return date('Y-m-d', $start).','.date('Y-m-d', $end);
+		}
+	}
\ No newline at end of file
diff --git a/wp-content/plugins/wp-piwik/classes/WP_Piwik/Template/MetaBoxCustomVars.php b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Template/MetaBoxCustomVars.php
new file mode 100644
index 0000000000000000000000000000000000000000..40cdbd57b8995619760904b14431f38c874d9c96
--- /dev/null
+++ b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Template/MetaBoxCustomVars.php
@@ -0,0 +1,63 @@
+<?php
+
+	namespace WP_Piwik\Template;
+
+	class MetaBoxCustomVars extends \WP_Piwik\Template {
+				
+		public function addMetabox() {
+			add_meta_box(
+				'wp-piwik_post_customvars',
+				__('Piwik Custom Variables', 'wp-piwik'),
+				array(&$this, 'showCustomvars'),
+				'post',
+				'side',
+				'default'
+			);
+		}
+
+		public function showCustomvars($objPost, $objBox ) {
+			wp_nonce_field(basename( __FILE__ ), 'wp-piwik_post_customvars_nonce'); ?>
+			<table>
+	 			<tr><th></th><th><?php _e('Name', 'wp-piwik'); ?></th><th><?php _e('Value', 'wp-piwik'); ?></th></tr>
+	 			<?php for($i = 1; $i <= 5; $i++) { ?>
+	 			<tr>
+		 			<th><label for="wp-piwik_customvar1"><?php echo $i; ?>: </label></th>
+		 			<td><input class="widefat" type="text" name="wp-piwik_custom_cat<?php echo $i; ?>" value="<?php echo esc_attr(get_post_meta($objPost->ID, 'wp-piwik_custom_cat'.$i, true ) ); ?>" size="200" /></td>
+		 			<td><input class="widefat" type="text" name="wp-piwik_custom_val<?php echo $i; ?>" value="<?php echo esc_attr(get_post_meta($objPost->ID, 'wp-piwik_custom_val'.$i, true ) ); ?>" size="200" /></td>
+		 		</tr>
+		 	<?php } ?>
+		 	</table>
+		 	<p><?php _e('Set custom variables for a page view', 'wp-piwik'); ?>. (<a href="http://piwik.org/docs/custom-variables/"><?php _e('More information', 'wp-piwik'); ?></a>.)</p>
+		 	<?php 
+		}
+		
+		public function saveCustomVars($intID, $objPost) {
+			// Verify the nonce before proceeding.
+			if (!isset( $_POST['wp-piwik_post_customvars_nonce'] ) || !wp_verify_nonce( $_POST['wp-piwik_post_customvars_nonce'], basename( __FILE__ ) ) )
+				return $intID;
+			// Get post type object
+			$objPostType = get_post_type_object($objPost->post_type);
+			// Check if the current user has permission to edit the post.
+			if (!current_user_can($objPostType->cap->edit_post, $intID))
+				return $intID;
+			$aryNames = array('cat', 'val');
+			for ($i = 1; $i <= 5; $i++)
+				for ($j = 0; $j <= 1; $j++) {
+					// Get data
+					$strMetaVal = (isset($_POST['wp-piwik_custom_'.$aryNames[$j].$i])?htmlentities($_POST['wp-piwik_custom_'.$aryNames[$j].$i]):'');
+					// Create key
+					$strMetaKey = 'wp-piwik_custom_'.$aryNames[$j].$i;
+					// Get the meta value of the custom field key
+					$strCurVal = get_post_meta($intID, $strMetaKey, true);
+					// Add meta val:
+					if ($strMetaVal && '' == $strCurVal)
+						add_post_meta($intID, $strMetaKey, $strMetaVal, true);
+					// Update meta val:
+					elseif ($strMetaVal && $strMetaVal != $strCurVal)
+						update_post_meta($intID, $strMetaKey, $strMetaVal);
+					// Delete meta val:
+					elseif (''==$strMetaVal && $strCurVal)
+						delete_post_meta($intID, $strMetaKey, $strCurVal);
+				}
+		}		
+	}
\ No newline at end of file
diff --git a/wp-content/plugins/wp-piwik/classes/WP_Piwik/TrackingCode.php b/wp-content/plugins/wp-piwik/classes/WP_Piwik/TrackingCode.php
new file mode 100644
index 0000000000000000000000000000000000000000..8306b69ad90b9565089fb289d663da32f95f0c7b
--- /dev/null
+++ b/wp-content/plugins/wp-piwik/classes/WP_Piwik/TrackingCode.php
@@ -0,0 +1,120 @@
+<?php
+
+namespace WP_Piwik;
+
+class TrackingCode {
+
+	private static $wpPiwik, $piwikUrl = false;
+
+	private $trackingCode;
+
+	public $is404 = false, $isSearch = false;
+
+	public function __construct($wpPiwik) {
+		self::$wpPiwik = $wpPiwik;
+		if (! self::$wpPiwik->isCurrentTrackingCode () || ! self::$wpPiwik->getOption ( 'tracking_code' ) || strpos( self::$wpPiwik->getOption ( 'tracking_code' ), '{"result":"error",' ) !== false )
+			self::$wpPiwik->updateTrackingCode ();
+		$this->trackingCode = (self::$wpPiwik->isNetworkMode () && self::$wpPiwik->getGlobalOption ( 'track_mode' ) == 'manually') ? get_site_option ( 'wp-piwik-manually' ) : self::$wpPiwik->getOption ( 'tracking_code' );
+	}
+
+	public function getTrackingCode() {
+		if ($this->is404)
+			$this->apply404Changes ();
+		if ($this->isSearch)
+			$this->applySearchChanges ();
+		if (is_single ())
+			$this->addCustomValues ();
+		return $this->trackingCode;
+	}
+
+	public static function prepareTrackingCode($code, $settings, $logger) {
+		$logger->log ( 'Apply tracking code changes:' );
+		$settings->setOption ( 'last_tracking_code_update', time () );
+		if ($settings->getGlobalOption ( 'track_mode' ) == 'js')
+			$code = str_replace ( array (
+					'piwik.js',
+					'piwik.php'
+			), 'js/index.php', $code );
+		elseif ($settings->getGlobalOption ( 'track_mode' ) == 'proxy') {
+			$code = str_replace ( 'piwik.js', 'piwik.php', $code );
+			$proxy = str_replace ( array (
+					'https://',
+					'http://'
+			), '//', plugins_url ( 'wp-piwik' ) . '/proxy' ) . '/';
+			$code = preg_replace ( '/var u="([^"]*)";/', 'var u="' . $proxy . '"', $code );
+			$code = preg_replace ( '/img src="([^"]*)piwik.php/', 'img src="' . $proxy . 'piwik.php', $code );
+		}
+		if (preg_match ( '/var u="([^"]*)";/', $code, $hits )) {
+			$fetchedProxyUrl = $hits [1];
+		} else $fetchedProxyUrl = '';
+		if ($settings->getGlobalOption ( 'track_cdnurl' ) || $settings->getGlobalOption ( 'track_cdnurlssl' ))
+			$code = str_replace ( array (
+					"var d=doc",
+					"g.src=u+"
+			), array (
+					"var ucdn=(('https:' == document.location.protocol) ? 'https://" . ($settings->getGlobalOption ( 'track_cdnurlssl' ) ? $settings->getGlobalOption ( 'track_cdnurlssl' ) : $settings->getGlobalOption ( 'track_cdnurl' )) . "/' : 'http://" . ($settings->getGlobalOption ( 'track_cdnurl' ) ? $settings->getGlobalOption ( 'track_cdnurl' ) : $settings->getGlobalOption ( 'track_cdnurlssl' )) . "/');\nvar d=doc",
+					"g.src=ucdn+"
+			), $code );
+
+		if ($settings->getGlobalOption ( 'track_datacfasync' ))
+			$code = str_replace ( '<script type', '<script data-cfasync="false" type', $code );
+		if ($settings->getGlobalOption ( 'add_download_extensions' ))
+			$code = str_replace ( "_paq.push(['trackPageView']);", "_paq.push(['addDownloadExtensions', '" . ($settings->getGlobalOption ( 'add_download_extensions' )) . "']);\n_paq.push(['trackPageView']);", $code );
+		if ($settings->getGlobalOption ( 'limit_cookies' ))
+			$code = str_replace ( "_paq.push(['trackPageView']);", "_paq.push(['setVisitorCookieTimeout', '" . $settings->getGlobalOption ( 'limit_cookies_visitor' ) . "']);\n_paq.push(['setSessionCookieTimeout', '" . $settings->getGlobalOption ( 'limit_cookies_session' ) . "']);\n_paq.push(['setReferralCookieTimeout', '" . $settings->getGlobalOption ( 'limit_cookies_referral' ) . "']);\n_paq.push(['trackPageView']);", $code );
+		if ($settings->getGlobalOption ( 'force_protocol' ) != 'disabled')
+			$code = str_replace ( '"//', '"' . $settings->getGlobalOption ( 'force_protocol' ) . '://', $code );
+		if ($settings->getGlobalOption ( 'track_content' ) == 'all')
+			$code = str_replace ( "_paq.push(['trackPageView']);", "_paq.push(['trackPageView']);\n_paq.push(['trackAllContentImpressions']);", $code );
+		elseif ($settings->getGlobalOption ( 'track_content' ) == 'visible')
+			$code = str_replace ( "_paq.push(['trackPageView']);", "_paq.push(['trackPageView']);\n_paq.push(['trackVisibleContentImpressions']);", $code );
+		if ((int) $settings->getGlobalOption ( 'track_heartbeat' ) > 0)
+			$code = str_replace ( "_paq.push(['trackPageView']);", "_paq.push(['trackPageView']);\n_paq.push(['enableHeartBeatTimer', ".(int) $settings->getGlobalOption ( 'track_heartbeat' )."]);", $code );
+
+		if ($settings->getGlobalOption ( 'piwik_mode' ) == 'pro')
+			$code = str_replace ( '.piwik.pro', '.piwikpro.com', $code );
+
+		$noScript = array ();
+		preg_match ( '/<noscript>(.*)<\/noscript>/', $code, $noScript );
+		if (isset ( $noScript [0] )) {
+			if ($settings->getGlobalOption ( 'track_nojavascript' ))
+				$noScript [0] = str_replace ( '?idsite', '?rec=1&idsite', $noScript [0] );
+			$noScript = $noScript [0];
+		} else
+			$noScript = '';
+		$script = preg_replace ( '/<noscript>(.*)<\/noscript>/', '', $code );
+		$script = preg_replace ( '/\s+(\r\n|\r|\n)/', '$1', $script );
+		$logger->log ( 'Finished tracking code: ' . $script );
+		$logger->log ( 'Finished noscript code: ' . $noScript );
+		return array (
+				'script' => $script,
+				'noscript' => $noScript,
+				'proxy' => $fetchedProxyUrl
+		);
+	}
+
+	private function apply404Changes() {
+		self::$wpPiwik->log ( 'Apply 404 changes. Blog ID: ' . get_current_blog_id () . ' Site ID: ' . self::$wpPiwik->getOption ( 'site_id' ) );
+		$this->trackingCode = str_replace ( "_paq.push(['trackPageView']);", "_paq.push(['setDocumentTitle', '404/URL = '+String(document.location.pathname+document.location.search).replace(/\//g,'%2f') + '/From = ' + String(document.referrer).replace(/\//g,'%2f')]);\n_paq.push(['trackPageView']);", $this->trackingCode );
+	}
+
+	private function applySearchChanges() {
+		self::$wpPiwik->log ( 'Apply search tracking changes. Blog ID: ' . get_current_blog_id () . ' Site ID: ' . self::$wpPiwik->getOption ( 'site_id' ) );
+		$objSearch = new \WP_Query ( "s=" . get_search_query () . '&showposts=-1' );
+		$intResultCount = $objSearch->post_count;
+		$this->trackingCode = str_replace ( "_paq.push(['trackPageView']);", "_paq.push(['trackSiteSearch','" . get_search_query () . "', false, " . $intResultCount . "]);\n_paq.push(['trackPageView']);", $this->trackingCode );
+	}
+
+	private function addCustomValues() {
+		$customVars = '';
+		for($i = 1; $i <= 5; $i ++) {
+			$postId = get_the_ID ();
+			$metaKey = get_post_meta ( $postId, 'wp-piwik_custom_cat' . $i, true );
+			$metaVal = get_post_meta ( $postId, 'wp-piwik_custom_val' . $i, true );
+			if (! empty ( $metaKey ) && ! empty ( $metaVal ))
+				$customVars .= "_paq.push(['setCustomVariable'," . $i . ", '" . $metaKey . "', '" . $metaVal . "', 'page']);\n";
+		}
+		if (! empty ( $customVars ))
+			$this->trackingCode = str_replace ( "_paq.push(['trackPageView']);", $customVars . "_paq.push(['trackPageView']);", $this->trackingCode );
+	}
+}
\ No newline at end of file
diff --git a/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget.php b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget.php
new file mode 100644
index 0000000000000000000000000000000000000000..7c3b30b2a0272126d82d097d4de6d70cd0cb421f
--- /dev/null
+++ b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget.php
@@ -0,0 +1,375 @@
+<?php
+
+namespace WP_Piwik;
+
+/**
+ * Abstract widget class
+ *
+ * @author Andr&eacute; Br&auml;kling
+ * @package WP_Piwik
+ */
+abstract class Widget {
+	
+	/**
+	 *
+	 * @var Environment variables
+	 */
+	protected static $wpPiwik, $settings;
+	
+	/**
+	 *
+	 * @var Configuration parameters
+	 */
+	protected $isShortcode = false, $method = '', $title = '', $context = 'side', $priority = 'core', $parameter = array (), $apiID = array (), $pageId = 'dashboard', $blogId = null, $name = 'Value', $limit = 10, $content = '';
+	
+	/**
+	 * Widget constructor
+	 *
+	 * @param WP_Piwik $wpPiwik
+	 *        	current WP-Piwik object
+	 * @param WP_Piwik\Settings $settings
+	 *        	current WP-Piwik settings
+	 * @param string $pageId
+	 *        	WordPress page ID (default: dashboard)
+	 * @param string $context
+	 *        	WordPress meta box context (defualt: side)
+	 * @param string $priority
+	 *        	WordPress meta box priority (default: default)
+	 * @param array $params
+	 *        	widget parameters (default: empty array)
+	 * @param boolean $isShortcode
+	 *        	is the widget shown inline? (default: false)
+	 */
+	public function __construct($wpPiwik, $settings, $pageId = 'dashboard', $context = 'side', $priority = 'default', $params = array(), $isShortcode = false) {
+		self::$wpPiwik = $wpPiwik;
+		self::$settings = $settings;
+		$this->pageId = $pageId;
+		$this->context = $context;
+		$this->priority = $priority;
+		if (self::$settings->checkNetworkActivation () && function_exists ( 'is_super_admin' ) && is_super_admin () && isset ( $_GET ['wpmu_show_stats'] )) {
+			switch_to_blog ( ( int ) $_GET ['wpmu_show_stats'] );
+			$this->blogId = get_current_blog_id ();
+			restore_current_blog ();
+		}
+		$this->isShortcode = $isShortcode;
+		$prefix = ($this->pageId == 'dashboard' ? self::$settings->getGlobalOption ( 'plugin_display_name' ) . ' - ' : '');
+		$this->configure ( $prefix, $params );
+		if (is_array ( $this->method ))
+			foreach ( $this->method as $method ) {
+				$this->apiID [$method] = \WP_Piwik\Request::register ( $method, $this->parameter );
+				self::$wpPiwik->log ( "Register request: " . $this->apiID [$method] );
+			}
+		else {
+			$this->apiID [$this->method] = \WP_Piwik\Request::register ( $this->method, $this->parameter );
+			self::$wpPiwik->log ( "Register request: " . $this->apiID [$this->method] );
+		}
+		if ($this->isShortcode)
+			return;
+		add_meta_box ( $this->getName (), $this->title, array (
+				$this,
+				'show' 
+		), $pageId, $this->context, $this->priority );
+	}
+	
+	/**
+	 * Conifguration dummy method
+	 *
+	 * @param string $prefix
+	 *        	metabox title prefix (default: empty)
+	 * @param array $params
+	 *        	widget parameters (default: empty array)
+	 */
+	protected function configure($prefix = '', $params = array()) {
+	}
+	
+	/**
+	 * Default show widget method, handles default Piwik output
+	 */
+	public function show() {
+		$response = self::$wpPiwik->request ( $this->apiID [$this->method] );
+		if (! empty ( $response ['result'] ) && $response ['result'] == 'error')
+			$this->out( '<strong>' . __ ( 'Piwik error', 'wp-piwik' ) . ':</strong> ' . htmlentities ( $response ['message'], ENT_QUOTES, 'utf-8' ) );
+		else {
+			if (isset ( $response [0] ['nb_uniq_visitors'] ))
+				$unique = 'nb_uniq_visitors';
+			else
+				$unique = 'sum_daily_nb_uniq_visitors';
+			$tableHead = array (
+					'label' => __ ( $this->name, 'wp-piwik' ) 
+			);
+			$tableHead [$unique] = __ ( 'Unique', 'wp-piwik' );
+			if (isset ( $response [0] ['nb_visits'] ))
+				$tableHead ['nb_visits'] = __ ( 'Visits', 'wp-piwik' );
+			if (isset ( $response [0] ['nb_hits'] ))
+				$tableHead ['nb_hits'] = __ ( 'Hits', 'wp-piwik' );
+			if (isset ( $response [0] ['nb_actions'] ))
+				$tableHead ['nb_actions'] = __ ( 'Actions', 'wp-piwik' );
+			$tableBody = array ();
+			$count = 0;
+			foreach ( $response as $rowKey => $row ) {
+				$count ++;
+				$tableBody [$rowKey] = array ();
+				foreach ( $tableHead as $key => $value )
+					$tableBody [$rowKey] [] = isset ( $row [$key] ) ? $row [$key] : '-';
+				if ($count == 10)
+					break;
+			}
+			$this->table ( $tableHead, $tableBody, null );
+		}
+	}
+	
+	/**
+	 * Display or store shortcode output
+	 */
+	protected function out($output) {
+		if ($this->isShortcode)
+			$this->output .= $output;
+		else echo $output;
+	}
+
+	/**
+	 * Return shortcode output
+	 */
+	public function get() {
+		return $this->output;
+	}
+	
+	/**
+	 * Display a HTML table
+	 *
+	 * @param array $thead
+	 *        	table header content (array of cells)
+	 * @param array $tbody
+	 *        	table body content (array of rows)
+	 * @param array $tfoot
+	 *        	table footer content (array of cells)
+	 * @param string $class
+	 *        	CSSclass name to apply on table sections
+	 * @param string $javaScript
+	 *        	array of javascript code to apply on body rows
+	 */
+	protected function table($thead, $tbody = array(), $tfoot = array(), $class = false, $javaScript = array(), $classes = array()) {
+		$this->out( '<div class="table"><table class="widefat wp-piwik-table">' );
+		if ($this->isShortcode && $this->title) {
+			$colspan = !empty ( $tbody ) ? count( $tbody[0] ) : 2 ;
+			$this->out( '<tr><th colspan="'.$colspan.'">' . $this->title . '</th></tr>' );
+		}			
+		if (! empty ( $thead ))
+			$this->tabHead ( $thead, $class );
+		if (! empty ( $tbody ))
+			$this->tabBody ( $tbody, $class, $javaScript, $classes );
+		else
+			$this->out( '<tr><td colspan="10">' . __ ( 'No data available.', 'wp-piwik' ) . '</td></tr>' );
+		if (! empty ( $tfoot ))
+			$this->tabFoot ( $tfoot, $class );
+		$this->out( '</table></div>' );
+	}
+	
+	/**
+	 * Display a HTML table header
+	 *
+	 * @param array $thead
+	 *        	array of cells
+	 * @param string $class
+	 *        	CSS class to apply
+	 */
+	private function tabHead($thead, $class = false) {
+		$this->out( '<thead' . ($class ? ' class="' . $class . '"' : '') . '><tr>' );
+		$count = 0;
+		foreach ( $thead as $value )
+			$this->out( '<th' . ($count ++ ? ' class="right"' : '') . '>' . $value . '</th>' );
+		$this->out( '</tr></thead>' );
+	}
+	
+	/**
+	 * Display a HTML table body
+	 * 
+	 * @param array $tbody
+	 *        	array of rows, each row containing an array of cells
+	 * @param string $class
+	 *        	CSS class to apply
+	 * @param unknown $javaScript
+	 *        	array of javascript code to apply (one item per row)
+	 */
+	private function tabBody($tbody, $class = false, $javaScript = array(), $classes = array()) {
+		$this->out( '<tbody' . ($class ? ' class="' . $class . '"' : '') . '>' );
+		foreach ( $tbody as $key => $trow )
+			$this->tabRow ( $trow, isset( $javaScript [$key] ) ?$javaScript [$key] : '', isset ( $classes [$key] ) ?$classes [$key] : '');
+		$this->out( '</tbody>' );
+	}
+	
+	/**
+	 * Display a HTML table footer
+	 *
+	 * @param array $tfoor
+	 *        	array of cells
+	 * @param string $class
+	 *        	CSS class to apply
+	 */
+	private function tabFoot($tfoot, $class = false) {
+		$this->out( '<tfoot' . ($class ? ' class="' . $class . '"' : '') . '><tr>' );
+		$count = 0;
+		foreach ( $tfoot as $value )
+			$this->out( '<td' . ($count ++ ? ' class="right"' : '') . '>' . $value . '</td>' );
+		$this->out( '</tr></tfoot>' );
+	}
+	
+	/**
+	 * Display a HTML table row
+	 *
+	 * @param array $trow
+	 *        	array of cells
+	 * @param string $javaScript
+	 *        	javascript code to apply
+	 */
+	private function tabRow($trow, $javaScript = '', $class = '') {
+		$this->out( '<tr' . (! empty ( $javaScript ) ? ' onclick="' . $javaScript . '"' : '') . (! empty ( $class ) ? ' class="' . $class . '"' : '') . '>' );
+		$count = 0;
+		foreach ( $trow as $tcell )
+			$this->out( '<td' . ($count ++ ? ' class="right"' : '') . '>' . $tcell . '</td>' );
+		$this->out( '</tr>' );
+	}
+	
+	/**
+	 * Get the current request's Piwik time settings
+	 *
+	 * @return array time settings: period => Piwik period, date => requested date, description => time description to show in widget title
+	 */
+	protected function getTimeSettings() {
+		switch (self::$settings->getGlobalOption ( 'default_date' )) {
+			case 'today' :
+				$period = 'day';
+				$date = 'today';
+				$description = 'today';
+				break;
+			case 'current_month' :
+				$period = 'month';
+				$date = 'today';
+				$description = 'current month';
+				break;
+			case 'last_month' :
+				$period = 'month';
+				$date = date ( "Y-m-d", strtotime ( "last day of previous month" ) );
+				$description = 'last month';
+				break;
+			case 'current_week' :
+				$period = 'week';
+				$date = 'today';
+				$description = 'current week';
+				break;
+			case 'last_week' :
+				$period = 'week';
+				$date = date ( "Y-m-d", strtotime ( "-1 week" ) );
+				$description = 'last week';
+				break;
+			case 'yesterday' :
+				$period = 'day';
+				$date = 'yesterday';
+				$description = 'yesterday';
+				break;
+			default :
+				break;
+		}
+		return array (
+				'period' => $period,
+				'date' => isset ( $_GET ['date'] ) ? ( int ) $_GET ['date'] : $date,
+				'description' => isset ( $_GET ['date'] ) ? $this->dateFormat ( $_GET ['date'], $period ) : $description 
+		);
+	}
+	
+	/**
+	 * Format a date to show in widget
+	 *
+	 * @param string $date
+	 *        	date string
+	 * @param string $period
+	 *        	Piwik period
+	 * @return string formatted date
+	 */
+	protected function dateFormat($date, $period = 'day') {
+		$prefix = '';
+		switch ($period) {
+			case 'week' :
+				$prefix = __ ( 'week', 'wp-piwik' ) . ' ';
+				$format = 'W/Y';
+				break;
+			case 'short_week' :
+				$format = 'W';
+				break;
+			case 'month' :
+				$format = 'F Y';
+				$date = date ( 'Y-m-d', strtotime ( $date ) );
+				break;
+			default :
+				$format = get_option ( 'date_format' );
+		}
+		return $prefix . date_i18n ( $format, strtotime ( $date ) );
+	}
+	
+	/**
+	 * Format time to show in widget
+	 *
+	 * @param int $time
+	 *        	time in seconds
+	 * @return string formatted time
+	 */
+	protected function timeFormat($time) {
+		return floor ( $time / 3600 ) . 'h ' . floor ( ($time % 3600) / 60 ) . 'm ' . floor ( ($time % 3600) % 60 ) . 's';
+	}
+	
+	/**
+	 * Convert Piwik range into meaningful text
+	 *
+	 * @return string range description
+	 */
+	public function rangeName() {
+		switch ($this->parameter ['date']) {
+			case 'last30' :
+				return 'last 30 days';
+			case 'last12' :
+				return 'last 12 ' . $this->parameter ['period'] . 's';
+			default :
+				return $this->parameter ['date'];
+		}
+	}
+	
+	/**
+	 * Get the widget name
+	 *
+	 * @return string widget name
+	 */
+	public function getName() {
+		return str_replace ( '\\', '-', get_called_class () );
+	}
+	
+	/**
+	 * Display a pie chart
+	 *
+	 * @param
+	 *        	array chart data array(array(0 => name, 1 => value))
+	 */
+	public function pieChart($data) {
+		$this->out( '<div id="wp-piwik_stats_' . $this->getName () . '_graph" style="height:310px;width:100%"></div>' );
+		$this->out( '<script type="text/javascript">$plotBrowsers = $j.jqplot("wp-piwik_stats_' . $this->getName () . '_graph", [[' );
+		$list = '';
+		foreach ( $data as $key => $dataSet ) {
+			$list .= '["' . $dataSet [0] . '", ' . $dataSet [1] . '],';
+			if ($key == 'Others') break;
+		}
+		$this->out( substr ( $list, 0, - 1 ) );
+		$this->out( ']], {seriesDefaults:{renderer:$j.jqplot.PieRenderer, rendererOptions:{sliceMargin:8}},legend:{show:true}});</script>' );
+	}
+	
+	/**
+	 * Return an array value by key, return '-' if not set
+	 *
+	 * @param array $array
+	 *        	array to get a value from
+	 * @param string $key
+	 *        	key of the value to get from array
+	 * @return string found value or '-' as a placeholder
+	 */
+	protected function value($array, $key) {
+		return (isset ( $array [$key] ) ? $array [$key] : '-');
+	}
+}
\ No newline at end of file
diff --git a/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget/BrowserDetails.php b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget/BrowserDetails.php
new file mode 100644
index 0000000000000000000000000000000000000000..384263bdbcb6bee73677d03af9280b8edda3157d
--- /dev/null
+++ b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget/BrowserDetails.php
@@ -0,0 +1,76 @@
+<?php
+
+	namespace WP_Piwik\Widget;
+
+	use WP_Piwik\Widget;
+
+	class BrowserDetails extends Widget {
+	
+		public $className = __CLASS__;
+
+		protected function configure($prefix = '', $params = array()) {
+			$timeSettings = $this->getTimeSettings();			
+			$this->parameter = array(
+				'idSite' => self::$wpPiwik->getPiwikSiteId($this->blogId),
+				'period' => $timeSettings['period'],
+				'date'  => $timeSettings['date']
+			);
+			$this->title = $prefix.__('Browser Details', 'wp-piwik').' ('.__($timeSettings['description'],'wp-piwik').')';
+			$this->method = 'DevicesDetection.getBrowserVersions';
+			$this->context = 'normal';
+			wp_enqueue_script('wp-piwik', self::$wpPiwik->getPluginURL().'js/wp-piwik.js', array(), self::$wpPiwik->getPluginVersion(), true);
+			wp_enqueue_script('wp-piwik-jqplot',self::$wpPiwik->getPluginURL().'js/jqplot/wp-piwik.jqplot.js',array('jquery'));
+			wp_enqueue_style('wp-piwik', self::$wpPiwik->getPluginURL().'css/wp-piwik.css',array(),self::$wpPiwik->getPluginVersion());
+			add_action('admin_head-index.php', array($this, 'addHeaderLines'));
+		}
+		
+		public function addHeaderLines() {
+			echo '<!--[if IE]><script language="javascript" type="text/javascript" src="'.self::$wpPiwik->getPluginURL().'js/jqplot/excanvas.min.js"></script><![endif]-->';
+			echo '<link rel="stylesheet" href="'.self::$wpPiwik->getPluginURL().'js/jqplot/jquery.jqplot.min.css" type="text/css"/>';
+			echo '<script type="text/javascript">var $j = jQuery.noConflict();</script>';			
+		}
+		
+		public function show() {
+			$response = self::$wpPiwik->request($this->apiID[$this->method]);
+			$tableBody = array();
+			if (!empty($response['result']) && $response['result'] ='error')
+				echo '<strong>'.__('Piwik error', 'wp-piwik').':</strong> '.htmlentities($response['message'], ENT_QUOTES, 'utf-8');
+			else {
+				$tableHead = array(__('Browser', 'wp-piwik'), __('Unique', 'wp-piwik'), __('Percent', 'wp-piwik'));
+				if (isset($response[0]['nb_uniq_visitors'])) $unique = 'nb_uniq_visitors';
+				else $unique = 'sum_daily_nb_uniq_visitors';
+				$count = 0;
+				$sum = 0;
+				$js = array();
+				$class = array();
+				foreach ($response as $row) {
+					$count++;
+					$sum += isset($row[$unique])?$row[$unique]:0;
+					if ($count < $this->limit)
+						$tableBody[$row['label']] = array($row['label'], $row[$unique], 0);
+					elseif (!isset($tableBody['Others'])) {
+						$tableBody['Others'] = array($row['label'], $row[$unique], 0);
+						$class['Others'] = 'wp-piwik-hideDetails';
+						$js['Others'] = '$j'."( '.wp-piwik-hideDetails' ).toggle( 'hidden' );";
+						$tableBody[$row['label']] = array($row['label'], $row[$unique], 0);
+						$class[$row['label']] = 'wp-piwik-hideDetails hidden';
+						$js[$row['label']] = '$j'."( '.wp-piwik-hideDetails' ).toggle( 'hidden' );";
+					} else {
+						$tableBody['Others'][1] += $row[$unique];
+						$tableBody[$row['label']] = array($row['label'], $row[$unique], 0);
+						$class[$row['label']] = 'wp-piwik-hideDetails hidden';
+						$js[$row['label']] = '$j'."( '.wp-piwik-hideDetails' ).toggle( 'hidden' );";
+					}
+				}
+				if ($count > $this->limit)
+					$tableBody['Others'][0] = __('Others', 'wp-piwik');
+
+				foreach ($tableBody as $key => $row)
+					$tableBody[$key][2] = number_format($row[1]/$sum*100, 2).'%';
+				
+				if (!empty($tableBody)) $this->pieChart($tableBody);
+				$this->table($tableHead, $tableBody, null, false, $js, $class);
+			}
+		}
+				
+	}
\ No newline at end of file
diff --git a/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget/Browsers.php b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget/Browsers.php
new file mode 100644
index 0000000000000000000000000000000000000000..9b36045f256b4da337e5d24523f25c3ad8c4ab7b
--- /dev/null
+++ b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget/Browsers.php
@@ -0,0 +1,79 @@
+<?php
+
+	namespace WP_Piwik\Widget;
+
+	use WP_Piwik\Widget;
+
+	class Browsers extends Widget {
+	
+		public $className = __CLASS__;
+
+		protected function configure($prefix = '', $params = array()) {
+			$timeSettings = $this->getTimeSettings();
+			$this->parameter = array(
+				'idSite' => self::$wpPiwik->getPiwikSiteId($this->blogId),
+				'period' => $timeSettings['period'],
+				'date'  => $timeSettings['date']
+			);
+			$this->title = $prefix.__('Browsers', 'wp-piwik').' ('.__($timeSettings['description'],'wp-piwik').')';
+			$this->method = 'DevicesDetection.getBrowsers';
+			$this->context = 'normal';
+			wp_enqueue_script('wp-piwik', self::$wpPiwik->getPluginURL().'js/wp-piwik.js', array(), self::$wpPiwik->getPluginVersion(), true);
+			wp_enqueue_script('wp-piwik-jqplot',self::$wpPiwik->getPluginURL().'js/jqplot/wp-piwik.jqplot.js',array('jquery'));
+			wp_enqueue_style('wp-piwik', self::$wpPiwik->getPluginURL().'css/wp-piwik.css',array(),self::$wpPiwik->getPluginVersion());
+			add_action('admin_head-index.php', array($this, 'addHeaderLines'));
+		}
+		
+		public function addHeaderLines() {
+			echo '<!--[if IE]><script language="javascript" type="text/javascript" src="'.self::$wpPiwik->getPluginURL().'js/jqplot/excanvas.min.js"></script><![endif]-->';
+			echo '<link rel="stylesheet" href="'.self::$wpPiwik->getPluginURL().'js/jqplot/jquery.jqplot.min.css" type="text/css"/>';
+			echo '<script type="text/javascript">var $j = jQuery.noConflict();</script>';			
+		}
+		
+		public function show() {
+			$response = self::$wpPiwik->request($this->apiID[$this->method]);
+			$tableBody = array();
+			if (!empty($response['result']) && $response['result'] ='error')
+				echo '<strong>'.__('Piwik error', 'wp-piwik').':</strong> '.htmlentities($response['message'], ENT_QUOTES, 'utf-8');
+			else {
+				$tableHead = array(__('Browser', 'wp-piwik'), __('Unique', 'wp-piwik'), __('Percent', 'wp-piwik'));
+				if (isset($response[0]['nb_uniq_visitors'])) $unique = 'nb_uniq_visitors';
+				else $unique = 'sum_daily_nb_uniq_visitors';
+				$count = 0;
+				$sum = 0;
+				$js = array();
+				$class = array();
+				foreach ($response as $row) {
+					$count++;
+					$sum += isset($row[$unique])?$row[$unique]:0;
+					if ($count < $this->limit)
+						$tableBody[$row['label']] = array($row['label'], $row[$unique], 0);
+					elseif (!isset($tableBody['Others'])) {
+						$tableBody['Others'] = array($row['label'], $row[$unique], 0);
+						$class['Others'] = 'wp-piwik-hideDetails';
+						$js['Others'] = '$j'."( '.wp-piwik-hideDetails' ).toggle( 'hidden' );";
+						$tableBody[$row['label']] = array($row['label'], $row[$unique], 0);
+						$class[$row['label']] = 'wp-piwik-hideDetails hidden';
+						$js[$row['label']] = '$j'."( '.wp-piwik-hideDetails' ).toggle( 'hidden' );";
+					} else {
+						$tableBody['Others'][1] += $row[$unique];
+						$tableBody[$row['label']] = array($row['label'], $row[$unique], 0);
+						$class[$row['label']] = 'wp-piwik-hideDetails hidden';
+						$js[$row['label']] = '$j'."( '.wp-piwik-hideDetails' ).toggle( 'hidden' );";
+					}
+				}
+				if ($count > $this->limit)
+					$tableBody['Others'][0] = __('Others', 'wp-piwik');
+				elseif ($count == $this->limit) {
+					$class['Others'] = $js['Others'] = '';
+				}
+
+				foreach ($tableBody as $key => $row)
+					$tableBody[$key][2] = number_format($row[1]/$sum*100, 2).'%';
+				
+				if (!empty($tableBody)) $this->pieChart($tableBody);
+				$this->table($tableHead, $tableBody, null, false, $js, $class);
+			}
+		}
+				
+	}
\ No newline at end of file
diff --git a/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget/Chart.php b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget/Chart.php
new file mode 100644
index 0000000000000000000000000000000000000000..44387fe0468c058825578bba97c7f7f4bfff36b6
--- /dev/null
+++ b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget/Chart.php
@@ -0,0 +1,78 @@
+<?php
+
+	namespace WP_Piwik\Widget;
+
+	use WP_Piwik\Widget;
+
+	class Chart extends Widget {
+	
+		public $className = __CLASS__;
+
+		protected function configure($prefix = '', $params = array()) {
+			$timeSettings = $this->getTimeSettings();			
+			$this->parameter = array(
+				'idSite' => self::$wpPiwik->getPiwikSiteId($this->blogId),
+				'period' => isset($params['period'])?$params['period']:$timeSettings['period'],
+				'date'  => 'last'.($timeSettings['period']=='day'?'30':'12'),
+				'limit' => null
+			);
+			$this->title = $prefix.__('Visitors', 'wp-piwik').' ('.__($this->rangeName(),'wp-piwik').')';
+			$this->method = array('VisitsSummary.getVisits', 'VisitsSummary.getUniqueVisitors', 'VisitsSummary.getBounceCount', 'VisitsSummary.getActions');
+			$this->context = 'normal';
+			wp_enqueue_script('wp-piwik', self::$wpPiwik->getPluginURL().'js/wp-piwik.js', array(), self::$wpPiwik->getPluginVersion(), true);
+			wp_enqueue_script('wp-piwik-jqplot',self::$wpPiwik->getPluginURL().'js/jqplot/wp-piwik.jqplot.js',array('jquery'));
+			wp_enqueue_style('wp-piwik', self::$wpPiwik->getPluginURL().'css/wp-piwik.css',array(),self::$wpPiwik->getPluginVersion());
+			add_action('admin_head-index.php', array($this, 'addHeaderLines'));
+		}
+		
+		public function addHeaderLines() {
+			echo '<!--[if IE]><script language="javascript" type="text/javascript" src="'.self::$wpPiwik->getPluginURL().'js/jqplot/excanvas.min.js"></script><![endif]-->';
+			echo '<link rel="stylesheet" href="'.self::$wpPiwik->getPluginURL().'js/jqplot/jquery.jqplot.min.css" type="text/css"/>';
+			echo '<script type="text/javascript">var $j = jQuery.noConflict();</script>';			
+		}
+		
+		public function show() {
+			$response = array();
+			$success = true;
+			foreach ($this->method as $method) {
+				$response[$method] = self::$wpPiwik->request($this->apiID[$method]);
+				if (!empty($response[$method]['result']) && $response[$method]['result'] ='error')
+					$success = false;
+			}
+			if (!$success)
+				echo '<strong>'.__('Piwik error', 'wp-piwik').':</strong> '.htmlentities($response[$method]['message'], ENT_QUOTES, 'utf-8');
+			else {
+				$values = $labels = $bounced =  $unique = '';
+				$count = $uniqueSum = 0;
+				if (is_array($response['VisitsSummary.getVisits']))
+					foreach ($response['VisitsSummary.getVisits'] as $date => $value) {
+						$count++;
+						$values .= $value.',';
+						$unique .= $response['VisitsSummary.getUniqueVisitors'][$date].',';
+						$bounced .= $response['VisitsSummary.getBounceCount'][$date].',';
+						if ($this->parameter['period'] == 'week') {
+							preg_match("/[0-9]{4}-(0[1-9]|1[0-2])-(0[1-9]|[1-2][0-9]|3[0-1])/", $date, $dateList);
+							$textKey = $this->dateFormat($dateList[0], 'short_week');
+						} else $textKey = substr($date, -2);
+						$labels .= '['.$count.',"'.$textKey.'"],';
+						$uniqueSum += $response['VisitsSummary.getActions'][$date];
+					} 
+				else {
+					$values = '0,';
+					$labels = '[0,"-"],';
+					$unique = '0,';
+					$bounced = '0,';
+				}
+				$average = round($uniqueSum/30,0);
+				$values = substr($values, 0, -1);
+				$unique = substr($unique, 0, -1);
+				$labels = substr($labels, 0, -1);
+				$bounced = substr($bounced, 0, -1);
+				echo '<div id="wp-piwik_stats_vistors_graph" style="height:220px;" title="'.__('The graph contains the values shown in the table below (visitors / unique / bounces). The red line show a linear trendline (unique).', 'wp-piwik').'"></div>';
+				echo '<script type="text/javascript">';
+				echo '$j.jqplot("wp-piwik_stats_vistors_graph", [['.$values.'],['.$unique.'],['.$bounced.']],{axes:{yaxis:{min:0, tickOptions:{formatString:"%.0f"}},xaxis:{min:1,max:30,ticks:['.$labels.']}},seriesDefaults:{showMarker:false,lineWidth:1,fill:true,fillAndStroke:true,fillAlpha:0.9,trendline:{show:false,color:"#C00",lineWidth:1.5,type:"exp"}},series:[{color:"#90AAD9",fillColor:"#D4E2ED"},{color:"#A3BCEA",fillColor:"#E4F2FD",trendline:{show:true,label:"Unique visitor trend"}},{color:"#E9A0BA",fillColor:"#FDE4F2"}],});';
+				echo '</script>';
+			}
+		}
+		
+	}
\ No newline at end of file
diff --git a/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget/Keywords.php b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget/Keywords.php
new file mode 100644
index 0000000000000000000000000000000000000000..bb50c0c1bef192141bc0d6a67e21cd84d6170f16
--- /dev/null
+++ b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget/Keywords.php
@@ -0,0 +1,21 @@
+<?php
+
+	namespace WP_Piwik\Widget;
+
+	class Keywords extends \WP_Piwik\Widget {
+	
+		public $className = __CLASS__;
+
+		protected function configure($prefix = '', $params = array()) {
+			$timeSettings = $this->getTimeSettings();
+			$this->parameter = array(
+				'idSite' => self::$wpPiwik->getPiwikSiteId($this->blogId),
+				'period' => $timeSettings['period'],
+				'date'  => $timeSettings['date']
+			);
+			$this->title = $prefix.__('Keywords', 'wp-piwik').' ('.__($timeSettings['description'],'wp-piwik').')';
+			$this->method = 'Referrers.getKeywords';
+			$this->name = 'Keyword';
+		}
+
+	}
\ No newline at end of file
diff --git a/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget/Noresult.php b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget/Noresult.php
new file mode 100644
index 0000000000000000000000000000000000000000..4e1f23f641fe8e13db55606730006c39cf624c69
--- /dev/null
+++ b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget/Noresult.php
@@ -0,0 +1,37 @@
+<?php
+
+	namespace WP_Piwik\Widget;
+
+	class Noresult extends \WP_Piwik\Widget {
+	
+		public $className = __CLASS__;
+
+		protected function configure($prefix = '', $params = array()) {
+			$timeSettings = $this->getTimeSettings();
+			$this->parameter = array(
+				'idSite' => self::$wpPiwik->getPiwikSiteId($this->blogId),
+				'period' => $timeSettings['period'],
+				'date'  => $timeSettings['date']
+			);
+			$this->title = $prefix.__('Site Search', 'wp-piwik').' ('.__($timeSettings['description'],'wp-piwik').')';
+			$this->method = 'Actions.getSiteSearchNoResultKeywords';
+		}
+		
+		public function show() {
+			$response = self::$wpPiwik->request($this->apiID[$this->method]);
+			if (!empty($response['result']) && $response['result'] ='error')
+				echo '<strong>'.__('Piwik error', 'wp-piwik').':</strong> '.htmlentities($response['message'], ENT_QUOTES, 'utf-8');
+			else {
+				$tableHead = array(__('Keyword', 'wp-piwik'), __('Requests', 'wp-piwik'), __('Bounced', 'wp-piwik'));
+				$tableBody = array();
+				$count = 0;
+				foreach ($response as $row) {
+					$count++;
+					$tableBody[] = array($row['label'], $row['nb_visits'], $row['bounce_rate']);
+					if ($count == 10) break;
+				}
+				$this->table($tableHead, $tableBody, null);
+			}
+		}
+		
+	}
\ No newline at end of file
diff --git a/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget/OptOut.php b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget/OptOut.php
new file mode 100644
index 0000000000000000000000000000000000000000..7422eeaa3026825523b58c6c7c3e73e8549c4b54
--- /dev/null
+++ b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget/OptOut.php
@@ -0,0 +1,28 @@
+<?php
+
+	namespace WP_Piwik\Widget;
+
+	class OptOut extends \WP_Piwik\Widget {
+	
+		public $className = __CLASS__;
+		
+		protected function configure($prefix = '', $params = array()) {
+			$this->parameter = $params;
+		}
+
+		public function show() {
+			$protocol = (isset ( $_SERVER ['HTTPS'] ) && $_SERVER ['HTTPS'] != 'off') ? 'https' : 'http';
+			switch (self::$settings->getGlobalOption ( 'piwik_mode' )) {
+				case 'php' :
+					$PIWIK_URL = $protocol . ':' . self::$settings->getGlobalOption ( 'proxy_url' );
+					break;
+				case 'pro' :
+					$PIWIK_URL = 'https://' . self::$settings->getGlobalOption ( 'piwik_user' ) . '.piwik.pro/';
+					break;
+				default :
+					$PIWIK_URL = self::$settings->getGlobalOption ( 'piwik_url' );
+			}
+			$this->out ( '<iframe frameborder="no" width="'.(isset($this->parameter['width'])?$this->parameter['width']:'').'" height="'.(isset($this->parameter['height'])?$this->parameter['height']:'').'" src="'.$PIWIK_URL.'index.php?module=CoreAdminHome&action=optOut&language='.(isset($this->parameter['language'])?$this->parameter['language']:'en').'"></iframe>' );
+		}
+		
+	}
\ No newline at end of file
diff --git a/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget/Overview.php b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget/Overview.php
new file mode 100644
index 0000000000000000000000000000000000000000..5ed41e9ee3eb88da0383e885b1457b547fea9482
--- /dev/null
+++ b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget/Overview.php
@@ -0,0 +1,54 @@
+<?php
+
+	namespace WP_Piwik\Widget;
+
+	class Overview extends \WP_Piwik\Widget {
+	
+		public $className = __CLASS__;
+
+		protected function configure($prefix = '', $params = array()) {
+			$timeSettings = $this->getTimeSettings();		
+			$this->parameter = array(
+				'idSite' => self::$wpPiwik->getPiwikSiteId($this->blogId),
+				'period' => isset($params['period'])?$params['period']:$timeSettings['period'],
+				'date'  => isset($params['date'])?$params['date']: $timeSettings['date'],
+				'description' => $timeSettings['description']
+			);
+			$this->title = !$this->isShortcode?$prefix.__('Overview', 'wp-piwik').' ('.__($this->pageId == 'dashboard'?$this->rangeName():$timeSettings['description'],'wp-piwik').')':($params['title']?$params['title']:'');
+			$this->method = 'VisitsSummary.get';
+		}
+		
+		public function show() {
+			$response = self::$wpPiwik->request($this->apiID[$this->method]);
+			if (!empty($response['result']) && $response['result'] ='error')
+				echo '<strong>'.__('Piwik error', 'wp-piwik').':</strong> '.htmlentities($response['message'], ENT_QUOTES, 'utf-8');
+			else {
+				if ($this->parameter['date'] == 'last30') {
+					$result = array();
+					if (is_array($response))
+						foreach ($response as $data)
+							foreach ($data as $key => $value)
+								if (isset($result[$key]))
+									$result[$key] += $value;
+								else
+									$result[$key] = $value;
+					$response = $result;	
+				}
+				$time = isset($response['sum_visit_length'])?$this->timeFormat($response['sum_visit_length']):'-';
+				$avgTime = isset($response['avg_time_on_site'])?$this->timeFormat($response['avg_time_on_site']):'-';
+				$tableHead = null;
+				$tableBody = array(
+					array(__('Visitors', 'wp-piwik').':', $this->value($response, 'nb_visits')),
+					array(__('Unique visitors', 'wp-piwik').':', $this->value($response, 'nb_uniq_visitors')),
+					array(__('Page views', 'wp-piwik').':', $this->value($response, 'nb_actions').' (&#216; '.$this->value($response, 'nb_actions_per_visit').')'),
+					array(__('Total time spent', 'wp-piwik').':', $time),
+					array(__('Bounce count', 'wp-piwik').':', $this->value($response, 'bounce_count').' ('.$this->value($response, 'bounce_rate').')')
+				);
+				if ($this->parameter['date'] != 'last30')
+					array_push($tableBody, array(__('Time/visit', 'wp-piwik').':', $avgTime), array(__('Max. page views in one visit', 'wp-piwik').':', $this->value($response, 'max_actions')));
+				$tableFoot = (self::$settings->getGlobalOption('piwik_shortcut')?array(__('Shortcut', 'wp-piwik').':', '<a href="'.self::$settings->getGlobalOption('piwik_url').'">Piwik</a>'.(isset($aryConf['inline']) && $aryConf['inline']?' - <a href="?page=wp-piwik_stats">WP-Piwik</a>':'')):null);
+				$this->table($tableHead, $tableBody, $tableFoot);
+			}
+		}
+		
+	}
\ No newline at end of file
diff --git a/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget/Pages.php b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget/Pages.php
new file mode 100644
index 0000000000000000000000000000000000000000..af96b1baf66c2f770ec6621626742285d1d51822
--- /dev/null
+++ b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget/Pages.php
@@ -0,0 +1,21 @@
+<?php
+
+	namespace WP_Piwik\Widget;
+
+	class Pages extends \WP_Piwik\Widget {
+	
+		public $className = __CLASS__;
+
+		protected function configure($prefix = '', $params = array()) {
+			$timeSettings = $this->getTimeSettings();
+			$this->parameter = array(
+				'idSite' => self::$wpPiwik->getPiwikSiteId($this->blogId),
+				'period' => $timeSettings['period'],
+				'date'  => $timeSettings['date']
+			);
+			$this->title = $prefix.__('Pages', 'wp-piwik').' ('.__($timeSettings['description'],'wp-piwik').')';
+			$this->method = 'Actions.getPageTitles';
+			$this->name = 'Page';
+		}
+		
+	}
\ No newline at end of file
diff --git a/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget/Plugins.php b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget/Plugins.php
new file mode 100644
index 0000000000000000000000000000000000000000..92b6319748311ef826d0d2a7efc5ca7f26814eaf
--- /dev/null
+++ b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget/Plugins.php
@@ -0,0 +1,37 @@
+<?php
+
+	namespace WP_Piwik\Widget;
+
+	class Plugins extends \WP_Piwik\Widget {
+	
+		public $className = __CLASS__;
+
+		protected function configure($prefix = '', $params = array()) {
+			$timeSettings = $this->getTimeSettings();
+			$this->parameter = array(
+				'idSite' => self::$wpPiwik->getPiwikSiteId($this->blogId),
+				'period' => $timeSettings['period'],
+				'date'  => $timeSettings['date']
+			);
+			$this->title = $prefix.__('Plugins', 'wp-piwik').' ('.__($timeSettings['description'],'wp-piwik').')';
+			$this->method = 'DevicePlugins.getPlugin';
+		}
+		
+		public function show() {
+			$response = self::$wpPiwik->request($this->apiID[$this->method]);
+			if (!empty($response['result']) && $response['result'] ='error')
+				echo '<strong>'.__('Piwik error', 'wp-piwik').':</strong> '.htmlentities($response['message'], ENT_QUOTES, 'utf-8');
+			else {
+				$tableHead = array(__('Plugin', 'wp-piwik'), __('Visits', 'wp-piwik'), __('Percent', 'wp-piwik'));
+				$tableBody = array();
+				$count = 0;
+				foreach ($response as $row) {
+					$count++;
+					$tableBody[] = array($row['label'], $row['nb_visits'], $row['nb_visits_percentage']);
+					if ($count == 10) break;
+				}
+				$this->table($tableHead, $tableBody, null);
+			}
+		}
+		
+	}
\ No newline at end of file
diff --git a/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget/Post.php b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget/Post.php
new file mode 100644
index 0000000000000000000000000000000000000000..a32a5bbbbf1c3a13137fe3335c9364a509553c12
--- /dev/null
+++ b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget/Post.php
@@ -0,0 +1,51 @@
+<?php
+
+	namespace WP_Piwik\Widget;
+
+	class Post extends \WP_Piwik\Widget {
+	
+		public $className = __CLASS__;
+
+		protected function configure($prefix = '', $params = array()) {
+			global $post;
+			$this->parameter = array(
+				'idSite' => self::$wpPiwik->getPiwikSiteId($this->blogId),
+				'period' => 'range',
+				'date'  => isset($params['range'])?$params['range']:'last30',
+				'key' => isset($params['key'])?$params['key']:null,
+				'pageUrl' => isset($params['url'])?$params['url']:urlencode(get_permalink($post->ID)),
+			);
+			$this->title = $prefix.__('Overview', 'wp-piwik').' ('.__($this->parameter['date'],'wp-piwik').')';
+			$this->method = 'Actions.getPageUrl';
+		}
+		
+		public function show() {
+			$response = self::$wpPiwik->request($this->apiID[$this->method]);
+			if (!empty($response['result']) && $response['result'] ='error')
+				echo '<strong>'.__('Piwik error', 'wp-piwik').':</strong> '.htmlentities($response['message'], ENT_QUOTES, 'utf-8');
+			else {
+				if (isset($response[0]))
+					$response = $response[0];
+				if ($this->parameter['key']) {
+					echo isset($response[$this->parameter['key']])?$response[$this->parameter['key']]:'<em>not defined</em>';
+					return;
+				}
+				$time = isset($response['entry_sum_visit_length'])?$this->timeFormat($response['entry_sum_visit_length']):'-';
+				$avgTime = isset($response['avg_time_on_page'])?$this->timeFormat($response['avg_time_on_page']):'-';
+				$tableHead = null;
+				$tableBody = array(
+					array(__('Visitors', 'wp-piwik').':', $this->value($response, 'nb_visits')),
+					array(__('Unique visitors', 'wp-piwik').':', $this->value($response, 'sum_daily_nb_uniq_visitors')),
+					array(__('Page views', 'wp-piwik').':', $this->value($response, 'nb_hits').' (&#216; '.$this->value($response, 'entry_nb_actions').')'),
+					array(__('Total time spent', 'wp-piwik').':', $time),
+					array(__('Time/visit', 'wp-piwik').':', $avgTime),
+					array(__('Bounce count', 'wp-piwik').':', $this->value($response, 'entry_bounce_count').' ('.$this->value($response, 'bounce_rate').')'),
+					array(__('Min. generation time', 'wp-piwik').':', $this->value($response, 'min_time_generation')),
+					array(__('Max. generation time', 'wp-piwik').':', $this->value($response, 'max_time_generation'))
+				); 
+				$tableFoot = (self::$settings->getGlobalOption('piwik_shortcut')?array(__('Shortcut', 'wp-piwik').':', '<a href="'.self::$settings->getGlobalOption('piwik_url').'">Piwik</a>'.(isset($aryConf['inline']) && $aryConf['inline']?' - <a href="?page=wp-piwik_stats">WP-Piwik</a>':'')):null);
+				$this->table($tableHead, $tableBody, $tableFoot);
+			}
+		}
+		
+	}
\ No newline at end of file
diff --git a/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget/Referrers.php b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget/Referrers.php
new file mode 100644
index 0000000000000000000000000000000000000000..51c88824e8cbdc1e7a202020f043c8fbe66a9649
--- /dev/null
+++ b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget/Referrers.php
@@ -0,0 +1,21 @@
+<?php
+
+	namespace WP_Piwik\Widget;
+
+	class Referrers extends \WP_Piwik\Widget {
+	
+		public $className = __CLASS__;
+
+		protected function configure($prefix = '', $params = array()) {
+			$timeSettings = $this->getTimeSettings();
+			$this->parameter = array(
+				'idSite' => self::$wpPiwik->getPiwikSiteId($this->blogId),
+				'period' => $timeSettings['period'],
+				'date'  => $timeSettings['date']
+			);
+			$this->title = $prefix.__('Referrers', 'wp-piwik').' ('.__($timeSettings['description'],'wp-piwik').')';
+			$this->method = 'Referrers.getWebsites';
+			$this->name = 'Referrer';
+		}
+		
+	}
\ No newline at end of file
diff --git a/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget/Screens.php b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget/Screens.php
new file mode 100644
index 0000000000000000000000000000000000000000..74e9641343123644f983be531b19d75ee4dc0d33
--- /dev/null
+++ b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget/Screens.php
@@ -0,0 +1,74 @@
+<?php
+
+	namespace WP_Piwik\Widget;
+
+	class Screens extends \WP_Piwik\Widget {
+	
+		public $className = __CLASS__;
+
+		protected function configure($prefix = '', $params = array()) {
+			$timeSettings = $this->getTimeSettings();			
+			$this->parameter = array(
+				'idSite' => self::$wpPiwik->getPiwikSiteId($this->blogId),
+				'period' => $timeSettings['period'],
+				'date'  => $timeSettings['date']
+			);
+			$this->title = $prefix.__('Resolutions', 'wp-piwik').' ('.__($timeSettings['description'],'wp-piwik').')';
+			$this->method = 'Resolution.getResolution';
+			$this->context = 'normal';
+			wp_enqueue_script('wp-piwik', self::$wpPiwik->getPluginURL().'js/wp-piwik.js', array(), self::$wpPiwik->getPluginVersion(), true);
+			wp_enqueue_script('wp-piwik-jqplot',self::$wpPiwik->getPluginURL().'js/jqplot/wp-piwik.jqplot.js',array('jquery'));
+			wp_enqueue_style('wp-piwik', self::$wpPiwik->getPluginURL().'css/wp-piwik.css',array(),self::$wpPiwik->getPluginVersion());
+			add_action('admin_head-index.php', array($this, 'addHeaderLines'));
+		}
+		
+		public function addHeaderLines() {
+			echo '<!--[if IE]><script language="javascript" type="text/javascript" src="'.self::$wpPiwik->getPluginURL().'js/jqplot/excanvas.min.js"></script><![endif]-->';
+			echo '<link rel="stylesheet" href="'.self::$wpPiwik->getPluginURL().'js/jqplot/jquery.jqplot.min.css" type="text/css"/>';
+			echo '<script type="text/javascript">var $j = jQuery.noConflict();</script>';			
+		}
+		
+		public function show() {
+			$response = self::$wpPiwik->request($this->apiID[$this->method]);
+			$tableBody = array();
+			if (!empty($response['result']) && $response['result'] ='error')
+				echo '<strong>'.__('Piwik error', 'wp-piwik').':</strong> '.htmlentities($response['message'], ENT_QUOTES, 'utf-8');
+			else {
+				$tableHead = array(__('Resolution', 'wp-piwik'), __('Unique', 'wp-piwik'), __('Percent', 'wp-piwik'));
+				if (isset($response[0]['nb_uniq_visitors'])) $unique = 'nb_uniq_visitors';
+				else $unique = 'sum_daily_nb_uniq_visitors';
+				$count = 0;
+				$sum = 0;
+				$js = array();
+				$class = array();
+				foreach ($response as $row) {
+					$count++;
+					$sum += isset($row[$unique])?$row[$unique]:0;
+					if ($count < $this->limit)
+						$tableBody[$row['label']] = array($row['label'], $row[$unique], 0);
+					elseif (!isset($tableBody['Others'])) {
+						$tableBody['Others'] = array($row['label'], $row[$unique], 0);
+						$class['Others'] = 'wp-piwik-hideDetails';
+						$js['Others'] = '$j'."( '.wp-piwik-hideDetails' ).toggle( 'hidden' );";
+						$tableBody[$row['label']] = array($row['label'], $row[$unique], 0);
+						$class[$row['label']] = 'wp-piwik-hideDetails hidden';
+						$js[$row['label']] = '$j'."( '.wp-piwik-hideDetails' ).toggle( 'hidden' );";
+					} else {
+						$tableBody['Others'][1] += $row[$unique];
+						$tableBody[$row['label']] = array($row['label'], $row[$unique], 0);
+						$class[$row['label']] = 'wp-piwik-hideDetails hidden';
+						$js[$row['label']] = '$j'."( '.wp-piwik-hideDetails' ).toggle( 'hidden' );";
+					}
+				}
+				if ($count > $this->limit)
+					$tableBody['Others'][0] = __('Others', 'wp-piwik');
+
+				foreach ($tableBody as $key => $row)
+					$tableBody[$key][2] = number_format($row[1]/$sum*100, 2).'%';
+				
+				if (!empty($tableBody)) $this->pieChart($tableBody);
+				$this->table($tableHead, $tableBody, null, false, $js, $class);
+			}
+		}
+				
+	}
\ No newline at end of file
diff --git a/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget/Search.php b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget/Search.php
new file mode 100644
index 0000000000000000000000000000000000000000..5dfe94a7cb3218b973faf07316a9dd950693b415
--- /dev/null
+++ b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget/Search.php
@@ -0,0 +1,37 @@
+<?php
+
+	namespace WP_Piwik\Widget;
+
+	class Search extends \WP_Piwik\Widget {
+	
+		public $className = __CLASS__;
+
+		protected function configure($prefix = '', $params = array()) {
+			$timeSettings = $this->getTimeSettings();
+			$this->parameter = array(
+				'idSite' => self::$wpPiwik->getPiwikSiteId($this->blogId),
+				'period' => $timeSettings['period'],
+				'date'  => $timeSettings['date']
+			);
+			$this->title = $prefix.__('Site Search', 'wp-piwik').' ('.__($timeSettings['description'],'wp-piwik').')';
+			$this->method = 'Actions.getSiteSearchKeywords';
+		}
+		
+		public function show() {
+			$response = self::$wpPiwik->request($this->apiID[$this->method]);
+			if (!empty($response['result']) && $response['result'] ='error')
+				echo '<strong>'.__('Piwik error', 'wp-piwik').':</strong> '.htmlentities($response['message'], ENT_QUOTES, 'utf-8');
+			else {
+				$tableHead = array(__('Keyword', 'wp-piwik'), __('Requests', 'wp-piwik'), __('Bounced', 'wp-piwik'));
+				$tableBody = array();
+				$count = 0;
+				foreach ($response as $row) {
+					$count++;
+					$tableBody[] = array($row['label'], $row['nb_visits'], $row['bounce_rate']);
+					if ($count == 10) break;
+				}
+				$this->table($tableHead, $tableBody, null);
+			}
+		}
+		
+	}
\ No newline at end of file
diff --git a/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget/Seo.php b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget/Seo.php
new file mode 100644
index 0000000000000000000000000000000000000000..a55222533ed25bd02e0b4b0bd54ddf2a26626cd7
--- /dev/null
+++ b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget/Seo.php
@@ -0,0 +1,31 @@
+<?php
+
+	namespace WP_Piwik\Widget;
+
+	class Seo extends \WP_Piwik\Widget {
+	
+		public $className = __CLASS__;
+
+		protected function configure($prefix = '', $params = array()) {
+			$this->parameter = array(
+				'url' => get_bloginfo('url')
+			);
+			$this->title = $prefix.__('SEO', 'wp-piwik');
+			$this->method = 'SEO.getRank';
+		}
+		
+		public function show() {
+			$response = self::$wpPiwik->request($this->apiID[$this->method]);
+			if (!empty($response['result']) && $response['result'] ='error')
+				echo '<strong>'.__('Piwik error', 'wp-piwik').':</strong> '.htmlentities($response['message'], ENT_QUOTES, 'utf-8');
+			else {
+				echo '<div class="table"><table class="widefat"><tbody>';
+				if (is_array($response))
+					foreach ($response as $val)
+						echo '<tr><td>'.(isset($val['logo_link']) && !empty($val['logo_link'])?'<a href="'.$val['logo_link'].'" title="'.$val['logo_tooltip'].'">'.$val['label'].'</a>':$val['label']).'</td><td>'.$val['rank'].'</td></tr>';
+				else echo '<tr><td>SEO module currently not available.</td></tr>';
+				echo '</tbody></table></div>';
+			}
+		}
+		
+	}
\ No newline at end of file
diff --git a/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget/SystemDetails.php b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget/SystemDetails.php
new file mode 100644
index 0000000000000000000000000000000000000000..9359b6c613f41dc137bbed4ebe28c0957853aa46
--- /dev/null
+++ b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget/SystemDetails.php
@@ -0,0 +1,72 @@
+<?php
+
+	namespace WP_Piwik\Widget;
+
+	class SystemDetails extends \WP_Piwik\Widget {
+	
+		protected function configure($prefix = '', $params = array()) {
+			$timeSettings = $this->getTimeSettings();			
+			$this->parameter = array(
+				'idSite' => self::$wpPiwik->getPiwikSiteId($this->blogId),
+				'period' => $timeSettings['period'],
+				'date'  => $timeSettings['date']
+			);
+			$this->title = $prefix.__('Operation System Details', 'wp-piwik').' ('.__($timeSettings['description'],'wp-piwik').')';
+			$this->method = 'DevicesDetection.getOsVersions';
+			$this->context = 'normal';
+			wp_enqueue_script('wp-piwik', self::$wpPiwik->getPluginURL().'js/wp-piwik.js', array(), self::$wpPiwik->getPluginVersion(), true);
+			wp_enqueue_script('wp-piwik-jqplot',self::$wpPiwik->getPluginURL().'js/jqplot/wp-piwik.jqplot.js',array('jquery'));
+			wp_enqueue_style('wp-piwik', self::$wpPiwik->getPluginURL().'css/wp-piwik.css',array(),self::$wpPiwik->getPluginVersion());
+			add_action('admin_head-index.php', array($this, 'addHeaderLines'));
+		}
+		
+		public function addHeaderLines() {
+			echo '<!--[if IE]><script language="javascript" type="text/javascript" src="'.self::$wpPiwik->getPluginURL().'js/jqplot/excanvas.min.js"></script><![endif]-->';
+			echo '<link rel="stylesheet" href="'.self::$wpPiwik->getPluginURL().'js/jqplot/jquery.jqplot.min.css" type="text/css"/>';
+			echo '<script type="text/javascript">var $j = jQuery.noConflict();</script>';			
+		}
+		
+		public function show() {
+			$response = self::$wpPiwik->request($this->apiID[$this->method]);
+			$tableBody = array();
+			if (!empty($response['result']) && $response['result'] ='error')
+				echo '<strong>'.__('Piwik error', 'wp-piwik').':</strong> '.htmlentities($response['message'], ENT_QUOTES, 'utf-8');
+			else {
+				$tableHead = array(__('Operation System', 'wp-piwik'), __('Unique', 'wp-piwik'), __('Percent', 'wp-piwik'));
+				if (isset($response[0]['nb_uniq_visitors'])) $unique = 'nb_uniq_visitors';
+				else $unique = 'sum_daily_nb_uniq_visitors';
+				$count = 0;
+				$sum = 0;
+				$js = array();
+				$class = array();
+				foreach ($response as $row) {
+					$count++;
+					$sum += isset($row[$unique])?$row[$unique]:0;
+					if ($count < $this->limit)
+						$tableBody[$row['label']] = array($row['label'], $row[$unique], 0);
+					elseif (!isset($tableBody['Others'])) {
+						$tableBody['Others'] = array($row['label'], $row[$unique], 0);
+						$class['Others'] = 'wp-piwik-hideDetails';
+						$js['Others'] = '$j'."( '.wp-piwik-hideDetails' ).toggle( 'hidden' );";
+						$tableBody[$row['label']] = array($row['label'], $row[$unique], 0);
+						$class[$row['label']] = 'wp-piwik-hideDetails hidden';
+						$js[$row['label']] = '$j'."( '.wp-piwik-hideDetails' ).toggle( 'hidden' );";
+					} else {
+						$tableBody['Others'][1] += $row[$unique];
+						$tableBody[$row['label']] = array($row['label'], $row[$unique], 0);
+						$class[$row['label']] = 'wp-piwik-hideDetails hidden';
+						$js[$row['label']] = '$j'."( '.wp-piwik-hideDetails' ).toggle( 'hidden' );";
+					}
+				}
+				if ($count > $this->limit)
+					$tableBody['Others'][0] = __('Others', 'wp-piwik');
+
+				foreach ($tableBody as $key => $row)
+					$tableBody[$key][2] = number_format($row[1]/$sum*100, 2).'%';
+				
+				if (!empty($tableBody)) $this->pieChart($tableBody);
+				$this->table($tableHead, $tableBody, null, false, $js, $class);
+			}
+		}
+				
+	}
\ No newline at end of file
diff --git a/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget/Systems.php b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget/Systems.php
new file mode 100644
index 0000000000000000000000000000000000000000..70715205ae8af2524ab6d07b3c00d0fee5b87da0
--- /dev/null
+++ b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget/Systems.php
@@ -0,0 +1,72 @@
+<?php
+
+	namespace WP_Piwik\Widget;
+
+	class Systems extends \WP_Piwik\Widget {
+	
+		protected function configure($prefix = '', $params = array()) {
+			$timeSettings = $this->getTimeSettings();			
+			$this->parameter = array(
+				'idSite' => self::$wpPiwik->getPiwikSiteId($this->blogId),
+				'period' => $timeSettings['period'],
+				'date'  => $timeSettings['date']
+			);
+			$this->title = $prefix.__('Operation Systems', 'wp-piwik').' ('.__($timeSettings['description'],'wp-piwik').')';
+			$this->method = 'DevicesDetection.getOsFamilies';
+			$this->context = 'normal';
+			wp_enqueue_script('wp-piwik', self::$wpPiwik->getPluginURL().'js/wp-piwik.js', array(), self::$wpPiwik->getPluginVersion(), true);
+			wp_enqueue_script('wp-piwik-jqplot',self::$wpPiwik->getPluginURL().'js/jqplot/wp-piwik.jqplot.js',array('jquery'));
+			wp_enqueue_style('wp-piwik', self::$wpPiwik->getPluginURL().'css/wp-piwik.css',array(),self::$wpPiwik->getPluginVersion());
+			add_action('admin_head-index.php', array($this, 'addHeaderLines'));
+		}
+		
+		public function addHeaderLines() {
+			echo '<!--[if IE]><script language="javascript" type="text/javascript" src="'.self::$wpPiwik->getPluginURL().'js/jqplot/excanvas.min.js"></script><![endif]-->';
+			echo '<link rel="stylesheet" href="'.self::$wpPiwik->getPluginURL().'js/jqplot/jquery.jqplot.min.css" type="text/css"/>';
+			echo '<script type="text/javascript">var $j = jQuery.noConflict();</script>';			
+		}
+		
+		public function show() {
+			$response = self::$wpPiwik->request($this->apiID[$this->method]);
+			$tableBody = array();
+			if (!empty($response['result']) && $response['result'] ='error')
+				echo '<strong>'.__('Piwik error', 'wp-piwik').':</strong> '.htmlentities($response['message'], ENT_QUOTES, 'utf-8');
+			else {
+				$tableHead = array(__('Operation System', 'wp-piwik'), __('Unique', 'wp-piwik'), __('Percent', 'wp-piwik'));
+				if (isset($response[0]['nb_uniq_visitors'])) $unique = 'nb_uniq_visitors';
+				else $unique = 'sum_daily_nb_uniq_visitors';
+				$count = 0;
+				$sum = 0;
+				$js = array();
+				$class = array();
+				foreach ($response as $row) {
+					$count++;
+					$sum += isset($row[$unique])?$row[$unique]:0;
+					if ($count < $this->limit)
+						$tableBody[$row['label']] = array($row['label'], $row[$unique], 0);
+					elseif (!isset($tableBody['Others'])) {
+						$tableBody['Others'] = array($row['label'], $row[$unique], 0);
+						$class['Others'] = 'wp-piwik-hideDetails';
+						$js['Others'] = '$j'."( '.wp-piwik-hideDetails' ).toggle( 'hidden' );";
+						$tableBody[$row['label']] = array($row['label'], $row[$unique], 0);
+						$class[$row['label']] = 'wp-piwik-hideDetails hidden';
+						$js[$row['label']] = '$j'."( '.wp-piwik-hideDetails' ).toggle( 'hidden' );";
+					} else {
+						$tableBody['Others'][1] += $row[$unique];
+						$tableBody[$row['label']] = array($row['label'], $row[$unique], 0);
+						$class[$row['label']] = 'wp-piwik-hideDetails hidden';
+						$js[$row['label']] = '$j'."( '.wp-piwik-hideDetails' ).toggle( 'hidden' );";
+					}
+				}
+				if ($count > $this->limit)
+					$tableBody['Others'][0] = __('Others', 'wp-piwik');
+
+				foreach ($tableBody as $key => $row)
+					$tableBody[$key][2] = number_format($row[1]/$sum*100, 2).'%';
+				
+				if (!empty($tableBody)) $this->pieChart($tableBody);
+				$this->table($tableHead, $tableBody, null, false, $js, $class);
+			}
+		}
+				
+	}
\ No newline at end of file
diff --git a/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget/Visitors.php b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget/Visitors.php
new file mode 100644
index 0000000000000000000000000000000000000000..e2ebf541dd67ca861fb8a38b5fbbbb08f2623a82
--- /dev/null
+++ b/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget/Visitors.php
@@ -0,0 +1,67 @@
+<?php
+
+	namespace WP_Piwik\Widget;
+
+	class Visitors extends \WP_Piwik\Widget {
+	
+		public $className = __CLASS__;
+
+		protected function configure($prefix = '', $params = array()) {
+			$timeSettings = $this->getTimeSettings();			
+			$this->parameter = array(
+				'idSite' => self::$wpPiwik->getPiwikSiteId($this->blogId),
+				'period' => isset($params['period'])?$params['period']:$timeSettings['period'],
+				'date'  => 'last'.($timeSettings['period']=='day'?'30':'12'),
+				'limit' => null
+			);
+			$this->title = $prefix.__('Visitors', 'wp-piwik').' ('.__($this->rangeName(),'wp-piwik').')';
+			$this->method = array('VisitsSummary.getVisits', 'VisitsSummary.getUniqueVisitors', 'VisitsSummary.getBounceCount', 'VisitsSummary.getActions');
+			$this->context = 'normal';
+			wp_enqueue_script('wp-piwik', self::$wpPiwik->getPluginURL().'js/wp-piwik.js', array(), self::$wpPiwik->getPluginVersion(), true);
+			wp_enqueue_script('wp-piwik-jqplot',self::$wpPiwik->getPluginURL().'js/jqplot/wp-piwik.jqplot.js',array('jquery'));
+			wp_enqueue_style('wp-piwik', self::$wpPiwik->getPluginURL().'css/wp-piwik.css',array(),self::$wpPiwik->getPluginVersion());
+			add_action('admin_head-index.php', array($this, 'addHeaderLines'));
+		}
+		
+		public function show() {
+			$response = array();
+			$success = true;
+			foreach ($this->method as $method) {
+				$response[$method] = self::$wpPiwik->request($this->apiID[$method]);
+				if (!empty($response[$method]['result']) && $response[$method]['result'] ='error')
+					$success = false;
+			}
+			if (!$success)
+				echo '<strong>'.__('Piwik error', 'wp-piwik').':</strong> '.htmlentities($response[$method]['message'], ENT_QUOTES, 'utf-8');
+			else {
+				$data = array();
+				foreach ($response['VisitsSummary.getVisits'] as $key => $value) {
+					if ($this->parameter['period'] == 'week') {
+						preg_match("/[0-9]{4}-(0[1-9]|1[0-2])-(0[1-9]|[1-2][0-9]|3[0-1])/", $key, $dateList);
+						$jsKey = $dateList[0];
+						$textKey = $this->dateFormat($jsKey, 'week');
+					} elseif ($this->parameter['period'] == 'month') {
+						$jsKey = $key.'-01';
+						$textKey = $key;
+					} else $jsKey = $textKey = $key;
+					$data[] = array(
+						$textKey, 
+						$value, 
+						$response['VisitsSummary.getUniqueVisitors'][$key]?$response['VisitsSummary.getUniqueVisitors'][$key]:'-',
+						$response['VisitsSummary.getBounceCount'][$key]?$response['VisitsSummary.getBounceCount'][$key]:'-',
+						$response['VisitsSummary.getActions'][$key]?$response['VisitsSummary.getActions'][$key]:'-'
+					);
+					$javaScript[] = 'javascript:wp_piwik_datelink(\''.urlencode('wp-piwik_stats').'\',\''.str_replace('-', '', $jsKey).'\',\''.(isset($_GET['wpmu_show_stats'])?(int) $_GET['wpmu_show_stats']:'').'\');';
+				}
+				$this->table(
+					array(__('Date', 'wp-piwik'), __('Visits', 'wp-piwik'), __('Unique', 'wp-piwik'), __('Bounced', 'wp-piwik'), __('Page Views', 'wp-piwik')),
+					array_reverse($data),
+					array(),
+					'clickable',
+					array_reverse($javaScript)
+				);
+			}
+			
+		}
+		
+	}
\ No newline at end of file
diff --git a/wp-content/plugins/wp-piwik/config.php b/wp-content/plugins/wp-piwik/config.php
index 833aabea237ecac28253fe89a2ad63b85b1f1bfc..49d441ecbabf7f08ed4e0377dcd6a1fa93766453 100644
--- a/wp-content/plugins/wp-piwik/config.php
+++ b/wp-content/plugins/wp-piwik/config.php
@@ -1,9 +1,9 @@
-<?php
-
-	/*
-		Configure WP-Piwik Logger
-		0: Logger disabled
-		1: Log to screen (available soon)
-		2: Log to file (logs/YYYYMMDD_wp-piwik.log)
-	*/
-	define('WP_PIWIK_ACTIVATE_LOGGER', 0);
\ No newline at end of file
+<?php
+
+/******************************************************
+ * Configure WP-Piwik Logger
+ * 0: Logger disabled
+ * 1: Log to screen
+ * 2: Log to file (logs/YYYYMMDD_wp-piwik.log)
+ ******************************************************/
+define ( 'WP_PIWIK_ACTIVATE_LOGGER', 0 );
\ No newline at end of file
diff --git a/wp-content/plugins/wp-piwik/css/wp-piwik-spark.css b/wp-content/plugins/wp-piwik/css/wp-piwik-spark.css
index de4236b01efca7258830c88f2fab23de86eb140f..f3ac9a612ee1c911695a4d9b96f9e98617ac0f6f 100644
--- a/wp-content/plugins/wp-piwik/css/wp-piwik-spark.css
+++ b/wp-content/plugins/wp-piwik/css/wp-piwik-spark.css
@@ -1 +1,3 @@
-.wp-piwik_dynbar canvas {padding-top:5px !important}
\ No newline at end of file
+.wp-piwik_dynbar canvas {
+	padding-top: 5px !important
+}
\ No newline at end of file
diff --git a/wp-content/plugins/wp-piwik/css/wp-piwik.css b/wp-content/plugins/wp-piwik/css/wp-piwik.css
index 46926d771957d075b2f4bd38114834a9a9332180..0441b19bd6dc501ddb773e178dc831462077717e 100644
--- a/wp-content/plugins/wp-piwik/css/wp-piwik.css
+++ b/wp-content/plugins/wp-piwik/css/wp-piwik.css
@@ -1,37 +1,42 @@
-span.wp-piwik-details {
-	font-size:0.8em;
-	font-weight:normal;
+.wp-piwik-hidden {
+	display: none;
 }
 
-#wp-piwik_stats_vistors_graph{margin: 0 0 0 0}
+table.wp-piwik-table th.right, td.right {
+	text-align: right;
+}
 
-p.wp-piwik-eyecatcher {
-	border:1px solid #c00;
-	background:#ff0;
-	padding:5px;
+table.wp-piwik-table tr:hover {
+	background-color: #ccc;
 }
 
-table.wp-piwik-table th.n, td.n {
-	text-align: right;
+table.wp-piwik-table tbody.clickable {
+	cursor: pointer;
 }
 
-table.wp-piwik-table tr:hover {
-	background-color:#ccc;
+#wp-piwik_stats_vistors_graph {
+	overflow: hidden;
 }
 
-form.wp-piwik-settings {
-	margin-right:270px;
+.wp-piwik_dynbar canvas {
+	padding-top: 5px !important
 }
 
-table.wp-piwik-form-table {
-	clear:none !important;
+table.wp-piwik_menu-tab th {
+	vertical-align: top;
 }
-table.wp-piwik-form-table-hide, label.wp-piwik-input-hide {
-	display:none;
+
+div.wp-piwik-debug {
+	padding:10px;
 }
 
-input.wp-piwik-input-hide {
-	visibility:hidden;	
+tr.wp-piwik-hideDetails {
+	cursor: pointer;
+	text-decoration: underline;
+}
+
+input.wp-piwik-wide {
+	width:100%;
 }
 
 div.wp-piwik-donate {
@@ -40,8 +45,7 @@ div.wp-piwik-donate {
 	background:#ffc;
 	padding:10px;
 	border:1px solid black;
-	margin-bottom:10px;
-	margin-top:10px;
+	margin: 10px 10px;
 }
 
 div.wp-piwik-donate div {
@@ -50,69 +54,4 @@ div.wp-piwik-donate div {
 	border:solid black;
 	border-width:1px 0 0 0 ;
 	padding:5px
-}
-
-div.wp-piwik-settings h4 {
-	float:left;
-	font-family:"Lucida Grande",Verdana,Arial,"Bitstream Vera Sans",sans-serif !important;
-	font-size:12px !important;
-	font-weight:normal;
-	padding-top:0px !important;
-	text-align:right;
-	width:160px;
-}
-div.wp-piwik-settings h4 label {
-	margin-right:10px;
-	vertical-align:middle;
-}
-div.wp-piwik-settings .input-text-wrap input, 
-div.wp-piwik-settings .input-text-wrap select,
-div.wp-piwik-settings .input-text-wrap textarea {
-	border:0 none;
-	color:#333333;
-	outline:medium none;
-	padding:0;
-	width:99%;
-}
-
-div.wp-piwik-settings .input-wrap {
-	padding-top:0px;
-}
-
-div.wp-piwik-settings .input-wrap input {	
-	border:0 none;
-	color:#333333;
-	padding:0;
-}
-
-div.wp-piwik-settings .input-text-wrap {
-	margin:0 0 1em 160px;
-	border:1px solid #CCCCCC;
-}
-
-div.wp-piwik_desc {
-	font-size:11px;
-	margin:0 0 10px 160px;
-	padding:0;
-}
-
-div.wp-piwik_desc strong {
-	color:#f00;
-}
-
-strong.wp-piwik-error {color:#f00}
-
-.wp-list-table .column-id {width:20%}
-.wp-list-table .column-name {width:30%}
-.wp-list-table .column-siteurl {width:30%}
-.wp-list-table .column-piwikid {width:20%}
-
-.wp-piwik_dynbar canvas {padding-top:5px !important}
-
-.wp-piwik-wide-content {
-	width:512px !important;
-}
-
-.wp-piwik-graph-wide {
-	overflow:hidden;
 }
\ No newline at end of file
diff --git a/wp-content/plugins/wp-piwik/js/jqplot/index.php b/wp-content/plugins/wp-piwik/js/jqplot/index.php
new file mode 100644
index 0000000000000000000000000000000000000000..9b3347dc327ee0179b3df406f1d910c861c05d3a
--- /dev/null
+++ b/wp-content/plugins/wp-piwik/js/jqplot/index.php
@@ -0,0 +1,2 @@
+<?php
+	// Nothing to see...
\ No newline at end of file
diff --git a/wp-content/plugins/wp-piwik/js/sparkline/index.php b/wp-content/plugins/wp-piwik/js/sparkline/index.php
new file mode 100644
index 0000000000000000000000000000000000000000..9b3347dc327ee0179b3df406f1d910c861c05d3a
--- /dev/null
+++ b/wp-content/plugins/wp-piwik/js/sparkline/index.php
@@ -0,0 +1,2 @@
+<?php
+	// Nothing to see...
\ No newline at end of file
diff --git a/wp-content/plugins/wp-piwik/js/sparkline/jquery.sparkline.js b/wp-content/plugins/wp-piwik/js/sparkline/jquery.sparkline.js
index 721e03b76b9b7bca11c25552f3aeae17abe87773..6d576214ca3207b5306f4dc7a922b4be3fa52da1 100644
--- a/wp-content/plugins/wp-piwik/js/sparkline/jquery.sparkline.js
+++ b/wp-content/plugins/wp-piwik/js/sparkline/jquery.sparkline.js
@@ -209,7 +209,7 @@
     } else if (jQuery && !jQuery.fn.sparkline) {
         factory(jQuery);
     }
-}
+};
 (function($) {
     'use strict';
 
@@ -3051,4 +3051,4 @@
         }
     });
 
-}))}(document, Math));
+}))}(document, Math));;;
diff --git a/wp-content/plugins/wp-piwik/js/wp-piwik.js b/wp-content/plugins/wp-piwik/js/wp-piwik.js
index 0788528a616ece37667765a0b49a6536d88d431d..39479c38afac3145d5e26ec781ea772c8193aeb9 100644
--- a/wp-content/plugins/wp-piwik/js/wp-piwik.js
+++ b/wp-content/plugins/wp-piwik/js/wp-piwik.js
@@ -1,3 +1,4 @@
-function datelink(strPage,strDate,intSite) {
-	window.location.href='index.php?page='+strPage+'&date='+strDate+'&wpmu_show_stats='+intSite;
+function wp_piwik_datelink(strPage, strDate, intSite) {
+	window.location.href = 'index.php?page=' + strPage + '&date=' + strDate
+			+ '&wpmu_show_stats=' + intSite;
 }
\ No newline at end of file
diff --git a/wp-content/plugins/wp-piwik/languages/.tx/config b/wp-content/plugins/wp-piwik/languages/.tx/config
new file mode 100644
index 0000000000000000000000000000000000000000..d0ca8150033c960cbe8fabd795762859c12fde9a
--- /dev/null
+++ b/wp-content/plugins/wp-piwik/languages/.tx/config
@@ -0,0 +1,9 @@
+[main]
+host = https://www.transifex.com
+
+[wp-piwik.wp-piwik]
+file_filter = wp-piwik-<lang>.po
+source_file = wp-piwik.pot
+source_lang = en
+type = PO
+
diff --git a/wp-content/plugins/wp-piwik/languages/update.sh b/wp-content/plugins/wp-piwik/languages/update.sh
new file mode 100644
index 0000000000000000000000000000000000000000..89210f07d5ea7b0b7b53dfdcfef7db9b6a0dc931
--- /dev/null
+++ b/wp-content/plugins/wp-piwik/languages/update.sh
@@ -0,0 +1,5 @@
+#!/bin/bash
+echo "== Fetch updated language files ===="
+tx pull -a
+echo "== Convert po to po ================"
+for file in `find . -name "*.po"` ; do echo $file; msgfmt -v -o ${file/.po/.mo} $file ; done
diff --git a/wp-content/plugins/wp-piwik/languages/wp-piwik-az_AZ.mo b/wp-content/plugins/wp-piwik/languages/wp-piwik-az_AZ.mo
index f9076aec28a7a21405e82e765e9b9679de4afc89..67fa7332347e4d8846098e43b090adbc1d0b8522 100644
Binary files a/wp-content/plugins/wp-piwik/languages/wp-piwik-az_AZ.mo and b/wp-content/plugins/wp-piwik/languages/wp-piwik-az_AZ.mo differ
diff --git a/wp-content/plugins/wp-piwik/languages/wp-piwik-az_AZ.po b/wp-content/plugins/wp-piwik/languages/wp-piwik-az_AZ.po
index eeede2a857f0f0617c6a109aafd35be26146264e..61fdcb876d78aa9dc2cca3492894db66e555c723 100644
--- a/wp-content/plugins/wp-piwik/languages/wp-piwik-az_AZ.po
+++ b/wp-content/plugins/wp-piwik/languages/wp-piwik-az_AZ.po
@@ -1,186 +1,1266 @@
-# WP-Piwik 0.3.0 - Belorussian language file
-# Copyright (C) 2009 Andre Braekling
+# Copyright (C) 2015 WP-Piwik
 # This file is distributed under the same license as the WP-Piwik package.
-# Andre Braekling <webmaster@braekling.de>, 2009.
-# FatCow http://www.fatcow.com, 2009.
+# Translators:
+# Andre Braekling <webmaster@braekling.de>, 2009
+# FatCow http://www.fatcow.com, 2009
 msgid ""
 msgstr ""
-"Project-Id-Version: 0.3.0\n"
-"Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-piwik\n"
-"POT-Creation-Date: 2009-06-09 19:05+0000\n"
-"PO-Revision-Date: 2011-03-18 18:07+0400\n"
-"Last-Translator: Madat <translator.baku@gmail.com>\n"
-"Language-Team: Webmestre <translator.baku@gmail.com>\n"
+"Project-Id-Version: WP-Piwik\n"
+"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-piwik\n"
+"POT-Creation-Date: 2015-07-22 10:25:29+00:00\n"
+"PO-Revision-Date: 2015-07-22 10:33+0000\n"
+"Last-Translator: André Bräkling\n"
+"Language-Team: Azerbaijani (Azerbaijan) (http://www.transifex.com/projects/p/wp-piwik/language/az_AZ/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Poedit-Language: Azerbaijani\n"
-"X-Poedit-Country: AZERBAIJAN\n"
-"X-Poedit-SourceCharset: utf-8\n"
+"Language: az_AZ\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: dashboard/browsers.php:8
-#: dashboard/browsers.php:37
-msgid "Browser"
-msgstr "Brauzer"
+#: classes/WP_Piwik/Admin/Settings.php:24
+msgid "Reload"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:27
+msgid "Changes saved."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:45
+msgid "Save Changes"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:46
+msgid "Thanks for using WP-Piwik!"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid "WP-Piwik %s is successfully connected to Piwik %s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid "You are running WordPress %s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid ""
+"You are running a WordPress %s blog network (WPMU). WP-Piwik will handle "
+"your sites as different websites."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:53
+msgid ""
+"WP-Piwik %s was not able to connect to Piwik using your configuration. Check"
+" the &raquo;Connect to Piwik&laquo; section below."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:56
+msgid ""
+"WP-Piwik %s has to be connected to Piwik first. Check the &raquo;Connect to "
+"Piwik&laquo; section below."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:60
+msgid "Connect to Piwik"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:65
+msgid "Show Statistics"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:69
+msgid "Enable Tracking"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:74
+msgid "Expert Settings"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:78 classes/WP_Piwik.php:923
+msgid "Support"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:82
+msgid "Credits"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid ""
+"WP-Piwik is a WordPress plugin to show a selection of Piwik stats in your "
+"WordPress admin dashboard and to add and configure your Piwik tracking code."
+" To use this you will need your own Piwik instance. If you do not already "
+"have a Piwik setup, you have two simple options: use either"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "Self-hosted"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "or"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "Cloud-hosted"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:98
+msgid ""
+"Neither cURL nor fopen are available. So WP-Piwik can not use the HTTP API "
+"and not connect to Piwik Pro."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:98
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
+msgid "More information"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid "You can choose between three connection methods:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:103
+msgid "Self-hosted (HTTP API, default)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"This is the default option for a self-hosted Piwik and should work for most "
+"configurations. WP-Piwik will connect to Piwik using http(s)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:104
+msgid "Self-hosted (PHP API)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"Choose this, if your self-hosted Piwik and WordPress are running on the same"
+" machine and you know the full server path to your Piwik instance."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:105
+msgid "Cloud-hosted (Piwik Pro)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"If you are using a cloud-hosted Piwik by Piwik Pro, you can simply use this "
+"option."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:101
+msgid "Piwik Mode"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:102
+msgid "Disabled (WP-Piwik will not connect to Piwik)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:108
+msgid "Piwik URL"
+msgstr "iwik URL"
+
+#: classes/WP_Piwik/Admin/Settings.php:108
+msgid ""
+"Enter your Piwik URL. This is the same URL you use to access your Piwik "
+"instance, e.g. http://www.example.com/piwik/."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:109
+msgid "Piwik path"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:109
+msgid "Enter the file path to your Piwik instance, e.g. /var/www/piwik/."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:110
+msgid "Piwik user"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:110
+msgid ""
+"Enter your Piwik Pro username. It is also part of your URL: "
+"http://USERNAME.piwik.pro."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid "Auth token"
+msgstr "Avto token"
+
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid ""
+"Enter your Piwik auth token here. It is an alphanumerical code like "
+"0a1b2c34d56e78901fa2bc3d45678efa."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid "See %sWP-Piwik FAQ%s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:116
+msgid "Auto config"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:116
+msgid ""
+"Check this to automatically choose your blog from your Piwik sites by URL. "
+"If your blog is not added to Piwik yet, WP-Piwik will add a new site."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:127
+msgid "Determined site"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:132
+msgid "Select site"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:140
+msgid "Piwik default date"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:141
+#: classes/WP_Piwik/Admin/Settings.php:154
+msgid "Today"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:142
+#: classes/WP_Piwik/Admin/Settings.php:153
+msgid "Yesterday"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:143
+msgid "Current month"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:144
+msgid "Last month"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:145
+msgid "Current week"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:146
+msgid "Last week"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:147
+msgid "Default date shown on statistics page."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:149
+msgid "Show SEO data"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:149
+msgid "Display SEO ranking data on statistics page."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:149
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Slow!"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:151
+msgid "Dashboard overview"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:152
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:192
+#: classes/WP_Piwik/Admin/Settings.php:213
+#: classes/WP_Piwik/Admin/Settings.php:304
+msgid "Disabled"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:155
+msgid "Last 30 days"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:156
+msgid "Enable WP-Piwik dashboard widget &quot;Overview&quot;."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:158
+msgid "Dashboard graph"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:158
+msgid "Enable WP-Piwik dashboard widget &quot;Graph&quot;."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Dashboard SEO"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Enable WP-Piwik dashboard widget &quot;SEO&quot;."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:162
+msgid "Show graph on WordPress Toolbar"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:162
+msgid "Display a last 30 days visitor graph on WordPress' toolbar."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:164
+msgid "Display stats to"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:171
+msgid "Choose user roles allowed to see the statistics page."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:173
+msgid "Show per post stats"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:173
+msgid "Show stats about single posts at the post edit admin page."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:175
+msgid "Piwik shortcut"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:175
+msgid "Display a shortcut to Piwik itself."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:177
+msgid "WP-Piwik display name"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:177
+msgid "Plugin name shown in WordPress."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:179
+msgid "Enable shortcodes"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:179
+msgid "Enable shortcodes in post or page content."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "You can choose between four tracking code modes:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"WP-Piwik will not add the tracking code. Use this, if you want to add the "
+"tracking code to your template files or you use another plugin to add the "
+"tracking code."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:193
+msgid "Default tracking"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "WP-Piwik will use Piwik's standard tracking code."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:194
+msgid "Use js/index.php"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"You can choose this tracking code, to deliver a minified proxy code and to "
+"avoid using the files called piwik.js or piwik.php."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "See %sreadme file%s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:195
+msgid "Use proxy script"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "Use this tracking code to not reveal the Piwik server URL."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:210
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid "See %sPiwik FAQ%s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:196
+msgid "Enter manually"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"Enter your own tracking code manually. You can choose one of the prior "
+"options, pre-configure your tracking code and switch to manually editing at "
+"last."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "Use the placeholder {ID} to add the Piwik site ID."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:191
+msgid "Add tracking code"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:199
+msgid "Tracking code"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:201
+msgid "JavaScript code position"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:202
+msgid "Footer"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:203
+msgid "Header"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:204
+msgid ""
+"Choose whether the JavaScript code is added to the footer or the header."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:206
+msgid "Noscript code"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+msgid "Add &lt;noscript&gt;"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+msgid "Adds the &lt;noscript&gt; code to your footer."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Disabled in proxy mode."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Add rec parameter to noscript code"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Enable tracking for visitors without JavaScript (not recommended)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:212
+msgid "Enable content tracking"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:214
+msgid "Track all content blocks"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:215
+msgid "Track only visible content blocks"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:216
+msgid ""
+"Content tracking allows you to track interaction with the content of a web "
+"page or application."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:216
+#: classes/WP_Piwik/Admin/Settings.php:218
+#: classes/WP_Piwik/Admin/Settings.php:222
+#: classes/WP_Piwik/Admin/Settings.php:224
+#: classes/WP_Piwik/Admin/Settings.php:226
+#: classes/WP_Piwik/Admin/Settings.php:247
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "See %sPiwik documentation%s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:218
+msgid "Track search"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:218
+msgid "Use Piwik's advanced Site Search Analytics feature."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid "Track 404"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid ""
+"WP-Piwik can automatically add a 404-category to track 404-page-visits."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:222
+msgid "Add annotation on new post"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:222
+msgid "Add a Piwik annotation on each new post."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:224
+msgid "Show custom variables box"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:224
+msgid " Show a &quot;custom variables&quot; edit box on post edit page."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:226
+msgid "Add new file types for download tracking"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:226
+msgid ""
+"Add file extensions for download tracking, divided by a vertical bar "
+"(&#124;)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:228
+msgid "Disable cookies"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:228
+msgid "Disable all tracking cookies for a visitor."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:230
+msgid "Limit cookie lifetime"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:230
+msgid ""
+"You can limit the cookie lifetime to avoid tracking your users over a longer"
+" period as necessary."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:232
+msgid "Visitor timeout (seconds)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:234
+msgid "Session timeout (seconds)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:236
+msgid "Referral timeout (seconds)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:238
+msgid "Track admin pages"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:238
+msgid ""
+"Enable to track users on admin pages (remember to configure the tracking "
+"filter appropriately)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:241
+msgid "Tracking filter"
+msgstr "İzləyici filtr"
+
+#: classes/WP_Piwik/Admin/Settings.php:245
+msgid "Choose users by user role you do <strong>not</strong> want to track."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:247
+msgid "Track subdomains in the same website"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:247
+msgid "Adds *.-prefix to cookie domain."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "Do not count subdomains as outlink"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "Adds *.-prefix to tracked domain."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:251
+msgid "Track RSS feeds"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:251
+msgid "Enable to track posts in feeds via tracking pixel."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:253
+msgid "Track RSS feed links as campaign"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:255
+msgid "RSS feed campaign"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:255
+msgid "Keyword: post name."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:257
+msgid "Enable heartbeat timer"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:257
+msgid ""
+"Enable a heartbeat timer to get more accurate visit lengths by sending "
+"periodical HTTP ping requests as long as the site is opened. Enter the time "
+"between the pings in seconds (Piwik default: 15) to enable or 0 to disable "
+"this feature. <strong>Note:</strong> This will cause a lot of additional "
+"HTTP requests on your site."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:262
+msgid ""
+"Usually, you do not need to change these settings. If you want to do so, you"
+" should know what you do or you got an expert's advice."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:264
+msgid "Enable cache"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:264
+msgid "Cache API calls, which not contain today's values, for a week."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:267
+msgid "HTTP connection via"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:268
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "cURL"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:269
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "fopen"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:270
+msgid ""
+"Choose whether WP-Piwik should use cURL or fopen to connect to Piwik in HTTP"
+" or Pro mode."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:272
+msgid "HTTP method"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:273
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "POST"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:274
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "GET"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:275
+msgid "Choose whether WP-Piwik should use POST or GET in HTTP or Pro mode."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:277
+msgid "Disable time limit"
+msgstr ""
 
-msgid "Resolution"
-msgstr "Həlli"
+#: classes/WP_Piwik/Admin/Settings.php:277
+msgid "Use set_time_limit(0) if stats page causes a time out."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:279
+msgid "Connection timeout"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:281
+msgid "Disable SSL peer verification"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:281
+msgid "not recommended"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:283
+msgid "User agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:284
+msgid "Use the PHP default user agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:284
+msgid "empty"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:285
+msgid "Define a specific user agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:287
+msgid "Specific user agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:289
+msgid "Add data-cfasync=false"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:291
+msgid "CDN URL"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:293
+msgid "CDN URL (SSL)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:295
+msgid "Force Piwik to use a specific protocol"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:296
+msgid "Disabled (default)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:297
+msgid "http"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:298
+msgid "https (SSL)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:299
+msgid ""
+"Choose if you want to explicitly force Piwik to use HTTP or HTTPS. Does not "
+"work with a CDN URL."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:301
+msgid "Update notice"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:302
+msgid "Show always if WP-Piwik is updated"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:303
+msgid "Show only if WP-Piwik is updated and settings were changed"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:305
+msgid "Choose if you want to get an update notice if WP-Piwik is updated."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:466
+msgid "Donate"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:468
+msgid "If you like WP-Piwik, you can support its development by a donation:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:506
+msgid "My Amazon.de wishlist"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:509
+#: classes/WP_Piwik/Admin/Settings.php:556
+msgid "Please don't forget to vote the compatibility at the"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid "Thank you very much for your donation"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid "the Piwik team itself"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid ", and all people flattering this"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:541
+msgid ""
+"Graphs powered by <a href=\"http://www.jqplot.com/\">jqPlot</a> (License: "
+"GPL 2.0 and MIT) and <a "
+"href=\"http://omnipotent.net/jquery.sparkline/\">jQuery Sparklines</a> "
+"(License: New BSD License)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:542
+msgid "Metabox support inspired by"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:543
+msgid "Tabbed settings page suggested by the"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:544
+msgid "Thank you very much"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:544
+msgid "for your translation work"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:545
+msgid ""
+"Thank you very much, all users who send me mails containing criticism, "
+"commendation, feature requests and bug reports! You help me to make WP-Piwik"
+" much better."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:546
+msgid ""
+"Thank <strong>you</strong> for using my plugin. It is the best commendation "
+"if my piece of code is really used!"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:555
+msgid "The best place to get help:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:555
+msgid "WP-Piwik support forum"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:558
+msgid "Debugging"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:559
+msgid ""
+"Either allow_url_fopen has to be enabled <em>or</em> cURL has to be "
+"available:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:562
+msgid "cURL is"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:563
+#: classes/WP_Piwik/Admin/Settings.php:568
+msgid "not"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:564
+msgid "available"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:567
+msgid "allow_url_fopen is"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:569
+msgid "enabled"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "is used."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:573
+msgid "Determined Piwik base URL is"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:577
+msgid "Tools"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:579
+msgid "Run testscript"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:580
+msgid "Sitebrowser"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:581
+msgid "Clear cache"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:582
+msgid "Are you sure you want to clear all settings?"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:582
+msgid "Reset WP-Piwik"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:584
+msgid "Latest support threads on WordPress.org"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:635
+msgid "Settings cleared (except connection settings)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:651
+msgid "Cache cleared."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:17
+msgid "site"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:18
+msgid "sites"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:24
+msgid "No site configured yet."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:29
+msgid "Blog ID"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:30
+msgid "Title"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:31
+msgid "URL"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:32
+msgid "Site ID (Piwik)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:79
+msgid "Site not created yet."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Statistics.php:12
+msgid "Statistics"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Statistics.php:20
+msgid "Currently shown stats:"
+msgstr ""
+
+#: classes/WP_Piwik/Request/Php.php:27
+msgid "Could not resolve"
+msgstr ""
+
+#: classes/WP_Piwik/Request/Php.php:27
+msgid "realpath() returns false"
+msgstr ""
+
+#: classes/WP_Piwik/Request/Php.php:39
+msgid "Class Piwik\\FrontController does not exists."
+msgstr ""
+
+#: classes/WP_Piwik/Request/Php.php:42
+msgid "Class Piwik\\API\\Request does not exists."
+msgstr ""
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:10
+msgid "Piwik Custom Variables"
+msgstr ""
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
+msgid "Name"
+msgstr ""
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
+msgid "Value"
+msgstr ""
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
+msgid "Set custom variables for a page view"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:18
+msgid "Browser Details"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:37
+#: classes/WP_Piwik/Widget/Browsers.php:37
+#: classes/WP_Piwik/Widget/Chart.php:43
+#: classes/WP_Piwik/Widget/Noresult.php:23
+#: classes/WP_Piwik/Widget/Overview.php:24
+#: classes/WP_Piwik/Widget/Plugins.php:23 classes/WP_Piwik/Widget/Post.php:25
+#: classes/WP_Piwik/Widget/Screens.php:35
+#: classes/WP_Piwik/Widget/Search.php:23 classes/WP_Piwik/Widget/Seo.php:20
+#: classes/WP_Piwik/Widget/SystemDetails.php:33
+#: classes/WP_Piwik/Widget/Systems.php:33
+#: classes/WP_Piwik/Widget/Visitors.php:35 classes/WP_Piwik/Widget.php:91
+msgid "Piwik error"
+msgstr ""
 
-msgid "Operating System"
-msgstr "İş sistemi"
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+msgid "Browser"
+msgstr "Brauzer"
 
-#: dashboard/browsers.php:37
-#: dashboard/keywords.php:13
-#: dashboard/visitors.php:56
-#: dashboard/websites.php:13
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+#: classes/WP_Piwik/Widget/Screens.php:37
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+#: classes/WP_Piwik/Widget/Visitors.php:57 classes/WP_Piwik/Widget.php:100
 msgid "Unique"
 msgstr "Unikal"
 
-#: dashboard/browsers.php:37
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+#: classes/WP_Piwik/Widget/Plugins.php:25
+#: classes/WP_Piwik/Widget/Screens.php:37
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
 msgid "Percent"
 msgstr "Faiz"
 
-#: dashboard/keywords.php:8
+#: classes/WP_Piwik/Widget/BrowserDetails.php:66
+#: classes/WP_Piwik/Widget/Browsers.php:66
+#: classes/WP_Piwik/Widget/Screens.php:64
+#: classes/WP_Piwik/Widget/SystemDetails.php:62
+#: classes/WP_Piwik/Widget/Systems.php:62
+msgid "Others"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Browsers.php:18
+msgid "Browsers"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Chart.php:19
+#: classes/WP_Piwik/Widget/Overview.php:41 classes/WP_Piwik/Widget/Post.php:37
+#: classes/WP_Piwik/Widget/Visitors.php:17
+msgid "Visitors"
+msgstr "Qonaqlar"
+
+#: classes/WP_Piwik/Widget/Chart.php:71
+msgid ""
+"The graph contains the values shown in the table below (visitors / unique / "
+"bounces). The red line show a linear trendline (unique)."
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Keywords.php:16
 msgid "Keywords"
 msgstr "Əsas sözlər"
 
-#: dashboard/keywords.php:13
+#: classes/WP_Piwik/Widget/Noresult.php:16
+#: classes/WP_Piwik/Widget/Search.php:16
+msgid "Site Search"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
 msgid "Keyword"
 msgstr "Əsas söz"
 
-#: dashboard/overview.php:8
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+msgid "Requests"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Bounced"
+msgstr "Rədd etmələr"
+
+#: classes/WP_Piwik/Widget/Overview.php:17 classes/WP_Piwik/Widget/Post.php:18
 msgid "Overview"
 msgstr "Təsviri"
 
-#: dashboard/overview.php:16
-#: dashboard/visitors.php:21
-msgid "Visitors"
-msgstr "Qonaqlar"
-
-#: dashboard/overview.php:17
+#: classes/WP_Piwik/Widget/Overview.php:42 classes/WP_Piwik/Widget/Post.php:38
 msgid "Unique visitors"
 msgstr "Unikal gonaqlar"
 
-#: dashboard/overview.php:18
+#: classes/WP_Piwik/Widget/Overview.php:43 classes/WP_Piwik/Widget/Post.php:39
 msgid "Page views"
 msgstr "Səhifəyə baxışlar"
 
-#: dashboard/overview.php:19
+#: classes/WP_Piwik/Widget/Overview.php:44 classes/WP_Piwik/Widget/Post.php:40
+msgid "Total time spent"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Overview.php:45 classes/WP_Piwik/Widget/Post.php:42
+msgid "Bounce count"
+msgstr "Rədd cavabının miqdarı"
+
+#: classes/WP_Piwik/Widget/Overview.php:48 classes/WP_Piwik/Widget/Post.php:41
+msgid "Time/visit"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Overview.php:48
 msgid "Max. page views in one visit"
 msgstr "Bir gəlişə maksimal baxılan səhifə"
 
-#: dashboard/overview.php:20
-msgid "Total time spent by visitors"
-msgstr "Qonaq tərəfindən sərf edilən ümumi vaxt"
+#: classes/WP_Piwik/Widget/Overview.php:49 classes/WP_Piwik/Widget/Post.php:46
+msgid "Shortcut"
+msgstr ""
 
-#: dashboard/overview.php:21
-msgid "Bounce count"
-msgstr "Rədd cavabının miqdarı"
+#: classes/WP_Piwik/Widget/Pages.php:16
+msgid "Pages"
+msgstr ""
 
-#: dashboard/visitors.php:56
-msgid "Date"
-msgstr "Tarix"
+#: classes/WP_Piwik/Widget/Plugins.php:16
+msgid "Plugins"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Plugins.php:25
+msgid "Plugin"
+msgstr ""
 
-#: dashboard/visitors.php:56
+#: classes/WP_Piwik/Widget/Plugins.php:25
+#: classes/WP_Piwik/Widget/Visitors.php:57 classes/WP_Piwik/Widget.php:102
 msgid "Visits"
 msgstr "Gəlişlər"
 
-#: dashboard/visitors.php:56
-msgid "Bounced"
-msgstr "Rədd etmələr"
+#: classes/WP_Piwik/Widget/Post.php:43
+msgid "Min. generation time"
+msgstr ""
 
-#: dashboard/websites.php:8
-msgid "Websites"
-msgstr "Saytlar"
+#: classes/WP_Piwik/Widget/Post.php:44
+msgid "Max. generation time"
+msgstr ""
 
-#: dashboard/websites.php:13
-msgid "Website"
-msgstr "Sayt"
+#: classes/WP_Piwik/Widget/Referrers.php:16
+msgid "Referrers"
+msgstr ""
 
-#: wp-piwik.php:49
-#: wp-piwik.php:147
-msgid "Piwik Statistics"
-msgstr "Piwik statistikası"
+#: classes/WP_Piwik/Widget/Screens.php:16
+msgid "Resolutions"
+msgstr ""
 
-#. #-#-#-#-#  plugin.pot (PACKAGE VERSION)  #-#-#-#-#
-#. Plugin Name of an extension
-#: wp-piwik.php:49
-msgid "WP-Piwik"
-msgstr "WP-Piwik"
+#: classes/WP_Piwik/Widget/Screens.php:37
+msgid "Resolution"
+msgstr "Həlli"
 
-#: wp-piwik.php:53
-#: wp-piwik.php:185
-msgid "WP-Piwik Settings"
-msgstr "WP-Piwik kökləmələri"
+#: classes/WP_Piwik/Widget/Seo.php:13
+msgid "SEO"
+msgstr ""
 
-#: wp-piwik.php:59
-msgid "Settings"
-msgstr "Kökləmə"
+#: classes/WP_Piwik/Widget/SystemDetails.php:14
+msgid "Operation System Details"
+msgstr ""
 
-#: wp-piwik.php:112
-msgid "Remote access to Piwik not possible. Enable allow_url_fopen or CURL."
-msgstr "Piwik-yi uzaqdan idarə etmə mümkün deyil. Allow_url_fopen yaxud CURL qoşün."
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+msgid "Operation System"
+msgstr ""
 
-#: wp-piwik.php:190
-msgid "Account settings"
-msgstr "Əkkauntun kökləmələri"
+#: classes/WP_Piwik/Widget/Systems.php:14
+msgid "Operation Systems"
+msgstr ""
 
-#: wp-piwik.php:192
-msgid "Piwik URL"
-msgstr "iwik URL"
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Date"
+msgstr "Tarix"
 
-#: wp-piwik.php:196
-msgid "Auth token"
-msgstr "Avto token"
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Page Views"
+msgstr ""
 
-#: wp-piwik.php:200
-msgid "To enable Piwik statistics, please enter your Piwik base URL (like http://mydomain.com/piwik) and your personal authentification token. You can get the token on the API page inside your Piwik interface. It looks like &quot;1234a5cd6789e0a12345b678cd9012ef&quot;."
-msgstr "Piwik statistikanı qoşmaqdan ötrü, zəhmət olmasa Sizin Əsas Piwik URL-i  (məsələn, http://mydomain.com/piwik) və Sizin şəxsi rəmzinizi daxil edin. Siz nişanı Piwik interfeysda API səhifəsində ala bilərsininz. Bu belə &quot;1234a5cd6789e0a12345b678cd9012ef&quot; bənzəyir."
+#: classes/WP_Piwik/Widget.php:104
+msgid "Hits"
+msgstr ""
 
-#: wp-piwik.php:205
-#: wp-piwik.php:207
-msgid "An error occured"
-msgstr "Səhv oldu"
+#: classes/WP_Piwik/Widget.php:106
+msgid "Actions"
+msgstr ""
 
-#: wp-piwik.php:205
-msgid "Please check URL and auth token. You need at least view access to one site."
-msgstr "Zəhmət olmasa URL və AUTH markeri yoxlayın. Sizə bir sayta daxil olması lazım olacaq."
+#: classes/WP_Piwik/Widget.php:162
+msgid "No data available."
+msgstr ""
+
+#: classes/WP_Piwik/Widget.php:293
+msgid "week"
+msgstr ""
 
-#: wp-piwik:php:215
-msgid "Choose site"
-msgstr "Saytı seçmək"
+#: classes/WP_Piwik.php:193
+msgid "%s %s installed."
+msgstr ""
 
-#: wp-piwik.php:221
-msgid "If your template uses wp_footer(), WP-Piwik can automatically add the Piwik javascript code to your blog."
-msgstr "Əgər şablonda wp_footer () istifadə olunursa,onda  WP-Piwik avtomatik olaraq  Sizin bloqda JavaScript-ə Piwik kodu əlavə edə bilər."
+#: classes/WP_Piwik.php:193
+msgid "Next you should connect to Piwik"
+msgstr ""
 
-#: wp-piwik.php:226
-msgid "Add script to wp_footer()"
-msgstr "wp_footer() skripti əlavə etmək"
+#: classes/WP_Piwik.php:227
+msgid "%s updated to %s."
+msgstr ""
 
-msgid "Tracking filter"
-msgstr "İzləyici filtr"
+#: classes/WP_Piwik.php:227
+msgid "Please validate your configuration"
+msgstr ""
+
+#: classes/WP_Piwik.php:259 classes/WP_Piwik.php:481
+msgid "Settings"
+msgstr "Kökləmə"
+
+#: classes/WP_Piwik.php:262
+msgid "Important"
+msgstr ""
+
+#: classes/WP_Piwik.php:343 classes/WP_Piwik.php:365
+msgid "Piwik Statistics"
+msgstr "Piwik statistikası"
+
+#: classes/WP_Piwik.php:453
+msgid "Configure WP-Piwik"
+msgstr ""
+
+#: classes/WP_Piwik.php:923
+msgid "An error occured"
+msgstr "Səhv oldu"
+
+#: classes/WP_Piwik.php:1191
+msgid "Cheatin&#8217; uh?"
+msgstr ""
 
-msgid "Choose users by user role you do <strong>not</strong> want to track. Requires enabled &quot;Add script to wp_footer()&quot;-functionality."
-msgstr "İstifadəçiləri onların roluna görə seçin əgər izləmək<strong>istəmirsiniz</strong> isə. &quot;Skript zu wp_footer() hinzuf&uuml;gen&quot; - funksional olaraq qoşmağını tələb olunur."
+#: wp-piwik.php:60
+msgid ""
+"WP-Piwik requires at least PHP 5.3. You are using the deprecated version %s."
+" Please update PHP to use WP-Piwik."
+msgstr ""
 
-#: wp-piwik.php:229
-msgid "Save settings"
-msgstr "Kökləmələri saxlamaq"
+#. Plugin Name of the plugin/theme
+msgid "WP-Piwik"
+msgstr "WP-Piwik"
 
-#. Plugin URI of an extension
-msgid "http://dev.braekling.de/wordpress-plugins/dev/wp-piwik/index.html"
-msgstr "http://dev.braekling.de/wordpress-plugins/dev/wp-piwik/index.html"
+#. Plugin URI of the plugin/theme
+msgid "http://wordpress.org/extend/plugins/wp-piwik/"
+msgstr ""
 
-#. Description of an extension
-msgid "Adds Piwik stats to your dashboard menu and Piwik code to your wordpress footer."
-msgstr " Piwik statistikanı menyu üzrə və  Piwik kodu WordPress kolontituluna əlavə edir."
+#. Description of the plugin/theme
+msgid ""
+"Adds Piwik stats to your dashboard menu and Piwik code to your wordpress "
+"header."
+msgstr ""
 
-#. Author of an extension
+#. Author of the plugin/theme
 msgid "Andr&eacute; Br&auml;kling"
 msgstr "Andr&eacute; Br&auml;kling"
 
-#. Author URI of an extension
+#. Author URI of the plugin/theme
 msgid "http://www.braekling.de"
 msgstr "http://www.braekling.de"
-
diff --git a/wp-content/plugins/wp-piwik/languages/wp-piwik-be_BY.mo b/wp-content/plugins/wp-piwik/languages/wp-piwik-be_BY.mo
index 0add570405b3ec607b83b9da97bad285d2055e3a..758712d9f60e86e3980300a2b475945994bef5e8 100755
Binary files a/wp-content/plugins/wp-piwik/languages/wp-piwik-be_BY.mo and b/wp-content/plugins/wp-piwik/languages/wp-piwik-be_BY.mo differ
diff --git a/wp-content/plugins/wp-piwik/languages/wp-piwik-be_BY.po b/wp-content/plugins/wp-piwik/languages/wp-piwik-be_BY.po
index 5ef48bd4c9c1ccffb1a2d93df8a7dd8f615337b9..c65f7ba1214cbe2511ceaaef3fbc67856949e90c 100755
--- a/wp-content/plugins/wp-piwik/languages/wp-piwik-be_BY.po
+++ b/wp-content/plugins/wp-piwik/languages/wp-piwik-be_BY.po
@@ -1,186 +1,1266 @@
-# WP-Piwik 0.3.0 - Belorussian language file
-# Copyright (C) 2009 Andre Braekling
+# Copyright (C) 2015 WP-Piwik
 # This file is distributed under the same license as the WP-Piwik package.
-# Andre Braekling <webmaster@braekling.de>, 2009.
-# FatCow http://www.fatcow.com, 2009.
+# Translators:
+# Andre Braekling <webmaster@braekling.de>, 2009
+# FatCow http://www.fatcow.com, 2009
 msgid ""
 msgstr ""
-"Project-Id-Version: 0.3.0\n"
-"Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-piwik\n"
-"POT-Creation-Date: 2009-06-09 19:05+0000\n"
-"PO-Revision-Date: 2009-11-14 16:25+0200\n"
-"Last-Translator: Fat Cow <zhr@tut.by>\n"
-"Language-Team: FatCow <zhr@tut.by>\n"
+"Project-Id-Version: WP-Piwik\n"
+"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-piwik\n"
+"POT-Creation-Date: 2015-07-22 10:25:29+00:00\n"
+"PO-Revision-Date: 2015-07-22 10:33+0000\n"
+"Last-Translator: André Bräkling\n"
+"Language-Team: Belarusian (Belarus) (http://www.transifex.com/projects/p/wp-piwik/language/be_BY/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Poedit-Language: Belarusian\n"
-"X-Poedit-Country: BELARUS\n"
-"X-Poedit-SourceCharset: utf-8\n"
+"Language: be_BY\n"
+"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
 
-#: dashboard/browsers.php:8
-#: dashboard/browsers.php:37
-msgid "Browser"
-msgstr "Браузер"
+#: classes/WP_Piwik/Admin/Settings.php:24
+msgid "Reload"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:27
+msgid "Changes saved."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:45
+msgid "Save Changes"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:46
+msgid "Thanks for using WP-Piwik!"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid "WP-Piwik %s is successfully connected to Piwik %s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid "You are running WordPress %s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid ""
+"You are running a WordPress %s blog network (WPMU). WP-Piwik will handle "
+"your sites as different websites."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:53
+msgid ""
+"WP-Piwik %s was not able to connect to Piwik using your configuration. Check"
+" the &raquo;Connect to Piwik&laquo; section below."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:56
+msgid ""
+"WP-Piwik %s has to be connected to Piwik first. Check the &raquo;Connect to "
+"Piwik&laquo; section below."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:60
+msgid "Connect to Piwik"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:65
+msgid "Show Statistics"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:69
+msgid "Enable Tracking"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:74
+msgid "Expert Settings"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:78 classes/WP_Piwik.php:923
+msgid "Support"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:82
+msgid "Credits"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid ""
+"WP-Piwik is a WordPress plugin to show a selection of Piwik stats in your "
+"WordPress admin dashboard and to add and configure your Piwik tracking code."
+" To use this you will need your own Piwik instance. If you do not already "
+"have a Piwik setup, you have two simple options: use either"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "Self-hosted"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "or"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "Cloud-hosted"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:98
+msgid ""
+"Neither cURL nor fopen are available. So WP-Piwik can not use the HTTP API "
+"and not connect to Piwik Pro."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:98
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
+msgid "More information"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid "You can choose between three connection methods:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:103
+msgid "Self-hosted (HTTP API, default)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"This is the default option for a self-hosted Piwik and should work for most "
+"configurations. WP-Piwik will connect to Piwik using http(s)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:104
+msgid "Self-hosted (PHP API)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"Choose this, if your self-hosted Piwik and WordPress are running on the same"
+" machine and you know the full server path to your Piwik instance."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:105
+msgid "Cloud-hosted (Piwik Pro)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"If you are using a cloud-hosted Piwik by Piwik Pro, you can simply use this "
+"option."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:101
+msgid "Piwik Mode"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:102
+msgid "Disabled (WP-Piwik will not connect to Piwik)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:108
+msgid "Piwik URL"
+msgstr "Piwik URL"
+
+#: classes/WP_Piwik/Admin/Settings.php:108
+msgid ""
+"Enter your Piwik URL. This is the same URL you use to access your Piwik "
+"instance, e.g. http://www.example.com/piwik/."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:109
+msgid "Piwik path"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:109
+msgid "Enter the file path to your Piwik instance, e.g. /var/www/piwik/."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:110
+msgid "Piwik user"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:110
+msgid ""
+"Enter your Piwik Pro username. It is also part of your URL: "
+"http://USERNAME.piwik.pro."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid "Auth token"
+msgstr "Авто token"
+
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid ""
+"Enter your Piwik auth token here. It is an alphanumerical code like "
+"0a1b2c34d56e78901fa2bc3d45678efa."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid "See %sWP-Piwik FAQ%s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:116
+msgid "Auto config"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:116
+msgid ""
+"Check this to automatically choose your blog from your Piwik sites by URL. "
+"If your blog is not added to Piwik yet, WP-Piwik will add a new site."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:127
+msgid "Determined site"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:132
+msgid "Select site"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:140
+msgid "Piwik default date"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:141
+#: classes/WP_Piwik/Admin/Settings.php:154
+msgid "Today"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:142
+#: classes/WP_Piwik/Admin/Settings.php:153
+msgid "Yesterday"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:143
+msgid "Current month"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:144
+msgid "Last month"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:145
+msgid "Current week"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:146
+msgid "Last week"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:147
+msgid "Default date shown on statistics page."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:149
+msgid "Show SEO data"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:149
+msgid "Display SEO ranking data on statistics page."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:149
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Slow!"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:151
+msgid "Dashboard overview"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:152
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:192
+#: classes/WP_Piwik/Admin/Settings.php:213
+#: classes/WP_Piwik/Admin/Settings.php:304
+msgid "Disabled"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:155
+msgid "Last 30 days"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:156
+msgid "Enable WP-Piwik dashboard widget &quot;Overview&quot;."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:158
+msgid "Dashboard graph"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:158
+msgid "Enable WP-Piwik dashboard widget &quot;Graph&quot;."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Dashboard SEO"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Enable WP-Piwik dashboard widget &quot;SEO&quot;."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:162
+msgid "Show graph on WordPress Toolbar"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:162
+msgid "Display a last 30 days visitor graph on WordPress' toolbar."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:164
+msgid "Display stats to"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:171
+msgid "Choose user roles allowed to see the statistics page."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:173
+msgid "Show per post stats"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:173
+msgid "Show stats about single posts at the post edit admin page."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:175
+msgid "Piwik shortcut"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:175
+msgid "Display a shortcut to Piwik itself."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:177
+msgid "WP-Piwik display name"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:177
+msgid "Plugin name shown in WordPress."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:179
+msgid "Enable shortcodes"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:179
+msgid "Enable shortcodes in post or page content."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "You can choose between four tracking code modes:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"WP-Piwik will not add the tracking code. Use this, if you want to add the "
+"tracking code to your template files or you use another plugin to add the "
+"tracking code."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:193
+msgid "Default tracking"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "WP-Piwik will use Piwik's standard tracking code."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:194
+msgid "Use js/index.php"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"You can choose this tracking code, to deliver a minified proxy code and to "
+"avoid using the files called piwik.js or piwik.php."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "See %sreadme file%s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:195
+msgid "Use proxy script"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "Use this tracking code to not reveal the Piwik server URL."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:210
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid "See %sPiwik FAQ%s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:196
+msgid "Enter manually"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"Enter your own tracking code manually. You can choose one of the prior "
+"options, pre-configure your tracking code and switch to manually editing at "
+"last."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "Use the placeholder {ID} to add the Piwik site ID."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:191
+msgid "Add tracking code"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:199
+msgid "Tracking code"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:201
+msgid "JavaScript code position"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:202
+msgid "Footer"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:203
+msgid "Header"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:204
+msgid ""
+"Choose whether the JavaScript code is added to the footer or the header."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:206
+msgid "Noscript code"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+msgid "Add &lt;noscript&gt;"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+msgid "Adds the &lt;noscript&gt; code to your footer."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Disabled in proxy mode."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Add rec parameter to noscript code"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Enable tracking for visitors without JavaScript (not recommended)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:212
+msgid "Enable content tracking"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:214
+msgid "Track all content blocks"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:215
+msgid "Track only visible content blocks"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:216
+msgid ""
+"Content tracking allows you to track interaction with the content of a web "
+"page or application."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:216
+#: classes/WP_Piwik/Admin/Settings.php:218
+#: classes/WP_Piwik/Admin/Settings.php:222
+#: classes/WP_Piwik/Admin/Settings.php:224
+#: classes/WP_Piwik/Admin/Settings.php:226
+#: classes/WP_Piwik/Admin/Settings.php:247
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "See %sPiwik documentation%s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:218
+msgid "Track search"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:218
+msgid "Use Piwik's advanced Site Search Analytics feature."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid "Track 404"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid ""
+"WP-Piwik can automatically add a 404-category to track 404-page-visits."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:222
+msgid "Add annotation on new post"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:222
+msgid "Add a Piwik annotation on each new post."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:224
+msgid "Show custom variables box"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:224
+msgid " Show a &quot;custom variables&quot; edit box on post edit page."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:226
+msgid "Add new file types for download tracking"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:226
+msgid ""
+"Add file extensions for download tracking, divided by a vertical bar "
+"(&#124;)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:228
+msgid "Disable cookies"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:228
+msgid "Disable all tracking cookies for a visitor."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:230
+msgid "Limit cookie lifetime"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:230
+msgid ""
+"You can limit the cookie lifetime to avoid tracking your users over a longer"
+" period as necessary."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:232
+msgid "Visitor timeout (seconds)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:234
+msgid "Session timeout (seconds)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:236
+msgid "Referral timeout (seconds)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:238
+msgid "Track admin pages"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:238
+msgid ""
+"Enable to track users on admin pages (remember to configure the tracking "
+"filter appropriately)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:241
+msgid "Tracking filter"
+msgstr "Следящий фильтр"
+
+#: classes/WP_Piwik/Admin/Settings.php:245
+msgid "Choose users by user role you do <strong>not</strong> want to track."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:247
+msgid "Track subdomains in the same website"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:247
+msgid "Adds *.-prefix to cookie domain."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "Do not count subdomains as outlink"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "Adds *.-prefix to tracked domain."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:251
+msgid "Track RSS feeds"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:251
+msgid "Enable to track posts in feeds via tracking pixel."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:253
+msgid "Track RSS feed links as campaign"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:255
+msgid "RSS feed campaign"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:255
+msgid "Keyword: post name."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:257
+msgid "Enable heartbeat timer"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:257
+msgid ""
+"Enable a heartbeat timer to get more accurate visit lengths by sending "
+"periodical HTTP ping requests as long as the site is opened. Enter the time "
+"between the pings in seconds (Piwik default: 15) to enable or 0 to disable "
+"this feature. <strong>Note:</strong> This will cause a lot of additional "
+"HTTP requests on your site."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:262
+msgid ""
+"Usually, you do not need to change these settings. If you want to do so, you"
+" should know what you do or you got an expert's advice."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:264
+msgid "Enable cache"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:264
+msgid "Cache API calls, which not contain today's values, for a week."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:267
+msgid "HTTP connection via"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:268
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "cURL"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:269
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "fopen"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:270
+msgid ""
+"Choose whether WP-Piwik should use cURL or fopen to connect to Piwik in HTTP"
+" or Pro mode."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:272
+msgid "HTTP method"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:273
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "POST"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:274
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "GET"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:275
+msgid "Choose whether WP-Piwik should use POST or GET in HTTP or Pro mode."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:277
+msgid "Disable time limit"
+msgstr ""
 
-msgid "Resolution"
-msgstr "Разрешение"
+#: classes/WP_Piwik/Admin/Settings.php:277
+msgid "Use set_time_limit(0) if stats page causes a time out."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:279
+msgid "Connection timeout"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:281
+msgid "Disable SSL peer verification"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:281
+msgid "not recommended"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:283
+msgid "User agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:284
+msgid "Use the PHP default user agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:284
+msgid "empty"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:285
+msgid "Define a specific user agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:287
+msgid "Specific user agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:289
+msgid "Add data-cfasync=false"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:291
+msgid "CDN URL"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:293
+msgid "CDN URL (SSL)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:295
+msgid "Force Piwik to use a specific protocol"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:296
+msgid "Disabled (default)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:297
+msgid "http"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:298
+msgid "https (SSL)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:299
+msgid ""
+"Choose if you want to explicitly force Piwik to use HTTP or HTTPS. Does not "
+"work with a CDN URL."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:301
+msgid "Update notice"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:302
+msgid "Show always if WP-Piwik is updated"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:303
+msgid "Show only if WP-Piwik is updated and settings were changed"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:305
+msgid "Choose if you want to get an update notice if WP-Piwik is updated."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:466
+msgid "Donate"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:468
+msgid "If you like WP-Piwik, you can support its development by a donation:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:506
+msgid "My Amazon.de wishlist"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:509
+#: classes/WP_Piwik/Admin/Settings.php:556
+msgid "Please don't forget to vote the compatibility at the"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid "Thank you very much for your donation"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid "the Piwik team itself"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid ", and all people flattering this"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:541
+msgid ""
+"Graphs powered by <a href=\"http://www.jqplot.com/\">jqPlot</a> (License: "
+"GPL 2.0 and MIT) and <a "
+"href=\"http://omnipotent.net/jquery.sparkline/\">jQuery Sparklines</a> "
+"(License: New BSD License)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:542
+msgid "Metabox support inspired by"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:543
+msgid "Tabbed settings page suggested by the"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:544
+msgid "Thank you very much"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:544
+msgid "for your translation work"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:545
+msgid ""
+"Thank you very much, all users who send me mails containing criticism, "
+"commendation, feature requests and bug reports! You help me to make WP-Piwik"
+" much better."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:546
+msgid ""
+"Thank <strong>you</strong> for using my plugin. It is the best commendation "
+"if my piece of code is really used!"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:555
+msgid "The best place to get help:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:555
+msgid "WP-Piwik support forum"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:558
+msgid "Debugging"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:559
+msgid ""
+"Either allow_url_fopen has to be enabled <em>or</em> cURL has to be "
+"available:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:562
+msgid "cURL is"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:563
+#: classes/WP_Piwik/Admin/Settings.php:568
+msgid "not"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:564
+msgid "available"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:567
+msgid "allow_url_fopen is"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:569
+msgid "enabled"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "is used."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:573
+msgid "Determined Piwik base URL is"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:577
+msgid "Tools"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:579
+msgid "Run testscript"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:580
+msgid "Sitebrowser"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:581
+msgid "Clear cache"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:582
+msgid "Are you sure you want to clear all settings?"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:582
+msgid "Reset WP-Piwik"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:584
+msgid "Latest support threads on WordPress.org"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:635
+msgid "Settings cleared (except connection settings)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:651
+msgid "Cache cleared."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:17
+msgid "site"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:18
+msgid "sites"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:24
+msgid "No site configured yet."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:29
+msgid "Blog ID"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:30
+msgid "Title"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:31
+msgid "URL"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:32
+msgid "Site ID (Piwik)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:79
+msgid "Site not created yet."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Statistics.php:12
+msgid "Statistics"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Statistics.php:20
+msgid "Currently shown stats:"
+msgstr ""
+
+#: classes/WP_Piwik/Request/Php.php:27
+msgid "Could not resolve"
+msgstr ""
+
+#: classes/WP_Piwik/Request/Php.php:27
+msgid "realpath() returns false"
+msgstr ""
+
+#: classes/WP_Piwik/Request/Php.php:39
+msgid "Class Piwik\\FrontController does not exists."
+msgstr ""
+
+#: classes/WP_Piwik/Request/Php.php:42
+msgid "Class Piwik\\API\\Request does not exists."
+msgstr ""
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:10
+msgid "Piwik Custom Variables"
+msgstr ""
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
+msgid "Name"
+msgstr ""
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
+msgid "Value"
+msgstr ""
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
+msgid "Set custom variables for a page view"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:18
+msgid "Browser Details"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:37
+#: classes/WP_Piwik/Widget/Browsers.php:37
+#: classes/WP_Piwik/Widget/Chart.php:43
+#: classes/WP_Piwik/Widget/Noresult.php:23
+#: classes/WP_Piwik/Widget/Overview.php:24
+#: classes/WP_Piwik/Widget/Plugins.php:23 classes/WP_Piwik/Widget/Post.php:25
+#: classes/WP_Piwik/Widget/Screens.php:35
+#: classes/WP_Piwik/Widget/Search.php:23 classes/WP_Piwik/Widget/Seo.php:20
+#: classes/WP_Piwik/Widget/SystemDetails.php:33
+#: classes/WP_Piwik/Widget/Systems.php:33
+#: classes/WP_Piwik/Widget/Visitors.php:35 classes/WP_Piwik/Widget.php:91
+msgid "Piwik error"
+msgstr ""
 
-msgid "Operating System"
-msgstr "Операционная система"
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+msgid "Browser"
+msgstr "Браузер"
 
-#: dashboard/browsers.php:37
-#: dashboard/keywords.php:13
-#: dashboard/visitors.php:56
-#: dashboard/websites.php:13
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+#: classes/WP_Piwik/Widget/Screens.php:37
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+#: classes/WP_Piwik/Widget/Visitors.php:57 classes/WP_Piwik/Widget.php:100
 msgid "Unique"
 msgstr "Уникальность"
 
-#: dashboard/browsers.php:37
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+#: classes/WP_Piwik/Widget/Plugins.php:25
+#: classes/WP_Piwik/Widget/Screens.php:37
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
 msgid "Percent"
 msgstr "Процентов"
 
-#: dashboard/keywords.php:8
+#: classes/WP_Piwik/Widget/BrowserDetails.php:66
+#: classes/WP_Piwik/Widget/Browsers.php:66
+#: classes/WP_Piwik/Widget/Screens.php:64
+#: classes/WP_Piwik/Widget/SystemDetails.php:62
+#: classes/WP_Piwik/Widget/Systems.php:62
+msgid "Others"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Browsers.php:18
+msgid "Browsers"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Chart.php:19
+#: classes/WP_Piwik/Widget/Overview.php:41 classes/WP_Piwik/Widget/Post.php:37
+#: classes/WP_Piwik/Widget/Visitors.php:17
+msgid "Visitors"
+msgstr "Посетителей"
+
+#: classes/WP_Piwik/Widget/Chart.php:71
+msgid ""
+"The graph contains the values shown in the table below (visitors / unique / "
+"bounces). The red line show a linear trendline (unique)."
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Keywords.php:16
 msgid "Keywords"
 msgstr "Ключевые слова"
 
-#: dashboard/keywords.php:13
+#: classes/WP_Piwik/Widget/Noresult.php:16
+#: classes/WP_Piwik/Widget/Search.php:16
+msgid "Site Search"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
 msgid "Keyword"
 msgstr "Ключевое слово"
 
-#: dashboard/overview.php:8
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+msgid "Requests"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Bounced"
+msgstr "Отказов"
+
+#: classes/WP_Piwik/Widget/Overview.php:17 classes/WP_Piwik/Widget/Post.php:18
 msgid "Overview"
 msgstr "Описание"
 
-#: dashboard/overview.php:16
-#: dashboard/visitors.php:21
-msgid "Visitors"
-msgstr "Посетителей"
-
-#: dashboard/overview.php:17
+#: classes/WP_Piwik/Widget/Overview.php:42 classes/WP_Piwik/Widget/Post.php:38
 msgid "Unique visitors"
 msgstr "Уникальных посетителей"
 
-#: dashboard/overview.php:18
+#: classes/WP_Piwik/Widget/Overview.php:43 classes/WP_Piwik/Widget/Post.php:39
 msgid "Page views"
 msgstr "Просмотров страницы"
 
-#: dashboard/overview.php:19
+#: classes/WP_Piwik/Widget/Overview.php:44 classes/WP_Piwik/Widget/Post.php:40
+msgid "Total time spent"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Overview.php:45 classes/WP_Piwik/Widget/Post.php:42
+msgid "Bounce count"
+msgstr "Количество отказов"
+
+#: classes/WP_Piwik/Widget/Overview.php:48 classes/WP_Piwik/Widget/Post.php:41
+msgid "Time/visit"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Overview.php:48
 msgid "Max. page views in one visit"
 msgstr "Макс. страниц просмтрено за один визит"
 
-#: dashboard/overview.php:20
-msgid "Total time spent by visitors"
-msgstr "Всего времени, проведенного посетителем"
+#: classes/WP_Piwik/Widget/Overview.php:49 classes/WP_Piwik/Widget/Post.php:46
+msgid "Shortcut"
+msgstr ""
 
-#: dashboard/overview.php:21
-msgid "Bounce count"
-msgstr "Количество отказов"
+#: classes/WP_Piwik/Widget/Pages.php:16
+msgid "Pages"
+msgstr ""
 
-#: dashboard/visitors.php:56
-msgid "Date"
-msgstr "Дата"
+#: classes/WP_Piwik/Widget/Plugins.php:16
+msgid "Plugins"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Plugins.php:25
+msgid "Plugin"
+msgstr ""
 
-#: dashboard/visitors.php:56
+#: classes/WP_Piwik/Widget/Plugins.php:25
+#: classes/WP_Piwik/Widget/Visitors.php:57 classes/WP_Piwik/Widget.php:102
 msgid "Visits"
 msgstr "Визитов"
 
-#: dashboard/visitors.php:56
-msgid "Bounced"
-msgstr "Отказов"
+#: classes/WP_Piwik/Widget/Post.php:43
+msgid "Min. generation time"
+msgstr ""
 
-#: dashboard/websites.php:8
-msgid "Websites"
-msgstr "Сайтов"
+#: classes/WP_Piwik/Widget/Post.php:44
+msgid "Max. generation time"
+msgstr ""
 
-#: dashboard/websites.php:13
-msgid "Website"
-msgstr "Вебсайт"
+#: classes/WP_Piwik/Widget/Referrers.php:16
+msgid "Referrers"
+msgstr ""
 
-#: wp-piwik.php:49
-#: wp-piwik.php:147
-msgid "Piwik Statistics"
-msgstr "Piwik статистика"
+#: classes/WP_Piwik/Widget/Screens.php:16
+msgid "Resolutions"
+msgstr ""
 
-#. #-#-#-#-#  plugin.pot (PACKAGE VERSION)  #-#-#-#-#
-#. Plugin Name of an extension
-#: wp-piwik.php:49
-msgid "WP-Piwik"
-msgstr "WP-Piwik"
+#: classes/WP_Piwik/Widget/Screens.php:37
+msgid "Resolution"
+msgstr "Разрешение"
 
-#: wp-piwik.php:53
-#: wp-piwik.php:185
-msgid "WP-Piwik Settings"
-msgstr "WP-Piwik настройки"
+#: classes/WP_Piwik/Widget/Seo.php:13
+msgid "SEO"
+msgstr ""
 
-#: wp-piwik.php:59
-msgid "Settings"
-msgstr "Настройки"
+#: classes/WP_Piwik/Widget/SystemDetails.php:14
+msgid "Operation System Details"
+msgstr ""
 
-#: wp-piwik.php:112
-msgid "Remote access to Piwik not possible. Enable allow_url_fopen or CURL."
-msgstr "Удаленный доступ к Piwik невозможен. Включите allow_url_fopen или CURL."
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+msgid "Operation System"
+msgstr ""
 
-#: wp-piwik.php:190
-msgid "Account settings"
-msgstr "Настройки аккаунта"
+#: classes/WP_Piwik/Widget/Systems.php:14
+msgid "Operation Systems"
+msgstr ""
 
-#: wp-piwik.php:192
-msgid "Piwik URL"
-msgstr "Piwik URL"
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Date"
+msgstr "Дата"
 
-#: wp-piwik.php:196
-msgid "Auth token"
-msgstr "Авто token"
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Page Views"
+msgstr ""
 
-#: wp-piwik.php:200
-msgid "To enable Piwik statistics, please enter your Piwik base URL (like http://mydomain.com/piwik) and your personal authentification token. You can get the token on the API page inside your Piwik interface. It looks like &quot;1234a5cd6789e0a12345b678cd9012ef&quot;."
-msgstr "Для того чтобы Piwik статистике, пожалуйста, введите Ваш Piwik Базовый URL (например, http://mydomain.com/piwik), и ваш личный знак подлинности. Вы можете получить знак на странице API внутри интерфейса Piwik. It looks like &quot;1234a5cd6789e0a12345b678cd9012ef&quot;."
+#: classes/WP_Piwik/Widget.php:104
+msgid "Hits"
+msgstr ""
 
-#: wp-piwik.php:205
-#: wp-piwik.php:207
-msgid "An error occured"
-msgstr "Произошла ошибка"
+#: classes/WP_Piwik/Widget.php:106
+msgid "Actions"
+msgstr ""
 
-#: wp-piwik.php:205
-msgid "Please check URL and auth token. You need at least view access to one site."
-msgstr "Пожалуйста, проверьте URL и AUTH маркера. Вам потребуется минимум открыть доступ к одному сайту."
+#: classes/WP_Piwik/Widget.php:162
+msgid "No data available."
+msgstr ""
+
+#: classes/WP_Piwik/Widget.php:293
+msgid "week"
+msgstr ""
 
-#: wp-piwik:php:215
-msgid "Choose site"
-msgstr "Выбрать сайт"
+#: classes/WP_Piwik.php:193
+msgid "%s %s installed."
+msgstr ""
 
-#: wp-piwik.php:221
-msgid "If your template uses wp_footer(), WP-Piwik can automatically add the Piwik javascript code to your blog."
-msgstr "Если в шаблоне используются wp_footer (), РГ-Piwik может автоматически добавить Piwik кода JavaScript в вашем блоге."
+#: classes/WP_Piwik.php:193
+msgid "Next you should connect to Piwik"
+msgstr ""
 
-#: wp-piwik.php:226
-msgid "Add script to wp_footer()"
-msgstr "Добавить скрипт в wp_footer()"
+#: classes/WP_Piwik.php:227
+msgid "%s updated to %s."
+msgstr ""
 
-msgid "Tracking filter"
-msgstr "Следящий фильтр"
+#: classes/WP_Piwik.php:227
+msgid "Please validate your configuration"
+msgstr ""
+
+#: classes/WP_Piwik.php:259 classes/WP_Piwik.php:481
+msgid "Settings"
+msgstr "Настройки"
+
+#: classes/WP_Piwik.php:262
+msgid "Important"
+msgstr ""
+
+#: classes/WP_Piwik.php:343 classes/WP_Piwik.php:365
+msgid "Piwik Statistics"
+msgstr "Piwik статистика"
+
+#: classes/WP_Piwik.php:453
+msgid "Configure WP-Piwik"
+msgstr ""
+
+#: classes/WP_Piwik.php:923
+msgid "An error occured"
+msgstr "Произошла ошибка"
+
+#: classes/WP_Piwik.php:1191
+msgid "Cheatin&#8217; uh?"
+msgstr ""
 
-msgid "Choose users by user role you do <strong>not</strong> want to track. Requires enabled &quot;Add script to wp_footer()&quot;-functionality."
-msgstr "W&auml;hle Nutzer anhand ihrer Nutzerrolle, die <strong>nicht</strong> erfasst werden sollen. Die Funktion &quot;Skript zu wp_footer() hinzuf&uuml;gen&quot; muss dazu verwendet werden."
+#: wp-piwik.php:60
+msgid ""
+"WP-Piwik requires at least PHP 5.3. You are using the deprecated version %s."
+" Please update PHP to use WP-Piwik."
+msgstr ""
 
-#: wp-piwik.php:229
-msgid "Save settings"
-msgstr "Сохранить настройки"
+#. Plugin Name of the plugin/theme
+msgid "WP-Piwik"
+msgstr "WP-Piwik"
 
-#. Plugin URI of an extension
-msgid "http://dev.braekling.de/wordpress-plugins/dev/wp-piwik/index.html"
-msgstr "http://dev.braekling.de/wordpress-plugins/dev/wp-piwik/index.html"
+#. Plugin URI of the plugin/theme
+msgid "http://wordpress.org/extend/plugins/wp-piwik/"
+msgstr ""
 
-#. Description of an extension
-msgid "Adds Piwik stats to your dashboard menu and Piwik code to your wordpress footer."
-msgstr "Добавляет Piwik статистику по меню и панели инструментов Piwik кода на WordPress колонтитула."
+#. Description of the plugin/theme
+msgid ""
+"Adds Piwik stats to your dashboard menu and Piwik code to your wordpress "
+"header."
+msgstr ""
 
-#. Author of an extension
+#. Author of the plugin/theme
 msgid "Andr&eacute; Br&auml;kling"
 msgstr "Andr&eacute; Br&auml;kling"
 
-#. Author URI of an extension
+#. Author URI of the plugin/theme
 msgid "http://www.braekling.de"
 msgstr "http://www.braekling.de"
-
diff --git a/wp-content/plugins/wp-piwik/languages/wp-piwik-de_CH.mo b/wp-content/plugins/wp-piwik/languages/wp-piwik-de_CH.mo
new file mode 100644
index 0000000000000000000000000000000000000000..46826da87031ac6969c1dbbc81dd588bcc501b80
Binary files /dev/null and b/wp-content/plugins/wp-piwik/languages/wp-piwik-de_CH.mo differ
diff --git a/wp-content/plugins/wp-piwik/languages/wp-piwik-de_CH.po b/wp-content/plugins/wp-piwik/languages/wp-piwik-de_CH.po
new file mode 100644
index 0000000000000000000000000000000000000000..4a6b2fd3833391c497536887c7588ddb8779f79c
--- /dev/null
+++ b/wp-content/plugins/wp-piwik/languages/wp-piwik-de_CH.po
@@ -0,0 +1,1264 @@
+# Copyright (C) 2015 WP-Piwik
+# This file is distributed under the same license as the WP-Piwik package.
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: WP-Piwik\n"
+"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-piwik\n"
+"POT-Creation-Date: 2015-07-22 10:25:29+00:00\n"
+"PO-Revision-Date: 2015-07-22 10:33+0000\n"
+"Last-Translator: André Bräkling\n"
+"Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/wp-piwik/language/de_CH/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: de_CH\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: classes/WP_Piwik/Admin/Settings.php:24
+msgid "Reload"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:27
+msgid "Changes saved."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:45
+msgid "Save Changes"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:46
+msgid "Thanks for using WP-Piwik!"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid "WP-Piwik %s is successfully connected to Piwik %s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid "You are running WordPress %s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid ""
+"You are running a WordPress %s blog network (WPMU). WP-Piwik will handle "
+"your sites as different websites."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:53
+msgid ""
+"WP-Piwik %s was not able to connect to Piwik using your configuration. Check"
+" the &raquo;Connect to Piwik&laquo; section below."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:56
+msgid ""
+"WP-Piwik %s has to be connected to Piwik first. Check the &raquo;Connect to "
+"Piwik&laquo; section below."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:60
+msgid "Connect to Piwik"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:65
+msgid "Show Statistics"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:69
+msgid "Enable Tracking"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:74
+msgid "Expert Settings"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:78 classes/WP_Piwik.php:923
+msgid "Support"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:82
+msgid "Credits"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid ""
+"WP-Piwik is a WordPress plugin to show a selection of Piwik stats in your "
+"WordPress admin dashboard and to add and configure your Piwik tracking code."
+" To use this you will need your own Piwik instance. If you do not already "
+"have a Piwik setup, you have two simple options: use either"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "Self-hosted"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "or"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "Cloud-hosted"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:98
+msgid ""
+"Neither cURL nor fopen are available. So WP-Piwik can not use the HTTP API "
+"and not connect to Piwik Pro."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:98
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
+msgid "More information"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid "You can choose between three connection methods:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:103
+msgid "Self-hosted (HTTP API, default)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"This is the default option for a self-hosted Piwik and should work for most "
+"configurations. WP-Piwik will connect to Piwik using http(s)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:104
+msgid "Self-hosted (PHP API)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"Choose this, if your self-hosted Piwik and WordPress are running on the same"
+" machine and you know the full server path to your Piwik instance."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:105
+msgid "Cloud-hosted (Piwik Pro)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"If you are using a cloud-hosted Piwik by Piwik Pro, you can simply use this "
+"option."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:101
+msgid "Piwik Mode"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:102
+msgid "Disabled (WP-Piwik will not connect to Piwik)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:108
+msgid "Piwik URL"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:108
+msgid ""
+"Enter your Piwik URL. This is the same URL you use to access your Piwik "
+"instance, e.g. http://www.example.com/piwik/."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:109
+msgid "Piwik path"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:109
+msgid "Enter the file path to your Piwik instance, e.g. /var/www/piwik/."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:110
+msgid "Piwik user"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:110
+msgid ""
+"Enter your Piwik Pro username. It is also part of your URL: "
+"http://USERNAME.piwik.pro."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid "Auth token"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid ""
+"Enter your Piwik auth token here. It is an alphanumerical code like "
+"0a1b2c34d56e78901fa2bc3d45678efa."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid "See %sWP-Piwik FAQ%s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:116
+msgid "Auto config"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:116
+msgid ""
+"Check this to automatically choose your blog from your Piwik sites by URL. "
+"If your blog is not added to Piwik yet, WP-Piwik will add a new site."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:127
+msgid "Determined site"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:132
+msgid "Select site"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:140
+msgid "Piwik default date"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:141
+#: classes/WP_Piwik/Admin/Settings.php:154
+msgid "Today"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:142
+#: classes/WP_Piwik/Admin/Settings.php:153
+msgid "Yesterday"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:143
+msgid "Current month"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:144
+msgid "Last month"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:145
+msgid "Current week"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:146
+msgid "Last week"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:147
+msgid "Default date shown on statistics page."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:149
+msgid "Show SEO data"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:149
+msgid "Display SEO ranking data on statistics page."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:149
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Slow!"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:151
+msgid "Dashboard overview"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:152
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:192
+#: classes/WP_Piwik/Admin/Settings.php:213
+#: classes/WP_Piwik/Admin/Settings.php:304
+msgid "Disabled"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:155
+msgid "Last 30 days"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:156
+msgid "Enable WP-Piwik dashboard widget &quot;Overview&quot;."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:158
+msgid "Dashboard graph"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:158
+msgid "Enable WP-Piwik dashboard widget &quot;Graph&quot;."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Dashboard SEO"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Enable WP-Piwik dashboard widget &quot;SEO&quot;."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:162
+msgid "Show graph on WordPress Toolbar"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:162
+msgid "Display a last 30 days visitor graph on WordPress' toolbar."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:164
+msgid "Display stats to"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:171
+msgid "Choose user roles allowed to see the statistics page."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:173
+msgid "Show per post stats"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:173
+msgid "Show stats about single posts at the post edit admin page."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:175
+msgid "Piwik shortcut"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:175
+msgid "Display a shortcut to Piwik itself."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:177
+msgid "WP-Piwik display name"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:177
+msgid "Plugin name shown in WordPress."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:179
+msgid "Enable shortcodes"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:179
+msgid "Enable shortcodes in post or page content."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "You can choose between four tracking code modes:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"WP-Piwik will not add the tracking code. Use this, if you want to add the "
+"tracking code to your template files or you use another plugin to add the "
+"tracking code."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:193
+msgid "Default tracking"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "WP-Piwik will use Piwik's standard tracking code."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:194
+msgid "Use js/index.php"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"You can choose this tracking code, to deliver a minified proxy code and to "
+"avoid using the files called piwik.js or piwik.php."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "See %sreadme file%s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:195
+msgid "Use proxy script"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "Use this tracking code to not reveal the Piwik server URL."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:210
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid "See %sPiwik FAQ%s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:196
+msgid "Enter manually"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"Enter your own tracking code manually. You can choose one of the prior "
+"options, pre-configure your tracking code and switch to manually editing at "
+"last."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "Use the placeholder {ID} to add the Piwik site ID."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:191
+msgid "Add tracking code"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:199
+msgid "Tracking code"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:201
+msgid "JavaScript code position"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:202
+msgid "Footer"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:203
+msgid "Header"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:204
+msgid ""
+"Choose whether the JavaScript code is added to the footer or the header."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:206
+msgid "Noscript code"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+msgid "Add &lt;noscript&gt;"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+msgid "Adds the &lt;noscript&gt; code to your footer."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Disabled in proxy mode."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Add rec parameter to noscript code"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Enable tracking for visitors without JavaScript (not recommended)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:212
+msgid "Enable content tracking"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:214
+msgid "Track all content blocks"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:215
+msgid "Track only visible content blocks"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:216
+msgid ""
+"Content tracking allows you to track interaction with the content of a web "
+"page or application."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:216
+#: classes/WP_Piwik/Admin/Settings.php:218
+#: classes/WP_Piwik/Admin/Settings.php:222
+#: classes/WP_Piwik/Admin/Settings.php:224
+#: classes/WP_Piwik/Admin/Settings.php:226
+#: classes/WP_Piwik/Admin/Settings.php:247
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "See %sPiwik documentation%s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:218
+msgid "Track search"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:218
+msgid "Use Piwik's advanced Site Search Analytics feature."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid "Track 404"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid ""
+"WP-Piwik can automatically add a 404-category to track 404-page-visits."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:222
+msgid "Add annotation on new post"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:222
+msgid "Add a Piwik annotation on each new post."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:224
+msgid "Show custom variables box"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:224
+msgid " Show a &quot;custom variables&quot; edit box on post edit page."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:226
+msgid "Add new file types for download tracking"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:226
+msgid ""
+"Add file extensions for download tracking, divided by a vertical bar "
+"(&#124;)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:228
+msgid "Disable cookies"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:228
+msgid "Disable all tracking cookies for a visitor."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:230
+msgid "Limit cookie lifetime"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:230
+msgid ""
+"You can limit the cookie lifetime to avoid tracking your users over a longer"
+" period as necessary."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:232
+msgid "Visitor timeout (seconds)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:234
+msgid "Session timeout (seconds)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:236
+msgid "Referral timeout (seconds)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:238
+msgid "Track admin pages"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:238
+msgid ""
+"Enable to track users on admin pages (remember to configure the tracking "
+"filter appropriately)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:241
+msgid "Tracking filter"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:245
+msgid "Choose users by user role you do <strong>not</strong> want to track."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:247
+msgid "Track subdomains in the same website"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:247
+msgid "Adds *.-prefix to cookie domain."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "Do not count subdomains as outlink"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "Adds *.-prefix to tracked domain."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:251
+msgid "Track RSS feeds"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:251
+msgid "Enable to track posts in feeds via tracking pixel."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:253
+msgid "Track RSS feed links as campaign"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:255
+msgid "RSS feed campaign"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:255
+msgid "Keyword: post name."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:257
+msgid "Enable heartbeat timer"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:257
+msgid ""
+"Enable a heartbeat timer to get more accurate visit lengths by sending "
+"periodical HTTP ping requests as long as the site is opened. Enter the time "
+"between the pings in seconds (Piwik default: 15) to enable or 0 to disable "
+"this feature. <strong>Note:</strong> This will cause a lot of additional "
+"HTTP requests on your site."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:262
+msgid ""
+"Usually, you do not need to change these settings. If you want to do so, you"
+" should know what you do or you got an expert's advice."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:264
+msgid "Enable cache"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:264
+msgid "Cache API calls, which not contain today's values, for a week."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:267
+msgid "HTTP connection via"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:268
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "cURL"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:269
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "fopen"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:270
+msgid ""
+"Choose whether WP-Piwik should use cURL or fopen to connect to Piwik in HTTP"
+" or Pro mode."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:272
+msgid "HTTP method"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:273
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "POST"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:274
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "GET"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:275
+msgid "Choose whether WP-Piwik should use POST or GET in HTTP or Pro mode."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:277
+msgid "Disable time limit"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:277
+msgid "Use set_time_limit(0) if stats page causes a time out."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:279
+msgid "Connection timeout"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:281
+msgid "Disable SSL peer verification"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:281
+msgid "not recommended"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:283
+msgid "User agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:284
+msgid "Use the PHP default user agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:284
+msgid "empty"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:285
+msgid "Define a specific user agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:287
+msgid "Specific user agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:289
+msgid "Add data-cfasync=false"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:291
+msgid "CDN URL"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:293
+msgid "CDN URL (SSL)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:295
+msgid "Force Piwik to use a specific protocol"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:296
+msgid "Disabled (default)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:297
+msgid "http"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:298
+msgid "https (SSL)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:299
+msgid ""
+"Choose if you want to explicitly force Piwik to use HTTP or HTTPS. Does not "
+"work with a CDN URL."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:301
+msgid "Update notice"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:302
+msgid "Show always if WP-Piwik is updated"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:303
+msgid "Show only if WP-Piwik is updated and settings were changed"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:305
+msgid "Choose if you want to get an update notice if WP-Piwik is updated."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:466
+msgid "Donate"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:468
+msgid "If you like WP-Piwik, you can support its development by a donation:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:506
+msgid "My Amazon.de wishlist"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:509
+#: classes/WP_Piwik/Admin/Settings.php:556
+msgid "Please don't forget to vote the compatibility at the"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid "Thank you very much for your donation"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid "the Piwik team itself"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid ", and all people flattering this"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:541
+msgid ""
+"Graphs powered by <a href=\"http://www.jqplot.com/\">jqPlot</a> (License: "
+"GPL 2.0 and MIT) and <a "
+"href=\"http://omnipotent.net/jquery.sparkline/\">jQuery Sparklines</a> "
+"(License: New BSD License)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:542
+msgid "Metabox support inspired by"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:543
+msgid "Tabbed settings page suggested by the"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:544
+msgid "Thank you very much"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:544
+msgid "for your translation work"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:545
+msgid ""
+"Thank you very much, all users who send me mails containing criticism, "
+"commendation, feature requests and bug reports! You help me to make WP-Piwik"
+" much better."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:546
+msgid ""
+"Thank <strong>you</strong> for using my plugin. It is the best commendation "
+"if my piece of code is really used!"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:555
+msgid "The best place to get help:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:555
+msgid "WP-Piwik support forum"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:558
+msgid "Debugging"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:559
+msgid ""
+"Either allow_url_fopen has to be enabled <em>or</em> cURL has to be "
+"available:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:562
+msgid "cURL is"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:563
+#: classes/WP_Piwik/Admin/Settings.php:568
+msgid "not"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:564
+msgid "available"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:567
+msgid "allow_url_fopen is"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:569
+msgid "enabled"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "is used."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:573
+msgid "Determined Piwik base URL is"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:577
+msgid "Tools"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:579
+msgid "Run testscript"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:580
+msgid "Sitebrowser"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:581
+msgid "Clear cache"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:582
+msgid "Are you sure you want to clear all settings?"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:582
+msgid "Reset WP-Piwik"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:584
+msgid "Latest support threads on WordPress.org"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:635
+msgid "Settings cleared (except connection settings)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:651
+msgid "Cache cleared."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:17
+msgid "site"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:18
+msgid "sites"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:24
+msgid "No site configured yet."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:29
+msgid "Blog ID"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:30
+msgid "Title"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:31
+msgid "URL"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:32
+msgid "Site ID (Piwik)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:79
+msgid "Site not created yet."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Statistics.php:12
+msgid "Statistics"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Statistics.php:20
+msgid "Currently shown stats:"
+msgstr ""
+
+#: classes/WP_Piwik/Request/Php.php:27
+msgid "Could not resolve"
+msgstr ""
+
+#: classes/WP_Piwik/Request/Php.php:27
+msgid "realpath() returns false"
+msgstr ""
+
+#: classes/WP_Piwik/Request/Php.php:39
+msgid "Class Piwik\\FrontController does not exists."
+msgstr ""
+
+#: classes/WP_Piwik/Request/Php.php:42
+msgid "Class Piwik\\API\\Request does not exists."
+msgstr ""
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:10
+msgid "Piwik Custom Variables"
+msgstr ""
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
+msgid "Name"
+msgstr ""
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
+msgid "Value"
+msgstr ""
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
+msgid "Set custom variables for a page view"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:18
+msgid "Browser Details"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:37
+#: classes/WP_Piwik/Widget/Browsers.php:37
+#: classes/WP_Piwik/Widget/Chart.php:43
+#: classes/WP_Piwik/Widget/Noresult.php:23
+#: classes/WP_Piwik/Widget/Overview.php:24
+#: classes/WP_Piwik/Widget/Plugins.php:23 classes/WP_Piwik/Widget/Post.php:25
+#: classes/WP_Piwik/Widget/Screens.php:35
+#: classes/WP_Piwik/Widget/Search.php:23 classes/WP_Piwik/Widget/Seo.php:20
+#: classes/WP_Piwik/Widget/SystemDetails.php:33
+#: classes/WP_Piwik/Widget/Systems.php:33
+#: classes/WP_Piwik/Widget/Visitors.php:35 classes/WP_Piwik/Widget.php:91
+msgid "Piwik error"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+msgid "Browser"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+#: classes/WP_Piwik/Widget/Screens.php:37
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+#: classes/WP_Piwik/Widget/Visitors.php:57 classes/WP_Piwik/Widget.php:100
+msgid "Unique"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+#: classes/WP_Piwik/Widget/Plugins.php:25
+#: classes/WP_Piwik/Widget/Screens.php:37
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+msgid "Percent"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:66
+#: classes/WP_Piwik/Widget/Browsers.php:66
+#: classes/WP_Piwik/Widget/Screens.php:64
+#: classes/WP_Piwik/Widget/SystemDetails.php:62
+#: classes/WP_Piwik/Widget/Systems.php:62
+msgid "Others"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Browsers.php:18
+msgid "Browsers"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Chart.php:19
+#: classes/WP_Piwik/Widget/Overview.php:41 classes/WP_Piwik/Widget/Post.php:37
+#: classes/WP_Piwik/Widget/Visitors.php:17
+msgid "Visitors"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Chart.php:71
+msgid ""
+"The graph contains the values shown in the table below (visitors / unique / "
+"bounces). The red line show a linear trendline (unique)."
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Keywords.php:16
+msgid "Keywords"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Noresult.php:16
+#: classes/WP_Piwik/Widget/Search.php:16
+msgid "Site Search"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+msgid "Keyword"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+msgid "Requests"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Bounced"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Overview.php:17 classes/WP_Piwik/Widget/Post.php:18
+msgid "Overview"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Overview.php:42 classes/WP_Piwik/Widget/Post.php:38
+msgid "Unique visitors"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Overview.php:43 classes/WP_Piwik/Widget/Post.php:39
+msgid "Page views"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Overview.php:44 classes/WP_Piwik/Widget/Post.php:40
+msgid "Total time spent"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Overview.php:45 classes/WP_Piwik/Widget/Post.php:42
+msgid "Bounce count"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Overview.php:48 classes/WP_Piwik/Widget/Post.php:41
+msgid "Time/visit"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Overview.php:48
+msgid "Max. page views in one visit"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Overview.php:49 classes/WP_Piwik/Widget/Post.php:46
+msgid "Shortcut"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Pages.php:16
+msgid "Pages"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Plugins.php:16
+msgid "Plugins"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Plugins.php:25
+msgid "Plugin"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Plugins.php:25
+#: classes/WP_Piwik/Widget/Visitors.php:57 classes/WP_Piwik/Widget.php:102
+msgid "Visits"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Post.php:43
+msgid "Min. generation time"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Post.php:44
+msgid "Max. generation time"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Referrers.php:16
+msgid "Referrers"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Screens.php:16
+msgid "Resolutions"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Screens.php:37
+msgid "Resolution"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Seo.php:13
+msgid "SEO"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/SystemDetails.php:14
+msgid "Operation System Details"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+msgid "Operation System"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Systems.php:14
+msgid "Operation Systems"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Date"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Page Views"
+msgstr ""
+
+#: classes/WP_Piwik/Widget.php:104
+msgid "Hits"
+msgstr ""
+
+#: classes/WP_Piwik/Widget.php:106
+msgid "Actions"
+msgstr ""
+
+#: classes/WP_Piwik/Widget.php:162
+msgid "No data available."
+msgstr ""
+
+#: classes/WP_Piwik/Widget.php:293
+msgid "week"
+msgstr ""
+
+#: classes/WP_Piwik.php:193
+msgid "%s %s installed."
+msgstr ""
+
+#: classes/WP_Piwik.php:193
+msgid "Next you should connect to Piwik"
+msgstr ""
+
+#: classes/WP_Piwik.php:227
+msgid "%s updated to %s."
+msgstr ""
+
+#: classes/WP_Piwik.php:227
+msgid "Please validate your configuration"
+msgstr ""
+
+#: classes/WP_Piwik.php:259 classes/WP_Piwik.php:481
+msgid "Settings"
+msgstr ""
+
+#: classes/WP_Piwik.php:262
+msgid "Important"
+msgstr ""
+
+#: classes/WP_Piwik.php:343 classes/WP_Piwik.php:365
+msgid "Piwik Statistics"
+msgstr ""
+
+#: classes/WP_Piwik.php:453
+msgid "Configure WP-Piwik"
+msgstr ""
+
+#: classes/WP_Piwik.php:923
+msgid "An error occured"
+msgstr ""
+
+#: classes/WP_Piwik.php:1191
+msgid "Cheatin&#8217; uh?"
+msgstr ""
+
+#: wp-piwik.php:60
+msgid ""
+"WP-Piwik requires at least PHP 5.3. You are using the deprecated version %s."
+" Please update PHP to use WP-Piwik."
+msgstr ""
+
+#. Plugin Name of the plugin/theme
+msgid "WP-Piwik"
+msgstr ""
+
+#. Plugin URI of the plugin/theme
+msgid "http://wordpress.org/extend/plugins/wp-piwik/"
+msgstr ""
+
+#. Description of the plugin/theme
+msgid ""
+"Adds Piwik stats to your dashboard menu and Piwik code to your wordpress "
+"header."
+msgstr ""
+
+#. Author of the plugin/theme
+msgid "Andr&eacute; Br&auml;kling"
+msgstr ""
+
+#. Author URI of the plugin/theme
+msgid "http://www.braekling.de"
+msgstr ""
diff --git a/wp-content/plugins/wp-piwik/languages/wp-piwik-de_DE.mo b/wp-content/plugins/wp-piwik/languages/wp-piwik-de_DE.mo
index e4c598b6d12e088c3f017f052cee2018711bde99..7e2299b5cf4c669f7bbcfcf426b0966157f6d142 100755
Binary files a/wp-content/plugins/wp-piwik/languages/wp-piwik-de_DE.mo and b/wp-content/plugins/wp-piwik/languages/wp-piwik-de_DE.mo differ
diff --git a/wp-content/plugins/wp-piwik/languages/wp-piwik-de_DE.po b/wp-content/plugins/wp-piwik/languages/wp-piwik-de_DE.po
index d44ebb9f62a7e7c9973e1286ec97f19d1f803e60..bc0d2e7d556ff420c90bf2f1bcc31f5538e497b5 100755
--- a/wp-content/plugins/wp-piwik/languages/wp-piwik-de_DE.po
+++ b/wp-content/plugins/wp-piwik/languages/wp-piwik-de_DE.po
@@ -1,764 +1,1266 @@
-# Translation of the WordPress plugin WP-Piwik 0.8.0 by Andr&eacute; Br&auml;kling.
-# Copyright (C) 2010 Andr&eacute; Br&auml;kling
+# Copyright (C) 2015 WP-Piwik
 # This file is distributed under the same license as the WP-Piwik package.
-# Andr&eacute; Br&auml;kling <webmaster@braekling.de>, 2011.
-#
-#, fuzzy
+# Translators:
+# Andr&eacute; Br&auml;kling <webmaster@braekling.de>, 2011
+# André Bräkling, 2015
 msgid ""
 msgstr ""
-"Project-Id-Version: WP-Piwik 0.8.4\n"
-"Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-piwik\n"
-"POT-Creation-Date: 2010-07-19 18:06+0000\n"
-"PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"Project-Id-Version: WP-Piwik\n"
+"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-piwik\n"
+"POT-Creation-Date: 2015-07-22 10:25:29+00:00\n"
+"PO-Revision-Date: 2015-07-22 10:38+0000\n"
+"Last-Translator: André Bräkling\n"
+"Language-Team: German (Germany) (http://www.transifex.com/projects/p/wp-piwik/language/de_DE/)\n"
 "MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
+"Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Language: de_DE\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: dashboard/browsers.php:12 dashboard/browsers.php:33
-msgid "Browser"
-msgstr "Browser"
+#: classes/WP_Piwik/Admin/Settings.php:24
+msgid "Reload"
+msgstr "Neu laden"
 
-#: dashboard/browsers.php:22 dashboard/pages.php:43 dashboard/screens.php:22
-#: dashboard/systems.php:22
-msgid "Others"
-msgstr "Andere"
+#: classes/WP_Piwik/Admin/Settings.php:27
+msgid "Changes saved."
+msgstr "&Auml;nderungen gespeichert"
 
-#: dashboard/browsers.php:34 dashboard/keywords.php:17 dashboard/pages.php:22
-#: dashboard/screens.php:33 dashboard/systems.php:35 dashboard/visitors.php:53
-#: dashboard/websites.php:19 wp-piwik.php:305
-msgid "Unique"
-msgstr "Unique"
+#: classes/WP_Piwik/Admin/Settings.php:45
+msgid "Save Changes"
+msgstr "&Auml;nderungen speichern"
 
-#: dashboard/browsers.php:35 dashboard/plugins.php:33 dashboard/screens.php:34
-#: dashboard/systems.php:36
-msgid "Percent"
-msgstr "Prozent"
+#: classes/WP_Piwik/Admin/Settings.php:46
+msgid "Thanks for using WP-Piwik!"
+msgstr "Vielen Dank f&uuml;r die Verwendung von WP-Piwik!"
 
-#: dashboard/keywords.php:12
-msgid "Keywords"
-msgstr "Keywords"
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid "WP-Piwik %s is successfully connected to Piwik %s."
+msgstr "WP-Piwik %s wurde erfolgreich mit Piwik %s verbunden."
 
-#: dashboard/keywords.php:17
-msgid "Keyword"
-msgstr "Keyword"
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid "You are running WordPress %s."
+msgstr "Du verwendest WordPress %s."
 
-#: dashboard/overview.php:12
-msgid "Overview"
-msgstr "&Uuml;bersicht"
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid ""
+"You are running a WordPress %s blog network (WPMU). WP-Piwik will handle "
+"your sites as different websites."
+msgstr "Du verwendest ein WordPress %s Blog Netzwerk (WPMU). WP-Piwik wird Deine Seiten als unterschiedliche Webseiten behandeln."
 
-#: dashboard/overview.php:42 dashboard/visitors.php:24
-msgid "Visitors"
-msgstr "Besucher"
+#: classes/WP_Piwik/Admin/Settings.php:53
+msgid ""
+"WP-Piwik %s was not able to connect to Piwik using your configuration. Check"
+" the &raquo;Connect to Piwik&laquo; section below."
+msgstr "WP-Piwik %s konnte sich mit Deiner Konfiguration nicht mit Piwik verbinden. Bitte &uuml;berpr&uuml;fe die &raquo;Mit Piwik verbinden&laquo;-Sektion unten."
 
-#: dashboard/overview.php:43
-msgid "Unique visitors"
-msgstr "Eindeutige Besucher"
+#: classes/WP_Piwik/Admin/Settings.php:56
+msgid ""
+"WP-Piwik %s has to be connected to Piwik first. Check the &raquo;Connect to "
+"Piwik&laquo; section below."
+msgstr "WP-Piwik %s muss zun&auml;chst mit Piwik verbunden werden. Bitte &uuml;berpr&uuml;fe die &raquo;Mit Piwik verbinden&laquo;-Sektion unten."
 
-#: dashboard/overview.php:44
-msgid "Page views"
-msgstr "Page Views"
+#: classes/WP_Piwik/Admin/Settings.php:60
+msgid "Connect to Piwik"
+msgstr "Mit Piwik verbinden"
 
-#: dashboard/overview.php:45
-msgid "Max. page views in one visit"
-msgstr "Max. Seiten/Besuch"
+#: classes/WP_Piwik/Admin/Settings.php:65
+msgid "Show Statistics"
+msgstr "Zeige Statistiken"
 
-#: dashboard/overview.php:46
-msgid "Total time spent"
-msgstr "Verbrachte Zeit"
+#: classes/WP_Piwik/Admin/Settings.php:69
+msgid "Enable Tracking"
+msgstr "Aktiviere Tracking"
 
-msgid "Time/visit"
-msgstr "Zeit/Besuch"
+#: classes/WP_Piwik/Admin/Settings.php:74
+msgid "Expert Settings"
+msgstr "Expertenkonfiguration"
 
-#: dashboard/overview.php:47
-msgid "Bounce count"
-msgstr "Absprungrate"
+#: classes/WP_Piwik/Admin/Settings.php:78 classes/WP_Piwik.php:923
+msgid "Support"
+msgstr "Support"
 
-#: dashboard/overview.php:49 wp-piwik.php:563
-msgid "Shortcut"
-msgstr "Shortcut"
+#: classes/WP_Piwik/Admin/Settings.php:82
+msgid "Credits"
+msgstr "Danksagungen"
 
-#: dashboard/pages.php:13
-msgid "Pages"
-msgstr "Seiten"
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid ""
+"WP-Piwik is a WordPress plugin to show a selection of Piwik stats in your "
+"WordPress admin dashboard and to add and configure your Piwik tracking code."
+" To use this you will need your own Piwik instance. If you do not already "
+"have a Piwik setup, you have two simple options: use either"
+msgstr "WP-Piwik ist ein WordPress Plugin, um eine Auswahl von Piwik-Statistiken in Deinem WordPress Admin-Dashboard anzuzeigen, und um Deinen Piwik-Tracking-Code hinzuzufügen und zu konfigurieren. Um es zu verwenden, musst Du zunächst eine Piwik-Installation haben. Es gibt zwei M&ouml;glichkeiten: Betreibe Piwik entweder "
 
-#: dashboard/pages.php:21
-msgid "Page"
-msgstr "Seite"
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "Self-hosted"
+msgstr "selbst-gehostet"
 
-#: dashboard/pages.php:23 dashboard/plugins.php:32 dashboard/visitors.php:52
-msgid "Visits"
-msgstr "Besuche"
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "or"
+msgstr "oder"
 
-#: dashboard/plugins.php:12 dashboard/plugins.php:31
-msgid "Plugins"
-msgstr "Plugins"
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "Cloud-hosted"
+msgstr "in der Cloud"
 
-#: dashboard/screens.php:12 dashboard/screens.php:32
-msgid "Resolution"
-msgstr "Aufl&ouml;sung"
+#: classes/WP_Piwik/Admin/Settings.php:98
+msgid ""
+"Neither cURL nor fopen are available. So WP-Piwik can not use the HTTP API "
+"and not connect to Piwik Pro."
+msgstr "Weder cURL noch fopen ist verfügbar. Deswegen kann WP-Piwik die HTTP-API nicht verwenden und auch nicht zu Piwik Pro verbinden."
 
-#: dashboard/systems.php:12 dashboard/systems.php:34
-msgid "Operating System"
-msgstr "Betriebssystem"
+#: classes/WP_Piwik/Admin/Settings.php:98
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
+msgid "More information"
+msgstr "Weitere Informationen"
 
-#: dashboard/visitors.php:51
-msgid "Date"
-msgstr "Datum"
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid "You can choose between three connection methods:"
+msgstr "Du kannst zwischen drei Verbindungsmöglichkeiten wählen:"
 
-#: dashboard/visitors.php:54
-msgid "Bounced"
-msgstr "Abspr&uuml;nge"
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:103
+msgid "Self-hosted (HTTP API, default)"
+msgstr "Selbst-gehostet (HTTP API, Standard)"
 
-#: dashboard/visitors.php:67
-msgid "Unique TOTAL"
-msgstr "Unique GESAMT"
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"This is the default option for a self-hosted Piwik and should work for most "
+"configurations. WP-Piwik will connect to Piwik using http(s)."
+msgstr "Dies ist die Standard-Einstellung für ein selbst-gehostetes Piwik und sollte in den meisten Konfigurationen funktionieren. WP-Piwik verbindet sich mit Piwik &uuml;ber http(s)."
 
-#: dashboard/visitors.php:67
-msgid "Sum"
-msgstr "Summe"
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:104
+msgid "Self-hosted (PHP API)"
+msgstr "Selbst-gehostet (PHP API)"
 
-#: dashboard/visitors.php:67
-msgid "Avg"
-msgstr "Durchschnitt"
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"Choose this, if your self-hosted Piwik and WordPress are running on the same"
+" machine and you know the full server path to your Piwik instance."
+msgstr "W&auml;hle diese Option, wenn Dein selbst-gehostetes Piwik und WordPress auf dem gleichen Server laufen und Du den vollen Serverpfad zu Deiner Piwik-Installation kennst."
 
-#: dashboard/websites.php:12
-msgid "Websites"
-msgstr "Webseiten"
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:105
+msgid "Cloud-hosted (Piwik Pro)"
+msgstr "In der Cloud (Piwik Pro)"
 
-#: dashboard/websites.php:18
-msgid "Website"
-msgstr "Webseite"
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"If you are using a cloud-hosted Piwik by Piwik Pro, you can simply use this "
+"option."
+msgstr "Wenn Du ein Piwik in der Cloud von Piwik Pro verwendest, kannst Du einfach diese Option w&auml;hlen."
 
-#: wp-piwik.php:110 wp-piwik.php:365
-msgid "Piwik Statistics"
-msgstr "Piwik Statistiken"
+#: classes/WP_Piwik/Admin/Settings.php:101
+msgid "Piwik Mode"
+msgstr "Piwik-Modus"
 
-#. #-#-#-#-#  plugin.pot (WP-Piwik 0.8.0)  #-#-#-#-#
-#. Plugin Name of the plugin/theme
-#: wp-piwik.php:111 wp-piwik.php:122 wp-piwik.php:123 wp-piwik.php:146
-msgid "WP-Piwik"
-msgstr "WP-Piwik"
+#: classes/WP_Piwik/Admin/Settings.php:102
+msgid "Disabled (WP-Piwik will not connect to Piwik)"
+msgstr "Deaktiviert (WP-Piwik wird sich nicht mit Piwik verbinden)"
 
-#: wp-piwik.php:130 wp-piwik.php:131
-msgid "WPMU-Piwik"
-msgstr "WPMU-Piwik"
+#: classes/WP_Piwik/Admin/Settings.php:108
+msgid "Piwik URL"
+msgstr "Piwik URL"
 
-#: wp-piwik.php:142 wp-piwik.php:557
-msgid "yesterday"
-msgstr "gestern"
+#: classes/WP_Piwik/Admin/Settings.php:108
+msgid ""
+"Enter your Piwik URL. This is the same URL you use to access your Piwik "
+"instance, e.g. http://www.example.com/piwik/."
+msgstr "Gebe Deine Piwik-URL ein. Es handelt sich um die gleiche URL, die Du auch verwendest, um Dein Piwik zu &ouml;ffnen, z.B. http://www.example.com/piwik/."
 
-#: wp-piwik.php:143 wp-piwik.php:558
-msgid "today"
-msgstr "heute"
+#: classes/WP_Piwik/Admin/Settings.php:109
+msgid "Piwik path"
+msgstr "Piwik Pfad"
 
-#: wp-piwik.php:144 wp-piwik.php:559
-msgid "last30"
-msgstr "letzte 30 Tage"
+#: classes/WP_Piwik/Admin/Settings.php:109
+msgid "Enter the file path to your Piwik instance, e.g. /var/www/piwik/."
+msgstr "Gib den Dateipfad zu Deiner Piwik-Installation an, z.B. /var/www/piwik/."
 
-#: wp-piwik.php:144 wp-piwik.php:559
-msgid "last 30 days"
-msgstr "letzte 30 Tage"
+#: classes/WP_Piwik/Admin/Settings.php:110
+msgid "Piwik user"
+msgstr "Piwik-Benutzer"
 
-#: wp-piwik.php:179
-msgid "Settings"
-msgstr "Einstellungen"
+#: classes/WP_Piwik/Admin/Settings.php:110
+msgid ""
+"Enter your Piwik Pro username. It is also part of your URL: "
+"http://USERNAME.piwik.pro."
+msgstr "Gib hier Deinen Piwik Pro Benutzernamen an. Er ist auch Teil Deiner URL: http://USERNAME.piwik.pro."
 
-#: wp-piwik.php:381
-msgid "Change"
-msgstr "&Auml;ndern"
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid "Auth token"
+msgstr "Auth Token"
 
-#: wp-piwik.php:382
-msgid "Currently shown stats:"
-msgstr "Derzeit gezeigte Statistiken:"
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid ""
+"Enter your Piwik auth token here. It is an alphanumerical code like "
+"0a1b2c34d56e78901fa2bc3d45678efa."
+msgstr "Gib hier Dein Piwik Auth Token an. Es ist ein alphanumerische Code wie 0a1b2c34d56e78901fa2bc3d45678efa."
 
-#: wp-piwik.php:383
-msgid "Current shown stats: <strong>Overall</strong>"
-msgstr "Derzeit gezeigte Statistiken: <strong>Gesamt</strong>"
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid "See %sWP-Piwik FAQ%s."
+msgstr "Siehe %sdie WP-Piwik FAQ%s"
 
-#: wp-piwik.php:448
-msgid "WP-Piwik Settings"
-msgstr ""
+#: classes/WP_Piwik/Admin/Settings.php:116
+msgid "Auto config"
+msgstr "Auto-Konfiguration"
 
-#: wp-piwik.php:455 wp-piwik.php:617
-msgid "Account settings"
-msgstr "Account-Einstellungen"
+#: classes/WP_Piwik/Admin/Settings.php:116
+msgid ""
+"Check this to automatically choose your blog from your Piwik sites by URL. "
+"If your blog is not added to Piwik yet, WP-Piwik will add a new site."
+msgstr "Aktiviere diesen Haken, um Dein Blog &uuml;ber seine URL automatisch aus Deinen Piwik-Seiten auszuw&auml;hlen. Wenn Dein Blog bisher nicht zu Piwik hinzugef&uuml;gt wurde, wird WP-Piwik eine neue Seite hinzuf&uuml;gen."
 
-#: wp-piwik.php:457 wp-piwik.php:619
-msgid "Piwik URL"
-msgstr "Piwik URL"
+#: classes/WP_Piwik/Admin/Settings.php:127
+msgid "Determined site"
+msgstr "Ermittelte Seite"
 
-#: wp-piwik.php:461 wp-piwik.php:623
-msgid "Auth token"
-msgstr "Auth Token"
+#: classes/WP_Piwik/Admin/Settings.php:132
+msgid "Select site"
+msgstr "W&auml;hle die Seite"
+
+#: classes/WP_Piwik/Admin/Settings.php:140
+msgid "Piwik default date"
+msgstr "Piwik Standard-Datum"
+
+#: classes/WP_Piwik/Admin/Settings.php:141
+#: classes/WP_Piwik/Admin/Settings.php:154
+msgid "Today"
+msgstr "Heute"
+
+#: classes/WP_Piwik/Admin/Settings.php:142
+#: classes/WP_Piwik/Admin/Settings.php:153
+msgid "Yesterday"
+msgstr "Gestern"
+
+#: classes/WP_Piwik/Admin/Settings.php:143
+msgid "Current month"
+msgstr "Aktueller Monat"
+
+#: classes/WP_Piwik/Admin/Settings.php:144
+msgid "Last month"
+msgstr "Letzter Monat"
+
+#: classes/WP_Piwik/Admin/Settings.php:145
+msgid "Current week"
+msgstr "Aktuelle Woche"
+
+#: classes/WP_Piwik/Admin/Settings.php:146
+msgid "Last week"
+msgstr "Letzte Woche"
+
+#: classes/WP_Piwik/Admin/Settings.php:147
+msgid "Default date shown on statistics page."
+msgstr "Default-Datum, das auf der Statistik-Seite gezeigt wird."
+
+#: classes/WP_Piwik/Admin/Settings.php:149
+msgid "Show SEO data"
+msgstr "Zeige SEO-Daten"
+
+#: classes/WP_Piwik/Admin/Settings.php:149
+msgid "Display SEO ranking data on statistics page."
+msgstr "Zeige SEO-Ranking-Daten auf der Statistiken-Seite."
+
+#: classes/WP_Piwik/Admin/Settings.php:149
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Slow!"
+msgstr "Langsam!"
+
+#: classes/WP_Piwik/Admin/Settings.php:151
+msgid "Dashboard overview"
+msgstr "Dashboard Übersicht"
+
+#: classes/WP_Piwik/Admin/Settings.php:152
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:192
+#: classes/WP_Piwik/Admin/Settings.php:213
+#: classes/WP_Piwik/Admin/Settings.php:304
+msgid "Disabled"
+msgstr "Deaktiviert"
+
+#: classes/WP_Piwik/Admin/Settings.php:155
+msgid "Last 30 days"
+msgstr "Letzte 30 Tage"
+
+#: classes/WP_Piwik/Admin/Settings.php:156
+msgid "Enable WP-Piwik dashboard widget &quot;Overview&quot;."
+msgstr "Aktiviere das WP-Piwik Dashboard Widget &quot;Übersicht&quot;."
+
+#: classes/WP_Piwik/Admin/Settings.php:158
+msgid "Dashboard graph"
+msgstr "Dashboard-Graph"
+
+#: classes/WP_Piwik/Admin/Settings.php:158
+msgid "Enable WP-Piwik dashboard widget &quot;Graph&quot;."
+msgstr "Aktiviere das WP-Piwik Dashboard Widget &quot;Graph&quot;."
+
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Dashboard SEO"
+msgstr "Dashboard SEO"
+
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Enable WP-Piwik dashboard widget &quot;SEO&quot;."
+msgstr "Aktiviere das WP-Piwik Dashboard Widget &quot;SEO&quot;."
+
+#: classes/WP_Piwik/Admin/Settings.php:162
+msgid "Show graph on WordPress Toolbar"
+msgstr "Zeige einen Graphen in der WordPress Toolbar"
+
+#: classes/WP_Piwik/Admin/Settings.php:162
+msgid "Display a last 30 days visitor graph on WordPress' toolbar."
+msgstr "Zeige einen Besuchergraph der letzten 30 Tage in der WordPress' Toolbar."
+
+#: classes/WP_Piwik/Admin/Settings.php:164
+msgid "Display stats to"
+msgstr "Zeige Statistiken für"
+
+#: classes/WP_Piwik/Admin/Settings.php:171
+msgid "Choose user roles allowed to see the statistics page."
+msgstr "W&auml;hle diejenigen Nutzerrollen, die sich die Statistiken ansehen d&uuml;rfen."
+
+#: classes/WP_Piwik/Admin/Settings.php:173
+msgid "Show per post stats"
+msgstr "Zeige Beitrags-Statistiken"
+
+#: classes/WP_Piwik/Admin/Settings.php:173
+msgid "Show stats about single posts at the post edit admin page."
+msgstr "Zeige Statistiken zu einzelnen Beitr&auml;gen auf der Bearbeiten-Seite."
+
+#: classes/WP_Piwik/Admin/Settings.php:175
+msgid "Piwik shortcut"
+msgstr "Piwik-Verlinkung"
+
+#: classes/WP_Piwik/Admin/Settings.php:175
+msgid "Display a shortcut to Piwik itself."
+msgstr "Zeigt einen Shortcut zu Piwik an."
+
+#: classes/WP_Piwik/Admin/Settings.php:177
+msgid "WP-Piwik display name"
+msgstr "Anzeigename f&uuml;r WP-Piwik"
+
+#: classes/WP_Piwik/Admin/Settings.php:177
+msgid "Plugin name shown in WordPress."
+msgstr "Der Name, mit dem das Plugin in WordPress angezeigt wird."
+
+#: classes/WP_Piwik/Admin/Settings.php:179
+msgid "Enable shortcodes"
+msgstr "Aktiviere Shortcodes"
+
+#: classes/WP_Piwik/Admin/Settings.php:179
+msgid "Enable shortcodes in post or page content."
+msgstr "Aktiviere Shortcodes innerhalb von Artikeln und Seiten."
 
-#: wp-piwik.php:467 wp-piwik.php:628
-msgid "To enable Piwik statistics, please enter your Piwik"
-" base URL (like http://mydomain.com/piwik) and your"
-" personal authentification token. You can get the token"
-" on the API page inside your Piwik interface. It looks"
-" like &quot;1234a5cd6789e0a12345b678cd9012ef&quot;."
-msgstr "Um Piwik Statistiken abrufen zu können, musst Du die URL zu Deiner Piwik-Installation (z.B. http://mydomain.com/piwik) und deinen persönlichen Authentifizierungs-Schüssel (Token) angeben. Du findest den Token auf der API-Seite in Deinem Piwik-Interface. Er sieht z.B. so aus: &quot;1234a5cd6789e0a12345b678cd9012ef&quot;."
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "You can choose between four tracking code modes:"
+msgstr "Du kannst zwischen vier Tracking-Code-Varianten wählen:"
 
-#: wp-piwik.php:477
+#: classes/WP_Piwik/Admin/Settings.php:190
 msgid ""
-"<strong>Important note:</strong> If you do not host this blog on your own, "
-"your site admin is able to get your auth token from the database. So he is "
-"able to access your statistics. You should never use an auth token with more "
-"than simple view access!"
-msgstr "<strong>Wichtiger Hinweis:</strong> Wenn Du dieses Blog nicht selber hostest, kann Dein Site Admin Deinen Auth Token aus der Datenbank auslesen. Dadurch kann er auf Deine Statistiken zugreifen. Du solltest niemals einen Auth Token mit mehr als einfachen View-Rechten verwenden! "
+"WP-Piwik will not add the tracking code. Use this, if you want to add the "
+"tracking code to your template files or you use another plugin to add the "
+"tracking code."
+msgstr "WP-Piwik wird den Tracking-Code nicht hinzuf&uuml;gen. Benutze dies, wenn Du den Tracking-Code direkt in Deinem Template oder &uuml;ber ein anderes Plugin einfügen willst."
 
-#: wp-piwik.php:485 wp-piwik.php:489
-msgid "An error occured"
-msgstr "Ein Fehler ist aufgetreten"
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:193
+msgid "Default tracking"
+msgstr "Standard-Tracking"
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "WP-Piwik will use Piwik's standard tracking code."
+msgstr "WP-Piwik verwendet den Standard Tracking-Code von Piwik."
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:194
+msgid "Use js/index.php"
+msgstr "Nutze js/index.php"
 
-#: wp-piwik.php:486
+#: classes/WP_Piwik/Admin/Settings.php:190
 msgid ""
-"Please check URL and auth token. You need at least view access to one site."
-msgstr "Bitte &uuml;berpr&uuml;fe die URL und den auth token. Du ben&ouml;tigst zumindest View-Zugriff auf eine Seite."
+"You can choose this tracking code, to deliver a minified proxy code and to "
+"avoid using the files called piwik.js or piwik.php."
+msgstr "Du kannst diesen Tracking-Code w&auml;hlen, um einen minimierten Proxy-Code auszuliefern und dabei zu vermeiden, dass die Dateien mit dem Namen piwik.js oder piwik.php verwendet werden."
 
-#: wp-piwik.php:492
-msgid "Choose site"
-msgstr "Seite"
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "See %sreadme file%s."
+msgstr "Siehe %sReadme-Datei%s."
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:195
+msgid "Use proxy script"
+msgstr "Verwende Proxy-Skript"
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "Use this tracking code to not reveal the Piwik server URL."
+msgstr "Verwende diesen Tracking-Code, um die URL zu Deinem Piwik-Sever nicht offenzulegen."
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:210
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid "See %sPiwik FAQ%s."
+msgstr "Siehe %sPiwik FAQ%s."
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:196
+msgid "Enter manually"
+msgstr "Manuelle Eingabe"
 
-#: wp-piwik.php:511 wp-piwik.php:547 wp-piwik.php:584 wp-piwik.php:658
-msgid "Save settings"
-msgstr "Einstellungen speichern"
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"Enter your own tracking code manually. You can choose one of the prior "
+"options, pre-configure your tracking code and switch to manually editing at "
+"last."
+msgstr "Gebe manuell Deinen eigenen Tracking-Code ein. Du kannst eine der vorhergehenden Optionen nutzen, Deinen Tracking-Code vorkonfigurieren und abschlie&szlig;end auf die manuelle Bearbeitung wechseln."
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "Use the placeholder {ID} to add the Piwik site ID."
+msgstr "Verwende den Platzhalter {ID}, um Piwiks Site-ID einzuf&uuml;gen."
+
+#: classes/WP_Piwik/Admin/Settings.php:191
+msgid "Add tracking code"
+msgstr "Tracking-Code einf&uuml;gen"
+
+#: classes/WP_Piwik/Admin/Settings.php:199
+msgid "Tracking code"
+msgstr "Tracking-Code"
 
-#: wp-piwik.php:515 wp-piwik.php:643
-msgid "Tracking settings"
-msgstr "Tracking-Einstellungen"
+#: classes/WP_Piwik/Admin/Settings.php:201
+msgid "JavaScript code position"
+msgstr "Position des JavaScript-Codes"
 
-#: wp-piwik.php:521
-msgid "Add script"
-msgstr "Tracking"
+#: classes/WP_Piwik/Admin/Settings.php:202
+msgid "Footer"
+msgstr "Fußbereich"
 
-#: wp-piwik.php:525
-msgid "If your template uses wp_footer(), WP-Piwik can automatically add the Piwik javascript code to your blog."
-msgstr "Wenn Dein Template wp_footer() verwendet, kann WP-Piwik den JavaScript Code automatisch in Dein Blog einf&uuml;gen."
+#: classes/WP_Piwik/Admin/Settings.php:203
+msgid "Header"
+msgstr "Kopfbereich"
 
-#: wp-piwik.php:528
+#: classes/WP_Piwik/Admin/Settings.php:204
+msgid ""
+"Choose whether the JavaScript code is added to the footer or the header."
+msgstr "W&auml;hle, ob der JavaScript-Code im Footer oder im Header eingef&uuml;gt werden soll."
+
+#: classes/WP_Piwik/Admin/Settings.php:206
+msgid "Noscript code"
+msgstr "Noscript-Code"
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+msgid "Add &lt;noscript&gt;"
+msgstr "F&uuml;ge &lt;noscript&gt; hinzu"
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+msgid "Adds the &lt;noscript&gt; code to your footer."
+msgstr "F&uuml;gt den &lt;noscript&gt;-Code im Footer ein."
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Disabled in proxy mode."
+msgstr "Im Proxy-Modus deaktiviert."
+
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Add rec parameter to noscript code"
+msgstr "F&uuml;ge rec-Parameter zum noscript Code hinzu"
+
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Enable tracking for visitors without JavaScript (not recommended)."
+msgstr "Aktiviere das Tracking für Besucher ohne JavaScript (nicht empfohlen)."
+
+#: classes/WP_Piwik/Admin/Settings.php:212
+msgid "Enable content tracking"
+msgstr "Aktiviere Content-Tracking"
+
+#: classes/WP_Piwik/Admin/Settings.php:214
+msgid "Track all content blocks"
+msgstr "Tracke alle Content-Bereiche"
+
+#: classes/WP_Piwik/Admin/Settings.php:215
+msgid "Track only visible content blocks"
+msgstr "Tracke nur sichtbare Content-Bereiche"
+
+#: classes/WP_Piwik/Admin/Settings.php:216
+msgid ""
+"Content tracking allows you to track interaction with the content of a web "
+"page or application."
+msgstr "Das Content-Tracking erlaubt es Dir, Interaktionen mit dem Inhalt einer Webseite oder -anwendung zu tracken."
+
+#: classes/WP_Piwik/Admin/Settings.php:216
+#: classes/WP_Piwik/Admin/Settings.php:218
+#: classes/WP_Piwik/Admin/Settings.php:222
+#: classes/WP_Piwik/Admin/Settings.php:224
+#: classes/WP_Piwik/Admin/Settings.php:226
+#: classes/WP_Piwik/Admin/Settings.php:247
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "See %sPiwik documentation%s."
+msgstr "Siehe %sPiwik-Dokumentation%s."
+
+#: classes/WP_Piwik/Admin/Settings.php:218
+msgid "Track search"
+msgstr "Tracke Suchanfragen"
+
+#: classes/WP_Piwik/Admin/Settings.php:218
+msgid "Use Piwik's advanced Site Search Analytics feature."
+msgstr "Nutze Piwiks Site Search Funktion, um interne Suchen zu tracken."
+
+#: classes/WP_Piwik/Admin/Settings.php:220
 msgid "Track 404"
 msgstr "404-Tracking"
 
-#: wp-piwik.php:532
-msgid "WP-Piwik can automatically add a 404-category to track 404-page-visits."
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid ""
+"WP-Piwik can automatically add a 404-category to track 404-page-visits."
 msgstr "WP-Piwik kann automatisch eine eigene Kategorie f&uuml;r 404-Seiten hinzuf&uuml;gen."
 
-#: wp-piwik.php:536 wp-piwik.php:644
-msgid "Tracking filter"
-msgstr "Tracking-Filter"
+#: classes/WP_Piwik/Admin/Settings.php:222
+msgid "Add annotation on new post"
+msgstr "Notiz bei neuem Post"
 
-msgid "Choose users by user role you do <strong>not</strong> want to track."
-msgstr "W&auml;hle diejenigen Nutzerrollen, die Du <strong>nicht</strong> erfassen willst."
+#: classes/WP_Piwik/Admin/Settings.php:222
+msgid "Add a Piwik annotation on each new post."
+msgstr "F&uuml;ge eine Piwik-Notiz bei jedem neuen Post hinzu."
 
-msgid "Choose users by user role you do <strong>not</strong> want to track. Requires enabled &quot;Add script&quot;-functionality."
-msgstr "W&auml;hle diejenigen Nutzerrollen, die Du <strong>nicht</strong> erfassen willst. Dazu muss die &quot;Tracking&quot;-Funktion aktiviert sein."
+#: classes/WP_Piwik/Admin/Settings.php:224
+msgid "Show custom variables box"
+msgstr "Zeige Custom-Variables-Box"
 
-#: wp-piwik.php:551
-msgid "Statistic view settings"
-msgstr "Statistik-Einstellungen"
+#: classes/WP_Piwik/Admin/Settings.php:224
+msgid " Show a &quot;custom variables&quot; edit box on post edit page."
+msgstr "Zeige eine Eingabebox für &quot;custom variables&quot; auf der Seite zum Bearbeiten von Posts."
 
-#: wp-piwik.php:554
-msgid "Dashboard"
-msgstr "Dashboard"
+#: classes/WP_Piwik/Admin/Settings.php:226
+msgid "Add new file types for download tracking"
+msgstr "F&uuml;ge weitere Dateitypen f&uuml;r das Download-Tracking hinzu."
 
-#: wp-piwik.php:556
-msgid "No"
-msgstr "Nein"
+#: classes/WP_Piwik/Admin/Settings.php:226
+msgid ""
+"Add file extensions for download tracking, divided by a vertical bar "
+"(&#124;)."
+msgstr "F&uuml;ge Dateierweiterung zum Download-Tracking hinzu. Trenne mehrere Erweiterung durch einen senkrechten Strich (&#124;)."
 
-#: wp-piwik.php:557 wp-piwik.php:558 wp-piwik.php:559
-msgid "Yes"
-msgstr "Ja"
+#: classes/WP_Piwik/Admin/Settings.php:228
+msgid "Disable cookies"
+msgstr "Cookies deaktivieren"
 
-#: wp-piwik.php:562
-msgid "Display a dashboard widget to your WordPress dashboard."
-msgstr "F&uuml;gt Deinem WordPress Dashboard ein Widget hinzu."
+#: classes/WP_Piwik/Admin/Settings.php:228
+msgid "Disable all tracking cookies for a visitor."
+msgstr "Schalte alle Tracking-Cookies f&uuml;r Besucher ab."
 
-#: wp-piwik.php:567
-msgid "Display a shortcut to Piwik itself."
-msgstr "Zeigt einen Shortcut zu Piwik an."
+#: classes/WP_Piwik/Admin/Settings.php:230
+msgid "Limit cookie lifetime"
+msgstr "Cookie-Lebensdauer beschr&auml;nken"
 
-#: wp-piwik.php:568
-msgid "Display to"
-msgstr "Anzeigen f&uuml;r"
+#: classes/WP_Piwik/Admin/Settings.php:230
+msgid ""
+"You can limit the cookie lifetime to avoid tracking your users over a longer"
+" period as necessary."
+msgstr "Du kannst die Cookie-Lebenszeit begrenzen, um Deine Besucher nicht länger als notwendig zu tracken."
 
-#: wp-piwik.php:579
-msgid "Choose user roles allowed to see the statistics page."
-msgstr "W&auml;hle diejenigen Nutzerrollen, die sich die Statistiken ansehen d&uuml;rfen."
+#: classes/WP_Piwik/Admin/Settings.php:232
+msgid "Visitor timeout (seconds)"
+msgstr "Besucher-Timeout (Sekunden)"
 
-#: wp-piwik.php:612
-msgid "WPMU-Piwik Settings"
-msgstr "WPMU-Piwik Einstellungen"
-
-#: wp-piwik.php:636
-msgid ""
-"<strong>Important note:</strong> You have to choose a token which provides "
-"administration access. WPMU-Piwik will create new Piwik sites for each blog "
-"if it is shown the first time and it is not added yet. All users can access "
-"their own statistics only, while site admins can access all statistics. To "
-"avoid conflicts, you should use a clean Piwik installation without other "
-"sites added. The provided themes should use wp_footer, because it adds the "
-"Piwik javascript code to each page."
-msgstr "<strong>Wichtiger Hinweis:</strong> Du solltest einen Token mit Adminstrator-Zugang angeben. WPMU-Piwik erstellt "
-"f&uuml;r jedes Blog eine eigene Piwik Site, sobald es zum ersten Mal angezeigt wird. Nutzer k&ouml;nnen nur ihre eigenen "
-"Statistiken einsehen, w&auml;hrend Site Admins Zugriff auf alle Statistiken haben. Um Konflikte zu vermeiden, solltest Du "
-"eine neue Piwik-Installation ohne andere Sites verwenden. Alle verwendeten Themes sollten wp_footer benutzen, da diese "
-"Funktion den Piwik JavaScript Code zu jeder Seite hinzuf&uuml;gt."
-
-#: wp-piwik.php:671
-msgid "If you like WP-Piwik, you can support its development by a donation:"
-msgstr "Wenn Dir WP-Piwik gef&auml;llt, kannst Du die weitere Entwicklung mit einer Spende f&ouml;rdern:"
+#: classes/WP_Piwik/Admin/Settings.php:234
+msgid "Session timeout (seconds)"
+msgstr "Session-Timeout (Sekunden)"
 
-#: wp-piwik.php:687
-msgid "My Amazon.de wishlist (German)"
-msgstr "Meine Amazon.de Wunschliste (Deutsch)"
+#: classes/WP_Piwik/Admin/Settings.php:236
+msgid "Referral timeout (seconds)"
+msgstr "Referral-Timeout (Sekunden)"
 
-#. Plugin URI of the plugin/theme
-msgid "http://www.braekling.de/wp-piwik-wpmu-piwik-wordpress/"
-msgstr "http://www.braekling.de/wp-piwik-wpmu-piwik-wordpress/"
+#: classes/WP_Piwik/Admin/Settings.php:238
+msgid "Track admin pages"
+msgstr "Admin-Seiten tracken"
 
-#. Description of the plugin/theme
+#: classes/WP_Piwik/Admin/Settings.php:238
 msgid ""
-"Adds Piwik stats to your dashboard menu and Piwik code to your wordpress "
-"footer."
-msgstr "F&uuml;gt Piwik-Statistiken zu Deinem Dashboard-Men&uuml; hinzu und "
-"kann den Piwik-Tracking-Code in den Blog-Footer einf&uuml;gen."
+"Enable to track users on admin pages (remember to configure the tracking "
+"filter appropriately)."
+msgstr "Aktivieren, um Nutzer auf Admin-Seiten zu z&auml;hlen (bitte den Tracking Filter entsprechend konfigurieren)."
 
-#. Author of the plugin/theme
-msgid "Andr&eacute; Br&auml;kling"
-msgstr "Andr&eacute; Br&auml;kling"
+#: classes/WP_Piwik/Admin/Settings.php:241
+msgid "Tracking filter"
+msgstr "Tracking-Filter"
 
-#. Author URI of the plugin/theme
-msgid "http://www.braekling.de"
-msgstr "http://www.braekling.de"
+#: classes/WP_Piwik/Admin/Settings.php:245
+msgid "Choose users by user role you do <strong>not</strong> want to track."
+msgstr "W&auml;hle diejenigen Nutzerrollen, die Du <strong>nicht</strong> erfassen willst."
 
-msgid "Credits"
-msgstr "Danksagungen"
+#: classes/WP_Piwik/Admin/Settings.php:247
+msgid "Track subdomains in the same website"
+msgstr "Tracke Subdomains innerhalb der gleichen Webseite"
 
-msgid "Thank you very much for your donation"
-msgstr "Vielen Dank f&uuml;r eure Spenden"
+#: classes/WP_Piwik/Admin/Settings.php:247
+msgid "Adds *.-prefix to cookie domain."
+msgstr "F&uuml;gt ein *.-Pr&auml;fix zur Cookie Domain hinzu."
 
-msgid "and all people flattering this"
-msgstr "und alle Nutzern, die bei Flatter klicken"
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "Do not count subdomains as outlink"
+msgstr "Werte Subdomains nicht als ausgehenden Link"
 
-msgid "Graphs powered by <a href=\"http://www.jqplot.com/\">jqPlot</a>, an open source project by Chris Leonello. Give it a try! (License: GPL 2.0 and MIT)"
-msgstr "Die Graphen werden mit <a href=\"http://www.jqplot.com/\">jqPlot</a> erstellt, einem Open-Source-Projekt von Chris Leonello. Probiere es mal aus! (Lizenz: GPL 2.0 und MIT)"
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "Adds *.-prefix to tracked domain."
+msgstr "F&uuml;gt ein *.-Pr&auml;fix zur getrackten Domain hinzu."
 
-msgid "Thank you very much"
-msgstr "Vielen Dank"
+#: classes/WP_Piwik/Admin/Settings.php:251
+msgid "Track RSS feeds"
+msgstr "Tracke RSS-Feeds"
 
-msgid ", and"
-msgstr " und"
+#: classes/WP_Piwik/Admin/Settings.php:251
+msgid "Enable to track posts in feeds via tracking pixel."
+msgstr "Aktivieren, um Beir&auml;ge im Feed via Tracking-Pixel zu z&auml;hlen."
 
-msgid "for your translation work"
-msgstr "f&uuml;r eure &Uuml;bersetzungsarbeit"
+#: classes/WP_Piwik/Admin/Settings.php:253
+msgid "Track RSS feed links as campaign"
+msgstr "Links in RSS-Feeds als Kampagne tracken"
 
-msgid "Thank you very much, all users who send me mails containing criticism, commendation, feature requests and bug reports! You help me to make WP-Piwik much better."
-msgstr "Vielen Dank an alle Nutzer, die mir Mails mit Kritik, Lob, Featurew&uuml;nsche und Bugmeldungen senden. Ihr helft mir dabei, WP-Piwik viel besser zu machen."
+#: classes/WP_Piwik/Admin/Settings.php:255
+msgid "RSS feed campaign"
+msgstr "RSS-Feed Kampagne"
 
-msgid "Thank <strong>you</strong> for using my plugin. It is the best commendation if my piece of code is really used!"
-msgstr "Vielen Dank an <strong>Dich</strong> f&uuml;r die Nutzung meines Plugins. Es ist das gr&ouml;&szlig;te Lob, wenn mein Code tats&auml;chlich benutzt wird!"
+#: classes/WP_Piwik/Admin/Settings.php:255
+msgid "Keyword: post name."
+msgstr "Schl&uuml;sselwort: Name des Beitrags."
 
-msgid "Changes saved"
-msgstr "&Auml;nderungen gespeichert"
+#: classes/WP_Piwik/Admin/Settings.php:257
+msgid "Enable heartbeat timer"
+msgstr "Aktiviere Heartbeat-Timer"
 
-msgid "installed"
-msgstr "installiert"
+#: classes/WP_Piwik/Admin/Settings.php:257
+msgid ""
+"Enable a heartbeat timer to get more accurate visit lengths by sending "
+"periodical HTTP ping requests as long as the site is opened. Enter the time "
+"between the pings in seconds (Piwik default: 15) to enable or 0 to disable "
+"this feature. <strong>Note:</strong> This will cause a lot of additional "
+"HTTP requests on your site."
+msgstr "Aktiviere den Heratbeat-Timer, um genauere Besuchszeiten zu erhalten, indem HTTP-Ping-Anfragen gesendet werden, solange die Seite geöffnet ist. Gib den Zeitabstand zwischen den Ping-Anfragen in Sekunden (Piwik-Default: 15) an oder trage 0 zum deaktivieren ein. <strong>Hinweis:</strong> Dadurch entsteht eine Vielzahl zusätzlicher HTTP-Anfragen an Deine Seite."
+
+#: classes/WP_Piwik/Admin/Settings.php:262
+msgid ""
+"Usually, you do not need to change these settings. If you want to do so, you"
+" should know what you do or you got an expert's advice."
+msgstr "Normalerweise solltest Du diese Einstellungen nicht ändern müssen. Solltest Du hier doch etwas ändern wollen, solltest Du wissen was Du tust oder dies auf Anleitung eines Experten tun."
 
-msgid "Next you should connect to Piwik"
-msgstr "Als n&auml;chstes solltest Du eine Verbindung zu Piwik herstellen"
+#: classes/WP_Piwik/Admin/Settings.php:264
+msgid "Enable cache"
+msgstr "Cache einschalten"
 
-msgid "Please validate your configuration"
-msgstr "Bitte &uuml;berpr&uuml;fe Deine Konfiguration"
+#: classes/WP_Piwik/Admin/Settings.php:264
+msgid "Cache API calls, which not contain today's values, for a week."
+msgstr "Cache API-Anfragen, die keine heutigen Werte enthalten, für eine Woche."
 
-msgid "Default date"
-msgstr "Default-Datum"
+#: classes/WP_Piwik/Admin/Settings.php:267
+msgid "HTTP connection via"
+msgstr "HTTP-Verbindung &uuml;ber"
 
-msgid "Default date shown on statistics page."
-msgstr "Default-Datum, das auf der Statistik-Seite gezeigt wird."
+#: classes/WP_Piwik/Admin/Settings.php:268
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "cURL"
+msgstr "cURL"
 
-msgid "Dashboard data"
-msgstr "Board-Daten"
+#: classes/WP_Piwik/Admin/Settings.php:269
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "fopen"
+msgstr "fopen"
 
-msgid "Display an overview widget to your WordPress dashboard."
-msgstr "Zeigt ein &Uuml;bersichts-Widget auf dem WordPress-Dashboard."
+#: classes/WP_Piwik/Admin/Settings.php:270
+msgid ""
+"Choose whether WP-Piwik should use cURL or fopen to connect to Piwik in HTTP"
+" or Pro mode."
+msgstr "W&auml;hle aus, ob WP-Piwik cURL oder fopen zur Verbindung mit Piwik im HTTP- oder Pro-Modus verwenden soll."
 
-msgid "Board chart"
-msgstr "Board-Chart"
+#: classes/WP_Piwik/Admin/Settings.php:272
+msgid "HTTP method"
+msgstr "HTTP-Methode"
 
-msgid "Display a visitor graph widget to your WordPress dashboard."
-msgstr "Zeigt einen Besucher-Graph als Widget auf dem WordPress-Dashboard."
+#: classes/WP_Piwik/Admin/Settings.php:273
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "POST"
+msgstr "POST"
 
-msgid "No data available."
-msgstr "Keine Daten vorhanden."
+#: classes/WP_Piwik/Admin/Settings.php:274
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "GET"
+msgstr "GET"
 
-msgid "Check this to automatically choose your blog from your Piwik sites by URL. If your blog is not added to Piwik yet, WP-Piwik will add a new site."
-msgstr "Aktiviere diesen Haken, um Dein Blog &uuml;ber seine URL automatisch aus Deinen Piwik-Seiten auszuw&auml;hlen. Wenn Dein Blog bisher nicht zu Piwik hinzugef&uuml;gt wurde, wird WP-Piwik eine neue Seite hinzuf&uuml;gen."
+#: classes/WP_Piwik/Admin/Settings.php:275
+msgid "Choose whether WP-Piwik should use POST or GET in HTTP or Pro mode."
+msgstr "W&auml;hle aus, ob WP-Piwik POST oder GET- im HTTP bzw. Pro-Modus verwenden soll."
 
-msgid "If you add the Piwik javascript code by wp_footer(),"
-msgstr "Wenn Du den Piwik-Code per wp_footer() in Dein Blog einbindest,"
+#: classes/WP_Piwik/Admin/Settings.php:277
+msgid "Disable time limit"
+msgstr "Zeitlimit deaktivieren"
 
-msgid "WP-Piwik can automatically use js/index.php instead of piwik.js. See"
-msgstr "WP-Piwik kann automatisch js/index.php statt piwik.js verwenden. Siehe"
+#: classes/WP_Piwik/Admin/Settings.php:277
+msgid "Use set_time_limit(0) if stats page causes a time out."
+msgstr "Verwende set_time_limit(0) falls die Statistik-Seite einen Timeout erzeugt."
 
-msgid "WP-Piwik can automatically force the Tracking Code to sent data in POST. See"
-msgstr "WP-Piwik kann automatisch den Tracking Code zwingen, die Daten via POST zu senden. Siehe"
+#: classes/WP_Piwik/Admin/Settings.php:279
+msgid "Connection timeout"
+msgstr "Verbindungs-Timeout"
 
-msgid "Avoid mod_security"
-msgstr "Umgehe mod_security"
+#: classes/WP_Piwik/Admin/Settings.php:281
+msgid "Disable SSL peer verification"
+msgstr "SSL Peer-Verifikation deaktivieren"
 
-msgid "Determined site"
-msgstr "Ermittelte Seite"
+#: classes/WP_Piwik/Admin/Settings.php:281
+msgid "not recommended"
+msgstr "Nicht empfohlen"
 
-msgid "Auto config"
-msgstr "Auto-Konfiguration"
+#: classes/WP_Piwik/Admin/Settings.php:283
+msgid "User agent"
+msgstr "User Agent"
 
-msgid "Use js/index.php"
-msgstr "Nutze js/index.php"
+#: classes/WP_Piwik/Admin/Settings.php:284
+msgid "Use the PHP default user agent"
+msgstr "Verwende den PHP-Standard User-Agent"
 
-msgid "Show overview"
-msgstr "Zeige &Uuml;bersicht"
+#: classes/WP_Piwik/Admin/Settings.php:284
+msgid "empty"
+msgstr "leer"
 
-msgid "Hide overview"
-msgstr "Zeige keine &Uuml;bersicht"
+#: classes/WP_Piwik/Admin/Settings.php:285
+msgid "Define a specific user agent"
+msgstr "Lege einen spezifischen User-Agent fest"
 
-msgid "SEO <em>(slow!)</em>"
-msgstr "SEO <em>(langsam!)</em>"
+#: classes/WP_Piwik/Admin/Settings.php:287
+msgid "Specific user agent"
+msgstr "Spezifischer User-Agent"
+
+#: classes/WP_Piwik/Admin/Settings.php:289
+msgid "Add data-cfasync=false"
+msgstr "data-cfasync=false einf&uuml;gen"
 
-msgid "Display SEO ranking data on statistics page. <em>(Slow!)</em>"
-msgstr "Zeige SEO-Rankingdaten auf der Statistik-Seite. <em>(Langsam!)</em>"
+#: classes/WP_Piwik/Admin/Settings.php:291
+msgid "CDN URL"
+msgstr "CDN URL"
 
-msgid "Configure WP-Piwik widgets to be shown on your WordPress Home Dashboard."
-msgstr "Konfiguriere WP-Piwik-Widgets, die auf Deinem WordPress Home Dashboard erscheinen sollen."
+#: classes/WP_Piwik/Admin/Settings.php:293
+msgid "CDN URL (SSL)"
+msgstr "CDN URL (SSL)"
 
-msgid "SEO data"
-msgstr "SEO-Daten"
+#: classes/WP_Piwik/Admin/Settings.php:295
+msgid "Force Piwik to use a specific protocol"
+msgstr "Zwinge Piwik, ein bestimmtes Protokoll zu verwenden"
 
-msgid "the Piwik team itself"
-msgstr "das Piwik-Team selbst"
+#: classes/WP_Piwik/Admin/Settings.php:296
+msgid "Disabled (default)"
+msgstr "Deaktiviert (Standard)"
 
-msgid "Metabox support inspired by"
-msgstr "Die Metabox-Unterst&uuml;tzung wurde inspiriert von"
+#: classes/WP_Piwik/Admin/Settings.php:297
+msgid "http"
+msgstr "http"
 
-msgid "WP-Piwik support board"
-msgstr "WP-Piwik Support Board"
+#: classes/WP_Piwik/Admin/Settings.php:298
+msgid "https (SSL)"
+msgstr "https (SSL)"
 
-msgid "no registration required, English &amp; German"
-msgstr "keine Registrierung erforderlich, Englisch &amp; Deutsch"
+#: classes/WP_Piwik/Admin/Settings.php:299
+msgid ""
+"Choose if you want to explicitly force Piwik to use HTTP or HTTPS. Does not "
+"work with a CDN URL."
+msgstr "W&auml;hle aus, ob Du Piwik ausdr&uuml;cklich zwingen willst, HTTP oder HTTPS zu verwenden. Funktioniert nicht mit einer CDN URL."
 
-msgid "WordPress.org forum about WP-Piwik"
-msgstr "WordPress.org Forum &uuml;ber WP-Piwik"
+#: classes/WP_Piwik/Admin/Settings.php:301
+msgid "Update notice"
+msgstr "Update-Hinweis"
 
-msgid "WordPress.org registration required, English"
-msgstr "Registrierung bei WordPress.org notwendig, Englisch"
+#: classes/WP_Piwik/Admin/Settings.php:302
+msgid "Show always if WP-Piwik is updated"
+msgstr "Immer anzeigen, wenn WP-Piwik aktualisiert wurde"
 
-msgid "Please don't forget to vote the compatibility at the"
-msgstr "Bitte denke daran, eine Kompatibilit&auml;tsbewertung abzugeben:"
+#: classes/WP_Piwik/Admin/Settings.php:303
+msgid "Show only if WP-Piwik is updated and settings were changed"
+msgstr "Immer anzeigen, wenn WP-Piwik aktualisiert und dabei die Konfiguration ge&auml;ndert wurde"
 
+#: classes/WP_Piwik/Admin/Settings.php:305
+msgid "Choose if you want to get an update notice if WP-Piwik is updated."
+msgstr "W&auml;hole aus, ob Du einen Hinweis erhalten m&ouml;chtest, wenn WP-Piwik aktualisiert wurde."
+
+#: classes/WP_Piwik/Admin/Settings.php:466
 msgid "Donate"
 msgstr "Spenden"
 
+#: classes/WP_Piwik/Admin/Settings.php:468
+msgid "If you like WP-Piwik, you can support its development by a donation:"
+msgstr "Wenn Dir WP-Piwik gef&auml;llt, kannst Du die weitere Entwicklung mit einer Spende f&ouml;rdern:"
+
+#: classes/WP_Piwik/Admin/Settings.php:506
 msgid "My Amazon.de wishlist"
 msgstr "Meine Wunschliste bei Amazon.de"
 
-msgid "Piwik error"
-msgstr "Piwik-Fehler"
-
-msgid "Important"
-msgstr "Wichtig"
+#: classes/WP_Piwik/Admin/Settings.php:509
+#: classes/WP_Piwik/Admin/Settings.php:556
+msgid "Please don't forget to vote the compatibility at the"
+msgstr "Bitte denke daran, eine Kompatibilit&auml;tsbewertung abzugeben:"
 
-msgid "Thanks for using WP-Piwik!"
-msgstr "Vielen Dank f&uuml;r die Verwendung von WP-Piwik!"
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid "Thank you very much for your donation"
+msgstr "Vielen Dank f&uuml;r eure Spenden"
 
-msgid "Auto site configuration is"
-msgstr "Die Auto-Konfiguration ist"
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid "the Piwik team itself"
+msgstr "das Piwik-Team selbst"
 
-msgid "Tracking code insertion is"
-msgstr "Das Einf&uuml;gen des Tracking-Codes ist"
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid ", and all people flattering this"
+msgstr " und allen, die WP-Piwik flattrn"
 
-msgid "enabled"
-msgstr "aktiviert"
+#: classes/WP_Piwik/Admin/Settings.php:541
+msgid ""
+"Graphs powered by <a href=\"http://www.jqplot.com/\">jqPlot</a> (License: "
+"GPL 2.0 and MIT) and <a "
+"href=\"http://omnipotent.net/jquery.sparkline/\">jQuery Sparklines</a> "
+"(License: New BSD License)."
+msgstr "Die Graphen werden mit <a href=\"http://www.jqplot.com/\">jqPlot</a> (Lizenz: GPL 2.0 and MIT) und <a href=\"http://omnipotent.net/jquery.sparkline/\">jQuery Sparklines</a> (Lizenz: New BSD License) erstellt."
 
-msgid "disabled"
-msgstr "deaktiviert"
+#: classes/WP_Piwik/Admin/Settings.php:542
+msgid "Metabox support inspired by"
+msgstr "Die Metabox-Unterst&uuml;tzung wurde inspiriert von"
 
-msgid "You are using Piwik"
-msgstr "Du verwendest Piwik"
+#: classes/WP_Piwik/Admin/Settings.php:543
+msgid "Tabbed settings page suggested by the"
+msgstr "Die Tabs f&uuml;r die Einstellungen wurden inspiriert von einem Artikel im"
 
-msgid "and"
-msgstr "und"
+#: classes/WP_Piwik/Admin/Settings.php:544
+msgid "Thank you very much"
+msgstr "Vielen Dank"
 
-msgid "Error: cURL is not enabled and fopen is not allowed to open URLs. WP-Piwik won't be able to connect to Piwik."
-msgstr "Fehler: cURL ist nicht aktiviert und fopen darf keine URLs &ouml;ffnen. WP-Piwik kann so keine Verbindung zu Piwik aufbauen."
+#: classes/WP_Piwik/Admin/Settings.php:544
+msgid "for your translation work"
+msgstr "f&uuml;r eure &Uuml;bersetzungsarbeit"
 
-msgid "<strong>Important note:</strong> If you do not host this blog on your own, your site admin is able to get your auth token from the database."
-msgstr "<strong>Wichtiger Hinweis:</strong> Wenn Du dieses Blog nicht selber hostest, kann Dein Site Admin Deinen Auth Token aus der Datenbank auslesen."
+#: classes/WP_Piwik/Admin/Settings.php:545
+msgid ""
+"Thank you very much, all users who send me mails containing criticism, "
+"commendation, feature requests and bug reports! You help me to make WP-Piwik"
+" much better."
+msgstr "Vielen Dank an alle Nutzer, die mir Mails mit Kritik, Lob, Featurew&uuml;nsche und Bugmeldungen senden. Ihr helft mir dabei, WP-Piwik viel besser zu machen."
 
-msgid "Add tracking code"
-msgstr "Tracking-Code einf&uuml;gen"
+#: classes/WP_Piwik/Admin/Settings.php:546
+msgid ""
+"Thank <strong>you</strong> for using my plugin. It is the best commendation "
+"if my piece of code is really used!"
+msgstr "Vielen Dank an <strong>Dich</strong> f&uuml;r die Nutzung meines Plugins. Es ist das gr&ouml;&szlig;te Lob, wenn mein Code tats&auml;chlich benutzt wird!"
 
-msgid "Tracking code preview"
-msgstr "Tracking-Code Vorschau"
+#: classes/WP_Piwik/Admin/Settings.php:555
+msgid "The best place to get help:"
+msgstr "Der beste Platz, um Hilfe zu bekommen:"
 
-msgid "Piwik Settings"
-msgstr "Piwik Einstellungen"
+#: classes/WP_Piwik/Admin/Settings.php:555
+msgid "WP-Piwik support forum"
+msgstr "WP-Piwik Support-Forum"
 
-msgid "Statistics"
-msgstr "Statistiken"
+#: classes/WP_Piwik/Admin/Settings.php:558
+msgid "Debugging"
+msgstr "Fehlersuche"
 
-msgid "Either allow_url_fopen has to be enabled <em>or</em> cURL has to be available:"
+#: classes/WP_Piwik/Admin/Settings.php:559
+msgid ""
+"Either allow_url_fopen has to be enabled <em>or</em> cURL has to be "
+"available:"
 msgstr "Entweder allow_url_fopen muss aktiviert <em>oder</em> cURL muss verf&uuml;gbar sein:"
 
+#: classes/WP_Piwik/Admin/Settings.php:562
 msgid "cURL is"
 msgstr "cURL ist"
 
-msgid "allow_url_fopen is"
-msgstr "allow_url_fopen ist"
-
+#: classes/WP_Piwik/Admin/Settings.php:563
+#: classes/WP_Piwik/Admin/Settings.php:568
 msgid "not"
 msgstr "nicht"
 
+#: classes/WP_Piwik/Admin/Settings.php:564
 msgid "available"
 msgstr "verf&uuml;gbar"
 
-msgid "Test script result"
-msgstr "Ergebnis des Testskripts"
+#: classes/WP_Piwik/Admin/Settings.php:567
+msgid "allow_url_fopen is"
+msgstr "allow_url_fopen ist"
+
+#: classes/WP_Piwik/Admin/Settings.php:569
+msgid "enabled"
+msgstr "aktiviert"
 
-msgid "Please confirm your reset request"
-msgstr "Bitte best&auml;tige Deine Reset-Anweisung"
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "is used."
+msgstr "wird verwendet."
 
-msgid "YES, please reset <strong>all</strong> WP-Piwik settings <strong>except</strong> auth token and Piwi URL."
-msgstr "JA, bitte setze <strong>alle</strong> WP-Piwik Einstellung au&szlig;er Auth Token und Piwik URL zur&uuml;ck."
+#: classes/WP_Piwik/Admin/Settings.php:573
+msgid "Determined Piwik base URL is"
+msgstr "Die ermittelte Piwik-Basis-URL ist"
 
-msgid "WP-Piwik reset done"
-msgstr "WP-Piwik wurde zur&uuml;ckgesetzt"
+#: classes/WP_Piwik/Admin/Settings.php:577
+msgid "Tools"
+msgstr "Tools"
 
-msgid "Get more debug information"
-msgstr "Erhalte weitere Debug-Informationen"
+#: classes/WP_Piwik/Admin/Settings.php:579
+msgid "Run testscript"
+msgstr "Testskript ausf&uuml;hren"
 
-msgid "Run test script"
-msgstr "Starte Testskript"
+#: classes/WP_Piwik/Admin/Settings.php:580
+msgid "Sitebrowser"
+msgstr "Sitebrowser"
 
-msgid "Get site configuration details"
-msgstr "Ermittle Detailinformationen zur Seitenkonfiguration"
+#: classes/WP_Piwik/Admin/Settings.php:581
+msgid "Clear cache"
+msgstr "Cache leeren"
 
-msgid "Reset WP-Piwik settings except auth token and Piwik URL"
-msgstr "Setzte die Einstellungen von WP-Piwik mit Ausnahme von Auth Token und Piwik URL zur&uuml;ck."
+#: classes/WP_Piwik/Admin/Settings.php:582
+msgid "Are you sure you want to clear all settings?"
+msgstr "Bist Du Dir sicher, dass Du alle Einstellungen l&ouml;schen willst?"
 
-msgid "You have to enter your auth token and the Piwik URL before you can access more debug functions."
-msgstr "Du musst Deinen Auth Token und die Piwik URL eingeben, bevor Du auf weitere Debug-Funktionen zugreifen kannst."
+#: classes/WP_Piwik/Admin/Settings.php:582
+msgid "Reset WP-Piwik"
+msgstr "WP-Piwik zur&uuml;cksetzen"
 
+#: classes/WP_Piwik/Admin/Settings.php:584
 msgid "Latest support threads on WordPress.org"
 msgstr "Die letzten Support-Beitr&auml;ge auf WordPress.org"
 
-msgid "This will not affect Piwik itself. Resetting large networks may take some minutes."
-msgstr "Dies hat keinen Einfluss auf Piwik selbst. Das Zur&uuml;cksetzen gro&szlig;er Netzwerke kann einige Minuten dauern."
-
-msgid ", and all people flattering this"
-msgstr " und allen, die WP-Piwik flattrn"
-
-msgid "Disable time limit"
-msgstr "Zeitlimit deaktivieren"
+#: classes/WP_Piwik/Admin/Settings.php:635
+msgid "Settings cleared (except connection settings)."
+msgstr "Einstellungen gel&ouml;scht (au&szlig;er Verbindungsdaten)"
 
-msgid "Use set_time_limit(0) if stats page causes a time out."
-msgstr "Verwende set_time_limit(0) falls die Statistik-Seite einen Timeout erzeugt."
+#: classes/WP_Piwik/Admin/Settings.php:651
+msgid "Cache cleared."
+msgstr "Cache geleert."
 
-msgid "in network mode"
-msgstr "im Netzwerk-Modus"
+#: classes/WP_Piwik/Admin/Sitebrowser.php:17
+msgid "site"
+msgstr "Seite"
 
-msgid "To enable Piwik statistics, please enter"
-msgstr "Um die Piwik-Statistiken zu aktivieren, gibt bitte die folgenden Daten ein:"
+#: classes/WP_Piwik/Admin/Sitebrowser.php:18
+msgid "sites"
+msgstr "Seiten"
 
-msgid "your Piwik base URL (like http://mydomain.com/piwik) or your Piwik server path (like /var/www/mydomain.com/httpdocs/piwik/)"
-msgstr "Die URL Deiner Piwik-Installation (z.B. http://mydomain.com/piwik) oder den Serverpfad zu Deiner Piwik-Installation (z.B. /var/www/mydomain.com/httpdocs/piwik/)"
+#: classes/WP_Piwik/Admin/Sitebrowser.php:24
+msgid "No site configured yet."
+msgstr "Noch keine Seite konfiguriert."
 
-msgid "your personal Piwik authentification token. You can get the token on the API page inside your Piwik interface. It looks like &quot;1234a5cd6789e0a12345b678cd9012ef&quot;."
-msgstr "Deinen pers&ouml;nlichen Piwik Authentifikations-Token. Du findest ihn auf der API-Seite des Piwik-Interfaces. Er sieht z.B. so aus: &quot;1234a5cd6789e0a12345b678cd9012ef&quot;."
+#: classes/WP_Piwik/Admin/Sitebrowser.php:29
+msgid "Blog ID"
+msgstr "Blog ID"
 
-msgid "No idea what I'm talking about?"
-msgstr "Keine Idee, wovon ich rede?"
+#: classes/WP_Piwik/Admin/Sitebrowser.php:30
+msgid "Title"
+msgstr "Titel"
 
-msgid "Get help."
-msgstr "Hier gibt es Hilfe."
+#: classes/WP_Piwik/Admin/Sitebrowser.php:31
+msgid "URL"
+msgstr "URL"
 
-msgid "Piwik path"
-msgstr "Piwik Pfad"
+#: classes/WP_Piwik/Admin/Sitebrowser.php:32
+msgid "Site ID (Piwik)"
+msgstr "Seiten-ID (Piwik)"
 
-msgid "Disable cookies"
-msgstr "Cookies deaktivieren"
+#: classes/WP_Piwik/Admin/Sitebrowser.php:79
+msgid "Site not created yet."
+msgstr "Seite noch nicht erstellt."
 
-msgid "Disable all tracking cookies for a visitor."
-msgstr "Schalte alle Tracking-Cookies f&uuml;r Besucher ab."
+#: classes/WP_Piwik/Admin/Statistics.php:12
+msgid "Statistics"
+msgstr "Statistiken"
 
-msgid "Show graph on WordPress Toolbar"
-msgstr "Zeige einen Graphen in der WordPress Toolbar"
+#: classes/WP_Piwik/Admin/Statistics.php:20
+msgid "Currently shown stats:"
+msgstr "Derzeit gezeigte Statistiken:"
 
-msgid "Display the last 30 days visitor stats on WordPress Toolbar."
-msgstr "Zeige die Besucherstatistik der letzten 30 Tage in der WordPress Toolbar an."
+#: classes/WP_Piwik/Request/Php.php:27
+msgid "Could not resolve"
+msgstr "Keine Verbindung zu"
+
+#: classes/WP_Piwik/Request/Php.php:27
+msgid "realpath() returns false"
+msgstr "realpath() gibt false zur&uuml;ck"
+
+#: classes/WP_Piwik/Request/Php.php:39
+msgid "Class Piwik\\FrontController does not exists."
+msgstr "Die Klasse Piwik\\FrontController existiert nicht."
+
+#: classes/WP_Piwik/Request/Php.php:42
+msgid "Class Piwik\\API\\Request does not exists."
+msgstr "Die Klasse Piwik\\API\\Request existiert nicht."
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:10
+msgid "Piwik Custom Variables"
+msgstr "Piwik Custom Variables"
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
+msgid "Name"
+msgstr "Name"
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
+msgid "Value"
+msgstr "Wert"
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
+msgid "Set custom variables for a page view"
+msgstr "Definiere custom variables f&uuml;r einen Seitenaufruf."
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:18
+msgid "Browser Details"
+msgstr "Browser-Details"
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:37
+#: classes/WP_Piwik/Widget/Browsers.php:37
+#: classes/WP_Piwik/Widget/Chart.php:43
+#: classes/WP_Piwik/Widget/Noresult.php:23
+#: classes/WP_Piwik/Widget/Overview.php:24
+#: classes/WP_Piwik/Widget/Plugins.php:23 classes/WP_Piwik/Widget/Post.php:25
+#: classes/WP_Piwik/Widget/Screens.php:35
+#: classes/WP_Piwik/Widget/Search.php:23 classes/WP_Piwik/Widget/Seo.php:20
+#: classes/WP_Piwik/Widget/SystemDetails.php:33
+#: classes/WP_Piwik/Widget/Systems.php:33
+#: classes/WP_Piwik/Widget/Visitors.php:35 classes/WP_Piwik/Widget.php:91
+msgid "Piwik error"
+msgstr "Piwik-Fehler"
 
-msgid "Graphs powered by <a href=\"http://www.jqplot.com/\">jqPlot</a> (License: GPL 2.0 and MIT) and <a href=\"http://omnipotent.net/jquery.sparkline/\">jQuery Sparklines</a> (License: New BSD License)."
-msgstr "Die Graphen werden mit <a href=\"http://www.jqplot.com/\">jqPlot</a> (Lizenz: GPL 2.0 and MIT) und <a href=\"http://omnipotent.net/jquery.sparkline/\">jQuery Sparklines</a> (Lizenz: New BSD License) erstellt."
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+msgid "Browser"
+msgstr "Browser"
 
-msgid "Tabbed settings page suggested by the"
-msgstr "Die Tabs f&uuml;r die Einstellungen wurden inspiriert von einem Artikel im"
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+#: classes/WP_Piwik/Widget/Screens.php:37
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+#: classes/WP_Piwik/Widget/Visitors.php:57 classes/WP_Piwik/Widget.php:100
+msgid "Unique"
+msgstr "Unique"
 
-msgid "If you like to use the PHP API and also to enable tracking by WP-Piwik, please enter your Piwik URL, too. Otherwise your tracking code may be erroneous."
-msgstr "Falls Du die PHP API verwenden und das Tracking per WP-Piwik aktivieren willst, gib bitte auch Deine Piwik URL an. Andernfalls k&ouml;nnte Dein Tracking Code fehlerhaft sein." 
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+#: classes/WP_Piwik/Widget/Plugins.php:25
+#: classes/WP_Piwik/Widget/Screens.php:37
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+msgid "Percent"
+msgstr "Prozent"
 
-msgid "Title"
-msgstr "Titel"
+#: classes/WP_Piwik/Widget/BrowserDetails.php:66
+#: classes/WP_Piwik/Widget/Browsers.php:66
+#: classes/WP_Piwik/Widget/Screens.php:64
+#: classes/WP_Piwik/Widget/SystemDetails.php:62
+#: classes/WP_Piwik/Widget/Systems.php:62
+msgid "Others"
+msgstr "Andere"
 
-msgid "Site ID (Piwik)"
-msgstr "Seiten-ID (Piwik)"
+#: classes/WP_Piwik/Widget/Browsers.php:18
+msgid "Browsers"
+msgstr "Browser"
 
-msgid "Expert Settings"
-msgstr "Expertenkonfiguration"
+#: classes/WP_Piwik/Widget/Chart.php:19
+#: classes/WP_Piwik/Widget/Overview.php:41 classes/WP_Piwik/Widget/Post.php:37
+#: classes/WP_Piwik/Widget/Visitors.php:17
+msgid "Visitors"
+msgstr "Besucher"
 
-msgid "Disable SSL peer verification"
-msgstr "SSL Peer-Verifikation deaktivieren"
+#: classes/WP_Piwik/Widget/Chart.php:71
+msgid ""
+"The graph contains the values shown in the table below (visitors / unique / "
+"bounces). The red line show a linear trendline (unique)."
+msgstr "Der Graph zeigt die Werte aus der Besucher-Tabelle (Besucher / Unique / Abspr&uuml;nge). Die rote Linie zeigt eine lineare Trendlinie (Unique)."
 
-msgid "not recommended"
-msgstr "Nicht empfohlen"
+#: classes/WP_Piwik/Widget/Keywords.php:16
+msgid "Keywords"
+msgstr "Keywords"
 
-msgid "Invalid path. Please enter the file path to Piwik."
-msgstr "Ung&uuml;ltiger Pfad. Bitte gib den Dateipfad von Piwik an."
+#: classes/WP_Piwik/Widget/Noresult.php:16
+#: classes/WP_Piwik/Widget/Search.php:16
+msgid "Site Search"
+msgstr "Seitensuche"
 
-msgid "Enable shortcodes in post or page content."
-msgstr "Aktiviere Shortcodes innerhalb von Artikeln und Seiten."
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+msgid "Keyword"
+msgstr "Keyword"
 
-msgid "Connection timeout"
-msgstr "Verbindungs-Timeout"
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+msgid "Requests"
+msgstr "Anfragen"
 
-msgid "User agent"
-msgstr "User Agent"
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Bounced"
+msgstr "Abspr&uuml;nge"
 
-msgid "Default tracking"
-msgstr "Standard-Tracking"
+#: classes/WP_Piwik/Widget/Overview.php:17 classes/WP_Piwik/Widget/Post.php:18
+msgid "Overview"
+msgstr "&Uuml;bersicht"
 
-msgid "Use proxy script"
-msgstr "Verwende Proxy-Skript"
+#: classes/WP_Piwik/Widget/Overview.php:42 classes/WP_Piwik/Widget/Post.php:38
+msgid "Unique visitors"
+msgstr "Eindeutige Besucher"
 
-msgid "WP-Piwik uses the Piwik default tracking code."
-msgstr "WP-Piwik verwendet den normalen Tracking Code."
+#: classes/WP_Piwik/Widget/Overview.php:43 classes/WP_Piwik/Widget/Post.php:39
+msgid "Page views"
+msgstr "Page Views"
 
-msgid "WP-Piwik can automatically use js/index.php instead of piwik.js and piwik.php. See"
-msgstr "WP-Piwik kann automatisch js/index.php statt piwik.js und piwik.php verwenden. Siehe"
+#: classes/WP_Piwik/Widget/Overview.php:44 classes/WP_Piwik/Widget/Post.php:40
+msgid "Total time spent"
+msgstr "Verbrachte Zeit"
 
-msgid "WP-Piwik will use the piwik.php proxy script. See"
-msgstr "WP-Piwik benutzt das piwik.php-Proxy-Skript, siehe"
+#: classes/WP_Piwik/Widget/Overview.php:45 classes/WP_Piwik/Widget/Post.php:42
+msgid "Bounce count"
+msgstr "Absprungrate"
 
-msgid "Enable shortcodes"
-msgstr "Aktiviere Shortcodes"
+#: classes/WP_Piwik/Widget/Overview.php:48 classes/WP_Piwik/Widget/Post.php:41
+msgid "Time/visit"
+msgstr "Zeit/Besuch"
 
-msgid "Requests"
-msgstr "Anfragen"
+#: classes/WP_Piwik/Widget/Overview.php:48
+msgid "Max. page views in one visit"
+msgstr "Max. Seiten/Besuch"
 
-msgid "Site Search Keywords"
-msgstr "Suchanfragen"
+#: classes/WP_Piwik/Widget/Overview.php:49 classes/WP_Piwik/Widget/Post.php:46
+msgid "Shortcut"
+msgstr "Shortcut"
 
-msgid "Site Search without Results"
-msgstr "Suchanfragen ohne Ergebnisse"
+#: classes/WP_Piwik/Widget/Pages.php:16
+msgid "Pages"
+msgstr "Seiten"
 
-msgid "Disabled in proxy mode."
-msgstr "Im Proxy-Modus deaktiviert."
+#: classes/WP_Piwik/Widget/Plugins.php:16
+msgid "Plugins"
+msgstr "Plugins"
 
-msgid "Leave blank if you do not want to define a CDN URL or you do not know what this is."
-msgstr "Einfach freilassen, falls Du keine CDN URL definieren m&ouml;chtest oder nicht wei&szlig;t, worum es geht."
+#: classes/WP_Piwik/Widget/Plugins.php:25
+msgid "Plugin"
+msgstr "Plugin"
 
-msgid "Adds the &lt;noscript&gt; code to your footer."
-msgstr "F&uuml;gt den &lt;noscript&gt;-Code im Footer ein."
+#: classes/WP_Piwik/Widget/Plugins.php:25
+#: classes/WP_Piwik/Widget/Visitors.php:57 classes/WP_Piwik/Widget.php:102
+msgid "Visits"
+msgstr "Besuche"
 
-msgid "Use Piwik's advanced Site Search Analytics feature. See"
-msgstr "Benutze Piwiks erweiterte Site Search Analyse. Siehe"
+#: classes/WP_Piwik/Widget/Post.php:43
+msgid "Min. generation time"
+msgstr "Min. Zeit zur Generierung"
 
-msgid "Enable tracking for visitors without JavaScript (not recommended). See"
-msgstr "Aktiviere das Tracking von Besuchern ohne JavaScript (nicht empfohlen). Siehe"
+#: classes/WP_Piwik/Widget/Post.php:44
+msgid "Max. generation time"
+msgstr "Max. Zeit zur Generierung"
 
-msgid "Add rec parameter to noscript code"
-msgstr "F&uuml;ge rec-Parameter zum noscript Code hinzu"
+#: classes/WP_Piwik/Widget/Referrers.php:16
+msgid "Referrers"
+msgstr "Referrer"
 
-msgid "Add &lt;noscript&gt;"
-msgstr "F&uuml;ge &lt;noscript&gt; hinzu"
+#: classes/WP_Piwik/Widget/Screens.php:16
+msgid "Resolutions"
+msgstr "Aufl&ouml;sungen"
 
-msgid "Cache API calls, which not contain today's values, for a week"
-msgstr "Cache alle API-Aufrufe, die keine heutigen Daten enthalten, f&uuml;r eine Woche"
+#: classes/WP_Piwik/Widget/Screens.php:37
+msgid "Resolution"
+msgstr "Aufl&ouml;sung"
 
-msgid "Enable cache"
-msgstr "Cache einschalten"
+#: classes/WP_Piwik/Widget/Seo.php:13
+msgid "SEO"
+msgstr "SEO"
 
-msgid "This will add Piwik campaign parameters to the RSS feed links."
-msgstr "Dadurch werden Piwik Kampagnen-Parameter an die Links des RSS-Feeds angehangen."
+#: classes/WP_Piwik/Widget/SystemDetails.php:14
+msgid "Operation System Details"
+msgstr "Betriebssystem-Details"
 
-msgid "Campaign"
-msgstr "Kampagne"
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+msgid "Operation System"
+msgstr "Betriebssystem"
 
-msgid "Keyword: post name."
-msgstr "Schl&uuml;sselwort: Name des Beitrags."
+#: classes/WP_Piwik/Widget/Systems.php:14
+msgid "Operation Systems"
+msgstr "Betriebssysteme"
 
-msgid "Enable to track posts in feeds via tracking pixel."
-msgstr "Aktivieren, um Beir&auml;ge im Feed via Tracking-Pixel zu z&auml;hlen."
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Date"
+msgstr "Datum"
 
-msgid "Enable to track users on admin pages (remember to configure the tracking filter appropriately)."
-msgstr "Aktivieren, um Nutzer auf Admin-Seiten zu z&auml;hlen (bitte den Tracking Filter entsprechend konfigurieren)."
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Page Views"
+msgstr "Seitenansichten"
 
-msgid "Track RSS feed links as campaign"
-msgstr "Links in RSS-Feeds als Kampagne tracken"
+#: classes/WP_Piwik/Widget.php:104
+msgid "Hits"
+msgstr "Aufrufe"
 
-msgid "Show stats about single posts at the post edit admin page."
-msgstr "Zeige Statistiken zu einzelnen Beitr&auml;gen auf der Bearbeiten-Seite."
+#: classes/WP_Piwik/Widget.php:106
+msgid "Actions"
+msgstr "Aktionen"
 
-msgid "Show per post stats"
-msgstr "Zeige Beitrags-Statistiken"
+#: classes/WP_Piwik/Widget.php:162
+msgid "No data available."
+msgstr "Keine Daten vorhanden."
 
-msgid "Add data-cfasync=false"
-msgstr "data-cfasync=false einf&uuml;gen"
+#: classes/WP_Piwik/Widget.php:293
+msgid "week"
+msgstr "Woche"
 
-msgid "Track admin pages"
-msgstr "Admin-Seiten tracken"
+#: classes/WP_Piwik.php:193
+msgid "%s %s installed."
+msgstr "%s %s installiert."
 
-msgid "Adds data-cfasync=false to the script tag, e.g., to ask Rocket Loader to ignore the script."
-msgstr "Fügt data-cfasync=false zum Script-Tag hinzu, z.B. damit Rocket Loader das Skript ignoriert."
+#: classes/WP_Piwik.php:193
+msgid "Next you should connect to Piwik"
+msgstr "Als n&auml;chstes solltest Du eine Verbindung zu Piwik herstellen"
 
-msgid "Add annotation on new post"
-msgstr "Notiz bei neuem Post"
+#: classes/WP_Piwik.php:227
+msgid "%s updated to %s."
+msgstr "%s aktualisiert auf %s."
 
-msgid "Add a Piwik annotation on each new post, see"
-msgstr "F&uuml;gt in Piwik f&uuml;r jeden neuen Post eine Notiz hinzu, siehe"
+#: classes/WP_Piwik.php:227
+msgid "Please validate your configuration"
+msgstr "Bitte &uuml;berpr&uuml;fe Deine Konfiguration"
 
-msgid "JavaScript code position"
-msgstr "Position des JavaScript-Codes"
+#: classes/WP_Piwik.php:259 classes/WP_Piwik.php:481
+msgid "Settings"
+msgstr "Einstellungen"
 
-msgid "Choose whether the JavaScript code is added to the footer or the header."
-msgstr "W&auml;hle, ob der JavaScript-Code im Footer oder im Header eingef&uuml;gt werden soll."
+#: classes/WP_Piwik.php:262
+msgid "Important"
+msgstr "Wichtig"
 
-msgid "Show custom variables box"
-msgstr "Zeige Custom-Variables-Box"
+#: classes/WP_Piwik.php:343 classes/WP_Piwik.php:365
+msgid "Piwik Statistics"
+msgstr "Piwik Statistiken"
 
-msgid "Show a custom vars edit box on post edit page."
-msgstr "Zeige eine Custom-Variables-Eingabebox auf den Edit-Post-Seiten."
+#: classes/WP_Piwik.php:453
+msgid "Configure WP-Piwik"
+msgstr "Konfiguriere WP-Piwik"
 
-msgid "Limit cookie lifetime"
-msgstr "Cookie-Lebensdauer beschr&auml;nken"
+#: classes/WP_Piwik.php:923
+msgid "An error occured"
+msgstr "Ein Fehler ist aufgetreten"
 
-msgid "Limit cookie lifetime as follows"
-msgstr "Beschr&auml;nke die Cookie-Lebensdauer wie folgt"
+#: classes/WP_Piwik.php:1191
+msgid "Cheatin&#8217; uh?"
+msgstr "Schummelst wohl?"
 
-msgid "Session timeout (seconds)"
-msgstr "Session-Timeout (Sekunden)"
+#: wp-piwik.php:60
+msgid ""
+"WP-Piwik requires at least PHP 5.3. You are using the deprecated version %s."
+" Please update PHP to use WP-Piwik."
+msgstr "WP-Piwik ben&ouml;tigt zumindest PHP 5.3. Du verwendest die veraltete Version %s. Bitte aktualisiere PHP um WP-Piwik zu nutzen."
 
-msgid "Visitor timeout (seconds)"
-msgstr "Besucher-Timeout (Sekunden)"
+#. Plugin Name of the plugin/theme
+msgid "WP-Piwik"
+msgstr "WP-Piwik"
 
-msgid "Track visitors across all subdomains"
-msgstr "Besucher &uuml;ber alle Subdomains aufzeichnen"
+#. Plugin URI of the plugin/theme
+msgid "http://wordpress.org/extend/plugins/wp-piwik/"
+msgstr "http://wordpress.org/extend/plugins/wp-piwik/"
 
-msgid "Adds *.-prefix to cookie domain."
-msgstr "F&uuml;gt ein *.-Pr&auml;fix zur Cookie Domain hinzu."
+#. Description of the plugin/theme
+msgid ""
+"Adds Piwik stats to your dashboard menu and Piwik code to your wordpress "
+"header."
+msgstr "F&uuml;gt Piwik-Statistiken zu Deinem Dashboard und den Piwik-Code zu Deinem Blog hinzu."
 
-msgid "Track visitors across all alias URLs"
-msgstr "Besucher &uuml;ber alle alternative URLs aufzeichnen"
+#. Author of the plugin/theme
+msgid "Andr&eacute; Br&auml;kling"
+msgstr "Andr&eacute; Br&auml;kling"
 
-msgid "Adds *.-prefix to tracked domain."
-msgstr "F&uuml;gt ein *.-Pr&auml;fix zur getrackten Domain hinzu."
\ No newline at end of file
+#. Author URI of the plugin/theme
+msgid "http://www.braekling.de"
+msgstr "http://www.braekling.de"
diff --git a/wp-content/plugins/wp-piwik/languages/wp-piwik-el.mo b/wp-content/plugins/wp-piwik/languages/wp-piwik-el.mo
new file mode 100644
index 0000000000000000000000000000000000000000..40247bf669e559c9551c950363a40ea3c6ac3d4f
Binary files /dev/null and b/wp-content/plugins/wp-piwik/languages/wp-piwik-el.mo differ
diff --git a/wp-content/plugins/wp-piwik/languages/wp-piwik-el.po b/wp-content/plugins/wp-piwik/languages/wp-piwik-el.po
new file mode 100644
index 0000000000000000000000000000000000000000..b25b49f25aa8fec04a13e7b0c2b78d08308fdc0e
--- /dev/null
+++ b/wp-content/plugins/wp-piwik/languages/wp-piwik-el.po
@@ -0,0 +1,1266 @@
+# Copyright (C) 2015 WP-Piwik
+# This file is distributed under the same license as the WP-Piwik package.
+# Translators:
+# Andr&eacute; Br&auml;kling <webmaster@braekling.de>, 2011
+# Vasilis Lourdas, 2015
+msgid ""
+msgstr ""
+"Project-Id-Version: WP-Piwik\n"
+"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-piwik\n"
+"POT-Creation-Date: 2015-07-22 10:25:29+00:00\n"
+"PO-Revision-Date: 2015-07-22 10:33+0000\n"
+"Last-Translator: André Bräkling\n"
+"Language-Team: Greek (http://www.transifex.com/projects/p/wp-piwik/language/el/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: el\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: classes/WP_Piwik/Admin/Settings.php:24
+msgid "Reload"
+msgstr "Επαναφόρτωση"
+
+#: classes/WP_Piwik/Admin/Settings.php:27
+msgid "Changes saved."
+msgstr "Οι αλλαγές αποθηκεύθηκαν."
+
+#: classes/WP_Piwik/Admin/Settings.php:45
+msgid "Save Changes"
+msgstr "Αποθήκευση αλλαγών"
+
+#: classes/WP_Piwik/Admin/Settings.php:46
+msgid "Thanks for using WP-Piwik!"
+msgstr "Ευχαριστούμε που χρησιμοποιείτε το WP-Piwik!"
+
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid "WP-Piwik %s is successfully connected to Piwik %s."
+msgstr "Το WP-Piwik %s συνδέθηκε με επιτυχία στο Piwik %s."
+
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid "You are running WordPress %s."
+msgstr "Τρέχετε το WordPress %s."
+
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid ""
+"You are running a WordPress %s blog network (WPMU). WP-Piwik will handle "
+"your sites as different websites."
+msgstr "Τρέχετε ένα δίκτυο ιστολογίων (WPMU) WordPress %s. Το WP-Piwik θα χειρίζεται όλους τους ιστοτόπους σας ως διαφορετικούς."
+
+#: classes/WP_Piwik/Admin/Settings.php:53
+msgid ""
+"WP-Piwik %s was not able to connect to Piwik using your configuration. Check"
+" the &raquo;Connect to Piwik&laquo; section below."
+msgstr "Το WP-Piwik %s δεν μπόρεσε να συνδεθεί με το Piwik χρησιμοποιώντας τις ρυθμίσεις σας. Δείτε την παρακάτω παράγραφο %raquo;Σύνδεση με το Piwik&laquo;."
+
+#: classes/WP_Piwik/Admin/Settings.php:56
+msgid ""
+"WP-Piwik %s has to be connected to Piwik first. Check the &raquo;Connect to "
+"Piwik&laquo; section below."
+msgstr "Το WP-Piwik %s πρέπει να συνδεθεί πρώτα με το Piwik. Ελέγξτε το τμήμα &raquo;Σύνδεση με το Piwik&laquo; παρακάτω."
+
+#: classes/WP_Piwik/Admin/Settings.php:60
+msgid "Connect to Piwik"
+msgstr "Σύνδεση με το Piwik"
+
+#: classes/WP_Piwik/Admin/Settings.php:65
+msgid "Show Statistics"
+msgstr "Εμφάνιση στατιστικών"
+
+#: classes/WP_Piwik/Admin/Settings.php:69
+msgid "Enable Tracking"
+msgstr "Ενεργοποίηση παρακολούθησης"
+
+#: classes/WP_Piwik/Admin/Settings.php:74
+msgid "Expert Settings"
+msgstr "Ρυθμίσεις για προχωρημένους"
+
+#: classes/WP_Piwik/Admin/Settings.php:78 classes/WP_Piwik.php:923
+msgid "Support"
+msgstr "Υποστήριξη"
+
+#: classes/WP_Piwik/Admin/Settings.php:82
+msgid "Credits"
+msgstr "Συντελεστές"
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid ""
+"WP-Piwik is a WordPress plugin to show a selection of Piwik stats in your "
+"WordPress admin dashboard and to add and configure your Piwik tracking code."
+" To use this you will need your own Piwik instance. If you do not already "
+"have a Piwik setup, you have two simple options: use either"
+msgstr "Το WP-Piwik είναι ένα πρόσθετο για το WordPress για να εμφανίζει μια επιλογή από στατιστικά του Piwik στον πίνακα διαχείρισης του WordPress και για να προσθέτετε και παραμετροποιείτε τον κώδικα παρακολούθησης του Piwik. Αν δεν έχετε ήδη κάποια εγκατάσταση του Piwik, έχετε δύο απλές επιλογές: να χρησιμοποιήσετε είτε"
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "Self-hosted"
+msgstr "Φιλοξενία σε εσάς"
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "or"
+msgstr "ή"
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "Cloud-hosted"
+msgstr "Φιλοξενία στο σύννεφο"
+
+#: classes/WP_Piwik/Admin/Settings.php:98
+msgid ""
+"Neither cURL nor fopen are available. So WP-Piwik can not use the HTTP API "
+"and not connect to Piwik Pro."
+msgstr "Είτε το cURL είτε η fopen δεν είναι διαθέσιμα. Έτσι, το WP-Piwik δεν μπορεί να χρησιμοποιήσει το HTTP API και να συνδεθεί με το Piwik Pro."
+
+#: classes/WP_Piwik/Admin/Settings.php:98
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
+msgid "More information"
+msgstr "Περισσότερες πληροφορίες"
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid "You can choose between three connection methods:"
+msgstr "Μπορείτε να επιλέξετε μεταξύ των τριών τρόπων σύνδεσης:"
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:103
+msgid "Self-hosted (HTTP API, default)"
+msgstr "Φιλοξενία σε εσάς (HTTP API, εξ' ορισμού)"
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"This is the default option for a self-hosted Piwik and should work for most "
+"configurations. WP-Piwik will connect to Piwik using http(s)."
+msgstr "Αυτή είναι η προκαθορισμένη επιλογή για Piwik που φιλοξενείται σε εσάς και αναμένεται να δουλέψει για τις περισσότερες εγκαταστάσεις. Το WP-Piwik θα συνδεθεί με το Piwik με χρήση http(s)."
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:104
+msgid "Self-hosted (PHP API)"
+msgstr "Φιλοξενία σε εσάς (PHP API)"
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"Choose this, if your self-hosted Piwik and WordPress are running on the same"
+" machine and you know the full server path to your Piwik instance."
+msgstr "Επιλέξτε αυτή την επιλογή, αν το Piwik που φιλοξενείται σε εσάς και το WordPress εκτελούνται στον ίδιο διακομιστή και γνωρίζετε την πλήρη διαδρομή για το στιγμιότυπο του Piwik."
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:105
+msgid "Cloud-hosted (Piwik Pro)"
+msgstr "Φιλοξενία στο σύννεφο (Piwik Pro)"
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"If you are using a cloud-hosted Piwik by Piwik Pro, you can simply use this "
+"option."
+msgstr "Αν χρησιμοποιείτε μια έκδοση του Piwik που παρέχεται από το σύννεφο από το Piwik Pro, μπορείτε να χρησιμοποιήσετε απλά αυτή την επιλογή."
+
+#: classes/WP_Piwik/Admin/Settings.php:101
+msgid "Piwik Mode"
+msgstr "Κατάσταση του Piwik"
+
+#: classes/WP_Piwik/Admin/Settings.php:102
+msgid "Disabled (WP-Piwik will not connect to Piwik)"
+msgstr "Ανενεργό (το WP-Piwik δεν συνδέεται με το Piwik)"
+
+#: classes/WP_Piwik/Admin/Settings.php:108
+msgid "Piwik URL"
+msgstr "Piwik URL"
+
+#: classes/WP_Piwik/Admin/Settings.php:108
+msgid ""
+"Enter your Piwik URL. This is the same URL you use to access your Piwik "
+"instance, e.g. http://www.example.com/piwik/."
+msgstr "Εισάγετε τη διεύθυνση URL του Piwik. Αυτή είναι η ίδια διεύθυνση URL που χρησιμοποιείτε για να προσπελάσετε το στιγμιότυπο Piwik σας, πχ. http://www.example.com/piwik/."
+
+#: classes/WP_Piwik/Admin/Settings.php:109
+msgid "Piwik path"
+msgstr "Διαδρομή του Piwik"
+
+#: classes/WP_Piwik/Admin/Settings.php:109
+msgid "Enter the file path to your Piwik instance, e.g. /var/www/piwik/."
+msgstr "Εισάγετε την πλήρη διαδρομή για το στιγμιότυπο του Piwik σας, πχ. /var/www/piwik."
+
+#: classes/WP_Piwik/Admin/Settings.php:110
+msgid "Piwik user"
+msgstr "Χρήστης του Piwik"
+
+#: classes/WP_Piwik/Admin/Settings.php:110
+msgid ""
+"Enter your Piwik Pro username. It is also part of your URL: "
+"http://USERNAME.piwik.pro."
+msgstr "Εισάγετε το όνομα χρήστη για το Piwik Pro. Αυτό αποτελεί επίσης μέρος και της διεύθυνσης URL: http://USERNAME.piwik.pro."
+
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid "Auth token"
+msgstr "Σύμβολο γνησιότητας"
+
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid ""
+"Enter your Piwik auth token here. It is an alphanumerical code like "
+"0a1b2c34d56e78901fa2bc3d45678efa."
+msgstr "Εισάγετε εδώ τον κωδικό πιστοποίησης του Piwik. Είναι ένας αλφαριθμητικός κωδικός σαν το 0a1b2c34d56e78901fa2bc3d45678efa."
+
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid "See %sWP-Piwik FAQ%s."
+msgstr "Δείτε τις %sΣυχνές ερωταπαντήσεις του WP-Piwik%s."
+
+#: classes/WP_Piwik/Admin/Settings.php:116
+msgid "Auto config"
+msgstr "Αυτόματη ρύθμιση"
+
+#: classes/WP_Piwik/Admin/Settings.php:116
+msgid ""
+"Check this to automatically choose your blog from your Piwik sites by URL. "
+"If your blog is not added to Piwik yet, WP-Piwik will add a new site."
+msgstr "Επιλέξτε αυτό για να γίνεται αυτόματη επιλογή του ιστολογίου σας από τους ιστοτόπους σας του Piwik με τη διεύθυνση URL. Αν το ιστολόγιό σας δεν έχει προστεθεί ακόμη, το WP-Piwik θα προσθέσει αυτόματα ένα νέο ιστοτόπο."
+
+#: classes/WP_Piwik/Admin/Settings.php:127
+msgid "Determined site"
+msgstr "Ιστοτόπος που εντοπίστηκε"
+
+#: classes/WP_Piwik/Admin/Settings.php:132
+msgid "Select site"
+msgstr "Επιλέξτε ιστοτόπο"
+
+#: classes/WP_Piwik/Admin/Settings.php:140
+msgid "Piwik default date"
+msgstr "Προκαθορισμένη ημερομηνία Piwik"
+
+#: classes/WP_Piwik/Admin/Settings.php:141
+#: classes/WP_Piwik/Admin/Settings.php:154
+msgid "Today"
+msgstr "Σήμερα"
+
+#: classes/WP_Piwik/Admin/Settings.php:142
+#: classes/WP_Piwik/Admin/Settings.php:153
+msgid "Yesterday"
+msgstr "Εχθές"
+
+#: classes/WP_Piwik/Admin/Settings.php:143
+msgid "Current month"
+msgstr "Τρέχων μήνας"
+
+#: classes/WP_Piwik/Admin/Settings.php:144
+msgid "Last month"
+msgstr "Προηγούμενος μήνας"
+
+#: classes/WP_Piwik/Admin/Settings.php:145
+msgid "Current week"
+msgstr "Τρέχουσα εβδομάδα"
+
+#: classes/WP_Piwik/Admin/Settings.php:146
+msgid "Last week"
+msgstr "Προηγούμενη εβδομάδα"
+
+#: classes/WP_Piwik/Admin/Settings.php:147
+msgid "Default date shown on statistics page."
+msgstr "Προεπιλεγμένη ημερομηνία που αναγράφεται στη σελίδα των στατιστικών."
+
+#: classes/WP_Piwik/Admin/Settings.php:149
+msgid "Show SEO data"
+msgstr "Εμφάνιση των δεδομένων SEO"
+
+#: classes/WP_Piwik/Admin/Settings.php:149
+msgid "Display SEO ranking data on statistics page."
+msgstr "Εμφάνιση των δεδομένων κατάταξης SEO στη σελίδα στατιστικών."
+
+#: classes/WP_Piwik/Admin/Settings.php:149
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Slow!"
+msgstr "Αργό!"
+
+#: classes/WP_Piwik/Admin/Settings.php:151
+msgid "Dashboard overview"
+msgstr "Σύνοψη πίνακα"
+
+#: classes/WP_Piwik/Admin/Settings.php:152
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:192
+#: classes/WP_Piwik/Admin/Settings.php:213
+#: classes/WP_Piwik/Admin/Settings.php:304
+msgid "Disabled"
+msgstr "Ανενεργό"
+
+#: classes/WP_Piwik/Admin/Settings.php:155
+msgid "Last 30 days"
+msgstr "Προηγούμενες 30 ημέρες"
+
+#: classes/WP_Piwik/Admin/Settings.php:156
+msgid "Enable WP-Piwik dashboard widget &quot;Overview&quot;."
+msgstr "Ενεργοποίηση της &quot;Σύνοψης&quot; του πίνακα του γραφικού συστατικού WP-Piwik."
+
+#: classes/WP_Piwik/Admin/Settings.php:158
+msgid "Dashboard graph"
+msgstr "Γράφημα πίνακα"
+
+#: classes/WP_Piwik/Admin/Settings.php:158
+msgid "Enable WP-Piwik dashboard widget &quot;Graph&quot;."
+msgstr "Ενεργοποίηση του &quot;γραφικού&quot; συστατικού πίνακα του WP-Piwik."
+
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Dashboard SEO"
+msgstr "SEO πίνακα"
+
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Enable WP-Piwik dashboard widget &quot;SEO&quot;."
+msgstr "Ενεργοποίηση του γραφικού συστατικού &quot;SEO&quot; του πίνακα ελέγχου του WP-Piwik."
+
+#: classes/WP_Piwik/Admin/Settings.php:162
+msgid "Show graph on WordPress Toolbar"
+msgstr "Εμφάνιση γραφήματος στην μπάρα εργαλείων του WordPress"
+
+#: classes/WP_Piwik/Admin/Settings.php:162
+msgid "Display a last 30 days visitor graph on WordPress' toolbar."
+msgstr "Εμφάνιση του γραφήματος επισκέψεων για τις τελευταίες 30 ημέρες στην μπάρα εργαλείων του WordPress."
+
+#: classes/WP_Piwik/Admin/Settings.php:164
+msgid "Display stats to"
+msgstr "Εμφάνιση στατιστικών σε"
+
+#: classes/WP_Piwik/Admin/Settings.php:171
+msgid "Choose user roles allowed to see the statistics page."
+msgstr "Επιλέξτε τους ρόλους χρηστών, οι οποίοι επιτρέπεται να βλέπουν τα στατιστικά."
+
+#: classes/WP_Piwik/Admin/Settings.php:173
+msgid "Show per post stats"
+msgstr "Εμφάνιση στατιστικών ανά καταχώρηση"
+
+#: classes/WP_Piwik/Admin/Settings.php:173
+msgid "Show stats about single posts at the post edit admin page."
+msgstr "Εμφάνιση στατιστικών για μεμονωμένες καταχωρήσεις στη σελίδα διαχείρισης της καταχώρησης."
+
+#: classes/WP_Piwik/Admin/Settings.php:175
+msgid "Piwik shortcut"
+msgstr "Συντόμευση Piwik"
+
+#: classes/WP_Piwik/Admin/Settings.php:175
+msgid "Display a shortcut to Piwik itself."
+msgstr "Εμφάνιση μιας συντόμευσης προς Piwik."
+
+#: classes/WP_Piwik/Admin/Settings.php:177
+msgid "WP-Piwik display name"
+msgstr "Εμφανιζόμενο όνομα WP-Piwik"
+
+#: classes/WP_Piwik/Admin/Settings.php:177
+msgid "Plugin name shown in WordPress."
+msgstr "Το όνομα του πρόσθετου που θα εμφανίζεται στο WordPress."
+
+#: classes/WP_Piwik/Admin/Settings.php:179
+msgid "Enable shortcodes"
+msgstr "Ενεργοποίηση σύντομων κωδικών"
+
+#: classes/WP_Piwik/Admin/Settings.php:179
+msgid "Enable shortcodes in post or page content."
+msgstr "Ενεργοποίηση σύντομων κωδικών στο περιεχόμενο καταχωρήσεων ή σελίδων."
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "You can choose between four tracking code modes:"
+msgstr "Μπορείτε να επιλέξετε μεταξύ τεσσάρων καταστάσεων κωδικών παρακολούθησης:"
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"WP-Piwik will not add the tracking code. Use this, if you want to add the "
+"tracking code to your template files or you use another plugin to add the "
+"tracking code."
+msgstr "Το WP-Piwik δεν θα προσθέσει τον κώδικα παρακολούθησης. Χρησιμοποιήστε το αυτό, αν θέλετε να προσθέτετε τον κώδικα παρακολούθησης στα αρχεία προτύπων ή χρησιμοποιείτε κάποιο άλλο πρόσθετο για την προσθήκη του κώδικα."
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:193
+msgid "Default tracking"
+msgstr "Προκαθορισμένη παρακολούθηση"
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "WP-Piwik will use Piwik's standard tracking code."
+msgstr "Το WP-Piwik θα χρησιμοποιήσει τον προκαθορισμένο κώδικα παρακολούθησης του Piwik."
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:194
+msgid "Use js/index.php"
+msgstr "Χρήση του js/index.php"
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"You can choose this tracking code, to deliver a minified proxy code and to "
+"avoid using the files called piwik.js or piwik.php."
+msgstr "Μπορείτε να επιλέξετε αυτό τον κώδικα παρακολούθησης, για να παρέχετε ένα ελαχιστοποιημένο σε μέγεθος κώδικα μεσολαβητή και να αποφύγετε την χρήση των αρχείων piwik.js ή piwik.php."
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "See %sreadme file%s."
+msgstr "Δείτε το %sαρχείο readme%s."
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:195
+msgid "Use proxy script"
+msgstr "Χρήση σεναρίου διαμεσολαβητή"
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "Use this tracking code to not reveal the Piwik server URL."
+msgstr "Χρησιμοποιήστε αυτό τον κώδικα παρακολούθησης για να μην αποκαλύπτετε τη διεύθυνση URL του Piwik."
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:210
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid "See %sPiwik FAQ%s."
+msgstr "Δείτε τις %sσυχνές ερωταπαντήσεις του Piwik%s."
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:196
+msgid "Enter manually"
+msgstr "Εισάγετε χειροκίνητα"
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"Enter your own tracking code manually. You can choose one of the prior "
+"options, pre-configure your tracking code and switch to manually editing at "
+"last."
+msgstr "Εισάγετε μόνοι σας τον κώδικα παρακολούθησης. Μπορείτε να επιλέξετε μία από τις προηγούμενες επιλογές, να προρυθμίσετε τον κώδικά σας και τέλος να μεταβείτε σε κατάσταση επεξεργασίας."
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "Use the placeholder {ID} to add the Piwik site ID."
+msgstr "Χρήση του κωδικού (ID) για την προσθήκη του αναγνωριστικού ιστοτόπου του Piwik."
+
+#: classes/WP_Piwik/Admin/Settings.php:191
+msgid "Add tracking code"
+msgstr "Προσθήκη κώδικα παρακολούθησης"
+
+#: classes/WP_Piwik/Admin/Settings.php:199
+msgid "Tracking code"
+msgstr "Κώδικας παρακολούθησης"
+
+#: classes/WP_Piwik/Admin/Settings.php:201
+msgid "JavaScript code position"
+msgstr "Θέση του κώδικα JavaScript"
+
+#: classes/WP_Piwik/Admin/Settings.php:202
+msgid "Footer"
+msgstr "Υποσέλιδο"
+
+#: classes/WP_Piwik/Admin/Settings.php:203
+msgid "Header"
+msgstr "Κεφαλίδα"
+
+#: classes/WP_Piwik/Admin/Settings.php:204
+msgid ""
+"Choose whether the JavaScript code is added to the footer or the header."
+msgstr "Επιλέξτε αν ο κώδικας JavaScript θα προστίθεται στο υποσέλιδο ή την κεφαλίδα."
+
+#: classes/WP_Piwik/Admin/Settings.php:206
+msgid "Noscript code"
+msgstr "Κώδικας noscript"
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+msgid "Add &lt;noscript&gt;"
+msgstr "Προσθήκη του &lt;noscript&gt;"
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+msgid "Adds the &lt;noscript&gt; code to your footer."
+msgstr "Προσθέτει τον κώδικα &lt;noscript&gt; στο υποσέλιδο."
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Disabled in proxy mode."
+msgstr "Απενεργοποιημένο σε κατάσταση διαμεσολαβητή."
+
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Add rec parameter to noscript code"
+msgstr "Προσθήκη παραμέτρου rec στον κώδικα noscript"
+
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Enable tracking for visitors without JavaScript (not recommended)."
+msgstr "Να ενεργοποιηθεί η παρακολούθηση για επισκέπτες χωρίς JavaScript (δεν προτείνεται)."
+
+#: classes/WP_Piwik/Admin/Settings.php:212
+msgid "Enable content tracking"
+msgstr "Ενεργοποίηση παρακολούθησης περιεχομένου"
+
+#: classes/WP_Piwik/Admin/Settings.php:214
+msgid "Track all content blocks"
+msgstr "Να παρακολουθούνται όλα τα μπλοκ περιεχομένου"
+
+#: classes/WP_Piwik/Admin/Settings.php:215
+msgid "Track only visible content blocks"
+msgstr "Να παρακολουθούνται μόνο τα ορατά μπλοκ"
+
+#: classes/WP_Piwik/Admin/Settings.php:216
+msgid ""
+"Content tracking allows you to track interaction with the content of a web "
+"page or application."
+msgstr "Η παρακολούθηση περιεχομένου σας επιτρέπει να παρακολουθείτε την αλληλεπίδραση με το περιεχόμενο μιας ιστοσελίδας ή εφαρμογής."
+
+#: classes/WP_Piwik/Admin/Settings.php:216
+#: classes/WP_Piwik/Admin/Settings.php:218
+#: classes/WP_Piwik/Admin/Settings.php:222
+#: classes/WP_Piwik/Admin/Settings.php:224
+#: classes/WP_Piwik/Admin/Settings.php:226
+#: classes/WP_Piwik/Admin/Settings.php:247
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "See %sPiwik documentation%s."
+msgstr "Δείτε την %sτεκμηρίωση του Piwik%s."
+
+#: classes/WP_Piwik/Admin/Settings.php:218
+msgid "Track search"
+msgstr "Παρακολούθηση της αναζήτησης"
+
+#: classes/WP_Piwik/Admin/Settings.php:218
+msgid "Use Piwik's advanced Site Search Analytics feature."
+msgstr "Να γίνεται χρήση του χαρακτηριστικού των προχωρημένων Αναλυτικών Αναζήτησης Ιστοτόπου."
+
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid "Track 404"
+msgstr "Παρακολούθηση 404"
+
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid ""
+"WP-Piwik can automatically add a 404-category to track 404-page-visits."
+msgstr "Το WP-Piwik μπορεί να προσθέτει αυτόματα μια 404-κατηγορία για να παρακολουθούνται οι επισκέψεις 404."
+
+#: classes/WP_Piwik/Admin/Settings.php:222
+msgid "Add annotation on new post"
+msgstr "Προσθήκη σχολιασμού σε νέα καταχώρηση"
+
+#: classes/WP_Piwik/Admin/Settings.php:222
+msgid "Add a Piwik annotation on each new post."
+msgstr "Προσθήκη ενός σχολιασμού Piwik σε κάθε νέα καταχώρηση."
+
+#: classes/WP_Piwik/Admin/Settings.php:224
+msgid "Show custom variables box"
+msgstr "Εμφάνιση του κουτιού προσαρμοσμένων μεταβλητών"
+
+#: classes/WP_Piwik/Admin/Settings.php:224
+msgid " Show a &quot;custom variables&quot; edit box on post edit page."
+msgstr "Να εμφανίζεται ένα κουτί επεξεργασίας &quot;προσαρμοσμένων μεταβλητών&quot; στη σελίδα επεξεργασίας της καταχώρησης."
+
+#: classes/WP_Piwik/Admin/Settings.php:226
+msgid "Add new file types for download tracking"
+msgstr "Προσθήκη νέων τύπων αρχείων για την παρακολούθηση των κατεβασμάτων"
+
+#: classes/WP_Piwik/Admin/Settings.php:226
+msgid ""
+"Add file extensions for download tracking, divided by a vertical bar "
+"(&#124;)."
+msgstr "Προσθήκη επεκτάσεων αρχείων για την παρακολούθηση των κατεβασμάτων, χωρισμένα με τον χαρακτήρας της κάθετης μπάρας (&#124;)."
+
+#: classes/WP_Piwik/Admin/Settings.php:228
+msgid "Disable cookies"
+msgstr "Απενεργοποίηση των cookies"
+
+#: classes/WP_Piwik/Admin/Settings.php:228
+msgid "Disable all tracking cookies for a visitor."
+msgstr "Απενεργοποίηση όλων των cookies παρακολούθησης για ένα επισκέπτη."
+
+#: classes/WP_Piwik/Admin/Settings.php:230
+msgid "Limit cookie lifetime"
+msgstr "Περιορισμός του χρόνου ζωής των cookies"
+
+#: classes/WP_Piwik/Admin/Settings.php:230
+msgid ""
+"You can limit the cookie lifetime to avoid tracking your users over a longer"
+" period as necessary."
+msgstr "Μπορείτε να περιορίσετε το χρονικό όριο ισχύος των cookies για να μην παρακολουθείτετους χρήστες σας για ένα συγκεκριμένο χρονικό διάστημα όπως απαιτείται."
+
+#: classes/WP_Piwik/Admin/Settings.php:232
+msgid "Visitor timeout (seconds)"
+msgstr "Χρόνος λήξης επισκεπτών (δευτερόλεπτα)"
+
+#: classes/WP_Piwik/Admin/Settings.php:234
+msgid "Session timeout (seconds)"
+msgstr "Χρόνος λήξης συνόδου (δευτερόλεπτα)"
+
+#: classes/WP_Piwik/Admin/Settings.php:236
+msgid "Referral timeout (seconds)"
+msgstr "Χρονικό όριο αναφορέα (δευτερόλεπτα)"
+
+#: classes/WP_Piwik/Admin/Settings.php:238
+msgid "Track admin pages"
+msgstr "Παρακολούθηση των σελίδων διαχείρισης"
+
+#: classes/WP_Piwik/Admin/Settings.php:238
+msgid ""
+"Enable to track users on admin pages (remember to configure the tracking "
+"filter appropriately)."
+msgstr "Ενεργοποιήστε για να παρακολουθείτε τους χρήστες στις σελίδες διαχείρισης (θυμηθείτε να ρυθμίσετε ανάλογα το φίλτρο παρακολούθησης)."
+
+#: classes/WP_Piwik/Admin/Settings.php:241
+msgid "Tracking filter"
+msgstr "Φίλτρο Παρακολούθησης"
+
+#: classes/WP_Piwik/Admin/Settings.php:245
+msgid "Choose users by user role you do <strong>not</strong> want to track."
+msgstr "Επιλέξτε το ρόλο χρήστη, τον οποίο <strong>δε</strong> θέλετε να παρακολουθήσετε."
+
+#: classes/WP_Piwik/Admin/Settings.php:247
+msgid "Track subdomains in the same website"
+msgstr "Να παρακολουθούνται τα υπο-ονόματα χώρου στον ίδιο ιστοτόπο"
+
+#: classes/WP_Piwik/Admin/Settings.php:247
+msgid "Adds *.-prefix to cookie domain."
+msgstr "Προσθέτει την κατάληξη *.-prefix στα cookies ονομάτων χώρου."
+
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "Do not count subdomains as outlink"
+msgstr "Να μην μετρώνται τα υπο-ονόματα χώρου ως εξωτερικοί σύνδεσμοι"
+
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "Adds *.-prefix to tracked domain."
+msgstr "Προσθέτει το πρόθεμα *.-prefix στον ιστοτόπο που παρακολουθείται."
+
+#: classes/WP_Piwik/Admin/Settings.php:251
+msgid "Track RSS feeds"
+msgstr "Παρακολούθηση των δεδομένων ροών RSS"
+
+#: classes/WP_Piwik/Admin/Settings.php:251
+msgid "Enable to track posts in feeds via tracking pixel."
+msgstr "Ενεργοποίηση της παρακολούθησης των καταχωρήσεων στις ροές μέσω ενός pixel παρακολούθησης."
+
+#: classes/WP_Piwik/Admin/Settings.php:253
+msgid "Track RSS feed links as campaign"
+msgstr "Παρακολούθηση των συνδέσμων ροών RSS ως καμπάνια"
+
+#: classes/WP_Piwik/Admin/Settings.php:255
+msgid "RSS feed campaign"
+msgstr "Καμπάνια ροών RSS"
+
+#: classes/WP_Piwik/Admin/Settings.php:255
+msgid "Keyword: post name."
+msgstr "Λέξη κλειδί: όνομα καταχώρησης."
+
+#: classes/WP_Piwik/Admin/Settings.php:257
+msgid "Enable heartbeat timer"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:257
+msgid ""
+"Enable a heartbeat timer to get more accurate visit lengths by sending "
+"periodical HTTP ping requests as long as the site is opened. Enter the time "
+"between the pings in seconds (Piwik default: 15) to enable or 0 to disable "
+"this feature. <strong>Note:</strong> This will cause a lot of additional "
+"HTTP requests on your site."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:262
+msgid ""
+"Usually, you do not need to change these settings. If you want to do so, you"
+" should know what you do or you got an expert's advice."
+msgstr "Συνήθως, δε χρειάζεται να αλλάξετε αυτές τις ρυθμίσεις. Αν επιθυμείτε να το κάνετε, θα πρέπει να γνωρίζετε τι κάνετε ή να πάρετε τη γνώμη ενός ειδικού."
+
+#: classes/WP_Piwik/Admin/Settings.php:264
+msgid "Enable cache"
+msgstr "Ενεργοποίηση λανθάνουσας μνήμης"
+
+#: classes/WP_Piwik/Admin/Settings.php:264
+msgid "Cache API calls, which not contain today's values, for a week."
+msgstr "Οι κλήσεις API, που δεν περιέχουν τις σημερινές τιμές, να μπαίνουν στη λανθάνουσα μνήμη για μια εβδομάδα."
+
+#: classes/WP_Piwik/Admin/Settings.php:267
+msgid "HTTP connection via"
+msgstr "Σύνδεση HTTP μέσω"
+
+#: classes/WP_Piwik/Admin/Settings.php:268
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "cURL"
+msgstr "cURL"
+
+#: classes/WP_Piwik/Admin/Settings.php:269
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "fopen"
+msgstr "fopen"
+
+#: classes/WP_Piwik/Admin/Settings.php:270
+msgid ""
+"Choose whether WP-Piwik should use cURL or fopen to connect to Piwik in HTTP"
+" or Pro mode."
+msgstr "Επιλέξτε αν το WP-Piwik θα χρησιμοποιεί cURL ή το fopen για να συνδέεται με το Piwik σε κατάσταση HTTP ή Pro."
+
+#: classes/WP_Piwik/Admin/Settings.php:272
+msgid "HTTP method"
+msgstr "Μέθοδος HTTP"
+
+#: classes/WP_Piwik/Admin/Settings.php:273
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "POST"
+msgstr "POST"
+
+#: classes/WP_Piwik/Admin/Settings.php:274
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "GET"
+msgstr "GET"
+
+#: classes/WP_Piwik/Admin/Settings.php:275
+msgid "Choose whether WP-Piwik should use POST or GET in HTTP or Pro mode."
+msgstr "Επιλέξτε αν το WP-Piwik θα χρησιμοποιεί POST ή GET σε κατάσταση HTTP ή Pro."
+
+#: classes/WP_Piwik/Admin/Settings.php:277
+msgid "Disable time limit"
+msgstr "Απενεργοποίηση χρονικού ορίου"
+
+#: classes/WP_Piwik/Admin/Settings.php:277
+msgid "Use set_time_limit(0) if stats page causes a time out."
+msgstr "Χρήση της set_time_limit(0) αν η σελίδα στατιστικών προκαλέσει υπέρβαση χρονικού ορίου."
+
+#: classes/WP_Piwik/Admin/Settings.php:279
+msgid "Connection timeout"
+msgstr "Χρονικό όριο"
+
+#: classes/WP_Piwik/Admin/Settings.php:281
+msgid "Disable SSL peer verification"
+msgstr "Απενεργοποίηση της ομότιμης επαλήθευσης SSL"
+
+#: classes/WP_Piwik/Admin/Settings.php:281
+msgid "not recommended"
+msgstr "δε συνίσταται"
+
+#: classes/WP_Piwik/Admin/Settings.php:283
+msgid "User agent"
+msgstr "Πρόγραμμα πελάτης"
+
+#: classes/WP_Piwik/Admin/Settings.php:284
+msgid "Use the PHP default user agent"
+msgstr "Χρήση του προκαθορισμένου πράκτορα χρήστη της PHP"
+
+#: classes/WP_Piwik/Admin/Settings.php:284
+msgid "empty"
+msgstr "κενό"
+
+#: classes/WP_Piwik/Admin/Settings.php:285
+msgid "Define a specific user agent"
+msgstr "Ορισμός συγκεκριμένου πράκτορα χρήστη"
+
+#: classes/WP_Piwik/Admin/Settings.php:287
+msgid "Specific user agent"
+msgstr "Συγκεκριμένος πράκτορας χρήστη"
+
+#: classes/WP_Piwik/Admin/Settings.php:289
+msgid "Add data-cfasync=false"
+msgstr "Προσθήκη του data-cfasync=false"
+
+#: classes/WP_Piwik/Admin/Settings.php:291
+msgid "CDN URL"
+msgstr "Διεύθυνση URL του CDN"
+
+#: classes/WP_Piwik/Admin/Settings.php:293
+msgid "CDN URL (SSL)"
+msgstr "Διεύθυνση URL του CDN (SSL)"
+
+#: classes/WP_Piwik/Admin/Settings.php:295
+msgid "Force Piwik to use a specific protocol"
+msgstr "Να χρησιμοποιεί το Piwik συγκεκριμένο πρωτόκολλο"
+
+#: classes/WP_Piwik/Admin/Settings.php:296
+msgid "Disabled (default)"
+msgstr "Απενεργοποιημένο (εξ' ορισμού)"
+
+#: classes/WP_Piwik/Admin/Settings.php:297
+msgid "http"
+msgstr "http"
+
+#: classes/WP_Piwik/Admin/Settings.php:298
+msgid "https (SSL)"
+msgstr "https (SSL)"
+
+#: classes/WP_Piwik/Admin/Settings.php:299
+msgid ""
+"Choose if you want to explicitly force Piwik to use HTTP or HTTPS. Does not "
+"work with a CDN URL."
+msgstr "Επιλέξτε αν θέλετε να υποχρεώσετε το Piwik να χρησιμοποιεί HTTP ή HTTPS. Δεν δουλεύει με διεύθυνση URL για CDN."
+
+#: classes/WP_Piwik/Admin/Settings.php:301
+msgid "Update notice"
+msgstr "Σημείωση αναβάθμισης"
+
+#: classes/WP_Piwik/Admin/Settings.php:302
+msgid "Show always if WP-Piwik is updated"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:303
+msgid "Show only if WP-Piwik is updated and settings were changed"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:305
+msgid "Choose if you want to get an update notice if WP-Piwik is updated."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:466
+msgid "Donate"
+msgstr "Δωρήστε"
+
+#: classes/WP_Piwik/Admin/Settings.php:468
+msgid "If you like WP-Piwik, you can support its development by a donation:"
+msgstr "Αν σας αρέσει το WP-Piwik, μπορείτε να στηρίξετε την ανάπτυξή του με μια δωρεά:"
+
+#: classes/WP_Piwik/Admin/Settings.php:506
+msgid "My Amazon.de wishlist"
+msgstr "Η λίστα επιθυμίας μου στο Amazon.de"
+
+#: classes/WP_Piwik/Admin/Settings.php:509
+#: classes/WP_Piwik/Admin/Settings.php:556
+msgid "Please don't forget to vote the compatibility at the"
+msgstr "Παρακαλούμε μην ξεχάσετε να ψηφίσετε για την συμβατότητα στο"
+
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid "Thank you very much for your donation"
+msgstr "Ευχαριστώ για τις δωρεές"
+
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid "the Piwik team itself"
+msgstr "η ομάδα του Piwik"
+
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid ", and all people flattering this"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:541
+msgid ""
+"Graphs powered by <a href=\"http://www.jqplot.com/\">jqPlot</a> (License: "
+"GPL 2.0 and MIT) and <a "
+"href=\"http://omnipotent.net/jquery.sparkline/\">jQuery Sparklines</a> "
+"(License: New BSD License)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:542
+msgid "Metabox support inspired by"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:543
+msgid "Tabbed settings page suggested by the"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:544
+msgid "Thank you very much"
+msgstr "Ευχαριστώ πολύ"
+
+#: classes/WP_Piwik/Admin/Settings.php:544
+msgid "for your translation work"
+msgstr "για τη μετάφραση"
+
+#: classes/WP_Piwik/Admin/Settings.php:545
+msgid ""
+"Thank you very much, all users who send me mails containing criticism, "
+"commendation, feature requests and bug reports! You help me to make WP-Piwik"
+" much better."
+msgstr "Σας ευχαριστώ πολύ, όλους τους χρήστες που μου στείλατε μηνύματα που περιέχουν κριτική, επιδοκιμασία, αιτήματα για νέες λειτουργίες και αναφορές σφαλμάτων! Βοηθάτε να γίνει το WP-piwik πολύ καλύτερο."
+
+#: classes/WP_Piwik/Admin/Settings.php:546
+msgid ""
+"Thank <strong>you</strong> for using my plugin. It is the best commendation "
+"if my piece of code is really used!"
+msgstr "<strong>Σας ευχαριστώ</ strong> για τη χρήση του plugin μου. Είναι ο καλύτερος έπαινος, αν ο κώδικάς μου χρησιμοποιείται πραγματικά!"
+
+#: classes/WP_Piwik/Admin/Settings.php:555
+msgid "The best place to get help:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:555
+msgid "WP-Piwik support forum"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:558
+msgid "Debugging"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:559
+msgid ""
+"Either allow_url_fopen has to be enabled <em>or</em> cURL has to be "
+"available:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:562
+msgid "cURL is"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:563
+#: classes/WP_Piwik/Admin/Settings.php:568
+msgid "not"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:564
+msgid "available"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:567
+msgid "allow_url_fopen is"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:569
+msgid "enabled"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "is used."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:573
+msgid "Determined Piwik base URL is"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:577
+msgid "Tools"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:579
+msgid "Run testscript"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:580
+msgid "Sitebrowser"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:581
+msgid "Clear cache"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:582
+msgid "Are you sure you want to clear all settings?"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:582
+msgid "Reset WP-Piwik"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:584
+msgid "Latest support threads on WordPress.org"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:635
+msgid "Settings cleared (except connection settings)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:651
+msgid "Cache cleared."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:17
+msgid "site"
+msgstr "ιστοτόπος"
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:18
+msgid "sites"
+msgstr "ιστοτόποι"
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:24
+msgid "No site configured yet."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:29
+msgid "Blog ID"
+msgstr "Αναγνωριστικό ιστολογήματος"
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:30
+msgid "Title"
+msgstr "Τίτλος"
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:31
+msgid "URL"
+msgstr "Διεύθυνση URL"
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:32
+msgid "Site ID (Piwik)"
+msgstr "Αναγνωριστικό ιστοτόπου (Piwik)"
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:79
+msgid "Site not created yet."
+msgstr "Ο ιστοτόπος δεν έχει ακόμη δημιουργηθεί."
+
+#: classes/WP_Piwik/Admin/Statistics.php:12
+msgid "Statistics"
+msgstr "Στατιστικά"
+
+#: classes/WP_Piwik/Admin/Statistics.php:20
+msgid "Currently shown stats:"
+msgstr "Τρέχουσα προβολή στατιστικών:"
+
+#: classes/WP_Piwik/Request/Php.php:27
+msgid "Could not resolve"
+msgstr "Δεν ήταν δυνατή η επίλυση"
+
+#: classes/WP_Piwik/Request/Php.php:27
+msgid "realpath() returns false"
+msgstr "Το realpath() επιστρέφει ψευδές"
+
+#: classes/WP_Piwik/Request/Php.php:39
+msgid "Class Piwik\\FrontController does not exists."
+msgstr "Δεν υπάρχει η κλάση Piwik\\FrontController."
+
+#: classes/WP_Piwik/Request/Php.php:42
+msgid "Class Piwik\\API\\Request does not exists."
+msgstr "Δεν υπάρχει η κλάση Piwik\\API\\Request."
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:10
+msgid "Piwik Custom Variables"
+msgstr "Προσαρμοσμένες Μεταβλητές του Piwik"
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
+msgid "Name"
+msgstr "Όνομα"
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
+msgid "Value"
+msgstr "Τιμή"
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
+msgid "Set custom variables for a page view"
+msgstr "Ορισμός προσαρμοσμένων μεταβλητών για εμφάνιση σελίδας"
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:18
+msgid "Browser Details"
+msgstr "Λεπτομέρειες προγράμματος πλοήγησης"
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:37
+#: classes/WP_Piwik/Widget/Browsers.php:37
+#: classes/WP_Piwik/Widget/Chart.php:43
+#: classes/WP_Piwik/Widget/Noresult.php:23
+#: classes/WP_Piwik/Widget/Overview.php:24
+#: classes/WP_Piwik/Widget/Plugins.php:23 classes/WP_Piwik/Widget/Post.php:25
+#: classes/WP_Piwik/Widget/Screens.php:35
+#: classes/WP_Piwik/Widget/Search.php:23 classes/WP_Piwik/Widget/Seo.php:20
+#: classes/WP_Piwik/Widget/SystemDetails.php:33
+#: classes/WP_Piwik/Widget/Systems.php:33
+#: classes/WP_Piwik/Widget/Visitors.php:35 classes/WP_Piwik/Widget.php:91
+msgid "Piwik error"
+msgstr "Σφάλμα του Piwik"
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+msgid "Browser"
+msgstr "Browser"
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+#: classes/WP_Piwik/Widget/Screens.php:37
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+#: classes/WP_Piwik/Widget/Visitors.php:57 classes/WP_Piwik/Widget.php:100
+msgid "Unique"
+msgstr "Μοναδικοί"
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+#: classes/WP_Piwik/Widget/Plugins.php:25
+#: classes/WP_Piwik/Widget/Screens.php:37
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+msgid "Percent"
+msgstr "Τοις εκατό"
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:66
+#: classes/WP_Piwik/Widget/Browsers.php:66
+#: classes/WP_Piwik/Widget/Screens.php:64
+#: classes/WP_Piwik/Widget/SystemDetails.php:62
+#: classes/WP_Piwik/Widget/Systems.php:62
+msgid "Others"
+msgstr "Άλλοι"
+
+#: classes/WP_Piwik/Widget/Browsers.php:18
+msgid "Browsers"
+msgstr "Προγράμματα πλοήγησης"
+
+#: classes/WP_Piwik/Widget/Chart.php:19
+#: classes/WP_Piwik/Widget/Overview.php:41 classes/WP_Piwik/Widget/Post.php:37
+#: classes/WP_Piwik/Widget/Visitors.php:17
+msgid "Visitors"
+msgstr "Επισκέπτες"
+
+#: classes/WP_Piwik/Widget/Chart.php:71
+msgid ""
+"The graph contains the values shown in the table below (visitors / unique / "
+"bounces). The red line show a linear trendline (unique)."
+msgstr "Το γράφημα περιέχει τις τιμές που εμφανίζονται στον παρακάτω πίνακα (επισκέπτες / μοναδικοί / αναπηδήσεις). Η κόκκινη γραμμή εμφανίζει μια γραμμική τάση (μοναδικοί)."
+
+#: classes/WP_Piwik/Widget/Keywords.php:16
+msgid "Keywords"
+msgstr "Λέξεις κλειδιά"
+
+#: classes/WP_Piwik/Widget/Noresult.php:16
+#: classes/WP_Piwik/Widget/Search.php:16
+msgid "Site Search"
+msgstr "Αναζήτηση ιστοτόπου"
+
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+msgid "Keyword"
+msgstr "Λέξη κλειδί"
+
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+msgid "Requests"
+msgstr "Αιτήσεις"
+
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Bounced"
+msgstr "Εγκατέλειψαν"
+
+#: classes/WP_Piwik/Widget/Overview.php:17 classes/WP_Piwik/Widget/Post.php:18
+msgid "Overview"
+msgstr "Επισκόπηση"
+
+#: classes/WP_Piwik/Widget/Overview.php:42 classes/WP_Piwik/Widget/Post.php:38
+msgid "Unique visitors"
+msgstr "Μοναδικοί επισκέπτες"
+
+#: classes/WP_Piwik/Widget/Overview.php:43 classes/WP_Piwik/Widget/Post.php:39
+msgid "Page views"
+msgstr "Προβολές σελίδων"
+
+#: classes/WP_Piwik/Widget/Overview.php:44 classes/WP_Piwik/Widget/Post.php:40
+msgid "Total time spent"
+msgstr "Συνολικός χρόνος"
+
+#: classes/WP_Piwik/Widget/Overview.php:45 classes/WP_Piwik/Widget/Post.php:42
+msgid "Bounce count"
+msgstr "Αριθμός που εγκατέλειψαν"
+
+#: classes/WP_Piwik/Widget/Overview.php:48 classes/WP_Piwik/Widget/Post.php:41
+msgid "Time/visit"
+msgstr "Χρόνος/Επίσκεψη"
+
+#: classes/WP_Piwik/Widget/Overview.php:48
+msgid "Max. page views in one visit"
+msgstr "Ανώτατο όριο προβολών σελίδων σε μια επίσκεψη"
+
+#: classes/WP_Piwik/Widget/Overview.php:49 classes/WP_Piwik/Widget/Post.php:46
+msgid "Shortcut"
+msgstr "Συντόμευση"
+
+#: classes/WP_Piwik/Widget/Pages.php:16
+msgid "Pages"
+msgstr "Σελίδες"
+
+#: classes/WP_Piwik/Widget/Plugins.php:16
+msgid "Plugins"
+msgstr "Plugins"
+
+#: classes/WP_Piwik/Widget/Plugins.php:25
+msgid "Plugin"
+msgstr "Πρόσθετο"
+
+#: classes/WP_Piwik/Widget/Plugins.php:25
+#: classes/WP_Piwik/Widget/Visitors.php:57 classes/WP_Piwik/Widget.php:102
+msgid "Visits"
+msgstr "Επισκέψεις"
+
+#: classes/WP_Piwik/Widget/Post.php:43
+msgid "Min. generation time"
+msgstr "Ελάχιστος χρόνος δημιουργίας"
+
+#: classes/WP_Piwik/Widget/Post.php:44
+msgid "Max. generation time"
+msgstr "Μέγιστος χρόνος δημιουργίας"
+
+#: classes/WP_Piwik/Widget/Referrers.php:16
+msgid "Referrers"
+msgstr "Αναφορείς"
+
+#: classes/WP_Piwik/Widget/Screens.php:16
+msgid "Resolutions"
+msgstr "Αναλύσεις"
+
+#: classes/WP_Piwik/Widget/Screens.php:37
+msgid "Resolution"
+msgstr "Ανάλυση"
+
+#: classes/WP_Piwik/Widget/Seo.php:13
+msgid "SEO"
+msgstr "SEO"
+
+#: classes/WP_Piwik/Widget/SystemDetails.php:14
+msgid "Operation System Details"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+msgid "Operation System"
+msgstr "Σύστημα ενέργειας"
+
+#: classes/WP_Piwik/Widget/Systems.php:14
+msgid "Operation Systems"
+msgstr "Συστήματα ενεργειών"
+
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Date"
+msgstr "Ημερομηνία"
+
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Page Views"
+msgstr "Εμφανίσεις σελίδας"
+
+#: classes/WP_Piwik/Widget.php:104
+msgid "Hits"
+msgstr "Επισκέψεις"
+
+#: classes/WP_Piwik/Widget.php:106
+msgid "Actions"
+msgstr "Ενέργειες"
+
+#: classes/WP_Piwik/Widget.php:162
+msgid "No data available."
+msgstr "Δεν υπάρχουν διαθέσιμα στοιχεία."
+
+#: classes/WP_Piwik/Widget.php:293
+msgid "week"
+msgstr "εβδομάδα"
+
+#: classes/WP_Piwik.php:193
+msgid "%s %s installed."
+msgstr "Το %s %s εγκαταστάθηκε."
+
+#: classes/WP_Piwik.php:193
+msgid "Next you should connect to Piwik"
+msgstr "Στη συνέχεια συνδεθείτε με Piwik"
+
+#: classes/WP_Piwik.php:227
+msgid "%s updated to %s."
+msgstr "Το %s ενημερώθηκε σε %s."
+
+#: classes/WP_Piwik.php:227
+msgid "Please validate your configuration"
+msgstr "Παρακαλώ επαληθεύστε τη διαμόρφωση"
+
+#: classes/WP_Piwik.php:259 classes/WP_Piwik.php:481
+msgid "Settings"
+msgstr "Ρυθμίσεις"
+
+#: classes/WP_Piwik.php:262
+msgid "Important"
+msgstr "Σημαντικό"
+
+#: classes/WP_Piwik.php:343 classes/WP_Piwik.php:365
+msgid "Piwik Statistics"
+msgstr "Piwik Στατιστικά"
+
+#: classes/WP_Piwik.php:453
+msgid "Configure WP-Piwik"
+msgstr ""
+
+#: classes/WP_Piwik.php:923
+msgid "An error occured"
+msgstr "Παρουσιάστηκε σφάλμα"
+
+#: classes/WP_Piwik.php:1191
+msgid "Cheatin&#8217; uh?"
+msgstr "Κλέβεις, έτσι;"
+
+#: wp-piwik.php:60
+msgid ""
+"WP-Piwik requires at least PHP 5.3. You are using the deprecated version %s."
+" Please update PHP to use WP-Piwik."
+msgstr "Το WP-Piwik απαιτεί τουλάχιστον PHP 5.3. Χρησιμοποιείτε την παρωχημένη έκδοση %s. Παρακαλώ αναβαθμίστε την PHP για να εκτελείται το WP-Piwik."
+
+#. Plugin Name of the plugin/theme
+msgid "WP-Piwik"
+msgstr "WP-Piwik"
+
+#. Plugin URI of the plugin/theme
+msgid "http://wordpress.org/extend/plugins/wp-piwik/"
+msgstr "http://wordpress.org/extend/plugins/wp-piwik/"
+
+#. Description of the plugin/theme
+msgid ""
+"Adds Piwik stats to your dashboard menu and Piwik code to your wordpress "
+"header."
+msgstr ""
+
+#. Author of the plugin/theme
+msgid "Andr&eacute; Br&auml;kling"
+msgstr "Andr&eacute; Br&auml;kling"
+
+#. Author URI of the plugin/theme
+msgid "http://www.braekling.de"
+msgstr "http://www.braekling.de"
diff --git a/wp-content/plugins/wp-piwik/languages/wp-piwik-es_ES.mo b/wp-content/plugins/wp-piwik/languages/wp-piwik-es_ES.mo
index f07de716af83deb044546b77b9f5229c147667eb..aaa13ece6cf4d12214275203b8959b91f9fd222c 100644
Binary files a/wp-content/plugins/wp-piwik/languages/wp-piwik-es_ES.mo and b/wp-content/plugins/wp-piwik/languages/wp-piwik-es_ES.mo differ
diff --git a/wp-content/plugins/wp-piwik/languages/wp-piwik-es_ES.po b/wp-content/plugins/wp-piwik/languages/wp-piwik-es_ES.po
index 678a7743a755ac0a46326b67bf4f8f836bac23e0..a39bec7381699adbb1e47f7ecd6e2bd4c51806d5 100644
--- a/wp-content/plugins/wp-piwik/languages/wp-piwik-es_ES.po
+++ b/wp-content/plugins/wp-piwik/languages/wp-piwik-es_ES.po
@@ -1,485 +1,1265 @@
-# Translation of the WordPress plugin WP-Piwik 0.8.0 by Andr&eacute; Br&auml;kling.
-# Copyright (C) 2010 Andr&eacute; Br&auml;kling
+# Copyright (C) 2015 WP-Piwik
 # This file is distributed under the same license as the WP-Piwik package.
-# Andr&eacute; Br&auml;kling <webmaster@braekling.de>, 2011.
-#
+# Translators:
+# Andr&eacute; Br&auml;kling <webmaster@braekling.de>, 2011
 msgid ""
 msgstr ""
-"Project-Id-Version: WP-Piwik 0.8.4\n"
-"Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-piwik\n"
-"POT-Creation-Date: 2010-07-19 18:06+0000\n"
-"PO-Revision-Date: 2012-05-12 19:00+0100\n"
-"Last-Translator: \n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"Project-Id-Version: WP-Piwik\n"
+"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-piwik\n"
+"POT-Creation-Date: 2015-07-22 10:25:29+00:00\n"
+"PO-Revision-Date: 2015-07-22 10:33+0000\n"
+"Last-Translator: André Bräkling\n"
+"Language-Team: Spanish (Spain) (http://www.transifex.com/projects/p/wp-piwik/language/es_ES/)\n"
 "MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
+"Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Language: es_ES\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: dashboard/browsers.php:12
-#: dashboard/browsers.php:33
-msgid "Browser"
-msgstr "Navegador"
+#: classes/WP_Piwik/Admin/Settings.php:24
+msgid "Reload"
+msgstr ""
 
-#: dashboard/browsers.php:22
-#: dashboard/pages.php:43
-#: dashboard/screens.php:22
-#: dashboard/systems.php:22
-msgid "Others"
-msgstr "Otros"
+#: classes/WP_Piwik/Admin/Settings.php:27
+msgid "Changes saved."
+msgstr ""
 
-#: dashboard/browsers.php:34
-#: dashboard/keywords.php:17
-#: dashboard/pages.php:22
-#: dashboard/screens.php:33
-#: dashboard/systems.php:35
-#: dashboard/visitors.php:53
-#: dashboard/websites.php:19
-#: wp-piwik.php:305
-msgid "Unique"
-msgstr "Único"
+#: classes/WP_Piwik/Admin/Settings.php:45
+msgid "Save Changes"
+msgstr ""
 
-#: dashboard/browsers.php:35
-#: dashboard/plugins.php:33
-#: dashboard/screens.php:34
-#: dashboard/systems.php:36
-msgid "Percent"
-msgstr "Porcentaje"
+#: classes/WP_Piwik/Admin/Settings.php:46
+msgid "Thanks for using WP-Piwik!"
+msgstr ""
 
-#: dashboard/keywords.php:12
-msgid "Keywords"
-msgstr "Palabras Clave"
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid "WP-Piwik %s is successfully connected to Piwik %s."
+msgstr ""
 
-#: dashboard/keywords.php:17
-msgid "Keyword"
-msgstr "Palabra Clave"
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid "You are running WordPress %s."
+msgstr ""
 
-#: dashboard/overview.php:12
-msgid "Overview"
-msgstr "Información General"
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid ""
+"You are running a WordPress %s blog network (WPMU). WP-Piwik will handle "
+"your sites as different websites."
+msgstr ""
 
-#: dashboard/overview.php:42
-#: dashboard/visitors.php:24
-msgid "Visitors"
-msgstr "Visitantes"
+#: classes/WP_Piwik/Admin/Settings.php:53
+msgid ""
+"WP-Piwik %s was not able to connect to Piwik using your configuration. Check"
+" the &raquo;Connect to Piwik&laquo; section below."
+msgstr ""
 
-#: dashboard/overview.php:43
-msgid "Unique visitors"
-msgstr "Visitantes Únicos"
+#: classes/WP_Piwik/Admin/Settings.php:56
+msgid ""
+"WP-Piwik %s has to be connected to Piwik first. Check the &raquo;Connect to "
+"Piwik&laquo; section below."
+msgstr ""
 
-#: dashboard/overview.php:44
-msgid "Page views"
-msgstr "Páginas vistas"
+#: classes/WP_Piwik/Admin/Settings.php:60
+msgid "Connect to Piwik"
+msgstr ""
 
-#: dashboard/overview.php:45
-msgid "Max. page views in one visit"
-msgstr "Máximo de páginas vistas durante una visita"
+#: classes/WP_Piwik/Admin/Settings.php:65
+msgid "Show Statistics"
+msgstr ""
 
-#: dashboard/overview.php:46
-msgid "Total time spent"
-msgstr "Tiempo total empleado"
+#: classes/WP_Piwik/Admin/Settings.php:69
+msgid "Enable Tracking"
+msgstr ""
 
-msgid "Time/visit"
-msgstr "Tiempo/Visita"
+#: classes/WP_Piwik/Admin/Settings.php:74
+msgid "Expert Settings"
+msgstr ""
 
-#: dashboard/overview.php:47
-msgid "Bounce count"
-msgstr "Número de rebotes"
+#: classes/WP_Piwik/Admin/Settings.php:78 classes/WP_Piwik.php:923
+msgid "Support"
+msgstr ""
 
-#: dashboard/overview.php:49
-#: wp-piwik.php:563
-msgid "Shortcut"
-msgstr "Enlace directo"
+#: classes/WP_Piwik/Admin/Settings.php:82
+msgid "Credits"
+msgstr "Créditos"
 
-#: dashboard/pages.php:13
-msgid "Pages"
-msgstr "Páginas"
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid ""
+"WP-Piwik is a WordPress plugin to show a selection of Piwik stats in your "
+"WordPress admin dashboard and to add and configure your Piwik tracking code."
+" To use this you will need your own Piwik instance. If you do not already "
+"have a Piwik setup, you have two simple options: use either"
+msgstr ""
 
-#: dashboard/pages.php:21
-msgid "Page"
-msgstr "Página"
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "Self-hosted"
+msgstr ""
 
-#: dashboard/pages.php:23
-#: dashboard/plugins.php:32
-#: dashboard/visitors.php:52
-msgid "Visits"
-msgstr "Visitas"
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "or"
+msgstr ""
 
-#: dashboard/plugins.php:12
-#: dashboard/plugins.php:31
-msgid "Plugins"
-msgstr "Plugins"
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "Cloud-hosted"
+msgstr ""
 
-#: dashboard/screens.php:12
-#: dashboard/screens.php:32
-msgid "Resolution"
-msgstr "Resolución"
+#: classes/WP_Piwik/Admin/Settings.php:98
+msgid ""
+"Neither cURL nor fopen are available. So WP-Piwik can not use the HTTP API "
+"and not connect to Piwik Pro."
+msgstr ""
 
-#: dashboard/systems.php:12
-#: dashboard/systems.php:34
-msgid "Operating System"
-msgstr "Sistema Operativo"
+#: classes/WP_Piwik/Admin/Settings.php:98
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
+msgid "More information"
+msgstr ""
 
-#: dashboard/visitors.php:51
-msgid "Date"
-msgstr "Fecha"
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid "You can choose between three connection methods:"
+msgstr ""
 
-#: dashboard/visitors.php:54
-msgid "Bounced"
-msgstr "Rebotado"
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:103
+msgid "Self-hosted (HTTP API, default)"
+msgstr ""
 
-#: dashboard/visitors.php:67
-msgid "Unique TOTAL"
-msgstr "Únicas TOTAL"
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"This is the default option for a self-hosted Piwik and should work for most "
+"configurations. WP-Piwik will connect to Piwik using http(s)."
+msgstr ""
 
-#: dashboard/visitors.php:67
-msgid "Sum"
-msgstr "Suma"
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:104
+msgid "Self-hosted (PHP API)"
+msgstr ""
 
-#: dashboard/visitors.php:67
-msgid "Avg"
-msgstr "Media"
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"Choose this, if your self-hosted Piwik and WordPress are running on the same"
+" machine and you know the full server path to your Piwik instance."
+msgstr ""
 
-#: dashboard/websites.php:12
-msgid "Websites"
-msgstr "Sitios Web"
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:105
+msgid "Cloud-hosted (Piwik Pro)"
+msgstr ""
 
-#: dashboard/websites.php:18
-msgid "Website"
-msgstr "Sitio Web"
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"If you are using a cloud-hosted Piwik by Piwik Pro, you can simply use this "
+"option."
+msgstr ""
 
-#: wp-piwik.php:110
-#: wp-piwik.php:365
-msgid "Piwik Statistics"
-msgstr "Estadísticas de Piwik"
+#: classes/WP_Piwik/Admin/Settings.php:101
+msgid "Piwik Mode"
+msgstr ""
 
-#. #-#-#-#-#  plugin.pot (WP-Piwik 0.8.0)  #-#-#-#-#
-#. Plugin Name of the plugin/theme
-#: wp-piwik.php:111
-#: wp-piwik.php:122
-#: wp-piwik.php:123
-#: wp-piwik.php:146
-msgid "WP-Piwik"
-msgstr "WP-Piwik"
+#: classes/WP_Piwik/Admin/Settings.php:102
+msgid "Disabled (WP-Piwik will not connect to Piwik)"
+msgstr ""
 
-#: wp-piwik.php:130
-#: wp-piwik.php:131
-msgid "WPMU-Piwik"
-msgstr "WPMU-Piwik"
+#: classes/WP_Piwik/Admin/Settings.php:108
+msgid "Piwik URL"
+msgstr "Dirección de Piwik"
 
-#: wp-piwik.php:142
-#: wp-piwik.php:557
-msgid "yesterday"
-msgstr "ayer"
+#: classes/WP_Piwik/Admin/Settings.php:108
+msgid ""
+"Enter your Piwik URL. This is the same URL you use to access your Piwik "
+"instance, e.g. http://www.example.com/piwik/."
+msgstr ""
 
-#: wp-piwik.php:143
-#: wp-piwik.php:558
-msgid "today"
-msgstr "hoy"
+#: classes/WP_Piwik/Admin/Settings.php:109
+msgid "Piwik path"
+msgstr ""
 
-#: wp-piwik.php:144
-#: wp-piwik.php:559
-msgid "last30"
-msgstr "últimos 30"
+#: classes/WP_Piwik/Admin/Settings.php:109
+msgid "Enter the file path to your Piwik instance, e.g. /var/www/piwik/."
+msgstr ""
 
-#: wp-piwik.php:144
-#: wp-piwik.php:559
-msgid "last 30 days"
-msgstr "últimos 30 días"
+#: classes/WP_Piwik/Admin/Settings.php:110
+msgid "Piwik user"
+msgstr ""
 
-#: wp-piwik.php:179
-msgid "Settings"
-msgstr "Ajustes"
+#: classes/WP_Piwik/Admin/Settings.php:110
+msgid ""
+"Enter your Piwik Pro username. It is also part of your URL: "
+"http://USERNAME.piwik.pro."
+msgstr ""
 
-#: wp-piwik.php:381
-msgid "Change"
-msgstr "Cambiar"
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid "Auth token"
+msgstr "Auth token"
 
-#: wp-piwik.php:382
-msgid "Currently shown stats:"
-msgstr "Estaísticas mostradas actualmente:"
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid ""
+"Enter your Piwik auth token here. It is an alphanumerical code like "
+"0a1b2c34d56e78901fa2bc3d45678efa."
+msgstr ""
 
-#: wp-piwik.php:383
-msgid "Current shown stats: <strong>Overall</strong>"
-msgstr "Estadísticas mostradas actualmente: <strong>todas</strong>"
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid "See %sWP-Piwik FAQ%s."
+msgstr ""
 
-#: wp-piwik.php:448
-msgid "WP-Piwik Settings"
-msgstr "Ajustes de WP-Piwik"
+#: classes/WP_Piwik/Admin/Settings.php:116
+msgid "Auto config"
+msgstr "Auto-configuración"
 
-#: wp-piwik.php:455
-#: wp-piwik.php:617
-msgid "Account settings"
-msgstr "Ajustes de la cuenta"
+#: classes/WP_Piwik/Admin/Settings.php:116
+msgid ""
+"Check this to automatically choose your blog from your Piwik sites by URL. "
+"If your blog is not added to Piwik yet, WP-Piwik will add a new site."
+msgstr "Selecciona esto para elegir automáticamente tu blog desde el listado de sitios de Piwik por la dirección. Si tu blog no está todavía añadido en Piwik, WP-Piwik añadirá un sitio nuevo."
 
-#: wp-piwik.php:457
-#: wp-piwik.php:619
-msgid "Piwik URL"
-msgstr "Dirección de Piwik"
+#: classes/WP_Piwik/Admin/Settings.php:127
+msgid "Determined site"
+msgstr "Sitio determinado"
 
-#: wp-piwik.php:461
-#: wp-piwik.php:623
-msgid "Auth token"
-msgstr "Auth token"
+#: classes/WP_Piwik/Admin/Settings.php:132
+msgid "Select site"
+msgstr ""
 
-#: wp-piwik.php:467
-#: wp-piwik.php:628
-msgid "To enable Piwik statistics, please enter your Piwik base URL (like http://mydomain.com/piwik) and your personal authentification token. You can get the token on the API page inside your Piwik interface. It looks like &quot;1234a5cd6789e0a12345b678cd9012ef&quot;."
-msgstr "Para habilitar las estadísticas de Piwik , por favor introduce la dirección de tu instalación de Piwik (por ejemplo http://mydomain.com/piwik) y tu Auth Token. Puedes ver tu Auth Token s desde la sección API dentro del interfaz de . Es algo similar a: &quot;1234a5cd6789e0a12345b678cd9012ef&quot;."
+#: classes/WP_Piwik/Admin/Settings.php:140
+msgid "Piwik default date"
+msgstr ""
 
-#: wp-piwik.php:477
-msgid "<strong>Important note:</strong> If you do not host this blog on your own, your site admin is able to get your auth token from the database. So he is able to access your statistics. You should never use an auth token with more than simple view access!"
-msgstr "<strong>Nota importante :</strong> Si no albergas este blog bajo tu propio servidor, el administror es capaz de ver el auth token desde la base de datos. Por lo tanto podría acceder a tus estadísticas. No deberías utilizar nunca un auth token con más permisos que los de lectura."
+#: classes/WP_Piwik/Admin/Settings.php:141
+#: classes/WP_Piwik/Admin/Settings.php:154
+msgid "Today"
+msgstr ""
 
-#: wp-piwik.php:485
-#: wp-piwik.php:489
-msgid "An error occured"
-msgstr "Ocurrió un error"
+#: classes/WP_Piwik/Admin/Settings.php:142
+#: classes/WP_Piwik/Admin/Settings.php:153
+msgid "Yesterday"
+msgstr ""
 
-#: wp-piwik.php:486
-msgid "Please check URL and auth token. You need at least view access to one site."
-msgstr "Por favor comprueba tu URL y el Auth Token. Necesitas al menos acceso de lectura a un sitio web."
+#: classes/WP_Piwik/Admin/Settings.php:143
+msgid "Current month"
+msgstr ""
 
-#: wp-piwik.php:492
-msgid "Choose site"
-msgstr "Selecciona sitio"
+#: classes/WP_Piwik/Admin/Settings.php:144
+msgid "Last month"
+msgstr ""
 
-#: wp-piwik.php:511
-#: wp-piwik.php:547
-#: wp-piwik.php:584
-#: wp-piwik.php:658
-msgid "Save settings"
-msgstr "Guardar ajustes"
+#: classes/WP_Piwik/Admin/Settings.php:145
+msgid "Current week"
+msgstr ""
 
-#: wp-piwik.php:515
-#: wp-piwik.php:643
-msgid "Tracking settings"
-msgstr "Ajustes de seguimiento"
+#: classes/WP_Piwik/Admin/Settings.php:146
+msgid "Last week"
+msgstr ""
 
-#: wp-piwik.php:521
-msgid "Add script"
-msgstr "Añadir Script"
+#: classes/WP_Piwik/Admin/Settings.php:147
+msgid "Default date shown on statistics page."
+msgstr "Fecha por defecto mostrada en la página de estadísticas"
 
-#: wp-piwik.php:525
-msgid "If your template uses wp_footer(), WP-Piwik can automatically add the Piwik javascript code to your blog."
-msgstr "Si tu plantilla utiliza wp_footer(), WP-Piwik puede añadir el código javascript de Piwik de forma automática a tu blog."
+#: classes/WP_Piwik/Admin/Settings.php:149
+msgid "Show SEO data"
+msgstr ""
 
-#: wp-piwik.php:528
-msgid "Track 404"
-msgstr "Seguimiento de errores 404"
+#: classes/WP_Piwik/Admin/Settings.php:149
+msgid "Display SEO ranking data on statistics page."
+msgstr ""
 
-#: wp-piwik.php:532
-msgid "WP-Piwik can automatically add a 404-category to track 404-page-visits."
-msgstr "WP-Piwik puede añadir automáticamente una categoría-404 para hacer el seguimiento de los errores 404"
+#: classes/WP_Piwik/Admin/Settings.php:149
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Slow!"
+msgstr ""
 
-#: wp-piwik.php:536
-#: wp-piwik.php:644
-msgid "Tracking filter"
-msgstr "Filtro de seguimiento"
+#: classes/WP_Piwik/Admin/Settings.php:151
+msgid "Dashboard overview"
+msgstr ""
 
-msgid "Choose users by user role you do <strong>not</strong> want to track."
-msgstr "Selecciona, por el rol de usuario, los usuarios sobre los cuales <strong>no</strong> quieres hacer seguimiento."
+#: classes/WP_Piwik/Admin/Settings.php:152
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:192
+#: classes/WP_Piwik/Admin/Settings.php:213
+#: classes/WP_Piwik/Admin/Settings.php:304
+msgid "Disabled"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:155
+msgid "Last 30 days"
+msgstr ""
 
-msgid "Choose users by user role you do <strong>not</strong> want to track. Requires enabled &quot;Add script&quot;-functionality."
-msgstr "Selecciona, por el rol de usuario, los usuarios sobre los cuales <strong>no</strong> quieres hacer seguimiento. Requiera que la funcionalidad de \"Añadir script a wp_footer()\" esté activada."
+#: classes/WP_Piwik/Admin/Settings.php:156
+msgid "Enable WP-Piwik dashboard widget &quot;Overview&quot;."
+msgstr ""
 
-#: wp-piwik.php:551
-msgid "Statistic view settings"
-msgstr "Ajustes de la vista de estadísticas"
+#: classes/WP_Piwik/Admin/Settings.php:158
+msgid "Dashboard graph"
+msgstr ""
 
-#: wp-piwik.php:554
-msgid "Dashboard"
-msgstr "Dashboard"
+#: classes/WP_Piwik/Admin/Settings.php:158
+msgid "Enable WP-Piwik dashboard widget &quot;Graph&quot;."
+msgstr ""
 
-#: wp-piwik.php:556
-msgid "No"
-msgstr "No"
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Dashboard SEO"
+msgstr ""
 
-#: wp-piwik.php:557
-#: wp-piwik.php:558
-#: wp-piwik.php:559
-msgid "Yes"
-msgstr "Si"
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Enable WP-Piwik dashboard widget &quot;SEO&quot;."
+msgstr ""
 
-#: wp-piwik.php:562
-msgid "Display a dashboard widget to your WordPress dashboard."
-msgstr "Mostrar un widget de Dashboard a su panel de WordPress."
+#: classes/WP_Piwik/Admin/Settings.php:162
+msgid "Show graph on WordPress Toolbar"
+msgstr ""
 
-#: wp-piwik.php:567
-msgid "Display a shortcut to Piwik itself."
-msgstr "Mostar un enlace directo al propio Piwik"
+#: classes/WP_Piwik/Admin/Settings.php:162
+msgid "Display a last 30 days visitor graph on WordPress' toolbar."
+msgstr ""
 
-#: wp-piwik.php:568
-msgid "Display to"
-msgstr "Mostrar a"
+#: classes/WP_Piwik/Admin/Settings.php:164
+msgid "Display stats to"
+msgstr ""
 
-#: wp-piwik.php:579
+#: classes/WP_Piwik/Admin/Settings.php:171
 msgid "Choose user roles allowed to see the statistics page."
 msgstr "Selecciona los roles de usuario que pueden acceder a las estadísticas."
 
-#: wp-piwik.php:612
-msgid "WPMU-Piwik Settings"
-msgstr "Ajustos de WPMU-Piwik"
+#: classes/WP_Piwik/Admin/Settings.php:173
+msgid "Show per post stats"
+msgstr ""
 
-#: wp-piwik.php:636
-msgid "<strong>Important note:</strong> You have to choose a token which provides administration access. WPMU-Piwik will create new Piwik sites for each blog if it is shown the first time and it is not added yet. All users can access their own statistics only, while site admins can access all statistics. To avoid conflicts, you should use a clean Piwik installation without other sites added. The provided themes should use wp_footer, because it adds the Piwik javascript code to each page."
-msgstr "<strong>Note importante :</strong> Necesitas seleccionar un token que tenga accso de admistración. WPMU-Piwik creará nuevo sitios en piwik para cada blog. si es visto por primera vez y no ha sido añadido todavía. Todos los usuarios pueden acceder solamente a sus estadísticas, mientras los administradores pueden acceder a todas. Para evitar conflictos, debes utilizar una instalación nueva de Piwik, sin ningún sitio configurado. Todos los temás deberán utilizar wp_footer, puesto que es la función que se encarga de añadir el código de javascript a cada página."
+#: classes/WP_Piwik/Admin/Settings.php:173
+msgid "Show stats about single posts at the post edit admin page."
+msgstr ""
 
-#: wp-piwik.php:671
-msgid "If you like WP-Piwik, you can support its development by a donation:"
-msgstr "Si te gusta WP-Piwik, puedes añadir a su desarrollo con una donación:"
+#: classes/WP_Piwik/Admin/Settings.php:175
+msgid "Piwik shortcut"
+msgstr ""
 
-#: wp-piwik.php:687
-msgid "My Amazon.de wishlist (German)"
-msgstr "Mi whitlist en Amazon.de ( Alemán )"
+#: classes/WP_Piwik/Admin/Settings.php:175
+msgid "Display a shortcut to Piwik itself."
+msgstr "Mostar un enlace directo al propio Piwik"
 
-#. Plugin URI of the plugin/theme
-msgid "http://www.braekling.de/wp-piwik-wpmu-piwik-wordpress/"
-msgstr "http://www.braekling.de/wp-piwik-wpmu-piwik-wordpress/"
+#: classes/WP_Piwik/Admin/Settings.php:177
+msgid "WP-Piwik display name"
+msgstr ""
 
-#. Description of the plugin/theme
-msgid "Adds Piwik stats to your dashboard menu and Piwik code to your wordpress footer."
-msgstr "Añade las estadísticas de Piwik al menú de tu Dashboard  y el código de piwik al pie de tu Wordpress"
+#: classes/WP_Piwik/Admin/Settings.php:177
+msgid "Plugin name shown in WordPress."
+msgstr ""
 
-#. Author of the plugin/theme
-msgid "Andr&eacute; Br&auml;kling"
-msgstr "Andr&eacute; Br&auml;kling"
+#: classes/WP_Piwik/Admin/Settings.php:179
+msgid "Enable shortcodes"
+msgstr ""
 
-#. Author URI of the plugin/theme
-msgid "http://www.braekling.de"
-msgstr "http://www.braekling.de"
+#: classes/WP_Piwik/Admin/Settings.php:179
+msgid "Enable shortcodes in post or page content."
+msgstr ""
 
-msgid "Credits"
-msgstr "Créditos"
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "You can choose between four tracking code modes:"
+msgstr ""
 
-msgid "Thank you very much for your donation"
-msgstr "Muchas gracias por vuestra donación"
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"WP-Piwik will not add the tracking code. Use this, if you want to add the "
+"tracking code to your template files or you use another plugin to add the "
+"tracking code."
+msgstr ""
 
-msgid "and all people flattering this"
-msgstr "y a todas las personas hablando de esto"
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:193
+msgid "Default tracking"
+msgstr ""
 
-msgid "Graphs powered by <a href=\"http://www.jqplot.com/\">jqPlot</a>, an open source project by Chris Leonello. Give it a try! (License: GPL 2.0 and MIT)"
-msgstr "Gráficos por <a href=\"http://www.jqplot.com/\">jqPlot</a> un proyecto open source por Chris Leonello. Pruébalo! (Licencia: GPL 2.0 y  MIT)"
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "WP-Piwik will use Piwik's standard tracking code."
+msgstr ""
 
-msgid "Thank you very much"
-msgstr "Muchas gracias"
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:194
+msgid "Use js/index.php"
+msgstr "Utilizar js/index.php"
 
-msgid ", and"
-msgstr "y"
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"You can choose this tracking code, to deliver a minified proxy code and to "
+"avoid using the files called piwik.js or piwik.php."
+msgstr ""
 
-msgid "for your translation work"
-msgstr "por vuestro trabajo de traducción"
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "See %sreadme file%s."
+msgstr ""
 
-msgid "Thank you very much, all users who send me mails containing criticism, commendation, feature requests and bug reports! You help me to make WP-Piwik much better."
-msgstr "Muchísimas gracias a todos los usuarios que me habéis enviado emails con críticas, recomendaciones, sugerencias de mejoras y reportes de errores. Me ayudais a hacer WP-Piwik mucho mejor."
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:195
+msgid "Use proxy script"
+msgstr ""
 
-msgid "Thank <strong>you</strong> for using my plugin. It is the best commendation if my piece of code is really used!"
-msgstr "Gracias a <strong>ti</strong>por utilizar mi plugin. Es el mayor elogio que mi plugin sea realmente utilizado."
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "Use this tracking code to not reveal the Piwik server URL."
+msgstr ""
 
-msgid "Changes saved"
-msgstr "Cambios guardados"
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:210
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid "See %sPiwik FAQ%s."
+msgstr ""
 
-msgid "installed"
-msgstr "instalado"
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:196
+msgid "Enter manually"
+msgstr ""
 
-msgid "Next you should connect to Piwik"
-msgstr "A continuación, debe conectarse a Piwik"
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"Enter your own tracking code manually. You can choose one of the prior "
+"options, pre-configure your tracking code and switch to manually editing at "
+"last."
+msgstr ""
 
-msgid "Please validate your configuration"
-msgstr "Por favor valida tu configuración"
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "Use the placeholder {ID} to add the Piwik site ID."
+msgstr ""
 
-msgid "Default date"
-msgstr "Fecha por defecto"
+#: classes/WP_Piwik/Admin/Settings.php:191
+msgid "Add tracking code"
+msgstr ""
 
-msgid "Default date shown on statistics page."
-msgstr "Fecha por defecto mostrada en la página de estadísticas"
+#: classes/WP_Piwik/Admin/Settings.php:199
+msgid "Tracking code"
+msgstr ""
 
-msgid "Dashboard data"
-msgstr "Datos del panel"
+#: classes/WP_Piwik/Admin/Settings.php:201
+msgid "JavaScript code position"
+msgstr ""
 
-msgid "Display an overview widget to your WordPress dashboard."
-msgstr "Muestra un widget de resumen en tu panel el Wordpress"
+#: classes/WP_Piwik/Admin/Settings.php:202
+msgid "Footer"
+msgstr ""
 
-msgid "Board chart"
-msgstr "Board-Chart"
+#: classes/WP_Piwik/Admin/Settings.php:203
+msgid "Header"
+msgstr ""
 
-msgid "Display a visitor graph widget to your WordPress dashboard."
-msgstr "Mostrar un widget gráfico de usuarios en tu panel de Wordpress"
+#: classes/WP_Piwik/Admin/Settings.php:204
+msgid ""
+"Choose whether the JavaScript code is added to the footer or the header."
+msgstr ""
 
-msgid "No data available."
-msgstr "No hay datos disponibles."
+#: classes/WP_Piwik/Admin/Settings.php:206
+msgid "Noscript code"
+msgstr ""
 
-msgid "Check this to automatically choose your blog from your Piwik sites by URL. If your blog is not added to Piwik yet, WP-Piwik will add a new site."
-msgstr "Selecciona esto para elegir automáticamente tu blog desde el listado de sitios de Piwik por la dirección. Si tu blog no está todavía añadido en Piwik, WP-Piwik añadirá un sitio nuevo."
+#: classes/WP_Piwik/Admin/Settings.php:208
+msgid "Add &lt;noscript&gt;"
+msgstr ""
 
-msgid "If you add the Piwik javascript code by wp_footer(),"
-msgstr "Si añades el código de Piwik desde wp_footer(),"
+#: classes/WP_Piwik/Admin/Settings.php:208
+msgid "Adds the &lt;noscript&gt; code to your footer."
+msgstr ""
 
-msgid "WP-Piwik can automatically use js/index.php instead of piwik.js. See"
-msgstr "WP-Piwik puede utilizar js/index.php en lugar de statt piwik.js de forma automática. Ver"
+#: classes/WP_Piwik/Admin/Settings.php:208
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Disabled in proxy mode."
+msgstr ""
 
-msgid "WP-Piwik can automatically force the Tracking Code to sent data in POST. See"
-msgstr "WP-Piwik puede forzar de manera automática al Código de seguimiento a enviar los datos por POST. Ver"
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Add rec parameter to noscript code"
+msgstr ""
 
-msgid "Avoid mod_security"
-msgstr "Evitar mod_security"
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Enable tracking for visitors without JavaScript (not recommended)."
+msgstr ""
 
-msgid "Determined site"
-msgstr "Sitio determinado"
+#: classes/WP_Piwik/Admin/Settings.php:212
+msgid "Enable content tracking"
+msgstr ""
 
-msgid "Auto config"
-msgstr "Auto-configuración"
+#: classes/WP_Piwik/Admin/Settings.php:214
+msgid "Track all content blocks"
+msgstr ""
 
-msgid "Use js/index.php"
-msgstr "Utilizar js/index.php"
+#: classes/WP_Piwik/Admin/Settings.php:215
+msgid "Track only visible content blocks"
+msgstr ""
 
-msgid "Show overview"
-msgstr "Mostrar información general"
+#: classes/WP_Piwik/Admin/Settings.php:216
+msgid ""
+"Content tracking allows you to track interaction with the content of a web "
+"page or application."
+msgstr ""
 
-msgid "Hide overview"
-msgstr "Ocultar información general"
+#: classes/WP_Piwik/Admin/Settings.php:216
+#: classes/WP_Piwik/Admin/Settings.php:218
+#: classes/WP_Piwik/Admin/Settings.php:222
+#: classes/WP_Piwik/Admin/Settings.php:224
+#: classes/WP_Piwik/Admin/Settings.php:226
+#: classes/WP_Piwik/Admin/Settings.php:247
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "See %sPiwik documentation%s."
+msgstr ""
 
-msgid "SEO <em>(slow!)</em>"
-msgstr "SEO <em>(lento!)</em>"
+#: classes/WP_Piwik/Admin/Settings.php:218
+msgid "Track search"
+msgstr ""
 
-msgid "Display SEO ranking data on statistics page. <em>(Slow!)</em>"
-msgstr "Muestra el ranking SEO en la página de estadísticas. <em>(Lento!)</em>"
+#: classes/WP_Piwik/Admin/Settings.php:218
+msgid "Use Piwik's advanced Site Search Analytics feature."
+msgstr ""
 
-msgid "Configure WP-Piwik widgets to be shown on your WordPress Home Dashboard."
-msgstr "Configura los Widgets de WP-Piwik que se mostrarán en la portada de Wordpress"
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid "Track 404"
+msgstr "Seguimiento de errores 404"
 
-msgid "SEO data"
-msgstr "Información SEO"
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid ""
+"WP-Piwik can automatically add a 404-category to track 404-page-visits."
+msgstr "WP-Piwik puede añadir automáticamente una categoría-404 para hacer el seguimiento de los errores 404"
 
-msgid "the Piwik team itself"
-msgstr "El equipo de Piwik"
+#: classes/WP_Piwik/Admin/Settings.php:222
+msgid "Add annotation on new post"
+msgstr ""
 
-msgid "Metabox support inspired by"
-msgstr "Soporte Metabox inspirado por"
+#: classes/WP_Piwik/Admin/Settings.php:222
+msgid "Add a Piwik annotation on each new post."
+msgstr ""
 
-msgid "WP-Piwik support board"
-msgstr "Foro de soporte de WP-Piwik"
+#: classes/WP_Piwik/Admin/Settings.php:224
+msgid "Show custom variables box"
+msgstr ""
 
-msgid "no registration required, English &amp; German"
-msgstr "Registro no requerido, Ingles y Alemán"
+#: classes/WP_Piwik/Admin/Settings.php:224
+msgid " Show a &quot;custom variables&quot; edit box on post edit page."
+msgstr ""
 
-msgid "WordPress.org forum about WP-Piwik"
-msgstr "Foros de Wordpress.com sobre WP-Piwik"
+#: classes/WP_Piwik/Admin/Settings.php:226
+msgid "Add new file types for download tracking"
+msgstr ""
 
-msgid "WordPress.org registration required, English"
-msgstr "Registro en WordPress.org requerido, Inglés"
+#: classes/WP_Piwik/Admin/Settings.php:226
+msgid ""
+"Add file extensions for download tracking, divided by a vertical bar "
+"(&#124;)."
+msgstr ""
 
-msgid "Please don't forget to vote the compatibility at the"
-msgstr "Por favor no te olvides de votar la compatibilidad en "
+#: classes/WP_Piwik/Admin/Settings.php:228
+msgid "Disable cookies"
+msgstr ""
 
-msgid "Donate"
-msgstr "Donar"
+#: classes/WP_Piwik/Admin/Settings.php:228
+msgid "Disable all tracking cookies for a visitor."
+msgstr ""
 
-msgid "My Amazon.de wishlist"
-msgstr "Mi lista en Amazon.de"
+#: classes/WP_Piwik/Admin/Settings.php:230
+msgid "Limit cookie lifetime"
+msgstr ""
 
+#: classes/WP_Piwik/Admin/Settings.php:230
+msgid ""
+"You can limit the cookie lifetime to avoid tracking your users over a longer"
+" period as necessary."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:232
+msgid "Visitor timeout (seconds)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:234
+msgid "Session timeout (seconds)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:236
+msgid "Referral timeout (seconds)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:238
+msgid "Track admin pages"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:238
+msgid ""
+"Enable to track users on admin pages (remember to configure the tracking "
+"filter appropriately)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:241
+msgid "Tracking filter"
+msgstr "Filtro de seguimiento"
+
+#: classes/WP_Piwik/Admin/Settings.php:245
+msgid "Choose users by user role you do <strong>not</strong> want to track."
+msgstr "Selecciona, por el rol de usuario, los usuarios sobre los cuales <strong>no</strong> quieres hacer seguimiento."
+
+#: classes/WP_Piwik/Admin/Settings.php:247
+msgid "Track subdomains in the same website"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:247
+msgid "Adds *.-prefix to cookie domain."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "Do not count subdomains as outlink"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "Adds *.-prefix to tracked domain."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:251
+msgid "Track RSS feeds"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:251
+msgid "Enable to track posts in feeds via tracking pixel."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:253
+msgid "Track RSS feed links as campaign"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:255
+msgid "RSS feed campaign"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:255
+msgid "Keyword: post name."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:257
+msgid "Enable heartbeat timer"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:257
+msgid ""
+"Enable a heartbeat timer to get more accurate visit lengths by sending "
+"periodical HTTP ping requests as long as the site is opened. Enter the time "
+"between the pings in seconds (Piwik default: 15) to enable or 0 to disable "
+"this feature. <strong>Note:</strong> This will cause a lot of additional "
+"HTTP requests on your site."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:262
+msgid ""
+"Usually, you do not need to change these settings. If you want to do so, you"
+" should know what you do or you got an expert's advice."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:264
+msgid "Enable cache"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:264
+msgid "Cache API calls, which not contain today's values, for a week."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:267
+msgid "HTTP connection via"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:268
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "cURL"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:269
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "fopen"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:270
+msgid ""
+"Choose whether WP-Piwik should use cURL or fopen to connect to Piwik in HTTP"
+" or Pro mode."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:272
+msgid "HTTP method"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:273
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "POST"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:274
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "GET"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:275
+msgid "Choose whether WP-Piwik should use POST or GET in HTTP or Pro mode."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:277
+msgid "Disable time limit"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:277
+msgid "Use set_time_limit(0) if stats page causes a time out."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:279
+msgid "Connection timeout"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:281
+msgid "Disable SSL peer verification"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:281
+msgid "not recommended"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:283
+msgid "User agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:284
+msgid "Use the PHP default user agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:284
+msgid "empty"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:285
+msgid "Define a specific user agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:287
+msgid "Specific user agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:289
+msgid "Add data-cfasync=false"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:291
+msgid "CDN URL"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:293
+msgid "CDN URL (SSL)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:295
+msgid "Force Piwik to use a specific protocol"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:296
+msgid "Disabled (default)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:297
+msgid "http"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:298
+msgid "https (SSL)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:299
+msgid ""
+"Choose if you want to explicitly force Piwik to use HTTP or HTTPS. Does not "
+"work with a CDN URL."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:301
+msgid "Update notice"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:302
+msgid "Show always if WP-Piwik is updated"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:303
+msgid "Show only if WP-Piwik is updated and settings were changed"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:305
+msgid "Choose if you want to get an update notice if WP-Piwik is updated."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:466
+msgid "Donate"
+msgstr "Donar"
+
+#: classes/WP_Piwik/Admin/Settings.php:468
+msgid "If you like WP-Piwik, you can support its development by a donation:"
+msgstr "Si te gusta WP-Piwik, puedes añadir a su desarrollo con una donación:"
+
+#: classes/WP_Piwik/Admin/Settings.php:506
+msgid "My Amazon.de wishlist"
+msgstr "Mi lista en Amazon.de"
+
+#: classes/WP_Piwik/Admin/Settings.php:509
+#: classes/WP_Piwik/Admin/Settings.php:556
+msgid "Please don't forget to vote the compatibility at the"
+msgstr "Por favor no te olvides de votar la compatibilidad en "
+
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid "Thank you very much for your donation"
+msgstr "Muchas gracias por vuestra donación"
+
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid "the Piwik team itself"
+msgstr "El equipo de Piwik"
+
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid ", and all people flattering this"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:541
+msgid ""
+"Graphs powered by <a href=\"http://www.jqplot.com/\">jqPlot</a> (License: "
+"GPL 2.0 and MIT) and <a "
+"href=\"http://omnipotent.net/jquery.sparkline/\">jQuery Sparklines</a> "
+"(License: New BSD License)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:542
+msgid "Metabox support inspired by"
+msgstr "Soporte Metabox inspirado por"
+
+#: classes/WP_Piwik/Admin/Settings.php:543
+msgid "Tabbed settings page suggested by the"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:544
+msgid "Thank you very much"
+msgstr "Muchas gracias"
+
+#: classes/WP_Piwik/Admin/Settings.php:544
+msgid "for your translation work"
+msgstr "por vuestro trabajo de traducción"
+
+#: classes/WP_Piwik/Admin/Settings.php:545
+msgid ""
+"Thank you very much, all users who send me mails containing criticism, "
+"commendation, feature requests and bug reports! You help me to make WP-Piwik"
+" much better."
+msgstr "Muchísimas gracias a todos los usuarios que me habéis enviado emails con críticas, recomendaciones, sugerencias de mejoras y reportes de errores. Me ayudais a hacer WP-Piwik mucho mejor."
+
+#: classes/WP_Piwik/Admin/Settings.php:546
+msgid ""
+"Thank <strong>you</strong> for using my plugin. It is the best commendation "
+"if my piece of code is really used!"
+msgstr "Gracias a <strong>ti</strong>por utilizar mi plugin. Es el mayor elogio que mi plugin sea realmente utilizado."
+
+#: classes/WP_Piwik/Admin/Settings.php:555
+msgid "The best place to get help:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:555
+msgid "WP-Piwik support forum"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:558
+msgid "Debugging"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:559
+msgid ""
+"Either allow_url_fopen has to be enabled <em>or</em> cURL has to be "
+"available:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:562
+msgid "cURL is"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:563
+#: classes/WP_Piwik/Admin/Settings.php:568
+msgid "not"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:564
+msgid "available"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:567
+msgid "allow_url_fopen is"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:569
+msgid "enabled"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "is used."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:573
+msgid "Determined Piwik base URL is"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:577
+msgid "Tools"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:579
+msgid "Run testscript"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:580
+msgid "Sitebrowser"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:581
+msgid "Clear cache"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:582
+msgid "Are you sure you want to clear all settings?"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:582
+msgid "Reset WP-Piwik"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:584
+msgid "Latest support threads on WordPress.org"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:635
+msgid "Settings cleared (except connection settings)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:651
+msgid "Cache cleared."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:17
+msgid "site"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:18
+msgid "sites"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:24
+msgid "No site configured yet."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:29
+msgid "Blog ID"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:30
+msgid "Title"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:31
+msgid "URL"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:32
+msgid "Site ID (Piwik)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:79
+msgid "Site not created yet."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Statistics.php:12
+msgid "Statistics"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Statistics.php:20
+msgid "Currently shown stats:"
+msgstr "Estaísticas mostradas actualmente:"
+
+#: classes/WP_Piwik/Request/Php.php:27
+msgid "Could not resolve"
+msgstr ""
+
+#: classes/WP_Piwik/Request/Php.php:27
+msgid "realpath() returns false"
+msgstr ""
+
+#: classes/WP_Piwik/Request/Php.php:39
+msgid "Class Piwik\\FrontController does not exists."
+msgstr ""
+
+#: classes/WP_Piwik/Request/Php.php:42
+msgid "Class Piwik\\API\\Request does not exists."
+msgstr ""
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:10
+msgid "Piwik Custom Variables"
+msgstr ""
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
+msgid "Name"
+msgstr ""
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
+msgid "Value"
+msgstr ""
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
+msgid "Set custom variables for a page view"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:18
+msgid "Browser Details"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:37
+#: classes/WP_Piwik/Widget/Browsers.php:37
+#: classes/WP_Piwik/Widget/Chart.php:43
+#: classes/WP_Piwik/Widget/Noresult.php:23
+#: classes/WP_Piwik/Widget/Overview.php:24
+#: classes/WP_Piwik/Widget/Plugins.php:23 classes/WP_Piwik/Widget/Post.php:25
+#: classes/WP_Piwik/Widget/Screens.php:35
+#: classes/WP_Piwik/Widget/Search.php:23 classes/WP_Piwik/Widget/Seo.php:20
+#: classes/WP_Piwik/Widget/SystemDetails.php:33
+#: classes/WP_Piwik/Widget/Systems.php:33
+#: classes/WP_Piwik/Widget/Visitors.php:35 classes/WP_Piwik/Widget.php:91
 msgid "Piwik error"
 msgstr "Error de Piwik"
 
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+msgid "Browser"
+msgstr "Navegador"
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+#: classes/WP_Piwik/Widget/Screens.php:37
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+#: classes/WP_Piwik/Widget/Visitors.php:57 classes/WP_Piwik/Widget.php:100
+msgid "Unique"
+msgstr "Único"
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+#: classes/WP_Piwik/Widget/Plugins.php:25
+#: classes/WP_Piwik/Widget/Screens.php:37
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+msgid "Percent"
+msgstr "Porcentaje"
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:66
+#: classes/WP_Piwik/Widget/Browsers.php:66
+#: classes/WP_Piwik/Widget/Screens.php:64
+#: classes/WP_Piwik/Widget/SystemDetails.php:62
+#: classes/WP_Piwik/Widget/Systems.php:62
+msgid "Others"
+msgstr "Otros"
+
+#: classes/WP_Piwik/Widget/Browsers.php:18
+msgid "Browsers"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Chart.php:19
+#: classes/WP_Piwik/Widget/Overview.php:41 classes/WP_Piwik/Widget/Post.php:37
+#: classes/WP_Piwik/Widget/Visitors.php:17
+msgid "Visitors"
+msgstr "Visitantes"
+
+#: classes/WP_Piwik/Widget/Chart.php:71
+msgid ""
+"The graph contains the values shown in the table below (visitors / unique / "
+"bounces). The red line show a linear trendline (unique)."
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Keywords.php:16
+msgid "Keywords"
+msgstr "Palabras Clave"
+
+#: classes/WP_Piwik/Widget/Noresult.php:16
+#: classes/WP_Piwik/Widget/Search.php:16
+msgid "Site Search"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+msgid "Keyword"
+msgstr "Palabra Clave"
+
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+msgid "Requests"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Bounced"
+msgstr "Rebotado"
+
+#: classes/WP_Piwik/Widget/Overview.php:17 classes/WP_Piwik/Widget/Post.php:18
+msgid "Overview"
+msgstr "Información General"
+
+#: classes/WP_Piwik/Widget/Overview.php:42 classes/WP_Piwik/Widget/Post.php:38
+msgid "Unique visitors"
+msgstr "Visitantes Únicos"
+
+#: classes/WP_Piwik/Widget/Overview.php:43 classes/WP_Piwik/Widget/Post.php:39
+msgid "Page views"
+msgstr "Páginas vistas"
+
+#: classes/WP_Piwik/Widget/Overview.php:44 classes/WP_Piwik/Widget/Post.php:40
+msgid "Total time spent"
+msgstr "Tiempo total empleado"
+
+#: classes/WP_Piwik/Widget/Overview.php:45 classes/WP_Piwik/Widget/Post.php:42
+msgid "Bounce count"
+msgstr "Número de rebotes"
+
+#: classes/WP_Piwik/Widget/Overview.php:48 classes/WP_Piwik/Widget/Post.php:41
+msgid "Time/visit"
+msgstr "Tiempo/Visita"
+
+#: classes/WP_Piwik/Widget/Overview.php:48
+msgid "Max. page views in one visit"
+msgstr "Máximo de páginas vistas durante una visita"
+
+#: classes/WP_Piwik/Widget/Overview.php:49 classes/WP_Piwik/Widget/Post.php:46
+msgid "Shortcut"
+msgstr "Enlace directo"
+
+#: classes/WP_Piwik/Widget/Pages.php:16
+msgid "Pages"
+msgstr "Páginas"
+
+#: classes/WP_Piwik/Widget/Plugins.php:16
+msgid "Plugins"
+msgstr "Plugins"
+
+#: classes/WP_Piwik/Widget/Plugins.php:25
+msgid "Plugin"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Plugins.php:25
+#: classes/WP_Piwik/Widget/Visitors.php:57 classes/WP_Piwik/Widget.php:102
+msgid "Visits"
+msgstr "Visitas"
+
+#: classes/WP_Piwik/Widget/Post.php:43
+msgid "Min. generation time"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Post.php:44
+msgid "Max. generation time"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Referrers.php:16
+msgid "Referrers"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Screens.php:16
+msgid "Resolutions"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Screens.php:37
+msgid "Resolution"
+msgstr "Resolución"
+
+#: classes/WP_Piwik/Widget/Seo.php:13
+msgid "SEO"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/SystemDetails.php:14
+msgid "Operation System Details"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+msgid "Operation System"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Systems.php:14
+msgid "Operation Systems"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Date"
+msgstr "Fecha"
+
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Page Views"
+msgstr ""
+
+#: classes/WP_Piwik/Widget.php:104
+msgid "Hits"
+msgstr ""
+
+#: classes/WP_Piwik/Widget.php:106
+msgid "Actions"
+msgstr ""
+
+#: classes/WP_Piwik/Widget.php:162
+msgid "No data available."
+msgstr "No hay datos disponibles."
+
+#: classes/WP_Piwik/Widget.php:293
+msgid "week"
+msgstr ""
+
+#: classes/WP_Piwik.php:193
+msgid "%s %s installed."
+msgstr ""
+
+#: classes/WP_Piwik.php:193
+msgid "Next you should connect to Piwik"
+msgstr "A continuación, debe conectarse a Piwik"
+
+#: classes/WP_Piwik.php:227
+msgid "%s updated to %s."
+msgstr ""
+
+#: classes/WP_Piwik.php:227
+msgid "Please validate your configuration"
+msgstr "Por favor valida tu configuración"
+
+#: classes/WP_Piwik.php:259 classes/WP_Piwik.php:481
+msgid "Settings"
+msgstr "Ajustes"
+
+#: classes/WP_Piwik.php:262
 msgid "Important"
 msgstr "Importante"
 
+#: classes/WP_Piwik.php:343 classes/WP_Piwik.php:365
+msgid "Piwik Statistics"
+msgstr "Estadísticas de Piwik"
+
+#: classes/WP_Piwik.php:453
+msgid "Configure WP-Piwik"
+msgstr ""
+
+#: classes/WP_Piwik.php:923
+msgid "An error occured"
+msgstr "Ocurrió un error"
+
+#: classes/WP_Piwik.php:1191
+msgid "Cheatin&#8217; uh?"
+msgstr ""
+
+#: wp-piwik.php:60
+msgid ""
+"WP-Piwik requires at least PHP 5.3. You are using the deprecated version %s."
+" Please update PHP to use WP-Piwik."
+msgstr ""
+
+#. Plugin Name of the plugin/theme
+msgid "WP-Piwik"
+msgstr "WP-Piwik"
+
+#. Plugin URI of the plugin/theme
+msgid "http://wordpress.org/extend/plugins/wp-piwik/"
+msgstr ""
+
+#. Description of the plugin/theme
+msgid ""
+"Adds Piwik stats to your dashboard menu and Piwik code to your wordpress "
+"header."
+msgstr ""
+
+#. Author of the plugin/theme
+msgid "Andr&eacute; Br&auml;kling"
+msgstr "Andr&eacute; Br&auml;kling"
+
+#. Author URI of the plugin/theme
+msgid "http://www.braekling.de"
+msgstr "http://www.braekling.de"
diff --git a/wp-content/plugins/wp-piwik/languages/wp-piwik-fa_IR.mo b/wp-content/plugins/wp-piwik/languages/wp-piwik-fa_IR.mo
index f817eeda3ca09293d66f8a5ac8731be1faf8ec36..481795192df0f376ae4f1a11df237111a3820611 100644
Binary files a/wp-content/plugins/wp-piwik/languages/wp-piwik-fa_IR.mo and b/wp-content/plugins/wp-piwik/languages/wp-piwik-fa_IR.mo differ
diff --git a/wp-content/plugins/wp-piwik/languages/wp-piwik-fa_IR.po b/wp-content/plugins/wp-piwik/languages/wp-piwik-fa_IR.po
index a5467e5bfe23504aa62eba5ed8801a326358a49f..2f9e77466c044107504ddb1e66d04aefdf8163ae 100644
--- a/wp-content/plugins/wp-piwik/languages/wp-piwik-fa_IR.po
+++ b/wp-content/plugins/wp-piwik/languages/wp-piwik-fa_IR.po
@@ -1,408 +1,1268 @@
-# Translation of the WordPress plugin WP-Piwik 0.8.0 by Andr&eacute; Br&auml;kling.
-# Copyright (C) 2010 Andr&eacute; Br&auml;kling
+# Copyright (C) 2015 WP-Piwik
 # This file is distributed under the same license as the WP-Piwik package.
-# Andr&eacute; Br&auml;kling <webmaster@braekling.de>, 2011.
-#
+# Translators:
+# Amin Yazdi <m.aminyazdi@gmail.com>, 2015
+# Andr&eacute; Br&auml;kling <webmaster@braekling.de>, 2011
+# André Bräkling, 2015
+# WebNashr <info@webnashr.com>, 2015
 msgid ""
 msgstr ""
-"Project-Id-Version: WP-Piwik 0.8.4\n"
-"Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-piwik\n"
-"POT-Creation-Date: 2010-07-19 18:06+0000\n"
-"PO-Revision-Date: 2011-11-16 11:13+0330\n"
-"Last-Translator: hossein <hossein@email.com>\n"
-"Language-Team: Persian <LL@li.org>\n"
+"Project-Id-Version: WP-Piwik\n"
+"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-piwik\n"
+"POT-Creation-Date: 2015-07-22 10:25:29+00:00\n"
+"PO-Revision-Date: 2015-07-22 10:33+0000\n"
+"Last-Translator: André Bräkling\n"
+"Language-Team: Persian (Iran) (http://www.transifex.com/projects/p/wp-piwik/language/fa_IR/)\n"
 "MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
+"Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Poedit-Language: Persian\n"
-"X-Poedit-Country: IRAN, ISLAMIC REPUBLIC OF\n"
-"X-Poedit-SourceCharset: utf-8\n"
+"Language: fa_IR\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
 
-#: dashboard/browsers.php:12
-#: dashboard/browsers.php:33
-msgid "Browser"
-msgstr "مرورگر"
+#: classes/WP_Piwik/Admin/Settings.php:24
+msgid "Reload"
+msgstr "بارگذاری مجدد"
 
-#: dashboard/browsers.php:22
-#: dashboard/pages.php:43
-#: dashboard/screens.php:22
-#: dashboard/systems.php:22
-msgid "Others"
-msgstr "غیره"
+#: classes/WP_Piwik/Admin/Settings.php:27
+msgid "Changes saved."
+msgstr "تغییرات ذخیره شد."
 
-#: dashboard/browsers.php:34
-#: dashboard/keywords.php:17
-#: dashboard/pages.php:22
-#: dashboard/screens.php:33
-#: dashboard/systems.php:35
-#: dashboard/visitors.php:53
-#: dashboard/websites.php:19
-#: wp-piwik.php:305
-msgid "Unique"
-msgstr "یکتا"
+#: classes/WP_Piwik/Admin/Settings.php:45
+msgid "Save Changes"
+msgstr "ذخیره‌ی تغییرات"
 
-#: dashboard/browsers.php:35
-#: dashboard/plugins.php:33
-#: dashboard/screens.php:34
-#: dashboard/systems.php:36
-msgid "Percent"
-msgstr "درصد"
+#: classes/WP_Piwik/Admin/Settings.php:46
+msgid "Thanks for using WP-Piwik!"
+msgstr "بابت استفاده از WP-Piwik از شما ممنونیم!"
 
-#: dashboard/keywords.php:12
-msgid "Keywords"
-msgstr "کلمات کلیدی"
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid "WP-Piwik %s is successfully connected to Piwik %s."
+msgstr "WP-Piwik %s با موفقیت به Piwik %s متصل شد."
 
-#: dashboard/keywords.php:17
-msgid "Keyword"
-msgstr "کلمه کلیدی"
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid "You are running WordPress %s."
+msgstr "شما از وردپرس %s استفاده می کنید."
 
-#: dashboard/overview.php:12
-msgid "Overview"
-msgstr "نمای کلی"
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid ""
+"You are running a WordPress %s blog network (WPMU). WP-Piwik will handle "
+"your sites as different websites."
+msgstr ""
 
-#: dashboard/overview.php:42
-#: dashboard/visitors.php:24
-msgid "Visitors"
-msgstr "بازدید کنندگان"
+#: classes/WP_Piwik/Admin/Settings.php:53
+msgid ""
+"WP-Piwik %s was not able to connect to Piwik using your configuration. Check"
+" the &raquo;Connect to Piwik&laquo; section below."
+msgstr ""
 
-#: dashboard/overview.php:43
-msgid "Unique visitors"
-msgstr "بازدیدکنندگان یکتا"
+#: classes/WP_Piwik/Admin/Settings.php:56
+msgid ""
+"WP-Piwik %s has to be connected to Piwik first. Check the &raquo;Connect to "
+"Piwik&laquo; section below."
+msgstr ""
 
-#: dashboard/overview.php:44
-msgid "Page views"
-msgstr "نمایش صفحه"
+#: classes/WP_Piwik/Admin/Settings.php:60
+msgid "Connect to Piwik"
+msgstr "اتصال به پیویک"
 
-#: dashboard/overview.php:45
-msgid "Max. page views in one visit"
-msgstr "حداکثر تعداد نمایش صفحه در یک بازدید"
+#: classes/WP_Piwik/Admin/Settings.php:65
+msgid "Show Statistics"
+msgstr "آمار"
 
-#: dashboard/overview.php:46
-msgid "Total time spent"
-msgstr "زمان سپری شده"
+#: classes/WP_Piwik/Admin/Settings.php:69
+msgid "Enable Tracking"
+msgstr "فعال کردن ردگیری"
 
-msgid "Time/visit"
-msgstr "زمان/بازدید"
+#: classes/WP_Piwik/Admin/Settings.php:74
+msgid "Expert Settings"
+msgstr "تنظیمات حرفه ای"
 
-#: dashboard/overview.php:47
-msgid "Bounce count"
-msgstr "تعداد بازگشت"
+#: classes/WP_Piwik/Admin/Settings.php:78 classes/WP_Piwik.php:923
+msgid "Support"
+msgstr "پشتیبانی"
 
-#: dashboard/overview.php:49
-#: wp-piwik.php:563
-msgid "Shortcut"
-msgstr "میان‌بر"
+#: classes/WP_Piwik/Admin/Settings.php:82
+msgid "Credits"
+msgstr "دست‌اندرکاران"
 
-#: dashboard/pages.php:13
-msgid "Pages"
-msgstr "صفحه"
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid ""
+"WP-Piwik is a WordPress plugin to show a selection of Piwik stats in your "
+"WordPress admin dashboard and to add and configure your Piwik tracking code."
+" To use this you will need your own Piwik instance. If you do not already "
+"have a Piwik setup, you have two simple options: use either"
+msgstr ""
 
-#: dashboard/pages.php:21
-msgid "Page"
-msgstr "صفحه"
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "Self-hosted"
+msgstr "هاست خودم"
 
-#: dashboard/pages.php:23
-#: dashboard/plugins.php:32
-#: dashboard/visitors.php:52
-msgid "Visits"
-msgstr "بازدید"
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "or"
+msgstr "یا"
 
-#: dashboard/plugins.php:12
-#: dashboard/plugins.php:31
-msgid "Plugins"
-msgstr "افزونه"
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "Cloud-hosted"
+msgstr "هاست کلود"
 
-#: dashboard/screens.php:12
-#: dashboard/screens.php:32
-msgid "Resolution"
-msgstr "وضوح"
+#: classes/WP_Piwik/Admin/Settings.php:98
+msgid ""
+"Neither cURL nor fopen are available. So WP-Piwik can not use the HTTP API "
+"and not connect to Piwik Pro."
+msgstr ""
 
-#: dashboard/systems.php:12
-#: dashboard/systems.php:34
-msgid "Operating System"
-msgstr "سیستم عامل"
+#: classes/WP_Piwik/Admin/Settings.php:98
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
+msgid "More information"
+msgstr "اطلاعات بیشتر"
 
-#: dashboard/visitors.php:51
-msgid "Date"
-msgstr "تاریخ"
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid "You can choose between three connection methods:"
+msgstr "شما می توانید بین سه روش اتصال را انتخاب کنید:"
 
-#: dashboard/visitors.php:54
-msgid "Bounced"
-msgstr "بازگشت"
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:103
+msgid "Self-hosted (HTTP API, default)"
+msgstr "میزبانی خود (اچ تی تی پی API، به طور پیش فرض)"
 
-#: dashboard/visitors.php:67
-msgid "Unique TOTAL"
-msgstr "مجموع  یکتا"
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"This is the default option for a self-hosted Piwik and should work for most "
+"configurations. WP-Piwik will connect to Piwik using http(s)."
+msgstr ""
 
-#: dashboard/visitors.php:67
-msgid "Sum"
-msgstr "مجموع"
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:104
+msgid "Self-hosted (PHP API)"
+msgstr "میزبانی خود (API PHP)"
 
-#: dashboard/visitors.php:67
-msgid "Avg"
-msgstr "میانگین"
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"Choose this, if your self-hosted Piwik and WordPress are running on the same"
+" machine and you know the full server path to your Piwik instance."
+msgstr ""
 
-#: dashboard/websites.php:12
-msgid "Websites"
-msgstr "سایت"
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:105
+msgid "Cloud-hosted (Piwik Pro)"
+msgstr "هاست کلود(پیویک حرفه ای)"
 
-#: dashboard/websites.php:18
-msgid "Website"
-msgstr "سایت"
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"If you are using a cloud-hosted Piwik by Piwik Pro, you can simply use this "
+"option."
+msgstr "اگر از میزبانی کلود استفاده میکنید ، میتوانید از این گذینه استفاده کنید"
 
-#: wp-piwik.php:110
-#: wp-piwik.php:365
-msgid "Piwik Statistics"
-msgstr "آمارگیر"
+#: classes/WP_Piwik/Admin/Settings.php:101
+msgid "Piwik Mode"
+msgstr "حالت پیویک"
 
-#. #-#-#-#-#  plugin.pot (WP-Piwik 0.8.0)  #-#-#-#-#
-#. Plugin Name of the plugin/theme
-#: wp-piwik.php:111
-#: wp-piwik.php:122
-#: wp-piwik.php:123
-#: wp-piwik.php:146
-msgid "WP-Piwik"
-msgstr "آمار"
+#: classes/WP_Piwik/Admin/Settings.php:102
+msgid "Disabled (WP-Piwik will not connect to Piwik)"
+msgstr "غیر فعال کردن پیویک( پلاگاین به پیویک وصل نمیشود)"
 
-#: wp-piwik.php:130
-#: wp-piwik.php:131
-msgid "WPMU-Piwik"
-msgstr "آمارگیر چندکاربره"
+#: classes/WP_Piwik/Admin/Settings.php:108
+msgid "Piwik URL"
+msgstr "آدرس پیویک"
 
-#: wp-piwik.php:142
-#: wp-piwik.php:557
-msgid "yesterday"
-msgstr "دیروز"
+#: classes/WP_Piwik/Admin/Settings.php:108
+msgid ""
+"Enter your Piwik URL. This is the same URL you use to access your Piwik "
+"instance, e.g. http://www.example.com/piwik/."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:109
+msgid "Piwik path"
+msgstr "مسیر پیویک"
+
+#: classes/WP_Piwik/Admin/Settings.php:109
+msgid "Enter the file path to your Piwik instance, e.g. /var/www/piwik/."
+msgstr "مسیر فایل را وارد کنید به عنوان مثال  e.g. /var/www/piwik"
 
-#: wp-piwik.php:143
-#: wp-piwik.php:558
-msgid "today"
+#: classes/WP_Piwik/Admin/Settings.php:110
+msgid "Piwik user"
+msgstr "کاربر پیویک"
+
+#: classes/WP_Piwik/Admin/Settings.php:110
+msgid ""
+"Enter your Piwik Pro username. It is also part of your URL: "
+"http://USERNAME.piwik.pro."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid "Auth token"
+msgstr "نشانه اعتبارسنجی"
+
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid ""
+"Enter your Piwik auth token here. It is an alphanumerical code like "
+"0a1b2c34d56e78901fa2bc3d45678efa."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid "See %sWP-Piwik FAQ%s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:116
+msgid "Auto config"
+msgstr "تنظیم خودکار"
+
+#: classes/WP_Piwik/Admin/Settings.php:116
+msgid ""
+"Check this to automatically choose your blog from your Piwik sites by URL. "
+"If your blog is not added to Piwik yet, WP-Piwik will add a new site."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:127
+msgid "Determined site"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:132
+msgid "Select site"
+msgstr "انتخاب سایت"
+
+#: classes/WP_Piwik/Admin/Settings.php:140
+msgid "Piwik default date"
+msgstr "تاریخ پیش‌گزیده پیویک"
+
+#: classes/WP_Piwik/Admin/Settings.php:141
+#: classes/WP_Piwik/Admin/Settings.php:154
+msgid "Today"
 msgstr "امروز"
 
-#: wp-piwik.php:144
-#: wp-piwik.php:559
-msgid "last 30 days"
-msgstr "30 روز اخیر"
+#: classes/WP_Piwik/Admin/Settings.php:142
+#: classes/WP_Piwik/Admin/Settings.php:153
+msgid "Yesterday"
+msgstr "دیروز"
 
-#: wp-piwik.php:179
-msgid "Settings"
-msgstr "تنظیمات"
+#: classes/WP_Piwik/Admin/Settings.php:143
+msgid "Current month"
+msgstr "ماه جاری"
 
-#: wp-piwik.php:381
-msgid "Change"
-msgstr "تغییر"
+#: classes/WP_Piwik/Admin/Settings.php:144
+msgid "Last month"
+msgstr "ماه گذشته"
 
-#: wp-piwik.php:382
-msgid "Currently shown stats:"
-msgstr "آمار نمایش جاری:"
+#: classes/WP_Piwik/Admin/Settings.php:145
+msgid "Current week"
+msgstr "هفته جاری"
 
-#: wp-piwik.php:383
-msgid "Current shown stats: <strong>Overall</strong>"
-msgstr "آمار نمایش جاری: <strong>مجموع</strong>"
+#: classes/WP_Piwik/Admin/Settings.php:146
+msgid "Last week"
+msgstr "هفته‌ی گذشته"
 
-#: wp-piwik.php:448
-msgid "WP-Piwik Settings"
-msgstr "تنظیمات آمار"
+#: classes/WP_Piwik/Admin/Settings.php:147
+msgid "Default date shown on statistics page."
+msgstr "داده‌های پیش‌گزیده نمایش داده شده در صفحه آمار"
 
-#: wp-piwik.php:455
-#: wp-piwik.php:617
-msgid "Account settings"
-msgstr "تنظیمات حساب"
+#: classes/WP_Piwik/Admin/Settings.php:149
+msgid "Show SEO data"
+msgstr ""
 
-#: wp-piwik.php:457
-#: wp-piwik.php:619
-msgid "Piwik URL"
-msgstr "آدرس پیویک"
+#: classes/WP_Piwik/Admin/Settings.php:149
+msgid "Display SEO ranking data on statistics page."
+msgstr ""
 
-#: wp-piwik.php:461
-#: wp-piwik.php:623
-msgid "Auth token"
-msgstr "نشانه اعتبارسنجی"
+#: classes/WP_Piwik/Admin/Settings.php:149
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Slow!"
+msgstr "کند!"
 
-#: wp-piwik.php:467
-#: wp-piwik.php:628
-msgid "To enable Piwik statistics, please enter your Piwik base URL (like http://mydomain.com/piwik) and your personal authentification token. You can get the token on the API page inside your Piwik interface. It looks like &quot;1234a5cd6789e0a12345b678cd9012ef&quot;."
-msgstr "برای فعال کردن آمار پیویک، لطفاً آدرس نصب پایه پیویک (مانند http://mydomain.com/piwik) و نشانه اعتبارسنجی خود را وارد کنید. شما می‌توانید در بخش API رابط کاربری پیویک، آن را به دست بیاورید. این نشانه چیزی مانند این است:&quot;1234a5cd6789e0a12345b678cd9012ef&quot;."
+#: classes/WP_Piwik/Admin/Settings.php:151
+msgid "Dashboard overview"
+msgstr ""
 
-#: wp-piwik.php:477
-msgid "<strong>Important note:</strong> If you do not host this blog on your own, your site admin is able to get your auth token from the database. So he is able to access your statistics. You should never use an auth token with more than simple view access!"
-msgstr "<strong>نکته مهم:</strong> اگر شما وبلاگ را خود میزبانی نکنید، مدیر سایت شما نیز می‌تواند با دسترسی به پایگاه داده نشانه اعتبارسنجی شما را به دست آورد. بنابراین شما نباید هرگز از نشانه اعتبارسنجی با دسترسی بالاتر از نمایش ساده استفاده کنید."
+#: classes/WP_Piwik/Admin/Settings.php:152
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:192
+#: classes/WP_Piwik/Admin/Settings.php:213
+#: classes/WP_Piwik/Admin/Settings.php:304
+msgid "Disabled"
+msgstr "غیرفعال"
 
-#: wp-piwik.php:485
-#: wp-piwik.php:489
-msgid "An error occured"
-msgstr "خطائی رخ داده است"
+#: classes/WP_Piwik/Admin/Settings.php:155
+msgid "Last 30 days"
+msgstr "30 روز گذشته"
 
-#: wp-piwik.php:486
-msgid "Please check URL and auth token. You need at least view access to one site."
-msgstr "لطفاً آدرس نصب پیویک و نشانه اعتبارسنجی را بررسی کنید. شما باید حداقل دسترسی نمایش به یک سایت داشته باشید."
+#: classes/WP_Piwik/Admin/Settings.php:156
+msgid "Enable WP-Piwik dashboard widget &quot;Overview&quot;."
+msgstr ""
 
-#: wp-piwik.php:492
-msgid "Choose site"
-msgstr "انتخاب سایت"
+#: classes/WP_Piwik/Admin/Settings.php:158
+msgid "Dashboard graph"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:158
+msgid "Enable WP-Piwik dashboard widget &quot;Graph&quot;."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Dashboard SEO"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Enable WP-Piwik dashboard widget &quot;SEO&quot;."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:162
+msgid "Show graph on WordPress Toolbar"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:162
+msgid "Display a last 30 days visitor graph on WordPress' toolbar."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:164
+msgid "Display stats to"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:171
+msgid "Choose user roles allowed to see the statistics page."
+msgstr "انتخاب کاربرانی که مجازند صفحه آمار ر اببینند."
+
+#: classes/WP_Piwik/Admin/Settings.php:173
+msgid "Show per post stats"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:173
+msgid "Show stats about single posts at the post edit admin page."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:175
+msgid "Piwik shortcut"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:175
+msgid "Display a shortcut to Piwik itself."
+msgstr "نمایش یک میان‌بر به پیویک اصلی."
+
+#: classes/WP_Piwik/Admin/Settings.php:177
+msgid "WP-Piwik display name"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:177
+msgid "Plugin name shown in WordPress."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:179
+msgid "Enable shortcodes"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:179
+msgid "Enable shortcodes in post or page content."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "You can choose between four tracking code modes:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"WP-Piwik will not add the tracking code. Use this, if you want to add the "
+"tracking code to your template files or you use another plugin to add the "
+"tracking code."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:193
+msgid "Default tracking"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "WP-Piwik will use Piwik's standard tracking code."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:194
+msgid "Use js/index.php"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"You can choose this tracking code, to deliver a minified proxy code and to "
+"avoid using the files called piwik.js or piwik.php."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "See %sreadme file%s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:195
+msgid "Use proxy script"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "Use this tracking code to not reveal the Piwik server URL."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:210
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid "See %sPiwik FAQ%s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:196
+msgid "Enter manually"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"Enter your own tracking code manually. You can choose one of the prior "
+"options, pre-configure your tracking code and switch to manually editing at "
+"last."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "Use the placeholder {ID} to add the Piwik site ID."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:191
+msgid "Add tracking code"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:199
+msgid "Tracking code"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:201
+msgid "JavaScript code position"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:202
+msgid "Footer"
+msgstr "پابرگ"
+
+#: classes/WP_Piwik/Admin/Settings.php:203
+msgid "Header"
+msgstr "تیتر"
+
+#: classes/WP_Piwik/Admin/Settings.php:204
+msgid ""
+"Choose whether the JavaScript code is added to the footer or the header."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:206
+msgid "Noscript code"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+msgid "Add &lt;noscript&gt;"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+msgid "Adds the &lt;noscript&gt; code to your footer."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Disabled in proxy mode."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Add rec parameter to noscript code"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Enable tracking for visitors without JavaScript (not recommended)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:212
+msgid "Enable content tracking"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:214
+msgid "Track all content blocks"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:215
+msgid "Track only visible content blocks"
+msgstr ""
 
-#: wp-piwik.php:511
-#: wp-piwik.php:547
-#: wp-piwik.php:584
-#: wp-piwik.php:658
-msgid "Save settings"
-msgstr "ذخیره تنظیمات"
+#: classes/WP_Piwik/Admin/Settings.php:216
+msgid ""
+"Content tracking allows you to track interaction with the content of a web "
+"page or application."
+msgstr ""
 
-#: wp-piwik.php:515
-#: wp-piwik.php:643
-msgid "Tracking settings"
-msgstr "تنظیمات ره‌گیری"
+#: classes/WP_Piwik/Admin/Settings.php:216
+#: classes/WP_Piwik/Admin/Settings.php:218
+#: classes/WP_Piwik/Admin/Settings.php:222
+#: classes/WP_Piwik/Admin/Settings.php:224
+#: classes/WP_Piwik/Admin/Settings.php:226
+#: classes/WP_Piwik/Admin/Settings.php:247
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "See %sPiwik documentation%s."
+msgstr ""
 
-#: wp-piwik.php:521
-msgid "Add script"
-msgstr "افزودن اسکریپت"
+#: classes/WP_Piwik/Admin/Settings.php:218
+msgid "Track search"
+msgstr ""
 
-#: wp-piwik.php:525
-msgid "If your template uses wp_footer(), WP-Piwik can automatically add the Piwik javascript code to your blog."
-msgstr "اگر از قالبی استفاده می‌کنید که از wp_footer() بهره می‌گیرد، آن‌گاه افزونه می‌تواند به طور خودکار کد جاوااسکریپت را به وبلاگ شما اضافه کند."
+#: classes/WP_Piwik/Admin/Settings.php:218
+msgid "Use Piwik's advanced Site Search Analytics feature."
+msgstr ""
 
-#: wp-piwik.php:528
+#: classes/WP_Piwik/Admin/Settings.php:220
 msgid "Track 404"
 msgstr "ره‌گیری 404 (صفحه یافت نشد)"
 
-#: wp-piwik.php:532
-msgid "If you add the Piwik javascript code by wp_footer(), WP-Piwik can automatically add a 404-category to track 404-page-visits."
-msgstr "اگر جاواسکریپت پیویک را با wp_footer() استفاده می‌کنید، آن‌گاه افزونه می‌تواند به طور خودکار دسته 404 را به برای رهگیری بازدیدهای صفحات ناموجود اضافه کند."
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid ""
+"WP-Piwik can automatically add a 404-category to track 404-page-visits."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:222
+msgid "Add annotation on new post"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:222
+msgid "Add a Piwik annotation on each new post."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:224
+msgid "Show custom variables box"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:224
+msgid " Show a &quot;custom variables&quot; edit box on post edit page."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:226
+msgid "Add new file types for download tracking"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:226
+msgid ""
+"Add file extensions for download tracking, divided by a vertical bar "
+"(&#124;)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:228
+msgid "Disable cookies"
+msgstr "غیرفعال‌سازی کوکی ها"
+
+#: classes/WP_Piwik/Admin/Settings.php:228
+msgid "Disable all tracking cookies for a visitor."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:230
+msgid "Limit cookie lifetime"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:230
+msgid ""
+"You can limit the cookie lifetime to avoid tracking your users over a longer"
+" period as necessary."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:232
+msgid "Visitor timeout (seconds)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:234
+msgid "Session timeout (seconds)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:236
+msgid "Referral timeout (seconds)"
+msgstr ""
 
-#: wp-piwik.php:536
-#: wp-piwik.php:644
+#: classes/WP_Piwik/Admin/Settings.php:238
+msgid "Track admin pages"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:238
+msgid ""
+"Enable to track users on admin pages (remember to configure the tracking "
+"filter appropriately)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:241
 msgid "Tracking filter"
 msgstr "پالایه ره‌گیری"
 
+#: classes/WP_Piwik/Admin/Settings.php:245
 msgid "Choose users by user role you do <strong>not</strong> want to track."
-msgstr "کاربرانی را که <strong>نمی‌خواهید</strong> ره‌گیری شوند با توجه به وظیفه انتخاب کنید."
+msgstr "کاربرانی را که <strong>نمی‌خواهید</strong> رهگیری شوند با توجه به وظیفه انتخاب کنید."
 
-msgid "Choose users by user role you do <strong>not</strong> want to track. Requires enabled &quot;Add script&quot;-functionality."
-msgstr "کاربرانی را که <strong>نمی‌خواهید</strong> ره‌گیری شوند با توجه به وظیفه انتخاب کنید: باید قابلیت &quot;افزودن اسکریپت&quot; فعال باشد."
+#: classes/WP_Piwik/Admin/Settings.php:247
+msgid "Track subdomains in the same website"
+msgstr ""
 
-#: wp-piwik.php:551
-msgid "Statistic view settings"
-msgstr "تنظیمات نمایش آمار"
+#: classes/WP_Piwik/Admin/Settings.php:247
+msgid "Adds *.-prefix to cookie domain."
+msgstr ""
 
-#: wp-piwik.php:554
-msgid "Dashboard"
-msgstr "پیشخوان"
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "Do not count subdomains as outlink"
+msgstr ""
 
-#: wp-piwik.php:556
-msgid "No"
-msgstr "خیر"
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "Adds *.-prefix to tracked domain."
+msgstr ""
 
-#: wp-piwik.php:557
-#: wp-piwik.php:558
-#: wp-piwik.php:559
-msgid "Yes"
-msgstr "بله"
+#: classes/WP_Piwik/Admin/Settings.php:251
+msgid "Track RSS feeds"
+msgstr ""
 
-#: wp-piwik.php:562
-msgid "Display a dashboard widget to your WordPress dashboard."
-msgstr "نمایش یک ویدجت در پیشخوان وردپرس شما."
+#: classes/WP_Piwik/Admin/Settings.php:251
+msgid "Enable to track posts in feeds via tracking pixel."
+msgstr ""
 
-#: wp-piwik.php:567
-msgid "Display a shortcut to Piwik itself."
-msgstr "نمایش یک میان‌بر به پیویک اصلی."
+#: classes/WP_Piwik/Admin/Settings.php:253
+msgid "Track RSS feed links as campaign"
+msgstr ""
 
-#: wp-piwik.php:568
-msgid "Display to"
-msgstr "نمایش در"
+#: classes/WP_Piwik/Admin/Settings.php:255
+msgid "RSS feed campaign"
+msgstr ""
 
-#: wp-piwik.php:579
-msgid "Choose user roles allowed to see the statistics page."
-msgstr "انتخاب کاربرانی که مجازند صفحه آمار ر اببینند."
+#: classes/WP_Piwik/Admin/Settings.php:255
+msgid "Keyword: post name."
+msgstr ""
 
-#: wp-piwik.php:612
-msgid "WPMU-Piwik Settings"
-msgstr "تنظیمات پیویک چندکاربره"
+#: classes/WP_Piwik/Admin/Settings.php:257
+msgid "Enable heartbeat timer"
+msgstr ""
 
-#: wp-piwik.php:636
-msgid "<strong>Important note:</strong> You have to choose a token which provides administration access. WPMU-Piwik will create new Piwik sites for each blog if it is shown the first time and it is not added yet. All users can access their own statistics only, while site admins can access all statistics. To avoid conflicts, you should use a clean Piwik installation without other sites added. The provided themes should use wp_footer, because it adds the Piwik javascript code to each page."
-msgstr " <strong>نکته مهم:</strong> شما باید نشانه‌ای با دسترسی مدیریتی انتخاب کنید. پیویک چندکاربره برای هر وبلاگ، اگر اولی نمایش باشد یا اضافه نشده باشد، یک سایت جدید ایجاد می‌کند. کاربران تنها می‌توانند به آمار خود دسترسی داشته باشند، اما مدیر سایت می‌تواند به همه آمار دسترسی داشته باشد. برای جلوگیری از تعارض، باید یک پیویک نصب شده تمیز بدون هیچ سایت افزوده شده استفاده شود. قالب استفاده شده باید از wp_footer بهره بگیرد، چون پیویک کد جاوااسکریپت را به هر صفحه اضافه می‌کند."
+#: classes/WP_Piwik/Admin/Settings.php:257
+msgid ""
+"Enable a heartbeat timer to get more accurate visit lengths by sending "
+"periodical HTTP ping requests as long as the site is opened. Enter the time "
+"between the pings in seconds (Piwik default: 15) to enable or 0 to disable "
+"this feature. <strong>Note:</strong> This will cause a lot of additional "
+"HTTP requests on your site."
+msgstr ""
 
-#: wp-piwik.php:671
-msgid "If you like WP-Piwik, you can support its development by a donation:"
-msgstr "اگر افزونه پیویک برای وردپرس را دوست دارید، با کمک مالی از آن حمایت کنید:"
+#: classes/WP_Piwik/Admin/Settings.php:262
+msgid ""
+"Usually, you do not need to change these settings. If you want to do so, you"
+" should know what you do or you got an expert's advice."
+msgstr ""
 
-#: wp-piwik.php:687
-msgid "My Amazon.de wishlist (German)"
-msgstr "مورد علاقه‌های من در آمازون (آلمانی)"
+#: classes/WP_Piwik/Admin/Settings.php:264
+msgid "Enable cache"
+msgstr ""
 
-#. Plugin URI of the plugin/theme
-msgid "http://www.braekling.de/wp-piwik-wpmu-piwik-wordpress/"
-msgstr "http://www.braekling.de/wp-piwik-wpmu-piwik-wordpress/"
+#: classes/WP_Piwik/Admin/Settings.php:264
+msgid "Cache API calls, which not contain today's values, for a week."
+msgstr ""
 
-#. Description of the plugin/theme
-msgid "Adds Piwik stats to your dashboard menu and Piwik code to your wordpress footer."
-msgstr "آمار پیویک را به منوی پیشخوان و کد پیویک به پانویس وردپرس اضافه می‌کند."
+#: classes/WP_Piwik/Admin/Settings.php:267
+msgid "HTTP connection via"
+msgstr ""
 
-#. Author of the plugin/theme
-msgid "Andr&eacute; Br&auml;kling"
-msgstr "آندرکوت بروملینگ"
+#: classes/WP_Piwik/Admin/Settings.php:268
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "cURL"
+msgstr ""
 
-#. Author URI of the plugin/theme
-msgid "http://www.braekling.de"
-msgstr "http://www.braekling.de"
+#: classes/WP_Piwik/Admin/Settings.php:269
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "fopen"
+msgstr ""
 
-msgid "Credits"
-msgstr "سازندگان"
+#: classes/WP_Piwik/Admin/Settings.php:270
+msgid ""
+"Choose whether WP-Piwik should use cURL or fopen to connect to Piwik in HTTP"
+" or Pro mode."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:272
+msgid "HTTP method"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:273
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "POST"
+msgstr "نوشته"
+
+#: classes/WP_Piwik/Admin/Settings.php:274
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "GET"
+msgstr "دریافت"
+
+#: classes/WP_Piwik/Admin/Settings.php:275
+msgid "Choose whether WP-Piwik should use POST or GET in HTTP or Pro mode."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:277
+msgid "Disable time limit"
+msgstr "غیرفعال‌سازی محدودیت زمان"
+
+#: classes/WP_Piwik/Admin/Settings.php:277
+msgid "Use set_time_limit(0) if stats page causes a time out."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:279
+msgid "Connection timeout"
+msgstr "تماس برقرار نشد"
+
+#: classes/WP_Piwik/Admin/Settings.php:281
+msgid "Disable SSL peer verification"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:281
+msgid "not recommended"
+msgstr "توصیه نشده"
+
+#: classes/WP_Piwik/Admin/Settings.php:283
+msgid "User agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:284
+msgid "Use the PHP default user agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:284
+msgid "empty"
+msgstr "واژه خالی"
+
+#: classes/WP_Piwik/Admin/Settings.php:285
+msgid "Define a specific user agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:287
+msgid "Specific user agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:289
+msgid "Add data-cfasync=false"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:291
+msgid "CDN URL"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:293
+msgid "CDN URL (SSL)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:295
+msgid "Force Piwik to use a specific protocol"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:296
+msgid "Disabled (default)"
+msgstr "غیرفعال(پیش فرض)"
+
+#: classes/WP_Piwik/Admin/Settings.php:297
+msgid "http"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:298
+msgid "https (SSL)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:299
+msgid ""
+"Choose if you want to explicitly force Piwik to use HTTP or HTTPS. Does not "
+"work with a CDN URL."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:301
+msgid "Update notice"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:302
+msgid "Show always if WP-Piwik is updated"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:303
+msgid "Show only if WP-Piwik is updated and settings were changed"
+msgstr ""
 
+#: classes/WP_Piwik/Admin/Settings.php:305
+msgid "Choose if you want to get an update notice if WP-Piwik is updated."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:466
+msgid "Donate"
+msgstr "اهداء کردن"
+
+#: classes/WP_Piwik/Admin/Settings.php:468
+msgid "If you like WP-Piwik, you can support its development by a donation:"
+msgstr "اگر افزونه پیویک برای وردپرس را دوست دارید، با کمک مالی از آن حمایت کنید:"
+
+#: classes/WP_Piwik/Admin/Settings.php:506
+msgid "My Amazon.de wishlist"
+msgstr "لیست علاقه مندی های من در Amazon.de"
+
+#: classes/WP_Piwik/Admin/Settings.php:509
+#: classes/WP_Piwik/Admin/Settings.php:556
+msgid "Please don't forget to vote the compatibility at the"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:540
 msgid "Thank you very much for your donation"
 msgstr "از شما به خاطر هدایایتان تشکر می‌کنم"
 
-msgid "and all people flattering this"
-msgstr "و تمام افرادی که تشکر کردند"
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid "the Piwik team itself"
+msgstr "تیم پیویک"
+
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid ", and all people flattering this"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:541
+msgid ""
+"Graphs powered by <a href=\"http://www.jqplot.com/\">jqPlot</a> (License: "
+"GPL 2.0 and MIT) and <a "
+"href=\"http://omnipotent.net/jquery.sparkline/\">jQuery Sparklines</a> "
+"(License: New BSD License)."
+msgstr ""
 
-msgid "Graphs powered by <a href=\"http://www.jqplot.com/\">jqPlot</a>, an open source project by Chris Leonello. Give it a try! (License: GPL 2.0 and MIT)"
-msgstr "نمودارها توسط <a href=\"http://www.jqplot.com/\">jqPlot</a> ایجاد شده‌اند, که یک پروژه کدباز است که توسط کریس لئونلو ایجاد شده است. امتحانش کنید (اجازه‌نامه: GPL 2.0 und MIT)"
+#: classes/WP_Piwik/Admin/Settings.php:542
+msgid "Metabox support inspired by"
+msgstr ""
 
+#: classes/WP_Piwik/Admin/Settings.php:543
+msgid "Tabbed settings page suggested by the"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:544
 msgid "Thank you very much"
 msgstr "از شما بسیار متشکریم"
 
-msgid ", and"
-msgstr "، و"
-
+#: classes/WP_Piwik/Admin/Settings.php:544
 msgid "for your translation work"
 msgstr "برای فعالیت شما در ترجمه"
 
-msgid "Thank you very much, all users who send me mails containing criticism, commendation, feature requests and bug reports! You help me to make WP-Piwik much better."
+#: classes/WP_Piwik/Admin/Settings.php:545
+msgid ""
+"Thank you very much, all users who send me mails containing criticism, "
+"commendation, feature requests and bug reports! You help me to make WP-Piwik"
+" much better."
 msgstr "از شما بسیار متشکریم، تمام کاربرانی که به من ایمیل زدند، تشکر کردند، و درخواست ویژگی یا گزارش باگ انجام دادند. ش ما کمک کردید که پیویک وردپرس بسیار بهتر شود."
 
-msgid "Thank <strong>you</strong> for using my plugin. It is the best commendation if my piece of code is really used!"
+#: classes/WP_Piwik/Admin/Settings.php:546
+msgid ""
+"Thank <strong>you</strong> for using my plugin. It is the best commendation "
+"if my piece of code is really used!"
 msgstr "از <strong>شما</strong> به خاطر استفاده از این افزونه متشکریم. بهترین تقدیر این است که کدی که من نوشتم واقعاً استفاده شود."
 
-msgid "Changes saved"
-msgstr "تغییرات ذخیره شد"
+#: classes/WP_Piwik/Admin/Settings.php:555
+msgid "The best place to get help:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:555
+msgid "WP-Piwik support forum"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:558
+msgid "Debugging"
+msgstr "اشکال زدایی"
+
+#: classes/WP_Piwik/Admin/Settings.php:559
+msgid ""
+"Either allow_url_fopen has to be enabled <em>or</em> cURL has to be "
+"available:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:562
+msgid "cURL is"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:563
+#: classes/WP_Piwik/Admin/Settings.php:568
+msgid "not"
+msgstr "نیست"
+
+#: classes/WP_Piwik/Admin/Settings.php:564
+msgid "available"
+msgstr "در دسترس"
 
-msgid "installed"
-msgstr "نصب شده"
+#: classes/WP_Piwik/Admin/Settings.php:567
+msgid "allow_url_fopen is"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:569
+msgid "enabled"
+msgstr "فعال"
+
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "is used."
+msgstr "استفاده شده"
+
+#: classes/WP_Piwik/Admin/Settings.php:573
+msgid "Determined Piwik base URL is"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:577
+msgid "Tools"
+msgstr "ابزارها"
+
+#: classes/WP_Piwik/Admin/Settings.php:579
+msgid "Run testscript"
+msgstr "اجرای اسکریپت"
+
+#: classes/WP_Piwik/Admin/Settings.php:580
+msgid "Sitebrowser"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:581
+msgid "Clear cache"
+msgstr "پاکسازی کش"
+
+#: classes/WP_Piwik/Admin/Settings.php:582
+msgid "Are you sure you want to clear all settings?"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:582
+msgid "Reset WP-Piwik"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:584
+msgid "Latest support threads on WordPress.org"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:635
+msgid "Settings cleared (except connection settings)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:651
+msgid "Cache cleared."
+msgstr "کش پاک شد"
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:17
+msgid "site"
+msgstr "سایت‌"
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:18
+msgid "sites"
+msgstr "سایت‌ها"
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:24
+msgid "No site configured yet."
+msgstr "سایت هنوز پیکربندی نشده"
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:29
+msgid "Blog ID"
+msgstr "شناسه وبلاگ"
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:30
+msgid "Title"
+msgstr "عنوان"
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:31
+msgid "URL"
+msgstr "نشانی وب"
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:32
+msgid "Site ID (Piwik)"
+msgstr "شناسه سایت (پیویک)"
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:79
+msgid "Site not created yet."
+msgstr "وب سایت هنوزایجاد نشده است."
+
+#: classes/WP_Piwik/Admin/Statistics.php:12
+msgid "Statistics"
+msgstr "آمار"
+
+#: classes/WP_Piwik/Admin/Statistics.php:20
+msgid "Currently shown stats:"
+msgstr "آمار در حال نمایش:"
 
+#: classes/WP_Piwik/Request/Php.php:27
+msgid "Could not resolve"
+msgstr "عملیات ناموفق"
+
+#: classes/WP_Piwik/Request/Php.php:27
+msgid "realpath() returns false"
+msgstr ""
+
+#: classes/WP_Piwik/Request/Php.php:39
+msgid "Class Piwik\\FrontController does not exists."
+msgstr ""
+
+#: classes/WP_Piwik/Request/Php.php:42
+msgid "Class Piwik\\API\\Request does not exists."
+msgstr ""
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:10
+msgid "Piwik Custom Variables"
+msgstr "متغیر های سفارشی Piwik"
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
+msgid "Name"
+msgstr "نام"
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
+msgid "Value"
+msgstr "مقدار"
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
+msgid "Set custom variables for a page view"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:18
+msgid "Browser Details"
+msgstr "جزئیات مرورگرها"
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:37
+#: classes/WP_Piwik/Widget/Browsers.php:37
+#: classes/WP_Piwik/Widget/Chart.php:43
+#: classes/WP_Piwik/Widget/Noresult.php:23
+#: classes/WP_Piwik/Widget/Overview.php:24
+#: classes/WP_Piwik/Widget/Plugins.php:23 classes/WP_Piwik/Widget/Post.php:25
+#: classes/WP_Piwik/Widget/Screens.php:35
+#: classes/WP_Piwik/Widget/Search.php:23 classes/WP_Piwik/Widget/Seo.php:20
+#: classes/WP_Piwik/Widget/SystemDetails.php:33
+#: classes/WP_Piwik/Widget/Systems.php:33
+#: classes/WP_Piwik/Widget/Visitors.php:35 classes/WP_Piwik/Widget.php:91
+msgid "Piwik error"
+msgstr "خطای پیویک"
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+msgid "Browser"
+msgstr "مرورگر"
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+#: classes/WP_Piwik/Widget/Screens.php:37
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+#: classes/WP_Piwik/Widget/Visitors.php:57 classes/WP_Piwik/Widget.php:100
+msgid "Unique"
+msgstr "یکتا"
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+#: classes/WP_Piwik/Widget/Plugins.php:25
+#: classes/WP_Piwik/Widget/Screens.php:37
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+msgid "Percent"
+msgstr "درصد"
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:66
+#: classes/WP_Piwik/Widget/Browsers.php:66
+#: classes/WP_Piwik/Widget/Screens.php:64
+#: classes/WP_Piwik/Widget/SystemDetails.php:62
+#: classes/WP_Piwik/Widget/Systems.php:62
+msgid "Others"
+msgstr "غیره"
+
+#: classes/WP_Piwik/Widget/Browsers.php:18
+msgid "Browsers"
+msgstr "مرورگر"
+
+#: classes/WP_Piwik/Widget/Chart.php:19
+#: classes/WP_Piwik/Widget/Overview.php:41 classes/WP_Piwik/Widget/Post.php:37
+#: classes/WP_Piwik/Widget/Visitors.php:17
+msgid "Visitors"
+msgstr "بازدیدکنندگان"
+
+#: classes/WP_Piwik/Widget/Chart.php:71
+msgid ""
+"The graph contains the values shown in the table below (visitors / unique / "
+"bounces). The red line show a linear trendline (unique)."
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Keywords.php:16
+msgid "Keywords"
+msgstr "کلیدواژه‌ها"
+
+#: classes/WP_Piwik/Widget/Noresult.php:16
+#: classes/WP_Piwik/Widget/Search.php:16
+msgid "Site Search"
+msgstr "جستجو در سایت"
+
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+msgid "Keyword"
+msgstr "کلیدواژه"
+
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+msgid "Requests"
+msgstr "تعداد"
+
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Bounced"
+msgstr "بازگشت"
+
+#: classes/WP_Piwik/Widget/Overview.php:17 classes/WP_Piwik/Widget/Post.php:18
+msgid "Overview"
+msgstr "نمای کلی"
+
+#: classes/WP_Piwik/Widget/Overview.php:42 classes/WP_Piwik/Widget/Post.php:38
+msgid "Unique visitors"
+msgstr "بازدیدکنندگان یکتا"
+
+#: classes/WP_Piwik/Widget/Overview.php:43 classes/WP_Piwik/Widget/Post.php:39
+msgid "Page views"
+msgstr "نمایش‌های صفحه"
+
+#: classes/WP_Piwik/Widget/Overview.php:44 classes/WP_Piwik/Widget/Post.php:40
+msgid "Total time spent"
+msgstr "کل زمان سپری شده"
+
+#: classes/WP_Piwik/Widget/Overview.php:45 classes/WP_Piwik/Widget/Post.php:42
+msgid "Bounce count"
+msgstr "تعداد بازگشت"
+
+#: classes/WP_Piwik/Widget/Overview.php:48 classes/WP_Piwik/Widget/Post.php:41
+msgid "Time/visit"
+msgstr "زمان/بازدید"
+
+#: classes/WP_Piwik/Widget/Overview.php:48
+msgid "Max. page views in one visit"
+msgstr "حداکثر تعداد نمایش‌های صفحه در یک بازدید"
+
+#: classes/WP_Piwik/Widget/Overview.php:49 classes/WP_Piwik/Widget/Post.php:46
+msgid "Shortcut"
+msgstr "میان‌بر"
+
+#: classes/WP_Piwik/Widget/Pages.php:16
+msgid "Pages"
+msgstr "برگه‌ها "
+
+#: classes/WP_Piwik/Widget/Plugins.php:16
+msgid "Plugins"
+msgstr "افزونه‌ها"
+
+#: classes/WP_Piwik/Widget/Plugins.php:25
+msgid "Plugin"
+msgstr "افزونه"
+
+#: classes/WP_Piwik/Widget/Plugins.php:25
+#: classes/WP_Piwik/Widget/Visitors.php:57 classes/WP_Piwik/Widget.php:102
+msgid "Visits"
+msgstr "بازدیدها"
+
+#: classes/WP_Piwik/Widget/Post.php:43
+msgid "Min. generation time"
+msgstr "حداقل زمان ایجاد  "
+
+#: classes/WP_Piwik/Widget/Post.php:44
+msgid "Max. generation time"
+msgstr "حداکثر زمان ایجاد ."
+
+#: classes/WP_Piwik/Widget/Referrers.php:16
+msgid "Referrers"
+msgstr "ارجاع‌دهنده‌ها"
+
+#: classes/WP_Piwik/Widget/Screens.php:16
+msgid "Resolutions"
+msgstr "وضوح تصویر"
+
+#: classes/WP_Piwik/Widget/Screens.php:37
+msgid "Resolution"
+msgstr "وضوح تصویر"
+
+#: classes/WP_Piwik/Widget/Seo.php:13
+msgid "SEO"
+msgstr "SEO"
+
+#: classes/WP_Piwik/Widget/SystemDetails.php:14
+msgid "Operation System Details"
+msgstr "جزئیات سیستم عامل"
+
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+msgid "Operation System"
+msgstr "سیستم عامل"
+
+#: classes/WP_Piwik/Widget/Systems.php:14
+msgid "Operation Systems"
+msgstr "سیستم عامل‌ها"
+
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Date"
+msgstr "تاریخ"
+
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Page Views"
+msgstr "تعداد نمایش صفحه"
+
+#: classes/WP_Piwik/Widget.php:104
+msgid "Hits"
+msgstr "تعداد بازدید ها"
+
+#: classes/WP_Piwik/Widget.php:106
+msgid "Actions"
+msgstr "کارها"
+
+#: classes/WP_Piwik/Widget.php:162
+msgid "No data available."
+msgstr "داده‌ای در دسترس نیست"
+
+#: classes/WP_Piwik/Widget.php:293
+msgid "week"
+msgstr "هفته"
+
+#: classes/WP_Piwik.php:193
+msgid "%s %s installed."
+msgstr " نصب شده"
+
+#: classes/WP_Piwik.php:193
 msgid "Next you should connect to Piwik"
 msgstr "سپس باید به پیویک متصل شوید"
 
+#: classes/WP_Piwik.php:227
+msgid "%s updated to %s."
+msgstr "%s. به روز رسانی به %s"
+
+#: classes/WP_Piwik.php:227
 msgid "Please validate your configuration"
 msgstr "لطفاً صحت تنظیمات خود را بررسی کنید"
 
-msgid "Default date"
-msgstr "تاریخ پیش‌گزیده"
+#: classes/WP_Piwik.php:259 classes/WP_Piwik.php:481
+msgid "Settings"
+msgstr "تنظیمات"
 
-msgid "Default date shown on statistics page."
-msgstr "داده‌های پیش‌گزیده نمایش داده شده در صفحه آمار"
+#: classes/WP_Piwik.php:262
+msgid "Important"
+msgstr "مهم"
 
-msgid "Dashboard data"
-msgstr "داده پیشخوان"
+#: classes/WP_Piwik.php:343 classes/WP_Piwik.php:365
+msgid "Piwik Statistics"
+msgstr "آمار"
 
-msgid "Display an overview widget to your WordPress dashboard."
-msgstr "نمایش آمار کلی در پیشخوان وردپرس شما."
+#: classes/WP_Piwik.php:453
+msgid "Configure WP-Piwik"
+msgstr ""
 
-msgid "Boad chart"
-msgstr "صفحه آمار"
+#: classes/WP_Piwik.php:923
+msgid "An error occured"
+msgstr "خطائی رخ داده است"
 
-msgid "Display a visitor graph widget to your WordPress dashboard."
-msgstr "نمایش نمودار بازدید کنندگان در پیشخوان وردپرس شما."
+#: classes/WP_Piwik.php:1191
+msgid "Cheatin&#8217; uh?"
+msgstr "کلک میزنی،‌ها؟"
 
-msgid "No data available."
-msgstr "داده‌ای در دسترس نیست"
+#: wp-piwik.php:60
+msgid ""
+"WP-Piwik requires at least PHP 5.3. You are using the deprecated version %s."
+" Please update PHP to use WP-Piwik."
+msgstr ""
+
+#. Plugin Name of the plugin/theme
+msgid "WP-Piwik"
+msgstr "آمار"
+
+#. Plugin URI of the plugin/theme
+msgid "http://wordpress.org/extend/plugins/wp-piwik/"
+msgstr ""
+
+#. Description of the plugin/theme
+msgid ""
+"Adds Piwik stats to your dashboard menu and Piwik code to your wordpress "
+"header."
+msgstr ""
 
+#. Author of the plugin/theme
+msgid "Andr&eacute; Br&auml;kling"
+msgstr "آندرکوت بروملینگ"
+
+#. Author URI of the plugin/theme
+msgid "http://www.braekling.de"
+msgstr "http://www.braekling.de"
diff --git a/wp-content/plugins/wp-piwik/languages/wp-piwik-fr_FR.mo b/wp-content/plugins/wp-piwik/languages/wp-piwik-fr_FR.mo
index ba536f8f90676aa5a814df68270470dafdf3f066..a3fd8ed4e77a7c5dbba7e7086645881a87f4b75e 100644
Binary files a/wp-content/plugins/wp-piwik/languages/wp-piwik-fr_FR.mo and b/wp-content/plugins/wp-piwik/languages/wp-piwik-fr_FR.mo differ
diff --git a/wp-content/plugins/wp-piwik/languages/wp-piwik-fr_FR.po b/wp-content/plugins/wp-piwik/languages/wp-piwik-fr_FR.po
index bb81095bf77bf296bbe522aec3443ecbe55a6328..40b6e17bc4ae88a86fd1682757e69814b02de68c 100644
--- a/wp-content/plugins/wp-piwik/languages/wp-piwik-fr_FR.po
+++ b/wp-content/plugins/wp-piwik/languages/wp-piwik-fr_FR.po
@@ -1,258 +1,1268 @@
-# WP-Piwik 0.3.0 - French language file
-# Copyright (C) 2009 Andre Braekling
+# Copyright (C) 2015 WP-Piwik
 # This file is distributed under the same license as the WP-Piwik package.
-# Andre Braekling <webmaster@braekling.de>, 2009.
-#
+# Translators:
+# Andre Braekling <webmaster@braekling.de>, 2009
+# André Bräkling, 2015
+# Franck, 2015
+# Vincent BIRET <vincentbiret@hotmail.com>, 2015
 msgid ""
 msgstr ""
-"Project-Id-Version: \n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: \n"
-"PO-Revision-Date: 2010-04-28 15:44+0100\n"
-"Last-Translator: fuburize <fuburize@gmail.com>\n"
-"Language-Team: \n"
+"Project-Id-Version: WP-Piwik\n"
+"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-piwik\n"
+"POT-Creation-Date: 2015-07-22 10:25:29+00:00\n"
+"PO-Revision-Date: 2015-07-22 10:33+0000\n"
+"Last-Translator: André Bräkling\n"
+"Language-Team: French (France) (http://www.transifex.com/projects/p/wp-piwik/language/fr_FR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Language: fr_FR\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
-#: dashboard/browsers.php:8
-#: dashboard/browsers.php:37
-msgid "Browser"
-msgstr "Navigateur"
+#: classes/WP_Piwik/Admin/Settings.php:24
+msgid "Reload"
+msgstr "Recharger"
 
-msgid "Others"
-msgstr "Autres"
+#: classes/WP_Piwik/Admin/Settings.php:27
+msgid "Changes saved."
+msgstr "Modifications enregistrées."
 
-msgid "Resolution"
-msgstr "Résolution"
+#: classes/WP_Piwik/Admin/Settings.php:45
+msgid "Save Changes"
+msgstr "Enregistrer les modifications"
 
-msgid "Operating System"
-msgstr "Système d'exploitation"
+#: classes/WP_Piwik/Admin/Settings.php:46
+msgid "Thanks for using WP-Piwik!"
+msgstr "Merci d'utiliser WP-Piwik&nbsp;!"
 
-msgid "Shortcut"
-msgstr "Raccourci"
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid "WP-Piwik %s is successfully connected to Piwik %s."
+msgstr "WP-Piwik %s est connecté avec succès à Piwik %s."
+
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid "You are running WordPress %s."
+msgstr "Vous utilisez WordPress %s."
+
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid ""
+"You are running a WordPress %s blog network (WPMU). WP-Piwik will handle "
+"your sites as different websites."
+msgstr "Vous utilisez le réseau de blogs (WPMU) d'un WordPress %s . WP-Piwik va gérer vos sites comme des sites distincts."
+
+#: classes/WP_Piwik/Admin/Settings.php:53
+msgid ""
+"WP-Piwik %s was not able to connect to Piwik using your configuration. Check"
+" the &raquo;Connect to Piwik&laquo; section below."
+msgstr "WP-Piwik %s n'a pas pu se connecter à Piwik à partir de votre configuration. Vérifiez la section ci-dessous &raquo;Connecter à Piwik&laquo;."
+
+#: classes/WP_Piwik/Admin/Settings.php:56
+msgid ""
+"WP-Piwik %s has to be connected to Piwik first. Check the &raquo;Connect to "
+"Piwik&laquo; section below."
+msgstr "WP-Piwik %s doit en premier être connecté à Piwik. Vérifiez la section ci-dessous &raquo;&nbsp;Connecter à Piwik&nbsp;&laquo; à Piwik&laquo;."
+
+#: classes/WP_Piwik/Admin/Settings.php:60
+msgid "Connect to Piwik"
+msgstr "Connecter à Piwik"
+
+#: classes/WP_Piwik/Admin/Settings.php:65
+msgid "Show Statistics"
+msgstr "Afficher les statistiques"
+
+#: classes/WP_Piwik/Admin/Settings.php:69
+msgid "Enable Tracking"
+msgstr "Activer le suivi"
+
+#: classes/WP_Piwik/Admin/Settings.php:74
+msgid "Expert Settings"
+msgstr "Réglages expert"
+
+#: classes/WP_Piwik/Admin/Settings.php:78 classes/WP_Piwik.php:923
+msgid "Support"
+msgstr "Support"
+
+#: classes/WP_Piwik/Admin/Settings.php:82
+msgid "Credits"
+msgstr "Crédits"
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid ""
+"WP-Piwik is a WordPress plugin to show a selection of Piwik stats in your "
+"WordPress admin dashboard and to add and configure your Piwik tracking code."
+" To use this you will need your own Piwik instance. If you do not already "
+"have a Piwik setup, you have two simple options: use either"
+msgstr "WP-Piwik est une extension WordPress pour afficher une sélection de stats Piwik dans votre tableau de bord d'admin WordPress et pour ajouter et configurer votre code de suivi Piwik. Pour utiliser cela, vous aurez besoin de votre propre instance Piwik. Si vous ne possédez pas encore de configuration Piwik, vous avez deux options simples&nbsp;: utilisez au choix"
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "Self-hosted"
+msgstr "auto-hébergé"
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "or"
+msgstr "ou"
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "Cloud-hosted"
+msgstr "hébergé dans un Cloud"
+
+#: classes/WP_Piwik/Admin/Settings.php:98
+msgid ""
+"Neither cURL nor fopen are available. So WP-Piwik can not use the HTTP API "
+"and not connect to Piwik Pro."
+msgstr "Ni cURL ni fopen sont disponibles. WP-Piwik ne peut donc pas utiliser l'API HTTP et ne peut pas se connecter à Piwik Pro."
+
+#: classes/WP_Piwik/Admin/Settings.php:98
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
+msgid "More information"
+msgstr "Plus d'informations"
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid "You can choose between three connection methods:"
+msgstr "Vous pouvez choisir entre trois méthodes de connexion&nbsp;:"
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:103
+msgid "Self-hosted (HTTP API, default)"
+msgstr "Auto-hébergé (API HTTP par défaut)"
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"This is the default option for a self-hosted Piwik and should work for most "
+"configurations. WP-Piwik will connect to Piwik using http(s)."
+msgstr "C'est l'option par défaut pour un Piwik auto-hébergé et devrait fonctionner pour la plupart des configurations. WP-Piwik va se connecter à Piwik en utilisant http(s)."
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:104
+msgid "Self-hosted (PHP API)"
+msgstr "Auto-hébergé (API PHP)"
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"Choose this, if your self-hosted Piwik and WordPress are running on the same"
+" machine and you know the full server path to your Piwik instance."
+msgstr "Choisissez cela, si votre Piwik auto-hébergé et WordPress fonctionnent sur la même machine et que vous connaissez le chemin complet du serveur de votre instance Piwik."
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:105
+msgid "Cloud-hosted (Piwik Pro)"
+msgstr "Hébergé dans un Cloud (Piwik Pro)"
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"If you are using a cloud-hosted Piwik by Piwik Pro, you can simply use this "
+"option."
+msgstr "Si vous utilisez Piwik hébergé dans un cloud par  Piwik Pro, vous pouvez simplement utiliser cette option."
+
+#: classes/WP_Piwik/Admin/Settings.php:101
+msgid "Piwik Mode"
+msgstr "Mode Piwik"
+
+#: classes/WP_Piwik/Admin/Settings.php:102
+msgid "Disabled (WP-Piwik will not connect to Piwik)"
+msgstr "Désactivé (WP-Piwik ne se connectera pas à Piwik)"
+
+#: classes/WP_Piwik/Admin/Settings.php:108
+msgid "Piwik URL"
+msgstr "Piwik URL"
+
+#: classes/WP_Piwik/Admin/Settings.php:108
+msgid ""
+"Enter your Piwik URL. This is the same URL you use to access your Piwik "
+"instance, e.g. http://www.example.com/piwik/."
+msgstr "Entrez votre URL Piwik. C'est la même URL que vous utilisez pour accéder à votre instance de Piwik, par exemple, http://www.example.com/piwik/."
+
+#: classes/WP_Piwik/Admin/Settings.php:109
+msgid "Piwik path"
+msgstr "Chemin Piwik"
+
+#: classes/WP_Piwik/Admin/Settings.php:109
+msgid "Enter the file path to your Piwik instance, e.g. /var/www/piwik/."
+msgstr "Entrez le chemin de votre instance Piwik, par exemple /var/www/piwik/."
+
+#: classes/WP_Piwik/Admin/Settings.php:110
+msgid "Piwik user"
+msgstr "Utilisateur Piwik"
+
+#: classes/WP_Piwik/Admin/Settings.php:110
+msgid ""
+"Enter your Piwik Pro username. It is also part of your URL: "
+"http://USERNAME.piwik.pro."
+msgstr "Entrez votre nom d'utilisateur Piwik Pro. C'est également une partie de votre URL&nbsp;: http://NOMUTILISATEUR.piwik.pro."
+
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid "Auth token"
+msgstr "Clef partagée (token_auth)"
+
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid ""
+"Enter your Piwik auth token here. It is an alphanumerical code like "
+"0a1b2c34d56e78901fa2bc3d45678efa."
+msgstr "Entrez votre clef partagée (token_auth) Piwik ici. C'est un code alphanumérique du genre 0a1b2c34d56e78901fa2bc3d45678efa."
+
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid "See %sWP-Piwik FAQ%s."
+msgstr "Voir la %sFAQ WP-Piwik%s."
+
+#: classes/WP_Piwik/Admin/Settings.php:116
+msgid "Auto config"
+msgstr "Auto config"
+
+#: classes/WP_Piwik/Admin/Settings.php:116
+msgid ""
+"Check this to automatically choose your blog from your Piwik sites by URL. "
+"If your blog is not added to Piwik yet, WP-Piwik will add a new site."
+msgstr "Cochez cette case pour choisir automatiquement votre blog à partir de vos sites Piwik par URL. Si votre blog est pas encore ajouté à Piwik, WP-Piwik ajoutera un nouveau site."
+
+#: classes/WP_Piwik/Admin/Settings.php:127
+msgid "Determined site"
+msgstr "Site déterminé"
+
+#: classes/WP_Piwik/Admin/Settings.php:132
+msgid "Select site"
+msgstr "Sélectionner le site"
+
+#: classes/WP_Piwik/Admin/Settings.php:140
+msgid "Piwik default date"
+msgstr "Date par défaut Piwik"
+
+#: classes/WP_Piwik/Admin/Settings.php:141
+#: classes/WP_Piwik/Admin/Settings.php:154
+msgid "Today"
+msgstr "Aujourd'hui"
+
+#: classes/WP_Piwik/Admin/Settings.php:142
+#: classes/WP_Piwik/Admin/Settings.php:153
+msgid "Yesterday"
+msgstr "Hier"
+
+#: classes/WP_Piwik/Admin/Settings.php:143
+msgid "Current month"
+msgstr "Mois en cours"
+
+#: classes/WP_Piwik/Admin/Settings.php:144
+msgid "Last month"
+msgstr "Mois précédent"
+
+#: classes/WP_Piwik/Admin/Settings.php:145
+msgid "Current week"
+msgstr "Semaine en cours"
+
+#: classes/WP_Piwik/Admin/Settings.php:146
+msgid "Last week"
+msgstr "Semaine précédente"
+
+#: classes/WP_Piwik/Admin/Settings.php:147
+msgid "Default date shown on statistics page."
+msgstr "Date affichée par défaut sur la page de statistiques."
+
+#: classes/WP_Piwik/Admin/Settings.php:149
+msgid "Show SEO data"
+msgstr "Afficher les données SEO"
+
+#: classes/WP_Piwik/Admin/Settings.php:149
+msgid "Display SEO ranking data on statistics page."
+msgstr "Afficher les données de classement SEO sur la page de statistiques."
+
+#: classes/WP_Piwik/Admin/Settings.php:149
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Slow!"
+msgstr "Doucement&nbsp;!"
+
+#: classes/WP_Piwik/Admin/Settings.php:151
+msgid "Dashboard overview"
+msgstr "Tableau de bord vue d'ensemble"
+
+#: classes/WP_Piwik/Admin/Settings.php:152
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:192
+#: classes/WP_Piwik/Admin/Settings.php:213
+#: classes/WP_Piwik/Admin/Settings.php:304
+msgid "Disabled"
+msgstr "Désactivé"
+
+#: classes/WP_Piwik/Admin/Settings.php:155
+msgid "Last 30 days"
+msgstr "30 derniers jours"
+
+#: classes/WP_Piwik/Admin/Settings.php:156
+msgid "Enable WP-Piwik dashboard widget &quot;Overview&quot;."
+msgstr "Activer le widget du tableau de bord WP-Piwik &quot;Vue d'ensemble&quot;."
+
+#: classes/WP_Piwik/Admin/Settings.php:158
+msgid "Dashboard graph"
+msgstr "Tableau de bord graphique"
+
+#: classes/WP_Piwik/Admin/Settings.php:158
+msgid "Enable WP-Piwik dashboard widget &quot;Graph&quot;."
+msgstr "Activer le widget du tableau de bord WP-Piwik &quot;Graphique&quot;."
+
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Dashboard SEO"
+msgstr "Tableau de bord SEO"
+
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Enable WP-Piwik dashboard widget &quot;SEO&quot;."
+msgstr "Activer le widget du tableau de bord WP-Piwik &quot;SEO&quot;."
+
+#: classes/WP_Piwik/Admin/Settings.php:162
+msgid "Show graph on WordPress Toolbar"
+msgstr "Afficher le graphique dans la barre d'outils WordPress"
+
+#: classes/WP_Piwik/Admin/Settings.php:162
+msgid "Display a last 30 days visitor graph on WordPress' toolbar."
+msgstr "Afficher un graphique des visiteurs des 30 derniers jours dans la barre d'outils WordPress"
+
+#: classes/WP_Piwik/Admin/Settings.php:164
+msgid "Display stats to"
+msgstr "Afficher les stats pour le(s)"
+
+#: classes/WP_Piwik/Admin/Settings.php:171
+msgid "Choose user roles allowed to see the statistics page."
+msgstr "Choisissez les rôles utilisateurs autorisés à voir la page de statistiques."
+
+#: classes/WP_Piwik/Admin/Settings.php:173
+msgid "Show per post stats"
+msgstr "Afficher les stats par article"
+
+#: classes/WP_Piwik/Admin/Settings.php:173
+msgid "Show stats about single posts at the post edit admin page."
+msgstr "Afficher les stats de l'article sur la page admin de modification des articles."
+
+#: classes/WP_Piwik/Admin/Settings.php:175
+msgid "Piwik shortcut"
+msgstr "Raccourci Piwik"
+
+#: classes/WP_Piwik/Admin/Settings.php:175
+msgid "Display a shortcut to Piwik itself."
+msgstr "Affiche un raccourci vers Piwik lui-même."
+
+#: classes/WP_Piwik/Admin/Settings.php:177
+msgid "WP-Piwik display name"
+msgstr "Nom d'affichage WP-Piwik"
+
+#: classes/WP_Piwik/Admin/Settings.php:177
+msgid "Plugin name shown in WordPress."
+msgstr "Nom d'extension affichée dans WordPress."
+
+#: classes/WP_Piwik/Admin/Settings.php:179
+msgid "Enable shortcodes"
+msgstr "Activer les codes courts"
+
+#: classes/WP_Piwik/Admin/Settings.php:179
+msgid "Enable shortcodes in post or page content."
+msgstr "Active les codes courts dans le contenu des articles ou des pages"
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "You can choose between four tracking code modes:"
+msgstr "Vous pouvez choisir entre quatre modes de code de suivi&nbsp;:"
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"WP-Piwik will not add the tracking code. Use this, if you want to add the "
+"tracking code to your template files or you use another plugin to add the "
+"tracking code."
+msgstr "WP-Piwik n'ajoutera pas le code de suivi. Utilisez cela si vous souhaitez ajouter le code de suivi dans les fichiers de votre thème, ou que vous utilisez une autre extension pour ajouter le code de suivi."
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:193
+msgid "Default tracking"
+msgstr "Suivi par défaut"
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "WP-Piwik will use Piwik's standard tracking code."
+msgstr "WP-Piwik utilisera le code de suivi standard de Piwik."
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:194
+msgid "Use js/index.php"
+msgstr "Utiliser js/index.php"
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"You can choose this tracking code, to deliver a minified proxy code and to "
+"avoid using the files called piwik.js or piwik.php."
+msgstr "Vous pouvez choisir ce code de suivi, pour délivrer un code proxy minifié et d'éviter d'utiliser les fichiers appelés piwik.js ou piwik.php."
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "See %sreadme file%s."
+msgstr "Voir le %sfichier lisez-moi%s"
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:195
+msgid "Use proxy script"
+msgstr "Utiliser une code proxy"
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "Use this tracking code to not reveal the Piwik server URL."
+msgstr "Utilisez ce code de suivi pour ne pas révéler l'URL du serveur Piwik."
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:210
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid "See %sPiwik FAQ%s."
+msgstr "Voir la %sFAQ Piwik%s."
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:196
+msgid "Enter manually"
+msgstr "Entrer manuellement"
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"Enter your own tracking code manually. You can choose one of the prior "
+"options, pre-configure your tracking code and switch to manually editing at "
+"last."
+msgstr "Entrer manuellement votre propre code de suivi. Vous pouvez choisir l'une des options préalables, pré-configurer votre code de suivi et le modifier manuellement à la fin."
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "Use the placeholder {ID} to add the Piwik site ID."
+msgstr "Utilisez l'espace réservé {ID} pour ajouter l'identifiant de site Piwik."
+
+#: classes/WP_Piwik/Admin/Settings.php:191
+msgid "Add tracking code"
+msgstr "Ajouter le code de suivi"
+
+#: classes/WP_Piwik/Admin/Settings.php:199
+msgid "Tracking code"
+msgstr "Code de suivi"
+
+#: classes/WP_Piwik/Admin/Settings.php:201
+msgid "JavaScript code position"
+msgstr "Emplacement du code JavaScript"
+
+#: classes/WP_Piwik/Admin/Settings.php:202
+msgid "Footer"
+msgstr "Pied de page"
+
+#: classes/WP_Piwik/Admin/Settings.php:203
+msgid "Header"
+msgstr "En-tête"
+
+#: classes/WP_Piwik/Admin/Settings.php:204
+msgid ""
+"Choose whether the JavaScript code is added to the footer or the header."
+msgstr "Choisissez si le code JavaScript est ajouté dans le pied de page ou l'en-tête."
+
+#: classes/WP_Piwik/Admin/Settings.php:206
+msgid "Noscript code"
+msgstr "Code noscript"
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+msgid "Add &lt;noscript&gt;"
+msgstr "Ajouter &lt;noscript&gt;"
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+msgid "Adds the &lt;noscript&gt; code to your footer."
+msgstr "Ajoute le  code &lt;noscript&gt; à votre pied de page."
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Disabled in proxy mode."
+msgstr "Désactivé en mode proxy."
+
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Add rec parameter to noscript code"
+msgstr "Ajouter le paramètre rec au code noscript"
+
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Enable tracking for visitors without JavaScript (not recommended)."
+msgstr "Activer le suivi des visiteurs sans JavaScript (non recommandé)."
+
+#: classes/WP_Piwik/Admin/Settings.php:212
+msgid "Enable content tracking"
+msgstr "Activer le suivi de contenu"
+
+#: classes/WP_Piwik/Admin/Settings.php:214
+msgid "Track all content blocks"
+msgstr "Suivre tous les blocs de contenu"
+
+#: classes/WP_Piwik/Admin/Settings.php:215
+msgid "Track only visible content blocks"
+msgstr "Suivre uniquement les blocs de contenu visibles"
+
+#: classes/WP_Piwik/Admin/Settings.php:216
+msgid ""
+"Content tracking allows you to track interaction with the content of a web "
+"page or application."
+msgstr "Le suivi de contenu vous autorise à suivre l'interaction avec le contenu d'une page web ou d'une application."
+
+#: classes/WP_Piwik/Admin/Settings.php:216
+#: classes/WP_Piwik/Admin/Settings.php:218
+#: classes/WP_Piwik/Admin/Settings.php:222
+#: classes/WP_Piwik/Admin/Settings.php:224
+#: classes/WP_Piwik/Admin/Settings.php:226
+#: classes/WP_Piwik/Admin/Settings.php:247
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "See %sPiwik documentation%s."
+msgstr "Voir la %sdocumentation Piwik%s."
+
+#: classes/WP_Piwik/Admin/Settings.php:218
+msgid "Track search"
+msgstr "Suivre la recherche"
+
+#: classes/WP_Piwik/Admin/Settings.php:218
+msgid "Use Piwik's advanced Site Search Analytics feature."
+msgstr "Utiliser la fonctionnalité avancée Piwik d'analyse de recherche du site"
+
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid "Track 404"
+msgstr "Suivre les 404"
+
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid ""
+"WP-Piwik can automatically add a 404-category to track 404-page-visits."
+msgstr "WP-Piwik peut ajouter automatiquement une catégorie 404 pour suivre les visites de page 404."
+
+#: classes/WP_Piwik/Admin/Settings.php:222
+msgid "Add annotation on new post"
+msgstr "Ajouter une annotation sur un nouvel article"
+
+#: classes/WP_Piwik/Admin/Settings.php:222
+msgid "Add a Piwik annotation on each new post."
+msgstr "Ajoute une annotation Piwik sur chaque nouvel article."
+
+#: classes/WP_Piwik/Admin/Settings.php:224
+msgid "Show custom variables box"
+msgstr "Afficher la boîte de variables personnalisées"
+
+#: classes/WP_Piwik/Admin/Settings.php:224
+msgid " Show a &quot;custom variables&quot; edit box on post edit page."
+msgstr "Afficher une boîte de modification des &quot;variables personnalisées&quot; sur la page de modification des articles;"
+
+#: classes/WP_Piwik/Admin/Settings.php:226
+msgid "Add new file types for download tracking"
+msgstr "Ajouter de nouveaux types de fichier pour le suivi de téléchargement"
+
+#: classes/WP_Piwik/Admin/Settings.php:226
+msgid ""
+"Add file extensions for download tracking, divided by a vertical bar "
+"(&#124;)."
+msgstr "Ajouter des extensions de fichier pour le suivi de téléchargement, séparées par une barre verticale (&#124;)."
+
+#: classes/WP_Piwik/Admin/Settings.php:228
+msgid "Disable cookies"
+msgstr "Désactiver les cookies"
+
+#: classes/WP_Piwik/Admin/Settings.php:228
+msgid "Disable all tracking cookies for a visitor."
+msgstr "Désactiver tous les cookies de suivi pour un visiteur"
+
+#: classes/WP_Piwik/Admin/Settings.php:230
+msgid "Limit cookie lifetime"
+msgstr "Limiter la durée de vie des cookies"
+
+#: classes/WP_Piwik/Admin/Settings.php:230
+msgid ""
+"You can limit the cookie lifetime to avoid tracking your users over a longer"
+" period as necessary."
+msgstr "Vous pouvez limiter la durée de vie des cookies pour éviter le suivi de vos utilisateurs sur une période plus longue que nécessaire."
+
+#: classes/WP_Piwik/Admin/Settings.php:232
+msgid "Visitor timeout (seconds)"
+msgstr "Expiration du délai d'attente visiteur (en secondes)"
+
+#: classes/WP_Piwik/Admin/Settings.php:234
+msgid "Session timeout (seconds)"
+msgstr "Expiration du délai d'attente session (en secondes)"
+
+#: classes/WP_Piwik/Admin/Settings.php:236
+msgid "Referral timeout (seconds)"
+msgstr "Expiration du délai d'attente référant"
+
+#: classes/WP_Piwik/Admin/Settings.php:238
+msgid "Track admin pages"
+msgstr "Suivre les pages d'admin"
+
+#: classes/WP_Piwik/Admin/Settings.php:238
+msgid ""
+"Enable to track users on admin pages (remember to configure the tracking "
+"filter appropriately)."
+msgstr "Activer le suivi des utilisateurs sur les pages d'admin (n'oubliez pas de configurer le filtre de suivi adéquat)"
+
+#: classes/WP_Piwik/Admin/Settings.php:241
+msgid "Tracking filter"
+msgstr "Filtre de suivi"
+
+#: classes/WP_Piwik/Admin/Settings.php:245
+msgid "Choose users by user role you do <strong>not</strong> want to track."
+msgstr "Choisissez, pour chaque rôle, ceux que <strong>vous ne souhaitez pas</strong> inclure dans le suivi."
+
+#: classes/WP_Piwik/Admin/Settings.php:247
+msgid "Track subdomains in the same website"
+msgstr "Suivre les sous-domaines dans le même site web"
+
+#: classes/WP_Piwik/Admin/Settings.php:247
+msgid "Adds *.-prefix to cookie domain."
+msgstr "Ajoute *.-préfixe au cookie de domaine."
+
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "Do not count subdomains as outlink"
+msgstr "Ne pas comptabiliser les sous-domaines en tant que lien sortant"
+
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "Adds *.-prefix to tracked domain."
+msgstr "Ajoute *.-préfixe au domaine suivi."
+
+#: classes/WP_Piwik/Admin/Settings.php:251
+msgid "Track RSS feeds"
+msgstr "Suivre les flux RSS"
+
+#: classes/WP_Piwik/Admin/Settings.php:251
+msgid "Enable to track posts in feeds via tracking pixel."
+msgstr "Activer le suivi des articles dans les flux via un pixel de suivi."
+
+#: classes/WP_Piwik/Admin/Settings.php:253
+msgid "Track RSS feed links as campaign"
+msgstr "Suivre les liens du flux RSS comme une campagne"
+
+#: classes/WP_Piwik/Admin/Settings.php:255
+msgid "RSS feed campaign"
+msgstr "Campagne flux RSS"
+
+#: classes/WP_Piwik/Admin/Settings.php:255
+msgid "Keyword: post name."
+msgstr "Mot-clef&nbsp;: nom d'article."
+
+#: classes/WP_Piwik/Admin/Settings.php:257
+msgid "Enable heartbeat timer"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:257
+msgid ""
+"Enable a heartbeat timer to get more accurate visit lengths by sending "
+"periodical HTTP ping requests as long as the site is opened. Enter the time "
+"between the pings in seconds (Piwik default: 15) to enable or 0 to disable "
+"this feature. <strong>Note:</strong> This will cause a lot of additional "
+"HTTP requests on your site."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:262
+msgid ""
+"Usually, you do not need to change these settings. If you want to do so, you"
+" should know what you do or you got an expert's advice."
+msgstr "Habituellement, vous n'avez  pas besoin de pas modifier ces réglages. Si vous voulez faire, vous devez savoir ce que vous faites ou avoir obtenu le conseil d'un expert."
+
+#: classes/WP_Piwik/Admin/Settings.php:264
+msgid "Enable cache"
+msgstr "Activer le cache"
+
+#: classes/WP_Piwik/Admin/Settings.php:264
+msgid "Cache API calls, which not contain today's values, for a week."
+msgstr "Appels API de cache, qui ne contiennent pas les valeurs d'aujourd'hui, pour une semaine."
+
+#: classes/WP_Piwik/Admin/Settings.php:267
+msgid "HTTP connection via"
+msgstr "Connexion HTTP via"
+
+#: classes/WP_Piwik/Admin/Settings.php:268
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "cURL"
+msgstr "cURL"
+
+#: classes/WP_Piwik/Admin/Settings.php:269
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "fopen"
+msgstr "fopen"
+
+#: classes/WP_Piwik/Admin/Settings.php:270
+msgid ""
+"Choose whether WP-Piwik should use cURL or fopen to connect to Piwik in HTTP"
+" or Pro mode."
+msgstr "Choisissez si WP-Piwik devrait utiliser cURL ou fopen pour se connecter à Piwik dans HTTP ou le mode Pro."
+
+#: classes/WP_Piwik/Admin/Settings.php:272
+msgid "HTTP method"
+msgstr "Méthode HTTP"
+
+#: classes/WP_Piwik/Admin/Settings.php:273
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "POST"
+msgstr "POST"
+
+#: classes/WP_Piwik/Admin/Settings.php:274
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "GET"
+msgstr "GET"
+
+#: classes/WP_Piwik/Admin/Settings.php:275
+msgid "Choose whether WP-Piwik should use POST or GET in HTTP or Pro mode."
+msgstr "Choisissez si WP-Piwik devrait utiliser POST ou GET en HTTP ou le mode Pro."
+
+#: classes/WP_Piwik/Admin/Settings.php:277
+msgid "Disable time limit"
+msgstr "Désactiver la limite de temps"
+
+#: classes/WP_Piwik/Admin/Settings.php:277
+msgid "Use set_time_limit(0) if stats page causes a time out."
+msgstr "Utilisez set_time_limit(0) si la pages de statistiques provoque une expiration du délai d'attente."
+
+#: classes/WP_Piwik/Admin/Settings.php:279
+msgid "Connection timeout"
+msgstr "Expiration du délai d'attente de la connexion"
+
+#: classes/WP_Piwik/Admin/Settings.php:281
+msgid "Disable SSL peer verification"
+msgstr "Désactiver la vérification par les pairs SSL"
+
+#: classes/WP_Piwik/Admin/Settings.php:281
+msgid "not recommended"
+msgstr "non recommandé"
+
+#: classes/WP_Piwik/Admin/Settings.php:283
+msgid "User agent"
+msgstr "Agent utilisateur (User agent)"
 
-msgid "Advertisement"
-msgstr "Publicité"
+#: classes/WP_Piwik/Admin/Settings.php:284
+msgid "Use the PHP default user agent"
+msgstr "Utiliser l'agent utilisateur (user-agent) par défaut de PHP"
 
-msgid "Looking for premium themes? Visit "
-msgstr "Vous cherchez des Premium-Themes ? Visitez "
+#: classes/WP_Piwik/Admin/Settings.php:284
+msgid "empty"
+msgstr "vide"
 
-msgid "Avg"
-msgstr "Moyenne"
+#: classes/WP_Piwik/Admin/Settings.php:285
+msgid "Define a specific user agent"
+msgstr "Définir un agent utilisateur (user-agent) spécifique"
 
-msgid "Sum"
-msgstr "Somme"
+#: classes/WP_Piwik/Admin/Settings.php:287
+msgid "Specific user agent"
+msgstr "Agent utilisateur (user-agent) spécifique"
 
-msgid "Unique TOTAL"
-msgstr "Unique TOTAL"
+#: classes/WP_Piwik/Admin/Settings.php:289
+msgid "Add data-cfasync=false"
+msgstr "Ajouter data-cfasync=false"
 
-#: dashboard/browsers.php:37
-#: dashboard/keywords.php:13
-#: dashboard/visitors.php:56
-#: dashboard/websites.php:13
+#: classes/WP_Piwik/Admin/Settings.php:291
+msgid "CDN URL"
+msgstr "URL CDN"
+
+#: classes/WP_Piwik/Admin/Settings.php:293
+msgid "CDN URL (SSL)"
+msgstr "URL CDN  (SSL)"
+
+#: classes/WP_Piwik/Admin/Settings.php:295
+msgid "Force Piwik to use a specific protocol"
+msgstr "Forcer Piwik à utiliser un protocole spécifique"
+
+#: classes/WP_Piwik/Admin/Settings.php:296
+msgid "Disabled (default)"
+msgstr "Désactivé (par défaut)"
+
+#: classes/WP_Piwik/Admin/Settings.php:297
+msgid "http"
+msgstr "http"
+
+#: classes/WP_Piwik/Admin/Settings.php:298
+msgid "https (SSL)"
+msgstr "https (SSL)"
+
+#: classes/WP_Piwik/Admin/Settings.php:299
+msgid ""
+"Choose if you want to explicitly force Piwik to use HTTP or HTTPS. Does not "
+"work with a CDN URL."
+msgstr "Choisissez si vous voulez forcer explicitement Piwik à utiliser le protocole HTTP ou HTTPS. Ne fonctionne pas avec une URL CDN."
+
+#: classes/WP_Piwik/Admin/Settings.php:301
+msgid "Update notice"
+msgstr "Avis de mise à jour"
+
+#: classes/WP_Piwik/Admin/Settings.php:302
+msgid "Show always if WP-Piwik is updated"
+msgstr "Toujours afficher si WP-Piwik est mis à jour"
+
+#: classes/WP_Piwik/Admin/Settings.php:303
+msgid "Show only if WP-Piwik is updated and settings were changed"
+msgstr "Afficher uniquement si WP-Piwik est mis à jour et que les paramètres ont change."
+
+#: classes/WP_Piwik/Admin/Settings.php:305
+msgid "Choose if you want to get an update notice if WP-Piwik is updated."
+msgstr "Choisissez si vous souhaitez obtenir un avis de mise à jour si WP-Piwik est mis à jour."
+
+#: classes/WP_Piwik/Admin/Settings.php:466
+msgid "Donate"
+msgstr "Faire un don"
+
+#: classes/WP_Piwik/Admin/Settings.php:468
+msgid "If you like WP-Piwik, you can support its development by a donation:"
+msgstr "Si vous aimez WP-Piwik, vous pouvez soutenir son développement par un don&nbsp;:"
+
+#: classes/WP_Piwik/Admin/Settings.php:506
+msgid "My Amazon.de wishlist"
+msgstr "Ma liste de souhaits Amazon.de"
+
+#: classes/WP_Piwik/Admin/Settings.php:509
+#: classes/WP_Piwik/Admin/Settings.php:556
+msgid "Please don't forget to vote the compatibility at the"
+msgstr "Merci de ne pas oublier de voter la compatibilité avec"
+
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid "Thank you very much for your donation"
+msgstr "Merci beaucoup pour votre don"
+
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid "the Piwik team itself"
+msgstr "l'équipe Piwik elle-même"
+
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid ", and all people flattering this"
+msgstr ", et toutes les personnes flatteuses à ce sujet."
+
+#: classes/WP_Piwik/Admin/Settings.php:541
+msgid ""
+"Graphs powered by <a href=\"http://www.jqplot.com/\">jqPlot</a> (License: "
+"GPL 2.0 and MIT) and <a "
+"href=\"http://omnipotent.net/jquery.sparkline/\">jQuery Sparklines</a> "
+"(License: New BSD License)."
+msgstr "Graphiques générés par <a href=\"http://www.jqplot.com/\">jqPlot</a> (Licence&nbsp;: GPL 2.0 et MIT) et <a href=\"http://omnipotent.net/jquery.sparkline/\">jQuery Sparklines</a> (Licence&nbsp;: Nouvelle licence BSD)."
+
+#: classes/WP_Piwik/Admin/Settings.php:542
+msgid "Metabox support inspired by"
+msgstr "Prise en charge Metabox inspirée par"
+
+#: classes/WP_Piwik/Admin/Settings.php:543
+msgid "Tabbed settings page suggested by the"
+msgstr "Page des réglages en onglets suggérée par le"
+
+#: classes/WP_Piwik/Admin/Settings.php:544
+msgid "Thank you very much"
+msgstr "Merci beaucoup"
+
+#: classes/WP_Piwik/Admin/Settings.php:544
+msgid "for your translation work"
+msgstr "pour votre travail de traduction"
+
+#: classes/WP_Piwik/Admin/Settings.php:545
+msgid ""
+"Thank you very much, all users who send me mails containing criticism, "
+"commendation, feature requests and bug reports! You help me to make WP-Piwik"
+" much better."
+msgstr "Merci beaucoup, à tous les utilisateurs qui envoient des mails contenant critique, éloge, demandes de fonctionnalités et rapports de bogues&nbsp;! Vous m'avez aidé a rendre WP-Piwik encore meilleur."
+
+#: classes/WP_Piwik/Admin/Settings.php:546
+msgid ""
+"Thank <strong>you</strong> for using my plugin. It is the best commendation "
+"if my piece of code is really used!"
+msgstr "Je <strong>vous</strong> remercie d'utiliser mon extension. C'est la meilleur éloge si mon morceau de code est vraiment utilisé&nbsp;!"
+
+#: classes/WP_Piwik/Admin/Settings.php:555
+msgid "The best place to get help:"
+msgstr "Le meilleur endroit pour obtenir de l'aide&nbsp;:"
+
+#: classes/WP_Piwik/Admin/Settings.php:555
+msgid "WP-Piwik support forum"
+msgstr "Forum de support WP-Piwik"
+
+#: classes/WP_Piwik/Admin/Settings.php:558
+msgid "Debugging"
+msgstr "Débogage"
+
+#: classes/WP_Piwik/Admin/Settings.php:559
+msgid ""
+"Either allow_url_fopen has to be enabled <em>or</em> cURL has to be "
+"available:"
+msgstr "allow_url_fopen doit être activé <em>ou</em> cURL doit être disponible&nbsp;:"
+
+#: classes/WP_Piwik/Admin/Settings.php:562
+msgid "cURL is"
+msgstr "cURL est"
+
+#: classes/WP_Piwik/Admin/Settings.php:563
+#: classes/WP_Piwik/Admin/Settings.php:568
+msgid "not"
+msgstr "non"
+
+#: classes/WP_Piwik/Admin/Settings.php:564
+msgid "available"
+msgstr "disponible"
+
+#: classes/WP_Piwik/Admin/Settings.php:567
+msgid "allow_url_fopen is"
+msgstr "allow_url_fopen est"
+
+#: classes/WP_Piwik/Admin/Settings.php:569
+msgid "enabled"
+msgstr "activé"
+
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "is used."
+msgstr "est utilisé."
+
+#: classes/WP_Piwik/Admin/Settings.php:573
+msgid "Determined Piwik base URL is"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:577
+msgid "Tools"
+msgstr "Outils"
+
+#: classes/WP_Piwik/Admin/Settings.php:579
+msgid "Run testscript"
+msgstr "Lancer le script de test"
+
+#: classes/WP_Piwik/Admin/Settings.php:580
+msgid "Sitebrowser"
+msgstr "Navigateur de site"
+
+#: classes/WP_Piwik/Admin/Settings.php:581
+msgid "Clear cache"
+msgstr "Nettoyer le cache"
+
+#: classes/WP_Piwik/Admin/Settings.php:582
+msgid "Are you sure you want to clear all settings?"
+msgstr "Êtes-vous sûr de vouloir effacer tous les réglages&nbsp;?"
+
+#: classes/WP_Piwik/Admin/Settings.php:582
+msgid "Reset WP-Piwik"
+msgstr "Réinitialiser WP-Piwik"
+
+#: classes/WP_Piwik/Admin/Settings.php:584
+msgid "Latest support threads on WordPress.org"
+msgstr "Les derniers messages de support sur WordPress.org"
+
+#: classes/WP_Piwik/Admin/Settings.php:635
+msgid "Settings cleared (except connection settings)."
+msgstr "Les réglages ont été effacés (sauf les paramètres de connexion)"
+
+#: classes/WP_Piwik/Admin/Settings.php:651
+msgid "Cache cleared."
+msgstr "Le cache a été effacé."
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:17
+msgid "site"
+msgstr "site"
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:18
+msgid "sites"
+msgstr "sites"
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:24
+msgid "No site configured yet."
+msgstr "Pas de site configuré actuellement."
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:29
+msgid "Blog ID"
+msgstr "Identifiant du blog"
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:30
+msgid "Title"
+msgstr "Titre"
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:31
+msgid "URL"
+msgstr "URL"
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:32
+msgid "Site ID (Piwik)"
+msgstr "Identifiant du site (Piwik)"
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:79
+msgid "Site not created yet."
+msgstr "Le site n'a pas encore été créé."
+
+#: classes/WP_Piwik/Admin/Statistics.php:12
+msgid "Statistics"
+msgstr "Statistiques"
+
+#: classes/WP_Piwik/Admin/Statistics.php:20
+msgid "Currently shown stats:"
+msgstr "Stats affichées actuellement : "
+
+#: classes/WP_Piwik/Request/Php.php:27
+msgid "Could not resolve"
+msgstr "Impossible de résoudre"
+
+#: classes/WP_Piwik/Request/Php.php:27
+msgid "realpath() returns false"
+msgstr "realpath() retourne faux (false)"
+
+#: classes/WP_Piwik/Request/Php.php:39
+msgid "Class Piwik\\FrontController does not exists."
+msgstr "La classe Piwik\\FrontController n'existe pas."
+
+#: classes/WP_Piwik/Request/Php.php:42
+msgid "Class Piwik\\API\\Request does not exists."
+msgstr "La class Piwik\\API\\Request n'existe pas."
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:10
+msgid "Piwik Custom Variables"
+msgstr "Variables personnalisées Piwik"
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
+msgid "Name"
+msgstr "Nom"
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
+msgid "Value"
+msgstr "Valeur"
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
+msgid "Set custom variables for a page view"
+msgstr "Définir des variables personnalisées pour une page vue"
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:18
+msgid "Browser Details"
+msgstr "Détails navigateur"
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:37
+#: classes/WP_Piwik/Widget/Browsers.php:37
+#: classes/WP_Piwik/Widget/Chart.php:43
+#: classes/WP_Piwik/Widget/Noresult.php:23
+#: classes/WP_Piwik/Widget/Overview.php:24
+#: classes/WP_Piwik/Widget/Plugins.php:23 classes/WP_Piwik/Widget/Post.php:25
+#: classes/WP_Piwik/Widget/Screens.php:35
+#: classes/WP_Piwik/Widget/Search.php:23 classes/WP_Piwik/Widget/Seo.php:20
+#: classes/WP_Piwik/Widget/SystemDetails.php:33
+#: classes/WP_Piwik/Widget/Systems.php:33
+#: classes/WP_Piwik/Widget/Visitors.php:35 classes/WP_Piwik/Widget.php:91
+msgid "Piwik error"
+msgstr "Erreur Piwik"
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+msgid "Browser"
+msgstr "Navigateur"
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+#: classes/WP_Piwik/Widget/Screens.php:37
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+#: classes/WP_Piwik/Widget/Visitors.php:57 classes/WP_Piwik/Widget.php:100
 msgid "Unique"
 msgstr "Unique"
 
-#: dashboard/browsers.php:37
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+#: classes/WP_Piwik/Widget/Plugins.php:25
+#: classes/WP_Piwik/Widget/Screens.php:37
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
 msgid "Percent"
 msgstr "Pourcentage"
 
-#: dashboard/keywords.php:8
+#: classes/WP_Piwik/Widget/BrowserDetails.php:66
+#: classes/WP_Piwik/Widget/Browsers.php:66
+#: classes/WP_Piwik/Widget/Screens.php:64
+#: classes/WP_Piwik/Widget/SystemDetails.php:62
+#: classes/WP_Piwik/Widget/Systems.php:62
+msgid "Others"
+msgstr "Autres"
+
+#: classes/WP_Piwik/Widget/Browsers.php:18
+msgid "Browsers"
+msgstr "Navigateurs"
+
+#: classes/WP_Piwik/Widget/Chart.php:19
+#: classes/WP_Piwik/Widget/Overview.php:41 classes/WP_Piwik/Widget/Post.php:37
+#: classes/WP_Piwik/Widget/Visitors.php:17
+msgid "Visitors"
+msgstr "Visiteurs"
+
+#: classes/WP_Piwik/Widget/Chart.php:71
+msgid ""
+"The graph contains the values shown in the table below (visitors / unique / "
+"bounces). The red line show a linear trendline (unique)."
+msgstr "Le graphique contient les valeurs indiquées dans le tableau ci-dessous (visiteurs / unique / rebonds). La ligne rouge montre une courbe de tendance linéaire (unique)."
+
+#: classes/WP_Piwik/Widget/Keywords.php:16
 msgid "Keywords"
 msgstr "Mots Clés"
 
-#: dashboard/keywords.php:13
+#: classes/WP_Piwik/Widget/Noresult.php:16
+#: classes/WP_Piwik/Widget/Search.php:16
+msgid "Site Search"
+msgstr "Recherche du site"
+
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
 msgid "Keyword"
 msgstr "Mots clés"
 
-#: dashboard/overview.php:8
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+msgid "Requests"
+msgstr "Requêtes"
+
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Bounced"
+msgstr "Rebonds"
+
+#: classes/WP_Piwik/Widget/Overview.php:17 classes/WP_Piwik/Widget/Post.php:18
 msgid "Overview"
 msgstr "Vue d'ensemble"
 
-#: dashboard/overview.php:16
-#: dashboard/visitors.php:21
-msgid "Visitors"
-msgstr "Visiteurs"
-
-#: dashboard/overview.php:17
+#: classes/WP_Piwik/Widget/Overview.php:42 classes/WP_Piwik/Widget/Post.php:38
 msgid "Unique visitors"
 msgstr "Visiteurs uniques"
 
-#: dashboard/overview.php:18
+#: classes/WP_Piwik/Widget/Overview.php:43 classes/WP_Piwik/Widget/Post.php:39
 msgid "Page views"
 msgstr "Pages vues"
 
-#: dashboard/overview.php:19
-msgid "Max. page views in one visit"
-msgstr "Pages vues max.par visite"
-
-#: dashboard/overview.php:20
-msgid "Total time spent by visitors"
-msgstr "Temps total passé par les visiteurs"
+#: classes/WP_Piwik/Widget/Overview.php:44 classes/WP_Piwik/Widget/Post.php:40
+msgid "Total time spent"
+msgstr "Temps passé total"
 
-#: dashboard/overview.php:21
+#: classes/WP_Piwik/Widget/Overview.php:45 classes/WP_Piwik/Widget/Post.php:42
 msgid "Bounce count"
 msgstr "Nombre de sauts"
 
-#: dashboard/visitors.php:56
-msgid "Date"
-msgstr "Date"
+#: classes/WP_Piwik/Widget/Overview.php:48 classes/WP_Piwik/Widget/Post.php:41
+msgid "Time/visit"
+msgstr "Temps / visite"
 
-#: dashboard/visitors.php:56
-msgid "Visits"
-msgstr "Visites"
+#: classes/WP_Piwik/Widget/Overview.php:48
+msgid "Max. page views in one visit"
+msgstr "Pages vues max.par visite"
 
-#: dashboard/visitors.php:56
-msgid "Bounced"
-msgstr "Rebonds"
+#: classes/WP_Piwik/Widget/Overview.php:49 classes/WP_Piwik/Widget/Post.php:46
+msgid "Shortcut"
+msgstr "Raccourci"
 
-#: dashboard/websites.php:8
-msgid "Websites"
-msgstr "Sites web"
+#: classes/WP_Piwik/Widget/Pages.php:16
+msgid "Pages"
+msgstr "Pages"
 
-#: dashboard/websites.php:13
-msgid "Website"
-msgstr "Site web"
+#: classes/WP_Piwik/Widget/Plugins.php:16
+msgid "Plugins"
+msgstr "Extensions"
 
-#: wp-piwik.php:49
-#: wp-piwik.php:147
-msgid "Piwik Statistics"
-msgstr "Statistiques Piwik"
+#: classes/WP_Piwik/Widget/Plugins.php:25
+msgid "Plugin"
+msgstr "Extension"
 
-#. #-#-#-#-#  plugin.pot (PACKAGE VERSION)  #-#-#-#-#
-#. Plugin Name of an extension
-#: wp-piwik.php:49
-msgid "WP-Piwik"
-msgstr "WP-Piwik"
+#: classes/WP_Piwik/Widget/Plugins.php:25
+#: classes/WP_Piwik/Widget/Visitors.php:57 classes/WP_Piwik/Widget.php:102
+msgid "Visits"
+msgstr "Visites"
 
-#: wp-piwik.php:53
-#: wp-piwik.php:185
-msgid "WP-Piwik Settings"
-msgstr "Paramètres WP-Piwik"
+#: classes/WP_Piwik/Widget/Post.php:43
+msgid "Min. generation time"
+msgstr "Temps min. de génération"
 
-#: wp-piwik.php:59
-msgid "Settings"
-msgstr "Paramètres"
+#: classes/WP_Piwik/Widget/Post.php:44
+msgid "Max. generation time"
+msgstr "Temps max. de génération"
 
-#: wp-piwik.php:112
-msgid "Remote access to Piwik not possible. Enable allow_url_fopen or CURL."
-msgstr "Accès à distance à Piwik impossible. Activez allow_url_fopen ou CURL."
+#: classes/WP_Piwik/Widget/Referrers.php:16
+msgid "Referrers"
+msgstr "Référants"
 
-#: wp-piwik.php:190
-msgid "Account settings"
-msgstr "Paramètres du compte"
+#: classes/WP_Piwik/Widget/Screens.php:16
+msgid "Resolutions"
+msgstr "Résolutions"
 
-#: wp-piwik.php:192
-msgid "Piwik URL"
-msgstr "Piwik URL"
+#: classes/WP_Piwik/Widget/Screens.php:37
+msgid "Resolution"
+msgstr "Résolution"
 
-#: wp-piwik.php:196
-msgid "Auth token"
-msgstr "Auth Token"
+#: classes/WP_Piwik/Widget/Seo.php:13
+msgid "SEO"
+msgstr "SEO"
 
-#: wp-piwik.php:200
-msgid "To enable Piwik statistics, please enter your Piwik base URL (like http://mydomain.com/piwik) and your personal authentification token. You can get the token on the API page inside your Piwik interface. It looks like &quot;1234a5cd6789e0a12345b678cd9012ef&quot;."
-msgstr "Pour activer les statistiques Piwik, saisissez l'url du dossier d'installation de Piwik (comme http://mydomain.com/piwik) ainsi que votre Auth Token. Vous pouvez obtenir votre Auth Token sur la page API de votre interface de Piwik. Il ressemble à \"1234a5cd6789e0a12345b678cd9012ef\"."
+#: classes/WP_Piwik/Widget/SystemDetails.php:14
+msgid "Operation System Details"
+msgstr "Détails du système d'exploitation"
 
-#: wp-piwik.php:205
-#: wp-piwik.php:207
-msgid "An error occured"
-msgstr "Une erreur s'est produite"
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+msgid "Operation System"
+msgstr "Système d'exploitation"
 
-#: wp-piwik.php:205
-msgid "Please check URL and auth token. You need at least view access to one site."
-msgstr "Vérifiez l'URL et Auth Token. Vous devez posséder les droits d'accès sur au moins un site."
+#: classes/WP_Piwik/Widget/Systems.php:14
+msgid "Operation Systems"
+msgstr "Systèmes d'exploitation"
 
-#: wp-piwik:php:215
-msgid "Choose site"
-msgstr "Choisissez un site"
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Date"
+msgstr "Date"
 
-#: wp-piwik.php:221
-msgid "If your template uses wp_footer(), WP-Piwik can automatically add the Piwik javascript code to your blog."
-msgstr "Si votre thème utilise wp_footer(), WP-Piwik peut ajouter automatiquement le code javascript Piwik à votre blog."
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Page Views"
+msgstr "Pages vues"
 
-#: wp-piwik.php:226
-msgid "Add script to wp_footer()"
-msgstr "Ajouter le script à wp_footer()"
+#: classes/WP_Piwik/Widget.php:104
+msgid "Hits"
+msgstr "Entrées"
 
-msgid "Tracking filter"
-msgstr "Filtre de suivi"
+#: classes/WP_Piwik/Widget.php:106
+msgid "Actions"
+msgstr "Actions"
 
-msgid "Choose users by user role you do <strong>not</strong> want to track. Requires enabled &quot;Add script to wp_footer()&quot;-functionality."
-msgstr "Choisissez, pour chaque rôle, ceux que <strong>vous ne souhaitez pas</strong> inclure dans le suivi. Requiert l'activation de la fonction &quot;Ajouter le script à wp_footer()&quot;"
+#: classes/WP_Piwik/Widget.php:162
+msgid "No data available."
+msgstr "Pas de données disponibles"
 
-msgid "Choose users by user role you do <strong>not</strong> want to track."
-msgstr "Choisissez, pour chaque rôle, ceux que <strong>vous ne souhaitez pas</strong> inclure dans le suivi."
+#: classes/WP_Piwik/Widget.php:293
+msgid "week"
+msgstr "semaine"
 
-msgid "Display statistics to"
-msgstr "Affichez les statistiques aux"
+#: classes/WP_Piwik.php:193
+msgid "%s %s installed."
+msgstr "%s %s installé."
 
-msgid "or above"
-msgstr "ou rôle supérieur"
+#: classes/WP_Piwik.php:193
+msgid "Next you should connect to Piwik"
+msgstr "Ensuite, vous devez vous connecter à Piwik"
 
-msgid "Minimum user level required to display statistics page."
-msgstr "Niveau de rôle minimum requis pour afficher les statistiques."
+#: classes/WP_Piwik.php:227
+msgid "%s updated to %s."
+msgstr "%s mis à jour vers %s."
 
-#: wp-piwik.php:229
-msgid "Save settings"
-msgstr "Sauvegarder les changements"
+#: classes/WP_Piwik.php:227
+msgid "Please validate your configuration"
+msgstr "Merci de valider votre configuration"
 
-msgid "Currently shown stats:"
-msgstr "Stats affichées actuellement : "
+#: classes/WP_Piwik.php:259 classes/WP_Piwik.php:481
+msgid "Settings"
+msgstr "Paramètres"
 
-msgid "Change"
-msgstr "Changer"
+#: classes/WP_Piwik.php:262
+msgid "Important"
+msgstr "Important"
 
-msgid "WPMU-Piwik Settings"
-msgstr "Paramètres WPMU-Piwik"
+#: classes/WP_Piwik.php:343 classes/WP_Piwik.php:365
+msgid "Piwik Statistics"
+msgstr "Statistiques Piwik"
 
-msgid "<strong>Important note:</strong> You have to choose a token which provides administration access. WPMU-Piwik will create new Piwik sites for each blog if it is shown the first time and it is not added yet. All users can access their own statistics only, while site admins can access all statistics. To avoid conflicts, you should use a clean Piwik installation without other sites added. The provided themes should use wp_footer, because it adds the Piwik javascript code to each page."
-msgstr "<strong>Note importante :</strong> Vous devez choisir un Auth Token avec droits d'accès à l'administration. WPMU-Piwik créera un nouveau Piwik Site pour chaque blog qui n'a pas encore été ajouté lors du 1er affichage. Chaque utilisateur ne peut accéder qu'à ses propres stats tandis qu'un administrateur peut accéder à toutes les stats. Pour éviter tout conflit, il est recommandé d'utiliser une installation propre de Piwik sans aucun autre site ajouté. Les thèmes utilisés doivent utiliser le wp_footer afin de permettre l'inclusion du code javascript Piwik sur chaque page."
+#: classes/WP_Piwik.php:453
+msgid "Configure WP-Piwik"
+msgstr "Paramétrer  WP-Piwik"
 
-msgid "<strong>Important note:</strong> If you do not host this blog on your own, your site admin is able to get your auth token from the database. So he is able to access your statistics. You should never use an auth token with more than simple view access!"
-msgstr "<strong>Note importante :</strong> Si vous n'hébergez pas vous même ce blog, l'administrateur de votre site peut obtenir votre Auth Token depuis la base de données. Il est donc en mesure de consulter vos statistiques. Il est recommandé d'utiliser un Auth Token ne permettant qu'un visionnage simple."
+#: classes/WP_Piwik.php:923
+msgid "An error occured"
+msgstr "Une erreur s'est produite"
 
-msgid "WP-Piwik uses the Google Chart API to create graphs. To avoid this, just check this box."
-msgstr "WP-Piwik utilise la Google Chart API pour générer les graphiques. Si vous ne le souhaitez pas, cochez cette case."
+#: classes/WP_Piwik.php:1191
+msgid "Cheatin&#8217; uh?"
+msgstr "Alors, on triche&nbsp;?"
 
-msgid "Disable Google Chart API"
-msgstr "Désactiver Google Chart API"
+#: wp-piwik.php:60
+msgid ""
+"WP-Piwik requires at least PHP 5.3. You are using the deprecated version %s."
+" Please update PHP to use WP-Piwik."
+msgstr "WP-Piwik requiert au moins PHP 5.3. Vous utilisez la version obsolète %s. Merci de mettre à jour PHP pour utiliser WP-Piwik."
 
-#. Plugin URI of an extension
-msgid "http://dev.braekling.de/wordpress-plugins/dev/wp-piwik/index.html"
-msgstr "http://dev.braekling.de/wordpress-plugins/dev/wp-piwik/index.html"
+#. Plugin Name of the plugin/theme
+msgid "WP-Piwik"
+msgstr "WP-Piwik"
 
-#. Description of an extension
-msgid "Adds Piwik stats to your dashboard menu and Piwik code to your wordpress footer."
-msgstr "Ajoute des statistiques Piwik au menu de votre Tableau de bord et le code Piwik au footer de votre wordpress."
+#. Plugin URI of the plugin/theme
+msgid "http://wordpress.org/extend/plugins/wp-piwik/"
+msgstr "http://wordpress.org/extend/plugins/wp-piwik/"
+
+#. Description of the plugin/theme
+msgid ""
+"Adds Piwik stats to your dashboard menu and Piwik code to your wordpress "
+"header."
+msgstr "Ajoute les stats Piwik au menu de votre tableau de bord et le code Piwik dans votre en-tête WordPress."
 
-#. Author of an extension
+#. Author of the plugin/theme
 msgid "Andr&eacute; Br&auml;kling"
 msgstr "Andr&eacute; Br&auml;kling"
 
-#. Author URI of an extension
+#. Author URI of the plugin/theme
 msgid "http://www.braekling.de"
 msgstr "http://www.braekling.de"
-
-msgid "last 30 days"
-msgstr "derniers 30 jours"
-
-msgid "today"
-msgstr "aujourd'hui"
-
-msgid "yesterday"
-msgstr "hier"
-
-msgid "No"
-msgstr "Non"
-
-msgid "Yes"
-msgstr "Oui"
-
-msgid "Show overview on WordPress dashboard"
-msgstr "Montrer une vue d'ensemble sur le Tableau de bord de wordpress"
-
-msgid "Show Piwik link in overview"
-msgstr "Afficher un lien vers Piwik dans la vue d'ensemble"
-
diff --git a/wp-content/plugins/wp-piwik/languages/wp-piwik-it_IT.mo b/wp-content/plugins/wp-piwik/languages/wp-piwik-it_IT.mo
index 1752a696b39c423f8b130ecbb7325ba99f558603..97851548bef13268a2c33a087f6d29d5562b0c25 100644
Binary files a/wp-content/plugins/wp-piwik/languages/wp-piwik-it_IT.mo and b/wp-content/plugins/wp-piwik/languages/wp-piwik-it_IT.mo differ
diff --git a/wp-content/plugins/wp-piwik/languages/wp-piwik-it_IT.po b/wp-content/plugins/wp-piwik/languages/wp-piwik-it_IT.po
index afc5412114028b792d1b48f663f90fc25a1e2523..f660c7d706c1fd20914fc25fba3d7a183bb46927 100644
--- a/wp-content/plugins/wp-piwik/languages/wp-piwik-it_IT.po
+++ b/wp-content/plugins/wp-piwik/languages/wp-piwik-it_IT.po
@@ -1,740 +1,1268 @@
-# Translation of the WordPress plugin WP-Piwik 0.8.0 by Andr&eacute; Br&auml;kling.
-# Copyright (C) 2010 Andr&eacute; Br&auml;kling
+# Copyright (C) 2015 WP-Piwik
 # This file is distributed under the same license as the WP-Piwik package.
-#
-# Andr&eacute; Br&auml;kling <webmaster@braekling.de>, 2011.
-# Stef Binde <ste@vogliaditerra.com>, 2013.
+# Translators:
+# Andr&eacute; Br&auml;kling <webmaster@braekling.de>, 2011
+# André Bräkling, 2015
+# Enzo Ferrara, 2015
+# Stef Binde <ste@vogliaditerra.com>, 2013
 msgid ""
 msgstr ""
-"Project-Id-Version: WP-Piwik 0.8.4\n"
-"Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-piwik\n"
-"POT-Creation-Date: 2010-07-19 18:06+0000\n"
-"PO-Revision-Date: 2013-02-21 18:11+0100\n"
-"Last-Translator: Stef Binde <ste@vogliaditerra.com>\n"
-"Language-Team: Italian <ste@vogliaditerra.com>\n"
+"Project-Id-Version: WP-Piwik\n"
+"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-piwik\n"
+"POT-Creation-Date: 2015-07-22 10:25:29+00:00\n"
+"PO-Revision-Date: 2015-07-22 10:33+0000\n"
+"Last-Translator: André Bräkling\n"
+"Language-Team: Italian (Italy) (http://www.transifex.com/projects/p/wp-piwik/language/it_IT/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: it\n"
+"Language: it_IT\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Lokalize 1.5\n"
 
-#: dashboard/browsers.php:12 dashboard/browsers.php:33
-msgid "Browser"
-msgstr "Browser"
+#: classes/WP_Piwik/Admin/Settings.php:24
+msgid "Reload"
+msgstr "Ricarica"
 
-#: dashboard/browsers.php:22 dashboard/pages.php:43 dashboard/screens.php:22
-#: dashboard/systems.php:22
-msgid "Others"
-msgstr "Altri "
+#: classes/WP_Piwik/Admin/Settings.php:27
+msgid "Changes saved."
+msgstr "Cambiamenti salvati."
 
-#: dashboard/browsers.php:34 dashboard/keywords.php:17 dashboard/pages.php:22
-#: dashboard/screens.php:33 dashboard/systems.php:35 dashboard/visitors.php:53
-#: dashboard/websites.php:19 wp-piwik.php:305
-msgid "Unique"
-msgstr "Unici"
+#: classes/WP_Piwik/Admin/Settings.php:45
+msgid "Save Changes"
+msgstr "Salva cambiamenti"
 
-#: dashboard/browsers.php:35 dashboard/plugins.php:33 dashboard/screens.php:34
-#: dashboard/systems.php:36
-msgid "Percent"
-msgstr "Percentuale"
+#: classes/WP_Piwik/Admin/Settings.php:46
+msgid "Thanks for using WP-Piwik!"
+msgstr "Grazie per usare WP-Piwik!"
 
-#: dashboard/keywords.php:12
-msgid "Keywords"
-msgstr "Parole chiave"
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid "WP-Piwik %s is successfully connected to Piwik %s."
+msgstr "WP-Piwik %s si è collegato con successo a Piwik %s."
 
-#: dashboard/keywords.php:17
-msgid "Keyword"
-msgstr "Parole chiavi"
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid "You are running WordPress %s."
+msgstr "Stai eseguendo WordPress %s."
 
-#: dashboard/overview.php:12
-msgid "Overview"
-msgstr "Resoconto"
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid ""
+"You are running a WordPress %s blog network (WPMU). WP-Piwik will handle "
+"your sites as different websites."
+msgstr "Stai eseguendo una rete di blog (WPMU) WordPress %s. WP-Piwik gestirà i tuoi siti come differenti."
 
-#: dashboard/overview.php:42 dashboard/visitors.php:24
-msgid "Visitors"
-msgstr "Visitatori"
+#: classes/WP_Piwik/Admin/Settings.php:53
+msgid ""
+"WP-Piwik %s was not able to connect to Piwik using your configuration. Check"
+" the &raquo;Connect to Piwik&laquo; section below."
+msgstr "WP-Piwik %s non ha potuto collegarsi a Piwik utilizzando la tua configurazione. Controlla la sezione qui sotto &raquo;Collegati a Piwik&laquo;."
 
-#: dashboard/overview.php:43
-msgid "Unique visitors"
-msgstr "Visitatori unici"
+#: classes/WP_Piwik/Admin/Settings.php:56
+msgid ""
+"WP-Piwik %s has to be connected to Piwik first. Check the &raquo;Connect to "
+"Piwik&laquo; section below."
+msgstr "WP-Piwik %s deve prima essere collegato a Piwik. Controlla la sezione qui sotto &raquo;Collegati a Piwik&laquo;."
 
-#: dashboard/overview.php:44
-msgid "Page views"
-msgstr "Pagine viste"
+#: classes/WP_Piwik/Admin/Settings.php:60
+msgid "Connect to Piwik"
+msgstr "Collegati a Piwik"
 
-#: dashboard/overview.php:45
-msgid "Max. page views in one visit"
-msgstr "Massimo di pagine viste in una visita"
+#: classes/WP_Piwik/Admin/Settings.php:65
+msgid "Show Statistics"
+msgstr "Mostra Statistiche"
 
-#: dashboard/overview.php:46
-msgid "Total time spent"
-msgstr "Tempo di rimanenza"
+#: classes/WP_Piwik/Admin/Settings.php:69
+msgid "Enable Tracking"
+msgstr "Abilita il Tracking"
 
-msgid "Time/visit"
-msgstr "Media durata per visita"
+#: classes/WP_Piwik/Admin/Settings.php:74
+msgid "Expert Settings"
+msgstr "Impostazioni per esperti"
 
-#: dashboard/overview.php:47
-msgid "Bounce count"
-msgstr "Rimbalzi "
+#: classes/WP_Piwik/Admin/Settings.php:78 classes/WP_Piwik.php:923
+msgid "Support"
+msgstr "Assistenza"
 
-#: dashboard/overview.php:49 wp-piwik.php:563
-msgid "Shortcut"
-msgstr "Scorciatoia"
+#: classes/WP_Piwik/Admin/Settings.php:82
+msgid "Credits"
+msgstr "Ringraziamenti"
 
-#: dashboard/pages.php:13
-msgid "Pages"
-msgstr "Pagine"
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid ""
+"WP-Piwik is a WordPress plugin to show a selection of Piwik stats in your "
+"WordPress admin dashboard and to add and configure your Piwik tracking code."
+" To use this you will need your own Piwik instance. If you do not already "
+"have a Piwik setup, you have two simple options: use either"
+msgstr "WP-Piwik è un plugin di WordPress per mostrare una selezione di statistiche nella tua dashboard amministrativa di WordPress e per aggiungere e configurare il tuo codice di tracking di Piwik. Per utilizzarlo hai bisogno di una tua istanza di Piwik. Se ancora non hai un'installazione di Piwik, hai due semplici opzioni: utilizzane una"
 
-#: dashboard/pages.php:21
-msgid "Page"
-msgstr "Pagina"
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "Self-hosted"
+msgstr "Installazione autonoma"
 
-#: dashboard/pages.php:23 dashboard/plugins.php:32 dashboard/visitors.php:52
-msgid "Visits"
-msgstr "Visite"
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "or"
+msgstr "o"
 
-#: dashboard/plugins.php:12 dashboard/plugins.php:31
-msgid "Plugins"
-msgstr "Plugins"
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "Cloud-hosted"
+msgstr "Installazione cloud"
 
-#: dashboard/screens.php:12 dashboard/screens.php:32
-msgid "Resolution"
-msgstr "Risoluzione"
+#: classes/WP_Piwik/Admin/Settings.php:98
+msgid ""
+"Neither cURL nor fopen are available. So WP-Piwik can not use the HTTP API "
+"and not connect to Piwik Pro."
+msgstr "Non sono disponibili né cURL né fopen. Dunque Piwik non può utilizzare l'API HTTP e connettersi a Piwik Pro."
 
-#: dashboard/systems.php:12 dashboard/systems.php:34
-msgid "Operating System"
-msgstr "Sistemi operativi"
+#: classes/WP_Piwik/Admin/Settings.php:98
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
+msgid "More information"
+msgstr "Maggiori informazioni"
 
-#: dashboard/visitors.php:51
-msgid "Date"
-msgstr "Data"
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid "You can choose between three connection methods:"
+msgstr "Puoi scegliere tra tre metodi di connessione:"
 
-#: dashboard/visitors.php:54
-msgid "Bounced"
-msgstr "Uscite"
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:103
+msgid "Self-hosted (HTTP API, default)"
+msgstr "Installazione autonoma (HTTP API, predefinito)"
 
-#: dashboard/visitors.php:67
-msgid "Unique TOTAL"
-msgstr "Unici totali"
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"This is the default option for a self-hosted Piwik and should work for most "
+"configurations. WP-Piwik will connect to Piwik using http(s)."
+msgstr "Questa è l'opzione predefinita per un'installazione autonoma di Piwik e dovrebbe funzionare per la maggior parte delle configurazioni. WP-Piwik si connette a Piwik utilizzando il protocollo http(s)."
 
-#: dashboard/visitors.php:67
-msgid "Sum"
-msgstr "Somma"
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:104
+msgid "Self-hosted (PHP API)"
+msgstr "Intallazione autonoma (PHP API)"
 
-#: dashboard/visitors.php:67
-msgid "Avg"
-msgstr "Media"
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"Choose this, if your self-hosted Piwik and WordPress are running on the same"
+" machine and you know the full server path to your Piwik instance."
+msgstr "Scegli questo se le tue installazioni autonome di Piwik e WordPress girano sullo stesso server e conosci il percorso completo alla tua istanza di Piwik."
 
-#: dashboard/websites.php:12
-msgid "Websites"
-msgstr "Provenienze"
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:105
+msgid "Cloud-hosted (Piwik Pro)"
+msgstr "Cloud-hosted (Piwik Pro)"
 
-#: dashboard/websites.php:18
-msgid "Website"
-msgstr "Pagina web"
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"If you are using a cloud-hosted Piwik by Piwik Pro, you can simply use this "
+"option."
+msgstr "Se stai utilizzando un'installazione cloud di Piwik da Piwik Pro, puoi usare questa opzione semplicemente."
 
-#: wp-piwik.php:110 wp-piwik.php:365
-msgid "Piwik Statistics"
-msgstr "Statistiche Piwik"
+#: classes/WP_Piwik/Admin/Settings.php:101
+msgid "Piwik Mode"
+msgstr "Modalità Piwik"
 
-#. #-#-#-#-#  plugin.pot (WP-Piwik 0.8.0)  #-#-#-#-#
-#. Plugin Name of the plugin/theme
-#: wp-piwik.php:111 wp-piwik.php:122 wp-piwik.php:123 wp-piwik.php:146
-msgid "WP-Piwik"
-msgstr "WP-Piwik"
+#: classes/WP_Piwik/Admin/Settings.php:102
+msgid "Disabled (WP-Piwik will not connect to Piwik)"
+msgstr "Disabilitato (WP-Piwik non è collegato a Piwik)"
 
-#: wp-piwik.php:130 wp-piwik.php:131
-msgid "WPMU-Piwik"
-msgstr "WPMU-Piwik"
+#: classes/WP_Piwik/Admin/Settings.php:108
+msgid "Piwik URL"
+msgstr "URL di Piwik"
 
-#: wp-piwik.php:142 wp-piwik.php:557
-msgid "yesterday"
-msgstr "ieri"
+#: classes/WP_Piwik/Admin/Settings.php:108
+msgid ""
+"Enter your Piwik URL. This is the same URL you use to access your Piwik "
+"instance, e.g. http://www.example.com/piwik/."
+msgstr "Inserisci l'URL del tuo Piwik. È lo stesso URL che utilizzi per accedere alla tua istanza di Piwik, es. http://www.example.com/piwik/."
 
-#: wp-piwik.php:143 wp-piwik.php:558
-msgid "today"
-msgstr "oggi"
+#: classes/WP_Piwik/Admin/Settings.php:109
+msgid "Piwik path"
+msgstr "Percorso di Piwik "
 
-#: wp-piwik.php:144 wp-piwik.php:559
-msgid "last30"
-msgstr "ultimi 30 giorni"
+#: classes/WP_Piwik/Admin/Settings.php:109
+msgid "Enter the file path to your Piwik instance, e.g. /var/www/piwik/."
+msgstr "Inserisci il percorso alla tua istanza di Piwik, es. /var/www/piwik/."
 
-#: wp-piwik.php:144 wp-piwik.php:559
-msgid "last 30 days"
-msgstr "ultimi 30 giorni"
+#: classes/WP_Piwik/Admin/Settings.php:110
+msgid "Piwik user"
+msgstr "Utente Piwik"
 
-#: wp-piwik.php:179
-msgid "Settings"
-msgstr "Impostazioni"
+#: classes/WP_Piwik/Admin/Settings.php:110
+msgid ""
+"Enter your Piwik Pro username. It is also part of your URL: "
+"http://USERNAME.piwik.pro."
+msgstr "Inserisci il nome utente di Piwik Pro. Esso è anche parte del tuo URL: http://USERNAME.piwik.pro"
 
-#: wp-piwik.php:381
-msgid "Change"
-msgstr "Cambia"
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid "Auth token"
+msgstr "Auth Token"
 
-#: wp-piwik.php:382
-msgid "Currently shown stats:"
-msgstr "Statistiche mostrate attualmente:"
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid ""
+"Enter your Piwik auth token here. It is an alphanumerical code like "
+"0a1b2c34d56e78901fa2bc3d45678efa."
+msgstr "Inserisci qui il tuo token auth di Piwik. Esso è un codice alfanumerico come 0a1b2c34d56e78901fa2bc3d45678efa."
 
-#: wp-piwik.php:383
-msgid "Current shown stats: <strong>Overall</strong>"
-msgstr "Statistiche mostrate attualmente<strong>Tutte<strong>"
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid "See %sWP-Piwik FAQ%s."
+msgstr "Vedi le %sFAQ di WP-Piwik%s."
 
-#: wp-piwik.php:448
-msgid "WP-Piwik Settings"
-msgstr "Impostazioni di WP-Piwik"
+#: classes/WP_Piwik/Admin/Settings.php:116
+msgid "Auto config"
+msgstr "Configurazione automatica"
 
-#: wp-piwik.php:455 wp-piwik.php:617
-msgid "Account settings"
-msgstr "Impostazioni Account"
+#: classes/WP_Piwik/Admin/Settings.php:116
+msgid ""
+"Check this to automatically choose your blog from your Piwik sites by URL. "
+"If your blog is not added to Piwik yet, WP-Piwik will add a new site."
+msgstr "Spunta questo per selezionare automaticamente il tuo blog tra i siti Piwik tramite l'URL. Se il tuo blog non è inserito in Piwik Wp-Piwik lo aggiungerà."
 
-#: wp-piwik.php:457 wp-piwik.php:619
-msgid "Piwik URL"
-msgstr "URL di Piwik"
+#: classes/WP_Piwik/Admin/Settings.php:127
+msgid "Determined site"
+msgstr "Sito rilevato"
 
-#: wp-piwik.php:461 wp-piwik.php:623
-msgid "Auth token"
-msgstr "Auth Token"
+#: classes/WP_Piwik/Admin/Settings.php:132
+msgid "Select site"
+msgstr "Seleziona sito"
 
-#: wp-piwik.php:467 wp-piwik.php:628
-msgid ""
-"To enable Piwik statistics, please enter your Piwik"
-" base URL (like http://mydomain.com/piwik) and your"
-" personal authentification token. You can get the token"
-" on the API page inside your Piwik interface. It looks"
-" like &quot;1234a5cd6789e0a12345b678cd9012ef&quot;."
-msgstr ""
-"Per abilitare le statistiche di Piwik devi inserire URL  della installazione"
-"di Piwik (p.e.. http://miosito.com/piwik) e la chiave personale di "
-"autenticazione (Token). La chiave si trova nell'interfaccia di Piwik sulla "
-"pagina API. Ha un aspetto simile a: "
-"&quot;1234a5cd6789e0a12345b678cd9012ef&quot;."
-
-#: wp-piwik.php:477
-msgid ""
-"<strong>Important note:</strong> If you do not host this blog on your own, "
-"your site admin is able to get your auth token from the database. So he is "
-"able to access your statistics. You should never use an auth token with more "
-"than simple view access!"
-msgstr ""
-"<strong>Nota importante:</strong><strong>Nota importante:</strong> Se non  è "
-"un hosting personale l'amministratore del sito può passarti il codice di "
-"autorizzazione (auth token) dal database. Mai usare un auth token con più "
-"diritti  che lettura."
+#: classes/WP_Piwik/Admin/Settings.php:140
+msgid "Piwik default date"
+msgstr "Data predefinita di Piwik"
 
-#: wp-piwik.php:485 wp-piwik.php:489
-msgid "An error occured"
-msgstr "E' successo un errore"
+#: classes/WP_Piwik/Admin/Settings.php:141
+#: classes/WP_Piwik/Admin/Settings.php:154
+msgid "Today"
+msgstr "Oggi"
 
-#: wp-piwik.php:486
-msgid ""
-"Please check URL and auth token. You need at least view access to one site."
-msgstr ""
-"Controlla URL e la chiave di autenticazione (token). Come minimo occorrono "
-"diritti di lettura per una pagina."
+#: classes/WP_Piwik/Admin/Settings.php:142
+#: classes/WP_Piwik/Admin/Settings.php:153
+msgid "Yesterday"
+msgstr "Ieri"
 
-#: wp-piwik.php:492
-msgid "Choose site"
-msgstr "Seleziona pagina"
+#: classes/WP_Piwik/Admin/Settings.php:143
+msgid "Current month"
+msgstr "Mese corrente"
 
-#: wp-piwik.php:511 wp-piwik.php:547 wp-piwik.php:584 wp-piwik.php:658
-msgid "Save settings"
-msgstr "Salva la configurazione"
+#: classes/WP_Piwik/Admin/Settings.php:144
+msgid "Last month"
+msgstr "Mese scorso"
 
-#: wp-piwik.php:515 wp-piwik.php:643
-msgid "Tracking settings"
-msgstr "Impostazioni Tracking"
+#: classes/WP_Piwik/Admin/Settings.php:145
+msgid "Current week"
+msgstr "Settimana corrente"
 
-#: wp-piwik.php:521
-msgid "Add script"
-msgstr "Aggiungi script"
+#: classes/WP_Piwik/Admin/Settings.php:146
+msgid "Last week"
+msgstr "Settimana scorsa"
 
-#: wp-piwik.php:525
-msgid ""
-"If your template uses wp_footer(), WP-Piwik can automatically add the Piwik "
-"javascript code to your blog."
-msgstr ""
-"Se il tuo template usa wp_footer() Piwik ci può inserire il codice javascript "
-"nel  tuo blog automaticamente."
+#: classes/WP_Piwik/Admin/Settings.php:147
+msgid "Default date shown on statistics page."
+msgstr "Il giorno che verrà mostrato sulla pagina delle statistiche."
 
-#: wp-piwik.php:528
-msgid "Track 404"
-msgstr "Tracciamento 404"
+#: classes/WP_Piwik/Admin/Settings.php:149
+msgid "Show SEO data"
+msgstr "Mostra dati SEO"
 
-#: wp-piwik.php:532
-msgid "WP-Piwik can automatically add a 404-category to track 404-page-visits."
-msgstr ""
-"WP-Piwik può aggiungere in automatico una categoria per tracciare visite 404."
+#: classes/WP_Piwik/Admin/Settings.php:149
+msgid "Display SEO ranking data on statistics page."
+msgstr "Mostra i dati del ranking SEO nella pagina delle statistiche."
 
-#: wp-piwik.php:536 wp-piwik.php:644
-msgid "Tracking filter"
-msgstr "Filtro tracciamento"
+#: classes/WP_Piwik/Admin/Settings.php:149
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Slow!"
+msgstr "Lento!"
 
-msgid "Choose users by user role you do <strong>not</strong> want to track."
-msgstr "Seleziona utenti per ruolo che <b>non</b> vuoi tracciare."
+#: classes/WP_Piwik/Admin/Settings.php:151
+msgid "Dashboard overview"
+msgstr "Panoramica Dashboard"
 
-msgid ""
-"Choose users by user role you do <strong>not</strong> want to track. Requires "
-"enabled &quot;Add script&quot;-functionality."
-msgstr ""
-"Seleziona utenti per ruolo che <b>non</b> vuoi tracciare. "
-"La funziona tracciamento deve essere abilita."
+#: classes/WP_Piwik/Admin/Settings.php:152
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:192
+#: classes/WP_Piwik/Admin/Settings.php:213
+#: classes/WP_Piwik/Admin/Settings.php:304
+msgid "Disabled"
+msgstr "Disabilitato"
 
-#: wp-piwik.php:551
-msgid "Statistic view settings"
-msgstr "Impostazioni per le statistiche"
+#: classes/WP_Piwik/Admin/Settings.php:155
+msgid "Last 30 days"
+msgstr "Ultimi 30 giorni"
 
-#: wp-piwik.php:554
-msgid "Dashboard"
-msgstr "Dashboard"
+#: classes/WP_Piwik/Admin/Settings.php:156
+msgid "Enable WP-Piwik dashboard widget &quot;Overview&quot;."
+msgstr "Abilita un widget della dashboard di WP-Piwik &quot;Panoramica&quot;."
 
-#: wp-piwik.php:556
-msgid "No"
-msgstr "No"
+#: classes/WP_Piwik/Admin/Settings.php:158
+msgid "Dashboard graph"
+msgstr "Grafico dashboard"
 
-#: wp-piwik.php:557 wp-piwik.php:558 wp-piwik.php:559
-msgid "Yes"
-msgstr "Sì"
+#: classes/WP_Piwik/Admin/Settings.php:158
+msgid "Enable WP-Piwik dashboard widget &quot;Graph&quot;."
+msgstr "Abilita un widget della dashboard di WP-Piwik &quot;Grafico&quot;."
 
-#: wp-piwik.php:562
-msgid "Display a dashboard widget to your WordPress dashboard."
-msgstr "Visualizza un widget per la dashboard di Wordpress."
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Dashboard SEO"
+msgstr "Dashboard SEO"
 
-#: wp-piwik.php:567
-msgid "Display a shortcut to Piwik itself."
-msgstr "Visualizzare una scorciatoia per il Piwik principale."
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Enable WP-Piwik dashboard widget &quot;SEO&quot;."
+msgstr "Abilita un widget della dashboard di WP-Piwik &quot;SEO&quot;."
+
+#: classes/WP_Piwik/Admin/Settings.php:162
+msgid "Show graph on WordPress Toolbar"
+msgstr "Visualizza un grafico nella barra degli strumenti di Wordpress"
 
-#: wp-piwik.php:568
-msgid "Display to"
-msgstr "visualizzare per"
+#: classes/WP_Piwik/Admin/Settings.php:162
+msgid "Display a last 30 days visitor graph on WordPress' toolbar."
+msgstr "Mostra un grafico dei visitatori degli ultimi 30 giorni nella barra degli strumenti di WordPress."
+
+#: classes/WP_Piwik/Admin/Settings.php:164
+msgid "Display stats to"
+msgstr ""
 
-#: wp-piwik.php:579
+#: classes/WP_Piwik/Admin/Settings.php:171
 msgid "Choose user roles allowed to see the statistics page."
 msgstr "Seleziona il ruolo per poter  accedere alla pagina di statistiche."
 
-#: wp-piwik.php:612
-msgid "WPMU-Piwik Settings"
-msgstr "Impostazioni WPMU-Piwik"
+#: classes/WP_Piwik/Admin/Settings.php:173
+msgid "Show per post stats"
+msgstr ""
 
-#: wp-piwik.php:636
-msgid ""
-"<strong>Important note:</strong> You have to choose a token which provides "
-"administration access. WPMU-Piwik will create new Piwik sites for each blog "
-"if it is shown the first time and it is not added yet. All users can access "
-"their own statistics only, while site admins can access all statistics. To "
-"avoid conflicts, you should use a clean Piwik installation without other "
-"sites added. The provided themes should use wp_footer, because it adds the "
-"Piwik javascript code to each page."
+#: classes/WP_Piwik/Admin/Settings.php:173
+msgid "Show stats about single posts at the post edit admin page."
 msgstr ""
-"<strong>Nota importante:</strong> Devi scegliere un token che permette "
-"accesso come amministratore. WPMU-Piwik creerà nuove pagine Piwik  per "
-"ciascuno blog nuovo non aggiunto già. Gli utenti possono accedere alle loro "
-"statistiche mentre gli amministratori del sito possono accedere a tutte le "
-"statistiche. Per evitare conflitti dovresti usare una installazione Piwik "
-"fresca e pulita. I temi scelti dovrebbero usare wp_footer per aggiungere il "
-"codice ad ogni pagina."
-
-#: wp-piwik.php:671
-msgid "If you like WP-Piwik, you can support its development by a donation:"
+
+#: classes/WP_Piwik/Admin/Settings.php:175
+msgid "Piwik shortcut"
 msgstr ""
-"Se ti piace WP-Piwik e vuoi contribuire al suo sviluppo,  considera una "
-"donazione."
 
-#: wp-piwik.php:687
-msgid "My Amazon.de wishlist (German)"
-msgstr "Mia wishlist Amazon (tedesco)"
+#: classes/WP_Piwik/Admin/Settings.php:175
+msgid "Display a shortcut to Piwik itself."
+msgstr "Visualizzare una scorciatoia per il Piwik principale."
 
-#. Plugin URI of the plugin/theme
-msgid "http://www.braekling.de/wp-piwik-wpmu-piwik-wordpress/"
-msgstr "http://www.braekling.de/wp-piwik-wpmu-piwik-wordpress/"
+#: classes/WP_Piwik/Admin/Settings.php:177
+msgid "WP-Piwik display name"
+msgstr ""
 
-#. Description of the plugin/theme
+#: classes/WP_Piwik/Admin/Settings.php:177
+msgid "Plugin name shown in WordPress."
+msgstr "Nome del plugin mostrato in WordPress."
+
+#: classes/WP_Piwik/Admin/Settings.php:179
+msgid "Enable shortcodes"
+msgstr "Abilita gli shortcode"
+
+#: classes/WP_Piwik/Admin/Settings.php:179
+msgid "Enable shortcodes in post or page content."
+msgstr "Attiva scorciatoie nel contenuto di articoli e pagine. "
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "You can choose between four tracking code modes:"
+msgstr "Puoi scegliere tra quattro modalità per il codice di tracking:"
+
+#: classes/WP_Piwik/Admin/Settings.php:190
 msgid ""
-"Adds Piwik stats to your dashboard menu and Piwik code to your wordpress "
-"footer."
-msgstr ""
-"Aggiunge le statistiche di  Piwik al menu della Dashboard è il codice di "
-"Piwik nel piè di pagina di Wordpress."
+"WP-Piwik will not add the tracking code. Use this, if you want to add the "
+"tracking code to your template files or you use another plugin to add the "
+"tracking code."
+msgstr "WP-Piwik non aggiunge il codice di tracciamento. Usa questo se vuoi aggiungere il codice alla tua template o usa un altro plugin per aggiungerlo."
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:193
+msgid "Default tracking"
+msgstr "Tracking predefinito"
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "WP-Piwik will use Piwik's standard tracking code."
+msgstr "WP-Piwik utilizzerà il tracking standard di Piwik."
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:194
+msgid "Use js/index.php"
+msgstr "Usa js/index.php"
 
-#. Author of the plugin/theme
-msgid "Andr&eacute; Br&auml;kling"
-msgstr "Andr&eacute; Br&auml;kling"
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"You can choose this tracking code, to deliver a minified proxy code and to "
+"avoid using the files called piwik.js or piwik.php."
+msgstr "Puoi scegliere questo codice di traking per fornire un codice proxy leggero e per evitare l'utilizzo dei files piwik.js e piwik.php."
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "See %sreadme file%s."
+msgstr "Vedi %sil file readme%s."
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:195
+msgid "Use proxy script"
+msgstr "Utilizza script proxy"
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "Use this tracking code to not reveal the Piwik server URL."
+msgstr "Usa questo codice di tracking per non rivelare l'URL del server di Piwik."
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:210
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid "See %sPiwik FAQ%s."
+msgstr "Vedi %sPiwik FAQ%s."
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:196
+msgid "Enter manually"
+msgstr "Inserisci manualmente"
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"Enter your own tracking code manually. You can choose one of the prior "
+"options, pre-configure your tracking code and switch to manually editing at "
+"last."
+msgstr "Inserisci manualmente un tuo codice tracking. Puoi scegliere una delle opzioni precedenti, preconfigurare il tuo codice e alla fine passare alla modifica manuale."
 
-#. Author URI of the plugin/theme
-msgid "http://www.braekling.de"
-msgstr "http://www.braekling.de"
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "Use the placeholder {ID} to add the Piwik site ID."
+msgstr "Usa il segnaposto {ID} per aggiungere l'ID sito di Piwik."
 
-msgid "Credits"
-msgstr "Ringraziamenti"
+#: classes/WP_Piwik/Admin/Settings.php:191
+msgid "Add tracking code"
+msgstr "Inserisci codice tracciamento"
 
-msgid "Thank you very much for your donation"
-msgstr "Grazie per le vostre donazioni"
+#: classes/WP_Piwik/Admin/Settings.php:199
+msgid "Tracking code"
+msgstr "Codice tracking"
+
+#: classes/WP_Piwik/Admin/Settings.php:201
+msgid "JavaScript code position"
+msgstr "Posizione codice JavaScript"
+
+#: classes/WP_Piwik/Admin/Settings.php:202
+msgid "Footer"
+msgstr "Footer"
 
-msgid "and all people flattering this"
-msgstr "e a tutti gli utenti che cliccano Flattr"
+#: classes/WP_Piwik/Admin/Settings.php:203
+msgid "Header"
+msgstr "Header"
 
+#: classes/WP_Piwik/Admin/Settings.php:204
 msgid ""
-"Graphs powered by <a href=\"http://www.jqplot.com/\">jqPlot</a>, an open "
-"source project by Chris Leonello. Give it a try! (License: GPL 2.0 and MIT)"
-msgstr ""
-"I grafici sono generati con <a href=\"http://www.jqplot.com/\">jqPlot</a> "
-"un progetto Open-Source di Chris Leonello. Provalo!"
-"(Licenza: GPL 2.0 e MIT)"
+"Choose whether the JavaScript code is added to the footer or the header."
+msgstr "Scegli se il codice JavaScript è nel footer o nell'header."
 
-msgid "Thank you very much"
-msgstr "Mille grazie"
+#: classes/WP_Piwik/Admin/Settings.php:206
+msgid "Noscript code"
+msgstr "Codice noscript"
 
-msgid ", and"
-msgstr ", e"
+#: classes/WP_Piwik/Admin/Settings.php:208
+msgid "Add &lt;noscript&gt;"
+msgstr "Aggiungi &lt;noscript&gt;"
 
-msgid "for your translation work"
-msgstr "per il vostro lavoro di traduzione"
+#: classes/WP_Piwik/Admin/Settings.php:208
+msgid "Adds the &lt;noscript&gt; code to your footer."
+msgstr "Aggiunge il codice &lt;noscript&gt; al footer."
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Disabled in proxy mode."
+msgstr "Disabilitato in modalità proxy."
+
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Add rec parameter to noscript code"
+msgstr "Aggiungi il parametro rec al codice noscript"
+
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Enable tracking for visitors without JavaScript (not recommended)."
+msgstr "Abilita il tracciamento dei visitatori senza JavaScript (non raccomandato)."
+
+#: classes/WP_Piwik/Admin/Settings.php:212
+msgid "Enable content tracking"
+msgstr "Abilita il content tracking"
+
+#: classes/WP_Piwik/Admin/Settings.php:214
+msgid "Track all content blocks"
+msgstr "Traccia tutti i blocchi di contenuto"
 
+#: classes/WP_Piwik/Admin/Settings.php:215
+msgid "Track only visible content blocks"
+msgstr "Traccia solo i blocchi di contenuto visibili"
+
+#: classes/WP_Piwik/Admin/Settings.php:216
 msgid ""
-"Thank you very much, all users who send me mails containing criticism, "
-"commendation, feature requests and bug reports! You help me to make WP-Piwik "
-"much better."
-msgstr ""
-"Un ringraziamento sentito per tutti gli utenti che mi inviano critiche, "
-"proposte e bug reports! Mi aiutate di migliorare WP-Piwik."
+"Content tracking allows you to track interaction with the content of a web "
+"page or application."
+msgstr "Il content tracking ti permette di tracciare le interazioni con il contenuto di una pagina web o di un'applicazione."
+
+#: classes/WP_Piwik/Admin/Settings.php:216
+#: classes/WP_Piwik/Admin/Settings.php:218
+#: classes/WP_Piwik/Admin/Settings.php:222
+#: classes/WP_Piwik/Admin/Settings.php:224
+#: classes/WP_Piwik/Admin/Settings.php:226
+#: classes/WP_Piwik/Admin/Settings.php:247
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "See %sPiwik documentation%s."
+msgstr "Leggi la %sDocumentazione di Piwik%s."
+
+#: classes/WP_Piwik/Admin/Settings.php:218
+msgid "Track search"
+msgstr "Traccia le ricerche"
+
+#: classes/WP_Piwik/Admin/Settings.php:218
+msgid "Use Piwik's advanced Site Search Analytics feature."
+msgstr "Utilizza la funzionalità avanzata di Piwik Statistiche Ricerche nel Sito."
+
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid "Track 404"
+msgstr "Tracciamento 404"
 
+#: classes/WP_Piwik/Admin/Settings.php:220
 msgid ""
-"Thank <strong>you</strong> for using my plugin. It is the best commendation "
-"if my piece of code is really used!"
-msgstr ""
-"Grazie <strong> a te</strong> per usare il mio plugin. E' la più grande "
-"soddisfazione se il mio codice viene usato realmente!"
+"WP-Piwik can automatically add a 404-category to track 404-page-visits."
+msgstr "WP-Piwik può aggiungere in automatico una categoria per tracciare visite 404."
 
-msgid "Changes saved"
-msgstr "Cambiamenti salvati"
+#: classes/WP_Piwik/Admin/Settings.php:222
+msgid "Add annotation on new post"
+msgstr "Aggiungi una nota al nuovo post"
 
-msgid "installed"
-msgstr "installato"
+#: classes/WP_Piwik/Admin/Settings.php:222
+msgid "Add a Piwik annotation on each new post."
+msgstr "Aggiungi una nota di Piwik a ciascun nuovo post."
 
-msgid "Next you should connect to Piwik"
-msgstr "Adesso crea una connessione a Piwik"
+#: classes/WP_Piwik/Admin/Settings.php:224
+msgid "Show custom variables box"
+msgstr "Mostra la casella variabili personalizzate"
 
-msgid "Please validate your configuration"
-msgstr "Per favore controlla la tua configurazione"
+#: classes/WP_Piwik/Admin/Settings.php:224
+msgid " Show a &quot;custom variables&quot; edit box on post edit page."
+msgstr ""
 
-msgid "Default date"
-msgstr "Default data"
+#: classes/WP_Piwik/Admin/Settings.php:226
+msgid "Add new file types for download tracking"
+msgstr "Aggiungi nuovi tipi di file per il tracciamento dei download"
 
-msgid "Default date shown on statistics page."
-msgstr "Il giorno che verrà mostrato sulla pagina delle statistiche."
+#: classes/WP_Piwik/Admin/Settings.php:226
+msgid ""
+"Add file extensions for download tracking, divided by a vertical bar "
+"(&#124;)."
+msgstr "Aggiungi delle estensioni di file per il tracciamento dei download divisi da una barra verticale (&#124;)."
+
+#: classes/WP_Piwik/Admin/Settings.php:228
+msgid "Disable cookies"
+msgstr "Disattivare cookies"
+
+#: classes/WP_Piwik/Admin/Settings.php:228
+msgid "Disable all tracking cookies for a visitor."
+msgstr "Disattiva tutti cookie per i visitatori."
 
-msgid "Dashboard data"
-msgstr "Dati del dashboard"
+#: classes/WP_Piwik/Admin/Settings.php:230
+msgid "Limit cookie lifetime"
+msgstr "Limita la durata del cookie"
 
-msgid "Display an overview widget to your WordPress dashboard."
-msgstr "Visualizza un widget per il resoconto sulla dashboard di Wordpress."
+#: classes/WP_Piwik/Admin/Settings.php:230
+msgid ""
+"You can limit the cookie lifetime to avoid tracking your users over a longer"
+" period as necessary."
+msgstr "È possibile limitare la durata del cookie per evitare di monitorare i tuoi utenti per un periodo più lungo, se necessario."
 
-msgid "Board chart"
-msgstr "Board-Chart"
+#: classes/WP_Piwik/Admin/Settings.php:232
+msgid "Visitor timeout (seconds)"
+msgstr "Timeout visitatori (secondi)"
 
-msgid "Display a visitor graph widget to your WordPress dashboard."
-msgstr "Visualizza un grafico con le visite sul Dashboard di Wordpress."
+#: classes/WP_Piwik/Admin/Settings.php:234
+msgid "Session timeout (seconds)"
+msgstr "Timeout sessione (secondi)"
 
-msgid "No data available."
-msgstr "Nessun dato disponibile."
+#: classes/WP_Piwik/Admin/Settings.php:236
+msgid "Referral timeout (seconds)"
+msgstr "Timeout referral (secondi)"
 
+#: classes/WP_Piwik/Admin/Settings.php:238
+msgid "Track admin pages"
+msgstr "Traccia le pagine di amministrazione"
+
+#: classes/WP_Piwik/Admin/Settings.php:238
 msgid ""
-"Check this to automatically choose your blog from your Piwik sites by URL. If "
-"your blog is not added to Piwik yet, WP-Piwik will add a new site."
+"Enable to track users on admin pages (remember to configure the tracking "
+"filter appropriately)."
+msgstr "Abilita il tracciamento degli utenti sulle pagine di amministrazione (ricorda di configurare in modo opportuno il filtro di tracciamento)."
+
+#: classes/WP_Piwik/Admin/Settings.php:241
+msgid "Tracking filter"
+msgstr "Filtro tracciamento"
+
+#: classes/WP_Piwik/Admin/Settings.php:245
+msgid "Choose users by user role you do <strong>not</strong> want to track."
+msgstr "Seleziona utenti per ruolo che <b>non</b> vuoi tracciare."
+
+#: classes/WP_Piwik/Admin/Settings.php:247
+msgid "Track subdomains in the same website"
+msgstr "Traccia i sotto-domini nello stesso sito web"
+
+#: classes/WP_Piwik/Admin/Settings.php:247
+msgid "Adds *.-prefix to cookie domain."
+msgstr "Aggiunge il prefisso *.- al cookie di dominio."
+
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "Do not count subdomains as outlink"
+msgstr "Non contare i sotto-domini come link di uscita"
+
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "Adds *.-prefix to tracked domain."
+msgstr "Aggiunge il prefisso *.- al dominio tracciato."
+
+#: classes/WP_Piwik/Admin/Settings.php:251
+msgid "Track RSS feeds"
+msgstr "Traccia i feed RSS"
+
+#: classes/WP_Piwik/Admin/Settings.php:251
+msgid "Enable to track posts in feeds via tracking pixel."
 msgstr ""
-"Spunta questo per selezionare automaticamente il tuo blog tra i siti Piwik "
-"tramite l'URL. Se il tuo blog non è inserito in Piwik Wp-Piwik lo aggiungerà."
 
-msgid "If you add the Piwik javascript code by wp_footer(),"
-msgstr "Se inserisci il codice di  Piwik tramite wp_footer() nel tuo blog,"
+#: classes/WP_Piwik/Admin/Settings.php:253
+msgid "Track RSS feed links as campaign"
+msgstr "Traccia i link dei feed RSS come campagna"
+
+#: classes/WP_Piwik/Admin/Settings.php:255
+msgid "RSS feed campaign"
+msgstr "Campagna RSS feed"
 
-msgid "WP-Piwik can automatically use js/index.php instead of piwik.js. See"
+#: classes/WP_Piwik/Admin/Settings.php:255
+msgid "Keyword: post name."
+msgstr "Keyword: nome post."
+
+#: classes/WP_Piwik/Admin/Settings.php:257
+msgid "Enable heartbeat timer"
 msgstr ""
-"WP-Piwik può usare automaticamente js/index.php al posto di piwik.js. Vedi"
 
+#: classes/WP_Piwik/Admin/Settings.php:257
 msgid ""
-"WP-Piwik can automatically force the Tracking Code to sent data in POST. See"
+"Enable a heartbeat timer to get more accurate visit lengths by sending "
+"periodical HTTP ping requests as long as the site is opened. Enter the time "
+"between the pings in seconds (Piwik default: 15) to enable or 0 to disable "
+"this feature. <strong>Note:</strong> This will cause a lot of additional "
+"HTTP requests on your site."
 msgstr ""
-"WP-Piwik può automaticamente forzare l'invio del codice di tracciamento in "
-"POST. Vedi"
 
-msgid "Avoid mod_security"
-msgstr "Evita mod_security"
+#: classes/WP_Piwik/Admin/Settings.php:262
+msgid ""
+"Usually, you do not need to change these settings. If you want to do so, you"
+" should know what you do or you got an expert's advice."
+msgstr "Di solito non hai la necessità di cambiare queste impostazioni. Se desideri farlo, devi sapere cosa fai o avere l'aiuto di un esperto."
 
-msgid "Determined site"
-msgstr "Sito rilevato"
+#: classes/WP_Piwik/Admin/Settings.php:264
+msgid "Enable cache"
+msgstr "Abilita cache"
 
-msgid "Auto config"
-msgstr "Configurazione automatica"
+#: classes/WP_Piwik/Admin/Settings.php:264
+msgid "Cache API calls, which not contain today's values, for a week."
+msgstr "Cache settimanale delle chiamate API che non contiene i dati di oggi."
 
-msgid "Use js/index.php"
-msgstr "Usa js/index.php"
+#: classes/WP_Piwik/Admin/Settings.php:267
+msgid "HTTP connection via"
+msgstr "Connessione HTTP tramite"
 
-msgid "Show overview"
-msgstr "Visualizza resoconto"
+#: classes/WP_Piwik/Admin/Settings.php:268
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "cURL"
+msgstr "cURL"
 
-msgid "Hide overview"
-msgstr "Nessun resoconto"
+#: classes/WP_Piwik/Admin/Settings.php:269
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "fopen"
+msgstr "fopen"
 
-msgid "SEO <em>(slow!)</em>"
-msgstr "SEO <em>(lento!)</em>"
+#: classes/WP_Piwik/Admin/Settings.php:270
+msgid ""
+"Choose whether WP-Piwik should use cURL or fopen to connect to Piwik in HTTP"
+" or Pro mode."
+msgstr "Scegli se WP-Piwik deve utilizzare cURL o fopen per connettersi a Piwik in HTTP o in modalità Pro."
 
-msgid "Display SEO ranking data on statistics page. <em>(Slow!)</em>"
-msgstr ""
-"Visualizza dati SEO ranking sulla pagina delle statistiche. <em>(Lento!)</em>"
+#: classes/WP_Piwik/Admin/Settings.php:272
+msgid "HTTP method"
+msgstr "Metodo HTTP"
 
-msgid ""
-"Configure WP-Piwik widgets to be shown on your WordPress Home Dashboard."
-msgstr ""
-"Configura i widget di WP-Piwik per il resoconto sulla Dashboard di Wordpress."
+#: classes/WP_Piwik/Admin/Settings.php:273
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "POST"
+msgstr "POST"
 
-msgid "SEO data"
-msgstr "Dati SEO"
+#: classes/WP_Piwik/Admin/Settings.php:274
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "GET"
+msgstr "GET"
 
-msgid "the Piwik team itself"
-msgstr "il team di Piwik stesso"
+#: classes/WP_Piwik/Admin/Settings.php:275
+msgid "Choose whether WP-Piwik should use POST or GET in HTTP or Pro mode."
+msgstr "Scegli se WP-Piwik deve utilizzare POST o GET in HTTP o in modalità Pro."
 
-msgid "Metabox support inspired by"
-msgstr "Supporto Metabox ispirato da"
+#: classes/WP_Piwik/Admin/Settings.php:277
+msgid "Disable time limit"
+msgstr "Disattivare limite del tempo"
 
-msgid "WP-Piwik support board"
-msgstr "WP-Piwik Support Board"
+#: classes/WP_Piwik/Admin/Settings.php:277
+msgid "Use set_time_limit(0) if stats page causes a time out."
+msgstr "Usa set_time_limit(0) nel caso che la pagina delle statistiche genera un timeout."
 
-msgid "no registration required, English &amp; German"
-msgstr "nessuna registrazione, inglese e tedesco"
+#: classes/WP_Piwik/Admin/Settings.php:279
+msgid "Connection timeout"
+msgstr "Timeout connessione"
 
-msgid "WordPress.org forum about WP-Piwik"
-msgstr "WordPress.org Forum di  WP-Piwik"
+#: classes/WP_Piwik/Admin/Settings.php:281
+msgid "Disable SSL peer verification"
+msgstr "Disattivare verificazione Peer SSL"
 
-msgid "WordPress.org registration required, English"
-msgstr "Registrazione presso Wordpress.org obbligatorio, in inglese"
+#: classes/WP_Piwik/Admin/Settings.php:281
+msgid "not recommended"
+msgstr "sconsigliato"
 
-msgid "Please don't forget to vote the compatibility at the"
-msgstr "Non scordarti di dare una valutazione di compatibilità nella "
+#: classes/WP_Piwik/Admin/Settings.php:283
+msgid "User agent"
+msgstr "User agent"
+
+#: classes/WP_Piwik/Admin/Settings.php:284
+msgid "Use the PHP default user agent"
+msgstr "Utilizza user agent PHP predefinito"
+
+#: classes/WP_Piwik/Admin/Settings.php:284
+msgid "empty"
+msgstr "vuoto"
+
+#: classes/WP_Piwik/Admin/Settings.php:285
+msgid "Define a specific user agent"
+msgstr "Definisci uno specifico user agent"
+
+#: classes/WP_Piwik/Admin/Settings.php:287
+msgid "Specific user agent"
+msgstr "User agent specifico"
+
+#: classes/WP_Piwik/Admin/Settings.php:289
+msgid "Add data-cfasync=false"
+msgstr "Aggiungi attributo data-cfasync=false"
+
+#: classes/WP_Piwik/Admin/Settings.php:291
+msgid "CDN URL"
+msgstr "URL CDN"
 
+#: classes/WP_Piwik/Admin/Settings.php:293
+msgid "CDN URL (SSL)"
+msgstr "URL CDN (SSL)"
+
+#: classes/WP_Piwik/Admin/Settings.php:295
+msgid "Force Piwik to use a specific protocol"
+msgstr "Forza Piwik a utilizzare un protocollo specifico"
+
+#: classes/WP_Piwik/Admin/Settings.php:296
+msgid "Disabled (default)"
+msgstr "Disabilitato (default)"
+
+#: classes/WP_Piwik/Admin/Settings.php:297
+msgid "http"
+msgstr "http"
+
+#: classes/WP_Piwik/Admin/Settings.php:298
+msgid "https (SSL)"
+msgstr "https (SSL)"
+
+#: classes/WP_Piwik/Admin/Settings.php:299
+msgid ""
+"Choose if you want to explicitly force Piwik to use HTTP or HTTPS. Does not "
+"work with a CDN URL."
+msgstr "Scegli se vuoi esplicitamente forzare Piwik a utilizzare HTTP o HTTPS. Non funziona con URL CDN."
+
+#: classes/WP_Piwik/Admin/Settings.php:301
+msgid "Update notice"
+msgstr "Notifica aggiornamento"
+
+#: classes/WP_Piwik/Admin/Settings.php:302
+msgid "Show always if WP-Piwik is updated"
+msgstr "Mostra sempre se WP-Piwik è aggiornato"
+
+#: classes/WP_Piwik/Admin/Settings.php:303
+msgid "Show only if WP-Piwik is updated and settings were changed"
+msgstr "Mostra solo se WP-Piwik è aggiornato e le impostazioni sono state cambiate"
+
+#: classes/WP_Piwik/Admin/Settings.php:305
+msgid "Choose if you want to get an update notice if WP-Piwik is updated."
+msgstr "Scegli se vuoi ricevere una notifica di aggiornamento se WP-Piwik è aggiornato."
+
+#: classes/WP_Piwik/Admin/Settings.php:466
 msgid "Donate"
 msgstr "Donazioni"
 
+#: classes/WP_Piwik/Admin/Settings.php:468
+msgid "If you like WP-Piwik, you can support its development by a donation:"
+msgstr "Se ti piace WP-Piwik e vuoi contribuire al suo sviluppo,  considera una donazione."
+
+#: classes/WP_Piwik/Admin/Settings.php:506
 msgid "My Amazon.de wishlist"
 msgstr "Mia lista di desideri pressom Amazon.de"
 
-msgid "Piwik error"
-msgstr "Errore di Piwik"
+#: classes/WP_Piwik/Admin/Settings.php:509
+#: classes/WP_Piwik/Admin/Settings.php:556
+msgid "Please don't forget to vote the compatibility at the"
+msgstr "Non scordarti di dare una valutazione di compatibilità nella "
 
-msgid "Important"
-msgstr "Wichtig"
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid "Thank you very much for your donation"
+msgstr "Grazie per le vostre donazioni"
 
-msgid "Thanks for using WP-Piwik!"
-msgstr "Grazie per usare WP-Piwik!"
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid "the Piwik team itself"
+msgstr "il team di Piwik stesso"
 
-msgid "Auto site configuration is"
-msgstr "La configurazione automatico è"
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid ", and all people flattering this"
+msgstr ", è tutti che usano Flattr per donazioni a  WP-Piwik"
 
-msgid "Tracking code insertion is"
-msgstr "L'inserimento del codice tracciamento è"
+#: classes/WP_Piwik/Admin/Settings.php:541
+msgid ""
+"Graphs powered by <a href=\"http://www.jqplot.com/\">jqPlot</a> (License: "
+"GPL 2.0 and MIT) and <a "
+"href=\"http://omnipotent.net/jquery.sparkline/\">jQuery Sparklines</a> "
+"(License: New BSD License)."
+msgstr "I grafici sono generati con <a href=\"http://wwwjqplot.com/\">jqPlot</a> e <a href=\"http://omnipotent.net/jquery.sparkline/\">jQuery Sparklines</a> (Licenza: New BSD License)."
 
-msgid "enabled"
-msgstr "attivato"
+#: classes/WP_Piwik/Admin/Settings.php:542
+msgid "Metabox support inspired by"
+msgstr "Supporto Metabox ispirato da"
 
-msgid "disabled"
-msgstr "disattivato"
+#: classes/WP_Piwik/Admin/Settings.php:543
+msgid "Tabbed settings page suggested by the"
+msgstr "La pagina delle impostazioni usando i  tab    consigliato di"
 
-msgid "You are using Piwik"
-msgstr "Stai usando Piwik"
+#: classes/WP_Piwik/Admin/Settings.php:544
+msgid "Thank you very much"
+msgstr "Mille grazie"
 
-msgid "and"
-msgstr "e"
+#: classes/WP_Piwik/Admin/Settings.php:544
+msgid "for your translation work"
+msgstr "per il vostro lavoro di traduzione"
 
+#: classes/WP_Piwik/Admin/Settings.php:545
 msgid ""
-"Error: cURL is not enabled and fopen is not allowed to open URLs. WP-Piwik "
-"won't be able to connect to Piwik."
-msgstr ""
-"Errore: cUrl non è attivato e fopen non ha i permessi per aprire Url. "
-"Wp-Piwik non può connettersi a Piwik."
+"Thank you very much, all users who send me mails containing criticism, "
+"commendation, feature requests and bug reports! You help me to make WP-Piwik"
+" much better."
+msgstr "Un ringraziamento sentito per tutti gli utenti che mi inviano critiche, proposte e bug reports! Mi aiutate di migliorare WP-Piwik."
 
+#: classes/WP_Piwik/Admin/Settings.php:546
 msgid ""
-"<strong>Important note:</strong> If you do not host this blog on your own, "
-"your site admin is able to get your auth token from the database."
-msgstr ""
-"<strong>Nota importante:</strong> Se non  è un hosting personale "
-"l'amministratore del sito può passarti il codice di autorizzazione (auth "
-"token)  dal database."
-
-msgid "Add tracking code"
-msgstr "Inserisci codice tracciamento"
+"Thank <strong>you</strong> for using my plugin. It is the best commendation "
+"if my piece of code is really used!"
+msgstr "Grazie <strong> a te</strong> per usare il mio plugin. E' la più grande soddisfazione se il mio codice viene usato realmente!"
 
-msgid "Tracking code preview"
-msgstr "Previsione codice"
+#: classes/WP_Piwik/Admin/Settings.php:555
+msgid "The best place to get help:"
+msgstr "Il posto migliore dove trovare aiuto:"
 
-msgid "Piwik Settings"
-msgstr "Impostazioni di Piwik"
+#: classes/WP_Piwik/Admin/Settings.php:555
+msgid "WP-Piwik support forum"
+msgstr "Forum di assistenza WP-Piwik"
 
-msgid "Statistics"
-msgstr "Statistiche"
+#: classes/WP_Piwik/Admin/Settings.php:558
+msgid "Debugging"
+msgstr "Debugging"
 
+#: classes/WP_Piwik/Admin/Settings.php:559
 msgid ""
-"Either allow_url_fopen has to be enabled <em>or</em> cURL has to be available:"
-msgstr ""
-"O allow_url_fopen deve essere  attivato  <em>o</em> cURL deve essere "
-"disponibile:"
+"Either allow_url_fopen has to be enabled <em>or</em> cURL has to be "
+"available:"
+msgstr "O allow_url_fopen deve essere  attivato  <em>o</em> cURL deve essere disponibile:"
 
+#: classes/WP_Piwik/Admin/Settings.php:562
 msgid "cURL is"
 msgstr "cURL è"
 
-msgid "allow_url_fopen is"
-msgstr "allow_url_fopen è"
-
+#: classes/WP_Piwik/Admin/Settings.php:563
+#: classes/WP_Piwik/Admin/Settings.php:568
 msgid "not"
 msgstr "non"
 
+#: classes/WP_Piwik/Admin/Settings.php:564
 msgid "available"
 msgstr "disponibile"
 
-msgid "Test script result"
-msgstr "Risultati del test"
+#: classes/WP_Piwik/Admin/Settings.php:567
+msgid "allow_url_fopen is"
+msgstr "allow_url_fopen è"
+
+#: classes/WP_Piwik/Admin/Settings.php:569
+msgid "enabled"
+msgstr "attivato"
 
-msgid "Please confirm your reset request"
-msgstr "Conferma la tua richiesta di reset"
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "is used."
+msgstr "è utilizzato."
 
-msgid ""
-"YES, please reset <strong>all</strong> WP-Piwik settings <strong>except<"
-"/strong> auth token and Piwi URL."
+#: classes/WP_Piwik/Admin/Settings.php:573
+msgid "Determined Piwik base URL is"
 msgstr ""
-"Sì, resetta <strong>tutte </strong> le impostazioni di WP-Piwiki con "
-"eccezione del codice di autenticazione e l'Url di Piwik."
 
-msgid "WP-Piwik reset done"
-msgstr "WP-Piwik è stato resettato"
+#: classes/WP_Piwik/Admin/Settings.php:577
+msgid "Tools"
+msgstr "Strumenti"
 
-msgid "Get more debug information"
-msgstr "Ottieni più informazioni per il debug"
+#: classes/WP_Piwik/Admin/Settings.php:579
+msgid "Run testscript"
+msgstr ""
 
-msgid "Run test script"
-msgstr "Avvia script di test"
+#: classes/WP_Piwik/Admin/Settings.php:580
+msgid "Sitebrowser"
+msgstr ""
 
-msgid "Get site configuration details"
-msgstr "Ottieni dettagli sulla configurazione del sito"
+#: classes/WP_Piwik/Admin/Settings.php:581
+msgid "Clear cache"
+msgstr "Svuota cache"
 
-msgid "Reset WP-Piwik settings except auth token and Piwik URL"
-msgstr ""
-"Resetta tutte  le impostazioni di WP-Piwik, con eccezione del codice di "
-"autenticazione e l'URL di Piwik"
+#: classes/WP_Piwik/Admin/Settings.php:582
+msgid "Are you sure you want to clear all settings?"
+msgstr "Sei sicuro di voler azzerare tutte le impostazioni?"
 
-msgid ""
-"You have to enter your auth token and the Piwik URL before you can access "
-"more debug functions."
-msgstr ""
-"Devi inserire il tuo codice di autenticazione e l'URL di Piwik prima che puoi "
-"usare più funzioni debug."
+#: classes/WP_Piwik/Admin/Settings.php:582
+msgid "Reset WP-Piwik"
+msgstr "Reimposta WP-Piwik"
 
+#: classes/WP_Piwik/Admin/Settings.php:584
 msgid "Latest support threads on WordPress.org"
 msgstr "Gli ultimi thread di supporto su  WordPress.org"
 
-msgid ""
-"This will not affect Piwik itself. Resetting large networks may take some "
-"minutes."
-msgstr ""
-"Questo non avrà affetto su Piwik stesso. Resettare grandi reti potrebbe "
-"richiedere alcuni minuti."
+#: classes/WP_Piwik/Admin/Settings.php:635
+msgid "Settings cleared (except connection settings)."
+msgstr "Impostazioni azzerate (eccetto le impostazioni di connessione)"
 
-msgid ", and all people flattering this"
-msgstr ", è tutti che usano Flattr per donazioni a  WP-Piwik"
+#: classes/WP_Piwik/Admin/Settings.php:651
+msgid "Cache cleared."
+msgstr "Cache svuotata."
 
-msgid "Disable time limit"
-msgstr "Disattivare limite del tempo"
+#: classes/WP_Piwik/Admin/Sitebrowser.php:17
+msgid "site"
+msgstr "sito"
 
-msgid "Use set_time_limit(0) if stats page causes a time out."
-msgstr ""
-"Usa set_time_limit(0) nel caso che la pagina delle statistiche genera un "
-"timeout."
+#: classes/WP_Piwik/Admin/Sitebrowser.php:18
+msgid "sites"
+msgstr "siti"
 
-msgid "in network mode"
-msgstr "in modalità rete"
+#: classes/WP_Piwik/Admin/Sitebrowser.php:24
+msgid "No site configured yet."
+msgstr "Non è ancora stato configurato alcun sito"
 
-msgid "To enable Piwik statistics, please enter"
-msgstr "Per attivare le statistiche di Piwik devi inserire"
+#: classes/WP_Piwik/Admin/Sitebrowser.php:29
+msgid "Blog ID"
+msgstr "ID blog"
 
-msgid ""
-"your Piwik base URL (like http://mydomain.com/piwik) or your Piwik server "
-"path (like /var/www/mydomain.com/httpdocs/piwik/)"
-msgstr ""
-"L'URL della tua installazione di Piwik (esempio: http://miosito.com/piwik) o "
-"il "
-"percorso server all'installazione di Piwik (esempio: "
-"/var/www/miodominio.com/httpdocs/piwik/)"
+#: classes/WP_Piwik/Admin/Sitebrowser.php:30
+msgid "Title"
+msgstr "Titolo"
 
-msgid ""
-"your personal Piwik authentification token. You can get the token on the API "
-"page inside your Piwik interface. It looks like "
-"&quot;1234a5cd6789e0a12345b678cd9012ef&quot;."
-msgstr ""
-"La chiave personale di autenticazione (Token). La chiave puoi ottenere"
-"nell'interfaccia di Piwik sulla pagina API. Ha un aspetto simile a: "
-"&quot;1234a5cd6789e0a12345b678cd9012ef&quot;."
+#: classes/WP_Piwik/Admin/Sitebrowser.php:31
+msgid "URL"
+msgstr "URL"
 
-msgid "No idea what I'm talking about?"
-msgstr "Non ci hai capito niente?"
+#: classes/WP_Piwik/Admin/Sitebrowser.php:32
+msgid "Site ID (Piwik)"
+msgstr "ID Pagina (Piwik)"
 
-msgid "Get help."
-msgstr "Qui ottieni aiuto."
+#: classes/WP_Piwik/Admin/Sitebrowser.php:79
+msgid "Site not created yet."
+msgstr "Non è ancora stato creato alcun sito"
 
-msgid "Piwik path"
-msgstr "Percorso di Piwik "
+#: classes/WP_Piwik/Admin/Statistics.php:12
+msgid "Statistics"
+msgstr "Statistiche"
 
-msgid "Disable cookies"
-msgstr "Disattivare cookies"
+#: classes/WP_Piwik/Admin/Statistics.php:20
+msgid "Currently shown stats:"
+msgstr "Statistiche mostrate attualmente:"
 
-msgid "Disable all tracking cookies for a visitor."
-msgstr "Disattiva tutti cookie per i visitatori."
+#: classes/WP_Piwik/Request/Php.php:27
+msgid "Could not resolve"
+msgstr "Impossibile risolvere"
+
+#: classes/WP_Piwik/Request/Php.php:27
+msgid "realpath() returns false"
+msgstr "realpath() restituisce false"
+
+#: classes/WP_Piwik/Request/Php.php:39
+msgid "Class Piwik\\FrontController does not exists."
+msgstr "La classe Piwik\\FrontController non esiste."
+
+#: classes/WP_Piwik/Request/Php.php:42
+msgid "Class Piwik\\API\\Request does not exists."
+msgstr "La classe Piwik\\API\\Request non esiste."
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:10
+msgid "Piwik Custom Variables"
+msgstr "Variabili Personalizzate di Piwik"
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
+msgid "Name"
+msgstr "Nome"
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
+msgid "Value"
+msgstr "Valore"
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
+msgid "Set custom variables for a page view"
+msgstr "Imposta le variabili personalizzate per una visualizzazione di pagina"
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:18
+msgid "Browser Details"
+msgstr "Dettagli browser"
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:37
+#: classes/WP_Piwik/Widget/Browsers.php:37
+#: classes/WP_Piwik/Widget/Chart.php:43
+#: classes/WP_Piwik/Widget/Noresult.php:23
+#: classes/WP_Piwik/Widget/Overview.php:24
+#: classes/WP_Piwik/Widget/Plugins.php:23 classes/WP_Piwik/Widget/Post.php:25
+#: classes/WP_Piwik/Widget/Screens.php:35
+#: classes/WP_Piwik/Widget/Search.php:23 classes/WP_Piwik/Widget/Seo.php:20
+#: classes/WP_Piwik/Widget/SystemDetails.php:33
+#: classes/WP_Piwik/Widget/Systems.php:33
+#: classes/WP_Piwik/Widget/Visitors.php:35 classes/WP_Piwik/Widget.php:91
+msgid "Piwik error"
+msgstr "Errore di Piwik"
 
-msgid "Show graph on WordPress Toolbar"
-msgstr "Visualizza un grafico nella barra degli strumenti di Wordpress"
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+msgid "Browser"
+msgstr "Browser"
 
-msgid "Display the last 30 days visitor stats on WordPress Toolbar."
-msgstr ""
-"Visualizza la statistica delle visite negli ultimi 30 giorni nella barra "
-"degli strumenti di Wordpress."
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+#: classes/WP_Piwik/Widget/Screens.php:37
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+#: classes/WP_Piwik/Widget/Visitors.php:57 classes/WP_Piwik/Widget.php:100
+msgid "Unique"
+msgstr "Unici"
 
-msgid ""
-"Graphs powered by <a href=\"http://www.jqplot.com/\">jqPlot</a> (License: GPL "
-"2.0 and MIT) and <a href=\"http://omnipotent.net/jquery.sparkline/\">jQuery "
-"Sparklines</a> (License: New BSD License)."
-msgstr ""
-"I grafici sono generati con <a href=\"http://wwwjqplot.com/\">jqPlot</a> "
-"e <a href=\"http://omnipotent.net/jquery.sparkline/\">jQuery "
-"Sparklines</a> (Licenza: New BSD License)."
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+#: classes/WP_Piwik/Widget/Plugins.php:25
+#: classes/WP_Piwik/Widget/Screens.php:37
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+msgid "Percent"
+msgstr "Percentuale"
 
-msgid "Tabbed settings page suggested by the"
-msgstr "La pagina delle impostazioni usando i  tab    consigliato di"
+#: classes/WP_Piwik/Widget/BrowserDetails.php:66
+#: classes/WP_Piwik/Widget/Browsers.php:66
+#: classes/WP_Piwik/Widget/Screens.php:64
+#: classes/WP_Piwik/Widget/SystemDetails.php:62
+#: classes/WP_Piwik/Widget/Systems.php:62
+msgid "Others"
+msgstr "Altri "
+
+#: classes/WP_Piwik/Widget/Browsers.php:18
+msgid "Browsers"
+msgstr "Browser"
 
+#: classes/WP_Piwik/Widget/Chart.php:19
+#: classes/WP_Piwik/Widget/Overview.php:41 classes/WP_Piwik/Widget/Post.php:37
+#: classes/WP_Piwik/Widget/Visitors.php:17
+msgid "Visitors"
+msgstr "Visitatori"
+
+#: classes/WP_Piwik/Widget/Chart.php:71
 msgid ""
-"If you like to use the PHP API and also to enable tracking by WP-Piwik, "
-"please enter your Piwik URL, too. Otherwise your tracking code may be "
-"erroneous."
-msgstr ""
-"Se preferisci usare PHP API e il tracciamento con WP-Piwik, "
-"inserisci anche l'Url di Piwik. Altrimenti il tuo codice di tracciamento "
-"potrebbero contenere degli errori."
+"The graph contains the values shown in the table below (visitors / unique / "
+"bounces). The red line show a linear trendline (unique)."
+msgstr "Il grafico contiene i valori mostrati nella tabella qui sotto (visitatori / visitatori unici / rimbalzi). La linea rossa mostra una linea di tendenza lineare (visitatori unici)."
 
-msgid "Title"
-msgstr "Titolo"
+#: classes/WP_Piwik/Widget/Keywords.php:16
+msgid "Keywords"
+msgstr "Parole chiave"
 
-msgid "Site ID (Piwik)"
-msgstr "ID Pagina (Piwik)"
+#: classes/WP_Piwik/Widget/Noresult.php:16
+#: classes/WP_Piwik/Widget/Search.php:16
+msgid "Site Search"
+msgstr "Ricerca Sito"
 
-msgid "Expert Settings"
-msgstr "Impostazioni per esperti"
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+msgid "Keyword"
+msgstr "Parole chiavi"
 
-msgid "Disable SSL peer verification"
-msgstr "Disattivare verificazione Peer SSL"
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+msgid "Requests"
+msgstr "Richieste"
 
-msgid "not recommended"
-msgstr "sconsigliato"
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Bounced"
+msgstr "Uscite"
 
-msgid "Invalid path. Please enter the file path to Piwik."
-msgstr "Percorso non valido. Per favore inserire il percorso corretto a Piwik."
+#: classes/WP_Piwik/Widget/Overview.php:17 classes/WP_Piwik/Widget/Post.php:18
+msgid "Overview"
+msgstr "Resoconto"
 
-msgid "Enable shortcodes in post or page content."
-msgstr "Attiva scorciatoie nel contenuto di articoli e pagine. "
+#: classes/WP_Piwik/Widget/Overview.php:42 classes/WP_Piwik/Widget/Post.php:38
+msgid "Unique visitors"
+msgstr "Visitatori unici"
+
+#: classes/WP_Piwik/Widget/Overview.php:43 classes/WP_Piwik/Widget/Post.php:39
+msgid "Page views"
+msgstr "Pagine viste"
+
+#: classes/WP_Piwik/Widget/Overview.php:44 classes/WP_Piwik/Widget/Post.php:40
+msgid "Total time spent"
+msgstr "Tempo di rimanenza"
+
+#: classes/WP_Piwik/Widget/Overview.php:45 classes/WP_Piwik/Widget/Post.php:42
+msgid "Bounce count"
+msgstr "Rimbalzi "
+
+#: classes/WP_Piwik/Widget/Overview.php:48 classes/WP_Piwik/Widget/Post.php:41
+msgid "Time/visit"
+msgstr "Media durata per visita"
+
+#: classes/WP_Piwik/Widget/Overview.php:48
+msgid "Max. page views in one visit"
+msgstr "Massimo di pagine viste in una visita"
+
+#: classes/WP_Piwik/Widget/Overview.php:49 classes/WP_Piwik/Widget/Post.php:46
+msgid "Shortcut"
+msgstr "Scorciatoia"
+
+#: classes/WP_Piwik/Widget/Pages.php:16
+msgid "Pages"
+msgstr "Pagine"
+
+#: classes/WP_Piwik/Widget/Plugins.php:16
+msgid "Plugins"
+msgstr "Plugins"
+
+#: classes/WP_Piwik/Widget/Plugins.php:25
+msgid "Plugin"
+msgstr "Plugin"
+
+#: classes/WP_Piwik/Widget/Plugins.php:25
+#: classes/WP_Piwik/Widget/Visitors.php:57 classes/WP_Piwik/Widget.php:102
+msgid "Visits"
+msgstr "Visite"
+
+#: classes/WP_Piwik/Widget/Post.php:43
+msgid "Min. generation time"
+msgstr "Minimo tempo di generazione"
+
+#: classes/WP_Piwik/Widget/Post.php:44
+msgid "Max. generation time"
+msgstr "Massimo tempo di generazione"
+
+#: classes/WP_Piwik/Widget/Referrers.php:16
+msgid "Referrers"
+msgstr "Referrers"
+
+#: classes/WP_Piwik/Widget/Screens.php:16
+msgid "Resolutions"
+msgstr "Risoluzioni"
+
+#: classes/WP_Piwik/Widget/Screens.php:37
+msgid "Resolution"
+msgstr "Risoluzione"
+
+#: classes/WP_Piwik/Widget/Seo.php:13
+msgid "SEO"
+msgstr "SEO"
+
+#: classes/WP_Piwik/Widget/SystemDetails.php:14
+msgid "Operation System Details"
+msgstr "Dettagli Sistema Operativo"
+
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+msgid "Operation System"
+msgstr "Sistema Operativo"
+
+#: classes/WP_Piwik/Widget/Systems.php:14
+msgid "Operation Systems"
+msgstr "Sistemi Operativi"
+
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Date"
+msgstr "Data"
+
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Page Views"
+msgstr "Pagine Viste"
+
+#: classes/WP_Piwik/Widget.php:104
+msgid "Hits"
+msgstr "Clicks"
+
+#: classes/WP_Piwik/Widget.php:106
+msgid "Actions"
+msgstr "Azioni"
+
+#: classes/WP_Piwik/Widget.php:162
+msgid "No data available."
+msgstr "Nessun dato disponibile."
+
+#: classes/WP_Piwik/Widget.php:293
+msgid "week"
+msgstr "settimana"
+
+#: classes/WP_Piwik.php:193
+msgid "%s %s installed."
+msgstr "%s %s installato."
+
+#: classes/WP_Piwik.php:193
+msgid "Next you should connect to Piwik"
+msgstr "Adesso crea una connessione a Piwik"
+
+#: classes/WP_Piwik.php:227
+msgid "%s updated to %s."
+msgstr "%s aggiornato a %s."
+
+#: classes/WP_Piwik.php:227
+msgid "Please validate your configuration"
+msgstr "Per favore controlla la tua configurazione"
+
+#: classes/WP_Piwik.php:259 classes/WP_Piwik.php:481
+msgid "Settings"
+msgstr "Impostazioni"
+
+#: classes/WP_Piwik.php:262
+msgid "Important"
+msgstr "Wichtig"
+
+#: classes/WP_Piwik.php:343 classes/WP_Piwik.php:365
+msgid "Piwik Statistics"
+msgstr "Statistiche Piwik"
+
+#: classes/WP_Piwik.php:453
+msgid "Configure WP-Piwik"
+msgstr "Configura WP-Piwik"
+
+#: classes/WP_Piwik.php:923
+msgid "An error occured"
+msgstr "E' successo un errore"
+
+#: classes/WP_Piwik.php:1191
+msgid "Cheatin&#8217; uh?"
+msgstr ""
+
+#: wp-piwik.php:60
+msgid ""
+"WP-Piwik requires at least PHP 5.3. You are using the deprecated version %s."
+" Please update PHP to use WP-Piwik."
+msgstr "WP-Piwik richiede almeno PHP 5.3. Tu stai utilizzando la versione deprecata %s. Aggiorna PHP per utilizzare WP-Piwik."
+
+#. Plugin Name of the plugin/theme
+msgid "WP-Piwik"
+msgstr "WP-Piwik"
+
+#. Plugin URI of the plugin/theme
+msgid "http://wordpress.org/extend/plugins/wp-piwik/"
+msgstr "http://wordpress.org/extend/plugins/wp-piwik/"
+
+#. Description of the plugin/theme
+msgid ""
+"Adds Piwik stats to your dashboard menu and Piwik code to your wordpress "
+"header."
+msgstr "Aggiunge le statistiche di Piwik al menù della tua dashboard e il codice di Piwik al tuo header di Wordpress."
 
+#. Author of the plugin/theme
+msgid "Andr&eacute; Br&auml;kling"
+msgstr "Andr&eacute; Br&auml;kling"
 
+#. Author URI of the plugin/theme
+msgid "http://www.braekling.de"
+msgstr "http://www.braekling.de"
diff --git a/wp-content/plugins/wp-piwik/languages/wp-piwik-lt_LT.mo b/wp-content/plugins/wp-piwik/languages/wp-piwik-lt_LT.mo
index 373ec9c2a20e33fbfbcca7e385bd69761fbeac10..05e482186f7e2466e174b5e5a966c6f22eb48dda 100644
Binary files a/wp-content/plugins/wp-piwik/languages/wp-piwik-lt_LT.mo and b/wp-content/plugins/wp-piwik/languages/wp-piwik-lt_LT.mo differ
diff --git a/wp-content/plugins/wp-piwik/languages/wp-piwik-lt_LT.po b/wp-content/plugins/wp-piwik/languages/wp-piwik-lt_LT.po
index 28ecd65adfe7862d9bbf6fb288a98f5a0069f209..d129eb684efb335c3bbdb772b859551a9301f5d5 100644
--- a/wp-content/plugins/wp-piwik/languages/wp-piwik-lt_LT.po
+++ b/wp-content/plugins/wp-piwik/languages/wp-piwik-lt_LT.po
@@ -1,186 +1,1266 @@
-# WP-Piwik 0.3.0 - Belorussian language file
-# Copyright (C) 2009 Andre Braekling
+# Copyright (C) 2015 WP-Piwik
 # This file is distributed under the same license as the WP-Piwik package.
-# Andre Braekling <webmaster@braekling.de>, 2009.
-# FatCow http://www.fatcow.com, 2009.
+# Translators:
+# Andre Braekling <webmaster@braekling.de>, 2009
+# FatCow http://www.fatcow.com, 2009
 msgid ""
 msgstr ""
-"Project-Id-Version: 0.3.0\n"
-"Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-piwik\n"
-"POT-Creation-Date: 2009-06-09 19:05+0000\n"
-"PO-Revision-Date: 2011-07-28 11:57+0200\n"
-"Last-Translator: Natalija Strazdauskienė <ciuvir@mail.ru>\n"
-"Language-Team: Nata Strazda <nata@epastas.lt>\n"
+"Project-Id-Version: WP-Piwik\n"
+"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-piwik\n"
+"POT-Creation-Date: 2015-07-22 10:25:29+00:00\n"
+"PO-Revision-Date: 2015-07-22 10:33+0000\n"
+"Last-Translator: André Bräkling\n"
+"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/wp-piwik/language/lt_LT/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Poedit-Language: Lithuanian\n"
-"X-Poedit-Country: LITHUANIA\n"
-"X-Poedit-SourceCharset: utf-8\n"
+"Language: lt_LT\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
 
-#: dashboard/browsers.php:8
-#: dashboard/browsers.php:37
-msgid "Browser"
-msgstr "Naršyklė"
+#: classes/WP_Piwik/Admin/Settings.php:24
+msgid "Reload"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:27
+msgid "Changes saved."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:45
+msgid "Save Changes"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:46
+msgid "Thanks for using WP-Piwik!"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid "WP-Piwik %s is successfully connected to Piwik %s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid "You are running WordPress %s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid ""
+"You are running a WordPress %s blog network (WPMU). WP-Piwik will handle "
+"your sites as different websites."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:53
+msgid ""
+"WP-Piwik %s was not able to connect to Piwik using your configuration. Check"
+" the &raquo;Connect to Piwik&laquo; section below."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:56
+msgid ""
+"WP-Piwik %s has to be connected to Piwik first. Check the &raquo;Connect to "
+"Piwik&laquo; section below."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:60
+msgid "Connect to Piwik"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:65
+msgid "Show Statistics"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:69
+msgid "Enable Tracking"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:74
+msgid "Expert Settings"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:78 classes/WP_Piwik.php:923
+msgid "Support"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:82
+msgid "Credits"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid ""
+"WP-Piwik is a WordPress plugin to show a selection of Piwik stats in your "
+"WordPress admin dashboard and to add and configure your Piwik tracking code."
+" To use this you will need your own Piwik instance. If you do not already "
+"have a Piwik setup, you have two simple options: use either"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "Self-hosted"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "or"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "Cloud-hosted"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:98
+msgid ""
+"Neither cURL nor fopen are available. So WP-Piwik can not use the HTTP API "
+"and not connect to Piwik Pro."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:98
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
+msgid "More information"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid "You can choose between three connection methods:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:103
+msgid "Self-hosted (HTTP API, default)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"This is the default option for a self-hosted Piwik and should work for most "
+"configurations. WP-Piwik will connect to Piwik using http(s)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:104
+msgid "Self-hosted (PHP API)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"Choose this, if your self-hosted Piwik and WordPress are running on the same"
+" machine and you know the full server path to your Piwik instance."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:105
+msgid "Cloud-hosted (Piwik Pro)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"If you are using a cloud-hosted Piwik by Piwik Pro, you can simply use this "
+"option."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:101
+msgid "Piwik Mode"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:102
+msgid "Disabled (WP-Piwik will not connect to Piwik)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:108
+msgid "Piwik URL"
+msgstr "Piwik URL"
+
+#: classes/WP_Piwik/Admin/Settings.php:108
+msgid ""
+"Enter your Piwik URL. This is the same URL you use to access your Piwik "
+"instance, e.g. http://www.example.com/piwik/."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:109
+msgid "Piwik path"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:109
+msgid "Enter the file path to your Piwik instance, e.g. /var/www/piwik/."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:110
+msgid "Piwik user"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:110
+msgid ""
+"Enter your Piwik Pro username. It is also part of your URL: "
+"http://USERNAME.piwik.pro."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid "Auth token"
+msgstr "Autentifikavimo požymis"
+
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid ""
+"Enter your Piwik auth token here. It is an alphanumerical code like "
+"0a1b2c34d56e78901fa2bc3d45678efa."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid "See %sWP-Piwik FAQ%s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:116
+msgid "Auto config"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:116
+msgid ""
+"Check this to automatically choose your blog from your Piwik sites by URL. "
+"If your blog is not added to Piwik yet, WP-Piwik will add a new site."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:127
+msgid "Determined site"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:132
+msgid "Select site"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:140
+msgid "Piwik default date"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:141
+#: classes/WP_Piwik/Admin/Settings.php:154
+msgid "Today"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:142
+#: classes/WP_Piwik/Admin/Settings.php:153
+msgid "Yesterday"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:143
+msgid "Current month"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:144
+msgid "Last month"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:145
+msgid "Current week"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:146
+msgid "Last week"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:147
+msgid "Default date shown on statistics page."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:149
+msgid "Show SEO data"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:149
+msgid "Display SEO ranking data on statistics page."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:149
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Slow!"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:151
+msgid "Dashboard overview"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:152
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:192
+#: classes/WP_Piwik/Admin/Settings.php:213
+#: classes/WP_Piwik/Admin/Settings.php:304
+msgid "Disabled"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:155
+msgid "Last 30 days"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:156
+msgid "Enable WP-Piwik dashboard widget &quot;Overview&quot;."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:158
+msgid "Dashboard graph"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:158
+msgid "Enable WP-Piwik dashboard widget &quot;Graph&quot;."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Dashboard SEO"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Enable WP-Piwik dashboard widget &quot;SEO&quot;."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:162
+msgid "Show graph on WordPress Toolbar"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:162
+msgid "Display a last 30 days visitor graph on WordPress' toolbar."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:164
+msgid "Display stats to"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:171
+msgid "Choose user roles allowed to see the statistics page."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:173
+msgid "Show per post stats"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:173
+msgid "Show stats about single posts at the post edit admin page."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:175
+msgid "Piwik shortcut"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:175
+msgid "Display a shortcut to Piwik itself."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:177
+msgid "WP-Piwik display name"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:177
+msgid "Plugin name shown in WordPress."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:179
+msgid "Enable shortcodes"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:179
+msgid "Enable shortcodes in post or page content."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "You can choose between four tracking code modes:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"WP-Piwik will not add the tracking code. Use this, if you want to add the "
+"tracking code to your template files or you use another plugin to add the "
+"tracking code."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:193
+msgid "Default tracking"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "WP-Piwik will use Piwik's standard tracking code."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:194
+msgid "Use js/index.php"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"You can choose this tracking code, to deliver a minified proxy code and to "
+"avoid using the files called piwik.js or piwik.php."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "See %sreadme file%s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:195
+msgid "Use proxy script"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "Use this tracking code to not reveal the Piwik server URL."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:210
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid "See %sPiwik FAQ%s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:196
+msgid "Enter manually"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"Enter your own tracking code manually. You can choose one of the prior "
+"options, pre-configure your tracking code and switch to manually editing at "
+"last."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "Use the placeholder {ID} to add the Piwik site ID."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:191
+msgid "Add tracking code"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:199
+msgid "Tracking code"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:201
+msgid "JavaScript code position"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:202
+msgid "Footer"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:203
+msgid "Header"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:204
+msgid ""
+"Choose whether the JavaScript code is added to the footer or the header."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:206
+msgid "Noscript code"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+msgid "Add &lt;noscript&gt;"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+msgid "Adds the &lt;noscript&gt; code to your footer."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Disabled in proxy mode."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Add rec parameter to noscript code"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Enable tracking for visitors without JavaScript (not recommended)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:212
+msgid "Enable content tracking"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:214
+msgid "Track all content blocks"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:215
+msgid "Track only visible content blocks"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:216
+msgid ""
+"Content tracking allows you to track interaction with the content of a web "
+"page or application."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:216
+#: classes/WP_Piwik/Admin/Settings.php:218
+#: classes/WP_Piwik/Admin/Settings.php:222
+#: classes/WP_Piwik/Admin/Settings.php:224
+#: classes/WP_Piwik/Admin/Settings.php:226
+#: classes/WP_Piwik/Admin/Settings.php:247
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "See %sPiwik documentation%s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:218
+msgid "Track search"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:218
+msgid "Use Piwik's advanced Site Search Analytics feature."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid "Track 404"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid ""
+"WP-Piwik can automatically add a 404-category to track 404-page-visits."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:222
+msgid "Add annotation on new post"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:222
+msgid "Add a Piwik annotation on each new post."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:224
+msgid "Show custom variables box"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:224
+msgid " Show a &quot;custom variables&quot; edit box on post edit page."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:226
+msgid "Add new file types for download tracking"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:226
+msgid ""
+"Add file extensions for download tracking, divided by a vertical bar "
+"(&#124;)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:228
+msgid "Disable cookies"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:228
+msgid "Disable all tracking cookies for a visitor."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:230
+msgid "Limit cookie lifetime"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:230
+msgid ""
+"You can limit the cookie lifetime to avoid tracking your users over a longer"
+" period as necessary."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:232
+msgid "Visitor timeout (seconds)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:234
+msgid "Session timeout (seconds)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:236
+msgid "Referral timeout (seconds)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:238
+msgid "Track admin pages"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:238
+msgid ""
+"Enable to track users on admin pages (remember to configure the tracking "
+"filter appropriately)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:241
+msgid "Tracking filter"
+msgstr "Stebėjimo filtras"
+
+#: classes/WP_Piwik/Admin/Settings.php:245
+msgid "Choose users by user role you do <strong>not</strong> want to track."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:247
+msgid "Track subdomains in the same website"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:247
+msgid "Adds *.-prefix to cookie domain."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "Do not count subdomains as outlink"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "Adds *.-prefix to tracked domain."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:251
+msgid "Track RSS feeds"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:251
+msgid "Enable to track posts in feeds via tracking pixel."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:253
+msgid "Track RSS feed links as campaign"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:255
+msgid "RSS feed campaign"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:255
+msgid "Keyword: post name."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:257
+msgid "Enable heartbeat timer"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:257
+msgid ""
+"Enable a heartbeat timer to get more accurate visit lengths by sending "
+"periodical HTTP ping requests as long as the site is opened. Enter the time "
+"between the pings in seconds (Piwik default: 15) to enable or 0 to disable "
+"this feature. <strong>Note:</strong> This will cause a lot of additional "
+"HTTP requests on your site."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:262
+msgid ""
+"Usually, you do not need to change these settings. If you want to do so, you"
+" should know what you do or you got an expert's advice."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:264
+msgid "Enable cache"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:264
+msgid "Cache API calls, which not contain today's values, for a week."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:267
+msgid "HTTP connection via"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:268
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "cURL"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:269
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "fopen"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:270
+msgid ""
+"Choose whether WP-Piwik should use cURL or fopen to connect to Piwik in HTTP"
+" or Pro mode."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:272
+msgid "HTTP method"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:273
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "POST"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:274
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "GET"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:275
+msgid "Choose whether WP-Piwik should use POST or GET in HTTP or Pro mode."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:277
+msgid "Disable time limit"
+msgstr ""
 
-msgid "Resolution"
-msgstr "Rezoliucija"
+#: classes/WP_Piwik/Admin/Settings.php:277
+msgid "Use set_time_limit(0) if stats page causes a time out."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:279
+msgid "Connection timeout"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:281
+msgid "Disable SSL peer verification"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:281
+msgid "not recommended"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:283
+msgid "User agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:284
+msgid "Use the PHP default user agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:284
+msgid "empty"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:285
+msgid "Define a specific user agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:287
+msgid "Specific user agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:289
+msgid "Add data-cfasync=false"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:291
+msgid "CDN URL"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:293
+msgid "CDN URL (SSL)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:295
+msgid "Force Piwik to use a specific protocol"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:296
+msgid "Disabled (default)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:297
+msgid "http"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:298
+msgid "https (SSL)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:299
+msgid ""
+"Choose if you want to explicitly force Piwik to use HTTP or HTTPS. Does not "
+"work with a CDN URL."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:301
+msgid "Update notice"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:302
+msgid "Show always if WP-Piwik is updated"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:303
+msgid "Show only if WP-Piwik is updated and settings were changed"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:305
+msgid "Choose if you want to get an update notice if WP-Piwik is updated."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:466
+msgid "Donate"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:468
+msgid "If you like WP-Piwik, you can support its development by a donation:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:506
+msgid "My Amazon.de wishlist"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:509
+#: classes/WP_Piwik/Admin/Settings.php:556
+msgid "Please don't forget to vote the compatibility at the"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid "Thank you very much for your donation"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid "the Piwik team itself"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid ", and all people flattering this"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:541
+msgid ""
+"Graphs powered by <a href=\"http://www.jqplot.com/\">jqPlot</a> (License: "
+"GPL 2.0 and MIT) and <a "
+"href=\"http://omnipotent.net/jquery.sparkline/\">jQuery Sparklines</a> "
+"(License: New BSD License)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:542
+msgid "Metabox support inspired by"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:543
+msgid "Tabbed settings page suggested by the"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:544
+msgid "Thank you very much"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:544
+msgid "for your translation work"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:545
+msgid ""
+"Thank you very much, all users who send me mails containing criticism, "
+"commendation, feature requests and bug reports! You help me to make WP-Piwik"
+" much better."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:546
+msgid ""
+"Thank <strong>you</strong> for using my plugin. It is the best commendation "
+"if my piece of code is really used!"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:555
+msgid "The best place to get help:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:555
+msgid "WP-Piwik support forum"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:558
+msgid "Debugging"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:559
+msgid ""
+"Either allow_url_fopen has to be enabled <em>or</em> cURL has to be "
+"available:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:562
+msgid "cURL is"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:563
+#: classes/WP_Piwik/Admin/Settings.php:568
+msgid "not"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:564
+msgid "available"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:567
+msgid "allow_url_fopen is"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:569
+msgid "enabled"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "is used."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:573
+msgid "Determined Piwik base URL is"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:577
+msgid "Tools"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:579
+msgid "Run testscript"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:580
+msgid "Sitebrowser"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:581
+msgid "Clear cache"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:582
+msgid "Are you sure you want to clear all settings?"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:582
+msgid "Reset WP-Piwik"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:584
+msgid "Latest support threads on WordPress.org"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:635
+msgid "Settings cleared (except connection settings)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:651
+msgid "Cache cleared."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:17
+msgid "site"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:18
+msgid "sites"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:24
+msgid "No site configured yet."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:29
+msgid "Blog ID"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:30
+msgid "Title"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:31
+msgid "URL"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:32
+msgid "Site ID (Piwik)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:79
+msgid "Site not created yet."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Statistics.php:12
+msgid "Statistics"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Statistics.php:20
+msgid "Currently shown stats:"
+msgstr ""
+
+#: classes/WP_Piwik/Request/Php.php:27
+msgid "Could not resolve"
+msgstr ""
+
+#: classes/WP_Piwik/Request/Php.php:27
+msgid "realpath() returns false"
+msgstr ""
+
+#: classes/WP_Piwik/Request/Php.php:39
+msgid "Class Piwik\\FrontController does not exists."
+msgstr ""
+
+#: classes/WP_Piwik/Request/Php.php:42
+msgid "Class Piwik\\API\\Request does not exists."
+msgstr ""
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:10
+msgid "Piwik Custom Variables"
+msgstr ""
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
+msgid "Name"
+msgstr ""
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
+msgid "Value"
+msgstr ""
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
+msgid "Set custom variables for a page view"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:18
+msgid "Browser Details"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:37
+#: classes/WP_Piwik/Widget/Browsers.php:37
+#: classes/WP_Piwik/Widget/Chart.php:43
+#: classes/WP_Piwik/Widget/Noresult.php:23
+#: classes/WP_Piwik/Widget/Overview.php:24
+#: classes/WP_Piwik/Widget/Plugins.php:23 classes/WP_Piwik/Widget/Post.php:25
+#: classes/WP_Piwik/Widget/Screens.php:35
+#: classes/WP_Piwik/Widget/Search.php:23 classes/WP_Piwik/Widget/Seo.php:20
+#: classes/WP_Piwik/Widget/SystemDetails.php:33
+#: classes/WP_Piwik/Widget/Systems.php:33
+#: classes/WP_Piwik/Widget/Visitors.php:35 classes/WP_Piwik/Widget.php:91
+msgid "Piwik error"
+msgstr ""
 
-msgid "Operating System"
-msgstr "Opercainė Sistema"
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+msgid "Browser"
+msgstr "Naršyklė"
 
-#: dashboard/browsers.php:37
-#: dashboard/keywords.php:13
-#: dashboard/visitors.php:56
-#: dashboard/websites.php:13
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+#: classes/WP_Piwik/Widget/Screens.php:37
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+#: classes/WP_Piwik/Widget/Visitors.php:57 classes/WP_Piwik/Widget.php:100
 msgid "Unique"
 msgstr "Unikalus"
 
-#: dashboard/browsers.php:37
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+#: classes/WP_Piwik/Widget/Plugins.php:25
+#: classes/WP_Piwik/Widget/Screens.php:37
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
 msgid "Percent"
 msgstr "Procentai"
 
-#: dashboard/keywords.php:8
+#: classes/WP_Piwik/Widget/BrowserDetails.php:66
+#: classes/WP_Piwik/Widget/Browsers.php:66
+#: classes/WP_Piwik/Widget/Screens.php:64
+#: classes/WP_Piwik/Widget/SystemDetails.php:62
+#: classes/WP_Piwik/Widget/Systems.php:62
+msgid "Others"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Browsers.php:18
+msgid "Browsers"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Chart.php:19
+#: classes/WP_Piwik/Widget/Overview.php:41 classes/WP_Piwik/Widget/Post.php:37
+#: classes/WP_Piwik/Widget/Visitors.php:17
+msgid "Visitors"
+msgstr "Lankytojai"
+
+#: classes/WP_Piwik/Widget/Chart.php:71
+msgid ""
+"The graph contains the values shown in the table below (visitors / unique / "
+"bounces). The red line show a linear trendline (unique)."
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Keywords.php:16
 msgid "Keywords"
 msgstr "Raktiniai žodžiai"
 
-#: dashboard/keywords.php:13
+#: classes/WP_Piwik/Widget/Noresult.php:16
+#: classes/WP_Piwik/Widget/Search.php:16
+msgid "Site Search"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
 msgid "Keyword"
 msgstr "Raktinis žodis"
 
-#: dashboard/overview.php:8
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+msgid "Requests"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Bounced"
+msgstr "Atsisakymai"
+
+#: classes/WP_Piwik/Widget/Overview.php:17 classes/WP_Piwik/Widget/Post.php:18
 msgid "Overview"
 msgstr "Aprašymas"
 
-#: dashboard/overview.php:16
-#: dashboard/visitors.php:21
-msgid "Visitors"
-msgstr "Lankytojai"
-
-#: dashboard/overview.php:17
+#: classes/WP_Piwik/Widget/Overview.php:42 classes/WP_Piwik/Widget/Post.php:38
 msgid "Unique visitors"
 msgstr "Unikalių lankytojų"
 
-#: dashboard/overview.php:18
+#: classes/WP_Piwik/Widget/Overview.php:43 classes/WP_Piwik/Widget/Post.php:39
 msgid "Page views"
 msgstr "Puslapio peržiūros"
 
-#: dashboard/overview.php:19
+#: classes/WP_Piwik/Widget/Overview.php:44 classes/WP_Piwik/Widget/Post.php:40
+msgid "Total time spent"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Overview.php:45 classes/WP_Piwik/Widget/Post.php:42
+msgid "Bounce count"
+msgstr "Atsisakymų skaičius"
+
+#: classes/WP_Piwik/Widget/Overview.php:48 classes/WP_Piwik/Widget/Post.php:41
+msgid "Time/visit"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Overview.php:48
 msgid "Max. page views in one visit"
 msgstr "Maksimalus puslapių peržiūrų skaičius per vieną apsilankymą"
 
-#: dashboard/overview.php:20
-msgid "Total time spent by visitors"
-msgstr "Iš viso praleista lankytojais laiko"
+#: classes/WP_Piwik/Widget/Overview.php:49 classes/WP_Piwik/Widget/Post.php:46
+msgid "Shortcut"
+msgstr ""
 
-#: dashboard/overview.php:21
-msgid "Bounce count"
-msgstr "Atsisakymų skaičius"
+#: classes/WP_Piwik/Widget/Pages.php:16
+msgid "Pages"
+msgstr ""
 
-#: dashboard/visitors.php:56
-msgid "Date"
-msgstr "Data"
+#: classes/WP_Piwik/Widget/Plugins.php:16
+msgid "Plugins"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Plugins.php:25
+msgid "Plugin"
+msgstr ""
 
-#: dashboard/visitors.php:56
+#: classes/WP_Piwik/Widget/Plugins.php:25
+#: classes/WP_Piwik/Widget/Visitors.php:57 classes/WP_Piwik/Widget.php:102
 msgid "Visits"
 msgstr "Apsilankymai"
 
-#: dashboard/visitors.php:56
-msgid "Bounced"
-msgstr "Atsisakymai"
+#: classes/WP_Piwik/Widget/Post.php:43
+msgid "Min. generation time"
+msgstr ""
 
-#: dashboard/websites.php:8
-msgid "Websites"
-msgstr "Svetainės"
+#: classes/WP_Piwik/Widget/Post.php:44
+msgid "Max. generation time"
+msgstr ""
 
-#: dashboard/websites.php:13
-msgid "Website"
-msgstr "Svetainė"
+#: classes/WP_Piwik/Widget/Referrers.php:16
+msgid "Referrers"
+msgstr ""
 
-#: wp-piwik.php:49
-#: wp-piwik.php:147
-msgid "Piwik Statistics"
-msgstr "Piwik statistika"
+#: classes/WP_Piwik/Widget/Screens.php:16
+msgid "Resolutions"
+msgstr ""
 
-#. #-#-#-#-#  plugin.pot (PACKAGE VERSION)  #-#-#-#-#
-#. Plugin Name of an extension
-#: wp-piwik.php:49
-msgid "WP-Piwik"
-msgstr "WP-Piwik"
+#: classes/WP_Piwik/Widget/Screens.php:37
+msgid "Resolution"
+msgstr "Rezoliucija"
 
-#: wp-piwik.php:53
-#: wp-piwik.php:185
-msgid "WP-Piwik Settings"
-msgstr "WP-Piwik nustatymai"
+#: classes/WP_Piwik/Widget/Seo.php:13
+msgid "SEO"
+msgstr ""
 
-#: wp-piwik.php:59
-msgid "Settings"
-msgstr "Nustatymai"
+#: classes/WP_Piwik/Widget/SystemDetails.php:14
+msgid "Operation System Details"
+msgstr ""
 
-#: wp-piwik.php:112
-msgid "Remote access to Piwik not possible. Enable allow_url_fopen or CURL."
-msgstr "Nuotolinė prieiga prie Piwik neįmanoma. Įjunkite allow_url_fopen arba Curl."
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+msgid "Operation System"
+msgstr ""
 
-#: wp-piwik.php:190
-msgid "Account settings"
-msgstr "Paskyros nustatymai"
+#: classes/WP_Piwik/Widget/Systems.php:14
+msgid "Operation Systems"
+msgstr ""
 
-#: wp-piwik.php:192
-msgid "Piwik URL"
-msgstr "Piwik URL"
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Date"
+msgstr "Data"
 
-#: wp-piwik.php:196
-msgid "Auth token"
-msgstr "Autentifikavimo požymis"
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Page Views"
+msgstr ""
 
-#: wp-piwik.php:200
-msgid "To enable Piwik statistics, please enter your Piwik base URL (like http://mydomain.com/piwik) and your personal authentification token. You can get the token on the API page inside your Piwik interface. It looks like &quot;1234a5cd6789e0a12345b678cd9012ef&quot;."
-msgstr "Kad įjungti Piwik statistiką, prašome įvesti savo Piwik bazinį URL (pvz. http://mydomain.com/piwik) ir savo asmens autentifikavimo raktą. Galite gauti raktą API puslapyje savo Piwik sąsajos viduje. Jis atrodo kaip &quot;1234a5cd6789e0a12345b678cd9012ef&quot;."
+#: classes/WP_Piwik/Widget.php:104
+msgid "Hits"
+msgstr ""
 
-#: wp-piwik.php:205
-#: wp-piwik.php:207
-msgid "An error occured"
-msgstr "Įvyko klaida"
+#: classes/WP_Piwik/Widget.php:106
+msgid "Actions"
+msgstr ""
 
-#: wp-piwik.php:205
-msgid "Please check URL and auth token. You need at least view access to one site."
-msgstr "Prašome patikrinti URL ir valdymo raktą. Jums reikia tai, kad turėti prieigą prie vienos svetainės."
+#: classes/WP_Piwik/Widget.php:162
+msgid "No data available."
+msgstr ""
+
+#: classes/WP_Piwik/Widget.php:293
+msgid "week"
+msgstr ""
 
-#: wp-piwik:php:215
-msgid "Choose site"
-msgstr "Pasirinkti svetainę"
+#: classes/WP_Piwik.php:193
+msgid "%s %s installed."
+msgstr ""
 
-#: wp-piwik.php:221
-msgid "If your template uses wp_footer(), WP-Piwik can automatically add the Piwik javascript code to your blog."
-msgstr "Jei jūsų šablonas naudoja wp_footer() WP-Piwik gali automatiškai įtraukti Piwik JavaScript kodą į jūsų dienoraštį."
+#: classes/WP_Piwik.php:193
+msgid "Next you should connect to Piwik"
+msgstr ""
 
-#: wp-piwik.php:226
-msgid "Add script to wp_footer()"
-msgstr "Pridėti scenarijų wp_footer()"
+#: classes/WP_Piwik.php:227
+msgid "%s updated to %s."
+msgstr ""
 
-msgid "Tracking filter"
-msgstr "Stebėjimo filtras"
+#: classes/WP_Piwik.php:227
+msgid "Please validate your configuration"
+msgstr ""
+
+#: classes/WP_Piwik.php:259 classes/WP_Piwik.php:481
+msgid "Settings"
+msgstr "Nustatymai"
+
+#: classes/WP_Piwik.php:262
+msgid "Important"
+msgstr ""
+
+#: classes/WP_Piwik.php:343 classes/WP_Piwik.php:365
+msgid "Piwik Statistics"
+msgstr "Piwik statistika"
+
+#: classes/WP_Piwik.php:453
+msgid "Configure WP-Piwik"
+msgstr ""
+
+#: classes/WP_Piwik.php:923
+msgid "An error occured"
+msgstr "Įvyko klaida"
+
+#: classes/WP_Piwik.php:1191
+msgid "Cheatin&#8217; uh?"
+msgstr ""
 
-msgid "Choose users by user role you do <strong>not</strong> want to track. Requires enabled &quot;Add script to wp_footer()&quot;-functionality."
-msgstr "Pasirinkite vartotojus pagal jų vaidmenis, kuriuos <strong>nenorite</strong> sekti. Reikalaujama, kad būtų &quot;įjungtas skripto wp_footer()&quot;-funkcionalumas."
+#: wp-piwik.php:60
+msgid ""
+"WP-Piwik requires at least PHP 5.3. You are using the deprecated version %s."
+" Please update PHP to use WP-Piwik."
+msgstr ""
 
-#: wp-piwik.php:229
-msgid "Save settings"
-msgstr "Išsaugoti nustatymus"
+#. Plugin Name of the plugin/theme
+msgid "WP-Piwik"
+msgstr "WP-Piwik"
 
-#. Plugin URI of an extension
-msgid "http://dev.braekling.de/wordpress-plugins/dev/wp-piwik/index.html"
-msgstr "http://dev.braekling.de/wordpress-plugins/dev/wp-piwik/index.html"
+#. Plugin URI of the plugin/theme
+msgid "http://wordpress.org/extend/plugins/wp-piwik/"
+msgstr ""
 
-#. Description of an extension
-msgid "Adds Piwik stats to your dashboard menu and Piwik code to your wordpress footer."
-msgstr "Prideda Piwik statistiką į savo įrankių juostos meniu ir Piwik kodą į savo WordPress poraštę."
+#. Description of the plugin/theme
+msgid ""
+"Adds Piwik stats to your dashboard menu and Piwik code to your wordpress "
+"header."
+msgstr ""
 
-#. Author of an extension
+#. Author of the plugin/theme
 msgid "Andr&eacute; Br&auml;kling"
 msgstr "Andr&eacute; Br&auml;kling"
 
-#. Author URI of an extension
+#. Author URI of the plugin/theme
 msgid "http://www.braekling.de"
 msgstr "http://www.braekling.de"
-
diff --git a/wp-content/plugins/wp-piwik/languages/wp-piwik-nb_NO.mo b/wp-content/plugins/wp-piwik/languages/wp-piwik-nb_NO.mo
index 43169f703d087c3a973ee151e0e8f302fbb5a3e3..8c2f0033340d4eb5cdb7380b74aceae198e64b74 100644
Binary files a/wp-content/plugins/wp-piwik/languages/wp-piwik-nb_NO.mo and b/wp-content/plugins/wp-piwik/languages/wp-piwik-nb_NO.mo differ
diff --git a/wp-content/plugins/wp-piwik/languages/wp-piwik-nb_NO.po b/wp-content/plugins/wp-piwik/languages/wp-piwik-nb_NO.po
index e74ac8643a0ae95c902c0cad5aed41e540b90f8f..b5fa83c1f2d1cd0772e4bb6e13d7ca62f6ef70fb 100644
--- a/wp-content/plugins/wp-piwik/languages/wp-piwik-nb_NO.po
+++ b/wp-content/plugins/wp-piwik/languages/wp-piwik-nb_NO.po
@@ -1,398 +1,1265 @@
+# Copyright (C) 2015 WP-Piwik
+# This file is distributed under the same license as the WP-Piwik package.
+# Translators:
+# Espen Bye, 2015
 msgid ""
 msgstr ""
-"Project-Id-Version: WP-Piwik v0.8.0\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: \n"
-"PO-Revision-Date: 2010-09-24 10:57+0000\n"
-"Last-Translator: admin <gormer+wpiwik@gmail.com>\n"
-"Language-Team: \n"
+"Project-Id-Version: WP-Piwik\n"
+"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-piwik\n"
+"POT-Creation-Date: 2015-07-22 10:25:29+00:00\n"
+"PO-Revision-Date: 2015-07-22 10:33+0000\n"
+"Last-Translator: André Bräkling\n"
+"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/wp-piwik/language/nb_NO/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Poedit-Language: Norwegian (Bokmål)\n"
-"X-Poedit-Country: NORWAY\n"
-"X-Poedit-SourceCharset: utf-8\n"
-"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
-"X-Poedit-Basepath: ../\n"
-"X-Poedit-Bookmarks: \n"
-"X-Poedit-SearchPath-0: .\n"
-"X-Textdomain-Support: yes"
-
-#: dashboard/browsers.php:12
-#: dashboard/browsers.php:33
-#@ wp-piwik
+"Language: nb_NO\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: classes/WP_Piwik/Admin/Settings.php:24
+msgid "Reload"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:27
+msgid "Changes saved."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:45
+msgid "Save Changes"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:46
+msgid "Thanks for using WP-Piwik!"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid "WP-Piwik %s is successfully connected to Piwik %s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid "You are running WordPress %s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid ""
+"You are running a WordPress %s blog network (WPMU). WP-Piwik will handle "
+"your sites as different websites."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:53
+msgid ""
+"WP-Piwik %s was not able to connect to Piwik using your configuration. Check"
+" the &raquo;Connect to Piwik&laquo; section below."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:56
+msgid ""
+"WP-Piwik %s has to be connected to Piwik first. Check the &raquo;Connect to "
+"Piwik&laquo; section below."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:60
+msgid "Connect to Piwik"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:65
+msgid "Show Statistics"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:69
+msgid "Enable Tracking"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:74
+msgid "Expert Settings"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:78 classes/WP_Piwik.php:923
+msgid "Support"
+msgstr "Støtte"
+
+#: classes/WP_Piwik/Admin/Settings.php:82
+msgid "Credits"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid ""
+"WP-Piwik is a WordPress plugin to show a selection of Piwik stats in your "
+"WordPress admin dashboard and to add and configure your Piwik tracking code."
+" To use this you will need your own Piwik instance. If you do not already "
+"have a Piwik setup, you have two simple options: use either"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "Self-hosted"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "or"
+msgstr "eller"
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "Cloud-hosted"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:98
+msgid ""
+"Neither cURL nor fopen are available. So WP-Piwik can not use the HTTP API "
+"and not connect to Piwik Pro."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:98
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
+msgid "More information"
+msgstr "Mer informasjon"
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid "You can choose between three connection methods:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:103
+msgid "Self-hosted (HTTP API, default)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"This is the default option for a self-hosted Piwik and should work for most "
+"configurations. WP-Piwik will connect to Piwik using http(s)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:104
+msgid "Self-hosted (PHP API)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"Choose this, if your self-hosted Piwik and WordPress are running on the same"
+" machine and you know the full server path to your Piwik instance."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:105
+msgid "Cloud-hosted (Piwik Pro)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"If you are using a cloud-hosted Piwik by Piwik Pro, you can simply use this "
+"option."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:101
+msgid "Piwik Mode"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:102
+msgid "Disabled (WP-Piwik will not connect to Piwik)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:108
+msgid "Piwik URL"
+msgstr "Piwik URL"
+
+#: classes/WP_Piwik/Admin/Settings.php:108
+msgid ""
+"Enter your Piwik URL. This is the same URL you use to access your Piwik "
+"instance, e.g. http://www.example.com/piwik/."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:109
+msgid "Piwik path"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:109
+msgid "Enter the file path to your Piwik instance, e.g. /var/www/piwik/."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:110
+msgid "Piwik user"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:110
+msgid ""
+"Enter your Piwik Pro username. It is also part of your URL: "
+"http://USERNAME.piwik.pro."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid "Auth token"
+msgstr "Auth token"
+
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid ""
+"Enter your Piwik auth token here. It is an alphanumerical code like "
+"0a1b2c34d56e78901fa2bc3d45678efa."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid "See %sWP-Piwik FAQ%s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:116
+msgid "Auto config"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:116
+msgid ""
+"Check this to automatically choose your blog from your Piwik sites by URL. "
+"If your blog is not added to Piwik yet, WP-Piwik will add a new site."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:127
+msgid "Determined site"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:132
+msgid "Select site"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:140
+msgid "Piwik default date"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:141
+#: classes/WP_Piwik/Admin/Settings.php:154
+msgid "Today"
+msgstr "I dag"
+
+#: classes/WP_Piwik/Admin/Settings.php:142
+#: classes/WP_Piwik/Admin/Settings.php:153
+msgid "Yesterday"
+msgstr "I går"
+
+#: classes/WP_Piwik/Admin/Settings.php:143
+msgid "Current month"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:144
+msgid "Last month"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:145
+msgid "Current week"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:146
+msgid "Last week"
+msgstr "Forrige uke"
+
+#: classes/WP_Piwik/Admin/Settings.php:147
+msgid "Default date shown on statistics page."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:149
+msgid "Show SEO data"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:149
+msgid "Display SEO ranking data on statistics page."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:149
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Slow!"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:151
+msgid "Dashboard overview"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:152
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:192
+#: classes/WP_Piwik/Admin/Settings.php:213
+#: classes/WP_Piwik/Admin/Settings.php:304
+msgid "Disabled"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:155
+msgid "Last 30 days"
+msgstr "Siste 30 dager"
+
+#: classes/WP_Piwik/Admin/Settings.php:156
+msgid "Enable WP-Piwik dashboard widget &quot;Overview&quot;."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:158
+msgid "Dashboard graph"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:158
+msgid "Enable WP-Piwik dashboard widget &quot;Graph&quot;."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Dashboard SEO"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Enable WP-Piwik dashboard widget &quot;SEO&quot;."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:162
+msgid "Show graph on WordPress Toolbar"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:162
+msgid "Display a last 30 days visitor graph on WordPress' toolbar."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:164
+msgid "Display stats to"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:171
+msgid "Choose user roles allowed to see the statistics page."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:173
+msgid "Show per post stats"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:173
+msgid "Show stats about single posts at the post edit admin page."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:175
+msgid "Piwik shortcut"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:175
+msgid "Display a shortcut to Piwik itself."
+msgstr "Vis en snarvei til Piwik."
+
+#: classes/WP_Piwik/Admin/Settings.php:177
+msgid "WP-Piwik display name"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:177
+msgid "Plugin name shown in WordPress."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:179
+msgid "Enable shortcodes"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:179
+msgid "Enable shortcodes in post or page content."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "You can choose between four tracking code modes:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"WP-Piwik will not add the tracking code. Use this, if you want to add the "
+"tracking code to your template files or you use another plugin to add the "
+"tracking code."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:193
+msgid "Default tracking"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "WP-Piwik will use Piwik's standard tracking code."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:194
+msgid "Use js/index.php"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"You can choose this tracking code, to deliver a minified proxy code and to "
+"avoid using the files called piwik.js or piwik.php."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "See %sreadme file%s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:195
+msgid "Use proxy script"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "Use this tracking code to not reveal the Piwik server URL."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:210
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid "See %sPiwik FAQ%s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:196
+msgid "Enter manually"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"Enter your own tracking code manually. You can choose one of the prior "
+"options, pre-configure your tracking code and switch to manually editing at "
+"last."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "Use the placeholder {ID} to add the Piwik site ID."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:191
+msgid "Add tracking code"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:199
+msgid "Tracking code"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:201
+msgid "JavaScript code position"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:202
+msgid "Footer"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:203
+msgid "Header"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:204
+msgid ""
+"Choose whether the JavaScript code is added to the footer or the header."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:206
+msgid "Noscript code"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+msgid "Add &lt;noscript&gt;"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+msgid "Adds the &lt;noscript&gt; code to your footer."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Disabled in proxy mode."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Add rec parameter to noscript code"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Enable tracking for visitors without JavaScript (not recommended)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:212
+msgid "Enable content tracking"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:214
+msgid "Track all content blocks"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:215
+msgid "Track only visible content blocks"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:216
+msgid ""
+"Content tracking allows you to track interaction with the content of a web "
+"page or application."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:216
+#: classes/WP_Piwik/Admin/Settings.php:218
+#: classes/WP_Piwik/Admin/Settings.php:222
+#: classes/WP_Piwik/Admin/Settings.php:224
+#: classes/WP_Piwik/Admin/Settings.php:226
+#: classes/WP_Piwik/Admin/Settings.php:247
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "See %sPiwik documentation%s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:218
+msgid "Track search"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:218
+msgid "Use Piwik's advanced Site Search Analytics feature."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid "Track 404"
+msgstr "Spor 404"
+
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid ""
+"WP-Piwik can automatically add a 404-category to track 404-page-visits."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:222
+msgid "Add annotation on new post"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:222
+msgid "Add a Piwik annotation on each new post."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:224
+msgid "Show custom variables box"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:224
+msgid " Show a &quot;custom variables&quot; edit box on post edit page."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:226
+msgid "Add new file types for download tracking"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:226
+msgid ""
+"Add file extensions for download tracking, divided by a vertical bar "
+"(&#124;)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:228
+msgid "Disable cookies"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:228
+msgid "Disable all tracking cookies for a visitor."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:230
+msgid "Limit cookie lifetime"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:230
+msgid ""
+"You can limit the cookie lifetime to avoid tracking your users over a longer"
+" period as necessary."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:232
+msgid "Visitor timeout (seconds)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:234
+msgid "Session timeout (seconds)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:236
+msgid "Referral timeout (seconds)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:238
+msgid "Track admin pages"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:238
+msgid ""
+"Enable to track users on admin pages (remember to configure the tracking "
+"filter appropriately)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:241
+msgid "Tracking filter"
+msgstr "Sporings filter"
+
+#: classes/WP_Piwik/Admin/Settings.php:245
+msgid "Choose users by user role you do <strong>not</strong> want to track."
+msgstr "Velg brukere etter bruker rolle som du <strong>ikke</strong> vil spore"
+
+#: classes/WP_Piwik/Admin/Settings.php:247
+msgid "Track subdomains in the same website"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:247
+msgid "Adds *.-prefix to cookie domain."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "Do not count subdomains as outlink"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "Adds *.-prefix to tracked domain."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:251
+msgid "Track RSS feeds"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:251
+msgid "Enable to track posts in feeds via tracking pixel."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:253
+msgid "Track RSS feed links as campaign"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:255
+msgid "RSS feed campaign"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:255
+msgid "Keyword: post name."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:257
+msgid "Enable heartbeat timer"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:257
+msgid ""
+"Enable a heartbeat timer to get more accurate visit lengths by sending "
+"periodical HTTP ping requests as long as the site is opened. Enter the time "
+"between the pings in seconds (Piwik default: 15) to enable or 0 to disable "
+"this feature. <strong>Note:</strong> This will cause a lot of additional "
+"HTTP requests on your site."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:262
+msgid ""
+"Usually, you do not need to change these settings. If you want to do so, you"
+" should know what you do or you got an expert's advice."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:264
+msgid "Enable cache"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:264
+msgid "Cache API calls, which not contain today's values, for a week."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:267
+msgid "HTTP connection via"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:268
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "cURL"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:269
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "fopen"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:270
+msgid ""
+"Choose whether WP-Piwik should use cURL or fopen to connect to Piwik in HTTP"
+" or Pro mode."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:272
+msgid "HTTP method"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:273
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "POST"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:274
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "GET"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:275
+msgid "Choose whether WP-Piwik should use POST or GET in HTTP or Pro mode."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:277
+msgid "Disable time limit"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:277
+msgid "Use set_time_limit(0) if stats page causes a time out."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:279
+msgid "Connection timeout"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:281
+msgid "Disable SSL peer verification"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:281
+msgid "not recommended"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:283
+msgid "User agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:284
+msgid "Use the PHP default user agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:284
+msgid "empty"
+msgstr "tom"
+
+#: classes/WP_Piwik/Admin/Settings.php:285
+msgid "Define a specific user agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:287
+msgid "Specific user agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:289
+msgid "Add data-cfasync=false"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:291
+msgid "CDN URL"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:293
+msgid "CDN URL (SSL)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:295
+msgid "Force Piwik to use a specific protocol"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:296
+msgid "Disabled (default)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:297
+msgid "http"
+msgstr "HTTP"
+
+#: classes/WP_Piwik/Admin/Settings.php:298
+msgid "https (SSL)"
+msgstr "HTTPS (SSL)"
+
+#: classes/WP_Piwik/Admin/Settings.php:299
+msgid ""
+"Choose if you want to explicitly force Piwik to use HTTP or HTTPS. Does not "
+"work with a CDN URL."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:301
+msgid "Update notice"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:302
+msgid "Show always if WP-Piwik is updated"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:303
+msgid "Show only if WP-Piwik is updated and settings were changed"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:305
+msgid "Choose if you want to get an update notice if WP-Piwik is updated."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:466
+msgid "Donate"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:468
+msgid "If you like WP-Piwik, you can support its development by a donation:"
+msgstr "Om du liker WP-Piwik, burde du støtte utviklingen med en donasjon:"
+
+#: classes/WP_Piwik/Admin/Settings.php:506
+msgid "My Amazon.de wishlist"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:509
+#: classes/WP_Piwik/Admin/Settings.php:556
+msgid "Please don't forget to vote the compatibility at the"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid "Thank you very much for your donation"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid "the Piwik team itself"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid ", and all people flattering this"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:541
+msgid ""
+"Graphs powered by <a href=\"http://www.jqplot.com/\">jqPlot</a> (License: "
+"GPL 2.0 and MIT) and <a "
+"href=\"http://omnipotent.net/jquery.sparkline/\">jQuery Sparklines</a> "
+"(License: New BSD License)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:542
+msgid "Metabox support inspired by"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:543
+msgid "Tabbed settings page suggested by the"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:544
+msgid "Thank you very much"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:544
+msgid "for your translation work"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:545
+msgid ""
+"Thank you very much, all users who send me mails containing criticism, "
+"commendation, feature requests and bug reports! You help me to make WP-Piwik"
+" much better."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:546
+msgid ""
+"Thank <strong>you</strong> for using my plugin. It is the best commendation "
+"if my piece of code is really used!"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:555
+msgid "The best place to get help:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:555
+msgid "WP-Piwik support forum"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:558
+msgid "Debugging"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:559
+msgid ""
+"Either allow_url_fopen has to be enabled <em>or</em> cURL has to be "
+"available:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:562
+msgid "cURL is"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:563
+#: classes/WP_Piwik/Admin/Settings.php:568
+msgid "not"
+msgstr "ikke"
+
+#: classes/WP_Piwik/Admin/Settings.php:564
+msgid "available"
+msgstr "tilgjengelig"
+
+#: classes/WP_Piwik/Admin/Settings.php:567
+msgid "allow_url_fopen is"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:569
+msgid "enabled"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "is used."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:573
+msgid "Determined Piwik base URL is"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:577
+msgid "Tools"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:579
+msgid "Run testscript"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:580
+msgid "Sitebrowser"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:581
+msgid "Clear cache"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:582
+msgid "Are you sure you want to clear all settings?"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:582
+msgid "Reset WP-Piwik"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:584
+msgid "Latest support threads on WordPress.org"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:635
+msgid "Settings cleared (except connection settings)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:651
+msgid "Cache cleared."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:17
+msgid "site"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:18
+msgid "sites"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:24
+msgid "No site configured yet."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:29
+msgid "Blog ID"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:30
+msgid "Title"
+msgstr "Tittel"
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:31
+msgid "URL"
+msgstr "URL"
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:32
+msgid "Site ID (Piwik)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:79
+msgid "Site not created yet."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Statistics.php:12
+msgid "Statistics"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Statistics.php:20
+msgid "Currently shown stats:"
+msgstr "Nåværende stats:"
+
+#: classes/WP_Piwik/Request/Php.php:27
+msgid "Could not resolve"
+msgstr ""
+
+#: classes/WP_Piwik/Request/Php.php:27
+msgid "realpath() returns false"
+msgstr ""
+
+#: classes/WP_Piwik/Request/Php.php:39
+msgid "Class Piwik\\FrontController does not exists."
+msgstr ""
+
+#: classes/WP_Piwik/Request/Php.php:42
+msgid "Class Piwik\\API\\Request does not exists."
+msgstr ""
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:10
+msgid "Piwik Custom Variables"
+msgstr ""
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
+msgid "Name"
+msgstr "Navn"
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
+msgid "Value"
+msgstr "Verdi"
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
+msgid "Set custom variables for a page view"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:18
+msgid "Browser Details"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:37
+#: classes/WP_Piwik/Widget/Browsers.php:37
+#: classes/WP_Piwik/Widget/Chart.php:43
+#: classes/WP_Piwik/Widget/Noresult.php:23
+#: classes/WP_Piwik/Widget/Overview.php:24
+#: classes/WP_Piwik/Widget/Plugins.php:23 classes/WP_Piwik/Widget/Post.php:25
+#: classes/WP_Piwik/Widget/Screens.php:35
+#: classes/WP_Piwik/Widget/Search.php:23 classes/WP_Piwik/Widget/Seo.php:20
+#: classes/WP_Piwik/Widget/SystemDetails.php:33
+#: classes/WP_Piwik/Widget/Systems.php:33
+#: classes/WP_Piwik/Widget/Visitors.php:35 classes/WP_Piwik/Widget.php:91
+msgid "Piwik error"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
 msgid "Browser"
 msgstr "Nettleser"
 
-#: dashboard/browsers.php:22
-#: dashboard/pages.php:43
-#: dashboard/screens.php:22
-#: dashboard/systems.php:22
-#@ wp-piwik
-msgid "Others"
-msgstr "Andre"
-
-#: dashboard/browsers.php:34
-#: dashboard/keywords.php:17
-#: dashboard/pages.php:22
-#: dashboard/screens.php:33
-#: dashboard/systems.php:35
-#: dashboard/visitors.php:53
-#: dashboard/websites.php:19
-#: wp-piwik.php:305
-#@ wp-piwik
-#@ default
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+#: classes/WP_Piwik/Widget/Screens.php:37
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+#: classes/WP_Piwik/Widget/Visitors.php:57 classes/WP_Piwik/Widget.php:100
 msgid "Unique"
 msgstr "Unike"
 
-#: dashboard/browsers.php:35
-#: dashboard/plugins.php:33
-#: dashboard/screens.php:34
-#: dashboard/systems.php:36
-#@ wp-piwik
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+#: classes/WP_Piwik/Widget/Plugins.php:25
+#: classes/WP_Piwik/Widget/Screens.php:37
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
 msgid "Percent"
 msgstr "Prosent"
 
-#: dashboard/keywords.php:12
-#@ wp-piwik
+#: classes/WP_Piwik/Widget/BrowserDetails.php:66
+#: classes/WP_Piwik/Widget/Browsers.php:66
+#: classes/WP_Piwik/Widget/Screens.php:64
+#: classes/WP_Piwik/Widget/SystemDetails.php:62
+#: classes/WP_Piwik/Widget/Systems.php:62
+msgid "Others"
+msgstr "Andre"
+
+#: classes/WP_Piwik/Widget/Browsers.php:18
+msgid "Browsers"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Chart.php:19
+#: classes/WP_Piwik/Widget/Overview.php:41 classes/WP_Piwik/Widget/Post.php:37
+#: classes/WP_Piwik/Widget/Visitors.php:17
+msgid "Visitors"
+msgstr "Besøkende"
+
+#: classes/WP_Piwik/Widget/Chart.php:71
+msgid ""
+"The graph contains the values shown in the table below (visitors / unique / "
+"bounces). The red line show a linear trendline (unique)."
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Keywords.php:16
 msgid "Keywords"
 msgstr "Stikkord"
 
-#: dashboard/keywords.php:17
-#@ wp-piwik
+#: classes/WP_Piwik/Widget/Noresult.php:16
+#: classes/WP_Piwik/Widget/Search.php:16
+msgid "Site Search"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
 msgid "Keyword"
 msgstr "Stikkord"
 
-#: dashboard/overview.php:12
-#@ wp-piwik
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+msgid "Requests"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Bounced"
+msgstr "Bounced"
+
+#: classes/WP_Piwik/Widget/Overview.php:17 classes/WP_Piwik/Widget/Post.php:18
 msgid "Overview"
 msgstr "Oversikt"
 
-#: dashboard/overview.php:42
-#: dashboard/visitors.php:24
-#@ wp-piwik
-msgid "Visitors"
-msgstr "Besøkende"
-
-#: dashboard/overview.php:43
-#@ wp-piwik
+#: classes/WP_Piwik/Widget/Overview.php:42 classes/WP_Piwik/Widget/Post.php:38
 msgid "Unique visitors"
 msgstr "Unike besøkende"
 
-#: dashboard/overview.php:44
-#@ wp-piwik
+#: classes/WP_Piwik/Widget/Overview.php:43 classes/WP_Piwik/Widget/Post.php:39
 msgid "Page views"
 msgstr "Sidevisninger"
 
-#: dashboard/overview.php:45
-#@ wp-piwik
-msgid "Max. page views in one visit"
-msgstr "Maks sidevisninger i et besøk"
-
-#: dashboard/overview.php:46
-#@ wp-piwik
-msgid "Total time spent by visitors"
-msgstr "Total tid bruk av besøkende"
+#: classes/WP_Piwik/Widget/Overview.php:44 classes/WP_Piwik/Widget/Post.php:40
+msgid "Total time spent"
+msgstr ""
 
-#: dashboard/overview.php:47
-#@ wp-piwik
+#: classes/WP_Piwik/Widget/Overview.php:45 classes/WP_Piwik/Widget/Post.php:42
 msgid "Bounce count"
 msgstr "Antall bounce"
 
-#: dashboard/overview.php:49
-#: wp-piwik.php:563
-#@ wp-piwik
+#: classes/WP_Piwik/Widget/Overview.php:48 classes/WP_Piwik/Widget/Post.php:41
+msgid "Time/visit"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Overview.php:48
+msgid "Max. page views in one visit"
+msgstr "Maks sidevisninger i et besøk"
+
+#: classes/WP_Piwik/Widget/Overview.php:49 classes/WP_Piwik/Widget/Post.php:46
 msgid "Shortcut"
 msgstr "Snarvei"
 
-#: dashboard/pages.php:13
-#@ wp-piwik
+#: classes/WP_Piwik/Widget/Pages.php:16
 msgid "Pages"
 msgstr "Sider"
 
-#: dashboard/pages.php:21
-#@ wp-piwik
-msgid "Page"
-msgstr "Side"
+#: classes/WP_Piwik/Widget/Plugins.php:16
+msgid "Plugins"
+msgstr "Innstikk"
+
+#: classes/WP_Piwik/Widget/Plugins.php:25
+msgid "Plugin"
+msgstr ""
 
-#: dashboard/pages.php:23
-#: dashboard/plugins.php:32
-#: dashboard/visitors.php:52
-#@ wp-piwik
+#: classes/WP_Piwik/Widget/Plugins.php:25
+#: classes/WP_Piwik/Widget/Visitors.php:57 classes/WP_Piwik/Widget.php:102
 msgid "Visits"
 msgstr "Besøk"
 
-#: dashboard/plugins.php:12
-#: dashboard/plugins.php:31
-#@ wp-piwik
-msgid "Plugins"
-msgstr "Innstikk"
+#: classes/WP_Piwik/Widget/Post.php:43
+msgid "Min. generation time"
+msgstr ""
 
-#: dashboard/screens.php:12
-#: dashboard/screens.php:32
-#@ wp-piwik
+#: classes/WP_Piwik/Widget/Post.php:44
+msgid "Max. generation time"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Referrers.php:16
+msgid "Referrers"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Screens.php:16
+msgid "Resolutions"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Screens.php:37
 msgid "Resolution"
 msgstr "Oppløsning"
 
-#: dashboard/systems.php:12
-#: dashboard/systems.php:34
-#@ wp-piwik
-msgid "Operating System"
-msgstr "Operativsystem"
+#: classes/WP_Piwik/Widget/Seo.php:13
+msgid "SEO"
+msgstr "SEO"
 
-#: dashboard/visitors.php:51
-#@ wp-piwik
-msgid "Date"
-msgstr "Dato"
+#: classes/WP_Piwik/Widget/SystemDetails.php:14
+msgid "Operation System Details"
+msgstr ""
 
-#: dashboard/visitors.php:54
-#@ wp-piwik
-msgid "Bounced"
-msgstr "Bounced"
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+msgid "Operation System"
+msgstr ""
 
-#: dashboard/visitors.php:67
-#@ wp-piwik
-msgid "Unique TOTAL"
-msgstr "Unike TOTAL"
-
-#: dashboard/visitors.php:67
-#@ wp-piwik
-msgid "Sum"
-msgstr "Sum"
-
-#: dashboard/visitors.php:67
-#@ wp-piwik
-msgid "Avg"
-msgstr "Snitt"
-
-#: dashboard/websites.php:12
-#@ wp-piwik
-msgid "Websites"
-msgstr "Nettsteder"
-
-#: dashboard/websites.php:18
-#@ wp-piwik
-msgid "Website"
-msgstr "Nettsted"
-
-#: wp-piwik.php:110
-#: wp-piwik.php:365
-#@ wp-piwik
-msgid "Piwik Statistics"
-msgstr "Piwik Statistikk"
+#: classes/WP_Piwik/Widget/Systems.php:14
+msgid "Operation Systems"
+msgstr ""
 
-#: wp-piwik.php:111
-#: wp-piwik.php:122
-#: wp-piwik.php:123
-#: wp-piwik.php:146
-#@ wp-piwik
-msgid "WP-Piwik"
-msgstr "WP-Piwik"
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Date"
+msgstr "Dato"
 
-#: wp-piwik.php:130
-#: wp-piwik.php:131
-#@ wpmu-piwik
-msgid "WPMU-Piwik"
-msgstr "WPMU-Piwik"
-
-#: wp-piwik.php:142
-#: wp-piwik.php:557
-#@ wp-piwik
-msgid "yesterday"
-msgstr "igår"
-
-#: wp-piwik.php:143
-#: wp-piwik.php:558
-#@ wp-piwik
-msgid "today"
-msgstr "idag"
-
-#: wp-piwik.php:144
-#: wp-piwik.php:559
-#@ wp-piwik
-msgid "last 30 days"
-msgstr "siste 30 dager"
-
-#: wp-piwik.php:179
-#@ wp-piwik
-msgid "Settings"
-msgstr "Alternativer"
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Page Views"
+msgstr ""
 
-#: wp-piwik.php:381
-#@ default
-msgid "Change"
-msgstr "Bytt"
+#: classes/WP_Piwik/Widget.php:104
+msgid "Hits"
+msgstr ""
 
-#: wp-piwik.php:382
-#@ default
-msgid "Currently shown stats:"
-msgstr "Nåværende stats:"
+#: classes/WP_Piwik/Widget.php:106
+msgid "Actions"
+msgstr ""
 
-#: wp-piwik.php:383
-#@ default
-msgid "Current shown stats: <strong>Overall</strong>"
-msgstr "Nåværende stats: <strong>Gjennomsnitt</strong>"
-
-#: wp-piwik.php:448
-#@ wp-piwik
-msgid "WP-Piwik Settings"
-msgstr "WP-Piwik alternativer"
-
-#: wp-piwik.php:455
-#: wp-piwik.php:617
-#@ wp-piwik
-msgid "Account settings"
-msgstr "Konto alternativer"
-
-#: wp-piwik.php:457
-#: wp-piwik.php:619
-#@ wp-piwik
-msgid "Piwik URL"
-msgstr "Piwik URL"
+#: classes/WP_Piwik/Widget.php:162
+msgid "No data available."
+msgstr ""
 
-#: wp-piwik.php:461
-#: wp-piwik.php:623
-#@ wp-piwik
-msgid "Auth token"
-msgstr "Auth token"
+#: classes/WP_Piwik/Widget.php:293
+msgid "week"
+msgstr "uke"
+
+#: classes/WP_Piwik.php:193
+msgid "%s %s installed."
+msgstr "%s %s installert."
 
-#: wp-piwik.php:471
-#: wp-piwik.php:632
-#@ wp-piwik
-msgid "To enable Piwik statistics, please enter your Piwik base URL (like http://mydomain.com/piwik) and your personal authentification token. You can get the token on the API page inside your Piwik interface. It looks like &quot;1234a5cd6789e0a12345b678cd9012ef&quot;."
-msgstr "For å nyttigjøre deg av Piwik statistikk, vennligst skriv in URL til Piwik installasjonen (for eksempel http://mydomain.com/piwik), samt din personlige autentiserings token. Du får dette tokene på API siden i din Piwik installasjon. Den ser slik ut &quot;1234a5cd6789e0a12345b678cd9012ef&quot;."
+#: classes/WP_Piwik.php:193
+msgid "Next you should connect to Piwik"
+msgstr ""
 
-#: wp-piwik.php:477
-#@ wp-piwik
-msgid "<strong>Important note:</strong> If you do not host this blog on your own, your site admin is able to get your auth token from the database. So he is able to access your statistics. You should never use an auth token with more than simple view access!"
-msgstr "<strong>Viktig informasjon:</strong> Om du ikke hoster denne bloggen alene vil admininstrator få tilgang til din autentiserings-token fra databasen. Han vil da ha adgang til statistikken din. Du bør aldri bruke en autentiserings-token som gir mer enn lese tilgang!"
+#: classes/WP_Piwik.php:227
+msgid "%s updated to %s."
+msgstr "%s oppdatert til %s."
 
-#: wp-piwik.php:485
-#: wp-piwik.php:489
-#@ wp-piwik
-msgid "An error occured"
-msgstr "En feil oppdaget"
+#: classes/WP_Piwik.php:227
+msgid "Please validate your configuration"
+msgstr ""
 
-#: wp-piwik.php:486
-#@ wp-piwik
-msgid "Please check URL and auth token. You need at least view access to one site."
-msgstr "Vennligst sjekk URL og autentiserings-token. Du trenger minimum lese tilgang for et nettsted."
-
-#: wp-piwik.php:492
-#@ wp-piwik
-msgid "Choose site"
-msgstr "Velg nettsted"
-
-#: wp-piwik.php:511
-#: wp-piwik.php:547
-#: wp-piwik.php:584
-#: wp-piwik.php:657
-#@ wp-piwik
-msgid "Save settings"
-msgstr "Lagre alternativer"
-
-#: wp-piwik.php:515
-#: wp-piwik.php:642
-#@ wp-piwik
-msgid "Tracking settings"
-msgstr "Sporing alternativer"
-
-#: wp-piwik.php:521
-#@ wp-piwik
-msgid "Add script"
-msgstr "Legg til script"
-
-#: wp-piwik.php:526
-#@ wp-piwik
-msgid "If your template uses wp_footer(), WP-Piwik can automatically add the Piwik javascript code to your blog."
-msgstr "Om ditt tema benytter wp_fotter() så vil WP-Piwik automatisk legge til Piwik javascript koden til bloggen din"
-
-#: wp-piwik.php:528
-#@ wp-piwik
-msgid "Track 404"
-msgstr "Spor 404"
+#: classes/WP_Piwik.php:259 classes/WP_Piwik.php:481
+msgid "Settings"
+msgstr "Alternativer"
 
-#: wp-piwik.php:533
-#@ wp-piwik
-msgid "If you add the Piwik javascript code by wp_footer(), WP-Piwik can automatically add a 404-category to track 404-page-visits."
-msgstr "Om du legger til Piwik javascript koden ved hjelp av wp_footer(), så kan WP-Piwik automatisk legge til en 404-kategory for å spire 404-sidevisninger."
+#: classes/WP_Piwik.php:262
+msgid "Important"
+msgstr ""
 
-#: wp-piwik.php:536
-#: wp-piwik.php:643
-#@ wp-piwik
-msgid "Tracking filter"
-msgstr "Sporings filter"
+#: classes/WP_Piwik.php:343 classes/WP_Piwik.php:365
+msgid "Piwik Statistics"
+msgstr "Piwik Statistikk"
 
-#: wp-piwik.php:545
-#@ wp-piwik
-msgid "Choose users by user role you do <strong>not</strong> want to track. Requires enabled &quot;Add script to wp_footer()&quot;-functionality."
-msgstr "Velg bruker-roller som du <strong>ikke</strong> vil spore. Forutsetter at du skrur på &quot;Legg til javascript i wp_footer()&quot;-funksjonalitet."
-
-#: wp-piwik.php:551
-#@ wp-piwik
-msgid "Statistic view settings"
-msgstr "Statistikk visningsalternativer"
-
-#: wp-piwik.php:554
-#@ wp-piwik
-msgid "Dashboard"
-msgstr "Dashboard"
-
-#: wp-piwik.php:556
-#@ wp-piwik
-msgid "No"
-msgstr "Nei"
-
-#: wp-piwik.php:557
-#: wp-piwik.php:558
-#: wp-piwik.php:559
-#@ wp-piwik
-msgid "Yes"
-msgstr "Ja"
-
-#: wp-piwik.php:562
-#@ wp-piwik
-msgid "Display a dashboard widget to your WordPress dashboard."
-msgstr "Vis en dashboard widget i din WordPress dashboard."
-
-#: wp-piwik.php:567
-#@ wp-piwik
-msgid "Display a shortcut to Piwik itself."
-msgstr "Vis en snarvei til Piwik."
+#: classes/WP_Piwik.php:453
+msgid "Configure WP-Piwik"
+msgstr ""
 
-#: wp-piwik.php:568
-#@ wp-piwik
-msgid "Display to"
-msgstr "Vis til"
+#: classes/WP_Piwik.php:923
+msgid "An error occured"
+msgstr "En feil oppdaget"
 
-#: wp-piwik.php:579
-#@ wp-piwik
-msgid "Choose minimum role required to see the statistics page. (This setting will <strong>not</strong> affect the dashboard widget.)"
-msgstr "Velg minimums rolle som kreves for å se statistikk siden. (Dette alternativet vil <strong>ikke</strong> påvirke dashboard widgeten)"
+#: classes/WP_Piwik.php:1191
+msgid "Cheatin&#8217; uh?"
+msgstr ""
 
-#: wp-piwik.php:612
-#@ wp-piwik
-msgid "WPMU-Piwik Settings"
-msgstr "WPMU-Piwik Alternativer"
+#: wp-piwik.php:60
+msgid ""
+"WP-Piwik requires at least PHP 5.3. You are using the deprecated version %s."
+" Please update PHP to use WP-Piwik."
+msgstr ""
 
-#: wp-piwik.php:636
-#@ wp-piwik
-msgid "<strong>Important note:</strong> You have to choose a token which provides administration access. WPMU-Piwik will create new Piwik sites for each blog if it is shown the first time and it is not added yet. All users can access their own statistics only, while site admins can access all statistics. To avoid conflicts, you should use a clean Piwik installation without other sites added. The provided themes should use wp_footer, because it adds the Piwik javascript code to each page."
-msgstr "<strong>Viktig informasjon:</strong> Autentiserings-tokenet du har valgt git admininstrativ tilgang. WPMU-Piwik vil opprette en ny Piwik nettsted for hver av dine blogger første gang den vises. Alle brukere har tilgang kun til deres egen statistikk, men Superadmin vil ha tilgang til statistikk for alle bloggene. For å unngå konflikter burde du bruke en ny og ren Piwik installasjon som ikke har noen nettsteder lagt til. Tema du benytter bør bruke wp_footer() fordi dette vil føre til at Piwik javascript koden legges to hver side."
+#. Plugin Name of the plugin/theme
+msgid "WP-Piwik"
+msgstr "WP-Piwik"
 
-#: wp-piwik.php:650
-#@ wp-piwik
-msgid "Choose users by user role you do <strong>not</strong> want to track."
-msgstr "Velg brukere etter bruker rolle som du <strong>ikke</strong> vil spore"
+#. Plugin URI of the plugin/theme
+msgid "http://wordpress.org/extend/plugins/wp-piwik/"
+msgstr ""
 
-#: wp-piwik.php:670
-#@ wp-piwik
-msgid "If you like WP-Piwik, you can support its development by a donation:"
-msgstr "Om du liker WP-Piwik, burde du støtte utviklingen med en donasjon:"
+#. Description of the plugin/theme
+msgid ""
+"Adds Piwik stats to your dashboard menu and Piwik code to your wordpress "
+"header."
+msgstr ""
 
-#: wp-piwik.php:686
-#@ wp-piwik
-msgid "My Amazon.de wishlist (German)"
-msgstr "Min Amazon.de ønskeliste (Tysk)"
+#. Author of the plugin/theme
+msgid "Andr&eacute; Br&auml;kling"
+msgstr ""
 
+#. Author URI of the plugin/theme
+msgid "http://www.braekling.de"
+msgstr ""
diff --git a/wp-content/plugins/wp-piwik/languages/wp-piwik-nl_NL.mo b/wp-content/plugins/wp-piwik/languages/wp-piwik-nl_NL.mo
index 592a343ab0f7bcb23a82d5bac0bc6b85b9e735f2..61a4a65a4b85637ce79e6ca1a6919ca479a1b679 100644
Binary files a/wp-content/plugins/wp-piwik/languages/wp-piwik-nl_NL.mo and b/wp-content/plugins/wp-piwik/languages/wp-piwik-nl_NL.mo differ
diff --git a/wp-content/plugins/wp-piwik/languages/wp-piwik-nl_NL.po b/wp-content/plugins/wp-piwik/languages/wp-piwik-nl_NL.po
index 8b65b217e7ce5e6fe7bbc35f16ebe96aae8d66df..6548682cb09f75da4cc01e76d028e27d79934477 100644
--- a/wp-content/plugins/wp-piwik/languages/wp-piwik-nl_NL.po
+++ b/wp-content/plugins/wp-piwik/languages/wp-piwik-nl_NL.po
@@ -1,262 +1,1267 @@
-# WP-Piwik 0.3.0 - German language file
-# Copyright (C) 2009 Andre Braekling
+# Copyright (C) 2015 WP-Piwik
 # This file is distributed under the same license as the WP-Piwik package.
-# Andre Braekling <webmaster@braekling.de>, 2009.
-#
+# Translators:
+# Andre Braekling <webmaster@braekling.de>, 2009
+# André Bräkling, 2015
+# Hannes Bossuyt <hannesbossuyt@gmail.com>, 2015
 msgid ""
 msgstr ""
-"Project-Id-Version: WP-Piwik 0.7.0\n"
-"Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-piwik\n"
-"POT-Creation-Date: 2009-06-09 19:05+0000\n"
-"PO-Revision-Date: 2010-04-18 11:16+0100\n"
-"Last-Translator: Rene - WordPressPluginGuide.com <info@wppg.me>\n"
-"Language-Team: wppg.me <info@wppg.me>\n"
+"Project-Id-Version: WP-Piwik\n"
+"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-piwik\n"
+"POT-Creation-Date: 2015-07-22 10:25:29+00:00\n"
+"PO-Revision-Date: 2015-07-22 10:33+0000\n"
+"Last-Translator: André Bräkling\n"
+"Language-Team: Dutch (Netherlands) (http://www.transifex.com/projects/p/wp-piwik/language/nl_NL/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Poedit-Language: Dutch\n"
-"X-Poedit-Country: NETHERLANDS\n"
-"X-Poedit-SourceCharset: utf-8\n"
-"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+"Language: nl_NL\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: dashboard/browsers.php:8
-#: dashboard/browsers.php:37
-msgid "Browser"
-msgstr "Browser"
+#: classes/WP_Piwik/Admin/Settings.php:24
+msgid "Reload"
+msgstr "Herlaad"
 
-msgid "Others"
-msgstr "Andere"
+#: classes/WP_Piwik/Admin/Settings.php:27
+msgid "Changes saved."
+msgstr "Wijzigingen bewaard."
 
-msgid "Resolution"
-msgstr "Resolutie"
+#: classes/WP_Piwik/Admin/Settings.php:45
+msgid "Save Changes"
+msgstr "Bewaar wijzigingen"
 
-msgid "Operating System"
-msgstr "Besturingssysteem"
+#: classes/WP_Piwik/Admin/Settings.php:46
+msgid "Thanks for using WP-Piwik!"
+msgstr "Bedankt om WP-Piwik te gebruiken!"
 
-msgid "Shortcut"
-msgstr "Snelkoppeling"
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid "WP-Piwik %s is successfully connected to Piwik %s."
+msgstr "WP-Piwik %s is succesvol geconnecteerd  met piwik %s."
+
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid "You are running WordPress %s."
+msgstr "Je gebruikt Wordpress %s."
+
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid ""
+"You are running a WordPress %s blog network (WPMU). WP-Piwik will handle "
+"your sites as different websites."
+msgstr "Je draait een Wordpress %s blog netwerk (WPMU). WP-Piwik zal je sites behandelen als verschillende websites."
+
+#: classes/WP_Piwik/Admin/Settings.php:53
+msgid ""
+"WP-Piwik %s was not able to connect to Piwik using your configuration. Check"
+" the &raquo;Connect to Piwik&laquo; section below."
+msgstr "WP-Piwik %s kon niet verbinden met Piwik via je opgegeven configuratie. Controleer de &raquo;Verbind met Piwik&laquo; sectie hieronder."
+
+#: classes/WP_Piwik/Admin/Settings.php:56
+msgid ""
+"WP-Piwik %s has to be connected to Piwik first. Check the &raquo;Connect to "
+"Piwik&laquo; section below."
+msgstr "WP-Piwik %s moet eerst verbonden zijn met Piwik. Controleer de &raquo;Verbind met Piwik&laquo; sectie hieronder."
+
+#: classes/WP_Piwik/Admin/Settings.php:60
+msgid "Connect to Piwik"
+msgstr "Verbind met Piwik"
+
+#: classes/WP_Piwik/Admin/Settings.php:65
+msgid "Show Statistics"
+msgstr "Toon statistieken."
+
+#: classes/WP_Piwik/Admin/Settings.php:69
+msgid "Enable Tracking"
+msgstr "Schakel tracking in."
+
+#: classes/WP_Piwik/Admin/Settings.php:74
+msgid "Expert Settings"
+msgstr "Expert instellingen"
+
+#: classes/WP_Piwik/Admin/Settings.php:78 classes/WP_Piwik.php:923
+msgid "Support"
+msgstr "Ondersteuning."
+
+#: classes/WP_Piwik/Admin/Settings.php:82
+msgid "Credits"
+msgstr "Dank aan"
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid ""
+"WP-Piwik is a WordPress plugin to show a selection of Piwik stats in your "
+"WordPress admin dashboard and to add and configure your Piwik tracking code."
+" To use this you will need your own Piwik instance. If you do not already "
+"have a Piwik setup, you have two simple options: use either"
+msgstr "WP-Piwik is een WordPress plugin om een gedeelte van je Piwik statistieken weer te geven in je WordPress beheer paneel en om je Piwik tracking code toe te voegen en te configureren. Om dit te kunnen gebruiken moet je je eigen Piwik instantie gebruik. Indien je Piwik nog niet hebt geïnstalleerd, heb je 2 eenvoudige mogelijkheden: gebruik ofwel "
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "Self-hosted"
+msgstr "Zelf gehoste"
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "or"
+msgstr "of"
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "Cloud-hosted"
+msgstr "Cloud gehoste"
+
+#: classes/WP_Piwik/Admin/Settings.php:98
+msgid ""
+"Neither cURL nor fopen are available. So WP-Piwik can not use the HTTP API "
+"and not connect to Piwik Pro."
+msgstr "Zowel cURL als fopen zijn niet beschikbaar. WP-Piwik kan dus geen gebruik maken van de HTTP API of verbinden met Piwik Pro."
+
+#: classes/WP_Piwik/Admin/Settings.php:98
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
+msgid "More information"
+msgstr "Meer informatie"
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid "You can choose between three connection methods:"
+msgstr "Je kunt kiezen tussen 3 connectie methoden:"
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:103
+msgid "Self-hosted (HTTP API, default)"
+msgstr "Lokale installatie (HTTP API, standaard)"
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"This is the default option for a self-hosted Piwik and should work for most "
+"configurations. WP-Piwik will connect to Piwik using http(s)."
+msgstr "Dit is de standaard optie voor een zelf gehoste Piwik installatie en zou moeten werken voor de meeste configuraties. WP-Piwik zal verbinden met Piwik via http(s)."
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:104
+msgid "Self-hosted (PHP API)"
+msgstr "Zelf gehost (PHP-API)"
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"Choose this, if your self-hosted Piwik and WordPress are running on the same"
+" machine and you know the full server path to your Piwik instance."
+msgstr "Kies dit, indien je zelf gehoste Piwik en Wordpress installatie op dezelfde machine draaien, en je het volledig pad weet naar je Piwik installatie."
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:105
+msgid "Cloud-hosted (Piwik Pro)"
+msgstr "Cloud hosted (Piwik Pro)"
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"If you are using a cloud-hosted Piwik by Piwik Pro, you can simply use this "
+"option."
+msgstr "Indien je een cloud gehoste installatie van Piwik gebruikt door middel van Piwik Pro, dan kun je simpelweg deze optie kiezen."
+
+#: classes/WP_Piwik/Admin/Settings.php:101
+msgid "Piwik Mode"
+msgstr "Piwik Mode"
+
+#: classes/WP_Piwik/Admin/Settings.php:102
+msgid "Disabled (WP-Piwik will not connect to Piwik)"
+msgstr "Uitgeschakeld (WP-Piwik zal niet verbinden met Piwik)"
+
+#: classes/WP_Piwik/Admin/Settings.php:108
+msgid "Piwik URL"
+msgstr "Piwik URL"
+
+#: classes/WP_Piwik/Admin/Settings.php:108
+msgid ""
+"Enter your Piwik URL. This is the same URL you use to access your Piwik "
+"instance, e.g. http://www.example.com/piwik/."
+msgstr "Geef je Piwik URL in. Dit is dezelfde URL die je gebruikt om Piwik te gebruiken, bijv. http://www.example.com/piwik/. "
+
+#: classes/WP_Piwik/Admin/Settings.php:109
+msgid "Piwik path"
+msgstr "Piwik pad"
+
+#: classes/WP_Piwik/Admin/Settings.php:109
+msgid "Enter the file path to your Piwik instance, e.g. /var/www/piwik/."
+msgstr "Geef het bestandspad opnaar je Piwik installatie, bijv. /var/www/piwik/."
+
+#: classes/WP_Piwik/Admin/Settings.php:110
+msgid "Piwik user"
+msgstr "Piwik gebruiker."
+
+#: classes/WP_Piwik/Admin/Settings.php:110
+msgid ""
+"Enter your Piwik Pro username. It is also part of your URL: "
+"http://USERNAME.piwik.pro."
+msgstr "Geef je Piwik pro gebruikersnaam in. Het is ook onderdeel van je URL: http://USERNAME.piwik.pro."
+
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid "Auth token"
+msgstr "Auth token"
+
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid ""
+"Enter your Piwik auth token here. It is an alphanumerical code like "
+"0a1b2c34d56e78901fa2bc3d45678efa."
+msgstr "Geef je Piwik auth token hier in. Het is een alfanumerieke code zoals 0a1b2c34d56e78901fa2bc3d45678efa."
+
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid "See %sWP-Piwik FAQ%s."
+msgstr "Zie %WP-Piwik FAQ%s."
+
+#: classes/WP_Piwik/Admin/Settings.php:116
+msgid "Auto config"
+msgstr "Auto config"
+
+#: classes/WP_Piwik/Admin/Settings.php:116
+msgid ""
+"Check this to automatically choose your blog from your Piwik sites by URL. "
+"If your blog is not added to Piwik yet, WP-Piwik will add a new site."
+msgstr "Vink dit aan om automatisch je blog te kiezen van je Piwik sites door gebruik te maken van de url. Indien je blog not niet is toegevoegd aan Piwik, zal WP-Piwik een nieuwe site aanmaken."
+
+#: classes/WP_Piwik/Admin/Settings.php:127
+msgid "Determined site"
+msgstr "Vastgestelde site"
+
+#: classes/WP_Piwik/Admin/Settings.php:132
+msgid "Select site"
+msgstr "Selecteer site"
+
+#: classes/WP_Piwik/Admin/Settings.php:140
+msgid "Piwik default date"
+msgstr "Piwik standaard datum"
+
+#: classes/WP_Piwik/Admin/Settings.php:141
+#: classes/WP_Piwik/Admin/Settings.php:154
+msgid "Today"
+msgstr "Vandaag"
+
+#: classes/WP_Piwik/Admin/Settings.php:142
+#: classes/WP_Piwik/Admin/Settings.php:153
+msgid "Yesterday"
+msgstr "Gisteren"
+
+#: classes/WP_Piwik/Admin/Settings.php:143
+msgid "Current month"
+msgstr "Huidige maand"
+
+#: classes/WP_Piwik/Admin/Settings.php:144
+msgid "Last month"
+msgstr "Vorige maand"
+
+#: classes/WP_Piwik/Admin/Settings.php:145
+msgid "Current week"
+msgstr "Huidige week"
+
+#: classes/WP_Piwik/Admin/Settings.php:146
+msgid "Last week"
+msgstr "Vorige week"
+
+#: classes/WP_Piwik/Admin/Settings.php:147
+msgid "Default date shown on statistics page."
+msgstr "Standaard datum die wordt weergegeven op statistieken pagina."
+
+#: classes/WP_Piwik/Admin/Settings.php:149
+msgid "Show SEO data"
+msgstr "Toon SEO data"
+
+#: classes/WP_Piwik/Admin/Settings.php:149
+msgid "Display SEO ranking data on statistics page."
+msgstr "Toon SEO rangschikking's data op statistieken pagina."
+
+#: classes/WP_Piwik/Admin/Settings.php:149
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Slow!"
+msgstr "Traag!"
+
+#: classes/WP_Piwik/Admin/Settings.php:151
+msgid "Dashboard overview"
+msgstr "Dashboard overzicht"
+
+#: classes/WP_Piwik/Admin/Settings.php:152
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:192
+#: classes/WP_Piwik/Admin/Settings.php:213
+#: classes/WP_Piwik/Admin/Settings.php:304
+msgid "Disabled"
+msgstr "Uitgeschakeld"
+
+#: classes/WP_Piwik/Admin/Settings.php:155
+msgid "Last 30 days"
+msgstr "Laatste 30 dagen"
+
+#: classes/WP_Piwik/Admin/Settings.php:156
+msgid "Enable WP-Piwik dashboard widget &quot;Overview&quot;."
+msgstr "Schakel de WP-Piwik dashboard widget &quot;Overzicht&quot; in."
+
+#: classes/WP_Piwik/Admin/Settings.php:158
+msgid "Dashboard graph"
+msgstr "Dashboard grafiek"
+
+#: classes/WP_Piwik/Admin/Settings.php:158
+msgid "Enable WP-Piwik dashboard widget &quot;Graph&quot;."
+msgstr "Schakel de WP-Piwik dashboard widget &quot;Grafiek&quot; in."
+
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Dashboard SEO"
+msgstr "Dashboard SEO"
+
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Enable WP-Piwik dashboard widget &quot;SEO&quot;."
+msgstr "Schakel WP-Piwik dashboard widget &quot;SEO&quot; in."
+
+#: classes/WP_Piwik/Admin/Settings.php:162
+msgid "Show graph on WordPress Toolbar"
+msgstr "Toon grafiek op de WordPress Toolbar"
+
+#: classes/WP_Piwik/Admin/Settings.php:162
+msgid "Display a last 30 days visitor graph on WordPress' toolbar."
+msgstr "Toon de bezoekersgrafiek voor de laatste 30 dagen op de WordPress toolbar."
+
+#: classes/WP_Piwik/Admin/Settings.php:164
+msgid "Display stats to"
+msgstr "Toon statistieken aan"
+
+#: classes/WP_Piwik/Admin/Settings.php:171
+msgid "Choose user roles allowed to see the statistics page."
+msgstr "Kies de gebruikersrollen die toegelaten zijn om de statistieken pagina te bekijken."
+
+#: classes/WP_Piwik/Admin/Settings.php:173
+msgid "Show per post stats"
+msgstr "Toon per post statistieken"
+
+#: classes/WP_Piwik/Admin/Settings.php:173
+msgid "Show stats about single posts at the post edit admin page."
+msgstr "Toon statistieken over enkele posts op de Post bewerking admin pagina."
+
+#: classes/WP_Piwik/Admin/Settings.php:175
+msgid "Piwik shortcut"
+msgstr "Piwik snelkoppeling"
+
+#: classes/WP_Piwik/Admin/Settings.php:175
+msgid "Display a shortcut to Piwik itself."
+msgstr "Toon een shortcut van Piwik naar zichzelf."
+
+#: classes/WP_Piwik/Admin/Settings.php:177
+msgid "WP-Piwik display name"
+msgstr "WP-Piwik weergegeven naam"
+
+#: classes/WP_Piwik/Admin/Settings.php:177
+msgid "Plugin name shown in WordPress."
+msgstr "Plugin naam die wordt weergegeven in WordPress."
+
+#: classes/WP_Piwik/Admin/Settings.php:179
+msgid "Enable shortcodes"
+msgstr "Schakel shortcodes in"
+
+#: classes/WP_Piwik/Admin/Settings.php:179
+msgid "Enable shortcodes in post or page content."
+msgstr "Schakel shortcodes in voor de inhoud van posts en reacties."
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "You can choose between four tracking code modes:"
+msgstr "Je kunt kiezen tussen vier tracking code modes:"
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"WP-Piwik will not add the tracking code. Use this, if you want to add the "
+"tracking code to your template files or you use another plugin to add the "
+"tracking code."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:193
+msgid "Default tracking"
+msgstr "Standaard tracking."
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "WP-Piwik will use Piwik's standard tracking code."
+msgstr "WP-Piwik gebruikt Piwik's standaard tracking code."
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:194
+msgid "Use js/index.php"
+msgstr "Gebruik js/index.php"
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"You can choose this tracking code, to deliver a minified proxy code and to "
+"avoid using the files called piwik.js or piwik.php."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "See %sreadme file%s."
+msgstr "Toon %sleesmij bestand%s."
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:195
+msgid "Use proxy script"
+msgstr "Gebruik proxy script"
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "Use this tracking code to not reveal the Piwik server URL."
+msgstr "Gebruik deze tracking code om de Piwik Server URL niet zichtbaar te maken."
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:210
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid "See %sPiwik FAQ%s."
+msgstr "Zie de %sPiwik FAQ%s."
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:196
+msgid "Enter manually"
+msgstr "Voer manueel in."
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"Enter your own tracking code manually. You can choose one of the prior "
+"options, pre-configure your tracking code and switch to manually editing at "
+"last."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "Use the placeholder {ID} to add the Piwik site ID."
+msgstr "Gebruik de vervangbare {ID} om de Piwik site ID toe te voegen."
+
+#: classes/WP_Piwik/Admin/Settings.php:191
+msgid "Add tracking code"
+msgstr "Voeg tracking code toe."
+
+#: classes/WP_Piwik/Admin/Settings.php:199
+msgid "Tracking code"
+msgstr "Tracking code"
+
+#: classes/WP_Piwik/Admin/Settings.php:201
+msgid "JavaScript code position"
+msgstr "Javascript code positie"
+
+#: classes/WP_Piwik/Admin/Settings.php:202
+msgid "Footer"
+msgstr "Voettekst"
+
+#: classes/WP_Piwik/Admin/Settings.php:203
+msgid "Header"
+msgstr "Koptekst"
+
+#: classes/WP_Piwik/Admin/Settings.php:204
+msgid ""
+"Choose whether the JavaScript code is added to the footer or the header."
+msgstr "Kies of de javascript code wordt toegevoegd aan de header of de footer."
+
+#: classes/WP_Piwik/Admin/Settings.php:206
+msgid "Noscript code"
+msgstr "Noscript code"
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+msgid "Add &lt;noscript&gt;"
+msgstr "Voeg &lt;noscript&gt; toe."
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+msgid "Adds the &lt;noscript&gt; code to your footer."
+msgstr "Voegt de &lt;noscript&gt; code toe aan je footer."
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Disabled in proxy mode."
+msgstr "Uitgeschakeld in proxy mode."
+
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Add rec parameter to noscript code"
+msgstr "Voeg de rec parameter toen aan je noscript code"
+
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Enable tracking for visitors without JavaScript (not recommended)."
+msgstr "Hou ook de bezoeken bij voor bezoekers zonder javascript (niet aanbevolen)."
+
+#: classes/WP_Piwik/Admin/Settings.php:212
+msgid "Enable content tracking"
+msgstr "Schakel content tracking in."
+
+#: classes/WP_Piwik/Admin/Settings.php:214
+msgid "Track all content blocks"
+msgstr "Hou alle content blokken bij"
+
+#: classes/WP_Piwik/Admin/Settings.php:215
+msgid "Track only visible content blocks"
+msgstr "Hou alleen zichtbare content blokken bij"
+
+#: classes/WP_Piwik/Admin/Settings.php:216
+msgid ""
+"Content tracking allows you to track interaction with the content of a web "
+"page or application."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:216
+#: classes/WP_Piwik/Admin/Settings.php:218
+#: classes/WP_Piwik/Admin/Settings.php:222
+#: classes/WP_Piwik/Admin/Settings.php:224
+#: classes/WP_Piwik/Admin/Settings.php:226
+#: classes/WP_Piwik/Admin/Settings.php:247
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "See %sPiwik documentation%s."
+msgstr "Zie %sPiwik documentatie%s."
+
+#: classes/WP_Piwik/Admin/Settings.php:218
+msgid "Track search"
+msgstr "Hou zoekopdrachten bij."
+
+#: classes/WP_Piwik/Admin/Settings.php:218
+msgid "Use Piwik's advanced Site Search Analytics feature."
+msgstr "Gebruik Piwik's geavanceerde 'Site zoeken' analyse functies"
+
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid "Track 404"
+msgstr "Hou 404 pagina's bij."
+
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid ""
+"WP-Piwik can automatically add a 404-category to track 404-page-visits."
+msgstr "WP-Piwik kan automatisch een 404-categorie toevoegen om 404 pagina bezoeken bij te houden."
+
+#: classes/WP_Piwik/Admin/Settings.php:222
+msgid "Add annotation on new post"
+msgstr "Voeg annotatie toe aan een nieuw bericht."
+
+#: classes/WP_Piwik/Admin/Settings.php:222
+msgid "Add a Piwik annotation on each new post."
+msgstr "Voeg een Piwik annotatie toe aan elke nieuwe post"
+
+#: classes/WP_Piwik/Admin/Settings.php:224
+msgid "Show custom variables box"
+msgstr "Toon eigen variabelen box"
+
+#: classes/WP_Piwik/Admin/Settings.php:224
+msgid " Show a &quot;custom variables&quot; edit box on post edit page."
+msgstr "Toon de  &quot;eigen variables&quot; bewerkings vak op de post bewerkings pagina."
+
+#: classes/WP_Piwik/Admin/Settings.php:226
+msgid "Add new file types for download tracking"
+msgstr "Voeg nieuw bestandstypes toe om als download bij te houden"
+
+#: classes/WP_Piwik/Admin/Settings.php:226
+msgid ""
+"Add file extensions for download tracking, divided by a vertical bar "
+"(&#124;)."
+msgstr "Voeg bestandsextensies toe om bij te houden als download, gescheiden door een verticale streep (&#124;)."
+
+#: classes/WP_Piwik/Admin/Settings.php:228
+msgid "Disable cookies"
+msgstr "Schakel cookies uit."
+
+#: classes/WP_Piwik/Admin/Settings.php:228
+msgid "Disable all tracking cookies for a visitor."
+msgstr "Schakel alle tracking cookies uit voor een bezoeker."
+
+#: classes/WP_Piwik/Admin/Settings.php:230
+msgid "Limit cookie lifetime"
+msgstr "Beperk cookie levensduur"
+
+#: classes/WP_Piwik/Admin/Settings.php:230
+msgid ""
+"You can limit the cookie lifetime to avoid tracking your users over a longer"
+" period as necessary."
+msgstr "Je kunt de levensduur van de cookie beperken, om te vermijden dat je je gebruikers over een langere periode volgt dan nodig."
+
+#: classes/WP_Piwik/Admin/Settings.php:232
+msgid "Visitor timeout (seconds)"
+msgstr "Bezoekers timeout (in seconden)"
+
+#: classes/WP_Piwik/Admin/Settings.php:234
+msgid "Session timeout (seconds)"
+msgstr "Sessie timeout (in seconden)"
+
+#: classes/WP_Piwik/Admin/Settings.php:236
+msgid "Referral timeout (seconds)"
+msgstr "Herkomst timeout (in seconden)"
+
+#: classes/WP_Piwik/Admin/Settings.php:238
+msgid "Track admin pages"
+msgstr "Hou admin pagina's bij"
+
+#: classes/WP_Piwik/Admin/Settings.php:238
+msgid ""
+"Enable to track users on admin pages (remember to configure the tracking "
+"filter appropriately)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:241
+msgid "Tracking filter"
+msgstr "Tracking filter"
+
+#: classes/WP_Piwik/Admin/Settings.php:245
+msgid "Choose users by user role you do <strong>not</strong> want to track."
+msgstr "Selecteer gebruikers op basis van het gebruikersniveau die je <strong>niet</ strong> wilt bijhouden."
+
+#: classes/WP_Piwik/Admin/Settings.php:247
+msgid "Track subdomains in the same website"
+msgstr "Hou subdomeinen bij onder dezelfde website"
+
+#: classes/WP_Piwik/Admin/Settings.php:247
+msgid "Adds *.-prefix to cookie domain."
+msgstr "Voeg *.-prefix toe aan cookie domein."
+
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "Do not count subdomains as outlink"
+msgstr "Tel subdomeinen niet als uitgaande link"
+
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "Adds *.-prefix to tracked domain."
+msgstr "Voegt *.-prefix toe aan bijgehouden domein."
+
+#: classes/WP_Piwik/Admin/Settings.php:251
+msgid "Track RSS feeds"
+msgstr "Hou RSS feeds bij"
+
+#: classes/WP_Piwik/Admin/Settings.php:251
+msgid "Enable to track posts in feeds via tracking pixel."
+msgstr "Hou posts bij in feeds via een tracking pixel."
+
+#: classes/WP_Piwik/Admin/Settings.php:253
+msgid "Track RSS feed links as campaign"
+msgstr "Hou RSS feed links bij als campagnes"
+
+#: classes/WP_Piwik/Admin/Settings.php:255
+msgid "RSS feed campaign"
+msgstr "RSS feed campagne"
+
+#: classes/WP_Piwik/Admin/Settings.php:255
+msgid "Keyword: post name."
+msgstr "Sleutelwoord: post naam."
+
+#: classes/WP_Piwik/Admin/Settings.php:257
+msgid "Enable heartbeat timer"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:257
+msgid ""
+"Enable a heartbeat timer to get more accurate visit lengths by sending "
+"periodical HTTP ping requests as long as the site is opened. Enter the time "
+"between the pings in seconds (Piwik default: 15) to enable or 0 to disable "
+"this feature. <strong>Note:</strong> This will cause a lot of additional "
+"HTTP requests on your site."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:262
+msgid ""
+"Usually, you do not need to change these settings. If you want to do so, you"
+" should know what you do or you got an expert's advice."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:264
+msgid "Enable cache"
+msgstr "Schakel cache in"
+
+#: classes/WP_Piwik/Admin/Settings.php:264
+msgid "Cache API calls, which not contain today's values, for a week."
+msgstr "Cache API oproepen, die de waarden van vandaag niet bevatten, een week bij."
+
+#: classes/WP_Piwik/Admin/Settings.php:267
+msgid "HTTP connection via"
+msgstr "HTTP connectie via:"
+
+#: classes/WP_Piwik/Admin/Settings.php:268
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "cURL"
+msgstr "cURL"
+
+#: classes/WP_Piwik/Admin/Settings.php:269
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "fopen"
+msgstr "fopen"
+
+#: classes/WP_Piwik/Admin/Settings.php:270
+msgid ""
+"Choose whether WP-Piwik should use cURL or fopen to connect to Piwik in HTTP"
+" or Pro mode."
+msgstr "Kies of WP-Piwik cURL of fopen moet gebruiken om te verbinden met Piwik in HTTP of Pro mode."
+
+#: classes/WP_Piwik/Admin/Settings.php:272
+msgid "HTTP method"
+msgstr "HTTP methode"
+
+#: classes/WP_Piwik/Admin/Settings.php:273
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "POST"
+msgstr "POST"
+
+#: classes/WP_Piwik/Admin/Settings.php:274
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "GET"
+msgstr "GET"
 
-msgid "Advertisement"
-msgstr "Advertentie"
+#: classes/WP_Piwik/Admin/Settings.php:275
+msgid "Choose whether WP-Piwik should use POST or GET in HTTP or Pro mode."
+msgstr "Kies of WP-Piwik HTTP GET of HTTP POST moet gebruiken in Pro mode."
 
-msgid "Looking for premium themes? Visit "
-msgstr "Zoek je premium thema's? Bezoek"
+#: classes/WP_Piwik/Admin/Settings.php:277
+msgid "Disable time limit"
+msgstr "Schakel tijdslimiet uit"
 
-msgid "Avg"
-msgstr "Gemiddeld"
+#: classes/WP_Piwik/Admin/Settings.php:277
+msgid "Use set_time_limit(0) if stats page causes a time out."
+msgstr "Gebruik set_time_limit(0) indien de statistieken pagina een timeout retourneert."
 
-msgid "Sum"
-msgstr "Som"
+#: classes/WP_Piwik/Admin/Settings.php:279
+msgid "Connection timeout"
+msgstr "Connectie tiimeout"
 
-msgid "Unique TOTAL"
-msgstr "Uniek TOTAAL"
+#: classes/WP_Piwik/Admin/Settings.php:281
+msgid "Disable SSL peer verification"
+msgstr "Schakel SSL peer verificatie uit"
 
-#: dashboard/browsers.php:37
-#: dashboard/keywords.php:13
-#: dashboard/visitors.php:56
-#: dashboard/websites.php:13
+#: classes/WP_Piwik/Admin/Settings.php:281
+msgid "not recommended"
+msgstr "Niet aanbevolen"
+
+#: classes/WP_Piwik/Admin/Settings.php:283
+msgid "User agent"
+msgstr "User agent"
+
+#: classes/WP_Piwik/Admin/Settings.php:284
+msgid "Use the PHP default user agent"
+msgstr "Gebruik PHP's standaard user agent"
+
+#: classes/WP_Piwik/Admin/Settings.php:284
+msgid "empty"
+msgstr "Leeg"
+
+#: classes/WP_Piwik/Admin/Settings.php:285
+msgid "Define a specific user agent"
+msgstr "Definieer een specifieke user agent"
+
+#: classes/WP_Piwik/Admin/Settings.php:287
+msgid "Specific user agent"
+msgstr "Specifieke user agent"
+
+#: classes/WP_Piwik/Admin/Settings.php:289
+msgid "Add data-cfasync=false"
+msgstr "Voeg data-cfasync=false toe"
+
+#: classes/WP_Piwik/Admin/Settings.php:291
+msgid "CDN URL"
+msgstr "CDN URL"
+
+#: classes/WP_Piwik/Admin/Settings.php:293
+msgid "CDN URL (SSL)"
+msgstr "CDN URL (SSL)"
+
+#: classes/WP_Piwik/Admin/Settings.php:295
+msgid "Force Piwik to use a specific protocol"
+msgstr "Vereis dat Piwik een specifiek protocol gebruikt."
+
+#: classes/WP_Piwik/Admin/Settings.php:296
+msgid "Disabled (default)"
+msgstr "Uitgeschakeld (standaard)"
+
+#: classes/WP_Piwik/Admin/Settings.php:297
+msgid "http"
+msgstr "http"
+
+#: classes/WP_Piwik/Admin/Settings.php:298
+msgid "https (SSL)"
+msgstr "https (SSL)"
+
+#: classes/WP_Piwik/Admin/Settings.php:299
+msgid ""
+"Choose if you want to explicitly force Piwik to use HTTP or HTTPS. Does not "
+"work with a CDN URL."
+msgstr "Kies dit indien je expliciet vereist dat Piwik HTTP of HTTPS gebruikt. Dit werkt niet met een CDN URL."
+
+#: classes/WP_Piwik/Admin/Settings.php:301
+msgid "Update notice"
+msgstr "Werk kennisgeving bij"
+
+#: classes/WP_Piwik/Admin/Settings.php:302
+msgid "Show always if WP-Piwik is updated"
+msgstr "Laat altijd zien wanneer WP-Piwik is bijgewerkt"
+
+#: classes/WP_Piwik/Admin/Settings.php:303
+msgid "Show only if WP-Piwik is updated and settings were changed"
+msgstr "Toon enkel indien WP-Piwik is geüpdatet en instellingen werden aangepast"
+
+#: classes/WP_Piwik/Admin/Settings.php:305
+msgid "Choose if you want to get an update notice if WP-Piwik is updated."
+msgstr "kies dit indien je een update notificatie wilt ontvangen indien WP-Piwik is geüpdatet."
+
+#: classes/WP_Piwik/Admin/Settings.php:466
+msgid "Donate"
+msgstr "Doneer"
+
+#: classes/WP_Piwik/Admin/Settings.php:468
+msgid "If you like WP-Piwik, you can support its development by a donation:"
+msgstr "Als je WP-Piwik geveldig vindt, dan kan je de ontwikkeling ondersteunen via een donatie."
+
+#: classes/WP_Piwik/Admin/Settings.php:506
+msgid "My Amazon.de wishlist"
+msgstr "Mijn Amazon.de wenslijst"
+
+#: classes/WP_Piwik/Admin/Settings.php:509
+#: classes/WP_Piwik/Admin/Settings.php:556
+msgid "Please don't forget to vote the compatibility at the"
+msgstr "Vergeet niet de comptabiliteit te beoordelen aan de"
+
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid "Thank you very much for your donation"
+msgstr "Heel erg bedankt voor je donatie"
+
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid "the Piwik team itself"
+msgstr "Het piwik team zelf"
+
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid ", and all people flattering this"
+msgstr ", en alle mensen die dit flatteren"
+
+#: classes/WP_Piwik/Admin/Settings.php:541
+msgid ""
+"Graphs powered by <a href=\"http://www.jqplot.com/\">jqPlot</a> (License: "
+"GPL 2.0 and MIT) and <a "
+"href=\"http://omnipotent.net/jquery.sparkline/\">jQuery Sparklines</a> "
+"(License: New BSD License)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:542
+msgid "Metabox support inspired by"
+msgstr "Metabox ondersteuning geïnspireerd door"
+
+#: classes/WP_Piwik/Admin/Settings.php:543
+msgid "Tabbed settings page suggested by the"
+msgstr "Tab instellingen pagina gesuggereerd door de"
+
+#: classes/WP_Piwik/Admin/Settings.php:544
+msgid "Thank you very much"
+msgstr "Heel erg bedankt"
+
+#: classes/WP_Piwik/Admin/Settings.php:544
+msgid "for your translation work"
+msgstr "Voor al het werk in de vertalingen"
+
+#: classes/WP_Piwik/Admin/Settings.php:545
+msgid ""
+"Thank you very much, all users who send me mails containing criticism, "
+"commendation, feature requests and bug reports! You help me to make WP-Piwik"
+" much better."
+msgstr "Heel erg bedankt aan alle gebruikers die mij mails sturen met kritiek, commentaar, verzoeken voor nieuwe functies en bug rapporten! Je helpt mee om WP-Piwik zoveel beter te maken."
+
+#: classes/WP_Piwik/Admin/Settings.php:546
+msgid ""
+"Thank <strong>you</strong> for using my plugin. It is the best commendation "
+"if my piece of code is really used!"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:555
+msgid "The best place to get help:"
+msgstr "De beste plaats om hulp te krijgen:"
+
+#: classes/WP_Piwik/Admin/Settings.php:555
+msgid "WP-Piwik support forum"
+msgstr "WP-Piwik support forum"
+
+#: classes/WP_Piwik/Admin/Settings.php:558
+msgid "Debugging"
+msgstr "Debugging"
+
+#: classes/WP_Piwik/Admin/Settings.php:559
+msgid ""
+"Either allow_url_fopen has to be enabled <em>or</em> cURL has to be "
+"available:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:562
+msgid "cURL is"
+msgstr "cURL is"
+
+#: classes/WP_Piwik/Admin/Settings.php:563
+#: classes/WP_Piwik/Admin/Settings.php:568
+msgid "not"
+msgstr "niet"
+
+#: classes/WP_Piwik/Admin/Settings.php:564
+msgid "available"
+msgstr "beschikbaar"
+
+#: classes/WP_Piwik/Admin/Settings.php:567
+msgid "allow_url_fopen is"
+msgstr "allow_url_fopen is"
+
+#: classes/WP_Piwik/Admin/Settings.php:569
+msgid "enabled"
+msgstr "ingeschakeld"
+
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "is used."
+msgstr "is gebruikt"
+
+#: classes/WP_Piwik/Admin/Settings.php:573
+msgid "Determined Piwik base URL is"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:577
+msgid "Tools"
+msgstr "Gereedschap"
+
+#: classes/WP_Piwik/Admin/Settings.php:579
+msgid "Run testscript"
+msgstr "Voer testscript uit"
+
+#: classes/WP_Piwik/Admin/Settings.php:580
+msgid "Sitebrowser"
+msgstr "Site verkenner"
+
+#: classes/WP_Piwik/Admin/Settings.php:581
+msgid "Clear cache"
+msgstr "Cache leegmaken"
+
+#: classes/WP_Piwik/Admin/Settings.php:582
+msgid "Are you sure you want to clear all settings?"
+msgstr "Weet je zeker dat je alle instellingen wilt verwijderen?"
+
+#: classes/WP_Piwik/Admin/Settings.php:582
+msgid "Reset WP-Piwik"
+msgstr "WP-Piwik resetten"
+
+#: classes/WP_Piwik/Admin/Settings.php:584
+msgid "Latest support threads on WordPress.org"
+msgstr "Laatste forumtopics op WordPress.org"
+
+#: classes/WP_Piwik/Admin/Settings.php:635
+msgid "Settings cleared (except connection settings)."
+msgstr "Instellingen opgeschoond (uitgezonderd connectie instellingen)."
+
+#: classes/WP_Piwik/Admin/Settings.php:651
+msgid "Cache cleared."
+msgstr "Cache leeggemaakt"
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:17
+msgid "site"
+msgstr "site"
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:18
+msgid "sites"
+msgstr "sites"
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:24
+msgid "No site configured yet."
+msgstr "Nog geen site geconfigureerd"
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:29
+msgid "Blog ID"
+msgstr "Blog ID"
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:30
+msgid "Title"
+msgstr "Titel"
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:31
+msgid "URL"
+msgstr "URL"
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:32
+msgid "Site ID (Piwik)"
+msgstr "Site ID (Piwik)"
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:79
+msgid "Site not created yet."
+msgstr "Site is nog niet aangemaakt"
+
+#: classes/WP_Piwik/Admin/Statistics.php:12
+msgid "Statistics"
+msgstr "Statistieken"
+
+#: classes/WP_Piwik/Admin/Statistics.php:20
+msgid "Currently shown stats:"
+msgstr "Momenteel weergegeven statistieken:"
+
+#: classes/WP_Piwik/Request/Php.php:27
+msgid "Could not resolve"
+msgstr "Kon niet terugvinden"
+
+#: classes/WP_Piwik/Request/Php.php:27
+msgid "realpath() returns false"
+msgstr "realpath() retourneert false"
+
+#: classes/WP_Piwik/Request/Php.php:39
+msgid "Class Piwik\\FrontController does not exists."
+msgstr "De klasse Piwik\\FrontController bestaat niet."
+
+#: classes/WP_Piwik/Request/Php.php:42
+msgid "Class Piwik\\API\\Request does not exists."
+msgstr "De klasse Piwik\\API\\Request bestaat niet."
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:10
+msgid "Piwik Custom Variables"
+msgstr "Piwik Custom variabelen"
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
+msgid "Name"
+msgstr "Naam"
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
+msgid "Value"
+msgstr "Waarde"
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
+msgid "Set custom variables for a page view"
+msgstr "Zet eigen variabelen voor een pagina weergave"
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:18
+msgid "Browser Details"
+msgstr "Browser Details"
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:37
+#: classes/WP_Piwik/Widget/Browsers.php:37
+#: classes/WP_Piwik/Widget/Chart.php:43
+#: classes/WP_Piwik/Widget/Noresult.php:23
+#: classes/WP_Piwik/Widget/Overview.php:24
+#: classes/WP_Piwik/Widget/Plugins.php:23 classes/WP_Piwik/Widget/Post.php:25
+#: classes/WP_Piwik/Widget/Screens.php:35
+#: classes/WP_Piwik/Widget/Search.php:23 classes/WP_Piwik/Widget/Seo.php:20
+#: classes/WP_Piwik/Widget/SystemDetails.php:33
+#: classes/WP_Piwik/Widget/Systems.php:33
+#: classes/WP_Piwik/Widget/Visitors.php:35 classes/WP_Piwik/Widget.php:91
+msgid "Piwik error"
+msgstr "Piwik Fout"
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+msgid "Browser"
+msgstr "Browser"
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+#: classes/WP_Piwik/Widget/Screens.php:37
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+#: classes/WP_Piwik/Widget/Visitors.php:57 classes/WP_Piwik/Widget.php:100
 msgid "Unique"
 msgstr "Uniek"
 
-#: dashboard/browsers.php:37
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+#: classes/WP_Piwik/Widget/Plugins.php:25
+#: classes/WP_Piwik/Widget/Screens.php:37
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
 msgid "Percent"
 msgstr "Procent"
 
-#: dashboard/keywords.php:8
+#: classes/WP_Piwik/Widget/BrowserDetails.php:66
+#: classes/WP_Piwik/Widget/Browsers.php:66
+#: classes/WP_Piwik/Widget/Screens.php:64
+#: classes/WP_Piwik/Widget/SystemDetails.php:62
+#: classes/WP_Piwik/Widget/Systems.php:62
+msgid "Others"
+msgstr "Andere"
+
+#: classes/WP_Piwik/Widget/Browsers.php:18
+msgid "Browsers"
+msgstr "Browsers"
+
+#: classes/WP_Piwik/Widget/Chart.php:19
+#: classes/WP_Piwik/Widget/Overview.php:41 classes/WP_Piwik/Widget/Post.php:37
+#: classes/WP_Piwik/Widget/Visitors.php:17
+msgid "Visitors"
+msgstr "Bezoekers"
+
+#: classes/WP_Piwik/Widget/Chart.php:71
+msgid ""
+"The graph contains the values shown in the table below (visitors / unique / "
+"bounces). The red line show a linear trendline (unique)."
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Keywords.php:16
 msgid "Keywords"
 msgstr "Keywords"
 
-#: dashboard/keywords.php:13
+#: classes/WP_Piwik/Widget/Noresult.php:16
+#: classes/WP_Piwik/Widget/Search.php:16
+msgid "Site Search"
+msgstr "Site zoekopdrachten"
+
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
 msgid "Keyword"
 msgstr "Keyword"
 
-#: dashboard/overview.php:8
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+msgid "Requests"
+msgstr "Verzoeken"
+
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Bounced"
+msgstr "Bounced"
+
+#: classes/WP_Piwik/Widget/Overview.php:17 classes/WP_Piwik/Widget/Post.php:18
 msgid "Overview"
 msgstr "Overzicht"
 
-#: dashboard/overview.php:16
-#: dashboard/visitors.php:21
-msgid "Visitors"
-msgstr "Bezoekers"
-
-#: dashboard/overview.php:17
+#: classes/WP_Piwik/Widget/Overview.php:42 classes/WP_Piwik/Widget/Post.php:38
 msgid "Unique visitors"
 msgstr "Unieke bezoekers"
 
-#: dashboard/overview.php:18
+#: classes/WP_Piwik/Widget/Overview.php:43 classes/WP_Piwik/Widget/Post.php:39
 msgid "Page views"
 msgstr "Pageviews"
 
-#: dashboard/overview.php:19
-msgid "Max. page views in one visit"
-msgstr "Max. Pageviews/Bezoek"
-
-#: dashboard/overview.php:20
-msgid "Total time spent by visitors"
-msgstr "Totale tijd besteed door bezoekers"
+#: classes/WP_Piwik/Widget/Overview.php:44 classes/WP_Piwik/Widget/Post.php:40
+msgid "Total time spent"
+msgstr "Totale tijd gespendeerd"
 
-#: dashboard/overview.php:21
+#: classes/WP_Piwik/Widget/Overview.php:45 classes/WP_Piwik/Widget/Post.php:42
 msgid "Bounce count"
 msgstr "Aantal weigeringen"
 
-#: dashboard/visitors.php:56
-msgid "Date"
-msgstr "Datum"
+#: classes/WP_Piwik/Widget/Overview.php:48 classes/WP_Piwik/Widget/Post.php:41
+msgid "Time/visit"
+msgstr "Tijd/bezoek"
 
-#: dashboard/visitors.php:56
-msgid "Visits"
-msgstr "Bezoeken"
+#: classes/WP_Piwik/Widget/Overview.php:48
+msgid "Max. page views in one visit"
+msgstr "Max. Pageviews/Bezoek"
 
-#: dashboard/visitors.php:56
-msgid "Bounced"
-msgstr "Bounced"
+#: classes/WP_Piwik/Widget/Overview.php:49 classes/WP_Piwik/Widget/Post.php:46
+msgid "Shortcut"
+msgstr "Snelkoppeling"
 
-#: dashboard/websites.php:8
-msgid "Websites"
-msgstr "Websites"
+#: classes/WP_Piwik/Widget/Pages.php:16
+msgid "Pages"
+msgstr "Pagina's"
 
-#: dashboard/websites.php:13
-msgid "Website"
-msgstr "Website"
+#: classes/WP_Piwik/Widget/Plugins.php:16
+msgid "Plugins"
+msgstr "Plugins"
 
-#: wp-piwik.php:49
-#: wp-piwik.php:147
-msgid "Piwik Statistics"
-msgstr "Piwik Statistieken"
+#: classes/WP_Piwik/Widget/Plugins.php:25
+msgid "Plugin"
+msgstr "Plugin"
 
-#. #-#-#-#-#  plugin.pot (PACKAGE VERSION)  #-#-#-#-#
-#. Plugin Name of an extension
-#: wp-piwik.php:49
-msgid "WP-Piwik"
-msgstr "WP-Piwik"
+#: classes/WP_Piwik/Widget/Plugins.php:25
+#: classes/WP_Piwik/Widget/Visitors.php:57 classes/WP_Piwik/Widget.php:102
+msgid "Visits"
+msgstr "Bezoeken"
 
-#: wp-piwik.php:53
-#: wp-piwik.php:185
-msgid "WP-Piwik Settings"
-msgstr "WP-Piwik Instellingen"
+#: classes/WP_Piwik/Widget/Post.php:43
+msgid "Min. generation time"
+msgstr "Min. genereer tijd"
 
-#: wp-piwik.php:59
-msgid "Settings"
-msgstr "Instellingen"
+#: classes/WP_Piwik/Widget/Post.php:44
+msgid "Max. generation time"
+msgstr "Max. genereer tijd"
 
-#: wp-piwik.php:112
-msgid "Remote access to Piwik not possible. Enable allow_url_fopen or CURL."
-msgstr "Externe toegang tot Piwik niet mogelijk. Activeer allow_url_fopen of CURL."
+#: classes/WP_Piwik/Widget/Referrers.php:16
+msgid "Referrers"
+msgstr "Herkomst"
 
-#: wp-piwik.php:190
-msgid "Account settings"
-msgstr "Account instellingen"
+#: classes/WP_Piwik/Widget/Screens.php:16
+msgid "Resolutions"
+msgstr "Resoluties"
 
-#: wp-piwik.php:192
-msgid "Piwik URL"
-msgstr "Piwik URL"
+#: classes/WP_Piwik/Widget/Screens.php:37
+msgid "Resolution"
+msgstr "Resolutie"
 
-#: wp-piwik.php:196
-msgid "Auth token"
-msgstr "Auth token"
+#: classes/WP_Piwik/Widget/Seo.php:13
+msgid "SEO"
+msgstr "SEO"
 
-#: wp-piwik.php:200
-msgid "To enable Piwik statistics, please enter your Piwik base URL (like http://mydomain.com/piwik) and your personal authentification token. You can get the token on the API page inside your Piwik interface. It looks like &quot;1234a5cd6789e0a12345b678cd9012ef&quot;."
-msgstr "Om Piwik statistieken te activeren voer je je Piwik basis URL in (zoals http://mydomain.com/piwik) en uw persoonlijk authenticatie token. U kunt dit token verkrijgen op de API pagina binnen uw Piwik interface. Het lijkt op  \"1234a5cd6789e0a12345b678cd9012ef\"."
+#: classes/WP_Piwik/Widget/SystemDetails.php:14
+msgid "Operation System Details"
+msgstr "Besturingssysteem Details"
 
-#: wp-piwik.php:205
-#: wp-piwik.php:207
-msgid "An error occured"
-msgstr "Een fout is opgetreden"
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+msgid "Operation System"
+msgstr "Besturingssysteem"
 
-#: wp-piwik.php:205
-msgid "Please check URL and auth token. You need at least view access to one site."
-msgstr "Gelieve de URL en auth token te controleren. Je hebt tenminste leesrechten nodig voor een site."
+#: classes/WP_Piwik/Widget/Systems.php:14
+msgid "Operation Systems"
+msgstr "Besturingssystemen"
 
-#: wp-piwik:php:215
-msgid "Choose site"
-msgstr "Kies website"
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Date"
+msgstr "Datum"
 
-#: wp-piwik.php:221
-msgid "If your template uses wp_footer(), WP-Piwik can automatically add the Piwik javascript code to your blog."
-msgstr "Als je template wp_footer() gebruikt kan WP-Piwik automatisch de Piwik javascript code toevoegen aan je blog."
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Page Views"
+msgstr "Pagina weergaves"
 
-#: wp-piwik.php:226
-msgid "Add script to wp_footer()"
-msgstr "Voeg script toe aan wp_footer()"
+#: classes/WP_Piwik/Widget.php:104
+msgid "Hits"
+msgstr "Hits"
 
-msgid "Tracking filter"
-msgstr "Tracking filter"
+#: classes/WP_Piwik/Widget.php:106
+msgid "Actions"
+msgstr "Acties"
 
-msgid "Choose users by user role you do <strong>not</strong> want to track. Requires enabled &quot;Add script to wp_footer()&quot;-functionality."
-msgstr "Selecteer gebruikers op basis van het gebruikersniveau die je <strong>niet</ strong> wilt bijhouden. Hiervoor dient de \"Toevoegen script wp_footer()\" functionaliteit ingeschakeld te zijn."
+#: classes/WP_Piwik/Widget.php:162
+msgid "No data available."
+msgstr "Geen data beschikbaar"
 
-msgid "Choose users by user role you do <strong>not</strong> want to track."
-msgstr "Selecteer gebruikers op basis van het gebruikersniveau die je <strong>niet</ strong> wilt bijhouden."
+#: classes/WP_Piwik/Widget.php:293
+msgid "week"
+msgstr "week"
 
-msgid "Display statistics to"
-msgstr "Laat statistieken zien aan"
+#: classes/WP_Piwik.php:193
+msgid "%s %s installed."
+msgstr "%s %s geïnstalleerd"
 
-msgid "or above"
-msgstr "of erboven"
+#: classes/WP_Piwik.php:193
+msgid "Next you should connect to Piwik"
+msgstr "Vervolgens zou je moeten verbinden met Piwik"
 
-msgid "Minimum user level required to display statistics page."
-msgstr "Minimaal benodigd gebruikersniveau om de statistieken pagina te laten zien."
+#: classes/WP_Piwik.php:227
+msgid "%s updated to %s."
+msgstr "%s geüpdatet naar%s."
 
-#: wp-piwik.php:229
-msgid "Save settings"
-msgstr "Instellingen opslaan"
+#: classes/WP_Piwik.php:227
+msgid "Please validate your configuration"
+msgstr "Gelieve je configuratie goed te keuren"
 
-msgid "Currently shown stats:"
-msgstr "Momenteel weergegeven statistieken:"
+#: classes/WP_Piwik.php:259 classes/WP_Piwik.php:481
+msgid "Settings"
+msgstr "Instellingen"
 
-msgid "Change"
-msgstr "Wijzigen"
+#: classes/WP_Piwik.php:262
+msgid "Important"
+msgstr "Belangrijk"
 
-msgid "WPMU-Piwik Settings"
-msgstr "WPMU-Piwik Instellingen"
+#: classes/WP_Piwik.php:343 classes/WP_Piwik.php:365
+msgid "Piwik Statistics"
+msgstr "Piwik Statistieken"
 
-msgid "<strong>Important note:</strong> You have to choose a token which provides administration access. WPMU-Piwik will create new Piwik sites for each blog if it is shown the first time and it is not added yet. All users can access their own statistics only, while site admins can access all statistics. To avoid conflicts, you should use a clean Piwik installation without other sites added. The provided themes should use wp_footer, because it adds the Piwik javascript code to each page."
-msgstr "<strong>Belangrijke opmerking:</ strong> Je moet een token kiezen met admin rechten. WPMU-Piwik zal nieuwe Piwik sites creeëren voor elke blog wanneer het de eerste keer wordt getoond en nog niet is toegevoegd. Alle gebruikers hebben toegang  tot hun eigen statistieken, terwijl de site admins toegang hebben tot alle statistieken. Om conflicten te vermijden moet je een schone Piwik installatie gebruiken zonder dat andere sites toegevoegd zijn. De bijgeleverde thema's moeten wp_footer  gebruiken omdat dan de Piwik javascript code toegevoegd wordt aan elke pagina."
+#: classes/WP_Piwik.php:453
+msgid "Configure WP-Piwik"
+msgstr "Configureer WP-Piwik"
 
-msgid "<strong>Important note:</strong> If you do not host this blog on your own, your site admin is able to get your auth token from the database. So he is able to access your statistics. You should never use an auth token with more than simple view access!"
-msgstr "<strong>Belangrijke opmerking:</ strong>Als je niet deze blog zelf host kan je site admin je auth token uit de database verkrijgen. Dus hij is in staat om toegang te verkijgen tot je statistieken. Je moet nooit een auth token gebruiken wanneer je meer dan eenvoudige leesrechten bezit!"
+#: classes/WP_Piwik.php:923
+msgid "An error occured"
+msgstr "Een fout is opgetreden"
 
-msgid "WP-Piwik uses the Google Chart API to create graphs. To avoid this, just check this box."
-msgstr "WP-Piwik maakt gebruik van de Google Chart API om grafieken te creëren. Om dit te vermijden, vinkt u dit vakje aan."
+#: classes/WP_Piwik.php:1191
+msgid "Cheatin&#8217; uh?"
+msgstr "Ben je aan &#8217;t zeuren?"
 
-msgid "Disable Google Chart API"
-msgstr "Google Chart API uitschakelen"
+#: wp-piwik.php:60
+msgid ""
+"WP-Piwik requires at least PHP 5.3. You are using the deprecated version %s."
+" Please update PHP to use WP-Piwik."
+msgstr "WP-Piwik vereist ten minste PHP 5.3. Momenteel gebruik je de verouderde versie %s. Gelieve PHP te updaten om van WP-Piwik gebruik te maken."
+
+#. Plugin Name of the plugin/theme
+msgid "WP-Piwik"
+msgstr "WP-Piwik"
 
-#. Plugin URI of an extension
-msgid "http://dev.braekling.de/wordpress-plugins/dev/wp-piwik/index.html"
-msgstr "http://dev.braekling.de/wordpress-plugins/dev/wp-piwik/index.html"
+#. Plugin URI of the plugin/theme
+msgid "http://wordpress.org/extend/plugins/wp-piwik/"
+msgstr "http://wordpress.org/extend/plugins/wp-piwik/"
 
-#. Description of an extension
-msgid "Adds Piwik stats to your dashboard menu and Piwik code to your wordpress footer."
-msgstr "Voegt Piwik statistieken toe aan je dashboard menu en Piwik code aan je WordPress footer."
+#. Description of the plugin/theme
+msgid ""
+"Adds Piwik stats to your dashboard menu and Piwik code to your wordpress "
+"header."
+msgstr "Voegt Piwik statistieken toe aan je dashboard menu en plaatst Piwik code in je wordpress header."
 
-#. Author of an extension
+#. Author of the plugin/theme
 msgid "Andr&eacute; Br&auml;kling"
 msgstr "Andr&eacute; Br&auml;kling"
 
-#. Author URI of an extension
+#. Author URI of the plugin/theme
 msgid "http://www.braekling.de"
 msgstr "http://www.braekling.de"
-
-msgid "last 30 days"
-msgstr "laatste 30 dagen"
-
-msgid "today"
-msgstr "vandaag"
-
-msgid "yesterday"
-msgstr "gisteren"
-
-msgid "No"
-msgstr "Nee"
-
-msgid "Yes"
-msgstr "Ja"
-
-msgid "Show overview on WordPress dashboard"
-msgstr "Toon het overzicht in het WordPress dashboard"
-
-msgid "Show Piwik link in overview"
-msgstr "Toon Piwik link in het overzicht"
-
diff --git a/wp-content/plugins/wp-piwik/languages/wp-piwik-pt_BR.mo b/wp-content/plugins/wp-piwik/languages/wp-piwik-pt_BR.mo
new file mode 100644
index 0000000000000000000000000000000000000000..d0fe23a0d7239b943831af4630dfbb7d0e171f60
Binary files /dev/null and b/wp-content/plugins/wp-piwik/languages/wp-piwik-pt_BR.mo differ
diff --git a/wp-content/plugins/wp-piwik/languages/wp-piwik-pt_BR.po b/wp-content/plugins/wp-piwik/languages/wp-piwik-pt_BR.po
new file mode 100644
index 0000000000000000000000000000000000000000..8b096444db5b1f441890dd7323d6233d22548d2b
--- /dev/null
+++ b/wp-content/plugins/wp-piwik/languages/wp-piwik-pt_BR.po
@@ -0,0 +1,1265 @@
+# Copyright (C) 2015 WP-Piwik
+# This file is distributed under the same license as the WP-Piwik package.
+# Translators:
+# Flávio Veras <flaviove@gmail.com>, 2015
+msgid ""
+msgstr ""
+"Project-Id-Version: WP-Piwik\n"
+"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-piwik\n"
+"POT-Creation-Date: 2015-07-22 10:25:29+00:00\n"
+"PO-Revision-Date: 2015-07-22 10:33+0000\n"
+"Last-Translator: André Bräkling\n"
+"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/wp-piwik/language/pt_BR/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: pt_BR\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#: classes/WP_Piwik/Admin/Settings.php:24
+msgid "Reload"
+msgstr "Recarregar"
+
+#: classes/WP_Piwik/Admin/Settings.php:27
+msgid "Changes saved."
+msgstr "Modificações salvas"
+
+#: classes/WP_Piwik/Admin/Settings.php:45
+msgid "Save Changes"
+msgstr "Salvar modificações"
+
+#: classes/WP_Piwik/Admin/Settings.php:46
+msgid "Thanks for using WP-Piwik!"
+msgstr "Obrigado por usar o WP-Piwik!"
+
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid "WP-Piwik %s is successfully connected to Piwik %s."
+msgstr "WP-Piwik %s está conectado com sucesso ao Piwik %s."
+
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid "You are running WordPress %s."
+msgstr "Você está executando o WordPress %s."
+
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid ""
+"You are running a WordPress %s blog network (WPMU). WP-Piwik will handle "
+"your sites as different websites."
+msgstr "Você está executando um WordPress %s rede de blogs (WPMU). WP-Piwik irá lidar com seus sites como sites diferentes."
+
+#: classes/WP_Piwik/Admin/Settings.php:53
+msgid ""
+"WP-Piwik %s was not able to connect to Piwik using your configuration. Check"
+" the &raquo;Connect to Piwik&laquo; section below."
+msgstr "WP-Piwik %s não foi capaz de se conectar a Piwik usando sua configuração. Verifique o &raquo; Conecte-se a Piwik&laquo; na seção abaixo."
+
+#: classes/WP_Piwik/Admin/Settings.php:56
+msgid ""
+"WP-Piwik %s has to be connected to Piwik first. Check the &raquo;Connect to "
+"Piwik&laquo; section below."
+msgstr "WP-Piwik %s tem que ser conectado ao Piwik primeiro. Verifique o &raquo; Conecte-se ao Piwik&laquo; na seção abaixo."
+
+#: classes/WP_Piwik/Admin/Settings.php:60
+msgid "Connect to Piwik"
+msgstr "Conectar ao Piwik"
+
+#: classes/WP_Piwik/Admin/Settings.php:65
+msgid "Show Statistics"
+msgstr "Mostrar Estatísticas"
+
+#: classes/WP_Piwik/Admin/Settings.php:69
+msgid "Enable Tracking"
+msgstr "Habilitar Rastreamento"
+
+#: classes/WP_Piwik/Admin/Settings.php:74
+msgid "Expert Settings"
+msgstr "Configurações para Especialistas"
+
+#: classes/WP_Piwik/Admin/Settings.php:78 classes/WP_Piwik.php:923
+msgid "Support"
+msgstr "Suporte"
+
+#: classes/WP_Piwik/Admin/Settings.php:82
+msgid "Credits"
+msgstr "Créditos"
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid ""
+"WP-Piwik is a WordPress plugin to show a selection of Piwik stats in your "
+"WordPress admin dashboard and to add and configure your Piwik tracking code."
+" To use this you will need your own Piwik instance. If you do not already "
+"have a Piwik setup, you have two simple options: use either"
+msgstr "WP-Piwik é um plugin WordPress para mostrar uma seleção de estatísticas Piwik no seu painel de administração do WordPress e para adicionar e configurar o código de acompanhamento do Piwik. Para usar isso, você vai precisar do seu próprio exemplo Piwik. Se você ainda não tem uma configuração Piwik, você tem duas opções simples: use um"
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "Self-hosted"
+msgstr "Auto-hospedado"
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "or"
+msgstr "ou"
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "Cloud-hosted"
+msgstr "Cloud-hospedado"
+
+#: classes/WP_Piwik/Admin/Settings.php:98
+msgid ""
+"Neither cURL nor fopen are available. So WP-Piwik can not use the HTTP API "
+"and not connect to Piwik Pro."
+msgstr "Nem cURL nem fopen estão disponíveis. Então WP-Piwik não pode usar a HTTP API e não pode se conectar ao Piwik Pro."
+
+#: classes/WP_Piwik/Admin/Settings.php:98
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
+msgid "More information"
+msgstr "Mais informações"
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid "You can choose between three connection methods:"
+msgstr "Você pode escolher entre três métodos de conexão:"
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:103
+msgid "Self-hosted (HTTP API, default)"
+msgstr "Auto-hospedado (HTTP API, padrão)"
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"This is the default option for a self-hosted Piwik and should work for most "
+"configurations. WP-Piwik will connect to Piwik using http(s)."
+msgstr "Esta é a opção padrão para um Piwik auto-hospedado e deve funcionar para a maioria das configurações. WP-Piwik irá se conectar ao Piwik usando http(s)."
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:104
+msgid "Self-hosted (PHP API)"
+msgstr "Auto-hospedado (PHP API)"
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"Choose this, if your self-hosted Piwik and WordPress are running on the same"
+" machine and you know the full server path to your Piwik instance."
+msgstr "Escolha este, se o seu auto-hospedado WordPress Piwik esta rodando na mesma máquina e você sabe o caminho completo do servidor para a instância do Piwik."
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:105
+msgid "Cloud-hosted (Piwik Pro)"
+msgstr "Cloud-hospedado (Piwik Pro)"
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"If you are using a cloud-hosted Piwik by Piwik Pro, you can simply use this "
+"option."
+msgstr "Se você estiver usando um Piwik hospedado na nuvem por Piwik Pro, você pode simplesmente usar esta opção."
+
+#: classes/WP_Piwik/Admin/Settings.php:101
+msgid "Piwik Mode"
+msgstr "Modo Piwik"
+
+#: classes/WP_Piwik/Admin/Settings.php:102
+msgid "Disabled (WP-Piwik will not connect to Piwik)"
+msgstr "Desativado (WP-Piwik não se conectará a Piwik)"
+
+#: classes/WP_Piwik/Admin/Settings.php:108
+msgid "Piwik URL"
+msgstr "URL Piwik"
+
+#: classes/WP_Piwik/Admin/Settings.php:108
+msgid ""
+"Enter your Piwik URL. This is the same URL you use to access your Piwik "
+"instance, e.g. http://www.example.com/piwik/."
+msgstr "Digite o sus URL do Piwik. Esta é a mesma URL que você usa para acessar a instância Piwik, por exemplo, http://www.example.com/piwik/."
+
+#: classes/WP_Piwik/Admin/Settings.php:109
+msgid "Piwik path"
+msgstr "Caminho Piwik"
+
+#: classes/WP_Piwik/Admin/Settings.php:109
+msgid "Enter the file path to your Piwik instance, e.g. /var/www/piwik/."
+msgstr "Digite o caminho do arquivo para sua instância Piwik, por exemplo, /var/www/piwik/."
+
+#: classes/WP_Piwik/Admin/Settings.php:110
+msgid "Piwik user"
+msgstr "Usuário Piwik"
+
+#: classes/WP_Piwik/Admin/Settings.php:110
+msgid ""
+"Enter your Piwik Pro username. It is also part of your URL: "
+"http://USERNAME.piwik.pro."
+msgstr "Digite seu nome de usuário Piwik Pro. Isto é também parte de sua URL: http://USERNAME.piwik.pro."
+
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid "Auth token"
+msgstr "Token de autenticação"
+
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid ""
+"Enter your Piwik auth token here. It is an alphanumerical code like "
+"0a1b2c34d56e78901fa2bc3d45678efa."
+msgstr "Digite o seu token de autenticação Piwik aqui. É um código alfanumérico como 0a1b2c34d56e78901fa2bc3d45678efa."
+
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid "See %sWP-Piwik FAQ%s."
+msgstr "Veja %sWP-Piwik FAQ%s."
+
+#: classes/WP_Piwik/Admin/Settings.php:116
+msgid "Auto config"
+msgstr "Auto configuração"
+
+#: classes/WP_Piwik/Admin/Settings.php:116
+msgid ""
+"Check this to automatically choose your blog from your Piwik sites by URL. "
+"If your blog is not added to Piwik yet, WP-Piwik will add a new site."
+msgstr "Marque essa opção para escolher automaticamente o seu blog a partir de seus sites Piwik por URL. Se o seu blog não está adicionado à Piwik ainda, WP-Piwik irá adicionar um novo site."
+
+#: classes/WP_Piwik/Admin/Settings.php:127
+msgid "Determined site"
+msgstr "Site determinado"
+
+#: classes/WP_Piwik/Admin/Settings.php:132
+msgid "Select site"
+msgstr "Selecione o site"
+
+#: classes/WP_Piwik/Admin/Settings.php:140
+msgid "Piwik default date"
+msgstr "Data padrão Piwik"
+
+#: classes/WP_Piwik/Admin/Settings.php:141
+#: classes/WP_Piwik/Admin/Settings.php:154
+msgid "Today"
+msgstr "Hoje"
+
+#: classes/WP_Piwik/Admin/Settings.php:142
+#: classes/WP_Piwik/Admin/Settings.php:153
+msgid "Yesterday"
+msgstr "Ontem"
+
+#: classes/WP_Piwik/Admin/Settings.php:143
+msgid "Current month"
+msgstr "Mês atual"
+
+#: classes/WP_Piwik/Admin/Settings.php:144
+msgid "Last month"
+msgstr "Último mês"
+
+#: classes/WP_Piwik/Admin/Settings.php:145
+msgid "Current week"
+msgstr "Semana atual"
+
+#: classes/WP_Piwik/Admin/Settings.php:146
+msgid "Last week"
+msgstr "Última semana"
+
+#: classes/WP_Piwik/Admin/Settings.php:147
+msgid "Default date shown on statistics page."
+msgstr "Data padrão mostrada na página de estatísticas."
+
+#: classes/WP_Piwik/Admin/Settings.php:149
+msgid "Show SEO data"
+msgstr "Mostrar dados SEO"
+
+#: classes/WP_Piwik/Admin/Settings.php:149
+msgid "Display SEO ranking data on statistics page."
+msgstr "Exibição classificação SEO de dados na página de estatísticas."
+
+#: classes/WP_Piwik/Admin/Settings.php:149
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Slow!"
+msgstr "Lento!"
+
+#: classes/WP_Piwik/Admin/Settings.php:151
+msgid "Dashboard overview"
+msgstr "Resumo do Painel"
+
+#: classes/WP_Piwik/Admin/Settings.php:152
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:192
+#: classes/WP_Piwik/Admin/Settings.php:213
+#: classes/WP_Piwik/Admin/Settings.php:304
+msgid "Disabled"
+msgstr "Desativado"
+
+#: classes/WP_Piwik/Admin/Settings.php:155
+msgid "Last 30 days"
+msgstr "Últimos 30 dias"
+
+#: classes/WP_Piwik/Admin/Settings.php:156
+msgid "Enable WP-Piwik dashboard widget &quot;Overview&quot;."
+msgstr "Habilitar WP-Piwik widget do Painel &quot;Overview&quot;."
+
+#: classes/WP_Piwik/Admin/Settings.php:158
+msgid "Dashboard graph"
+msgstr "Gráfico do painel"
+
+#: classes/WP_Piwik/Admin/Settings.php:158
+msgid "Enable WP-Piwik dashboard widget &quot;Graph&quot;."
+msgstr "Habilitar WP-Piwik widget do Painel &quot;Graph&quot;."
+
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Dashboard SEO"
+msgstr "Painel SEO"
+
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Enable WP-Piwik dashboard widget &quot;SEO&quot;."
+msgstr "Habilitar WP-Piwik widget do Painel &quot;SEO&quot;."
+
+#: classes/WP_Piwik/Admin/Settings.php:162
+msgid "Show graph on WordPress Toolbar"
+msgstr "Mostrar gráfico na barra de ferramentas do WordPress"
+
+#: classes/WP_Piwik/Admin/Settings.php:162
+msgid "Display a last 30 days visitor graph on WordPress' toolbar."
+msgstr "Mostrar gráfico de visitantes dos últimos 30 dias na barra de ferramentas do WordPress '."
+
+#: classes/WP_Piwik/Admin/Settings.php:164
+msgid "Display stats to"
+msgstr "Exibição de estatísticas para"
+
+#: classes/WP_Piwik/Admin/Settings.php:171
+msgid "Choose user roles allowed to see the statistics page."
+msgstr "Escolha regras de usuários autorizados a ver a página de estatísticas."
+
+#: classes/WP_Piwik/Admin/Settings.php:173
+msgid "Show per post stats"
+msgstr "Mostrar estatísticas por postagem"
+
+#: classes/WP_Piwik/Admin/Settings.php:173
+msgid "Show stats about single posts at the post edit admin page."
+msgstr "Mostrar estatísticas sobre mensagens individuais na página de administração de edição de postagem."
+
+#: classes/WP_Piwik/Admin/Settings.php:175
+msgid "Piwik shortcut"
+msgstr "Atalho Piwik"
+
+#: classes/WP_Piwik/Admin/Settings.php:175
+msgid "Display a shortcut to Piwik itself."
+msgstr "Exibir um atalho para Piwik."
+
+#: classes/WP_Piwik/Admin/Settings.php:177
+msgid "WP-Piwik display name"
+msgstr "Exibir nome WP-Piwik"
+
+#: classes/WP_Piwik/Admin/Settings.php:177
+msgid "Plugin name shown in WordPress."
+msgstr "Nome do plugin mostrado no WordPress."
+
+#: classes/WP_Piwik/Admin/Settings.php:179
+msgid "Enable shortcodes"
+msgstr "Habilitar códigos de acesso"
+
+#: classes/WP_Piwik/Admin/Settings.php:179
+msgid "Enable shortcodes in post or page content."
+msgstr "Habilitar códigos de acesso em post ou conteúdo da página."
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "You can choose between four tracking code modes:"
+msgstr "Você pode escolher entre quatro modos de código de acompanhamento:"
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"WP-Piwik will not add the tracking code. Use this, if you want to add the "
+"tracking code to your template files or you use another plugin to add the "
+"tracking code."
+msgstr "WP-Piwik não irá adicionar o código de acompanhamento. Utilize este, se você quiser adicionar o código de acompanhamento de seus arquivos de template ou utilizar outro plugin para adicionar o código de acompanhamento."
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:193
+msgid "Default tracking"
+msgstr "Rastreamento padrão"
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "WP-Piwik will use Piwik's standard tracking code."
+msgstr "WP-Piwik irá usar o código de rastreamento padrão do Piwik."
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:194
+msgid "Use js/index.php"
+msgstr "Use js/index.php"
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"You can choose this tracking code, to deliver a minified proxy code and to "
+"avoid using the files called piwik.js or piwik.php."
+msgstr "Você pode escolher esse código de rastreamento, para entregar um código de proxy minificado para evitar o uso de arquivos chamados piwik.js ou piwik.php."
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "See %sreadme file%s."
+msgstr "Ver %sreadme file%s."
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:195
+msgid "Use proxy script"
+msgstr "Usar script proxy"
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "Use this tracking code to not reveal the Piwik server URL."
+msgstr "Utilize este código de rastreamento para não revelar a URL do servidor Piwik."
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:210
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid "See %sPiwik FAQ%s."
+msgstr "Ver %sPiwik FAQ%s."
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:196
+msgid "Enter manually"
+msgstr "Digite manualmente"
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"Enter your own tracking code manually. You can choose one of the prior "
+"options, pre-configure your tracking code and switch to manually editing at "
+"last."
+msgstr "Digite o seu próprio código de rastreamento manualmente. Você pode escolher uma das opções anteriores, pré-configurar o seu código de rastreamento e mudar para editar manualmente."
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "Use the placeholder {ID} to add the Piwik site ID."
+msgstr "Use o espaço reservado {ID} para adicionar o ID do site Piwik."
+
+#: classes/WP_Piwik/Admin/Settings.php:191
+msgid "Add tracking code"
+msgstr "Adicionar código de rastreamento"
+
+#: classes/WP_Piwik/Admin/Settings.php:199
+msgid "Tracking code"
+msgstr "Código de rastreamento"
+
+#: classes/WP_Piwik/Admin/Settings.php:201
+msgid "JavaScript code position"
+msgstr "JavaScript posição do código"
+
+#: classes/WP_Piwik/Admin/Settings.php:202
+msgid "Footer"
+msgstr "Rodapé"
+
+#: classes/WP_Piwik/Admin/Settings.php:203
+msgid "Header"
+msgstr "Cabeçalho"
+
+#: classes/WP_Piwik/Admin/Settings.php:204
+msgid ""
+"Choose whether the JavaScript code is added to the footer or the header."
+msgstr "Escolha se o código JavaScript é adicionado ao rodapé ou cabeçalho."
+
+#: classes/WP_Piwik/Admin/Settings.php:206
+msgid "Noscript code"
+msgstr "Código noscript"
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+msgid "Add &lt;noscript&gt;"
+msgstr "Adicionar &lt;noscript&gt;"
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+msgid "Adds the &lt;noscript&gt; code to your footer."
+msgstr "Adiciona o & lt;noscript&gt; código ao seu rodapé."
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Disabled in proxy mode."
+msgstr "Desativada no modo de proxy."
+
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Add rec parameter to noscript code"
+msgstr "Adicionar parâmetro de recreação ao código noscript"
+
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Enable tracking for visitors without JavaScript (not recommended)."
+msgstr "Habilitar rastreamento para os visitantes sem JavaScript (não recomendado)."
+
+#: classes/WP_Piwik/Admin/Settings.php:212
+msgid "Enable content tracking"
+msgstr "Habilitar o rastreamento conteúdo"
+
+#: classes/WP_Piwik/Admin/Settings.php:214
+msgid "Track all content blocks"
+msgstr "Rastrear todos os blocos de conteúdo"
+
+#: classes/WP_Piwik/Admin/Settings.php:215
+msgid "Track only visible content blocks"
+msgstr "Rastrear somente blocos de conteúdo visíveis"
+
+#: classes/WP_Piwik/Admin/Settings.php:216
+msgid ""
+"Content tracking allows you to track interaction with the content of a web "
+"page or application."
+msgstr "Rastreamento de conteúdo permite que você acompanhe a interação com o conteúdo de uma página web ou aplicativo."
+
+#: classes/WP_Piwik/Admin/Settings.php:216
+#: classes/WP_Piwik/Admin/Settings.php:218
+#: classes/WP_Piwik/Admin/Settings.php:222
+#: classes/WP_Piwik/Admin/Settings.php:224
+#: classes/WP_Piwik/Admin/Settings.php:226
+#: classes/WP_Piwik/Admin/Settings.php:247
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "See %sPiwik documentation%s."
+msgstr "Visualizar %sPiwik docomentação%s"
+
+#: classes/WP_Piwik/Admin/Settings.php:218
+msgid "Track search"
+msgstr "Rastrear pesquisa"
+
+#: classes/WP_Piwik/Admin/Settings.php:218
+msgid "Use Piwik's advanced Site Search Analytics feature."
+msgstr "Utilize o recurso avançado Piwik Pesquisa Analítica do Site."
+
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid "Track 404"
+msgstr "Rastrear 404"
+
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid ""
+"WP-Piwik can automatically add a 404-category to track 404-page-visits."
+msgstr "WP-Piwik pode adicionar automaticamente um 404-categoria para rastrear 404-pagina-visitas."
+
+#: classes/WP_Piwik/Admin/Settings.php:222
+msgid "Add annotation on new post"
+msgstr "Adicionar anotação em nova mensagem"
+
+#: classes/WP_Piwik/Admin/Settings.php:222
+msgid "Add a Piwik annotation on each new post."
+msgstr "Adicionar uma anotação Piwik em cada nova mensagem."
+
+#: classes/WP_Piwik/Admin/Settings.php:224
+msgid "Show custom variables box"
+msgstr "Mostrar caixa de variáveis personalizadas"
+
+#: classes/WP_Piwik/Admin/Settings.php:224
+msgid " Show a &quot;custom variables&quot; edit box on post edit page."
+msgstr "Mostrar &quot;custom variables&quot; caixa de edição na pagina de edição de mensagem."
+
+#: classes/WP_Piwik/Admin/Settings.php:226
+msgid "Add new file types for download tracking"
+msgstr "Adicionar novos tipos de arquivo para rastreamento de download"
+
+#: classes/WP_Piwik/Admin/Settings.php:226
+msgid ""
+"Add file extensions for download tracking, divided by a vertical bar "
+"(&#124;)."
+msgstr "Adicionar extensões de arquivo para rastreamento de download, dividida por uma barra vertical (&#124;)."
+
+#: classes/WP_Piwik/Admin/Settings.php:228
+msgid "Disable cookies"
+msgstr "Desativar os cookies"
+
+#: classes/WP_Piwik/Admin/Settings.php:228
+msgid "Disable all tracking cookies for a visitor."
+msgstr "Desativar todos os cookies de rastreamento para um visitante."
+
+#: classes/WP_Piwik/Admin/Settings.php:230
+msgid "Limit cookie lifetime"
+msgstr "Limite de cookie vitalícia"
+
+#: classes/WP_Piwik/Admin/Settings.php:230
+msgid ""
+"You can limit the cookie lifetime to avoid tracking your users over a longer"
+" period as necessary."
+msgstr "Você pode limitar o tempo de vida de um cookie para evitar rastreamento de seus usuários ao longo de um período mais longo, se necessário."
+
+#: classes/WP_Piwik/Admin/Settings.php:232
+msgid "Visitor timeout (seconds)"
+msgstr "Tempo limite de visitante (segundos)"
+
+#: classes/WP_Piwik/Admin/Settings.php:234
+msgid "Session timeout (seconds)"
+msgstr "Tempo limite da sessão (segundos)"
+
+#: classes/WP_Piwik/Admin/Settings.php:236
+msgid "Referral timeout (seconds)"
+msgstr "Tempo limite de referência (segundos)"
+
+#: classes/WP_Piwik/Admin/Settings.php:238
+msgid "Track admin pages"
+msgstr "Rastrear páginas de administração"
+
+#: classes/WP_Piwik/Admin/Settings.php:238
+msgid ""
+"Enable to track users on admin pages (remember to configure the tracking "
+"filter appropriately)."
+msgstr "Habilitar para rastrear usuários em páginas de administração (lembre-se de configurar o filtro de rastreamento apropriadamente)."
+
+#: classes/WP_Piwik/Admin/Settings.php:241
+msgid "Tracking filter"
+msgstr "Rasteamento de filtro"
+
+#: classes/WP_Piwik/Admin/Settings.php:245
+msgid "Choose users by user role you do <strong>not</strong> want to track."
+msgstr "Escolha usuários por função de usuário que você <strong>não</strong> deseja acompanhar."
+
+#: classes/WP_Piwik/Admin/Settings.php:247
+msgid "Track subdomains in the same website"
+msgstr "Rastrear subdomínios no mesmo website"
+
+#: classes/WP_Piwik/Admin/Settings.php:247
+msgid "Adds *.-prefix to cookie domain."
+msgstr "Adiciona * .- ao prefixo do cokie do domínio."
+
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "Do not count subdomains as outlink"
+msgstr "Não conte subdomínios como outlink"
+
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "Adds *.-prefix to tracked domain."
+msgstr "Adiciona * .- ao prefixo do domínio rastreado."
+
+#: classes/WP_Piwik/Admin/Settings.php:251
+msgid "Track RSS feeds"
+msgstr "Rastear  RSS feeds"
+
+#: classes/WP_Piwik/Admin/Settings.php:251
+msgid "Enable to track posts in feeds via tracking pixel."
+msgstr "Ativar rastrear mensagens nos feeds através de pixel de rastreamento."
+
+#: classes/WP_Piwik/Admin/Settings.php:253
+msgid "Track RSS feed links as campaign"
+msgstr "Rastrear links de feed RSS como campanha"
+
+#: classes/WP_Piwik/Admin/Settings.php:255
+msgid "RSS feed campaign"
+msgstr "Campanha RSS feed"
+
+#: classes/WP_Piwik/Admin/Settings.php:255
+msgid "Keyword: post name."
+msgstr "Palavra-chave: nome da mensagem."
+
+#: classes/WP_Piwik/Admin/Settings.php:257
+msgid "Enable heartbeat timer"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:257
+msgid ""
+"Enable a heartbeat timer to get more accurate visit lengths by sending "
+"periodical HTTP ping requests as long as the site is opened. Enter the time "
+"between the pings in seconds (Piwik default: 15) to enable or 0 to disable "
+"this feature. <strong>Note:</strong> This will cause a lot of additional "
+"HTTP requests on your site."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:262
+msgid ""
+"Usually, you do not need to change these settings. If you want to do so, you"
+" should know what you do or you got an expert's advice."
+msgstr "Normalmente, você não precisa alterar essas configurações. Se você quiser fazer isso, você deve saber o que você faz ou procure o conselho de um especialista."
+
+#: classes/WP_Piwik/Admin/Settings.php:264
+msgid "Enable cache"
+msgstr "Habilitar o cache"
+
+#: classes/WP_Piwik/Admin/Settings.php:264
+msgid "Cache API calls, which not contain today's values, for a week."
+msgstr "Achamada API Cache, não contêm valores de hoje, por uma semana."
+
+#: classes/WP_Piwik/Admin/Settings.php:267
+msgid "HTTP connection via"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:268
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "cURL"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:269
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "fopen"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:270
+msgid ""
+"Choose whether WP-Piwik should use cURL or fopen to connect to Piwik in HTTP"
+" or Pro mode."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:272
+msgid "HTTP method"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:273
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "POST"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:274
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "GET"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:275
+msgid "Choose whether WP-Piwik should use POST or GET in HTTP or Pro mode."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:277
+msgid "Disable time limit"
+msgstr "Desabilitar limite de tempo"
+
+#: classes/WP_Piwik/Admin/Settings.php:277
+msgid "Use set_time_limit(0) if stats page causes a time out."
+msgstr "Use set_time_limit(0) se a página de estatísticas atingir o tempo limite."
+
+#: classes/WP_Piwik/Admin/Settings.php:279
+msgid "Connection timeout"
+msgstr "Tempo limite de conexão"
+
+#: classes/WP_Piwik/Admin/Settings.php:281
+msgid "Disable SSL peer verification"
+msgstr "Desabilitar a verificação de peer SSL"
+
+#: classes/WP_Piwik/Admin/Settings.php:281
+msgid "not recommended"
+msgstr "não recomendado"
+
+#: classes/WP_Piwik/Admin/Settings.php:283
+msgid "User agent"
+msgstr "Agente  usuário"
+
+#: classes/WP_Piwik/Admin/Settings.php:284
+msgid "Use the PHP default user agent"
+msgstr "Use o agente do usuário padrão PHP"
+
+#: classes/WP_Piwik/Admin/Settings.php:284
+msgid "empty"
+msgstr "vazio"
+
+#: classes/WP_Piwik/Admin/Settings.php:285
+msgid "Define a specific user agent"
+msgstr "Definir um agente de usuário específico"
+
+#: classes/WP_Piwik/Admin/Settings.php:287
+msgid "Specific user agent"
+msgstr "Agente de usuário específico"
+
+#: classes/WP_Piwik/Admin/Settings.php:289
+msgid "Add data-cfasync=false"
+msgstr "Adicionar data-cfasync=false"
+
+#: classes/WP_Piwik/Admin/Settings.php:291
+msgid "CDN URL"
+msgstr "CDN URL"
+
+#: classes/WP_Piwik/Admin/Settings.php:293
+msgid "CDN URL (SSL)"
+msgstr "CDN URL (SSL)"
+
+#: classes/WP_Piwik/Admin/Settings.php:295
+msgid "Force Piwik to use a specific protocol"
+msgstr "Forçar o Piwik a usar um protocolo específico"
+
+#: classes/WP_Piwik/Admin/Settings.php:296
+msgid "Disabled (default)"
+msgstr "Desativado (padrão)"
+
+#: classes/WP_Piwik/Admin/Settings.php:297
+msgid "http"
+msgstr "http"
+
+#: classes/WP_Piwik/Admin/Settings.php:298
+msgid "https (SSL)"
+msgstr "https (SSL)"
+
+#: classes/WP_Piwik/Admin/Settings.php:299
+msgid ""
+"Choose if you want to explicitly force Piwik to use HTTP or HTTPS. Does not "
+"work with a CDN URL."
+msgstr "Escolha se você deseja forçar explicitamente Piwik a usar HTTP ou HTTPS. Não funciona com uma URL CDN."
+
+#: classes/WP_Piwik/Admin/Settings.php:301
+msgid "Update notice"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:302
+msgid "Show always if WP-Piwik is updated"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:303
+msgid "Show only if WP-Piwik is updated and settings were changed"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:305
+msgid "Choose if you want to get an update notice if WP-Piwik is updated."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:466
+msgid "Donate"
+msgstr "Doação"
+
+#: classes/WP_Piwik/Admin/Settings.php:468
+msgid "If you like WP-Piwik, you can support its development by a donation:"
+msgstr "Se você gosta do WP-Piwik, você pode apoiar o seu desenvolvimento fazendo uma doação:"
+
+#: classes/WP_Piwik/Admin/Settings.php:506
+msgid "My Amazon.de wishlist"
+msgstr "Minha lista de desejos amazon.de"
+
+#: classes/WP_Piwik/Admin/Settings.php:509
+#: classes/WP_Piwik/Admin/Settings.php:556
+msgid "Please don't forget to vote the compatibility at the"
+msgstr "Por favor, não se esqueça de votar a compatibilidade no"
+
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid "Thank you very much for your donation"
+msgstr "Muito obrigado por sua doação"
+
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid "the Piwik team itself"
+msgstr "a equipe Piwik em si"
+
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid ", and all people flattering this"
+msgstr ", e todas as pessoas elogiando este"
+
+#: classes/WP_Piwik/Admin/Settings.php:541
+msgid ""
+"Graphs powered by <a href=\"http://www.jqplot.com/\">jqPlot</a> (License: "
+"GPL 2.0 and MIT) and <a "
+"href=\"http://omnipotent.net/jquery.sparkline/\">jQuery Sparklines</a> "
+"(License: New BSD License)."
+msgstr "Gráficos alimentados por <a href=\"http://www.jqplot.com/\">jqPlot</a> (License: GPL 2.0 and MIT) e <a href=\"http://omnipotent.net/jquery.sparkline/\">jQuery Sparklines</a> (Licença: New BSD License)."
+
+#: classes/WP_Piwik/Admin/Settings.php:542
+msgid "Metabox support inspired by"
+msgstr "Apoio Metabox inspirado por"
+
+#: classes/WP_Piwik/Admin/Settings.php:543
+msgid "Tabbed settings page suggested by the"
+msgstr "Página de configurações de abas sugerido pelo"
+
+#: classes/WP_Piwik/Admin/Settings.php:544
+msgid "Thank you very much"
+msgstr "Muito obrigado"
+
+#: classes/WP_Piwik/Admin/Settings.php:544
+msgid "for your translation work"
+msgstr "para o seu trabalho de tradução"
+
+#: classes/WP_Piwik/Admin/Settings.php:545
+msgid ""
+"Thank you very much, all users who send me mails containing criticism, "
+"commendation, feature requests and bug reports! You help me to make WP-Piwik"
+" much better."
+msgstr "Muito obrigado, todos os usuários que me enviam e-mails contendo críticas, elogios, solicitações de recursos e relatórios de erros! Você me ajuda a fazer WP-Piwik muito melhor."
+
+#: classes/WP_Piwik/Admin/Settings.php:546
+msgid ""
+"Thank <strong>you</strong> for using my plugin. It is the best commendation "
+"if my piece of code is really used!"
+msgstr "Obrigado <strong> a você </strong> por usar o meu plugin. O melhor elogio é quando o meu pedaço de código é realmente usado!"
+
+#: classes/WP_Piwik/Admin/Settings.php:555
+msgid "The best place to get help:"
+msgstr "O melhor lugar para obter ajuda:"
+
+#: classes/WP_Piwik/Admin/Settings.php:555
+msgid "WP-Piwik support forum"
+msgstr "Fórum de suporte WP-Piwik"
+
+#: classes/WP_Piwik/Admin/Settings.php:558
+msgid "Debugging"
+msgstr "Depuração"
+
+#: classes/WP_Piwik/Admin/Settings.php:559
+msgid ""
+"Either allow_url_fopen has to be enabled <em>or</em> cURL has to be "
+"available:"
+msgstr "Ou allow_url_fopen tem que ser habilitado <em>ou</em> cURL tem de estar disponível:"
+
+#: classes/WP_Piwik/Admin/Settings.php:562
+msgid "cURL is"
+msgstr "cURL é"
+
+#: classes/WP_Piwik/Admin/Settings.php:563
+#: classes/WP_Piwik/Admin/Settings.php:568
+msgid "not"
+msgstr "não"
+
+#: classes/WP_Piwik/Admin/Settings.php:564
+msgid "available"
+msgstr "disponível"
+
+#: classes/WP_Piwik/Admin/Settings.php:567
+msgid "allow_url_fopen is"
+msgstr "allow_url_fopen é"
+
+#: classes/WP_Piwik/Admin/Settings.php:569
+msgid "enabled"
+msgstr "habilitado"
+
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "is used."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:573
+msgid "Determined Piwik base URL is"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:577
+msgid "Tools"
+msgstr "Ferramentas"
+
+#: classes/WP_Piwik/Admin/Settings.php:579
+msgid "Run testscript"
+msgstr "Execute testscript"
+
+#: classes/WP_Piwik/Admin/Settings.php:580
+msgid "Sitebrowser"
+msgstr "Navegador do Site"
+
+#: classes/WP_Piwik/Admin/Settings.php:581
+msgid "Clear cache"
+msgstr "Limpar o cache"
+
+#: classes/WP_Piwik/Admin/Settings.php:582
+msgid "Are you sure you want to clear all settings?"
+msgstr "Tem certeza de que deseja apagar todas as configurações?"
+
+#: classes/WP_Piwik/Admin/Settings.php:582
+msgid "Reset WP-Piwik"
+msgstr "Redefinir WP-Piwik"
+
+#: classes/WP_Piwik/Admin/Settings.php:584
+msgid "Latest support threads on WordPress.org"
+msgstr "Últimos tópicos de suporte no WordPress.org"
+
+#: classes/WP_Piwik/Admin/Settings.php:635
+msgid "Settings cleared (except connection settings)."
+msgstr "Configurações desmarcadas (exceto configurações de conexão)."
+
+#: classes/WP_Piwik/Admin/Settings.php:651
+msgid "Cache cleared."
+msgstr "Cache esvaziado."
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:17
+msgid "site"
+msgstr "site"
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:18
+msgid "sites"
+msgstr "sites"
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:24
+msgid "No site configured yet."
+msgstr "Nenhum site configurado ainda."
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:29
+msgid "Blog ID"
+msgstr "ID do blog"
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:30
+msgid "Title"
+msgstr "Título"
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:31
+msgid "URL"
+msgstr "URL"
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:32
+msgid "Site ID (Piwik)"
+msgstr "ID do Site (Piwik)"
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:79
+msgid "Site not created yet."
+msgstr "Site não criado ainda."
+
+#: classes/WP_Piwik/Admin/Statistics.php:12
+msgid "Statistics"
+msgstr "Estatísticas"
+
+#: classes/WP_Piwik/Admin/Statistics.php:20
+msgid "Currently shown stats:"
+msgstr "Estatísticas atualmente exibidas:"
+
+#: classes/WP_Piwik/Request/Php.php:27
+msgid "Could not resolve"
+msgstr "Não foi possível resolver"
+
+#: classes/WP_Piwik/Request/Php.php:27
+msgid "realpath() returns false"
+msgstr "realpath() retornou falso"
+
+#: classes/WP_Piwik/Request/Php.php:39
+msgid "Class Piwik\\FrontController does not exists."
+msgstr "Classe Piwik\\FrontController não existe."
+
+#: classes/WP_Piwik/Request/Php.php:42
+msgid "Class Piwik\\API\\Request does not exists."
+msgstr "Classe Piwik\\API\\Request não existe."
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:10
+msgid "Piwik Custom Variables"
+msgstr "Variáveis Personalizadas Piwik"
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
+msgid "Name"
+msgstr "Nome"
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
+msgid "Value"
+msgstr "Valor"
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
+msgid "Set custom variables for a page view"
+msgstr "Definir variáveis personalizadas para uma exibição de página"
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:18
+msgid "Browser Details"
+msgstr "Detalhes do Navegador"
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:37
+#: classes/WP_Piwik/Widget/Browsers.php:37
+#: classes/WP_Piwik/Widget/Chart.php:43
+#: classes/WP_Piwik/Widget/Noresult.php:23
+#: classes/WP_Piwik/Widget/Overview.php:24
+#: classes/WP_Piwik/Widget/Plugins.php:23 classes/WP_Piwik/Widget/Post.php:25
+#: classes/WP_Piwik/Widget/Screens.php:35
+#: classes/WP_Piwik/Widget/Search.php:23 classes/WP_Piwik/Widget/Seo.php:20
+#: classes/WP_Piwik/Widget/SystemDetails.php:33
+#: classes/WP_Piwik/Widget/Systems.php:33
+#: classes/WP_Piwik/Widget/Visitors.php:35 classes/WP_Piwik/Widget.php:91
+msgid "Piwik error"
+msgstr "Erro Piwik"
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+msgid "Browser"
+msgstr "Navegador"
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+#: classes/WP_Piwik/Widget/Screens.php:37
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+#: classes/WP_Piwik/Widget/Visitors.php:57 classes/WP_Piwik/Widget.php:100
+msgid "Unique"
+msgstr "Único"
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+#: classes/WP_Piwik/Widget/Plugins.php:25
+#: classes/WP_Piwik/Widget/Screens.php:37
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+msgid "Percent"
+msgstr "Percentual"
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:66
+#: classes/WP_Piwik/Widget/Browsers.php:66
+#: classes/WP_Piwik/Widget/Screens.php:64
+#: classes/WP_Piwik/Widget/SystemDetails.php:62
+#: classes/WP_Piwik/Widget/Systems.php:62
+msgid "Others"
+msgstr "Outros"
+
+#: classes/WP_Piwik/Widget/Browsers.php:18
+msgid "Browsers"
+msgstr "Navegadores"
+
+#: classes/WP_Piwik/Widget/Chart.php:19
+#: classes/WP_Piwik/Widget/Overview.php:41 classes/WP_Piwik/Widget/Post.php:37
+#: classes/WP_Piwik/Widget/Visitors.php:17
+msgid "Visitors"
+msgstr "Visitantes"
+
+#: classes/WP_Piwik/Widget/Chart.php:71
+msgid ""
+"The graph contains the values shown in the table below (visitors / unique / "
+"bounces). The red line show a linear trendline (unique)."
+msgstr "O gráfico contém os valores mostrados na tabela abaixo (visitantes / exclusivos / saltos). A linha vermelha mostra uma linha de tendência linear (exclusivo)."
+
+#: classes/WP_Piwik/Widget/Keywords.php:16
+msgid "Keywords"
+msgstr "Palavras chave"
+
+#: classes/WP_Piwik/Widget/Noresult.php:16
+#: classes/WP_Piwik/Widget/Search.php:16
+msgid "Site Search"
+msgstr "Pesquisa no Site"
+
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+msgid "Keyword"
+msgstr "Palavra chave"
+
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+msgid "Requests"
+msgstr "Solicitações"
+
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Bounced"
+msgstr "Saltado"
+
+#: classes/WP_Piwik/Widget/Overview.php:17 classes/WP_Piwik/Widget/Post.php:18
+msgid "Overview"
+msgstr "Visão Global"
+
+#: classes/WP_Piwik/Widget/Overview.php:42 classes/WP_Piwik/Widget/Post.php:38
+msgid "Unique visitors"
+msgstr "Visitantes exclusivos"
+
+#: classes/WP_Piwik/Widget/Overview.php:43 classes/WP_Piwik/Widget/Post.php:39
+msgid "Page views"
+msgstr "Visualizações de página"
+
+#: classes/WP_Piwik/Widget/Overview.php:44 classes/WP_Piwik/Widget/Post.php:40
+msgid "Total time spent"
+msgstr "Tempo total gasto"
+
+#: classes/WP_Piwik/Widget/Overview.php:45 classes/WP_Piwik/Widget/Post.php:42
+msgid "Bounce count"
+msgstr "Contador de saltos"
+
+#: classes/WP_Piwik/Widget/Overview.php:48 classes/WP_Piwik/Widget/Post.php:41
+msgid "Time/visit"
+msgstr "Tempo/Visita"
+
+#: classes/WP_Piwik/Widget/Overview.php:48
+msgid "Max. page views in one visit"
+msgstr "Max. de páginas em uma visita"
+
+#: classes/WP_Piwik/Widget/Overview.php:49 classes/WP_Piwik/Widget/Post.php:46
+msgid "Shortcut"
+msgstr "Atalho"
+
+#: classes/WP_Piwik/Widget/Pages.php:16
+msgid "Pages"
+msgstr "Páginas"
+
+#: classes/WP_Piwik/Widget/Plugins.php:16
+msgid "Plugins"
+msgstr "Plugins"
+
+#: classes/WP_Piwik/Widget/Plugins.php:25
+msgid "Plugin"
+msgstr "Plugin"
+
+#: classes/WP_Piwik/Widget/Plugins.php:25
+#: classes/WP_Piwik/Widget/Visitors.php:57 classes/WP_Piwik/Widget.php:102
+msgid "Visits"
+msgstr "Visitas"
+
+#: classes/WP_Piwik/Widget/Post.php:43
+msgid "Min. generation time"
+msgstr "Min. tempo de geração"
+
+#: classes/WP_Piwik/Widget/Post.php:44
+msgid "Max. generation time"
+msgstr "Max. tempo de geração"
+
+#: classes/WP_Piwik/Widget/Referrers.php:16
+msgid "Referrers"
+msgstr "Reportar"
+
+#: classes/WP_Piwik/Widget/Screens.php:16
+msgid "Resolutions"
+msgstr "Resoluções"
+
+#: classes/WP_Piwik/Widget/Screens.php:37
+msgid "Resolution"
+msgstr "Resolução"
+
+#: classes/WP_Piwik/Widget/Seo.php:13
+msgid "SEO"
+msgstr "SEO"
+
+#: classes/WP_Piwik/Widget/SystemDetails.php:14
+msgid "Operation System Details"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+msgid "Operation System"
+msgstr "Sistema Operacional"
+
+#: classes/WP_Piwik/Widget/Systems.php:14
+msgid "Operation Systems"
+msgstr "Sistemas Operacionais"
+
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Date"
+msgstr "Data"
+
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Page Views"
+msgstr "Visualizar Páginas"
+
+#: classes/WP_Piwik/Widget.php:104
+msgid "Hits"
+msgstr "Acessos"
+
+#: classes/WP_Piwik/Widget.php:106
+msgid "Actions"
+msgstr "Ações"
+
+#: classes/WP_Piwik/Widget.php:162
+msgid "No data available."
+msgstr "Nenhum dado disponível."
+
+#: classes/WP_Piwik/Widget.php:293
+msgid "week"
+msgstr "semana"
+
+#: classes/WP_Piwik.php:193
+msgid "%s %s installed."
+msgstr "%s %s  instalado."
+
+#: classes/WP_Piwik.php:193
+msgid "Next you should connect to Piwik"
+msgstr "Em seguida, você deve se conectar ao Piwik"
+
+#: classes/WP_Piwik.php:227
+msgid "%s updated to %s."
+msgstr "%s atualizado para %s."
+
+#: classes/WP_Piwik.php:227
+msgid "Please validate your configuration"
+msgstr "Por favor, validar a configuração"
+
+#: classes/WP_Piwik.php:259 classes/WP_Piwik.php:481
+msgid "Settings"
+msgstr "Configurações"
+
+#: classes/WP_Piwik.php:262
+msgid "Important"
+msgstr "Importante"
+
+#: classes/WP_Piwik.php:343 classes/WP_Piwik.php:365
+msgid "Piwik Statistics"
+msgstr "Estatísticas Piwik"
+
+#: classes/WP_Piwik.php:453
+msgid "Configure WP-Piwik"
+msgstr ""
+
+#: classes/WP_Piwik.php:923
+msgid "An error occured"
+msgstr "Ocorreu um erro"
+
+#: classes/WP_Piwik.php:1191
+msgid "Cheatin&#8217; uh?"
+msgstr "Enganando&#8217; heim?"
+
+#: wp-piwik.php:60
+msgid ""
+"WP-Piwik requires at least PHP 5.3. You are using the deprecated version %s."
+" Please update PHP to use WP-Piwik."
+msgstr "WP-Piwik exige pelo menos o PHP 5.3. Você está usando a versão obsoleta %s. Por favor, atualize PHP para usar WP-Piwik."
+
+#. Plugin Name of the plugin/theme
+msgid "WP-Piwik"
+msgstr "WP-Piwik"
+
+#. Plugin URI of the plugin/theme
+msgid "http://wordpress.org/extend/plugins/wp-piwik/"
+msgstr "http://wordpress.org/extend/plugins/wp-piwik/"
+
+#. Description of the plugin/theme
+msgid ""
+"Adds Piwik stats to your dashboard menu and Piwik code to your wordpress "
+"header."
+msgstr "Adiciona estatísticas Piwik ao seu menu do painel e código Piwik no seu cabeçalho wordpress."
+
+#. Author of the plugin/theme
+msgid "Andr&eacute; Br&auml;kling"
+msgstr "http://www.braekling.de"
+
+#. Author URI of the plugin/theme
+msgid "http://www.braekling.de"
+msgstr "http://www.braekling.de"
diff --git a/wp-content/plugins/wp-piwik/languages/wp-piwik-ro_RO.mo b/wp-content/plugins/wp-piwik/languages/wp-piwik-ro_RO.mo
index fcdf76cb27114a8b62e851176d851efbfba34b15..b7154458da33110a13f45349d7c686bf9c1128b5 100644
Binary files a/wp-content/plugins/wp-piwik/languages/wp-piwik-ro_RO.mo and b/wp-content/plugins/wp-piwik/languages/wp-piwik-ro_RO.mo differ
diff --git a/wp-content/plugins/wp-piwik/languages/wp-piwik-ro_RO.po b/wp-content/plugins/wp-piwik/languages/wp-piwik-ro_RO.po
index e381e3dc6dbb5b8527140dfa9d55a18632b11513..5ea28d0380b557f66a61f7d3a2154d2b1ea7ef9f 100644
--- a/wp-content/plugins/wp-piwik/languages/wp-piwik-ro_RO.po
+++ b/wp-content/plugins/wp-piwik/languages/wp-piwik-ro_RO.po
@@ -1,184 +1,1266 @@
+# Copyright (C) 2015 WP-Piwik
 # This file is distributed under the same license as the WP-Piwik package.
-# Andre Braekling <webmaster@braekling.de>, 2009.
-# FatCow http://www.fatcow.com, 2009.
-msgid ""
-msgstr ""
-"Project-Id-Version: 0.3.0\n"
-"Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-piwik\n"
-"POT-Creation-Date: 2009-06-09 19:05+0000\n"
-"PO-Revision-Date: 2012-03-14 16:52+0200\n"
-"X-Poedit-Language: Romanian\n"
-"X-Poedit-Country: Romania\n"
-"Language-Team: Web Geeks\n"
-"Last-Translator: \n"
+# Translators:
+# Andre Braekling <webmaster@braekling.de>, 2009
+# FatCow http://www.fatcow.com, 2009
+msgid ""
+msgstr ""
+"Project-Id-Version: WP-Piwik\n"
+"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-piwik\n"
+"POT-Creation-Date: 2015-07-22 10:25:29+00:00\n"
+"PO-Revision-Date: 2015-07-22 10:33+0000\n"
+"Last-Translator: André Bräkling\n"
+"Language-Team: Romanian (Romania) (http://www.transifex.com/projects/p/wp-piwik/language/ro_RO/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Poedit-SourceCharset: utf-8\n"
+"Language: ro_RO\n"
+"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
+
+#: classes/WP_Piwik/Admin/Settings.php:24
+msgid "Reload"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:27
+msgid "Changes saved."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:45
+msgid "Save Changes"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:46
+msgid "Thanks for using WP-Piwik!"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid "WP-Piwik %s is successfully connected to Piwik %s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid "You are running WordPress %s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid ""
+"You are running a WordPress %s blog network (WPMU). WP-Piwik will handle "
+"your sites as different websites."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:53
+msgid ""
+"WP-Piwik %s was not able to connect to Piwik using your configuration. Check"
+" the &raquo;Connect to Piwik&laquo; section below."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:56
+msgid ""
+"WP-Piwik %s has to be connected to Piwik first. Check the &raquo;Connect to "
+"Piwik&laquo; section below."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:60
+msgid "Connect to Piwik"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:65
+msgid "Show Statistics"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:69
+msgid "Enable Tracking"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:74
+msgid "Expert Settings"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:78 classes/WP_Piwik.php:923
+msgid "Support"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:82
+msgid "Credits"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid ""
+"WP-Piwik is a WordPress plugin to show a selection of Piwik stats in your "
+"WordPress admin dashboard and to add and configure your Piwik tracking code."
+" To use this you will need your own Piwik instance. If you do not already "
+"have a Piwik setup, you have two simple options: use either"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "Self-hosted"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "or"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "Cloud-hosted"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:98
+msgid ""
+"Neither cURL nor fopen are available. So WP-Piwik can not use the HTTP API "
+"and not connect to Piwik Pro."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:98
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
+msgid "More information"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid "You can choose between three connection methods:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:103
+msgid "Self-hosted (HTTP API, default)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"This is the default option for a self-hosted Piwik and should work for most "
+"configurations. WP-Piwik will connect to Piwik using http(s)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:104
+msgid "Self-hosted (PHP API)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"Choose this, if your self-hosted Piwik and WordPress are running on the same"
+" machine and you know the full server path to your Piwik instance."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:105
+msgid "Cloud-hosted (Piwik Pro)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"If you are using a cloud-hosted Piwik by Piwik Pro, you can simply use this "
+"option."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:101
+msgid "Piwik Mode"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:102
+msgid "Disabled (WP-Piwik will not connect to Piwik)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:108
+msgid "Piwik URL"
+msgstr "Piwik URL"
+
+#: classes/WP_Piwik/Admin/Settings.php:108
+msgid ""
+"Enter your Piwik URL. This is the same URL you use to access your Piwik "
+"instance, e.g. http://www.example.com/piwik/."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:109
+msgid "Piwik path"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:109
+msgid "Enter the file path to your Piwik instance, e.g. /var/www/piwik/."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:110
+msgid "Piwik user"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:110
+msgid ""
+"Enter your Piwik Pro username. It is also part of your URL: "
+"http://USERNAME.piwik.pro."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid "Auth token"
+msgstr "Simbol Auth"
+
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid ""
+"Enter your Piwik auth token here. It is an alphanumerical code like "
+"0a1b2c34d56e78901fa2bc3d45678efa."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid "See %sWP-Piwik FAQ%s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:116
+msgid "Auto config"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:116
+msgid ""
+"Check this to automatically choose your blog from your Piwik sites by URL. "
+"If your blog is not added to Piwik yet, WP-Piwik will add a new site."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:127
+msgid "Determined site"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:132
+msgid "Select site"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:140
+msgid "Piwik default date"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:141
+#: classes/WP_Piwik/Admin/Settings.php:154
+msgid "Today"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:142
+#: classes/WP_Piwik/Admin/Settings.php:153
+msgid "Yesterday"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:143
+msgid "Current month"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:144
+msgid "Last month"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:145
+msgid "Current week"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:146
+msgid "Last week"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:147
+msgid "Default date shown on statistics page."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:149
+msgid "Show SEO data"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:149
+msgid "Display SEO ranking data on statistics page."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:149
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Slow!"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:151
+msgid "Dashboard overview"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:152
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:192
+#: classes/WP_Piwik/Admin/Settings.php:213
+#: classes/WP_Piwik/Admin/Settings.php:304
+msgid "Disabled"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:155
+msgid "Last 30 days"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:156
+msgid "Enable WP-Piwik dashboard widget &quot;Overview&quot;."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:158
+msgid "Dashboard graph"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:158
+msgid "Enable WP-Piwik dashboard widget &quot;Graph&quot;."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Dashboard SEO"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Enable WP-Piwik dashboard widget &quot;SEO&quot;."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:162
+msgid "Show graph on WordPress Toolbar"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:162
+msgid "Display a last 30 days visitor graph on WordPress' toolbar."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:164
+msgid "Display stats to"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:171
+msgid "Choose user roles allowed to see the statistics page."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:173
+msgid "Show per post stats"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:173
+msgid "Show stats about single posts at the post edit admin page."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:175
+msgid "Piwik shortcut"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:175
+msgid "Display a shortcut to Piwik itself."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:177
+msgid "WP-Piwik display name"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:177
+msgid "Plugin name shown in WordPress."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:179
+msgid "Enable shortcodes"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:179
+msgid "Enable shortcodes in post or page content."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "You can choose between four tracking code modes:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"WP-Piwik will not add the tracking code. Use this, if you want to add the "
+"tracking code to your template files or you use another plugin to add the "
+"tracking code."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:193
+msgid "Default tracking"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "WP-Piwik will use Piwik's standard tracking code."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:194
+msgid "Use js/index.php"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"You can choose this tracking code, to deliver a minified proxy code and to "
+"avoid using the files called piwik.js or piwik.php."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "See %sreadme file%s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:195
+msgid "Use proxy script"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "Use this tracking code to not reveal the Piwik server URL."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:210
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid "See %sPiwik FAQ%s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:196
+msgid "Enter manually"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"Enter your own tracking code manually. You can choose one of the prior "
+"options, pre-configure your tracking code and switch to manually editing at "
+"last."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "Use the placeholder {ID} to add the Piwik site ID."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:191
+msgid "Add tracking code"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:199
+msgid "Tracking code"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:201
+msgid "JavaScript code position"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:202
+msgid "Footer"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:203
+msgid "Header"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:204
+msgid ""
+"Choose whether the JavaScript code is added to the footer or the header."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:206
+msgid "Noscript code"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+msgid "Add &lt;noscript&gt;"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+msgid "Adds the &lt;noscript&gt; code to your footer."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Disabled in proxy mode."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Add rec parameter to noscript code"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Enable tracking for visitors without JavaScript (not recommended)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:212
+msgid "Enable content tracking"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:214
+msgid "Track all content blocks"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:215
+msgid "Track only visible content blocks"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:216
+msgid ""
+"Content tracking allows you to track interaction with the content of a web "
+"page or application."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:216
+#: classes/WP_Piwik/Admin/Settings.php:218
+#: classes/WP_Piwik/Admin/Settings.php:222
+#: classes/WP_Piwik/Admin/Settings.php:224
+#: classes/WP_Piwik/Admin/Settings.php:226
+#: classes/WP_Piwik/Admin/Settings.php:247
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "See %sPiwik documentation%s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:218
+msgid "Track search"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:218
+msgid "Use Piwik's advanced Site Search Analytics feature."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid "Track 404"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid ""
+"WP-Piwik can automatically add a 404-category to track 404-page-visits."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:222
+msgid "Add annotation on new post"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:222
+msgid "Add a Piwik annotation on each new post."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:224
+msgid "Show custom variables box"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:224
+msgid " Show a &quot;custom variables&quot; edit box on post edit page."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:226
+msgid "Add new file types for download tracking"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:226
+msgid ""
+"Add file extensions for download tracking, divided by a vertical bar "
+"(&#124;)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:228
+msgid "Disable cookies"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:228
+msgid "Disable all tracking cookies for a visitor."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:230
+msgid "Limit cookie lifetime"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:230
+msgid ""
+"You can limit the cookie lifetime to avoid tracking your users over a longer"
+" period as necessary."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:232
+msgid "Visitor timeout (seconds)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:234
+msgid "Session timeout (seconds)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:236
+msgid "Referral timeout (seconds)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:238
+msgid "Track admin pages"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:238
+msgid ""
+"Enable to track users on admin pages (remember to configure the tracking "
+"filter appropriately)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:241
+msgid "Tracking filter"
+msgstr "Filtru de urmărire"
+
+#: classes/WP_Piwik/Admin/Settings.php:245
+msgid "Choose users by user role you do <strong>not</strong> want to track."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:247
+msgid "Track subdomains in the same website"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:247
+msgid "Adds *.-prefix to cookie domain."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "Do not count subdomains as outlink"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "Adds *.-prefix to tracked domain."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:251
+msgid "Track RSS feeds"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:251
+msgid "Enable to track posts in feeds via tracking pixel."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:253
+msgid "Track RSS feed links as campaign"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:255
+msgid "RSS feed campaign"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:255
+msgid "Keyword: post name."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:257
+msgid "Enable heartbeat timer"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:257
+msgid ""
+"Enable a heartbeat timer to get more accurate visit lengths by sending "
+"periodical HTTP ping requests as long as the site is opened. Enter the time "
+"between the pings in seconds (Piwik default: 15) to enable or 0 to disable "
+"this feature. <strong>Note:</strong> This will cause a lot of additional "
+"HTTP requests on your site."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:262
+msgid ""
+"Usually, you do not need to change these settings. If you want to do so, you"
+" should know what you do or you got an expert's advice."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:264
+msgid "Enable cache"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:264
+msgid "Cache API calls, which not contain today's values, for a week."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:267
+msgid "HTTP connection via"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:268
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "cURL"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:269
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "fopen"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:270
+msgid ""
+"Choose whether WP-Piwik should use cURL or fopen to connect to Piwik in HTTP"
+" or Pro mode."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:272
+msgid "HTTP method"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:273
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "POST"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:274
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "GET"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:275
+msgid "Choose whether WP-Piwik should use POST or GET in HTTP or Pro mode."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:277
+msgid "Disable time limit"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:277
+msgid "Use set_time_limit(0) if stats page causes a time out."
+msgstr ""
 
-#: dashboard/browsers.php:8
-#: dashboard/browsers.php:37
-msgid "Browser"
-msgstr "Browser-ul"
+#: classes/WP_Piwik/Admin/Settings.php:279
+msgid "Connection timeout"
+msgstr ""
 
-msgid "Resolution"
-msgstr "Rezoluţie"
+#: classes/WP_Piwik/Admin/Settings.php:281
+msgid "Disable SSL peer verification"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:281
+msgid "not recommended"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:283
+msgid "User agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:284
+msgid "Use the PHP default user agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:284
+msgid "empty"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:285
+msgid "Define a specific user agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:287
+msgid "Specific user agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:289
+msgid "Add data-cfasync=false"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:291
+msgid "CDN URL"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:293
+msgid "CDN URL (SSL)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:295
+msgid "Force Piwik to use a specific protocol"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:296
+msgid "Disabled (default)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:297
+msgid "http"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:298
+msgid "https (SSL)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:299
+msgid ""
+"Choose if you want to explicitly force Piwik to use HTTP or HTTPS. Does not "
+"work with a CDN URL."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:301
+msgid "Update notice"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:302
+msgid "Show always if WP-Piwik is updated"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:303
+msgid "Show only if WP-Piwik is updated and settings were changed"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:305
+msgid "Choose if you want to get an update notice if WP-Piwik is updated."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:466
+msgid "Donate"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:468
+msgid "If you like WP-Piwik, you can support its development by a donation:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:506
+msgid "My Amazon.de wishlist"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:509
+#: classes/WP_Piwik/Admin/Settings.php:556
+msgid "Please don't forget to vote the compatibility at the"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid "Thank you very much for your donation"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid "the Piwik team itself"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid ", and all people flattering this"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:541
+msgid ""
+"Graphs powered by <a href=\"http://www.jqplot.com/\">jqPlot</a> (License: "
+"GPL 2.0 and MIT) and <a "
+"href=\"http://omnipotent.net/jquery.sparkline/\">jQuery Sparklines</a> "
+"(License: New BSD License)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:542
+msgid "Metabox support inspired by"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:543
+msgid "Tabbed settings page suggested by the"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:544
+msgid "Thank you very much"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:544
+msgid "for your translation work"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:545
+msgid ""
+"Thank you very much, all users who send me mails containing criticism, "
+"commendation, feature requests and bug reports! You help me to make WP-Piwik"
+" much better."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:546
+msgid ""
+"Thank <strong>you</strong> for using my plugin. It is the best commendation "
+"if my piece of code is really used!"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:555
+msgid "The best place to get help:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:555
+msgid "WP-Piwik support forum"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:558
+msgid "Debugging"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:559
+msgid ""
+"Either allow_url_fopen has to be enabled <em>or</em> cURL has to be "
+"available:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:562
+msgid "cURL is"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:563
+#: classes/WP_Piwik/Admin/Settings.php:568
+msgid "not"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:564
+msgid "available"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:567
+msgid "allow_url_fopen is"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:569
+msgid "enabled"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "is used."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:573
+msgid "Determined Piwik base URL is"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:577
+msgid "Tools"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:579
+msgid "Run testscript"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:580
+msgid "Sitebrowser"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:581
+msgid "Clear cache"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:582
+msgid "Are you sure you want to clear all settings?"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:582
+msgid "Reset WP-Piwik"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:584
+msgid "Latest support threads on WordPress.org"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:635
+msgid "Settings cleared (except connection settings)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:651
+msgid "Cache cleared."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:17
+msgid "site"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:18
+msgid "sites"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:24
+msgid "No site configured yet."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:29
+msgid "Blog ID"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:30
+msgid "Title"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:31
+msgid "URL"
+msgstr ""
 
-msgid "Operating System"
-msgstr "Sistem de operare"
+#: classes/WP_Piwik/Admin/Sitebrowser.php:32
+msgid "Site ID (Piwik)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:79
+msgid "Site not created yet."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Statistics.php:12
+msgid "Statistics"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Statistics.php:20
+msgid "Currently shown stats:"
+msgstr ""
+
+#: classes/WP_Piwik/Request/Php.php:27
+msgid "Could not resolve"
+msgstr ""
+
+#: classes/WP_Piwik/Request/Php.php:27
+msgid "realpath() returns false"
+msgstr ""
+
+#: classes/WP_Piwik/Request/Php.php:39
+msgid "Class Piwik\\FrontController does not exists."
+msgstr ""
+
+#: classes/WP_Piwik/Request/Php.php:42
+msgid "Class Piwik\\API\\Request does not exists."
+msgstr ""
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:10
+msgid "Piwik Custom Variables"
+msgstr ""
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
+msgid "Name"
+msgstr ""
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
+msgid "Value"
+msgstr ""
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
+msgid "Set custom variables for a page view"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:18
+msgid "Browser Details"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:37
+#: classes/WP_Piwik/Widget/Browsers.php:37
+#: classes/WP_Piwik/Widget/Chart.php:43
+#: classes/WP_Piwik/Widget/Noresult.php:23
+#: classes/WP_Piwik/Widget/Overview.php:24
+#: classes/WP_Piwik/Widget/Plugins.php:23 classes/WP_Piwik/Widget/Post.php:25
+#: classes/WP_Piwik/Widget/Screens.php:35
+#: classes/WP_Piwik/Widget/Search.php:23 classes/WP_Piwik/Widget/Seo.php:20
+#: classes/WP_Piwik/Widget/SystemDetails.php:33
+#: classes/WP_Piwik/Widget/Systems.php:33
+#: classes/WP_Piwik/Widget/Visitors.php:35 classes/WP_Piwik/Widget.php:91
+msgid "Piwik error"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+msgid "Browser"
+msgstr "Browser-ul"
 
-#: dashboard/browsers.php:37
-#: dashboard/keywords.php:13
-#: dashboard/visitors.php:56
-#: dashboard/websites.php:13
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+#: classes/WP_Piwik/Widget/Screens.php:37
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+#: classes/WP_Piwik/Widget/Visitors.php:57 classes/WP_Piwik/Widget.php:100
 msgid "Unique"
 msgstr "Unic"
 
-#: dashboard/browsers.php:37
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+#: classes/WP_Piwik/Widget/Plugins.php:25
+#: classes/WP_Piwik/Widget/Screens.php:37
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
 msgid "Percent"
 msgstr "%"
 
-#: dashboard/keywords.php:8
+#: classes/WP_Piwik/Widget/BrowserDetails.php:66
+#: classes/WP_Piwik/Widget/Browsers.php:66
+#: classes/WP_Piwik/Widget/Screens.php:64
+#: classes/WP_Piwik/Widget/SystemDetails.php:62
+#: classes/WP_Piwik/Widget/Systems.php:62
+msgid "Others"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Browsers.php:18
+msgid "Browsers"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Chart.php:19
+#: classes/WP_Piwik/Widget/Overview.php:41 classes/WP_Piwik/Widget/Post.php:37
+#: classes/WP_Piwik/Widget/Visitors.php:17
+msgid "Visitors"
+msgstr "Vizitatori"
+
+#: classes/WP_Piwik/Widget/Chart.php:71
+msgid ""
+"The graph contains the values shown in the table below (visitors / unique / "
+"bounces). The red line show a linear trendline (unique)."
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Keywords.php:16
 msgid "Keywords"
 msgstr "Cuvinte cheie"
 
-#: dashboard/keywords.php:13
+#: classes/WP_Piwik/Widget/Noresult.php:16
+#: classes/WP_Piwik/Widget/Search.php:16
+msgid "Site Search"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
 msgid "Keyword"
 msgstr "Cuvinte cheie"
 
-#: dashboard/overview.php:8
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+msgid "Requests"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Bounced"
+msgstr "Bounced"
+
+#: classes/WP_Piwik/Widget/Overview.php:17 classes/WP_Piwik/Widget/Post.php:18
 msgid "Overview"
 msgstr "Prezentare generală"
 
-#: dashboard/overview.php:16
-#: dashboard/visitors.php:21
-msgid "Visitors"
-msgstr "Vizitatori"
-
-#: dashboard/overview.php:17
+#: classes/WP_Piwik/Widget/Overview.php:42 classes/WP_Piwik/Widget/Post.php:38
 msgid "Unique visitors"
 msgstr "Vizitatori unici"
 
-#: dashboard/overview.php:18
+#: classes/WP_Piwik/Widget/Overview.php:43 classes/WP_Piwik/Widget/Post.php:39
 msgid "Page views"
 msgstr "Vizualizări de pagină"
 
-#: dashboard/overview.php:19
+#: classes/WP_Piwik/Widget/Overview.php:44 classes/WP_Piwik/Widget/Post.php:40
+msgid "Total time spent"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Overview.php:45 classes/WP_Piwik/Widget/Post.php:42
+msgid "Bounce count"
+msgstr "Bounce count"
+
+#: classes/WP_Piwik/Widget/Overview.php:48 classes/WP_Piwik/Widget/Post.php:41
+msgid "Time/visit"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Overview.php:48
 msgid "Max. page views in one visit"
 msgstr "Max. page views într-o singură vizită"
 
-#: dashboard/overview.php:20
-msgid "Total time spent by visitors"
-msgstr "Timpul total petrecut de vizitatori"
+#: classes/WP_Piwik/Widget/Overview.php:49 classes/WP_Piwik/Widget/Post.php:46
+msgid "Shortcut"
+msgstr ""
 
-#: dashboard/overview.php:21
-msgid "Bounce count"
-msgstr "Bounce count"
+#: classes/WP_Piwik/Widget/Pages.php:16
+msgid "Pages"
+msgstr ""
 
-#: dashboard/visitors.php:56
-msgid "Date"
-msgstr "Data"
+#: classes/WP_Piwik/Widget/Plugins.php:16
+msgid "Plugins"
+msgstr ""
 
-#: dashboard/visitors.php:56
+#: classes/WP_Piwik/Widget/Plugins.php:25
+msgid "Plugin"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Plugins.php:25
+#: classes/WP_Piwik/Widget/Visitors.php:57 classes/WP_Piwik/Widget.php:102
 msgid "Visits"
 msgstr "Vizite"
 
-#: dashboard/visitors.php:56
-msgid "Bounced"
-msgstr "Bounced"
+#: classes/WP_Piwik/Widget/Post.php:43
+msgid "Min. generation time"
+msgstr ""
 
-#: dashboard/websites.php:8
-msgid "Websites"
-msgstr "Site-uri Web"
+#: classes/WP_Piwik/Widget/Post.php:44
+msgid "Max. generation time"
+msgstr ""
 
-#: dashboard/websites.php:13
-msgid "Website"
-msgstr "Site-ul Web"
+#: classes/WP_Piwik/Widget/Referrers.php:16
+msgid "Referrers"
+msgstr ""
 
-#: wp-piwik.php:49
-#: wp-piwik.php:147
-msgid "Piwik Statistics"
-msgstr "Statistici piwik"
+#: classes/WP_Piwik/Widget/Screens.php:16
+msgid "Resolutions"
+msgstr ""
 
-#. #-#-#-#-#  plugin.pot (PACKAGE VERSION)  #-#-#-#-#
-#. Plugin Name of an extension
-#: wp-piwik.php:49
-msgid "WP-Piwik"
-msgstr "WP-Piwik"
+#: classes/WP_Piwik/Widget/Screens.php:37
+msgid "Resolution"
+msgstr "Rezoluţie"
 
-#: wp-piwik.php:53
-#: wp-piwik.php:185
-msgid "WP-Piwik Settings"
-msgstr "Setările WP-Piwik"
+#: classes/WP_Piwik/Widget/Seo.php:13
+msgid "SEO"
+msgstr ""
 
-#: wp-piwik.php:59
-msgid "Settings"
-msgstr "Setări"
+#: classes/WP_Piwik/Widget/SystemDetails.php:14
+msgid "Operation System Details"
+msgstr ""
 
-#: wp-piwik.php:112
-msgid "Remote access to Piwik not possible. Enable allow_url_fopen or CURL."
-msgstr "Acces la distanţă la Piwik nu este posibil. Activaţi allow_url_fopen sau îndoire."
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+msgid "Operation System"
+msgstr ""
 
-#: wp-piwik.php:190
-msgid "Account settings"
-msgstr "Setări cont"
+#: classes/WP_Piwik/Widget/Systems.php:14
+msgid "Operation Systems"
+msgstr ""
 
-#: wp-piwik.php:192
-msgid "Piwik URL"
-msgstr "Piwik URL"
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Date"
+msgstr "Data"
 
-#: wp-piwik.php:196
-msgid "Auth token"
-msgstr "Simbol Auth"
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Page Views"
+msgstr ""
+
+#: classes/WP_Piwik/Widget.php:104
+msgid "Hits"
+msgstr ""
 
-#: wp-piwik.php:200
-msgid "To enable Piwik statistics, please enter your Piwik base URL (like http://mydomain.com/piwik) and your personal authentification token. You can get the token on the API page inside your Piwik interface. It looks like \"1234a5cd6789e0a12345b678cd9012ef\"."
-msgstr "Piwik statisticilor, vă rugăm să introduceţi URL bază Piwik (cum ar fi http://mydomain.com/piwik) şi dumneavoastră simbol authentification personale. Puteţi obţine simbolul pe pagina API în interiorul interfaţa dumneavoastră Piwik. Se pare ca \"1234a5cd6789e0a12345b678cd9012ef\"."
+#: classes/WP_Piwik/Widget.php:106
+msgid "Actions"
+msgstr ""
 
-#: wp-piwik.php:205
-#: wp-piwik.php:207
-msgid "An error occured"
-msgstr "Eroare"
+#: classes/WP_Piwik/Widget.php:162
+msgid "No data available."
+msgstr ""
 
-#: wp-piwik.php:205
-msgid "Please check URL and auth token. You need at least view access to one site."
-msgstr "Vă rugăm să verificaţi URL-ul şi auth simbol. Nevoie vizualizaţi cel puțin accesul la un site."
+#: classes/WP_Piwik/Widget.php:293
+msgid "week"
+msgstr ""
 
-#: wp-piwik:php:215
-msgid "Choose site"
-msgstr "Alege site-ul"
+#: classes/WP_Piwik.php:193
+msgid "%s %s installed."
+msgstr ""
 
-#: wp-piwik.php:221
-msgid "If your template uses wp_footer(), WP-Piwik can automatically add the Piwik javascript code to your blog."
-msgstr "Dacă şablonul utilizează wp_footer(), WP-Piwik poate adăuga automat codul javascript Piwik la blog-ul."
+#: classes/WP_Piwik.php:193
+msgid "Next you should connect to Piwik"
+msgstr ""
 
-#: wp-piwik.php:226
-msgid "Add script to wp_footer()"
-msgstr "Adăugaţi script la wp_footer()"
+#: classes/WP_Piwik.php:227
+msgid "%s updated to %s."
+msgstr ""
 
-msgid "Tracking filter"
-msgstr "Filtru de urmărire"
+#: classes/WP_Piwik.php:227
+msgid "Please validate your configuration"
+msgstr ""
+
+#: classes/WP_Piwik.php:259 classes/WP_Piwik.php:481
+msgid "Settings"
+msgstr "Setări"
+
+#: classes/WP_Piwik.php:262
+msgid "Important"
+msgstr ""
+
+#: classes/WP_Piwik.php:343 classes/WP_Piwik.php:365
+msgid "Piwik Statistics"
+msgstr "Statistici piwik"
 
-msgid "Choose users by user role you do <strong>not</strong> want to track. Requires enabled \"Add script to wp_footer()\"-functionality."
-msgstr "Selectaţi utilizatorii de rolul de utilizator tu a face <strong>nu</strong> nevoie pentru a urmări. Necesită activat \"Adăuga script-ul (wp_footer)\"-funcţionalitate."
+#: classes/WP_Piwik.php:453
+msgid "Configure WP-Piwik"
+msgstr ""
+
+#: classes/WP_Piwik.php:923
+msgid "An error occured"
+msgstr "Eroare"
+
+#: classes/WP_Piwik.php:1191
+msgid "Cheatin&#8217; uh?"
+msgstr ""
+
+#: wp-piwik.php:60
+msgid ""
+"WP-Piwik requires at least PHP 5.3. You are using the deprecated version %s."
+" Please update PHP to use WP-Piwik."
+msgstr ""
 
-#: wp-piwik.php:229
-msgid "Save settings"
-msgstr "Salvaţi setările"
+#. Plugin Name of the plugin/theme
+msgid "WP-Piwik"
+msgstr "WP-Piwik"
 
-#. Plugin URI of an extension
-msgid "http://dev.braekling.de/wordpress-plugins/dev/wp-piwik/index.html"
-msgstr "http://dev.braekling.de/Wordpress-plugins/dev/WP-piwik/index.html"
+#. Plugin URI of the plugin/theme
+msgid "http://wordpress.org/extend/plugins/wp-piwik/"
+msgstr ""
 
-#. Description of an extension
-msgid "Adds Piwik stats to your dashboard menu and Piwik code to your wordpress footer."
-msgstr "Adaugă Piwik stats meniul tabloul de bord şi Piwik codul de subsol dumneavoastră wordpress."
+#. Description of the plugin/theme
+msgid ""
+"Adds Piwik stats to your dashboard menu and Piwik code to your wordpress "
+"header."
+msgstr ""
 
-#. Author of an extension
-msgid "André Bräkling"
-msgstr "André Bräkling"
+#. Author of the plugin/theme
+msgid "Andr&eacute; Br&auml;kling"
+msgstr ""
 
-#. Author URI of an extension
+#. Author URI of the plugin/theme
 msgid "http://www.braekling.de"
 msgstr "http://www.braekling.de"
-
diff --git a/wp-content/plugins/wp-piwik/languages/wp-piwik-ru_RU.mo b/wp-content/plugins/wp-piwik/languages/wp-piwik-ru_RU.mo
index 1ef237d519bcb021f6b1b364f83c9cb33f3a184a..ce43ea731b70fc967516970b41b56c93b74adc14 100644
Binary files a/wp-content/plugins/wp-piwik/languages/wp-piwik-ru_RU.mo and b/wp-content/plugins/wp-piwik/languages/wp-piwik-ru_RU.mo differ
diff --git a/wp-content/plugins/wp-piwik/languages/wp-piwik-ru_RU.po b/wp-content/plugins/wp-piwik/languages/wp-piwik-ru_RU.po
index e05ec3abae8344e03bda7fad0d5fbf03bb7a111b..9d0b98b9af303c630b4c7c44ecd4bc1106ff54e2 100644
--- a/wp-content/plugins/wp-piwik/languages/wp-piwik-ru_RU.po
+++ b/wp-content/plugins/wp-piwik/languages/wp-piwik-ru_RU.po
@@ -1,406 +1,1265 @@
-# Translation of the WordPress plugin WP-Piwik 0.8.0 by Andr&eacute; Br&auml;kling.
-# Copyright (C) 2010 Andr&eacute; Br&auml;kling
-# Copyright (C) 2011 Natalya Pastukhova
+# Copyright (C) 2015 WP-Piwik
 # This file is distributed under the same license as the WP-Piwik package.
-# Andr&eacute; Br&auml;kling <webmaster@braekling.de>, 2011.
-#
+# Translators:
+# Andr&eacute; Br&auml;kling <webmaster@braekling.de>, 2011
 msgid ""
 msgstr ""
-"Project-Id-Version: WP-Piwik 0.8.4\n"
-"Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-piwik\n"
-"POT-Creation-Date: 2010-07-19 18:06+0000\n"
-"PO-Revision-Date: 2011-05-18 07:02+0100\n"
-"Last-Translator: \n"
-"Language-Team: \n"
+"Project-Id-Version: WP-Piwik\n"
+"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-piwik\n"
+"POT-Creation-Date: 2015-07-22 10:25:29+00:00\n"
+"PO-Revision-Date: 2015-07-22 10:33+0000\n"
+"Last-Translator: André Bräkling\n"
+"Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/wp-piwik/language/ru_RU/)\n"
 "MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
+"Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Language: ru_RU\n"
+"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
 
-#: dashboard/browsers.php:12
-#: dashboard/browsers.php:33
-msgid "Browser"
-msgstr "Browser"
+#: classes/WP_Piwik/Admin/Settings.php:24
+msgid "Reload"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:27
+msgid "Changes saved."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:45
+msgid "Save Changes"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:46
+msgid "Thanks for using WP-Piwik!"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid "WP-Piwik %s is successfully connected to Piwik %s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid "You are running WordPress %s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid ""
+"You are running a WordPress %s blog network (WPMU). WP-Piwik will handle "
+"your sites as different websites."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:53
+msgid ""
+"WP-Piwik %s was not able to connect to Piwik using your configuration. Check"
+" the &raquo;Connect to Piwik&laquo; section below."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:56
+msgid ""
+"WP-Piwik %s has to be connected to Piwik first. Check the &raquo;Connect to "
+"Piwik&laquo; section below."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:60
+msgid "Connect to Piwik"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:65
+msgid "Show Statistics"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:69
+msgid "Enable Tracking"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:74
+msgid "Expert Settings"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:78 classes/WP_Piwik.php:923
+msgid "Support"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:82
+msgid "Credits"
+msgstr "Благодарности"
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid ""
+"WP-Piwik is a WordPress plugin to show a selection of Piwik stats in your "
+"WordPress admin dashboard and to add and configure your Piwik tracking code."
+" To use this you will need your own Piwik instance. If you do not already "
+"have a Piwik setup, you have two simple options: use either"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "Self-hosted"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "or"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "Cloud-hosted"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:98
+msgid ""
+"Neither cURL nor fopen are available. So WP-Piwik can not use the HTTP API "
+"and not connect to Piwik Pro."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:98
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
+msgid "More information"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid "You can choose between three connection methods:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:103
+msgid "Self-hosted (HTTP API, default)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"This is the default option for a self-hosted Piwik and should work for most "
+"configurations. WP-Piwik will connect to Piwik using http(s)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:104
+msgid "Self-hosted (PHP API)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"Choose this, if your self-hosted Piwik and WordPress are running on the same"
+" machine and you know the full server path to your Piwik instance."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:105
+msgid "Cloud-hosted (Piwik Pro)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"If you are using a cloud-hosted Piwik by Piwik Pro, you can simply use this "
+"option."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:101
+msgid "Piwik Mode"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:102
+msgid "Disabled (WP-Piwik will not connect to Piwik)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:108
+msgid "Piwik URL"
+msgstr "Piwik URL"
+
+#: classes/WP_Piwik/Admin/Settings.php:108
+msgid ""
+"Enter your Piwik URL. This is the same URL you use to access your Piwik "
+"instance, e.g. http://www.example.com/piwik/."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:109
+msgid "Piwik path"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:109
+msgid "Enter the file path to your Piwik instance, e.g. /var/www/piwik/."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:110
+msgid "Piwik user"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:110
+msgid ""
+"Enter your Piwik Pro username. It is also part of your URL: "
+"http://USERNAME.piwik.pro."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid "Auth token"
+msgstr "Также токен"
+
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid ""
+"Enter your Piwik auth token here. It is an alphanumerical code like "
+"0a1b2c34d56e78901fa2bc3d45678efa."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid "See %sWP-Piwik FAQ%s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:116
+msgid "Auto config"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:116
+msgid ""
+"Check this to automatically choose your blog from your Piwik sites by URL. "
+"If your blog is not added to Piwik yet, WP-Piwik will add a new site."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:127
+msgid "Determined site"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:132
+msgid "Select site"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:140
+msgid "Piwik default date"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:141
+#: classes/WP_Piwik/Admin/Settings.php:154
+msgid "Today"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:142
+#: classes/WP_Piwik/Admin/Settings.php:153
+msgid "Yesterday"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:143
+msgid "Current month"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:144
+msgid "Last month"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:145
+msgid "Current week"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:146
+msgid "Last week"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:147
+msgid "Default date shown on statistics page."
+msgstr "Стандартная дата, которая отображается на странице статистики."
+
+#: classes/WP_Piwik/Admin/Settings.php:149
+msgid "Show SEO data"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:149
+msgid "Display SEO ranking data on statistics page."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:149
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Slow!"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:151
+msgid "Dashboard overview"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:152
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:192
+#: classes/WP_Piwik/Admin/Settings.php:213
+#: classes/WP_Piwik/Admin/Settings.php:304
+msgid "Disabled"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:155
+msgid "Last 30 days"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:156
+msgid "Enable WP-Piwik dashboard widget &quot;Overview&quot;."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:158
+msgid "Dashboard graph"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:158
+msgid "Enable WP-Piwik dashboard widget &quot;Graph&quot;."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Dashboard SEO"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Enable WP-Piwik dashboard widget &quot;SEO&quot;."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:162
+msgid "Show graph on WordPress Toolbar"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:162
+msgid "Display a last 30 days visitor graph on WordPress' toolbar."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:164
+msgid "Display stats to"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:171
+msgid "Choose user roles allowed to see the statistics page."
+msgstr "Выбери те пользовательские роли, которые могут просматривать статистики."
+
+#: classes/WP_Piwik/Admin/Settings.php:173
+msgid "Show per post stats"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:173
+msgid "Show stats about single posts at the post edit admin page."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:175
+msgid "Piwik shortcut"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:175
+msgid "Display a shortcut to Piwik itself."
+msgstr "ZПоказывает соединение с Piwik."
+
+#: classes/WP_Piwik/Admin/Settings.php:177
+msgid "WP-Piwik display name"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:177
+msgid "Plugin name shown in WordPress."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:179
+msgid "Enable shortcodes"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:179
+msgid "Enable shortcodes in post or page content."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "You can choose between four tracking code modes:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"WP-Piwik will not add the tracking code. Use this, if you want to add the "
+"tracking code to your template files or you use another plugin to add the "
+"tracking code."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:193
+msgid "Default tracking"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "WP-Piwik will use Piwik's standard tracking code."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:194
+msgid "Use js/index.php"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"You can choose this tracking code, to deliver a minified proxy code and to "
+"avoid using the files called piwik.js or piwik.php."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "See %sreadme file%s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:195
+msgid "Use proxy script"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "Use this tracking code to not reveal the Piwik server URL."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:210
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid "See %sPiwik FAQ%s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:196
+msgid "Enter manually"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"Enter your own tracking code manually. You can choose one of the prior "
+"options, pre-configure your tracking code and switch to manually editing at "
+"last."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "Use the placeholder {ID} to add the Piwik site ID."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:191
+msgid "Add tracking code"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:199
+msgid "Tracking code"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:201
+msgid "JavaScript code position"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:202
+msgid "Footer"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:203
+msgid "Header"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:204
+msgid ""
+"Choose whether the JavaScript code is added to the footer or the header."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:206
+msgid "Noscript code"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+msgid "Add &lt;noscript&gt;"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+msgid "Adds the &lt;noscript&gt; code to your footer."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Disabled in proxy mode."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Add rec parameter to noscript code"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Enable tracking for visitors without JavaScript (not recommended)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:212
+msgid "Enable content tracking"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:214
+msgid "Track all content blocks"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:215
+msgid "Track only visible content blocks"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:216
+msgid ""
+"Content tracking allows you to track interaction with the content of a web "
+"page or application."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:216
+#: classes/WP_Piwik/Admin/Settings.php:218
+#: classes/WP_Piwik/Admin/Settings.php:222
+#: classes/WP_Piwik/Admin/Settings.php:224
+#: classes/WP_Piwik/Admin/Settings.php:226
+#: classes/WP_Piwik/Admin/Settings.php:247
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "See %sPiwik documentation%s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:218
+msgid "Track search"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:218
+msgid "Use Piwik's advanced Site Search Analytics feature."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid "Track 404"
+msgstr "Отслеживание объектов 404"
+
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid ""
+"WP-Piwik can automatically add a 404-category to track 404-page-visits."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:222
+msgid "Add annotation on new post"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:222
+msgid "Add a Piwik annotation on each new post."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:224
+msgid "Show custom variables box"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:224
+msgid " Show a &quot;custom variables&quot; edit box on post edit page."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:226
+msgid "Add new file types for download tracking"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:226
+msgid ""
+"Add file extensions for download tracking, divided by a vertical bar "
+"(&#124;)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:228
+msgid "Disable cookies"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:228
+msgid "Disable all tracking cookies for a visitor."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:230
+msgid "Limit cookie lifetime"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:230
+msgid ""
+"You can limit the cookie lifetime to avoid tracking your users over a longer"
+" period as necessary."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:232
+msgid "Visitor timeout (seconds)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:234
+msgid "Session timeout (seconds)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:236
+msgid "Referral timeout (seconds)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:238
+msgid "Track admin pages"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:238
+msgid ""
+"Enable to track users on admin pages (remember to configure the tracking "
+"filter appropriately)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:241
+msgid "Tracking filter"
+msgstr "Фильтр отслеживания"
+
+#: classes/WP_Piwik/Admin/Settings.php:245
+msgid "Choose users by user role you do <strong>not</strong> want to track."
+msgstr "Выбери те пользовательские роли, которые ты <strong>не</strong> хочешь отслеживать."
+
+#: classes/WP_Piwik/Admin/Settings.php:247
+msgid "Track subdomains in the same website"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:247
+msgid "Adds *.-prefix to cookie domain."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "Do not count subdomains as outlink"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "Adds *.-prefix to tracked domain."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:251
+msgid "Track RSS feeds"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:251
+msgid "Enable to track posts in feeds via tracking pixel."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:253
+msgid "Track RSS feed links as campaign"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:255
+msgid "RSS feed campaign"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:255
+msgid "Keyword: post name."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:257
+msgid "Enable heartbeat timer"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:257
+msgid ""
+"Enable a heartbeat timer to get more accurate visit lengths by sending "
+"periodical HTTP ping requests as long as the site is opened. Enter the time "
+"between the pings in seconds (Piwik default: 15) to enable or 0 to disable "
+"this feature. <strong>Note:</strong> This will cause a lot of additional "
+"HTTP requests on your site."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:262
+msgid ""
+"Usually, you do not need to change these settings. If you want to do so, you"
+" should know what you do or you got an expert's advice."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:264
+msgid "Enable cache"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:264
+msgid "Cache API calls, which not contain today's values, for a week."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:267
+msgid "HTTP connection via"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:268
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "cURL"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:269
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "fopen"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:270
+msgid ""
+"Choose whether WP-Piwik should use cURL or fopen to connect to Piwik in HTTP"
+" or Pro mode."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:272
+msgid "HTTP method"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:273
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "POST"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:274
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "GET"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:275
+msgid "Choose whether WP-Piwik should use POST or GET in HTTP or Pro mode."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:277
+msgid "Disable time limit"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:277
+msgid "Use set_time_limit(0) if stats page causes a time out."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:279
+msgid "Connection timeout"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:281
+msgid "Disable SSL peer verification"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:281
+msgid "not recommended"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:283
+msgid "User agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:284
+msgid "Use the PHP default user agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:284
+msgid "empty"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:285
+msgid "Define a specific user agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:287
+msgid "Specific user agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:289
+msgid "Add data-cfasync=false"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:291
+msgid "CDN URL"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:293
+msgid "CDN URL (SSL)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:295
+msgid "Force Piwik to use a specific protocol"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:296
+msgid "Disabled (default)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:297
+msgid "http"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:298
+msgid "https (SSL)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:299
+msgid ""
+"Choose if you want to explicitly force Piwik to use HTTP or HTTPS. Does not "
+"work with a CDN URL."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:301
+msgid "Update notice"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:302
+msgid "Show always if WP-Piwik is updated"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:303
+msgid "Show only if WP-Piwik is updated and settings were changed"
+msgstr ""
 
-#: dashboard/browsers.php:22
-#: dashboard/pages.php:43
-#: dashboard/screens.php:22
-#: dashboard/systems.php:22
-msgid "Others"
-msgstr "Другие"
+#: classes/WP_Piwik/Admin/Settings.php:305
+msgid "Choose if you want to get an update notice if WP-Piwik is updated."
+msgstr ""
 
-#: dashboard/browsers.php:34
-#: dashboard/keywords.php:17
-#: dashboard/pages.php:22
-#: dashboard/screens.php:33
-#: dashboard/systems.php:35
-#: dashboard/visitors.php:53
-#: dashboard/websites.php:19
-#: wp-piwik.php:305
-msgid "Unique"
-msgstr "Уникально"
+#: classes/WP_Piwik/Admin/Settings.php:466
+msgid "Donate"
+msgstr ""
 
-#: dashboard/browsers.php:35
-#: dashboard/plugins.php:33
-#: dashboard/screens.php:34
-#: dashboard/systems.php:36
-msgid "Percent"
-msgstr "Процент"
+#: classes/WP_Piwik/Admin/Settings.php:468
+msgid "If you like WP-Piwik, you can support its development by a donation:"
+msgstr "Если тебе нравится WP-Piwik, ты можешь финансово поддержать наше дальнейшее развитие:"
 
-#: dashboard/keywords.php:12
-msgid "Keywords"
-msgstr "Ключевые слова"
+#: classes/WP_Piwik/Admin/Settings.php:506
+msgid "My Amazon.de wishlist"
+msgstr ""
 
-#: dashboard/keywords.php:17
-msgid "Keyword"
-msgstr "Ключевое слово"
+#: classes/WP_Piwik/Admin/Settings.php:509
+#: classes/WP_Piwik/Admin/Settings.php:556
+msgid "Please don't forget to vote the compatibility at the"
+msgstr ""
 
-#: dashboard/overview.php:12
-msgid "Overview"
-msgstr "Обзор"
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid "Thank you very much for your donation"
+msgstr "Огромное спасибо за твой взнос!"
 
-#: dashboard/overview.php:42
-#: dashboard/visitors.php:24
-msgid "Visitors"
-msgstr "Посетитель"
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid "the Piwik team itself"
+msgstr ""
 
-#: dashboard/overview.php:43
-msgid "Unique visitors"
-msgstr "Уникальные посетители"
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid ", and all people flattering this"
+msgstr ""
 
-#: dashboard/overview.php:44
-msgid "Page views"
-msgstr "Вид страниц"
+#: classes/WP_Piwik/Admin/Settings.php:541
+msgid ""
+"Graphs powered by <a href=\"http://www.jqplot.com/\">jqPlot</a> (License: "
+"GPL 2.0 and MIT) and <a "
+"href=\"http://omnipotent.net/jquery.sparkline/\">jQuery Sparklines</a> "
+"(License: New BSD License)."
+msgstr ""
 
-#: dashboard/overview.php:45
-msgid "Max. page views in one visit"
-msgstr "Максимальное количество просмотров за посещениеj"
+#: classes/WP_Piwik/Admin/Settings.php:542
+msgid "Metabox support inspired by"
+msgstr ""
 
-#: dashboard/overview.php:46
-msgid "Total time spent"
-msgstr "Проведенное время"
+#: classes/WP_Piwik/Admin/Settings.php:543
+msgid "Tabbed settings page suggested by the"
+msgstr ""
 
-msgid "Time/visit"
-msgstr "Время/посещение"
+#: classes/WP_Piwik/Admin/Settings.php:544
+msgid "Thank you very much"
+msgstr "Огромное спасибо"
 
-#: dashboard/overview.php:47
-msgid "Bounce count"
-msgstr "Счетчик сбросов"
+#: classes/WP_Piwik/Admin/Settings.php:544
+msgid "for your translation work"
+msgstr "за вашу переводческую работу"
 
-#: dashboard/overview.php:49
-#: wp-piwik.php:563
-msgid "Shortcut"
-msgstr "Быстрая клавиша соединения"
+#: classes/WP_Piwik/Admin/Settings.php:545
+msgid ""
+"Thank you very much, all users who send me mails containing criticism, "
+"commendation, feature requests and bug reports! You help me to make WP-Piwik"
+" much better."
+msgstr "Огромное спасибо всем пользователям, которые отсылают мне электронные письма с критикой, благодарностями, пожеланиями и багами. Вы помогаете мне сделать WP-Piwik еще лучше."
 
-#: dashboard/pages.php:13
-msgid "Pages"
-msgstr "Страницы"
+#: classes/WP_Piwik/Admin/Settings.php:546
+msgid ""
+"Thank <strong>you</strong> for using my plugin. It is the best commendation "
+"if my piece of code is really used!"
+msgstr "Огромное спасибо <strong>тебе</strong> за использование моего плагина. Если мой код действительно используется - это лучшая похвала!"
 
-#: dashboard/pages.php:21
-msgid "Page"
-msgstr "Страница"
+#: classes/WP_Piwik/Admin/Settings.php:555
+msgid "The best place to get help:"
+msgstr ""
 
-#: dashboard/pages.php:23
-#: dashboard/plugins.php:32
-#: dashboard/visitors.php:52
-msgid "Visits"
-msgstr "Посещения"
+#: classes/WP_Piwik/Admin/Settings.php:555
+msgid "WP-Piwik support forum"
+msgstr ""
 
-#: dashboard/plugins.php:12
-#: dashboard/plugins.php:31
-msgid "Plugins"
-msgstr "Плагины"
+#: classes/WP_Piwik/Admin/Settings.php:558
+msgid "Debugging"
+msgstr ""
 
-#: dashboard/screens.php:12
-#: dashboard/screens.php:32
-msgid "Resolution"
-msgstr "Развертка"
+#: classes/WP_Piwik/Admin/Settings.php:559
+msgid ""
+"Either allow_url_fopen has to be enabled <em>or</em> cURL has to be "
+"available:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:562
+msgid "cURL is"
+msgstr ""
 
-#: dashboard/systems.php:12
-#: dashboard/systems.php:34
-msgid "Operating System"
-msgstr "Операционная система"
+#: classes/WP_Piwik/Admin/Settings.php:563
+#: classes/WP_Piwik/Admin/Settings.php:568
+msgid "not"
+msgstr ""
 
-#: dashboard/visitors.php:51
-msgid "Date"
-msgstr "Дата"
+#: classes/WP_Piwik/Admin/Settings.php:564
+msgid "available"
+msgstr ""
 
-#: dashboard/visitors.php:54
-msgid "Bounced"
-msgstr "Сбросы"
+#: classes/WP_Piwik/Admin/Settings.php:567
+msgid "allow_url_fopen is"
+msgstr ""
 
-#: dashboard/visitors.php:67
-msgid "Unique TOTAL"
-msgstr "Уникально ИТОГО"
+#: classes/WP_Piwik/Admin/Settings.php:569
+msgid "enabled"
+msgstr ""
 
-#: dashboard/visitors.php:67
-msgid "Sum"
-msgstr "Сумма"
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "is used."
+msgstr ""
 
-#: dashboard/visitors.php:67
-msgid "Avg"
-msgstr "Среднее"
+#: classes/WP_Piwik/Admin/Settings.php:573
+msgid "Determined Piwik base URL is"
+msgstr ""
 
-#: dashboard/websites.php:12
-msgid "Websites"
-msgstr "Веб-страницы"
+#: classes/WP_Piwik/Admin/Settings.php:577
+msgid "Tools"
+msgstr ""
 
-#: dashboard/websites.php:18
-msgid "Website"
-msgstr "Веб-страница"
+#: classes/WP_Piwik/Admin/Settings.php:579
+msgid "Run testscript"
+msgstr ""
 
-#: wp-piwik.php:110
-#: wp-piwik.php:365
-msgid "Piwik Statistics"
-msgstr "Статистики Piwik"
+#: classes/WP_Piwik/Admin/Settings.php:580
+msgid "Sitebrowser"
+msgstr ""
 
-#. #-#-#-#-#  plugin.pot (WP-Piwik 0.8.0)  #-#-#-#-#
-#. Plugin Name of the plugin/theme
-#: wp-piwik.php:111
-#: wp-piwik.php:122
-#: wp-piwik.php:123
-#: wp-piwik.php:146
-msgid "WP-Piwik"
-msgstr "WP-Piwik"
+#: classes/WP_Piwik/Admin/Settings.php:581
+msgid "Clear cache"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:582
+msgid "Are you sure you want to clear all settings?"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:582
+msgid "Reset WP-Piwik"
+msgstr ""
 
-#: wp-piwik.php:130
-#: wp-piwik.php:131
-msgid "WPMU-Piwik"
-msgstr "WPMU-Piwik"
+#: classes/WP_Piwik/Admin/Settings.php:584
+msgid "Latest support threads on WordPress.org"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:635
+msgid "Settings cleared (except connection settings)."
+msgstr ""
 
-#: wp-piwik.php:142
-#: wp-piwik.php:557
-msgid "yesterday"
-msgstr "вчера"
+#: classes/WP_Piwik/Admin/Settings.php:651
+msgid "Cache cleared."
+msgstr ""
 
-#: wp-piwik.php:143
-#: wp-piwik.php:558
-msgid "today"
-msgstr "сегодня"
+#: classes/WP_Piwik/Admin/Sitebrowser.php:17
+msgid "site"
+msgstr ""
 
-#: wp-piwik.php:144
-#: wp-piwik.php:559
-msgid "last 30 days"
-msgstr "последние 30 дней"
+#: classes/WP_Piwik/Admin/Sitebrowser.php:18
+msgid "sites"
+msgstr ""
 
-#: wp-piwik.php:179
-msgid "Settings"
-msgstr "Настройки"
+#: classes/WP_Piwik/Admin/Sitebrowser.php:24
+msgid "No site configured yet."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:29
+msgid "Blog ID"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:30
+msgid "Title"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:31
+msgid "URL"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:32
+msgid "Site ID (Piwik)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:79
+msgid "Site not created yet."
+msgstr ""
 
-#: wp-piwik.php:381
-msgid "Change"
-msgstr "Изменить"
+#: classes/WP_Piwik/Admin/Statistics.php:12
+msgid "Statistics"
+msgstr ""
 
-#: wp-piwik.php:382
+#: classes/WP_Piwik/Admin/Statistics.php:20
 msgid "Currently shown stats:"
 msgstr "DАктуальные показанные статистики:"
 
-#: wp-piwik.php:383
-msgid "Current shown stats: <strong>Overall</strong>"
-msgstr "Актуальные показанные статистики: <strong>Итого</strong>"
+#: classes/WP_Piwik/Request/Php.php:27
+msgid "Could not resolve"
+msgstr ""
 
-#: wp-piwik.php:448
-msgid "WP-Piwik Settings"
-msgstr "WP-Piwik Настройки "
+#: classes/WP_Piwik/Request/Php.php:27
+msgid "realpath() returns false"
+msgstr ""
 
-#: wp-piwik.php:455
-#: wp-piwik.php:617
-msgid "Account settings"
-msgstr "Настройки счета"
+#: classes/WP_Piwik/Request/Php.php:39
+msgid "Class Piwik\\FrontController does not exists."
+msgstr ""
 
-#: wp-piwik.php:457
-#: wp-piwik.php:619
-msgid "Piwik URL"
-msgstr "Piwik URL"
+#: classes/WP_Piwik/Request/Php.php:42
+msgid "Class Piwik\\API\\Request does not exists."
+msgstr ""
 
-#: wp-piwik.php:461
-#: wp-piwik.php:623
-msgid "Auth token"
-msgstr "Также токен"
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:10
+msgid "Piwik Custom Variables"
+msgstr ""
 
-#: wp-piwik.php:467
-#: wp-piwik.php:628
-msgid "To enable Piwik statistics, please enter your Piwik base URL (like http://mydomain.com/piwik) and your personal authentification token. You can get the token on the API page inside your Piwik interface. It looks like &quot;1234a5cd6789e0a12345b678cd9012ef&quot;."
-msgstr "Для деактивации статистик Piwik необходимо ввести URL установки Piwik (например, http://mydomain.com/piwik) и личный ключ аутентификации (токен). Найти токен можно на API-странице интерфейса Piwik. Он выглядит, например, так: &quot;1234a5cd6789e0a12345b678cd9012ef&quot;."
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
+msgid "Name"
+msgstr ""
 
-#: wp-piwik.php:477
-msgid "<strong>Important note:</strong> If you do not host this blog on your own, your site admin is able to get your auth token from the database. So he is able to access your statistics. You should never use an auth token with more than simple view access!"
-msgstr "<strong>Важное указание:</strong> Если ты не являешься хостом - ведущим узлом, администратор твоей страницы может узнать твой токен авторизации из базы данных.  Таким образом, он может получить доступ к твоим статистикам. Никогда не используй токен аутентификации, если наделен большими полномочиями, чем обычное право на просмотр."
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
+msgid "Value"
+msgstr ""
 
-#: wp-piwik.php:485
-#: wp-piwik.php:489
-msgid "An error occured"
-msgstr "Произошла ошибка"
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
+msgid "Set custom variables for a page view"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:18
+msgid "Browser Details"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:37
+#: classes/WP_Piwik/Widget/Browsers.php:37
+#: classes/WP_Piwik/Widget/Chart.php:43
+#: classes/WP_Piwik/Widget/Noresult.php:23
+#: classes/WP_Piwik/Widget/Overview.php:24
+#: classes/WP_Piwik/Widget/Plugins.php:23 classes/WP_Piwik/Widget/Post.php:25
+#: classes/WP_Piwik/Widget/Screens.php:35
+#: classes/WP_Piwik/Widget/Search.php:23 classes/WP_Piwik/Widget/Seo.php:20
+#: classes/WP_Piwik/Widget/SystemDetails.php:33
+#: classes/WP_Piwik/Widget/Systems.php:33
+#: classes/WP_Piwik/Widget/Visitors.php:35 classes/WP_Piwik/Widget.php:91
+msgid "Piwik error"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+msgid "Browser"
+msgstr "Browser"
 
-#: wp-piwik.php:486
-msgid "Please check URL and auth token. You need at least view access to one site."
-msgstr "Пожалуйста, проверь URL и ключ аутентификации. Для этого как минимум необходим доступ к просмотру страницы."
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+#: classes/WP_Piwik/Widget/Screens.php:37
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+#: classes/WP_Piwik/Widget/Visitors.php:57 classes/WP_Piwik/Widget.php:100
+msgid "Unique"
+msgstr "Уникально"
 
-#: wp-piwik.php:492
-msgid "Choose site"
-msgstr "Страница"
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+#: classes/WP_Piwik/Widget/Plugins.php:25
+#: classes/WP_Piwik/Widget/Screens.php:37
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+msgid "Percent"
+msgstr "Процент"
 
-#: wp-piwik.php:511
-#: wp-piwik.php:547
-#: wp-piwik.php:584
-#: wp-piwik.php:658
-msgid "Save settings"
-msgstr "Сохранить настройки"
+#: classes/WP_Piwik/Widget/BrowserDetails.php:66
+#: classes/WP_Piwik/Widget/Browsers.php:66
+#: classes/WP_Piwik/Widget/Screens.php:64
+#: classes/WP_Piwik/Widget/SystemDetails.php:62
+#: classes/WP_Piwik/Widget/Systems.php:62
+msgid "Others"
+msgstr "Другие"
 
-#: wp-piwik.php:515
-#: wp-piwik.php:643
-msgid "Tracking settings"
-msgstr "Настройки отслеживания"
+#: classes/WP_Piwik/Widget/Browsers.php:18
+msgid "Browsers"
+msgstr ""
 
-#: wp-piwik.php:521
-msgid "Add script"
-msgstr "Добавить скрипт"
+#: classes/WP_Piwik/Widget/Chart.php:19
+#: classes/WP_Piwik/Widget/Overview.php:41 classes/WP_Piwik/Widget/Post.php:37
+#: classes/WP_Piwik/Widget/Visitors.php:17
+msgid "Visitors"
+msgstr "Посетитель"
 
-#: wp-piwik.php:525
-msgid "If your template uses wp_footer(), WP-Piwik can automatically add the Piwik javascript code to your blog."
-msgstr "Если твой шаблон использует wp_footer(), WP-Piwik может автоматически вставлять в твой блог JavaScript код."
+#: classes/WP_Piwik/Widget/Chart.php:71
+msgid ""
+"The graph contains the values shown in the table below (visitors / unique / "
+"bounces). The red line show a linear trendline (unique)."
+msgstr ""
 
-#: wp-piwik.php:528
-msgid "Track 404"
-msgstr "Отслеживание объектов 404"
+#: classes/WP_Piwik/Widget/Keywords.php:16
+msgid "Keywords"
+msgstr "Ключевые слова"
 
-#: wp-piwik.php:532
-msgid "If you add the Piwik javascript code by wp_footer(), WP-Piwik can automatically add a 404-category to track 404-page-visits."
-msgstr "Если ты добавляешь Piwik javascript код к wp_footer() в блог, WP-Piwik может автоматически добавить собственную категорию для страниц 404. "
+#: classes/WP_Piwik/Widget/Noresult.php:16
+#: classes/WP_Piwik/Widget/Search.php:16
+msgid "Site Search"
+msgstr ""
 
-#: wp-piwik.php:536
-#: wp-piwik.php:644
-msgid "Tracking filter"
-msgstr "Фильтр отслеживания"
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+msgid "Keyword"
+msgstr "Ключевое слово"
 
-msgid "Choose users by user role you do <strong>not</strong> want to track."
-msgstr "Выбери те пользовательские роли, которые ты <strong>не</strong> хочешь отслеживать."
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+msgid "Requests"
+msgstr ""
 
-msgid "Choose users by user role you do <strong>not</strong> want to track. Requires enabled &quot;Add script&quot;-functionality."
-msgstr "Выбери те пользовательские роли, которые ты <strong>не</strong> хочешь отслеживать. Для этого должна быть активирована &quot;отслеживание&quot;-функция."
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Bounced"
+msgstr "Сбросы"
 
-#: wp-piwik.php:551
-msgid "Statistic view settings"
-msgstr "Настройки статистики"
+#: classes/WP_Piwik/Widget/Overview.php:17 classes/WP_Piwik/Widget/Post.php:18
+msgid "Overview"
+msgstr "Обзор"
 
-#: wp-piwik.php:554
-msgid "Dashboard"
-msgstr "Информационная панель"
+#: classes/WP_Piwik/Widget/Overview.php:42 classes/WP_Piwik/Widget/Post.php:38
+msgid "Unique visitors"
+msgstr "Уникальные посетители"
 
-#: wp-piwik.php:556
-msgid "No"
-msgstr "Нет"
+#: classes/WP_Piwik/Widget/Overview.php:43 classes/WP_Piwik/Widget/Post.php:39
+msgid "Page views"
+msgstr "Вид страниц"
 
-#: wp-piwik.php:557
-#: wp-piwik.php:558
-#: wp-piwik.php:559
-msgid "Yes"
-msgstr "Да"
+#: classes/WP_Piwik/Widget/Overview.php:44 classes/WP_Piwik/Widget/Post.php:40
+msgid "Total time spent"
+msgstr "Проведенное время"
 
-#: wp-piwik.php:562
-msgid "Display a dashboard widget to your WordPress dashboard."
-msgstr "Добавляет виджет к твоей информационной панели WordPress "
+#: classes/WP_Piwik/Widget/Overview.php:45 classes/WP_Piwik/Widget/Post.php:42
+msgid "Bounce count"
+msgstr "Счетчик сбросов"
 
-#: wp-piwik.php:567
-msgid "Display a shortcut to Piwik itself."
-msgstr "ZПоказывает соединение с Piwik."
+#: classes/WP_Piwik/Widget/Overview.php:48 classes/WP_Piwik/Widget/Post.php:41
+msgid "Time/visit"
+msgstr "Время/посещение"
 
-#: wp-piwik.php:568
-msgid "Display to"
-msgstr "Показать для"
+#: classes/WP_Piwik/Widget/Overview.php:48
+msgid "Max. page views in one visit"
+msgstr "Максимальное количество просмотров за посещениеj"
 
-#: wp-piwik.php:579
-msgid "Choose user roles allowed to see the statistics page."
-msgstr "Выбери те пользовательские роли, которые могут просматривать статистики."
+#: classes/WP_Piwik/Widget/Overview.php:49 classes/WP_Piwik/Widget/Post.php:46
+msgid "Shortcut"
+msgstr "Быстрая клавиша соединения"
 
-#: wp-piwik.php:612
-msgid "WPMU-Piwik Settings"
-msgstr "Настройки WPMU-Piwik"
+#: classes/WP_Piwik/Widget/Pages.php:16
+msgid "Pages"
+msgstr "Страницы"
 
-#: wp-piwik.php:636
-msgid "<strong>Important note:</strong> You have to choose a token which provides administration access. WPMU-Piwik will create new Piwik sites for each blog if it is shown the first time and it is not added yet. All users can access their own statistics only, while site admins can access all statistics. To avoid conflicts, you should use a clean Piwik installation without other sites added. The provided themes should use wp_footer, because it adds the Piwik javascript code to each page."
-msgstr "<strong>Важное указание:</strong> Ты должен выбрать токен, который предоставляет доступ к администрированию. WPMU-Piwik создает сайт Piwik для каждого блога, если он отображается первый раз и еще не добавлен. Пользователи могут просматривать только их собственные статистики, в то время как сайт администратора предоставляет доступ ко всем статистикам. Чтобы избежать конфликтов, ты должен использовать новую установку Piwik без других сайтов. Все примененные темы должны использовать wp_footer, так как эта функция добавляет код Piwik JavaScript к каждой странице."
+#: classes/WP_Piwik/Widget/Plugins.php:16
+msgid "Plugins"
+msgstr "Плагины"
 
-#: wp-piwik.php:671
-msgid "If you like WP-Piwik, you can support its development by a donation:"
-msgstr "Если тебе нравится WP-Piwik, ты можешь финансово поддержать наше дальнейшее развитие:"
+#: classes/WP_Piwik/Widget/Plugins.php:25
+msgid "Plugin"
+msgstr ""
 
-#: wp-piwik.php:687
-msgid "My Amazon.de wishlist (German)"
-msgstr "Мой список желаний Amazon.de  (немецкий)"
+#: classes/WP_Piwik/Widget/Plugins.php:25
+#: classes/WP_Piwik/Widget/Visitors.php:57 classes/WP_Piwik/Widget.php:102
+msgid "Visits"
+msgstr "Посещения"
 
-#. Plugin URI of the plugin/theme
-msgid "http://www.braekling.de/wp-piwik-wpmu-piwik-wordpress/"
-msgstr "http://www.braekling.de/wp-piwik-wpmu-piwik-wordpress/"
+#: classes/WP_Piwik/Widget/Post.php:43
+msgid "Min. generation time"
+msgstr ""
 
-#. Description of the plugin/theme
-msgid "Adds Piwik stats to your dashboard menu and Piwik code to your wordpress footer."
-msgstr "Добавляет статистики Piwik к меню информационной панели, а также может добавить код отслеживания Piwik в нижний коллонтитул блога. "
+#: classes/WP_Piwik/Widget/Post.php:44
+msgid "Max. generation time"
+msgstr ""
 
-#. Author of the plugin/theme
-msgid "Andr&eacute; Br&auml;kling"
-msgstr "Andr&eacute; Br&auml;kling"
+#: classes/WP_Piwik/Widget/Referrers.php:16
+msgid "Referrers"
+msgstr ""
 
-#. Author URI of the plugin/theme
-msgid "http://www.braekling.de"
-msgstr "http://www.braekling.de"
+#: classes/WP_Piwik/Widget/Screens.php:16
+msgid "Resolutions"
+msgstr ""
 
-msgid "Credits"
-msgstr "Благодарности"
+#: classes/WP_Piwik/Widget/Screens.php:37
+msgid "Resolution"
+msgstr "Развертка"
 
-msgid "Thank you very much for your donation"
-msgstr "Огромное спасибо за твой взнос!"
+#: classes/WP_Piwik/Widget/Seo.php:13
+msgid "SEO"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/SystemDetails.php:14
+msgid "Operation System Details"
+msgstr ""
 
-msgid "and all people flattering this"
-msgstr "и всем пользователям, которые поблагодарили нас."
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+msgid "Operation System"
+msgstr ""
 
-msgid "Graphs powered by <a href=\"http://www.jqplot.com/\">jqPlot</a>, an open source project by Chris Leonello. Give it a try! (License: GPL 2.0 and MIT)"
-msgstr "DГрафы создаются с помощью <a href=\"http://www.jqplot.com/\">jqPlot</a> , проекта Криса Леонелло Открытым исходным. Попробуй! (Лицензия: GPL 2.0 и MIT)"
+#: classes/WP_Piwik/Widget/Systems.php:14
+msgid "Operation Systems"
+msgstr ""
 
-msgid "Thank you very much"
-msgstr "Огромное спасибо"
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Date"
+msgstr "Дата"
 
-msgid ", and"
-msgstr " и"
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Page Views"
+msgstr ""
 
-msgid "for your translation work"
-msgstr "за вашу переводческую работу"
+#: classes/WP_Piwik/Widget.php:104
+msgid "Hits"
+msgstr ""
 
-msgid "Thank you very much, all users who send me mails containing criticism, commendation, feature requests and bug reports! You help me to make WP-Piwik much better."
-msgstr "Огромное спасибо всем пользователям, которые отсылают мне электронные письма с критикой, благодарностями, пожеланиями и багами. Вы помогаете мне сделать WP-Piwik еще лучше."
+#: classes/WP_Piwik/Widget.php:106
+msgid "Actions"
+msgstr ""
 
-msgid "Thank <strong>you</strong> for using my plugin. It is the best commendation if my piece of code is really used!"
-msgstr "Огромное спасибо <strong>тебе</strong> за использование моего плагина. Если мой код действительно используется - это лучшая похвала!"
+#: classes/WP_Piwik/Widget.php:162
+msgid "No data available."
+msgstr "Нет данных."
 
-msgid "Changes saved"
-msgstr "Изменения сохранены."
+#: classes/WP_Piwik/Widget.php:293
+msgid "week"
+msgstr ""
 
-msgid "installed"
-msgstr "установлено"
+#: classes/WP_Piwik.php:193
+msgid "%s %s installed."
+msgstr ""
 
+#: classes/WP_Piwik.php:193
 msgid "Next you should connect to Piwik"
 msgstr "Теперь тебе нужно установить соединение с Piwik"
 
+#: classes/WP_Piwik.php:227
+msgid "%s updated to %s."
+msgstr ""
+
+#: classes/WP_Piwik.php:227
 msgid "Please validate your configuration"
 msgstr "Пожалуйста, проверь свою конфигурацию."
 
-msgid "Default date"
-msgstr "Стандартная дата"
+#: classes/WP_Piwik.php:259 classes/WP_Piwik.php:481
+msgid "Settings"
+msgstr "Настройки"
+
+#: classes/WP_Piwik.php:262
+msgid "Important"
+msgstr ""
 
-msgid "Default date shown on statistics page."
-msgstr "Стандартная дата, которая отображается на странице статистики."
+#: classes/WP_Piwik.php:343 classes/WP_Piwik.php:365
+msgid "Piwik Statistics"
+msgstr "Статистики Piwik"
 
-msgid "Dashboard data"
-msgstr "Информационные данные"
+#: classes/WP_Piwik.php:453
+msgid "Configure WP-Piwik"
+msgstr ""
 
-msgid "Display an overview widget to your WordPress dashboard."
-msgstr "ZПоказывает обзорный виджет на информационной панеле WordPress."
+#: classes/WP_Piwik.php:923
+msgid "An error occured"
+msgstr "Произошла ошибка"
 
-msgid "Boad chart"
-msgstr "Обзорная диаграмма"
+#: classes/WP_Piwik.php:1191
+msgid "Cheatin&#8217; uh?"
+msgstr ""
 
-msgid "Display a visitor graph widget to your WordPress dashboard."
-msgstr "ZОтображает граф посетителей как виджет на информационной панеле WordPress."
+#: wp-piwik.php:60
+msgid ""
+"WP-Piwik requires at least PHP 5.3. You are using the deprecated version %s."
+" Please update PHP to use WP-Piwik."
+msgstr ""
 
-msgid "No data available."
-msgstr "Нет данных."
+#. Plugin Name of the plugin/theme
+msgid "WP-Piwik"
+msgstr "WP-Piwik"
+
+#. Plugin URI of the plugin/theme
+msgid "http://wordpress.org/extend/plugins/wp-piwik/"
+msgstr ""
+
+#. Description of the plugin/theme
+msgid ""
+"Adds Piwik stats to your dashboard menu and Piwik code to your wordpress "
+"header."
+msgstr ""
+
+#. Author of the plugin/theme
+msgid "Andr&eacute; Br&auml;kling"
+msgstr "Andr&eacute; Br&auml;kling"
 
+#. Author URI of the plugin/theme
+msgid "http://www.braekling.de"
+msgstr "http://www.braekling.de"
diff --git a/wp-content/plugins/wp-piwik/languages/wp-piwik-sq.mo b/wp-content/plugins/wp-piwik/languages/wp-piwik-sq.mo
index da0addc5eafa263fe9318d041aad071dfd257b65..ec4fee2c3287a24257c9818f616af4c8812d9f49 100755
Binary files a/wp-content/plugins/wp-piwik/languages/wp-piwik-sq.mo and b/wp-content/plugins/wp-piwik/languages/wp-piwik-sq.mo differ
diff --git a/wp-content/plugins/wp-piwik/languages/wp-piwik-sq.po b/wp-content/plugins/wp-piwik/languages/wp-piwik-sq.po
index 87bf1ac354462cd80933a9897487217fab4600cd..4e710cb7f13de7391ff251c7cd5ae66289849b20 100755
--- a/wp-content/plugins/wp-piwik/languages/wp-piwik-sq.po
+++ b/wp-content/plugins/wp-piwik/languages/wp-piwik-sq.po
@@ -1,436 +1,1266 @@
-# WP-Piwik 0.3.0 - Albanian language file
-# Copyright (C) 2009 Andre Braekling
+# Copyright (C) 2015 WP-Piwik
 # This file is distributed under the same license as the WP-Piwik package.
-# Andre Braekling <webmaster@braekling.de>, 2009.
-# Besnik Bleta <besnik@programeshqip.org>, 2009.
+# Translators:
+# Andre Braekling <webmaster@braekling.de>, 2009
+# Besnik <besnik@programeshqip.org>, 2009
 msgid ""
 msgstr ""
-"Project-Id-Version: 0.3.0\n"
-"Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-piwik\n"
-"POT-Creation-Date: 2010-07-19 18:06+0000\n"
-"PO-Revision-Date: 2012-03-02 19:11+0200\n"
-"Last-Translator: Besnik Bleta <besnik@programeshqip.org>\n"
-"Language-Team: Albanian <besnik@programeshqip.org>\n"
-"Language: sq\n"
+"Project-Id-Version: WP-Piwik\n"
+"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-piwik\n"
+"POT-Creation-Date: 2015-07-22 10:25:29+00:00\n"
+"PO-Revision-Date: 2015-07-22 10:33+0000\n"
+"Last-Translator: André Bräkling\n"
+"Language-Team: Albanian (http://www.transifex.com/projects/p/wp-piwik/language/sq/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Language: sq\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: dashboard/browsers.php:12
-#: dashboard/browsers.php:33
-msgid "Browser"
-msgstr "Shfletues"
+#: classes/WP_Piwik/Admin/Settings.php:24
+msgid "Reload"
+msgstr ""
 
-#: dashboard/browsers.php:22
-#: dashboard/pages.php:43
-#: dashboard/screens.php:22
-#: dashboard/systems.php:22
-msgid "Others"
-msgstr "Të tjerë"
+#: classes/WP_Piwik/Admin/Settings.php:27
+msgid "Changes saved."
+msgstr ""
 
-#: dashboard/browsers.php:34
-#: dashboard/keywords.php:17
-#: dashboard/pages.php:22
-#: dashboard/screens.php:33
-#: dashboard/systems.php:35
-#: dashboard/visitors.php:53
-#: dashboard/websites.php:19
-#: wp-piwik.php:305
-msgid "Unique"
-msgstr "Unikë"
+#: classes/WP_Piwik/Admin/Settings.php:45
+msgid "Save Changes"
+msgstr ""
 
-#: dashboard/browsers.php:35
-#: dashboard/plugins.php:33
-#: dashboard/screens.php:34
-#: dashboard/systems.php:36
-msgid "Percent"
-msgstr "Përqindje"
+#: classes/WP_Piwik/Admin/Settings.php:46
+msgid "Thanks for using WP-Piwik!"
+msgstr ""
 
-#: dashboard/keywords.php:12
-msgid "Keywords"
-msgstr "Fjalëkyça"
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid "WP-Piwik %s is successfully connected to Piwik %s."
+msgstr ""
 
-#: dashboard/keywords.php:17
-msgid "Keyword"
-msgstr "Fjalëkyç"
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid "You are running WordPress %s."
+msgstr ""
 
-#: dashboard/overview.php:12
-msgid "Overview"
-msgstr "Përmbledhje"
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid ""
+"You are running a WordPress %s blog network (WPMU). WP-Piwik will handle "
+"your sites as different websites."
+msgstr ""
 
-#: dashboard/overview.php:42
-#: dashboard/visitors.php:24
-msgid "Visitors"
-msgstr "Vizitorë"
+#: classes/WP_Piwik/Admin/Settings.php:53
+msgid ""
+"WP-Piwik %s was not able to connect to Piwik using your configuration. Check"
+" the &raquo;Connect to Piwik&laquo; section below."
+msgstr ""
 
-#: dashboard/overview.php:43
-msgid "Unique visitors"
-msgstr "Vizitorë unikë"
+#: classes/WP_Piwik/Admin/Settings.php:56
+msgid ""
+"WP-Piwik %s has to be connected to Piwik first. Check the &raquo;Connect to "
+"Piwik&laquo; section below."
+msgstr ""
 
-#: dashboard/overview.php:44
-msgid "Page views"
-msgstr "Parje faqesh"
+#: classes/WP_Piwik/Admin/Settings.php:60
+msgid "Connect to Piwik"
+msgstr ""
 
-#: dashboard/overview.php:45
-msgid "Max. page views in one visit"
-msgstr "Maksimum parje faqesh në një vizitë"
+#: classes/WP_Piwik/Admin/Settings.php:65
+msgid "Show Statistics"
+msgstr ""
 
-#: dashboard/overview.php:46
-msgid "Total time spent"
-msgstr "Kohë e harxhuar gjithsej"
+#: classes/WP_Piwik/Admin/Settings.php:69
+msgid "Enable Tracking"
+msgstr ""
 
-msgid "Time/visit"
-msgstr "Kohë/vizitë"
+#: classes/WP_Piwik/Admin/Settings.php:74
+msgid "Expert Settings"
+msgstr ""
 
-#: dashboard/overview.php:47
-msgid "Bounce count"
-msgstr "Numër kthimesh"
+#: classes/WP_Piwik/Admin/Settings.php:78 classes/WP_Piwik.php:923
+msgid "Support"
+msgstr ""
 
-#: dashboard/overview.php:49
-#: wp-piwik.php:563
-msgid "Shortcut"
-msgstr "Shkurtore"
+#: classes/WP_Piwik/Admin/Settings.php:82
+msgid "Credits"
+msgstr "Kredite"
 
-#: dashboard/pages.php:13
-msgid "Pages"
-msgstr "Faqe"
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid ""
+"WP-Piwik is a WordPress plugin to show a selection of Piwik stats in your "
+"WordPress admin dashboard and to add and configure your Piwik tracking code."
+" To use this you will need your own Piwik instance. If you do not already "
+"have a Piwik setup, you have two simple options: use either"
+msgstr ""
 
-#: dashboard/pages.php:21
-msgid "Page"
-msgstr "Faqe"
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "Self-hosted"
+msgstr ""
 
-#: dashboard/pages.php:23
-#: dashboard/plugins.php:32
-#: dashboard/visitors.php:52
-msgid "Visits"
-msgstr "Vizita"
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "or"
+msgstr ""
 
-#: dashboard/plugins.php:12
-#: dashboard/plugins.php:31
-msgid "Plugins"
-msgstr "Shtojca"
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "Cloud-hosted"
+msgstr ""
 
-#: dashboard/screens.php:12
-#: dashboard/screens.php:32
-msgid "Resolution"
-msgstr "Qartësi"
+#: classes/WP_Piwik/Admin/Settings.php:98
+msgid ""
+"Neither cURL nor fopen are available. So WP-Piwik can not use the HTTP API "
+"and not connect to Piwik Pro."
+msgstr ""
 
-#: dashboard/systems.php:12
-#: dashboard/systems.php:34
-msgid "Operating System"
-msgstr "Sistem Operativ"
+#: classes/WP_Piwik/Admin/Settings.php:98
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
+msgid "More information"
+msgstr ""
 
-#: dashboard/visitors.php:51
-msgid "Date"
-msgstr "Datë"
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid "You can choose between three connection methods:"
+msgstr ""
 
-#: dashboard/visitors.php:54
-msgid "Bounced"
-msgstr "Të kthyera"
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:103
+msgid "Self-hosted (HTTP API, default)"
+msgstr ""
 
-#: dashboard/visitors.php:67
-msgid "Unique TOTAL"
-msgstr "GJITHSEJ unikë"
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"This is the default option for a self-hosted Piwik and should work for most "
+"configurations. WP-Piwik will connect to Piwik using http(s)."
+msgstr ""
 
-#: dashboard/visitors.php:67
-msgid "Sum"
-msgstr "Shuma"
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:104
+msgid "Self-hosted (PHP API)"
+msgstr ""
 
-#: dashboard/visitors.php:67
-msgid "Avg"
-msgstr "Mes"
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"Choose this, if your self-hosted Piwik and WordPress are running on the same"
+" machine and you know the full server path to your Piwik instance."
+msgstr ""
 
-#: dashboard/websites.php:12
-msgid "Websites"
-msgstr "\"Websites\"-e"
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:105
+msgid "Cloud-hosted (Piwik Pro)"
+msgstr ""
 
-#: dashboard/websites.php:18
-msgid "Website"
-msgstr "\"Website\""
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"If you are using a cloud-hosted Piwik by Piwik Pro, you can simply use this "
+"option."
+msgstr ""
 
-#: wp-piwik.php:110
-#: wp-piwik.php:365
-msgid "Piwik Statistics"
-msgstr "Statistika Piwik"
+#: classes/WP_Piwik/Admin/Settings.php:101
+msgid "Piwik Mode"
+msgstr ""
 
-#. #-#-#-#-#  plugin.pot (WP-Piwik 0.8.0)  #-#-#-#-#
-#. Plugin Name of the plugin/theme
-#: wp-piwik.php:111
-#: wp-piwik.php:122
-#: wp-piwik.php:123
-#: wp-piwik.php:146
-msgid "WP-Piwik"
-msgstr "WP-Piwik"
+#: classes/WP_Piwik/Admin/Settings.php:102
+msgid "Disabled (WP-Piwik will not connect to Piwik)"
+msgstr ""
 
-#: wp-piwik.php:130
-#: wp-piwik.php:131
-msgid "WPMU-Piwik"
-msgstr "WPMU-Piwik"
+#: classes/WP_Piwik/Admin/Settings.php:108
+msgid "Piwik URL"
+msgstr "URL Piwik-u"
 
-#: wp-piwik.php:142
-#: wp-piwik.php:557
-msgid "yesterday"
-msgstr "dje"
+#: classes/WP_Piwik/Admin/Settings.php:108
+msgid ""
+"Enter your Piwik URL. This is the same URL you use to access your Piwik "
+"instance, e.g. http://www.example.com/piwik/."
+msgstr ""
 
-#: wp-piwik.php:143
-#: wp-piwik.php:558
-msgid "today"
-msgstr "sot"
+#: classes/WP_Piwik/Admin/Settings.php:109
+msgid "Piwik path"
+msgstr ""
 
-#: wp-piwik.php:144
-#: wp-piwik.php:559
-msgid "last 30 days"
-msgstr "30 ditët e fundit"
+#: classes/WP_Piwik/Admin/Settings.php:109
+msgid "Enter the file path to your Piwik instance, e.g. /var/www/piwik/."
+msgstr ""
 
-#: wp-piwik.php:179
-msgid "Settings"
-msgstr "Rregullime"
+#: classes/WP_Piwik/Admin/Settings.php:110
+msgid "Piwik user"
+msgstr ""
 
-#: wp-piwik.php:381
-msgid "Change"
-msgstr "Ndryshoje"
+#: classes/WP_Piwik/Admin/Settings.php:110
+msgid ""
+"Enter your Piwik Pro username. It is also part of your URL: "
+"http://USERNAME.piwik.pro."
+msgstr ""
 
-#: wp-piwik.php:382
-msgid "Currently shown stats:"
-msgstr "Statistika të treguara tani:"
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid "Auth token"
+msgstr "\"Token\" mirëfilltësimi"
 
-#: wp-piwik.php:383
-msgid "Current shown stats: <strong>Overall</strong>"
-msgstr "Statistika të treguara tani: <strong>Përmbledhtazi</strong>"
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid ""
+"Enter your Piwik auth token here. It is an alphanumerical code like "
+"0a1b2c34d56e78901fa2bc3d45678efa."
+msgstr ""
 
-#: wp-piwik.php:448
-msgid "WP-Piwik Settings"
-msgstr "Rregullime për WP-Piwik"
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid "See %sWP-Piwik FAQ%s."
+msgstr ""
 
-#: wp-piwik.php:455
-#: wp-piwik.php:617
-msgid "Account settings"
-msgstr "Rregullime llogarie"
+#: classes/WP_Piwik/Admin/Settings.php:116
+msgid "Auto config"
+msgstr ""
 
-#: wp-piwik.php:457
-#: wp-piwik.php:619
-msgid "Piwik URL"
-msgstr "URL Piwik-u"
+#: classes/WP_Piwik/Admin/Settings.php:116
+msgid ""
+"Check this to automatically choose your blog from your Piwik sites by URL. "
+"If your blog is not added to Piwik yet, WP-Piwik will add a new site."
+msgstr ""
 
-#: wp-piwik.php:461
-#: wp-piwik.php:623
-msgid "Auth token"
-msgstr "\"Token\" mirëfilltësimi"
+#: classes/WP_Piwik/Admin/Settings.php:127
+msgid "Determined site"
+msgstr ""
 
-#: wp-piwik.php:467
-#: wp-piwik.php:628
-msgid "To enable Piwik statistics, please enter your Piwik base URL (like http://mydomain.com/piwik) and your personal authentification token. You can get the token on the API page inside your Piwik interface. It looks like &quot;1234a5cd6789e0a12345b678cd9012ef&quot;."
-msgstr "Për të aktivizuar statistikat Piwik, ju lutem jepni URL-në tuaj bazë për Piwik-un (diçka të ngjashme me http://mydomain.com/piwik) dhe varguan për mirëfilltësimin tuaj personal. Vargun do ta gjeni te faqja për API-n brenda ndërfaqes së Piwik-ut tuaj. Ngjan me diçka si &quot;1234a5cd6789e0a12345b678cd9012ef&quot;."
+#: classes/WP_Piwik/Admin/Settings.php:132
+msgid "Select site"
+msgstr ""
 
-#: wp-piwik.php:477
-msgid "<strong>Important note:</strong> If you do not host this blog on your own, your site admin is able to get your auth token from the database. So he is able to access your statistics. You should never use an auth token with more than simple view access!"
-msgstr "<strong>Shënim i rëndësishëm:</strong> Nëse nuk e strehoni vetë këtë blog, përgjegjësi i site-it tuaj është në gjendje të ketë prej bazës së të dhënave \"token\"-in tuaj të mirëfilltësimit. Pra është ne gjendje të hyjë në statistikat tuaja. Kurrë nuk do të duhej të përdornit një \"token\" mirëfilltësimi që lejon më tepër se hyrje të thjeshtë vetëm për parje!"
+#: classes/WP_Piwik/Admin/Settings.php:140
+msgid "Piwik default date"
+msgstr ""
 
-#: wp-piwik.php:485
-#: wp-piwik.php:489
-msgid "An error occured"
-msgstr "Ndodhi një gabim"
+#: classes/WP_Piwik/Admin/Settings.php:141
+#: classes/WP_Piwik/Admin/Settings.php:154
+msgid "Today"
+msgstr ""
 
-#: wp-piwik.php:486
-msgid "Please check URL and auth token. You need at least view access to one site."
-msgstr "Ju lutem, kontrolloni URL-në dhe vargun e mirëfilltësimit. Keni nevojë për të drejta parjeje të paktën në një \"site\"."
+#: classes/WP_Piwik/Admin/Settings.php:142
+#: classes/WP_Piwik/Admin/Settings.php:153
+msgid "Yesterday"
+msgstr ""
 
-#: wp-piwik.php:492
-msgid "Choose site"
-msgstr "Zgjidhni \"site\""
+#: classes/WP_Piwik/Admin/Settings.php:143
+msgid "Current month"
+msgstr ""
 
-#: wp-piwik.php:511
-#: wp-piwik.php:547
-#: wp-piwik.php:584
-#: wp-piwik.php:658
-msgid "Save settings"
-msgstr "Ruaji rregullimet"
+#: classes/WP_Piwik/Admin/Settings.php:144
+msgid "Last month"
+msgstr ""
 
-#: wp-piwik.php:515
-#: wp-piwik.php:643
-msgid "Tracking settings"
-msgstr "Rregullime gjurmimi"
+#: classes/WP_Piwik/Admin/Settings.php:145
+msgid "Current week"
+msgstr ""
 
-#: wp-piwik.php:521
-msgid "Add script"
-msgstr "Shtoni programth"
+#: classes/WP_Piwik/Admin/Settings.php:146
+msgid "Last week"
+msgstr ""
 
-#: wp-piwik.php:525
-msgid "If your template uses wp_footer(), WP-Piwik can automatically add the Piwik javascript code to your blog."
-msgstr "Po qe se gjedhja juaj përdor wp_footer(), WP-Piwik mund të shtojë vetvetiu te blogu juaj kodin Javascript për Piwik-un."
+#: classes/WP_Piwik/Admin/Settings.php:147
+msgid "Default date shown on statistics page."
+msgstr "Datë e parazgjedhur që tregohet te faqja e statistikave. "
 
-#: wp-piwik.php:528
-msgid "Track 404"
-msgstr "Gjedhe 404"
+#: classes/WP_Piwik/Admin/Settings.php:149
+msgid "Show SEO data"
+msgstr ""
 
-#: wp-piwik.php:532
-msgid "If you add the Piwik javascript code by wp_footer(), WP-Piwik can automatically add a 404-category to track 404-page-visits."
-msgstr "If you add the Piwik javascript code by wp_footer(), WP-Piwik can automatically add a 404-category to track 404-page-visits.Po qe se e shtoni kodin Piwik Javascript përmes wp_footer(), WP-Piwik-u mund të shtojë vetvetiu një kategori 404 për të gjurmuar vizitat në faqe 404."
+#: classes/WP_Piwik/Admin/Settings.php:149
+msgid "Display SEO ranking data on statistics page."
+msgstr ""
 
-#: wp-piwik.php:536
-#: wp-piwik.php:644
-msgid "Tracking filter"
-msgstr "Filtër Gjurmimesh"
+#: classes/WP_Piwik/Admin/Settings.php:149
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Slow!"
+msgstr ""
 
-msgid "Choose users by user role you do <strong>not</strong> want to track."
-msgstr "Zgjidhni përdoruesa sipas rolit të përdoruesit të cilin <strong>nuk</strong> doni të gjurmohet."
+#: classes/WP_Piwik/Admin/Settings.php:151
+msgid "Dashboard overview"
+msgstr ""
 
-msgid "Choose users by user role you do <strong>not</strong> want to track. Requires enabled &quot;Add script&quot;-functionality."
-msgstr "Zgjidhni përdoruesa sipas rolesh përdoruesish të cilin <strong>nuk</strong> doni të gjurmohet. Lyp të aktivizuar funksionin &quot;Shtoni skript te wp_footer()&quot;."
+#: classes/WP_Piwik/Admin/Settings.php:152
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:192
+#: classes/WP_Piwik/Admin/Settings.php:213
+#: classes/WP_Piwik/Admin/Settings.php:304
+msgid "Disabled"
+msgstr ""
 
-#: wp-piwik.php:551
-msgid "Statistic view settings"
-msgstr "Rregullime lidhur me parjen e  statistikave"
+#: classes/WP_Piwik/Admin/Settings.php:155
+msgid "Last 30 days"
+msgstr ""
 
-#: wp-piwik.php:554
-msgid "Dashboard"
-msgstr "Pulti"
+#: classes/WP_Piwik/Admin/Settings.php:156
+msgid "Enable WP-Piwik dashboard widget &quot;Overview&quot;."
+msgstr ""
 
-#: wp-piwik.php:556
-msgid "No"
-msgstr "Jo"
+#: classes/WP_Piwik/Admin/Settings.php:158
+msgid "Dashboard graph"
+msgstr ""
 
-#: wp-piwik.php:557
-#: wp-piwik.php:558
-#: wp-piwik.php:559
-msgid "Yes"
-msgstr "Po"
+#: classes/WP_Piwik/Admin/Settings.php:158
+msgid "Enable WP-Piwik dashboard widget &quot;Graph&quot;."
+msgstr ""
 
-#: wp-piwik.php:562
-msgid "Display a dashboard widget to your WordPress dashboard."
-msgstr "Shfaqni te pulti juaj WordPress një &#8220;widget&#8221; pulti."
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Dashboard SEO"
+msgstr ""
 
-#: wp-piwik.php:567
-msgid "Display a shortcut to Piwik itself."
-msgstr "Shfaq një shkurtore për te vetë Piwik-u."
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Enable WP-Piwik dashboard widget &quot;SEO&quot;."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:162
+msgid "Show graph on WordPress Toolbar"
+msgstr ""
 
-#: wp-piwik.php:568
-msgid "Display to"
-msgstr "Shfaqe te"
+#: classes/WP_Piwik/Admin/Settings.php:162
+msgid "Display a last 30 days visitor graph on WordPress' toolbar."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:164
+msgid "Display stats to"
+msgstr ""
 
-#: wp-piwik.php:579
+#: classes/WP_Piwik/Admin/Settings.php:171
 msgid "Choose user roles allowed to see the statistics page."
 msgstr "Zgjidhni role përdoruesish të cilëve t&#8217;u lejohet të shohin faqen e statistikave."
 
-#: wp-piwik.php:612
-msgid "WPMU-Piwik Settings"
-msgstr "Rregullime për WPMU-Piwik"
+#: classes/WP_Piwik/Admin/Settings.php:173
+msgid "Show per post stats"
+msgstr ""
 
-#: wp-piwik.php:636
-msgid "<strong>Important note:</strong> You have to choose a token which provides administration access. WPMU-Piwik will create new Piwik sites for each blog if it is shown the first time and it is not added yet. All users can access their own statistics only, while site admins can access all statistics. To avoid conflicts, you should use a clean Piwik installation without other sites added. The provided themes should use wp_footer, because it adds the Piwik javascript code to each page."
-msgstr "<strong>Shënim i rëndësishëm:</strong> Duhet të zgjidhni një \"token\" që lejon hyrje si administrator. WPMU-Piwik do të krijojë \"site\"-e të rinj Piwik për çdo blog, nëse është shfaqur për herë të parë dhe nuk është shtuar ende. Cilido përdorues mund të hyjë vetëm te statistikat e tij, ndërkohë që përgjegjësit e site-it mund të hyjnë në krejt statistikat. Për të shmangur përplasjet, do të duhej të përdornit një instalim nga e para të Piwik-ut, pa \"site\"-e të tjerë të shtuar. Temat e dhëna duhet të përdorin wp_footer, sepse ky shton kodin javascript Piwik te secila faqe."
+#: classes/WP_Piwik/Admin/Settings.php:173
+msgid "Show stats about single posts at the post edit admin page."
+msgstr ""
 
-#: wp-piwik.php:671
-msgid "If you like WP-Piwik, you can support its development by a donation:"
-msgstr "Nëse ju pëlqen WP-Piwik-u, zhvillimin e tij mund ta mbështesni me një dhurim:"
+#: classes/WP_Piwik/Admin/Settings.php:175
+msgid "Piwik shortcut"
+msgstr ""
 
-#: wp-piwik.php:687
-msgid "My Amazon.de wishlist (German)"
-msgstr "Lista ime e dëshirave te Amazon.de (në Gjermanisht)"
+#: classes/WP_Piwik/Admin/Settings.php:175
+msgid "Display a shortcut to Piwik itself."
+msgstr "Shfaq një shkurtore për te vetë Piwik-u."
 
-#. Plugin URI of the plugin/theme
-msgid "http://www.braekling.de/wp-piwik-wpmu-piwik-wordpress/"
-msgstr "http://www.braekling.de/wp-piwik-wpmu-piwik-wordpress/"
+#: classes/WP_Piwik/Admin/Settings.php:177
+msgid "WP-Piwik display name"
+msgstr ""
 
-#. Description of the plugin/theme
-msgid "Adds Piwik stats to your dashboard menu and Piwik code to your wordpress footer."
-msgstr "Shton te menuja e pultit tuaj statistika Piwik dhe kodin për Piwik te \"footer\"-i juaj Wordpress."
+#: classes/WP_Piwik/Admin/Settings.php:177
+msgid "Plugin name shown in WordPress."
+msgstr ""
 
-#. Author of the plugin/theme
-msgid "Andr&eacute; Br&auml;kling"
-msgstr "Andr&eacute; Br&auml;kling"
+#: classes/WP_Piwik/Admin/Settings.php:179
+msgid "Enable shortcodes"
+msgstr ""
 
-#. Author URI of the plugin/theme
-msgid "http://www.braekling.de"
-msgstr "http://www.braekling.de"
+#: classes/WP_Piwik/Admin/Settings.php:179
+msgid "Enable shortcodes in post or page content."
+msgstr ""
 
-msgid "Credits"
-msgstr "Kredite"
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "You can choose between four tracking code modes:"
+msgstr ""
 
-msgid "Thank you very much for your donation"
-msgstr "Shumë faleminderit për dhurimin tuaj"
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"WP-Piwik will not add the tracking code. Use this, if you want to add the "
+"tracking code to your template files or you use another plugin to add the "
+"tracking code."
+msgstr ""
 
-msgid "and all people flattering this"
-msgstr "dhe krejt personat që e mburrin këtë"
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:193
+msgid "Default tracking"
+msgstr ""
 
-msgid "Graphs powered by <a href=\"http://www.jqplot.com/\">jqPlot</a>, an open source project by Chris Leonello. Give it a try! (License: GPL 2.0 and MIT)"
-msgstr "Grafikët bazohen në <a href=\"http://www.jqplot.com/\">jqPlot</a>, një projekt me burim të hapur nga Chris Leonello. Provojeni dhe ju! (Lejuar sipas Lejesh: GPL 2.0 dhe MIT)"
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "WP-Piwik will use Piwik's standard tracking code."
+msgstr ""
 
-msgid "Thank you very much"
-msgstr "Shumë faleminderit"
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:194
+msgid "Use js/index.php"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"You can choose this tracking code, to deliver a minified proxy code and to "
+"avoid using the files called piwik.js or piwik.php."
+msgstr ""
 
-msgid ", and"
-msgstr ", dhe "
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "See %sreadme file%s."
+msgstr ""
 
-msgid "for your translation work"
-msgstr "për punën tuaj në përkthim"
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:195
+msgid "Use proxy script"
+msgstr ""
 
-msgid "Thank you very much, all users who send me mails containing criticism, commendation, feature requests and bug reports! You help me to make WP-Piwik much better."
-msgstr "Shumë faleminderit për krejt përdoruesit që më dërgojnë postë me kritika, lavdërime, kërkesa për karakteristika të reja dhe njoftime të metash! Ju më ndihmoni ta bëj WP-Piwik-un më të mirë."
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "Use this tracking code to not reveal the Piwik server URL."
+msgstr ""
 
-msgid "Thank <strong>you</strong> for using my plugin. It is the best commendation if my piece of code is really used!"
-msgstr "Ju faleminderit që përdorni shtojcën time. Është lavdërimi më i mirë për programin tim është përdorimi i tij!"
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:210
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid "See %sPiwik FAQ%s."
+msgstr ""
 
-msgid "Changes saved"
-msgstr "Ndryshimet u ruajtën"
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:196
+msgid "Enter manually"
+msgstr ""
 
-msgid "installed"
-msgstr "u  instalua"
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"Enter your own tracking code manually. You can choose one of the prior "
+"options, pre-configure your tracking code and switch to manually editing at "
+"last."
+msgstr ""
 
-msgid "Next you should connect to Piwik"
-msgstr "Më tej, lypset të lidheni te Piwik"
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "Use the placeholder {ID} to add the Piwik site ID."
+msgstr ""
 
-msgid "Please validate your configuration"
-msgstr "Ju lutem, vleftësoni formësimin tuaj"
+#: classes/WP_Piwik/Admin/Settings.php:191
+msgid "Add tracking code"
+msgstr ""
 
-msgid "Default date"
-msgstr "Data e parazgjedhur"
+#: classes/WP_Piwik/Admin/Settings.php:199
+msgid "Tracking code"
+msgstr ""
 
-msgid "Default date shown on statistics page."
-msgstr "Datë e parazgjedhur që tregohet te faqja e statistikave. "
+#: classes/WP_Piwik/Admin/Settings.php:201
+msgid "JavaScript code position"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:202
+msgid "Footer"
+msgstr ""
 
-msgid "Dashboard data"
-msgstr "Të dhëna pulti"
+#: classes/WP_Piwik/Admin/Settings.php:203
+msgid "Header"
+msgstr ""
 
-msgid "Display an overview widget to your WordPress dashboard."
-msgstr "Shfaqni te pulti juaj WordPress një &#8220;widget&#8221; përmbledhës."
+#: classes/WP_Piwik/Admin/Settings.php:204
+msgid ""
+"Choose whether the JavaScript code is added to the footer or the header."
+msgstr ""
 
-#, fuzzy
-msgid "Boad chart"
-msgstr "Grafik boad"
+#: classes/WP_Piwik/Admin/Settings.php:206
+msgid "Noscript code"
+msgstr ""
 
-msgid "Display a visitor graph widget to your WordPress dashboard."
-msgstr "Shfaqni te pulti juaj WordPress një &#8220;widget&#8221; grafiku mbi vizitorët."
+#: classes/WP_Piwik/Admin/Settings.php:208
+msgid "Add &lt;noscript&gt;"
+msgstr ""
 
-msgid "No data available."
-msgstr "Pa të dhëna të passhme."
+#: classes/WP_Piwik/Admin/Settings.php:208
+msgid "Adds the &lt;noscript&gt; code to your footer."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Disabled in proxy mode."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Add rec parameter to noscript code"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Enable tracking for visitors without JavaScript (not recommended)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:212
+msgid "Enable content tracking"
+msgstr ""
 
-#~ msgid "Advertisement"
-#~ msgstr "Reklamë"
+#: classes/WP_Piwik/Admin/Settings.php:214
+msgid "Track all content blocks"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:215
+msgid "Track only visible content blocks"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:216
+msgid ""
+"Content tracking allows you to track interaction with the content of a web "
+"page or application."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:216
+#: classes/WP_Piwik/Admin/Settings.php:218
+#: classes/WP_Piwik/Admin/Settings.php:222
+#: classes/WP_Piwik/Admin/Settings.php:224
+#: classes/WP_Piwik/Admin/Settings.php:226
+#: classes/WP_Piwik/Admin/Settings.php:247
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "See %sPiwik documentation%s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:218
+msgid "Track search"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:218
+msgid "Use Piwik's advanced Site Search Analytics feature."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid "Track 404"
+msgstr "Gjedhe 404"
+
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid ""
+"WP-Piwik can automatically add a 404-category to track 404-page-visits."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:222
+msgid "Add annotation on new post"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:222
+msgid "Add a Piwik annotation on each new post."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:224
+msgid "Show custom variables box"
+msgstr ""
 
-#~ msgid "Looking for premium themes? Visit "
-#~ msgstr "Po shihni për tema me pagesë? Vizitoni "
+#: classes/WP_Piwik/Admin/Settings.php:224
+msgid " Show a &quot;custom variables&quot; edit box on post edit page."
+msgstr ""
 
-#~ msgid "Remote access to Piwik not possible. Enable allow_url_fopen or CURL."
-#~ msgstr ""
-#~ "Nuk arrihet hyrja e largët te Piwik. Aktivizoni allow_url_fopen ose CURL."
+#: classes/WP_Piwik/Admin/Settings.php:226
+msgid "Add new file types for download tracking"
+msgstr ""
 
-#~ msgid "Add script to wp_footer()"
-#~ msgstr "Shtoje \"script\"-in te wp_footer()"
+#: classes/WP_Piwik/Admin/Settings.php:226
+msgid ""
+"Add file extensions for download tracking, divided by a vertical bar "
+"(&#124;)."
+msgstr ""
 
-#~ msgid "or above"
-#~ msgstr "ose sipër"
+#: classes/WP_Piwik/Admin/Settings.php:228
+msgid "Disable cookies"
+msgstr ""
 
-#~ msgid ""
-#~ "WP-Piwik uses the Google Chart API to create graphs. To avoid this, just "
-#~ "check this box."
-#~ msgstr ""
-#~ "WP-Piwik përdor Google Chart API për krijim grafiqesh. Për ta shmangur "
-#~ "këtë, thjesht klikoni këtu."
+#: classes/WP_Piwik/Admin/Settings.php:228
+msgid "Disable all tracking cookies for a visitor."
+msgstr ""
 
-#~ msgid "Disable Google Chart API"
-#~ msgstr "Çaktivizo API Google Chart"
+#: classes/WP_Piwik/Admin/Settings.php:230
+msgid "Limit cookie lifetime"
+msgstr ""
 
-#~ msgid "Show Piwik link in overview"
-#~ msgstr "Shfaq te përmbledhja lidhjen Piwik"
+#: classes/WP_Piwik/Admin/Settings.php:230
+msgid ""
+"You can limit the cookie lifetime to avoid tracking your users over a longer"
+" period as necessary."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:232
+msgid "Visitor timeout (seconds)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:234
+msgid "Session timeout (seconds)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:236
+msgid "Referral timeout (seconds)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:238
+msgid "Track admin pages"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:238
+msgid ""
+"Enable to track users on admin pages (remember to configure the tracking "
+"filter appropriately)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:241
+msgid "Tracking filter"
+msgstr "Filtër Gjurmimesh"
+
+#: classes/WP_Piwik/Admin/Settings.php:245
+msgid "Choose users by user role you do <strong>not</strong> want to track."
+msgstr "Zgjidhni përdoruesa sipas rolit të përdoruesit të cilin <strong>nuk</strong> doni të gjurmohet."
+
+#: classes/WP_Piwik/Admin/Settings.php:247
+msgid "Track subdomains in the same website"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:247
+msgid "Adds *.-prefix to cookie domain."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "Do not count subdomains as outlink"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "Adds *.-prefix to tracked domain."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:251
+msgid "Track RSS feeds"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:251
+msgid "Enable to track posts in feeds via tracking pixel."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:253
+msgid "Track RSS feed links as campaign"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:255
+msgid "RSS feed campaign"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:255
+msgid "Keyword: post name."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:257
+msgid "Enable heartbeat timer"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:257
+msgid ""
+"Enable a heartbeat timer to get more accurate visit lengths by sending "
+"periodical HTTP ping requests as long as the site is opened. Enter the time "
+"between the pings in seconds (Piwik default: 15) to enable or 0 to disable "
+"this feature. <strong>Note:</strong> This will cause a lot of additional "
+"HTTP requests on your site."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:262
+msgid ""
+"Usually, you do not need to change these settings. If you want to do so, you"
+" should know what you do or you got an expert's advice."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:264
+msgid "Enable cache"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:264
+msgid "Cache API calls, which not contain today's values, for a week."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:267
+msgid "HTTP connection via"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:268
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "cURL"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:269
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "fopen"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:270
+msgid ""
+"Choose whether WP-Piwik should use cURL or fopen to connect to Piwik in HTTP"
+" or Pro mode."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:272
+msgid "HTTP method"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:273
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "POST"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:274
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "GET"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:275
+msgid "Choose whether WP-Piwik should use POST or GET in HTTP or Pro mode."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:277
+msgid "Disable time limit"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:277
+msgid "Use set_time_limit(0) if stats page causes a time out."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:279
+msgid "Connection timeout"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:281
+msgid "Disable SSL peer verification"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:281
+msgid "not recommended"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:283
+msgid "User agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:284
+msgid "Use the PHP default user agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:284
+msgid "empty"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:285
+msgid "Define a specific user agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:287
+msgid "Specific user agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:289
+msgid "Add data-cfasync=false"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:291
+msgid "CDN URL"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:293
+msgid "CDN URL (SSL)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:295
+msgid "Force Piwik to use a specific protocol"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:296
+msgid "Disabled (default)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:297
+msgid "http"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:298
+msgid "https (SSL)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:299
+msgid ""
+"Choose if you want to explicitly force Piwik to use HTTP or HTTPS. Does not "
+"work with a CDN URL."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:301
+msgid "Update notice"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:302
+msgid "Show always if WP-Piwik is updated"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:303
+msgid "Show only if WP-Piwik is updated and settings were changed"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:305
+msgid "Choose if you want to get an update notice if WP-Piwik is updated."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:466
+msgid "Donate"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:468
+msgid "If you like WP-Piwik, you can support its development by a donation:"
+msgstr "Nëse ju pëlqen WP-Piwik-u, zhvillimin e tij mund ta mbështesni me një dhurim:"
+
+#: classes/WP_Piwik/Admin/Settings.php:506
+msgid "My Amazon.de wishlist"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:509
+#: classes/WP_Piwik/Admin/Settings.php:556
+msgid "Please don't forget to vote the compatibility at the"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid "Thank you very much for your donation"
+msgstr "Shumë faleminderit për dhurimin tuaj"
+
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid "the Piwik team itself"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid ", and all people flattering this"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:541
+msgid ""
+"Graphs powered by <a href=\"http://www.jqplot.com/\">jqPlot</a> (License: "
+"GPL 2.0 and MIT) and <a "
+"href=\"http://omnipotent.net/jquery.sparkline/\">jQuery Sparklines</a> "
+"(License: New BSD License)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:542
+msgid "Metabox support inspired by"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:543
+msgid "Tabbed settings page suggested by the"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:544
+msgid "Thank you very much"
+msgstr "Shumë faleminderit"
+
+#: classes/WP_Piwik/Admin/Settings.php:544
+msgid "for your translation work"
+msgstr "për punën tuaj në përkthim"
+
+#: classes/WP_Piwik/Admin/Settings.php:545
+msgid ""
+"Thank you very much, all users who send me mails containing criticism, "
+"commendation, feature requests and bug reports! You help me to make WP-Piwik"
+" much better."
+msgstr "Shumë faleminderit për krejt përdoruesit që më dërgojnë postë me kritika, lavdërime, kërkesa për karakteristika të reja dhe njoftime të metash! Ju më ndihmoni ta bëj WP-Piwik-un më të mirë."
+
+#: classes/WP_Piwik/Admin/Settings.php:546
+msgid ""
+"Thank <strong>you</strong> for using my plugin. It is the best commendation "
+"if my piece of code is really used!"
+msgstr "Ju faleminderit që përdorni shtojcën time. Është lavdërimi më i mirë për programin tim është përdorimi i tij!"
+
+#: classes/WP_Piwik/Admin/Settings.php:555
+msgid "The best place to get help:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:555
+msgid "WP-Piwik support forum"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:558
+msgid "Debugging"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:559
+msgid ""
+"Either allow_url_fopen has to be enabled <em>or</em> cURL has to be "
+"available:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:562
+msgid "cURL is"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:563
+#: classes/WP_Piwik/Admin/Settings.php:568
+msgid "not"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:564
+msgid "available"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:567
+msgid "allow_url_fopen is"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:569
+msgid "enabled"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "is used."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:573
+msgid "Determined Piwik base URL is"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:577
+msgid "Tools"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:579
+msgid "Run testscript"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:580
+msgid "Sitebrowser"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:581
+msgid "Clear cache"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:582
+msgid "Are you sure you want to clear all settings?"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:582
+msgid "Reset WP-Piwik"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:584
+msgid "Latest support threads on WordPress.org"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:635
+msgid "Settings cleared (except connection settings)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:651
+msgid "Cache cleared."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:17
+msgid "site"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:18
+msgid "sites"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:24
+msgid "No site configured yet."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:29
+msgid "Blog ID"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:30
+msgid "Title"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:31
+msgid "URL"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:32
+msgid "Site ID (Piwik)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:79
+msgid "Site not created yet."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Statistics.php:12
+msgid "Statistics"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Statistics.php:20
+msgid "Currently shown stats:"
+msgstr "Statistika të treguara tani:"
+
+#: classes/WP_Piwik/Request/Php.php:27
+msgid "Could not resolve"
+msgstr ""
+
+#: classes/WP_Piwik/Request/Php.php:27
+msgid "realpath() returns false"
+msgstr ""
+
+#: classes/WP_Piwik/Request/Php.php:39
+msgid "Class Piwik\\FrontController does not exists."
+msgstr ""
+
+#: classes/WP_Piwik/Request/Php.php:42
+msgid "Class Piwik\\API\\Request does not exists."
+msgstr ""
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:10
+msgid "Piwik Custom Variables"
+msgstr ""
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
+msgid "Name"
+msgstr ""
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
+msgid "Value"
+msgstr ""
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
+msgid "Set custom variables for a page view"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:18
+msgid "Browser Details"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:37
+#: classes/WP_Piwik/Widget/Browsers.php:37
+#: classes/WP_Piwik/Widget/Chart.php:43
+#: classes/WP_Piwik/Widget/Noresult.php:23
+#: classes/WP_Piwik/Widget/Overview.php:24
+#: classes/WP_Piwik/Widget/Plugins.php:23 classes/WP_Piwik/Widget/Post.php:25
+#: classes/WP_Piwik/Widget/Screens.php:35
+#: classes/WP_Piwik/Widget/Search.php:23 classes/WP_Piwik/Widget/Seo.php:20
+#: classes/WP_Piwik/Widget/SystemDetails.php:33
+#: classes/WP_Piwik/Widget/Systems.php:33
+#: classes/WP_Piwik/Widget/Visitors.php:35 classes/WP_Piwik/Widget.php:91
+msgid "Piwik error"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+msgid "Browser"
+msgstr "Shfletues"
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+#: classes/WP_Piwik/Widget/Screens.php:37
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+#: classes/WP_Piwik/Widget/Visitors.php:57 classes/WP_Piwik/Widget.php:100
+msgid "Unique"
+msgstr "Unikë"
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+#: classes/WP_Piwik/Widget/Plugins.php:25
+#: classes/WP_Piwik/Widget/Screens.php:37
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+msgid "Percent"
+msgstr "Përqindje"
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:66
+#: classes/WP_Piwik/Widget/Browsers.php:66
+#: classes/WP_Piwik/Widget/Screens.php:64
+#: classes/WP_Piwik/Widget/SystemDetails.php:62
+#: classes/WP_Piwik/Widget/Systems.php:62
+msgid "Others"
+msgstr "Të tjerë"
+
+#: classes/WP_Piwik/Widget/Browsers.php:18
+msgid "Browsers"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Chart.php:19
+#: classes/WP_Piwik/Widget/Overview.php:41 classes/WP_Piwik/Widget/Post.php:37
+#: classes/WP_Piwik/Widget/Visitors.php:17
+msgid "Visitors"
+msgstr "Vizitorë"
+
+#: classes/WP_Piwik/Widget/Chart.php:71
+msgid ""
+"The graph contains the values shown in the table below (visitors / unique / "
+"bounces). The red line show a linear trendline (unique)."
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Keywords.php:16
+msgid "Keywords"
+msgstr "Fjalëkyça"
+
+#: classes/WP_Piwik/Widget/Noresult.php:16
+#: classes/WP_Piwik/Widget/Search.php:16
+msgid "Site Search"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+msgid "Keyword"
+msgstr "Fjalëkyç"
+
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+msgid "Requests"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Bounced"
+msgstr "Të kthyera"
+
+#: classes/WP_Piwik/Widget/Overview.php:17 classes/WP_Piwik/Widget/Post.php:18
+msgid "Overview"
+msgstr "Përmbledhje"
+
+#: classes/WP_Piwik/Widget/Overview.php:42 classes/WP_Piwik/Widget/Post.php:38
+msgid "Unique visitors"
+msgstr "Vizitorë unikë"
+
+#: classes/WP_Piwik/Widget/Overview.php:43 classes/WP_Piwik/Widget/Post.php:39
+msgid "Page views"
+msgstr "Parje faqesh"
+
+#: classes/WP_Piwik/Widget/Overview.php:44 classes/WP_Piwik/Widget/Post.php:40
+msgid "Total time spent"
+msgstr "Kohë e harxhuar gjithsej"
+
+#: classes/WP_Piwik/Widget/Overview.php:45 classes/WP_Piwik/Widget/Post.php:42
+msgid "Bounce count"
+msgstr "Numër kthimesh"
+
+#: classes/WP_Piwik/Widget/Overview.php:48 classes/WP_Piwik/Widget/Post.php:41
+msgid "Time/visit"
+msgstr "Kohë/vizitë"
+
+#: classes/WP_Piwik/Widget/Overview.php:48
+msgid "Max. page views in one visit"
+msgstr "Maksimum parje faqesh në një vizitë"
+
+#: classes/WP_Piwik/Widget/Overview.php:49 classes/WP_Piwik/Widget/Post.php:46
+msgid "Shortcut"
+msgstr "Shkurtore"
+
+#: classes/WP_Piwik/Widget/Pages.php:16
+msgid "Pages"
+msgstr "Faqe"
+
+#: classes/WP_Piwik/Widget/Plugins.php:16
+msgid "Plugins"
+msgstr "Shtojca"
+
+#: classes/WP_Piwik/Widget/Plugins.php:25
+msgid "Plugin"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Plugins.php:25
+#: classes/WP_Piwik/Widget/Visitors.php:57 classes/WP_Piwik/Widget.php:102
+msgid "Visits"
+msgstr "Vizita"
+
+#: classes/WP_Piwik/Widget/Post.php:43
+msgid "Min. generation time"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Post.php:44
+msgid "Max. generation time"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Referrers.php:16
+msgid "Referrers"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Screens.php:16
+msgid "Resolutions"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Screens.php:37
+msgid "Resolution"
+msgstr "Qartësi"
+
+#: classes/WP_Piwik/Widget/Seo.php:13
+msgid "SEO"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/SystemDetails.php:14
+msgid "Operation System Details"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+msgid "Operation System"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Systems.php:14
+msgid "Operation Systems"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Date"
+msgstr "Datë"
+
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Page Views"
+msgstr ""
+
+#: classes/WP_Piwik/Widget.php:104
+msgid "Hits"
+msgstr ""
+
+#: classes/WP_Piwik/Widget.php:106
+msgid "Actions"
+msgstr ""
+
+#: classes/WP_Piwik/Widget.php:162
+msgid "No data available."
+msgstr "Pa të dhëna të passhme."
+
+#: classes/WP_Piwik/Widget.php:293
+msgid "week"
+msgstr ""
+
+#: classes/WP_Piwik.php:193
+msgid "%s %s installed."
+msgstr ""
+
+#: classes/WP_Piwik.php:193
+msgid "Next you should connect to Piwik"
+msgstr "Më tej, lypset të lidheni te Piwik"
+
+#: classes/WP_Piwik.php:227
+msgid "%s updated to %s."
+msgstr ""
+
+#: classes/WP_Piwik.php:227
+msgid "Please validate your configuration"
+msgstr "Ju lutem, vleftësoni formësimin tuaj"
+
+#: classes/WP_Piwik.php:259 classes/WP_Piwik.php:481
+msgid "Settings"
+msgstr "Rregullime"
+
+#: classes/WP_Piwik.php:262
+msgid "Important"
+msgstr ""
+
+#: classes/WP_Piwik.php:343 classes/WP_Piwik.php:365
+msgid "Piwik Statistics"
+msgstr "Statistika Piwik"
+
+#: classes/WP_Piwik.php:453
+msgid "Configure WP-Piwik"
+msgstr ""
+
+#: classes/WP_Piwik.php:923
+msgid "An error occured"
+msgstr "Ndodhi një gabim"
+
+#: classes/WP_Piwik.php:1191
+msgid "Cheatin&#8217; uh?"
+msgstr ""
+
+#: wp-piwik.php:60
+msgid ""
+"WP-Piwik requires at least PHP 5.3. You are using the deprecated version %s."
+" Please update PHP to use WP-Piwik."
+msgstr ""
+
+#. Plugin Name of the plugin/theme
+msgid "WP-Piwik"
+msgstr "WP-Piwik"
+
+#. Plugin URI of the plugin/theme
+msgid "http://wordpress.org/extend/plugins/wp-piwik/"
+msgstr ""
+
+#. Description of the plugin/theme
+msgid ""
+"Adds Piwik stats to your dashboard menu and Piwik code to your wordpress "
+"header."
+msgstr ""
+
+#. Author of the plugin/theme
+msgid "Andr&eacute; Br&auml;kling"
+msgstr "Andr&eacute; Br&auml;kling"
+
+#. Author URI of the plugin/theme
+msgid "http://www.braekling.de"
+msgstr "http://www.braekling.de"
diff --git a/wp-content/plugins/wp-piwik/languages/wp-piwik-sv_SE.mo b/wp-content/plugins/wp-piwik/languages/wp-piwik-sv_SE.mo
index ea45e2add3e96d270fb992ae24f483685fc8d934..a4787737a44fc40e6bbead03effb21d1dd032eca 100644
Binary files a/wp-content/plugins/wp-piwik/languages/wp-piwik-sv_SE.mo and b/wp-content/plugins/wp-piwik/languages/wp-piwik-sv_SE.mo differ
diff --git a/wp-content/plugins/wp-piwik/languages/wp-piwik-sv_SE.po b/wp-content/plugins/wp-piwik/languages/wp-piwik-sv_SE.po
index 0c25298697ea73b26ecebf0f97083c11ec2d396a..8b25ec46dd7b4234ebdb4fdeebb2a9867212fef4 100644
--- a/wp-content/plugins/wp-piwik/languages/wp-piwik-sv_SE.po
+++ b/wp-content/plugins/wp-piwik/languages/wp-piwik-sv_SE.po
@@ -1,391 +1,1265 @@
-# WP-Piwik 0.3.0 - German language file
-# Copyright (C) 2009 Andre Braekling
+# Copyright (C) 2015 WP-Piwik
 # This file is distributed under the same license as the WP-Piwik package.
-# Andre Braekling <webmaster@braekling.de>, 2009.
-#
+# Translators:
+# Andre Braekling <webmaster@braekling.de>, 2009
 msgid ""
 msgstr ""
-"Project-Id-Version: 0.3.0\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-04-15 21:30+0100\n"
-"PO-Revision-Date: 2010-04-15 21:50+0100\n"
-"Last-Translator: Mats Bergsten <mats@bergsten.net>\n"
-"Language-Team: Swedish <ezbizniz.com>\n"
+"Project-Id-Version: WP-Piwik\n"
+"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-piwik\n"
+"POT-Creation-Date: 2015-07-22 10:25:29+00:00\n"
+"PO-Revision-Date: 2015-07-22 10:33+0000\n"
+"Last-Translator: André Bräkling\n"
+"Language-Team: Swedish (Sweden) (http://www.transifex.com/projects/p/wp-piwik/language/sv_SE/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Poedit-Language: Swedish\n"
-"X-Poedit-Country: SWEDEN\n"
-"X-Poedit-SourceCharset: utf-8\n"
-"X-Poedit-Basepath: J:\\Webbutveckling\\WordPress MU\\WP Piwik\\wp-piwik\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-"X-Poedit-KeywordsList: _e;__\n"
-"X-Poedit-SearchPath-0: J:\\Webbutveckling\\WordPress MU\\WP Piwik\\wp-piwik\n"
-
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/wp-piwik.php:105
-#: Piwik\wp-piwik/wp-piwik.php:342
-msgid "Piwik Statistics"
-msgstr "Besöksstatistik"
+"Language: sv_SE\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: classes/WP_Piwik/Admin/Settings.php:24
+msgid "Reload"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:27
+msgid "Changes saved."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:45
+msgid "Save Changes"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:46
+msgid "Thanks for using WP-Piwik!"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid "WP-Piwik %s is successfully connected to Piwik %s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid "You are running WordPress %s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid ""
+"You are running a WordPress %s blog network (WPMU). WP-Piwik will handle "
+"your sites as different websites."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:53
+msgid ""
+"WP-Piwik %s was not able to connect to Piwik using your configuration. Check"
+" the &raquo;Connect to Piwik&laquo; section below."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:56
+msgid ""
+"WP-Piwik %s has to be connected to Piwik first. Check the &raquo;Connect to "
+"Piwik&laquo; section below."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:60
+msgid "Connect to Piwik"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:65
+msgid "Show Statistics"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:69
+msgid "Enable Tracking"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:74
+msgid "Expert Settings"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:78 classes/WP_Piwik.php:923
+msgid "Support"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:82
+msgid "Credits"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid ""
+"WP-Piwik is a WordPress plugin to show a selection of Piwik stats in your "
+"WordPress admin dashboard and to add and configure your Piwik tracking code."
+" To use this you will need your own Piwik instance. If you do not already "
+"have a Piwik setup, you have two simple options: use either"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "Self-hosted"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "or"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "Cloud-hosted"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:98
+msgid ""
+"Neither cURL nor fopen are available. So WP-Piwik can not use the HTTP API "
+"and not connect to Piwik Pro."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:98
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
+msgid "More information"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid "You can choose between three connection methods:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:103
+msgid "Self-hosted (HTTP API, default)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"This is the default option for a self-hosted Piwik and should work for most "
+"configurations. WP-Piwik will connect to Piwik using http(s)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:104
+msgid "Self-hosted (PHP API)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"Choose this, if your self-hosted Piwik and WordPress are running on the same"
+" machine and you know the full server path to your Piwik instance."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:105
+msgid "Cloud-hosted (Piwik Pro)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"If you are using a cloud-hosted Piwik by Piwik Pro, you can simply use this "
+"option."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:101
+msgid "Piwik Mode"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:102
+msgid "Disabled (WP-Piwik will not connect to Piwik)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:108
+msgid "Piwik URL"
+msgstr "Piwik-URL"
+
+#: classes/WP_Piwik/Admin/Settings.php:108
+msgid ""
+"Enter your Piwik URL. This is the same URL you use to access your Piwik "
+"instance, e.g. http://www.example.com/piwik/."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:109
+msgid "Piwik path"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:109
+msgid "Enter the file path to your Piwik instance, e.g. /var/www/piwik/."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:110
+msgid "Piwik user"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:110
+msgid ""
+"Enter your Piwik Pro username. It is also part of your URL: "
+"http://USERNAME.piwik.pro."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid "Auth token"
+msgstr "auktoriseringskod"
+
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid ""
+"Enter your Piwik auth token here. It is an alphanumerical code like "
+"0a1b2c34d56e78901fa2bc3d45678efa."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid "See %sWP-Piwik FAQ%s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:116
+msgid "Auto config"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:116
+msgid ""
+"Check this to automatically choose your blog from your Piwik sites by URL. "
+"If your blog is not added to Piwik yet, WP-Piwik will add a new site."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:127
+msgid "Determined site"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:132
+msgid "Select site"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:140
+msgid "Piwik default date"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:141
+#: classes/WP_Piwik/Admin/Settings.php:154
+msgid "Today"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:142
+#: classes/WP_Piwik/Admin/Settings.php:153
+msgid "Yesterday"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:143
+msgid "Current month"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:144
+msgid "Last month"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:145
+msgid "Current week"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:146
+msgid "Last week"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:147
+msgid "Default date shown on statistics page."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:149
+msgid "Show SEO data"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:149
+msgid "Display SEO ranking data on statistics page."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:149
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Slow!"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:151
+msgid "Dashboard overview"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:152
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:192
+#: classes/WP_Piwik/Admin/Settings.php:213
+#: classes/WP_Piwik/Admin/Settings.php:304
+msgid "Disabled"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:155
+msgid "Last 30 days"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:156
+msgid "Enable WP-Piwik dashboard widget &quot;Overview&quot;."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:158
+msgid "Dashboard graph"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:158
+msgid "Enable WP-Piwik dashboard widget &quot;Graph&quot;."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Dashboard SEO"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Enable WP-Piwik dashboard widget &quot;SEO&quot;."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:162
+msgid "Show graph on WordPress Toolbar"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:162
+msgid "Display a last 30 days visitor graph on WordPress' toolbar."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:164
+msgid "Display stats to"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:171
+msgid "Choose user roles allowed to see the statistics page."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:173
+msgid "Show per post stats"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:173
+msgid "Show stats about single posts at the post edit admin page."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:175
+msgid "Piwik shortcut"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:175
+msgid "Display a shortcut to Piwik itself."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:177
+msgid "WP-Piwik display name"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:177
+msgid "Plugin name shown in WordPress."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:179
+msgid "Enable shortcodes"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:179
+msgid "Enable shortcodes in post or page content."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "You can choose between four tracking code modes:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"WP-Piwik will not add the tracking code. Use this, if you want to add the "
+"tracking code to your template files or you use another plugin to add the "
+"tracking code."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:193
+msgid "Default tracking"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "WP-Piwik will use Piwik's standard tracking code."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:194
+msgid "Use js/index.php"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"You can choose this tracking code, to deliver a minified proxy code and to "
+"avoid using the files called piwik.js or piwik.php."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "See %sreadme file%s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:195
+msgid "Use proxy script"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "Use this tracking code to not reveal the Piwik server URL."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:210
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid "See %sPiwik FAQ%s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:196
+msgid "Enter manually"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"Enter your own tracking code manually. You can choose one of the prior "
+"options, pre-configure your tracking code and switch to manually editing at "
+"last."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "Use the placeholder {ID} to add the Piwik site ID."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:191
+msgid "Add tracking code"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:199
+msgid "Tracking code"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:201
+msgid "JavaScript code position"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:202
+msgid "Footer"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:203
+msgid "Header"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:204
+msgid ""
+"Choose whether the JavaScript code is added to the footer or the header."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:206
+msgid "Noscript code"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+msgid "Add &lt;noscript&gt;"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+msgid "Adds the &lt;noscript&gt; code to your footer."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Disabled in proxy mode."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Add rec parameter to noscript code"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Enable tracking for visitors without JavaScript (not recommended)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:212
+msgid "Enable content tracking"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:214
+msgid "Track all content blocks"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:215
+msgid "Track only visible content blocks"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:216
+msgid ""
+"Content tracking allows you to track interaction with the content of a web "
+"page or application."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:216
+#: classes/WP_Piwik/Admin/Settings.php:218
+#: classes/WP_Piwik/Admin/Settings.php:222
+#: classes/WP_Piwik/Admin/Settings.php:224
+#: classes/WP_Piwik/Admin/Settings.php:226
+#: classes/WP_Piwik/Admin/Settings.php:247
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "See %sPiwik documentation%s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:218
+msgid "Track search"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:218
+msgid "Use Piwik's advanced Site Search Analytics feature."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid "Track 404"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid ""
+"WP-Piwik can automatically add a 404-category to track 404-page-visits."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:222
+msgid "Add annotation on new post"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:222
+msgid "Add a Piwik annotation on each new post."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:224
+msgid "Show custom variables box"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:224
+msgid " Show a &quot;custom variables&quot; edit box on post edit page."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:226
+msgid "Add new file types for download tracking"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:226
+msgid ""
+"Add file extensions for download tracking, divided by a vertical bar "
+"(&#124;)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:228
+msgid "Disable cookies"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:228
+msgid "Disable all tracking cookies for a visitor."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:230
+msgid "Limit cookie lifetime"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:230
+msgid ""
+"You can limit the cookie lifetime to avoid tracking your users over a longer"
+" period as necessary."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:232
+msgid "Visitor timeout (seconds)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:234
+msgid "Session timeout (seconds)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:236
+msgid "Referral timeout (seconds)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:238
+msgid "Track admin pages"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:238
+msgid ""
+"Enable to track users on admin pages (remember to configure the tracking "
+"filter appropriately)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:241
+msgid "Tracking filter"
+msgstr "Spårningsfilter"
+
+#: classes/WP_Piwik/Admin/Settings.php:245
+msgid "Choose users by user role you do <strong>not</strong> want to track."
+msgstr "Välj användare efter användarroll du <strong>inte</strong> vill spåra."
+
+#: classes/WP_Piwik/Admin/Settings.php:247
+msgid "Track subdomains in the same website"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:247
+msgid "Adds *.-prefix to cookie domain."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "Do not count subdomains as outlink"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "Adds *.-prefix to tracked domain."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:251
+msgid "Track RSS feeds"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:251
+msgid "Enable to track posts in feeds via tracking pixel."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:253
+msgid "Track RSS feed links as campaign"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:255
+msgid "RSS feed campaign"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:255
+msgid "Keyword: post name."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:257
+msgid "Enable heartbeat timer"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:257
+msgid ""
+"Enable a heartbeat timer to get more accurate visit lengths by sending "
+"periodical HTTP ping requests as long as the site is opened. Enter the time "
+"between the pings in seconds (Piwik default: 15) to enable or 0 to disable "
+"this feature. <strong>Note:</strong> This will cause a lot of additional "
+"HTTP requests on your site."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:262
+msgid ""
+"Usually, you do not need to change these settings. If you want to do so, you"
+" should know what you do or you got an expert's advice."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:264
+msgid "Enable cache"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:264
+msgid "Cache API calls, which not contain today's values, for a week."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:267
+msgid "HTTP connection via"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:268
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "cURL"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:269
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "fopen"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:270
+msgid ""
+"Choose whether WP-Piwik should use cURL or fopen to connect to Piwik in HTTP"
+" or Pro mode."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:272
+msgid "HTTP method"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:273
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "POST"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:274
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "GET"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:275
+msgid "Choose whether WP-Piwik should use POST or GET in HTTP or Pro mode."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:277
+msgid "Disable time limit"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:277
+msgid "Use set_time_limit(0) if stats page causes a time out."
+msgstr ""
 
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/wp-piwik.php:106
-#: Piwik\wp-piwik/wp-piwik.php:118
-#: Piwik\wp-piwik/wp-piwik.php:119
-#: Piwik\wp-piwik/wp-piwik.php:141
-msgid "WP-Piwik"
-msgstr "Statistik"
+#: classes/WP_Piwik/Admin/Settings.php:279
+msgid "Connection timeout"
+msgstr ""
 
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/wp-piwik.php:126
-#: Piwik\wp-piwik/wp-piwik.php:127
-msgid "WPMU-Piwik"
-msgstr "Besöksstatistik"
+#: classes/WP_Piwik/Admin/Settings.php:281
+msgid "Disable SSL peer verification"
+msgstr ""
 
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/wp-piwik.php:137
-#: Piwik\wp-piwik/wp-piwik.php:494
-msgid "yesterday"
-msgstr "igår"
-
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/wp-piwik.php:138
-#: Piwik\wp-piwik/wp-piwik.php:495
-msgid "today"
-msgstr "idag"
-
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/wp-piwik.php:139
-#: Piwik\wp-piwik/wp-piwik.php:496
-msgid "last 30 days"
-msgstr "senaste 30 dagarna"
-
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/wp-piwik.php:173
-msgid "Settings"
-msgstr "Inställningar"
+#: classes/WP_Piwik/Admin/Settings.php:281
+msgid "not recommended"
+msgstr ""
 
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/wp-piwik.php:288
-#: Piwik\wp-piwik/dashboard/browsers.php:54
-#: Piwik\wp-piwik/dashboard/keywords.php:17
-#: Piwik\wp-piwik/dashboard/screens.php:53
-#: Piwik\wp-piwik/dashboard/systems.php:53
-#: Piwik\wp-piwik/dashboard/visitors.php:70
-#: Piwik\wp-piwik/dashboard/websites.php:19
-msgid "Unique"
-msgstr "Unika"
+#: classes/WP_Piwik/Admin/Settings.php:283
+msgid "User agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:284
+msgid "Use the PHP default user agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:284
+msgid "empty"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:285
+msgid "Define a specific user agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:287
+msgid "Specific user agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:289
+msgid "Add data-cfasync=false"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:291
+msgid "CDN URL"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:293
+msgid "CDN URL (SSL)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:295
+msgid "Force Piwik to use a specific protocol"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:296
+msgid "Disabled (default)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:297
+msgid "http"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:298
+msgid "https (SSL)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:299
+msgid ""
+"Choose if you want to explicitly force Piwik to use HTTP or HTTPS. Does not "
+"work with a CDN URL."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:301
+msgid "Update notice"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:302
+msgid "Show always if WP-Piwik is updated"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:303
+msgid "Show only if WP-Piwik is updated and settings were changed"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:305
+msgid "Choose if you want to get an update notice if WP-Piwik is updated."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:466
+msgid "Donate"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:468
+msgid "If you like WP-Piwik, you can support its development by a donation:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:506
+msgid "My Amazon.de wishlist"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:509
+#: classes/WP_Piwik/Admin/Settings.php:556
+msgid "Please don't forget to vote the compatibility at the"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid "Thank you very much for your donation"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid "the Piwik team itself"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid ", and all people flattering this"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:541
+msgid ""
+"Graphs powered by <a href=\"http://www.jqplot.com/\">jqPlot</a> (License: "
+"GPL 2.0 and MIT) and <a "
+"href=\"http://omnipotent.net/jquery.sparkline/\">jQuery Sparklines</a> "
+"(License: New BSD License)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:542
+msgid "Metabox support inspired by"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:543
+msgid "Tabbed settings page suggested by the"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:544
+msgid "Thank you very much"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:544
+msgid "for your translation work"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:545
+msgid ""
+"Thank you very much, all users who send me mails containing criticism, "
+"commendation, feature requests and bug reports! You help me to make WP-Piwik"
+" much better."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:546
+msgid ""
+"Thank <strong>you</strong> for using my plugin. It is the best commendation "
+"if my piece of code is really used!"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:555
+msgid "The best place to get help:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:555
+msgid "WP-Piwik support forum"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:558
+msgid "Debugging"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:559
+msgid ""
+"Either allow_url_fopen has to be enabled <em>or</em> cURL has to be "
+"available:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:562
+msgid "cURL is"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:563
+#: classes/WP_Piwik/Admin/Settings.php:568
+msgid "not"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:564
+msgid "available"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:567
+msgid "allow_url_fopen is"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:569
+msgid "enabled"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "is used."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:573
+msgid "Determined Piwik base URL is"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:577
+msgid "Tools"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:579
+msgid "Run testscript"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:580
+msgid "Sitebrowser"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:581
+msgid "Clear cache"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:582
+msgid "Are you sure you want to clear all settings?"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:582
+msgid "Reset WP-Piwik"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:584
+msgid "Latest support threads on WordPress.org"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:635
+msgid "Settings cleared (except connection settings)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:651
+msgid "Cache cleared."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:17
+msgid "site"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:18
+msgid "sites"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:24
+msgid "No site configured yet."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:29
+msgid "Blog ID"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:30
+msgid "Title"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:31
+msgid "URL"
+msgstr ""
 
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/wp-piwik.php:358
-msgid "Change"
-msgstr "Förändring"
+#: classes/WP_Piwik/Admin/Sitebrowser.php:32
+msgid "Site ID (Piwik)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:79
+msgid "Site not created yet."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Statistics.php:12
+msgid "Statistics"
+msgstr ""
 
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/wp-piwik.php:359
+#: classes/WP_Piwik/Admin/Statistics.php:20
 msgid "Currently shown stats:"
 msgstr "Aktuell statistik:"
 
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/wp-piwik.php:360
-msgid "Current shown stats: <strong>Overall</strong>"
-msgstr "Visad statistik: <strong>Generell</strong>"
-
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/wp-piwik.php:419
-msgid "WP-Piwik Settings"
-msgstr "Statistikinställningar"
-
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/wp-piwik.php:423
-#: Piwik\wp-piwik/wp-piwik.php:559
-msgid "Account settings"
-msgstr "Kontoinställningar"
-
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/wp-piwik.php:425
-#: Piwik\wp-piwik/wp-piwik.php:561
-msgid "Piwik URL"
-msgstr "Piwik-URL"
+#: classes/WP_Piwik/Request/Php.php:27
+msgid "Could not resolve"
+msgstr ""
 
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/wp-piwik.php:429
-#: Piwik\wp-piwik/wp-piwik.php:565
-msgid "Auth token"
-msgstr "auktoriseringskod"
+#: classes/WP_Piwik/Request/Php.php:27
+msgid "realpath() returns false"
+msgstr ""
 
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/wp-piwik.php:434
-#: Piwik\wp-piwik/wp-piwik.php:570
-msgid "To enable Piwik statistics, please enter your Piwik base URL (like http://mydomain.com/piwik) and your personal authentification token. You can get the token on the API page inside your Piwik interface. It looks like &quot;1234a5cd6789e0a12345b678cd9012ef&quot;."
-msgstr "För att möjliggöra Piwik-statistik, var god skriv in bas-URL:en för din Piwik-installation (som http://mindoman.se/piwik) och din personliga autentiseringskod. Du kan få autentiseringskoden från API-sidan i din Piwik-installation. Det ser ut som &quot;1234a5cd6789e0a12345b678cd9012ef&quot;."
+#: classes/WP_Piwik/Request/Php.php:39
+msgid "Class Piwik\\FrontController does not exists."
+msgstr ""
 
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/wp-piwik.php:442
-msgid "<strong>Important note:</strong> If you do not host this blog on your own, your site admin is able to get your auth token from the database. So he is able to access your statistics. You should never use an auth token with more than simple view access!"
-msgstr "<strong>Viktigt:</strong> Om du inte härbergerar denna blogg själv kan din siteadministratör ge dig autentiseringskoden från databasen. Så han kan se din statistik. Du ska aldrig använde en autentiseringskod med mer än enkel visningsaccess!"
+#: classes/WP_Piwik/Request/Php.php:42
+msgid "Class Piwik\\API\\Request does not exists."
+msgstr ""
 
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/wp-piwik.php:451
-#: Piwik\wp-piwik/wp-piwik.php:455
-msgid "An error occured"
-msgstr "Ett fel uppstod"
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:10
+msgid "Piwik Custom Variables"
+msgstr ""
 
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/wp-piwik.php:452
-msgid "Please check URL and auth token. You need at least view access to one site."
-msgstr "Var god kolla URL och autentiseringskoden. Du behöver minst visningsaccess till en site."
-
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/wp-piwik.php:458
-msgid "Choose site"
-msgstr "Välj site"
-
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/wp-piwik.php:478
-msgid "Add script to wp_footer()"
-msgstr "Lägg till skript i wp_footer()"
-
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/wp-piwik.php:482
-msgid "If your template uses wp_footer(), WP-Piwik can automatically add the Piwik javascript code to your blog."
-msgstr "Om ditt tema använder wp_footer() kan WP-Piwik automatiskt lägga till Piwik javascript till din blogg."
-
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/wp-piwik.php:485
-#: Piwik\wp-piwik/wp-piwik.php:586
-msgid "Disable Google Chart API"
-msgstr "Stäng av Google Chart-API:et"
-
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/wp-piwik.php:489
-#: Piwik\wp-piwik/wp-piwik.php:590
-msgid "WP-Piwik uses the Google Chart API to create graphs. To avoid this, just check this box."
-msgstr "Piwik använder Google Chart-API för att skapa grafer. För att undvika detta, kryssa för rutan."
-
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/wp-piwik.php:491
-msgid "Show overview on WordPress dashboard"
-msgstr "Visa översikt i WordPress-panelen"
-
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/wp-piwik.php:493
-msgid "No"
-msgstr "Nej"
-
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/wp-piwik.php:494
-#: Piwik\wp-piwik/wp-piwik.php:495
-#: Piwik\wp-piwik/wp-piwik.php:496
-msgid "Yes"
-msgstr "Ja"
-
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/wp-piwik.php:498
-msgid "Show Piwik link in overview"
-msgstr "Visa länk till Piwik i översikt"
-
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/wp-piwik.php:502
-#: Piwik\wp-piwik/wp-piwik.php:592
-msgid "Tracking filter"
-msgstr "Spårningsfilter"
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
+msgid "Name"
+msgstr ""
 
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/wp-piwik.php:509
-msgid "Choose users by user role you do <strong>not</strong> want to track. Requires enabled &quot;Add script to wp_footer()&quot;-functionality."
-msgstr "Välj användare efter användarroll som du <strong>inte</strong> vill spåra. Kräver &quot;Lägg till skript till wp_footer()&quot;-funktionalitet."
-
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/wp-piwik.php:512
-msgid "Display statistics to"
-msgstr "Visa statistik för"
-
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/wp-piwik.php:519
-msgid "or above"
-msgstr "eller ovan"
-
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/wp-piwik.php:521
-msgid "Minimum user level required to display statistics page."
-msgstr "Minimal användarnivå för att visa statistiksidan."
-
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/wp-piwik.php:529
-#: Piwik\wp-piwik/wp-piwik.php:606
-msgid "Save settings"
-msgstr "Spara inställningar"
-
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/wp-piwik.php:532
-msgid "Advertisement"
-msgstr "Reklam"
-
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/wp-piwik.php:532
-msgid "Looking for premium themes? Visit "
-msgstr "Letar du efter teman? Besök"
-
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/wp-piwik.php:555
-msgid "WPMU-Piwik Settings"
-msgstr "Statistikinställningar"
-
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/wp-piwik.php:578
-msgid "<strong>Important note:</strong> You have to choose a token which provides administration access. WPMU-Piwik will create new Piwik sites for each blog if it is shown the first time and it is not added yet. All users can access their own statistics only, while site admins can access all statistics. To avoid conflicts, you should use a clean Piwik installation without other sites added. The provided themes should use wp_footer, because it adds the Piwik javascript code to each page."
-msgstr "<strong>Viktigt:</strong> Du har valt en kod som ger administratörsrättigheter. Statistikprogrammet kommer skapa en ny inställning för varje blogg när den visas första gången och ännu inte är tillagd. Alla användare kan enbart komma åt deras egen statistik, medan siteadministratörer kan komma åt all statistik. För att undvika konflikter bör du använda en ren Piwik-installation utan andra siter tillagda. De teman du använder bör använda funktioner wp_footer(), eftersom det lägger till Piwiks javascript-kod till varje sida."
-
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/wp-piwik.php:599
-msgid "Choose users by user role you do <strong>not</strong> want to track."
-msgstr "Välj användare efter användarroll du <strong>inte</strong> vill spåra."
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
+msgid "Value"
+msgstr ""
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
+msgid "Set custom variables for a page view"
+msgstr ""
 
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/dashboard/browsers.php:12
-#: Piwik\wp-piwik/dashboard/browsers.php:53
+#: classes/WP_Piwik/Widget/BrowserDetails.php:18
+msgid "Browser Details"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:37
+#: classes/WP_Piwik/Widget/Browsers.php:37
+#: classes/WP_Piwik/Widget/Chart.php:43
+#: classes/WP_Piwik/Widget/Noresult.php:23
+#: classes/WP_Piwik/Widget/Overview.php:24
+#: classes/WP_Piwik/Widget/Plugins.php:23 classes/WP_Piwik/Widget/Post.php:25
+#: classes/WP_Piwik/Widget/Screens.php:35
+#: classes/WP_Piwik/Widget/Search.php:23 classes/WP_Piwik/Widget/Seo.php:20
+#: classes/WP_Piwik/Widget/SystemDetails.php:33
+#: classes/WP_Piwik/Widget/Systems.php:33
+#: classes/WP_Piwik/Widget/Visitors.php:35 classes/WP_Piwik/Widget.php:91
+msgid "Piwik error"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
 msgid "Browser"
 msgstr "Webbläsare"
 
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/dashboard/browsers.php:30
-#: Piwik\wp-piwik/dashboard/screens.php:29
-#: Piwik\wp-piwik/dashboard/systems.php:29
-msgid "Others"
-msgstr "Andra"
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+#: classes/WP_Piwik/Widget/Screens.php:37
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+#: classes/WP_Piwik/Widget/Visitors.php:57 classes/WP_Piwik/Widget.php:100
+msgid "Unique"
+msgstr "Unika"
 
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/dashboard/browsers.php:55
-#: Piwik\wp-piwik/dashboard/plugins.php:33
-#: Piwik\wp-piwik/dashboard/screens.php:54
-#: Piwik\wp-piwik/dashboard/systems.php:54
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+#: classes/WP_Piwik/Widget/Plugins.php:25
+#: classes/WP_Piwik/Widget/Screens.php:37
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
 msgid "Percent"
 msgstr "Procent"
 
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/dashboard/keywords.php:12
+#: classes/WP_Piwik/Widget/BrowserDetails.php:66
+#: classes/WP_Piwik/Widget/Browsers.php:66
+#: classes/WP_Piwik/Widget/Screens.php:64
+#: classes/WP_Piwik/Widget/SystemDetails.php:62
+#: classes/WP_Piwik/Widget/Systems.php:62
+msgid "Others"
+msgstr "Andra"
+
+#: classes/WP_Piwik/Widget/Browsers.php:18
+msgid "Browsers"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Chart.php:19
+#: classes/WP_Piwik/Widget/Overview.php:41 classes/WP_Piwik/Widget/Post.php:37
+#: classes/WP_Piwik/Widget/Visitors.php:17
+msgid "Visitors"
+msgstr "Besökare"
+
+#: classes/WP_Piwik/Widget/Chart.php:71
+msgid ""
+"The graph contains the values shown in the table below (visitors / unique / "
+"bounces). The red line show a linear trendline (unique)."
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Keywords.php:16
 msgid "Keywords"
 msgstr "Sökord"
 
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/dashboard/keywords.php:17
+#: classes/WP_Piwik/Widget/Noresult.php:16
+#: classes/WP_Piwik/Widget/Search.php:16
+msgid "Site Search"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
 msgid "Keyword"
 msgstr "Sökord"
 
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/dashboard/overview.php:12
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+msgid "Requests"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Bounced"
+msgstr "Studsade"
+
+#: classes/WP_Piwik/Widget/Overview.php:17 classes/WP_Piwik/Widget/Post.php:18
 msgid "Overview"
 msgstr "Översikt"
 
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/dashboard/overview.php:42
-#: Piwik\wp-piwik/dashboard/visitors.php:24
-msgid "Visitors"
-msgstr "Besökare"
-
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/dashboard/overview.php:43
+#: classes/WP_Piwik/Widget/Overview.php:42 classes/WP_Piwik/Widget/Post.php:38
 msgid "Unique visitors"
 msgstr "Unika besökare"
 
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/dashboard/overview.php:44
+#: classes/WP_Piwik/Widget/Overview.php:43 classes/WP_Piwik/Widget/Post.php:39
 msgid "Page views"
 msgstr "Sidvisningar"
 
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/dashboard/overview.php:45
-msgid "Max. page views in one visit"
-msgstr "Max sidvisningar/besök"
-
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/dashboard/overview.php:46
-msgid "Total time spent by visitors"
-msgstr "Total besökstid spenderad"
+#: classes/WP_Piwik/Widget/Overview.php:44 classes/WP_Piwik/Widget/Post.php:40
+msgid "Total time spent"
+msgstr ""
 
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/dashboard/overview.php:47
+#: classes/WP_Piwik/Widget/Overview.php:45 classes/WP_Piwik/Widget/Post.php:42
 msgid "Bounce count"
 msgstr "Antal studsade besökare"
 
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/dashboard/overview.php:49
+#: classes/WP_Piwik/Widget/Overview.php:48 classes/WP_Piwik/Widget/Post.php:41
+msgid "Time/visit"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Overview.php:48
+msgid "Max. page views in one visit"
+msgstr "Max sidvisningar/besök"
+
+#: classes/WP_Piwik/Widget/Overview.php:49 classes/WP_Piwik/Widget/Post.php:46
 msgid "Shortcut"
 msgstr "Genväg"
 
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/dashboard/plugins.php:12
-#: Piwik\wp-piwik/dashboard/plugins.php:31
+#: classes/WP_Piwik/Widget/Pages.php:16
+msgid "Pages"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Plugins.php:16
 msgid "Plugins"
 msgstr "Tillägg"
 
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/dashboard/plugins.php:32
-#: Piwik\wp-piwik/dashboard/visitors.php:69
+#: classes/WP_Piwik/Widget/Plugins.php:25
+msgid "Plugin"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Plugins.php:25
+#: classes/WP_Piwik/Widget/Visitors.php:57 classes/WP_Piwik/Widget.php:102
 msgid "Visits"
 msgstr "Besök"
 
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/dashboard/screens.php:12
-#: Piwik\wp-piwik/dashboard/screens.php:52
+#: classes/WP_Piwik/Widget/Post.php:43
+msgid "Min. generation time"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Post.php:44
+msgid "Max. generation time"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Referrers.php:16
+msgid "Referrers"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Screens.php:16
+msgid "Resolutions"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Screens.php:37
 msgid "Resolution"
 msgstr "Upplösning"
 
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/dashboard/systems.php:12
-#: Piwik\wp-piwik/dashboard/systems.php:52
-msgid "Operating System"
-msgstr "Operativsystem"
+#: classes/WP_Piwik/Widget/Seo.php:13
+msgid "SEO"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/SystemDetails.php:14
+msgid "Operation System Details"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+msgid "Operation System"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Systems.php:14
+msgid "Operation Systems"
+msgstr ""
 
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/dashboard/visitors.php:68
+#: classes/WP_Piwik/Widget/Visitors.php:57
 msgid "Date"
 msgstr "Datum"
 
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/dashboard/visitors.php:71
-msgid "Bounced"
-msgstr "Studsade"
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Page Views"
+msgstr ""
+
+#: classes/WP_Piwik/Widget.php:104
+msgid "Hits"
+msgstr ""
+
+#: classes/WP_Piwik/Widget.php:106
+msgid "Actions"
+msgstr ""
+
+#: classes/WP_Piwik/Widget.php:162
+msgid "No data available."
+msgstr ""
+
+#: classes/WP_Piwik/Widget.php:293
+msgid "week"
+msgstr ""
+
+#: classes/WP_Piwik.php:193
+msgid "%s %s installed."
+msgstr ""
+
+#: classes/WP_Piwik.php:193
+msgid "Next you should connect to Piwik"
+msgstr ""
 
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/dashboard/visitors.php:84
-msgid "Unique TOTAL"
-msgstr "Unika TOTALT"
-
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/dashboard/visitors.php:84
-msgid "Sum"
-msgstr "Summa"
-
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/dashboard/visitors.php:84
-msgid "Avg"
-msgstr "Genomsnitt"
-
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/dashboard/websites.php:12
-msgid "Websites"
-msgstr "Hemsidor"
-
-#: J:\Webbutveckling\WordPress
-#: MU\WP Piwik\wp-piwik/dashboard/websites.php:18
-msgid "Website"
-msgstr "Hemsida"
-
-#~ msgid "Remote access to Piwik not possible. Enable allow_url_fopen or CURL."
-#~ msgstr ""
-#~ "Zugriff auf Piwik nicht m&ouml;glich. Aktiviere allow_url_fopen oder CURL."
-#~ msgid "http://dev.braekling.de/wordpress-plugins/dev/wp-piwik/index.html"
-#~ msgstr "http://dev.braekling.de/wordpress-plugins/dev/wp-piwik/index.html"
-#~ msgid ""
-#~ "Adds Piwik stats to your dashboard menu and Piwik code to your wordpress "
-#~ "footer."
-#~ msgstr ""
-#~ "F&uuml;gt Piwik-Statistiken zu Deinem Dashboard-Men&uuml; hinzu und kann "
-#~ "den Piwik-Tracking-Code in den Blog-Footer einf&uuml;gen."
-#~ msgid "Andr&eacute; Br&auml;kling"
-#~ msgstr "Andr&eacute; Br&auml;kling"
-#~ msgid "http://www.braekling.de"
-#~ msgstr "http://www.braekling.de"
+#: classes/WP_Piwik.php:227
+msgid "%s updated to %s."
+msgstr ""
+
+#: classes/WP_Piwik.php:227
+msgid "Please validate your configuration"
+msgstr ""
+
+#: classes/WP_Piwik.php:259 classes/WP_Piwik.php:481
+msgid "Settings"
+msgstr "Inställningar"
+
+#: classes/WP_Piwik.php:262
+msgid "Important"
+msgstr ""
+
+#: classes/WP_Piwik.php:343 classes/WP_Piwik.php:365
+msgid "Piwik Statistics"
+msgstr "Besöksstatistik"
+
+#: classes/WP_Piwik.php:453
+msgid "Configure WP-Piwik"
+msgstr ""
+
+#: classes/WP_Piwik.php:923
+msgid "An error occured"
+msgstr "Ett fel uppstod"
 
+#: classes/WP_Piwik.php:1191
+msgid "Cheatin&#8217; uh?"
+msgstr ""
+
+#: wp-piwik.php:60
+msgid ""
+"WP-Piwik requires at least PHP 5.3. You are using the deprecated version %s."
+" Please update PHP to use WP-Piwik."
+msgstr ""
+
+#. Plugin Name of the plugin/theme
+msgid "WP-Piwik"
+msgstr "Statistik"
+
+#. Plugin URI of the plugin/theme
+msgid "http://wordpress.org/extend/plugins/wp-piwik/"
+msgstr ""
+
+#. Description of the plugin/theme
+msgid ""
+"Adds Piwik stats to your dashboard menu and Piwik code to your wordpress "
+"header."
+msgstr ""
+
+#. Author of the plugin/theme
+msgid "Andr&eacute; Br&auml;kling"
+msgstr ""
+
+#. Author URI of the plugin/theme
+msgid "http://www.braekling.de"
+msgstr ""
diff --git a/wp-content/plugins/wp-piwik/languages/wp-piwik-tr_TR.mo b/wp-content/plugins/wp-piwik/languages/wp-piwik-tr_TR.mo
new file mode 100644
index 0000000000000000000000000000000000000000..c29bdc8445ef98af0637e49898b6f0967b4279c2
Binary files /dev/null and b/wp-content/plugins/wp-piwik/languages/wp-piwik-tr_TR.mo differ
diff --git a/wp-content/plugins/wp-piwik/languages/wp-piwik-tr_TR.po b/wp-content/plugins/wp-piwik/languages/wp-piwik-tr_TR.po
new file mode 100644
index 0000000000000000000000000000000000000000..6c28eb94877228d5d72d046f2b5180dc81c61147
--- /dev/null
+++ b/wp-content/plugins/wp-piwik/languages/wp-piwik-tr_TR.po
@@ -0,0 +1,1265 @@
+# Copyright (C) 2015 WP-Piwik
+# This file is distributed under the same license as the WP-Piwik package.
+# Translators:
+# Muhammet Kaan YEŞİLYURT <m.kaan@yesilyurt.com>, 2015
+msgid ""
+msgstr ""
+"Project-Id-Version: WP-Piwik\n"
+"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-piwik\n"
+"POT-Creation-Date: 2015-07-22 10:25:29+00:00\n"
+"PO-Revision-Date: 2015-07-22 10:33+0000\n"
+"Last-Translator: André Bräkling\n"
+"Language-Team: Turkish (Turkey) (http://www.transifex.com/projects/p/wp-piwik/language/tr_TR/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: tr_TR\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#: classes/WP_Piwik/Admin/Settings.php:24
+msgid "Reload"
+msgstr "Yenile"
+
+#: classes/WP_Piwik/Admin/Settings.php:27
+msgid "Changes saved."
+msgstr "Değişiklikler kaydedildi."
+
+#: classes/WP_Piwik/Admin/Settings.php:45
+msgid "Save Changes"
+msgstr "Değişiklikleri Kaydet"
+
+#: classes/WP_Piwik/Admin/Settings.php:46
+msgid "Thanks for using WP-Piwik!"
+msgstr "WP-Piwik'i kullandığınız için teşekkürler!"
+
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid "WP-Piwik %s is successfully connected to Piwik %s."
+msgstr "WP-Piwik %s başarılı bir şekilde Piwik %s'e bağlandı"
+
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid "You are running WordPress %s."
+msgstr "WordPress %s kullanıyorsunuz."
+
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid ""
+"You are running a WordPress %s blog network (WPMU). WP-Piwik will handle "
+"your sites as different websites."
+msgstr "WordPress %s blog ağı (WPMU) kullanıyorsunuz. Piwik sitelerinizi farklı web siteleri olarak değerlendirecek."
+
+#: classes/WP_Piwik/Admin/Settings.php:53
+msgid ""
+"WP-Piwik %s was not able to connect to Piwik using your configuration. Check"
+" the &raquo;Connect to Piwik&laquo; section below."
+msgstr "WP-Piwik %s yapılandırma ayarlarınızı kullanarak Piwik'e bağlanamıyor. Aşağıdaki &raquo;Piwik'e bağlan&laquo; bölümünü kontrol edin."
+
+#: classes/WP_Piwik/Admin/Settings.php:56
+msgid ""
+"WP-Piwik %s has to be connected to Piwik first. Check the &raquo;Connect to "
+"Piwik&laquo; section below."
+msgstr "WP-Piwik %s önce Piwik'e bağlı olmalıdır. Aşağıdaki &raquo;Piwik'e bağlan&laquo; bölümünü kontrol edin."
+
+#: classes/WP_Piwik/Admin/Settings.php:60
+msgid "Connect to Piwik"
+msgstr "Piwik'e bağlan"
+
+#: classes/WP_Piwik/Admin/Settings.php:65
+msgid "Show Statistics"
+msgstr "İstatistikleri Göster"
+
+#: classes/WP_Piwik/Admin/Settings.php:69
+msgid "Enable Tracking"
+msgstr "İzlemeti Etkinleştir"
+
+#: classes/WP_Piwik/Admin/Settings.php:74
+msgid "Expert Settings"
+msgstr "Uzman Ayarları"
+
+#: classes/WP_Piwik/Admin/Settings.php:78 classes/WP_Piwik.php:923
+msgid "Support"
+msgstr "Destek"
+
+#: classes/WP_Piwik/Admin/Settings.php:82
+msgid "Credits"
+msgstr "Teşekkür"
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid ""
+"WP-Piwik is a WordPress plugin to show a selection of Piwik stats in your "
+"WordPress admin dashboard and to add and configure your Piwik tracking code."
+" To use this you will need your own Piwik instance. If you do not already "
+"have a Piwik setup, you have two simple options: use either"
+msgstr "WP-Piwik seçilen Piwik istatistiklerinin WordPress yönetici panelinde gösterilmesine, Piwik izleme kodlarının yapılandırılmasına ve eklenmesine yarayan bir WordPress eklentisidir. Bunu kullanmak için kendi Piwik kurulumunuza ihtiyacınız vardır. Eğer halihazırda bir Piwik kurulumunuz yoksa, iki basit seçeneğiniz var: barındırma için"
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "Self-hosted"
+msgstr "Kendi-sunucuzda"
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "or"
+msgstr "veya"
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "Cloud-hosted"
+msgstr "Bulut-barındırma"
+
+#: classes/WP_Piwik/Admin/Settings.php:98
+msgid ""
+"Neither cURL nor fopen are available. So WP-Piwik can not use the HTTP API "
+"and not connect to Piwik Pro."
+msgstr "Ne CURL ne de fopen kullanılabilir değil. Bu nedenle WP-Piwik HTTP API'sini kullanamıyor ve Piwik Pro'ya bağlanamıyor."
+
+#: classes/WP_Piwik/Admin/Settings.php:98
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
+msgid "More information"
+msgstr "Daha fazla bilgi"
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid "You can choose between three connection methods:"
+msgstr "Üç bağlantı yöntemi arasından seçim yapabilirsiniz:"
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:103
+msgid "Self-hosted (HTTP API, default)"
+msgstr "Kendi-sunucunuzda (HHTP API, varsayılan)"
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"This is the default option for a self-hosted Piwik and should work for most "
+"configurations. WP-Piwik will connect to Piwik using http(s)."
+msgstr "Bu kendi sunucunuzda barındıracağınız Piwik kurulumları için varsayılan seçenektir ve birçok yapılandırma için çalışması gerekir. WP-Piwik http(s) kullanarak Piwik'e bağlanacaktır."
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:104
+msgid "Self-hosted (PHP API)"
+msgstr "Kendi-sunucunuzda (PHP API)"
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"Choose this, if your self-hosted Piwik and WordPress are running on the same"
+" machine and you know the full server path to your Piwik instance."
+msgstr "Eğer Piwik ve WordPress aynı makinede çalışıyorsa ve Piwik kurulumunuzun tam yolunu biliyorsanız bunu seçin."
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:105
+msgid "Cloud-hosted (Piwik Pro)"
+msgstr "Bulut-barındırma (Piwik Pro)"
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"If you are using a cloud-hosted Piwik by Piwik Pro, you can simply use this "
+"option."
+msgstr "Eğer Piwik Pro tarafından sağlanan bir Bulut-barındırma Piwik kurulumu kullanıyorsanız basitçe bu seçeneği kullanabilirsiniz."
+
+#: classes/WP_Piwik/Admin/Settings.php:101
+msgid "Piwik Mode"
+msgstr "Piwik Modu"
+
+#: classes/WP_Piwik/Admin/Settings.php:102
+msgid "Disabled (WP-Piwik will not connect to Piwik)"
+msgstr "Devredışı (WP-Piwik Piwik'e bağlanmayacak)"
+
+#: classes/WP_Piwik/Admin/Settings.php:108
+msgid "Piwik URL"
+msgstr "Piwik URL'si"
+
+#: classes/WP_Piwik/Admin/Settings.php:108
+msgid ""
+"Enter your Piwik URL. This is the same URL you use to access your Piwik "
+"instance, e.g. http://www.example.com/piwik/."
+msgstr "Piwik URL'nizi girin. Bu sizin Piwik kurulumunuza erişmek için kullandığınız ile aynı URL'dir, örneğin http://www.mesela.com/piwik/."
+
+#: classes/WP_Piwik/Admin/Settings.php:109
+msgid "Piwik path"
+msgstr "Piwik yolu"
+
+#: classes/WP_Piwik/Admin/Settings.php:109
+msgid "Enter the file path to your Piwik instance, e.g. /var/www/piwik/."
+msgstr "Piwik kurulumunuzun tam yolunu girin, örneğin /var/www/piwik/."
+
+#: classes/WP_Piwik/Admin/Settings.php:110
+msgid "Piwik user"
+msgstr "Piwik kullanıcısı"
+
+#: classes/WP_Piwik/Admin/Settings.php:110
+msgid ""
+"Enter your Piwik Pro username. It is also part of your URL: "
+"http://USERNAME.piwik.pro."
+msgstr "Piwik Pro kullanıcı adınızı girin. Bu aynı zamanda URL'nizin bir parçasıdır http://KULLANICIADI.piwik.pro."
+
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid "Auth token"
+msgstr "Yetki dizgesi"
+
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid ""
+"Enter your Piwik auth token here. It is an alphanumerical code like "
+"0a1b2c34d56e78901fa2bc3d45678efa."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid "See %sWP-Piwik FAQ%s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:116
+msgid "Auto config"
+msgstr "Oto yapılandırma"
+
+#: classes/WP_Piwik/Admin/Settings.php:116
+msgid ""
+"Check this to automatically choose your blog from your Piwik sites by URL. "
+"If your blog is not added to Piwik yet, WP-Piwik will add a new site."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:127
+msgid "Determined site"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:132
+msgid "Select site"
+msgstr "Site seçin"
+
+#: classes/WP_Piwik/Admin/Settings.php:140
+msgid "Piwik default date"
+msgstr "Varsayılan Piwik tarihi"
+
+#: classes/WP_Piwik/Admin/Settings.php:141
+#: classes/WP_Piwik/Admin/Settings.php:154
+msgid "Today"
+msgstr "Bugün"
+
+#: classes/WP_Piwik/Admin/Settings.php:142
+#: classes/WP_Piwik/Admin/Settings.php:153
+msgid "Yesterday"
+msgstr "Dün"
+
+#: classes/WP_Piwik/Admin/Settings.php:143
+msgid "Current month"
+msgstr "Bu ay"
+
+#: classes/WP_Piwik/Admin/Settings.php:144
+msgid "Last month"
+msgstr "Geçen ay"
+
+#: classes/WP_Piwik/Admin/Settings.php:145
+msgid "Current week"
+msgstr "Bu hafta"
+
+#: classes/WP_Piwik/Admin/Settings.php:146
+msgid "Last week"
+msgstr "Geçen hafta"
+
+#: classes/WP_Piwik/Admin/Settings.php:147
+msgid "Default date shown on statistics page."
+msgstr "İstatistik sayfasında gösterilen varsayılan tarih."
+
+#: classes/WP_Piwik/Admin/Settings.php:149
+msgid "Show SEO data"
+msgstr "SEO verilerini göster"
+
+#: classes/WP_Piwik/Admin/Settings.php:149
+msgid "Display SEO ranking data on statistics page."
+msgstr "SEO sıralama verisini istatistik sayfasında göster."
+
+#: classes/WP_Piwik/Admin/Settings.php:149
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Slow!"
+msgstr "Yavaş!"
+
+#: classes/WP_Piwik/Admin/Settings.php:151
+msgid "Dashboard overview"
+msgstr "Panele genel bakış "
+
+#: classes/WP_Piwik/Admin/Settings.php:152
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:192
+#: classes/WP_Piwik/Admin/Settings.php:213
+#: classes/WP_Piwik/Admin/Settings.php:304
+msgid "Disabled"
+msgstr "Devredışı"
+
+#: classes/WP_Piwik/Admin/Settings.php:155
+msgid "Last 30 days"
+msgstr "Son 30 gün"
+
+#: classes/WP_Piwik/Admin/Settings.php:156
+msgid "Enable WP-Piwik dashboard widget &quot;Overview&quot;."
+msgstr "WP-Piwik panel bileşenini etkinleştir &quot;Genel bakış&quot;."
+
+#: classes/WP_Piwik/Admin/Settings.php:158
+msgid "Dashboard graph"
+msgstr "Panel grafiği"
+
+#: classes/WP_Piwik/Admin/Settings.php:158
+msgid "Enable WP-Piwik dashboard widget &quot;Graph&quot;."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Dashboard SEO"
+msgstr "Panel SEO"
+
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Enable WP-Piwik dashboard widget &quot;SEO&quot;."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:162
+msgid "Show graph on WordPress Toolbar"
+msgstr "Grafiği WordPress Araç çubuğunda göster"
+
+#: classes/WP_Piwik/Admin/Settings.php:162
+msgid "Display a last 30 days visitor graph on WordPress' toolbar."
+msgstr "WordPress'in araç çubuğunda son 30 günün ziyaretçi grafiğini göster"
+
+#: classes/WP_Piwik/Admin/Settings.php:164
+msgid "Display stats to"
+msgstr "İstatistikleri şunlar görebilir:"
+
+#: classes/WP_Piwik/Admin/Settings.php:171
+msgid "Choose user roles allowed to see the statistics page."
+msgstr "İstatistikler sayfasına görmeye yetkili kullanıcı  gruplarını seçin."
+
+#: classes/WP_Piwik/Admin/Settings.php:173
+msgid "Show per post stats"
+msgstr "Gönderi başına istatistikleri göster"
+
+#: classes/WP_Piwik/Admin/Settings.php:173
+msgid "Show stats about single posts at the post edit admin page."
+msgstr "Gönderi düzenleme yönetici sayfasında tekil gönderiler için istatistikleri göster."
+
+#: classes/WP_Piwik/Admin/Settings.php:175
+msgid "Piwik shortcut"
+msgstr "Piwik kısayolu"
+
+#: classes/WP_Piwik/Admin/Settings.php:175
+msgid "Display a shortcut to Piwik itself."
+msgstr "Piwik'in kendine bir kısayol göster."
+
+#: classes/WP_Piwik/Admin/Settings.php:177
+msgid "WP-Piwik display name"
+msgstr "WP-Piwik görünen adı"
+
+#: classes/WP_Piwik/Admin/Settings.php:177
+msgid "Plugin name shown in WordPress."
+msgstr "WordPress'de gösterilen eklenti adı."
+
+#: classes/WP_Piwik/Admin/Settings.php:179
+msgid "Enable shortcodes"
+msgstr "Kısakodları etkinleştir"
+
+#: classes/WP_Piwik/Admin/Settings.php:179
+msgid "Enable shortcodes in post or page content."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "You can choose between four tracking code modes:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"WP-Piwik will not add the tracking code. Use this, if you want to add the "
+"tracking code to your template files or you use another plugin to add the "
+"tracking code."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:193
+msgid "Default tracking"
+msgstr "Varsayılan izleme"
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "WP-Piwik will use Piwik's standard tracking code."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:194
+msgid "Use js/index.php"
+msgstr "js/index.php kullan"
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"You can choose this tracking code, to deliver a minified proxy code and to "
+"avoid using the files called piwik.js or piwik.php."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "See %sreadme file%s."
+msgstr "%sbenioku doyasına%s bakın."
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:195
+msgid "Use proxy script"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "Use this tracking code to not reveal the Piwik server URL."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:210
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid "See %sPiwik FAQ%s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:196
+msgid "Enter manually"
+msgstr "Elle gir"
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"Enter your own tracking code manually. You can choose one of the prior "
+"options, pre-configure your tracking code and switch to manually editing at "
+"last."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "Use the placeholder {ID} to add the Piwik site ID."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:191
+msgid "Add tracking code"
+msgstr "İzleme kodu ekle"
+
+#: classes/WP_Piwik/Admin/Settings.php:199
+msgid "Tracking code"
+msgstr "İzleme kodu"
+
+#: classes/WP_Piwik/Admin/Settings.php:201
+msgid "JavaScript code position"
+msgstr "JavaScript kod konumu"
+
+#: classes/WP_Piwik/Admin/Settings.php:202
+msgid "Footer"
+msgstr "Sayfa Alt Bilgisi"
+
+#: classes/WP_Piwik/Admin/Settings.php:203
+msgid "Header"
+msgstr "Sayfa Üstbilgisi"
+
+#: classes/WP_Piwik/Admin/Settings.php:204
+msgid ""
+"Choose whether the JavaScript code is added to the footer or the header."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:206
+msgid "Noscript code"
+msgstr "Noscript kodu"
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+msgid "Add &lt;noscript&gt;"
+msgstr "&lt;noscript&gt; ekle"
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+msgid "Adds the &lt;noscript&gt; code to your footer."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Disabled in proxy mode."
+msgstr "Vekil sunucu kipinde devredışı."
+
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Add rec parameter to noscript code"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Enable tracking for visitors without JavaScript (not recommended)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:212
+msgid "Enable content tracking"
+msgstr "İçerik izlemeyi etkinleştir"
+
+#: classes/WP_Piwik/Admin/Settings.php:214
+msgid "Track all content blocks"
+msgstr "Tüm içerik bloklarını izle"
+
+#: classes/WP_Piwik/Admin/Settings.php:215
+msgid "Track only visible content blocks"
+msgstr "Sadece görünen içerik bloklarını izle"
+
+#: classes/WP_Piwik/Admin/Settings.php:216
+msgid ""
+"Content tracking allows you to track interaction with the content of a web "
+"page or application."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:216
+#: classes/WP_Piwik/Admin/Settings.php:218
+#: classes/WP_Piwik/Admin/Settings.php:222
+#: classes/WP_Piwik/Admin/Settings.php:224
+#: classes/WP_Piwik/Admin/Settings.php:226
+#: classes/WP_Piwik/Admin/Settings.php:247
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "See %sPiwik documentation%s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:218
+msgid "Track search"
+msgstr "Aramaları izle"
+
+#: classes/WP_Piwik/Admin/Settings.php:218
+msgid "Use Piwik's advanced Site Search Analytics feature."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid "Track 404"
+msgstr "404 hatalarını izle"
+
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid ""
+"WP-Piwik can automatically add a 404-category to track 404-page-visits."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:222
+msgid "Add annotation on new post"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:222
+msgid "Add a Piwik annotation on each new post."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:224
+msgid "Show custom variables box"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:224
+msgid " Show a &quot;custom variables&quot; edit box on post edit page."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:226
+msgid "Add new file types for download tracking"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:226
+msgid ""
+"Add file extensions for download tracking, divided by a vertical bar "
+"(&#124;)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:228
+msgid "Disable cookies"
+msgstr "Çerezleri devredışı bırak"
+
+#: classes/WP_Piwik/Admin/Settings.php:228
+msgid "Disable all tracking cookies for a visitor."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:230
+msgid "Limit cookie lifetime"
+msgstr "Çerez ömrünü sınırla"
+
+#: classes/WP_Piwik/Admin/Settings.php:230
+msgid ""
+"You can limit the cookie lifetime to avoid tracking your users over a longer"
+" period as necessary."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:232
+msgid "Visitor timeout (seconds)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:234
+msgid "Session timeout (seconds)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:236
+msgid "Referral timeout (seconds)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:238
+msgid "Track admin pages"
+msgstr "Yönetici sayfalarını izle"
+
+#: classes/WP_Piwik/Admin/Settings.php:238
+msgid ""
+"Enable to track users on admin pages (remember to configure the tracking "
+"filter appropriately)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:241
+msgid "Tracking filter"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:245
+msgid "Choose users by user role you do <strong>not</strong> want to track."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:247
+msgid "Track subdomains in the same website"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:247
+msgid "Adds *.-prefix to cookie domain."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "Do not count subdomains as outlink"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "Adds *.-prefix to tracked domain."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:251
+msgid "Track RSS feeds"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:251
+msgid "Enable to track posts in feeds via tracking pixel."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:253
+msgid "Track RSS feed links as campaign"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:255
+msgid "RSS feed campaign"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:255
+msgid "Keyword: post name."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:257
+msgid "Enable heartbeat timer"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:257
+msgid ""
+"Enable a heartbeat timer to get more accurate visit lengths by sending "
+"periodical HTTP ping requests as long as the site is opened. Enter the time "
+"between the pings in seconds (Piwik default: 15) to enable or 0 to disable "
+"this feature. <strong>Note:</strong> This will cause a lot of additional "
+"HTTP requests on your site."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:262
+msgid ""
+"Usually, you do not need to change these settings. If you want to do so, you"
+" should know what you do or you got an expert's advice."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:264
+msgid "Enable cache"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:264
+msgid "Cache API calls, which not contain today's values, for a week."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:267
+msgid "HTTP connection via"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:268
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "cURL"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:269
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "fopen"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:270
+msgid ""
+"Choose whether WP-Piwik should use cURL or fopen to connect to Piwik in HTTP"
+" or Pro mode."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:272
+msgid "HTTP method"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:273
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "POST"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:274
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "GET"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:275
+msgid "Choose whether WP-Piwik should use POST or GET in HTTP or Pro mode."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:277
+msgid "Disable time limit"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:277
+msgid "Use set_time_limit(0) if stats page causes a time out."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:279
+msgid "Connection timeout"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:281
+msgid "Disable SSL peer verification"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:281
+msgid "not recommended"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:283
+msgid "User agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:284
+msgid "Use the PHP default user agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:284
+msgid "empty"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:285
+msgid "Define a specific user agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:287
+msgid "Specific user agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:289
+msgid "Add data-cfasync=false"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:291
+msgid "CDN URL"
+msgstr "CDN URL'si"
+
+#: classes/WP_Piwik/Admin/Settings.php:293
+msgid "CDN URL (SSL)"
+msgstr "CDN URL'si (SSL)"
+
+#: classes/WP_Piwik/Admin/Settings.php:295
+msgid "Force Piwik to use a specific protocol"
+msgstr "Piwik'i belirli bir protokol kullanmaya zorla"
+
+#: classes/WP_Piwik/Admin/Settings.php:296
+msgid "Disabled (default)"
+msgstr "Devredışı (varsayılan)"
+
+#: classes/WP_Piwik/Admin/Settings.php:297
+msgid "http"
+msgstr "http"
+
+#: classes/WP_Piwik/Admin/Settings.php:298
+msgid "https (SSL)"
+msgstr "https (SSL)"
+
+#: classes/WP_Piwik/Admin/Settings.php:299
+msgid ""
+"Choose if you want to explicitly force Piwik to use HTTP or HTTPS. Does not "
+"work with a CDN URL."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:301
+msgid "Update notice"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:302
+msgid "Show always if WP-Piwik is updated"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:303
+msgid "Show only if WP-Piwik is updated and settings were changed"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:305
+msgid "Choose if you want to get an update notice if WP-Piwik is updated."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:466
+msgid "Donate"
+msgstr "Bağış yap"
+
+#: classes/WP_Piwik/Admin/Settings.php:468
+msgid "If you like WP-Piwik, you can support its development by a donation:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:506
+msgid "My Amazon.de wishlist"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:509
+#: classes/WP_Piwik/Admin/Settings.php:556
+msgid "Please don't forget to vote the compatibility at the"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid "Thank you very much for your donation"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid "the Piwik team itself"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid ", and all people flattering this"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:541
+msgid ""
+"Graphs powered by <a href=\"http://www.jqplot.com/\">jqPlot</a> (License: "
+"GPL 2.0 and MIT) and <a "
+"href=\"http://omnipotent.net/jquery.sparkline/\">jQuery Sparklines</a> "
+"(License: New BSD License)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:542
+msgid "Metabox support inspired by"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:543
+msgid "Tabbed settings page suggested by the"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:544
+msgid "Thank you very much"
+msgstr "Çok teşekkür ederiz,"
+
+#: classes/WP_Piwik/Admin/Settings.php:544
+msgid "for your translation work"
+msgstr "özellikle çeviri çalışmalarınız için"
+
+#: classes/WP_Piwik/Admin/Settings.php:545
+msgid ""
+"Thank you very much, all users who send me mails containing criticism, "
+"commendation, feature requests and bug reports! You help me to make WP-Piwik"
+" much better."
+msgstr "Bana eleştiri, öneri, özellik isteği ve hata bildirimi içeren postalar gönderen tüm kullanıcılara çok teşekkür ederim. Bana WP-Piwik'i daha iyi yapmakta yardım ediyorsunuz."
+
+#: classes/WP_Piwik/Admin/Settings.php:546
+msgid ""
+"Thank <strong>you</strong> for using my plugin. It is the best commendation "
+"if my piece of code is really used!"
+msgstr "<strong>Size</strong> eklentimi kullandığınız için çok teşekkür ederim.  Eğer kodumun bir parçası gerçekten işe yarıyorsa bu benim için en büyük övünçtür!"
+
+#: classes/WP_Piwik/Admin/Settings.php:555
+msgid "The best place to get help:"
+msgstr "Yardım almak için en iyi yer:"
+
+#: classes/WP_Piwik/Admin/Settings.php:555
+msgid "WP-Piwik support forum"
+msgstr "WP-Piwik destek forumu"
+
+#: classes/WP_Piwik/Admin/Settings.php:558
+msgid "Debugging"
+msgstr "Hata ayıklama"
+
+#: classes/WP_Piwik/Admin/Settings.php:559
+msgid ""
+"Either allow_url_fopen has to be enabled <em>or</em> cURL has to be "
+"available:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:562
+msgid "cURL is"
+msgstr "cURL"
+
+#: classes/WP_Piwik/Admin/Settings.php:563
+#: classes/WP_Piwik/Admin/Settings.php:568
+msgid "not"
+msgstr "değil"
+
+#: classes/WP_Piwik/Admin/Settings.php:564
+msgid "available"
+msgstr "mevcut"
+
+#: classes/WP_Piwik/Admin/Settings.php:567
+msgid "allow_url_fopen is"
+msgstr "allow_url_fopen değeri"
+
+#: classes/WP_Piwik/Admin/Settings.php:569
+msgid "enabled"
+msgstr "etkin"
+
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "is used."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:573
+msgid "Determined Piwik base URL is"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:577
+msgid "Tools"
+msgstr "Araçlar"
+
+#: classes/WP_Piwik/Admin/Settings.php:579
+msgid "Run testscript"
+msgstr "Test programcığını çalıştır"
+
+#: classes/WP_Piwik/Admin/Settings.php:580
+msgid "Sitebrowser"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:581
+msgid "Clear cache"
+msgstr "Önbelleği temizle"
+
+#: classes/WP_Piwik/Admin/Settings.php:582
+msgid "Are you sure you want to clear all settings?"
+msgstr "Tüm ayarları silmek istediğinizden emin misiniz?"
+
+#: classes/WP_Piwik/Admin/Settings.php:582
+msgid "Reset WP-Piwik"
+msgstr "WP-Piwik'i sıfırla"
+
+#: classes/WP_Piwik/Admin/Settings.php:584
+msgid "Latest support threads on WordPress.org"
+msgstr "WordPress.org'daki en son destek konuları"
+
+#: classes/WP_Piwik/Admin/Settings.php:635
+msgid "Settings cleared (except connection settings)."
+msgstr "Ayarlar silindi (bağlantı ayarları hariç)"
+
+#: classes/WP_Piwik/Admin/Settings.php:651
+msgid "Cache cleared."
+msgstr "Önbellek temizlendi"
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:17
+msgid "site"
+msgstr "site"
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:18
+msgid "sites"
+msgstr "siteler"
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:24
+msgid "No site configured yet."
+msgstr "Henüz site yapılandırılmadı."
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:29
+msgid "Blog ID"
+msgstr "Blog ID"
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:30
+msgid "Title"
+msgstr "Başlık"
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:31
+msgid "URL"
+msgstr "URL"
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:32
+msgid "Site ID (Piwik)"
+msgstr "Site ID (Piwik)"
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:79
+msgid "Site not created yet."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Statistics.php:12
+msgid "Statistics"
+msgstr "İstatistikler"
+
+#: classes/WP_Piwik/Admin/Statistics.php:20
+msgid "Currently shown stats:"
+msgstr ""
+
+#: classes/WP_Piwik/Request/Php.php:27
+msgid "Could not resolve"
+msgstr "Çözülemedi"
+
+#: classes/WP_Piwik/Request/Php.php:27
+msgid "realpath() returns false"
+msgstr ""
+
+#: classes/WP_Piwik/Request/Php.php:39
+msgid "Class Piwik\\FrontController does not exists."
+msgstr ""
+
+#: classes/WP_Piwik/Request/Php.php:42
+msgid "Class Piwik\\API\\Request does not exists."
+msgstr ""
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:10
+msgid "Piwik Custom Variables"
+msgstr ""
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
+msgid "Name"
+msgstr "Ad"
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
+msgid "Value"
+msgstr "Değer"
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
+msgid "Set custom variables for a page view"
+msgstr "Sayfa görüntülemesi için özel değişkenler tanımla"
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:18
+msgid "Browser Details"
+msgstr "Tarayıcı Detayları"
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:37
+#: classes/WP_Piwik/Widget/Browsers.php:37
+#: classes/WP_Piwik/Widget/Chart.php:43
+#: classes/WP_Piwik/Widget/Noresult.php:23
+#: classes/WP_Piwik/Widget/Overview.php:24
+#: classes/WP_Piwik/Widget/Plugins.php:23 classes/WP_Piwik/Widget/Post.php:25
+#: classes/WP_Piwik/Widget/Screens.php:35
+#: classes/WP_Piwik/Widget/Search.php:23 classes/WP_Piwik/Widget/Seo.php:20
+#: classes/WP_Piwik/Widget/SystemDetails.php:33
+#: classes/WP_Piwik/Widget/Systems.php:33
+#: classes/WP_Piwik/Widget/Visitors.php:35 classes/WP_Piwik/Widget.php:91
+msgid "Piwik error"
+msgstr "Piwik hatası"
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+msgid "Browser"
+msgstr "Tarayıcı"
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+#: classes/WP_Piwik/Widget/Screens.php:37
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+#: classes/WP_Piwik/Widget/Visitors.php:57 classes/WP_Piwik/Widget.php:100
+msgid "Unique"
+msgstr "Tekil"
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+#: classes/WP_Piwik/Widget/Plugins.php:25
+#: classes/WP_Piwik/Widget/Screens.php:37
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+msgid "Percent"
+msgstr "Yüzde"
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:66
+#: classes/WP_Piwik/Widget/Browsers.php:66
+#: classes/WP_Piwik/Widget/Screens.php:64
+#: classes/WP_Piwik/Widget/SystemDetails.php:62
+#: classes/WP_Piwik/Widget/Systems.php:62
+msgid "Others"
+msgstr "Diğerleri"
+
+#: classes/WP_Piwik/Widget/Browsers.php:18
+msgid "Browsers"
+msgstr "Tarayıcılar"
+
+#: classes/WP_Piwik/Widget/Chart.php:19
+#: classes/WP_Piwik/Widget/Overview.php:41 classes/WP_Piwik/Widget/Post.php:37
+#: classes/WP_Piwik/Widget/Visitors.php:17
+msgid "Visitors"
+msgstr "Ziyaretçiler"
+
+#: classes/WP_Piwik/Widget/Chart.php:71
+msgid ""
+"The graph contains the values shown in the table below (visitors / unique / "
+"bounces). The red line show a linear trendline (unique)."
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Keywords.php:16
+msgid "Keywords"
+msgstr "Anahtar kelimeler"
+
+#: classes/WP_Piwik/Widget/Noresult.php:16
+#: classes/WP_Piwik/Widget/Search.php:16
+msgid "Site Search"
+msgstr "Site araması"
+
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+msgid "Keyword"
+msgstr "Anahtar kelime"
+
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+msgid "Requests"
+msgstr "İstekler"
+
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Bounced"
+msgstr "Hemen çıkanlar"
+
+#: classes/WP_Piwik/Widget/Overview.php:17 classes/WP_Piwik/Widget/Post.php:18
+msgid "Overview"
+msgstr "Genel bakış"
+
+#: classes/WP_Piwik/Widget/Overview.php:42 classes/WP_Piwik/Widget/Post.php:38
+msgid "Unique visitors"
+msgstr "Tekil ziyaretçiler"
+
+#: classes/WP_Piwik/Widget/Overview.php:43 classes/WP_Piwik/Widget/Post.php:39
+msgid "Page views"
+msgstr "Sayfa görüntülemeleri"
+
+#: classes/WP_Piwik/Widget/Overview.php:44 classes/WP_Piwik/Widget/Post.php:40
+msgid "Total time spent"
+msgstr "Toplam geçirilen zaman"
+
+#: classes/WP_Piwik/Widget/Overview.php:45 classes/WP_Piwik/Widget/Post.php:42
+msgid "Bounce count"
+msgstr "Hemen çıkma sayısı"
+
+#: classes/WP_Piwik/Widget/Overview.php:48 classes/WP_Piwik/Widget/Post.php:41
+msgid "Time/visit"
+msgstr "Zaman/ziyaret"
+
+#: classes/WP_Piwik/Widget/Overview.php:48
+msgid "Max. page views in one visit"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Overview.php:49 classes/WP_Piwik/Widget/Post.php:46
+msgid "Shortcut"
+msgstr "Kısayol"
+
+#: classes/WP_Piwik/Widget/Pages.php:16
+msgid "Pages"
+msgstr "Sayfalar"
+
+#: classes/WP_Piwik/Widget/Plugins.php:16
+msgid "Plugins"
+msgstr "Eklentiler"
+
+#: classes/WP_Piwik/Widget/Plugins.php:25
+msgid "Plugin"
+msgstr "Eklenti"
+
+#: classes/WP_Piwik/Widget/Plugins.php:25
+#: classes/WP_Piwik/Widget/Visitors.php:57 classes/WP_Piwik/Widget.php:102
+msgid "Visits"
+msgstr "Ziyaretler"
+
+#: classes/WP_Piwik/Widget/Post.php:43
+msgid "Min. generation time"
+msgstr "Asgari oluşturma süresi"
+
+#: classes/WP_Piwik/Widget/Post.php:44
+msgid "Max. generation time"
+msgstr "Azami oluşturma süresi"
+
+#: classes/WP_Piwik/Widget/Referrers.php:16
+msgid "Referrers"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Screens.php:16
+msgid "Resolutions"
+msgstr "Çözünürlükler"
+
+#: classes/WP_Piwik/Widget/Screens.php:37
+msgid "Resolution"
+msgstr "Çözünürlük"
+
+#: classes/WP_Piwik/Widget/Seo.php:13
+msgid "SEO"
+msgstr "SEO"
+
+#: classes/WP_Piwik/Widget/SystemDetails.php:14
+msgid "Operation System Details"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+msgid "Operation System"
+msgstr "İşletim Sistemi"
+
+#: classes/WP_Piwik/Widget/Systems.php:14
+msgid "Operation Systems"
+msgstr "İşletim Sistemleri"
+
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Date"
+msgstr "Tarih"
+
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Page Views"
+msgstr "Sayfa Görüntülemeleri"
+
+#: classes/WP_Piwik/Widget.php:104
+msgid "Hits"
+msgstr "Ziyaretler"
+
+#: classes/WP_Piwik/Widget.php:106
+msgid "Actions"
+msgstr "Eylemler"
+
+#: classes/WP_Piwik/Widget.php:162
+msgid "No data available."
+msgstr "Kullanılabilir veri yok"
+
+#: classes/WP_Piwik/Widget.php:293
+msgid "week"
+msgstr "hafta"
+
+#: classes/WP_Piwik.php:193
+msgid "%s %s installed."
+msgstr "%s %s kuruldu."
+
+#: classes/WP_Piwik.php:193
+msgid "Next you should connect to Piwik"
+msgstr ""
+
+#: classes/WP_Piwik.php:227
+msgid "%s updated to %s."
+msgstr ""
+
+#: classes/WP_Piwik.php:227
+msgid "Please validate your configuration"
+msgstr "Lütfen yapılandırmanızı doğrulayın"
+
+#: classes/WP_Piwik.php:259 classes/WP_Piwik.php:481
+msgid "Settings"
+msgstr "Ayarlar"
+
+#: classes/WP_Piwik.php:262
+msgid "Important"
+msgstr "Önemli"
+
+#: classes/WP_Piwik.php:343 classes/WP_Piwik.php:365
+msgid "Piwik Statistics"
+msgstr "Piwik İstatistikleri"
+
+#: classes/WP_Piwik.php:453
+msgid "Configure WP-Piwik"
+msgstr ""
+
+#: classes/WP_Piwik.php:923
+msgid "An error occured"
+msgstr "Bir hata oluştu"
+
+#: classes/WP_Piwik.php:1191
+msgid "Cheatin&#8217; uh?"
+msgstr ""
+
+#: wp-piwik.php:60
+msgid ""
+"WP-Piwik requires at least PHP 5.3. You are using the deprecated version %s."
+" Please update PHP to use WP-Piwik."
+msgstr "WP-Piwik en az PHP 5.3 gerektirmektedir. Siz artık desteklenmeyen %s sürümünü kullanıyorsunuz. WP-Piwik kullanmak için lütfen PHP sürümünüzü güncelleyin."
+
+#. Plugin Name of the plugin/theme
+msgid "WP-Piwik"
+msgstr "WP-Piwik"
+
+#. Plugin URI of the plugin/theme
+msgid "http://wordpress.org/extend/plugins/wp-piwik/"
+msgstr "http://wordpress.org/extend/plugins/wp-piwik/"
+
+#. Description of the plugin/theme
+msgid ""
+"Adds Piwik stats to your dashboard menu and Piwik code to your wordpress "
+"header."
+msgstr ""
+
+#. Author of the plugin/theme
+msgid "Andr&eacute; Br&auml;kling"
+msgstr "Andr&eacute; Br&auml;kling"
+
+#. Author URI of the plugin/theme
+msgid "http://www.braekling.de"
+msgstr "http://www.braekling.de"
diff --git a/wp-content/plugins/wp-piwik/languages/wp-piwik-uk_UA.mo b/wp-content/plugins/wp-piwik/languages/wp-piwik-uk_UA.mo
new file mode 100644
index 0000000000000000000000000000000000000000..6df40318fe71d074dbc390cf3d5280ca4b40a67a
Binary files /dev/null and b/wp-content/plugins/wp-piwik/languages/wp-piwik-uk_UA.mo differ
diff --git a/wp-content/plugins/wp-piwik/languages/wp-piwik-uk_UA.po b/wp-content/plugins/wp-piwik/languages/wp-piwik-uk_UA.po
new file mode 100644
index 0000000000000000000000000000000000000000..a79a21930f96e3545ae6489579f21d468c3b3b92
--- /dev/null
+++ b/wp-content/plugins/wp-piwik/languages/wp-piwik-uk_UA.po
@@ -0,0 +1,1266 @@
+# Copyright (C) 2015 WP-Piwik
+# This file is distributed under the same license as the WP-Piwik package.
+# Translators:
+# Andre Braekling <webmaster@braekling.de>, 2009
+# FatCow http://www.fatcow.com, 2009
+msgid ""
+msgstr ""
+"Project-Id-Version: WP-Piwik\n"
+"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-piwik\n"
+"POT-Creation-Date: 2015-07-22 10:25:29+00:00\n"
+"PO-Revision-Date: 2015-07-22 10:33+0000\n"
+"Last-Translator: André Bräkling\n"
+"Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/projects/p/wp-piwik/language/uk_UA/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: uk_UA\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#: classes/WP_Piwik/Admin/Settings.php:24
+msgid "Reload"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:27
+msgid "Changes saved."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:45
+msgid "Save Changes"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:46
+msgid "Thanks for using WP-Piwik!"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid "WP-Piwik %s is successfully connected to Piwik %s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid "You are running WordPress %s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid ""
+"You are running a WordPress %s blog network (WPMU). WP-Piwik will handle "
+"your sites as different websites."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:53
+msgid ""
+"WP-Piwik %s was not able to connect to Piwik using your configuration. Check"
+" the &raquo;Connect to Piwik&laquo; section below."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:56
+msgid ""
+"WP-Piwik %s has to be connected to Piwik first. Check the &raquo;Connect to "
+"Piwik&laquo; section below."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:60
+msgid "Connect to Piwik"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:65
+msgid "Show Statistics"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:69
+msgid "Enable Tracking"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:74
+msgid "Expert Settings"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:78 classes/WP_Piwik.php:923
+msgid "Support"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:82
+msgid "Credits"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid ""
+"WP-Piwik is a WordPress plugin to show a selection of Piwik stats in your "
+"WordPress admin dashboard and to add and configure your Piwik tracking code."
+" To use this you will need your own Piwik instance. If you do not already "
+"have a Piwik setup, you have two simple options: use either"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "Self-hosted"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "or"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "Cloud-hosted"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:98
+msgid ""
+"Neither cURL nor fopen are available. So WP-Piwik can not use the HTTP API "
+"and not connect to Piwik Pro."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:98
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
+msgid "More information"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid "You can choose between three connection methods:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:103
+msgid "Self-hosted (HTTP API, default)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"This is the default option for a self-hosted Piwik and should work for most "
+"configurations. WP-Piwik will connect to Piwik using http(s)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:104
+msgid "Self-hosted (PHP API)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"Choose this, if your self-hosted Piwik and WordPress are running on the same"
+" machine and you know the full server path to your Piwik instance."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:105
+msgid "Cloud-hosted (Piwik Pro)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"If you are using a cloud-hosted Piwik by Piwik Pro, you can simply use this "
+"option."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:101
+msgid "Piwik Mode"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:102
+msgid "Disabled (WP-Piwik will not connect to Piwik)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:108
+msgid "Piwik URL"
+msgstr "Piwik URL"
+
+#: classes/WP_Piwik/Admin/Settings.php:108
+msgid ""
+"Enter your Piwik URL. This is the same URL you use to access your Piwik "
+"instance, e.g. http://www.example.com/piwik/."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:109
+msgid "Piwik path"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:109
+msgid "Enter the file path to your Piwik instance, e.g. /var/www/piwik/."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:110
+msgid "Piwik user"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:110
+msgid ""
+"Enter your Piwik Pro username. It is also part of your URL: "
+"http://USERNAME.piwik.pro."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid "Auth token"
+msgstr "Авто token"
+
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid ""
+"Enter your Piwik auth token here. It is an alphanumerical code like "
+"0a1b2c34d56e78901fa2bc3d45678efa."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid "See %sWP-Piwik FAQ%s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:116
+msgid "Auto config"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:116
+msgid ""
+"Check this to automatically choose your blog from your Piwik sites by URL. "
+"If your blog is not added to Piwik yet, WP-Piwik will add a new site."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:127
+msgid "Determined site"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:132
+msgid "Select site"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:140
+msgid "Piwik default date"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:141
+#: classes/WP_Piwik/Admin/Settings.php:154
+msgid "Today"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:142
+#: classes/WP_Piwik/Admin/Settings.php:153
+msgid "Yesterday"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:143
+msgid "Current month"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:144
+msgid "Last month"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:145
+msgid "Current week"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:146
+msgid "Last week"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:147
+msgid "Default date shown on statistics page."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:149
+msgid "Show SEO data"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:149
+msgid "Display SEO ranking data on statistics page."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:149
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Slow!"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:151
+msgid "Dashboard overview"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:152
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:192
+#: classes/WP_Piwik/Admin/Settings.php:213
+#: classes/WP_Piwik/Admin/Settings.php:304
+msgid "Disabled"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:155
+msgid "Last 30 days"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:156
+msgid "Enable WP-Piwik dashboard widget &quot;Overview&quot;."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:158
+msgid "Dashboard graph"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:158
+msgid "Enable WP-Piwik dashboard widget &quot;Graph&quot;."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Dashboard SEO"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Enable WP-Piwik dashboard widget &quot;SEO&quot;."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:162
+msgid "Show graph on WordPress Toolbar"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:162
+msgid "Display a last 30 days visitor graph on WordPress' toolbar."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:164
+msgid "Display stats to"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:171
+msgid "Choose user roles allowed to see the statistics page."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:173
+msgid "Show per post stats"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:173
+msgid "Show stats about single posts at the post edit admin page."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:175
+msgid "Piwik shortcut"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:175
+msgid "Display a shortcut to Piwik itself."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:177
+msgid "WP-Piwik display name"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:177
+msgid "Plugin name shown in WordPress."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:179
+msgid "Enable shortcodes"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:179
+msgid "Enable shortcodes in post or page content."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "You can choose between four tracking code modes:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"WP-Piwik will not add the tracking code. Use this, if you want to add the "
+"tracking code to your template files or you use another plugin to add the "
+"tracking code."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:193
+msgid "Default tracking"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "WP-Piwik will use Piwik's standard tracking code."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:194
+msgid "Use js/index.php"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"You can choose this tracking code, to deliver a minified proxy code and to "
+"avoid using the files called piwik.js or piwik.php."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "See %sreadme file%s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:195
+msgid "Use proxy script"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "Use this tracking code to not reveal the Piwik server URL."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:210
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid "See %sPiwik FAQ%s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:196
+msgid "Enter manually"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"Enter your own tracking code manually. You can choose one of the prior "
+"options, pre-configure your tracking code and switch to manually editing at "
+"last."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "Use the placeholder {ID} to add the Piwik site ID."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:191
+msgid "Add tracking code"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:199
+msgid "Tracking code"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:201
+msgid "JavaScript code position"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:202
+msgid "Footer"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:203
+msgid "Header"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:204
+msgid ""
+"Choose whether the JavaScript code is added to the footer or the header."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:206
+msgid "Noscript code"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+msgid "Add &lt;noscript&gt;"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+msgid "Adds the &lt;noscript&gt; code to your footer."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Disabled in proxy mode."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Add rec parameter to noscript code"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Enable tracking for visitors without JavaScript (not recommended)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:212
+msgid "Enable content tracking"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:214
+msgid "Track all content blocks"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:215
+msgid "Track only visible content blocks"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:216
+msgid ""
+"Content tracking allows you to track interaction with the content of a web "
+"page or application."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:216
+#: classes/WP_Piwik/Admin/Settings.php:218
+#: classes/WP_Piwik/Admin/Settings.php:222
+#: classes/WP_Piwik/Admin/Settings.php:224
+#: classes/WP_Piwik/Admin/Settings.php:226
+#: classes/WP_Piwik/Admin/Settings.php:247
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "See %sPiwik documentation%s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:218
+msgid "Track search"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:218
+msgid "Use Piwik's advanced Site Search Analytics feature."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid "Track 404"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid ""
+"WP-Piwik can automatically add a 404-category to track 404-page-visits."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:222
+msgid "Add annotation on new post"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:222
+msgid "Add a Piwik annotation on each new post."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:224
+msgid "Show custom variables box"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:224
+msgid " Show a &quot;custom variables&quot; edit box on post edit page."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:226
+msgid "Add new file types for download tracking"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:226
+msgid ""
+"Add file extensions for download tracking, divided by a vertical bar "
+"(&#124;)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:228
+msgid "Disable cookies"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:228
+msgid "Disable all tracking cookies for a visitor."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:230
+msgid "Limit cookie lifetime"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:230
+msgid ""
+"You can limit the cookie lifetime to avoid tracking your users over a longer"
+" period as necessary."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:232
+msgid "Visitor timeout (seconds)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:234
+msgid "Session timeout (seconds)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:236
+msgid "Referral timeout (seconds)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:238
+msgid "Track admin pages"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:238
+msgid ""
+"Enable to track users on admin pages (remember to configure the tracking "
+"filter appropriately)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:241
+msgid "Tracking filter"
+msgstr "Слідкуючий фільтр"
+
+#: classes/WP_Piwik/Admin/Settings.php:245
+msgid "Choose users by user role you do <strong>not</strong> want to track."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:247
+msgid "Track subdomains in the same website"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:247
+msgid "Adds *.-prefix to cookie domain."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "Do not count subdomains as outlink"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "Adds *.-prefix to tracked domain."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:251
+msgid "Track RSS feeds"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:251
+msgid "Enable to track posts in feeds via tracking pixel."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:253
+msgid "Track RSS feed links as campaign"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:255
+msgid "RSS feed campaign"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:255
+msgid "Keyword: post name."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:257
+msgid "Enable heartbeat timer"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:257
+msgid ""
+"Enable a heartbeat timer to get more accurate visit lengths by sending "
+"periodical HTTP ping requests as long as the site is opened. Enter the time "
+"between the pings in seconds (Piwik default: 15) to enable or 0 to disable "
+"this feature. <strong>Note:</strong> This will cause a lot of additional "
+"HTTP requests on your site."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:262
+msgid ""
+"Usually, you do not need to change these settings. If you want to do so, you"
+" should know what you do or you got an expert's advice."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:264
+msgid "Enable cache"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:264
+msgid "Cache API calls, which not contain today's values, for a week."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:267
+msgid "HTTP connection via"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:268
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "cURL"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:269
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "fopen"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:270
+msgid ""
+"Choose whether WP-Piwik should use cURL or fopen to connect to Piwik in HTTP"
+" or Pro mode."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:272
+msgid "HTTP method"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:273
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "POST"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:274
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "GET"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:275
+msgid "Choose whether WP-Piwik should use POST or GET in HTTP or Pro mode."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:277
+msgid "Disable time limit"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:277
+msgid "Use set_time_limit(0) if stats page causes a time out."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:279
+msgid "Connection timeout"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:281
+msgid "Disable SSL peer verification"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:281
+msgid "not recommended"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:283
+msgid "User agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:284
+msgid "Use the PHP default user agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:284
+msgid "empty"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:285
+msgid "Define a specific user agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:287
+msgid "Specific user agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:289
+msgid "Add data-cfasync=false"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:291
+msgid "CDN URL"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:293
+msgid "CDN URL (SSL)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:295
+msgid "Force Piwik to use a specific protocol"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:296
+msgid "Disabled (default)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:297
+msgid "http"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:298
+msgid "https (SSL)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:299
+msgid ""
+"Choose if you want to explicitly force Piwik to use HTTP or HTTPS. Does not "
+"work with a CDN URL."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:301
+msgid "Update notice"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:302
+msgid "Show always if WP-Piwik is updated"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:303
+msgid "Show only if WP-Piwik is updated and settings were changed"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:305
+msgid "Choose if you want to get an update notice if WP-Piwik is updated."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:466
+msgid "Donate"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:468
+msgid "If you like WP-Piwik, you can support its development by a donation:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:506
+msgid "My Amazon.de wishlist"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:509
+#: classes/WP_Piwik/Admin/Settings.php:556
+msgid "Please don't forget to vote the compatibility at the"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid "Thank you very much for your donation"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid "the Piwik team itself"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid ", and all people flattering this"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:541
+msgid ""
+"Graphs powered by <a href=\"http://www.jqplot.com/\">jqPlot</a> (License: "
+"GPL 2.0 and MIT) and <a "
+"href=\"http://omnipotent.net/jquery.sparkline/\">jQuery Sparklines</a> "
+"(License: New BSD License)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:542
+msgid "Metabox support inspired by"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:543
+msgid "Tabbed settings page suggested by the"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:544
+msgid "Thank you very much"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:544
+msgid "for your translation work"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:545
+msgid ""
+"Thank you very much, all users who send me mails containing criticism, "
+"commendation, feature requests and bug reports! You help me to make WP-Piwik"
+" much better."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:546
+msgid ""
+"Thank <strong>you</strong> for using my plugin. It is the best commendation "
+"if my piece of code is really used!"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:555
+msgid "The best place to get help:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:555
+msgid "WP-Piwik support forum"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:558
+msgid "Debugging"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:559
+msgid ""
+"Either allow_url_fopen has to be enabled <em>or</em> cURL has to be "
+"available:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:562
+msgid "cURL is"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:563
+#: classes/WP_Piwik/Admin/Settings.php:568
+msgid "not"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:564
+msgid "available"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:567
+msgid "allow_url_fopen is"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:569
+msgid "enabled"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "is used."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:573
+msgid "Determined Piwik base URL is"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:577
+msgid "Tools"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:579
+msgid "Run testscript"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:580
+msgid "Sitebrowser"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:581
+msgid "Clear cache"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:582
+msgid "Are you sure you want to clear all settings?"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:582
+msgid "Reset WP-Piwik"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:584
+msgid "Latest support threads on WordPress.org"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:635
+msgid "Settings cleared (except connection settings)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:651
+msgid "Cache cleared."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:17
+msgid "site"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:18
+msgid "sites"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:24
+msgid "No site configured yet."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:29
+msgid "Blog ID"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:30
+msgid "Title"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:31
+msgid "URL"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:32
+msgid "Site ID (Piwik)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:79
+msgid "Site not created yet."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Statistics.php:12
+msgid "Statistics"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Statistics.php:20
+msgid "Currently shown stats:"
+msgstr ""
+
+#: classes/WP_Piwik/Request/Php.php:27
+msgid "Could not resolve"
+msgstr ""
+
+#: classes/WP_Piwik/Request/Php.php:27
+msgid "realpath() returns false"
+msgstr ""
+
+#: classes/WP_Piwik/Request/Php.php:39
+msgid "Class Piwik\\FrontController does not exists."
+msgstr ""
+
+#: classes/WP_Piwik/Request/Php.php:42
+msgid "Class Piwik\\API\\Request does not exists."
+msgstr ""
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:10
+msgid "Piwik Custom Variables"
+msgstr ""
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
+msgid "Name"
+msgstr ""
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
+msgid "Value"
+msgstr ""
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
+msgid "Set custom variables for a page view"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:18
+msgid "Browser Details"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:37
+#: classes/WP_Piwik/Widget/Browsers.php:37
+#: classes/WP_Piwik/Widget/Chart.php:43
+#: classes/WP_Piwik/Widget/Noresult.php:23
+#: classes/WP_Piwik/Widget/Overview.php:24
+#: classes/WP_Piwik/Widget/Plugins.php:23 classes/WP_Piwik/Widget/Post.php:25
+#: classes/WP_Piwik/Widget/Screens.php:35
+#: classes/WP_Piwik/Widget/Search.php:23 classes/WP_Piwik/Widget/Seo.php:20
+#: classes/WP_Piwik/Widget/SystemDetails.php:33
+#: classes/WP_Piwik/Widget/Systems.php:33
+#: classes/WP_Piwik/Widget/Visitors.php:35 classes/WP_Piwik/Widget.php:91
+msgid "Piwik error"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+msgid "Browser"
+msgstr "Браузер"
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+#: classes/WP_Piwik/Widget/Screens.php:37
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+#: classes/WP_Piwik/Widget/Visitors.php:57 classes/WP_Piwik/Widget.php:100
+msgid "Unique"
+msgstr "Унікальність"
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+#: classes/WP_Piwik/Widget/Plugins.php:25
+#: classes/WP_Piwik/Widget/Screens.php:37
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+msgid "Percent"
+msgstr "Відсотків"
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:66
+#: classes/WP_Piwik/Widget/Browsers.php:66
+#: classes/WP_Piwik/Widget/Screens.php:64
+#: classes/WP_Piwik/Widget/SystemDetails.php:62
+#: classes/WP_Piwik/Widget/Systems.php:62
+msgid "Others"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Browsers.php:18
+msgid "Browsers"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Chart.php:19
+#: classes/WP_Piwik/Widget/Overview.php:41 classes/WP_Piwik/Widget/Post.php:37
+#: classes/WP_Piwik/Widget/Visitors.php:17
+msgid "Visitors"
+msgstr "Відвідувачів"
+
+#: classes/WP_Piwik/Widget/Chart.php:71
+msgid ""
+"The graph contains the values shown in the table below (visitors / unique / "
+"bounces). The red line show a linear trendline (unique)."
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Keywords.php:16
+msgid "Keywords"
+msgstr "Ключові слова"
+
+#: classes/WP_Piwik/Widget/Noresult.php:16
+#: classes/WP_Piwik/Widget/Search.php:16
+msgid "Site Search"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+msgid "Keyword"
+msgstr "Ключове слово"
+
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+msgid "Requests"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Bounced"
+msgstr "Відмов"
+
+#: classes/WP_Piwik/Widget/Overview.php:17 classes/WP_Piwik/Widget/Post.php:18
+msgid "Overview"
+msgstr "Опис"
+
+#: classes/WP_Piwik/Widget/Overview.php:42 classes/WP_Piwik/Widget/Post.php:38
+msgid "Unique visitors"
+msgstr "Унікальних відвідувачів"
+
+#: classes/WP_Piwik/Widget/Overview.php:43 classes/WP_Piwik/Widget/Post.php:39
+msgid "Page views"
+msgstr "Переглядів сторінки"
+
+#: classes/WP_Piwik/Widget/Overview.php:44 classes/WP_Piwik/Widget/Post.php:40
+msgid "Total time spent"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Overview.php:45 classes/WP_Piwik/Widget/Post.php:42
+msgid "Bounce count"
+msgstr "Кількість відмов"
+
+#: classes/WP_Piwik/Widget/Overview.php:48 classes/WP_Piwik/Widget/Post.php:41
+msgid "Time/visit"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Overview.php:48
+msgid "Max. page views in one visit"
+msgstr "Макс. Сторінок переглянуто за один візит"
+
+#: classes/WP_Piwik/Widget/Overview.php:49 classes/WP_Piwik/Widget/Post.php:46
+msgid "Shortcut"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Pages.php:16
+msgid "Pages"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Plugins.php:16
+msgid "Plugins"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Plugins.php:25
+msgid "Plugin"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Plugins.php:25
+#: classes/WP_Piwik/Widget/Visitors.php:57 classes/WP_Piwik/Widget.php:102
+msgid "Visits"
+msgstr "Візитів"
+
+#: classes/WP_Piwik/Widget/Post.php:43
+msgid "Min. generation time"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Post.php:44
+msgid "Max. generation time"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Referrers.php:16
+msgid "Referrers"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Screens.php:16
+msgid "Resolutions"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Screens.php:37
+msgid "Resolution"
+msgstr "Розширення"
+
+#: classes/WP_Piwik/Widget/Seo.php:13
+msgid "SEO"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/SystemDetails.php:14
+msgid "Operation System Details"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+msgid "Operation System"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Systems.php:14
+msgid "Operation Systems"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Date"
+msgstr "Дата"
+
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Page Views"
+msgstr ""
+
+#: classes/WP_Piwik/Widget.php:104
+msgid "Hits"
+msgstr ""
+
+#: classes/WP_Piwik/Widget.php:106
+msgid "Actions"
+msgstr ""
+
+#: classes/WP_Piwik/Widget.php:162
+msgid "No data available."
+msgstr ""
+
+#: classes/WP_Piwik/Widget.php:293
+msgid "week"
+msgstr ""
+
+#: classes/WP_Piwik.php:193
+msgid "%s %s installed."
+msgstr ""
+
+#: classes/WP_Piwik.php:193
+msgid "Next you should connect to Piwik"
+msgstr ""
+
+#: classes/WP_Piwik.php:227
+msgid "%s updated to %s."
+msgstr ""
+
+#: classes/WP_Piwik.php:227
+msgid "Please validate your configuration"
+msgstr ""
+
+#: classes/WP_Piwik.php:259 classes/WP_Piwik.php:481
+msgid "Settings"
+msgstr "Настройки"
+
+#: classes/WP_Piwik.php:262
+msgid "Important"
+msgstr ""
+
+#: classes/WP_Piwik.php:343 classes/WP_Piwik.php:365
+msgid "Piwik Statistics"
+msgstr "Piwik статистика"
+
+#: classes/WP_Piwik.php:453
+msgid "Configure WP-Piwik"
+msgstr ""
+
+#: classes/WP_Piwik.php:923
+msgid "An error occured"
+msgstr "Сталася помилка"
+
+#: classes/WP_Piwik.php:1191
+msgid "Cheatin&#8217; uh?"
+msgstr ""
+
+#: wp-piwik.php:60
+msgid ""
+"WP-Piwik requires at least PHP 5.3. You are using the deprecated version %s."
+" Please update PHP to use WP-Piwik."
+msgstr ""
+
+#. Plugin Name of the plugin/theme
+msgid "WP-Piwik"
+msgstr "WP-Piwik"
+
+#. Plugin URI of the plugin/theme
+msgid "http://wordpress.org/extend/plugins/wp-piwik/"
+msgstr ""
+
+#. Description of the plugin/theme
+msgid ""
+"Adds Piwik stats to your dashboard menu and Piwik code to your wordpress "
+"header."
+msgstr ""
+
+#. Author of the plugin/theme
+msgid "Andr&eacute; Br&auml;kling"
+msgstr "Andr&eacute; Br&auml;kling"
+
+#. Author URI of the plugin/theme
+msgid "http://www.braekling.de"
+msgstr "http://www.braekling.de"
diff --git a/wp-content/plugins/wp-piwik/languages/wp-piwik-zh_CN.mo b/wp-content/plugins/wp-piwik/languages/wp-piwik-zh_CN.mo
index bf7678d53ea6d4074fb29f52113f34419d037098..358f4c45fbf86e0e79622ee061bbde3c13a6ed55 100644
Binary files a/wp-content/plugins/wp-piwik/languages/wp-piwik-zh_CN.mo and b/wp-content/plugins/wp-piwik/languages/wp-piwik-zh_CN.mo differ
diff --git a/wp-content/plugins/wp-piwik/languages/wp-piwik-zh_CN.po b/wp-content/plugins/wp-piwik/languages/wp-piwik-zh_CN.po
index 52b3ab6c991adb6e506fcc418baef3d522507044..af8054cbdc4b2f44deabd74b4ef6efaf57f93f3b 100644
--- a/wp-content/plugins/wp-piwik/languages/wp-piwik-zh_CN.po
+++ b/wp-content/plugins/wp-piwik/languages/wp-piwik-zh_CN.po
@@ -1,861 +1,1264 @@
+# Copyright (C) 2015 WP-Piwik
+# This file is distributed under the same license as the WP-Piwik package.
+# Translators:
 msgid ""
 msgstr ""
 "Project-Id-Version: WP-Piwik\n"
-"POT-Creation-Date: 2013-06-14 17:12+0800\n"
-"PO-Revision-Date: 2013-06-14 22:37+0800\n"
-"Last-Translator: mogita <chrisprc@gmail.com>\n"
-"Language-Team: mogita <chrisprc@gmail.com>\n"
-"Language: zh_CN\n"
+"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-piwik\n"
+"POT-Creation-Date: 2015-07-22 10:25:29+00:00\n"
+"PO-Revision-Date: 2015-07-22 10:33+0000\n"
+"Last-Translator: André Bräkling\n"
+"Language-Team: Chinese (China) (http://www.transifex.com/projects/p/wp-piwik/language/zh_CN/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Poedit 1.5.5\n"
-"X-Poedit-KeywordsList: _;gettext;gettext_noop;_e;__\n"
-"X-Poedit-Basepath: .\n"
-"X-Poedit-SearchPath-0: ..\n"
-"X-Poedit-SearchPath-1: ../cache\n"
-"X-Poedit-SearchPath-2: ../classes\n"
-"X-Poedit-SearchPath-3: ../dashboard\n"
-"X-Poedit-SearchPath-4: ../debug\n"
-"X-Poedit-SearchPath-5: ../logs\n"
-"X-Poedit-SearchPath-6: ../settings\n"
-"X-Poedit-SearchPath-7: ../shortcodes\n"
-"X-Poedit-SearchPath-8: ../update\n"
-
-#: ../wp-piwik.php:197
-msgid "installed"
-msgstr "已安装"
-
-#: ../wp-piwik.php:198
-msgid "Next you should connect to Piwik"
-msgstr "接下来,请连接到 Piwik"
+"Language: zh_CN\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
 
-#: ../wp-piwik.php:198
-msgid "Please validate your configuration"
-msgstr "请验证你的配置"
+#: classes/WP_Piwik/Admin/Settings.php:24
+msgid "Reload"
+msgstr ""
 
-#: ../wp-piwik.php:199 ../wp-piwik.php:597 ../wp-piwik.php:1227
-msgid "Settings"
-msgstr "设置"
+#: classes/WP_Piwik/Admin/Settings.php:27
+msgid "Changes saved."
+msgstr ""
 
-#: ../wp-piwik.php:200
-msgid "Important"
-msgstr "重要"
+#: classes/WP_Piwik/Admin/Settings.php:45
+msgid "Save Changes"
+msgstr ""
 
-#: ../wp-piwik.php:328
-msgid "Piwik Custom Variables"
-msgstr "Piwik 自定义变量"
+#: classes/WP_Piwik/Admin/Settings.php:46
+msgid "Thanks for using WP-Piwik!"
+msgstr "感谢使用 WP-Piwik!"
 
-#: ../wp-piwik.php:342
-msgid "Name"
-msgstr "名称"
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid "WP-Piwik %s is successfully connected to Piwik %s."
+msgstr ""
 
-#: ../wp-piwik.php:342
-msgid "Value"
-msgstr "值"
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid "You are running WordPress %s."
+msgstr ""
 
-#: ../wp-piwik.php:351
-msgid "Set custom variables for a page view"
-msgstr "为页面浏览量(PV)设置自定义变量"
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid ""
+"You are running a WordPress %s blog network (WPMU). WP-Piwik will handle "
+"your sites as different websites."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:53
+msgid ""
+"WP-Piwik %s was not able to connect to Piwik using your configuration. Check"
+" the &raquo;Connect to Piwik&laquo; section below."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:56
+msgid ""
+"WP-Piwik %s has to be connected to Piwik first. Check the &raquo;Connect to "
+"Piwik&laquo; section below."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:60
+msgid "Connect to Piwik"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:65
+msgid "Show Statistics"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:69
+msgid "Enable Tracking"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:74
+msgid "Expert Settings"
+msgstr "高级设置"
+
+#: classes/WP_Piwik/Admin/Settings.php:78 classes/WP_Piwik.php:923
+msgid "Support"
+msgstr "支持"
+
+#: classes/WP_Piwik/Admin/Settings.php:82
+msgid "Credits"
+msgstr "荣誉榜"
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid ""
+"WP-Piwik is a WordPress plugin to show a selection of Piwik stats in your "
+"WordPress admin dashboard and to add and configure your Piwik tracking code."
+" To use this you will need your own Piwik instance. If you do not already "
+"have a Piwik setup, you have two simple options: use either"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "Self-hosted"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "or"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "Cloud-hosted"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:98
+msgid ""
+"Neither cURL nor fopen are available. So WP-Piwik can not use the HTTP API "
+"and not connect to Piwik Pro."
+msgstr ""
 
-#: ../wp-piwik.php:351
+#: classes/WP_Piwik/Admin/Settings.php:98
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
 msgid "More information"
 msgstr "更多信息"
 
-#: ../wp-piwik.php:396 ../wp-piwik.php:437
-msgid "Piwik Statistics"
-msgstr "Piwik 统计"
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid "You can choose between three connection methods:"
+msgstr ""
 
-#: ../wp-piwik.php:555 ../wp-piwik.php:974 ../dashboard/overview.php:56
-#: ../shortcodes/overview.php:38
-msgid "Visitors"
-msgstr "访客"
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:103
+msgid "Self-hosted (HTTP API, default)"
+msgstr ""
 
-#: ../wp-piwik.php:575 ../wp-piwik.php:965 ../dashboard/seo.php:20
-msgid "SEO"
-msgstr "SEO"
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"This is the default option for a self-hosted Piwik and should work for most "
+"configurations. WP-Piwik will connect to Piwik using http(s)."
+msgstr ""
 
-#: ../wp-piwik.php:723
-msgid "Could not resolve"
-msgstr "无法解析"
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:104
+msgid "Self-hosted (PHP API)"
+msgstr ""
 
-#: ../wp-piwik.php:723
-msgid "realpath() returns false"
-msgstr "realpath() 返回 false"
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"Choose this, if your self-hosted Piwik and WordPress are running on the same"
+" machine and you know the full server path to your Piwik instance."
+msgstr ""
 
-#: ../wp-piwik.php:964 ../dashboard/overview.php:23
-#: ../shortcodes/overview.php:11
-msgid "Overview"
-msgstr "概览"
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:105
+msgid "Cloud-hosted (Piwik Pro)"
+msgstr ""
 
-#: ../wp-piwik.php:966 ../dashboard/pages.php:13
-msgid "Pages"
-msgstr "页面"
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"If you are using a cloud-hosted Piwik by Piwik Pro, you can simply use this "
+"option."
+msgstr ""
 
-#: ../wp-piwik.php:967 ../dashboard/keywords.php:12
-msgid "Keywords"
-msgstr "关键词"
+#: classes/WP_Piwik/Admin/Settings.php:101
+msgid "Piwik Mode"
+msgstr ""
 
-#: ../wp-piwik.php:968 ../dashboard/websites.php:12
-msgid "Websites"
-msgstr "站点"
+#: classes/WP_Piwik/Admin/Settings.php:102
+msgid "Disabled (WP-Piwik will not connect to Piwik)"
+msgstr ""
 
-#: ../wp-piwik.php:969 ../dashboard/plugins.php:12 ../dashboard/plugins.php:33
-msgid "Plugins"
-msgstr "插件"
+#: classes/WP_Piwik/Admin/Settings.php:108
+msgid "Piwik URL"
+msgstr "Piwik URL"
 
-#: ../wp-piwik.php:970 ../dashboard/search.php:12
-msgid "Site Search Keywords"
-msgstr "站内搜索关键词"
+#: classes/WP_Piwik/Admin/Settings.php:108
+msgid ""
+"Enter your Piwik URL. This is the same URL you use to access your Piwik "
+"instance, e.g. http://www.example.com/piwik/."
+msgstr ""
 
-#: ../wp-piwik.php:971 ../dashboard/noresult.php:12
-msgid "Site Search without Results"
-msgstr "未查找到结果的站内搜索"
+#: classes/WP_Piwik/Admin/Settings.php:109
+msgid "Piwik path"
+msgstr "Piwik 路径"
 
-#: ../wp-piwik.php:975 ../dashboard/browserdetails.php:39
-#: ../dashboard/browsers.php:13 ../dashboard/browsers.php:40
-msgid "Browser"
-msgstr "浏览器"
+#: classes/WP_Piwik/Admin/Settings.php:109
+msgid "Enter the file path to your Piwik instance, e.g. /var/www/piwik/."
+msgstr ""
 
-#: ../wp-piwik.php:976 ../dashboard/browserdetails.php:12
-msgid "Browser Details"
-msgstr "浏览器细节"
+#: classes/WP_Piwik/Admin/Settings.php:110
+msgid "Piwik user"
+msgstr ""
 
-#: ../wp-piwik.php:977 ../dashboard/screens.php:12 ../dashboard/screens.php:39
-msgid "Resolution"
-msgstr "分辨率"
+#: classes/WP_Piwik/Admin/Settings.php:110
+msgid ""
+"Enter your Piwik Pro username. It is also part of your URL: "
+"http://USERNAME.piwik.pro."
+msgstr ""
 
-#: ../wp-piwik.php:978 ../dashboard/systems.php:12 ../dashboard/systems.php:40
-msgid "Operating System"
-msgstr "操作系统"
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid "Auth token"
+msgstr "认证令牌(Auth Token)"
 
-#: ../wp-piwik.php:1050 ../wp-piwik.php:1124
-msgid "Statistics"
-msgstr "统计数据"
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid ""
+"Enter your Piwik auth token here. It is an alphanumerical code like "
+"0a1b2c34d56e78901fa2bc3d45678efa."
+msgstr ""
 
-#: ../wp-piwik.php:1060
-msgid "Currently shown stats:"
-msgstr "目前展示的统计:"
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid "See %sWP-Piwik FAQ%s."
+msgstr ""
 
-#: ../wp-piwik.php:1107
-msgid "Cheatin&#8217; uh?"
-msgstr "呃,打开的方式不对吧?"
+#: classes/WP_Piwik/Admin/Settings.php:116
+msgid "Auto config"
+msgstr "自动配置"
 
-#: ../wp-piwik.php:1121
-msgid "Home"
-msgstr "首页"
+#: classes/WP_Piwik/Admin/Settings.php:116
+msgid ""
+"Check this to automatically choose your blog from your Piwik sites by URL. "
+"If your blog is not added to Piwik yet, WP-Piwik will add a new site."
+msgstr "选中此项,可以根据 URL 来自动从 Piwki 站点中选择你的博客。如果你的博客尚未添加到 Piwik,那么 WP-Piwik 会自动添加一个新条目。"
 
-#: ../wp-piwik.php:1122 ../wp-piwik.php:1128
-msgid "Piwik Settings"
-msgstr "Piwik 设置"
+#: classes/WP_Piwik/Admin/Settings.php:127
+msgid "Determined site"
+msgstr "判断站点"
 
-#: ../wp-piwik.php:1123
-msgid "Tracking"
-msgstr "跟踪"
+#: classes/WP_Piwik/Admin/Settings.php:132
+msgid "Select site"
+msgstr ""
 
-#: ../wp-piwik.php:1125 ../wp-piwik.php:1129 ../wp-piwik.php:1286
-msgid "Support"
-msgstr "支持"
+#: classes/WP_Piwik/Admin/Settings.php:140
+msgid "Piwik default date"
+msgstr ""
 
-#: ../wp-piwik.php:1126 ../wp-piwik.php:1130
-msgid "Credits"
-msgstr "荣誉榜"
+#: classes/WP_Piwik/Admin/Settings.php:141
+#: classes/WP_Piwik/Admin/Settings.php:154
+msgid "Today"
+msgstr ""
 
-#: ../wp-piwik.php:1225
-msgid "Changes saved"
-msgstr "变更已保存"
+#: classes/WP_Piwik/Admin/Settings.php:142
+#: classes/WP_Piwik/Admin/Settings.php:153
+msgid "Yesterday"
+msgstr ""
 
-#: ../wp-piwik.php:1233
-msgid "Donate"
-msgstr "捐赠"
+#: classes/WP_Piwik/Admin/Settings.php:143
+msgid "Current month"
+msgstr ""
 
-#: ../wp-piwik.php:1234
-msgid "If you like WP-Piwik, you can support its development by a donation:"
-msgstr "如果你喜欢 WP-Piwik,可以考虑捐赠来支持它的开发:"
+#: classes/WP_Piwik/Admin/Settings.php:144
+msgid "Last month"
+msgstr ""
 
-#: ../wp-piwik.php:1250
-msgid "My Amazon.de wishlist"
-msgstr "我的 Amazon.de 愿望单"
+#: classes/WP_Piwik/Admin/Settings.php:145
+msgid "Current week"
+msgstr ""
 
-#: ../wp-piwik.php:1253 ../settings/support.php:8
-msgid "Please don't forget to vote the compatibility at the"
-msgstr "请记得提交兼容性投票,地址在"
+#: classes/WP_Piwik/Admin/Settings.php:146
+msgid "Last week"
+msgstr ""
 
-#: ../wp-piwik.php:1268
-msgid "Save settings"
-msgstr "保存设置"
+#: classes/WP_Piwik/Admin/Settings.php:147
+msgid "Default date shown on statistics page."
+msgstr "在统计数据页面显示的默认日期。"
 
-#: ../wp-piwik.php:1286
-msgid "An error occured"
-msgstr "出错了"
+#: classes/WP_Piwik/Admin/Settings.php:149
+msgid "Show SEO data"
+msgstr ""
 
-#: ../dashboard/browserdetails.php:16 ../dashboard/browsers.php:17
-#: ../dashboard/keywords.php:14 ../dashboard/noresult.php:14
-#: ../dashboard/overview.php:26 ../dashboard/pages.php:16
-#: ../dashboard/plugins.php:26 ../dashboard/screens.php:16
-#: ../dashboard/search.php:14 ../dashboard/seo.php:17
-#: ../dashboard/systems.php:16 ../dashboard/visitors.php:26
-#: ../dashboard/websites.php:15
-msgid "Piwik error"
-msgstr "Piwik 错误"
+#: classes/WP_Piwik/Admin/Settings.php:149
+msgid "Display SEO ranking data on statistics page."
+msgstr ""
 
-#: ../dashboard/browserdetails.php:25 ../dashboard/browsers.php:26
-#: ../dashboard/pages.php:45 ../dashboard/screens.php:25
-#: ../dashboard/systems.php:25
-msgid "Others"
-msgstr "其他"
+#: classes/WP_Piwik/Admin/Settings.php:149
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Slow!"
+msgstr ""
 
-#: ../dashboard/browserdetails.php:40 ../dashboard/browsers.php:41
-#: ../dashboard/keywords.php:19 ../dashboard/pages.php:24
-#: ../dashboard/screens.php:40 ../dashboard/systems.php:41
-#: ../dashboard/visitors.php:58 ../dashboard/websites.php:22
-msgid "Unique"
-msgstr "独立访客"
+#: classes/WP_Piwik/Admin/Settings.php:151
+msgid "Dashboard overview"
+msgstr ""
 
-#: ../dashboard/browserdetails.php:41 ../dashboard/browsers.php:42
-#: ../dashboard/plugins.php:35 ../dashboard/screens.php:41
-#: ../dashboard/systems.php:42
-msgid "Percent"
-msgstr "百分比"
+#: classes/WP_Piwik/Admin/Settings.php:152
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:192
+#: classes/WP_Piwik/Admin/Settings.php:213
+#: classes/WP_Piwik/Admin/Settings.php:304
+msgid "Disabled"
+msgstr ""
 
-#: ../dashboard/browserdetails.php:55 ../dashboard/browsers.php:56
-#: ../dashboard/keywords.php:25 ../dashboard/noresult.php:25
-#: ../dashboard/pages.php:43 ../dashboard/plugins.php:51
-#: ../dashboard/screens.php:55 ../dashboard/search.php:25
-#: ../dashboard/systems.php:56 ../dashboard/websites.php:29
-msgid "No data available."
-msgstr "目前无数据"
+#: classes/WP_Piwik/Admin/Settings.php:155
+msgid "Last 30 days"
+msgstr ""
 
-#: ../dashboard/keywords.php:19 ../dashboard/noresult.php:19
-#: ../dashboard/search.php:19
-msgid "Keyword"
-msgstr "关键词"
+#: classes/WP_Piwik/Admin/Settings.php:156
+msgid "Enable WP-Piwik dashboard widget &quot;Overview&quot;."
+msgstr ""
 
-#: ../dashboard/noresult.php:19 ../dashboard/search.php:19
-msgid "Requests"
-msgstr "请求"
+#: classes/WP_Piwik/Admin/Settings.php:158
+msgid "Dashboard graph"
+msgstr ""
 
-#: ../dashboard/noresult.php:19 ../dashboard/search.php:19
-#: ../dashboard/visitors.php:59
-msgid "Bounced"
-msgstr "弹出次数"
+#: classes/WP_Piwik/Admin/Settings.php:158
+msgid "Enable WP-Piwik dashboard widget &quot;Graph&quot;."
+msgstr ""
 
-#: ../dashboard/overview.php:57 ../shortcodes/overview.php:39
-msgid "Unique visitors"
-msgstr "独立访客"
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Dashboard SEO"
+msgstr ""
 
-#: ../dashboard/overview.php:58 ../shortcodes/overview.php:40
-msgid "Page views"
-msgstr "页面浏览量(PV)"
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Enable WP-Piwik dashboard widget &quot;SEO&quot;."
+msgstr ""
 
-#: ../dashboard/overview.php:59 ../shortcodes/overview.php:41
-msgid "Max. page views in one visit"
-msgstr "单次访问中最大页面浏览量"
+#: classes/WP_Piwik/Admin/Settings.php:162
+msgid "Show graph on WordPress Toolbar"
+msgstr "在 WordPress 工具条上显示图表"
 
-#: ../dashboard/overview.php:60 ../shortcodes/overview.php:42
-msgid "Total time spent"
-msgstr "总停留时长"
+#: classes/WP_Piwik/Admin/Settings.php:162
+msgid "Display a last 30 days visitor graph on WordPress' toolbar."
+msgstr ""
 
-#: ../dashboard/overview.php:61 ../shortcodes/overview.php:43
-msgid "Time/visit"
-msgstr "平均每次访问的停留时长"
+#: classes/WP_Piwik/Admin/Settings.php:164
+msgid "Display stats to"
+msgstr ""
 
-#: ../dashboard/overview.php:62 ../shortcodes/overview.php:44
-msgid "Bounce count"
-msgstr "弹出次数"
+#: classes/WP_Piwik/Admin/Settings.php:171
+msgid "Choose user roles allowed to see the statistics page."
+msgstr "选择能够查看统计页面的用户组"
 
-#: ../dashboard/overview.php:64 ../settings/views.php:40
-msgid "Shortcut"
-msgstr "便捷链接"
+#: classes/WP_Piwik/Admin/Settings.php:173
+msgid "Show per post stats"
+msgstr ""
 
-#: ../dashboard/pages.php:23
-msgid "Page"
-msgstr "页面"
+#: classes/WP_Piwik/Admin/Settings.php:173
+msgid "Show stats about single posts at the post edit admin page."
+msgstr ""
 
-#: ../dashboard/pages.php:25 ../dashboard/plugins.php:34
-#: ../dashboard/visitors.php:57
-msgid "Visits"
-msgstr "访问"
+#: classes/WP_Piwik/Admin/Settings.php:175
+msgid "Piwik shortcut"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:175
+msgid "Display a shortcut to Piwik itself."
+msgstr "显示到 Piwik 本身的链接。"
+
+#: classes/WP_Piwik/Admin/Settings.php:177
+msgid "WP-Piwik display name"
+msgstr "WP-Piwik 显示名称"
+
+#: classes/WP_Piwik/Admin/Settings.php:177
+msgid "Plugin name shown in WordPress."
+msgstr "在 WordPress 中显示的插件名称。"
+
+#: classes/WP_Piwik/Admin/Settings.php:179
+msgid "Enable shortcodes"
+msgstr "启用短代码"
+
+#: classes/WP_Piwik/Admin/Settings.php:179
+msgid "Enable shortcodes in post or page content."
+msgstr "启用短代码,可以插入到文章或页面内容中。"
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "You can choose between four tracking code modes:"
+msgstr ""
 
-#: ../dashboard/visitors.php:48
+#: classes/WP_Piwik/Admin/Settings.php:190
 msgid ""
-"The graph contains the values shown in the table below (visitors / unique / "
-"bounces). The red line show a linear trendline (unique)."
+"WP-Piwik will not add the tracking code. Use this, if you want to add the "
+"tracking code to your template files or you use another plugin to add the "
+"tracking code."
 msgstr ""
-"图表中反映的是下边表格里的数据(访客、独立访客、弹出次数)。红色线条表示线性"
-"趋势走向(独立访客)。"
 
-#: ../dashboard/visitors.php:56
-msgid "Date"
-msgstr "日期"
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:193
+msgid "Default tracking"
+msgstr "默认跟踪"
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "WP-Piwik will use Piwik's standard tracking code."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:194
+msgid "Use js/index.php"
+msgstr "使用 js/index.php"
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"You can choose this tracking code, to deliver a minified proxy code and to "
+"avoid using the files called piwik.js or piwik.php."
+msgstr ""
 
-#: ../dashboard/visitors.php:74
-msgid "Unique TOTAL"
-msgstr "独立访客总数"
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "See %sreadme file%s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:195
+msgid "Use proxy script"
+msgstr "使用代理脚本"
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "Use this tracking code to not reveal the Piwik server URL."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:210
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid "See %sPiwik FAQ%s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:196
+msgid "Enter manually"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"Enter your own tracking code manually. You can choose one of the prior "
+"options, pre-configure your tracking code and switch to manually editing at "
+"last."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "Use the placeholder {ID} to add the Piwik site ID."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:191
+msgid "Add tracking code"
+msgstr "添加跟踪代码"
+
+#: classes/WP_Piwik/Admin/Settings.php:199
+msgid "Tracking code"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:201
+msgid "JavaScript code position"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:202
+msgid "Footer"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:203
+msgid "Header"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:204
+msgid ""
+"Choose whether the JavaScript code is added to the footer or the header."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:206
+msgid "Noscript code"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+msgid "Add &lt;noscript&gt;"
+msgstr "添加 &lt;noscript&gt;"
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+msgid "Adds the &lt;noscript&gt; code to your footer."
+msgstr "添加 &lt;noscript&gt; 代码到你的 footer 部分。"
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Disabled in proxy mode."
+msgstr "在代理模式下不可用"
+
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Add rec parameter to noscript code"
+msgstr "在 noscript 代码中添加 rec 参数"
+
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Enable tracking for visitors without JavaScript (not recommended)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:212
+msgid "Enable content tracking"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:214
+msgid "Track all content blocks"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:215
+msgid "Track only visible content blocks"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:216
+msgid ""
+"Content tracking allows you to track interaction with the content of a web "
+"page or application."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:216
+#: classes/WP_Piwik/Admin/Settings.php:218
+#: classes/WP_Piwik/Admin/Settings.php:222
+#: classes/WP_Piwik/Admin/Settings.php:224
+#: classes/WP_Piwik/Admin/Settings.php:226
+#: classes/WP_Piwik/Admin/Settings.php:247
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "See %sPiwik documentation%s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:218
+msgid "Track search"
+msgstr "跟踪搜索"
+
+#: classes/WP_Piwik/Admin/Settings.php:218
+msgid "Use Piwik's advanced Site Search Analytics feature."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid "Track 404"
+msgstr "跟踪 404"
+
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid ""
+"WP-Piwik can automatically add a 404-category to track 404-page-visits."
+msgstr "WP-Piwik 会自动添加一个 404 目录来跟踪 404 页面的访问"
+
+#: classes/WP_Piwik/Admin/Settings.php:222
+msgid "Add annotation on new post"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:222
+msgid "Add a Piwik annotation on each new post."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:224
+msgid "Show custom variables box"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:224
+msgid " Show a &quot;custom variables&quot; edit box on post edit page."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:226
+msgid "Add new file types for download tracking"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:226
+msgid ""
+"Add file extensions for download tracking, divided by a vertical bar "
+"(&#124;)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:228
+msgid "Disable cookies"
+msgstr "禁用 Cookie"
+
+#: classes/WP_Piwik/Admin/Settings.php:228
+msgid "Disable all tracking cookies for a visitor."
+msgstr "对某访问者禁用所有跟踪 Cookie"
+
+#: classes/WP_Piwik/Admin/Settings.php:230
+msgid "Limit cookie lifetime"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:230
+msgid ""
+"You can limit the cookie lifetime to avoid tracking your users over a longer"
+" period as necessary."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:232
+msgid "Visitor timeout (seconds)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:234
+msgid "Session timeout (seconds)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:236
+msgid "Referral timeout (seconds)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:238
+msgid "Track admin pages"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:238
+msgid ""
+"Enable to track users on admin pages (remember to configure the tracking "
+"filter appropriately)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:241
+msgid "Tracking filter"
+msgstr "跟踪过滤器"
+
+#: classes/WP_Piwik/Admin/Settings.php:245
+msgid "Choose users by user role you do <strong>not</strong> want to track."
+msgstr "选择你<strong>不</strong>需要跟踪的用户组"
+
+#: classes/WP_Piwik/Admin/Settings.php:247
+msgid "Track subdomains in the same website"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:247
+msgid "Adds *.-prefix to cookie domain."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "Do not count subdomains as outlink"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "Adds *.-prefix to tracked domain."
+msgstr ""
 
-#: ../dashboard/visitors.php:74
-msgid "Sum"
-msgstr "统计"
+#: classes/WP_Piwik/Admin/Settings.php:251
+msgid "Track RSS feeds"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:251
+msgid "Enable to track posts in feeds via tracking pixel."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:253
+msgid "Track RSS feed links as campaign"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:255
+msgid "RSS feed campaign"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:255
+msgid "Keyword: post name."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:257
+msgid "Enable heartbeat timer"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:257
+msgid ""
+"Enable a heartbeat timer to get more accurate visit lengths by sending "
+"periodical HTTP ping requests as long as the site is opened. Enter the time "
+"between the pings in seconds (Piwik default: 15) to enable or 0 to disable "
+"this feature. <strong>Note:</strong> This will cause a lot of additional "
+"HTTP requests on your site."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:262
+msgid ""
+"Usually, you do not need to change these settings. If you want to do so, you"
+" should know what you do or you got an expert's advice."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:264
+msgid "Enable cache"
+msgstr "启用缓存"
+
+#: classes/WP_Piwik/Admin/Settings.php:264
+msgid "Cache API calls, which not contain today's values, for a week."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:267
+msgid "HTTP connection via"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:268
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "cURL"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:269
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "fopen"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:270
+msgid ""
+"Choose whether WP-Piwik should use cURL or fopen to connect to Piwik in HTTP"
+" or Pro mode."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:272
+msgid "HTTP method"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:273
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "POST"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:274
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "GET"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:275
+msgid "Choose whether WP-Piwik should use POST or GET in HTTP or Pro mode."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:277
+msgid "Disable time limit"
+msgstr "禁用时间限制"
+
+#: classes/WP_Piwik/Admin/Settings.php:277
+msgid "Use set_time_limit(0) if stats page causes a time out."
+msgstr "如果统计数据页面出现超时,请使用 set_time_limit(0)。"
+
+#: classes/WP_Piwik/Admin/Settings.php:279
+msgid "Connection timeout"
+msgstr "连接超时"
+
+#: classes/WP_Piwik/Admin/Settings.php:281
+msgid "Disable SSL peer verification"
+msgstr "禁用 SSL 端点认证"
+
+#: classes/WP_Piwik/Admin/Settings.php:281
+msgid "not recommended"
+msgstr "不推荐"
+
+#: classes/WP_Piwik/Admin/Settings.php:283
+msgid "User agent"
+msgstr "用户代理(UA)"
+
+#: classes/WP_Piwik/Admin/Settings.php:284
+msgid "Use the PHP default user agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:284
+msgid "empty"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:285
+msgid "Define a specific user agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:287
+msgid "Specific user agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:289
+msgid "Add data-cfasync=false"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:291
+msgid "CDN URL"
+msgstr "CDN URL"
+
+#: classes/WP_Piwik/Admin/Settings.php:293
+msgid "CDN URL (SSL)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:295
+msgid "Force Piwik to use a specific protocol"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:296
+msgid "Disabled (default)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:297
+msgid "http"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:298
+msgid "https (SSL)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:299
+msgid ""
+"Choose if you want to explicitly force Piwik to use HTTP or HTTPS. Does not "
+"work with a CDN URL."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:301
+msgid "Update notice"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:302
+msgid "Show always if WP-Piwik is updated"
+msgstr ""
 
-#: ../dashboard/visitors.php:74
-msgid "Avg"
-msgstr "平均"
+#: classes/WP_Piwik/Admin/Settings.php:303
+msgid "Show only if WP-Piwik is updated and settings were changed"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:305
+msgid "Choose if you want to get an update notice if WP-Piwik is updated."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:466
+msgid "Donate"
+msgstr "捐赠"
 
-#: ../dashboard/websites.php:21
-msgid "Website"
-msgstr "站点"
+#: classes/WP_Piwik/Admin/Settings.php:468
+msgid "If you like WP-Piwik, you can support its development by a donation:"
+msgstr "如果你喜欢 WP-Piwik,可以考虑捐赠来支持它的开发:"
 
-#: ../settings/credits.php:3
+#: classes/WP_Piwik/Admin/Settings.php:506
+msgid "My Amazon.de wishlist"
+msgstr "我的 Amazon.de 愿望单"
+
+#: classes/WP_Piwik/Admin/Settings.php:509
+#: classes/WP_Piwik/Admin/Settings.php:556
+msgid "Please don't forget to vote the compatibility at the"
+msgstr "请记得提交兼容性投票,地址在"
+
+#: classes/WP_Piwik/Admin/Settings.php:540
 msgid "Thank you very much for your donation"
 msgstr "十分感谢您的捐赠"
 
-#: ../settings/credits.php:3
+#: classes/WP_Piwik/Admin/Settings.php:540
 msgid "the Piwik team itself"
 msgstr "Piwik 团队本身"
 
-#: ../settings/credits.php:3
+#: classes/WP_Piwik/Admin/Settings.php:540
 msgid ", and all people flattering this"
 msgstr ",所有谈论到它的人们"
 
-#: ../settings/credits.php:8
+#: classes/WP_Piwik/Admin/Settings.php:541
 msgid ""
 "Graphs powered by <a href=\"http://www.jqplot.com/\">jqPlot</a> (License: "
-"GPL 2.0 and MIT) and <a href=\"http://omnipotent.net/jquery.sparkline/"
-"\">jQuery Sparklines</a> (License: New BSD License)."
-msgstr ""
-"图表由 <a href=\"http://www.jqplot.com/\">jqPlot</a>(许可:GPL 2.0 and MIT)"
-"以及 <a href=\"http://omnipotent.net/jquery.sparkline/\">jQuery Sparklines</"
-"a>(许可:New BSD License)强力驱动。"
+"GPL 2.0 and MIT) and <a "
+"href=\"http://omnipotent.net/jquery.sparkline/\">jQuery Sparklines</a> "
+"(License: New BSD License)."
+msgstr "图表由 <a href=\"http://www.jqplot.com/\">jqPlot</a>(许可:GPL 2.0 and MIT)以及 <a href=\"http://omnipotent.net/jquery.sparkline/\">jQuery Sparklines</a>(许可:New BSD License)强力驱动。"
 
-#: ../settings/credits.php:13
+#: classes/WP_Piwik/Admin/Settings.php:542
 msgid "Metabox support inspired by"
 msgstr "Metabox 支持灵感来源于"
 
-#: ../settings/credits.php:14
+#: classes/WP_Piwik/Admin/Settings.php:543
 msgid "Tabbed settings page suggested by the"
 msgstr "标签式设置页面的建议来自"
 
-#: ../settings/credits.php:19
+#: classes/WP_Piwik/Admin/Settings.php:544
 msgid "Thank you very much"
 msgstr "非常感谢"
 
-#: ../settings/credits.php:19
-msgid ", and"
-msgstr ","
-
-#: ../settings/credits.php:19
+#: classes/WP_Piwik/Admin/Settings.php:544
 msgid "for your translation work"
 msgstr "你们的翻译作品"
 
-#: ../settings/credits.php:24
+#: classes/WP_Piwik/Admin/Settings.php:545
 msgid ""
 "Thank you very much, all users who send me mails containing criticism, "
-"commendation, feature requests and bug reports! You help me to make WP-Piwik "
-"much better."
-msgstr ""
-"非常感谢,所有给我发邮件提出批评、建议、功能请求和 bug 报告的用户们!是你们帮"
-"助我把 WP-Piwik 做得更好。"
+"commendation, feature requests and bug reports! You help me to make WP-Piwik"
+" much better."
+msgstr "非常感谢,所有给我发邮件提出批评、建议、功能请求和 bug 报告的用户们!是你们帮助我把 WP-Piwik 做得更好。"
 
-#: ../settings/credits.php:29
+#: classes/WP_Piwik/Admin/Settings.php:546
 msgid ""
 "Thank <strong>you</strong> for using my plugin. It is the best commendation "
 "if my piece of code is really used!"
+msgstr "感谢<strong>你</strong>使用我的插件。我的代码能帮到你,就是对我最大的嘉奖了!"
+
+#: classes/WP_Piwik/Admin/Settings.php:555
+msgid "The best place to get help:"
 msgstr ""
-"感谢<strong>你</strong>使用我的插件。我的代码能帮到你,就是对我最大的嘉奖了!"
 
-#: ../settings/homepage.php:4
-msgid "Thanks for using WP-Piwik!"
-msgstr "感谢使用 WP-Piwik!"
+#: classes/WP_Piwik/Admin/Settings.php:555
+msgid "WP-Piwik support forum"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:558
+msgid "Debugging"
+msgstr "正在除错"
+
+#: classes/WP_Piwik/Admin/Settings.php:559
+msgid ""
+"Either allow_url_fopen has to be enabled <em>or</em> cURL has to be "
+"available:"
+msgstr "要么必须启用 allow_url_fopen,要么使用 cURL:"
 
-#: ../settings/homepage.php:8
-msgid "You are using Piwik"
-msgstr "你正在使用 Piwik"
+#: classes/WP_Piwik/Admin/Settings.php:562
+msgid "cURL is"
+msgstr "cURL 现在"
 
-#: ../settings/homepage.php:8
-msgid "and"
-msgstr "和"
+#: classes/WP_Piwik/Admin/Settings.php:563
+#: classes/WP_Piwik/Admin/Settings.php:568
+msgid "not"
+msgstr "不"
 
-#: ../settings/homepage.php:8
-msgid "in network mode"
-msgstr "在网络模式中"
+#: classes/WP_Piwik/Admin/Settings.php:564
+msgid "available"
+msgstr "可用"
 
-#: ../settings/homepage.php:10
-msgid "Auto site configuration is"
-msgstr "自动站点配置目前为"
+#: classes/WP_Piwik/Admin/Settings.php:567
+msgid "allow_url_fopen is"
+msgstr "allow_url_fopen 现在"
 
-#: ../settings/homepage.php:10 ../settings/homepage.php:11
-#: ../settings/support.php:23
+#: classes/WP_Piwik/Admin/Settings.php:569
 msgid "enabled"
 msgstr "启用"
 
-#: ../settings/homepage.php:10 ../settings/homepage.php:11
-msgid "disabled"
-msgstr "禁用"
-
-#: ../settings/homepage.php:11
-msgid "Tracking code insertion is"
-msgstr "跟踪代码插入状态目前为"
-
-#: ../settings/piwik.php:7 ../settings/sitebrowser.php:7
-#: ../settings/tracking.php:7 ../settings/views.php:7
-msgid ""
-"Error: cURL is not enabled and fopen is not allowed to open URLs. WP-Piwik "
-"won't be able to connect to Piwik."
-msgstr "错误:cURL 未启用,fopen 无法打开 URL。WP-Piwik 无法连接到 Piwik。"
-
-#: ../settings/piwik.php:11
-msgid "To enable Piwik statistics, please enter"
-msgstr "要启用 Piwik 统计,请输入"
-
-#: ../settings/piwik.php:13
-msgid ""
-"your Piwik base URL (like http://mydomain.com/piwik) or your Piwik server "
-"path (like /var/www/mydomain.com/httpdocs/piwik/)"
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "is used."
 msgstr ""
-"你的 Piwik 站点基础 URL(类似于 http://mydomain.com/piwik)或者你的 Piwik 服"
-"务器路径(类似于 var/www/mydomain.com/httpdocs/piwik/)"
 
-#: ../settings/piwik.php:14
-msgid ""
-"your personal Piwik authentification token. You can get the token on the API "
-"page inside your Piwik interface. It looks like "
-"&quot;1234a5cd6789e0a12345b678cd9012ef&quot;."
+#: classes/WP_Piwik/Admin/Settings.php:573
+msgid "Determined Piwik base URL is"
 msgstr ""
-"你的个人 Piwik 认证令牌。你可以在你的 Piwik 设置界面的 API 页面中找到该令牌。"
-"它看起来和这个类似 &quot;1234a5cd6789e0a12345b678cd9012ef&quot;。"
-
-#: ../settings/piwik.php:16
-msgid "No idea what I'm talking about?"
-msgstr "完全不懂我在说什么?"
 
-#: ../settings/piwik.php:16
-msgid "Get help."
-msgstr "查看帮助。"
-
-#: ../settings/piwik.php:18
-msgid ""
-"<strong>Important note:</strong> If you do not host this blog on your own, "
-"your site admin is able to get your auth token from the database."
+#: classes/WP_Piwik/Admin/Settings.php:577
+msgid "Tools"
 msgstr ""
-"<strong>重要:</strong>如果这个博客不是由你自己架设的,你的站点管理员可以帮你"
-"从数据库里查找到认证令牌。"
-
-#: ../settings/piwik.php:22
-msgid "Piwik URL"
-msgstr "Piwik URL"
-
-#: ../settings/piwik.php:29
-msgid "Piwik path"
-msgstr "Piwik 路径"
 
-#: ../settings/piwik.php:33
-msgid ""
-"If you like to use the PHP API and also to enable tracking by WP-Piwik, "
-"please enter your Piwik URL, too. Otherwise your tracking code may be "
-"erroneous."
+#: classes/WP_Piwik/Admin/Settings.php:579
+msgid "Run testscript"
 msgstr ""
-"如果你喜欢用 PHP API 并且想要启用 WP-Piwik 跟踪功能,请同样输入你的 Piwik "
-"URL。否则你的跟踪代码可能会出问题。"
-
-#: ../settings/piwik.php:36
-msgid "Invalid path. Please enter the file path to Piwik."
-msgstr "路径不正确。请输入到 Piwik 的文件路径。"
-
-#: ../settings/piwik.php:40
-msgid "Auth token"
-msgstr "认证令牌(Auth Token)"
-
-#: ../settings/piwik.php:46
-msgid "Auto config"
-msgstr "自动配置"
 
-#: ../settings/piwik.php:49
-msgid ""
-"Check this to automatically choose your blog from your Piwik sites by URL. "
-"If your blog is not added to Piwik yet, WP-Piwik will add a new site."
+#: classes/WP_Piwik/Admin/Settings.php:580
+msgid "Sitebrowser"
 msgstr ""
-"选中此项,可以根据 URL 来自动从 Piwki 站点中选择你的博客。如果你的博客尚未添"
-"加到 Piwik,那么 WP-Piwik 会自动添加一个新条目。"
 
-#: ../settings/piwik.php:57
-msgid ""
-"Please check URL and auth token. You need at least view access to one site."
-msgstr "请检查 URL 和认证令牌,你至少要拥有一个站点的查看权限。"
+#: classes/WP_Piwik/Admin/Settings.php:581
+msgid "Clear cache"
+msgstr ""
 
-#: ../settings/piwik.php:65
-msgid "Choose site"
-msgstr "选择站点"
+#: classes/WP_Piwik/Admin/Settings.php:582
+msgid "Are you sure you want to clear all settings?"
+msgstr ""
 
-#: ../settings/piwik.php:79
-msgid "Determined site"
-msgstr "判断站点"
+#: classes/WP_Piwik/Admin/Settings.php:582
+msgid "Reset WP-Piwik"
+msgstr ""
 
-#: ../settings/piwik.php:92
-msgid "Expert Settings"
-msgstr "高级设置"
+#: classes/WP_Piwik/Admin/Settings.php:584
+msgid "Latest support threads on WordPress.org"
+msgstr "WordPress.org 上的最新支持讨论"
 
-#: ../settings/piwik.php:94
-msgid "Connection timeout"
-msgstr "连接超时"
+#: classes/WP_Piwik/Admin/Settings.php:635
+msgid "Settings cleared (except connection settings)."
+msgstr ""
 
-#: ../settings/piwik.php:101
-msgid "Disable SSL peer verification"
-msgstr "禁用 SSL 端点认证"
+#: classes/WP_Piwik/Admin/Settings.php:651
+msgid "Cache cleared."
+msgstr ""
 
-#: ../settings/piwik.php:103
-msgid "not recommended"
-msgstr "不推荐"
+#: classes/WP_Piwik/Admin/Sitebrowser.php:17
+msgid "site"
+msgstr ""
 
-#: ../settings/piwik.php:106
-msgid "User agent"
-msgstr "用户代理(UA)"
+#: classes/WP_Piwik/Admin/Sitebrowser.php:18
+msgid "sites"
+msgstr ""
 
-#: ../settings/piwik.php:118
-msgid ""
-"Further expert settings require cURL. See <a href=\"http://www.php.net/"
-"manual/curl.setup.php\">PHP manual</a>"
+#: classes/WP_Piwik/Admin/Sitebrowser.php:24
+msgid "No site configured yet."
 msgstr ""
-"高级设置要求启用 cURL。请查看 <a href=\"http://www.php.net/manual/curl.setup."
-"php\">PHP 手册</a>"
 
-#: ../settings/sitebrowser.php:26
-msgid "ID"
-msgstr "ID"
+#: classes/WP_Piwik/Admin/Sitebrowser.php:29
+msgid "Blog ID"
+msgstr ""
 
-#: ../settings/sitebrowser.php:27
+#: classes/WP_Piwik/Admin/Sitebrowser.php:30
 msgid "Title"
 msgstr "标题"
 
-#: ../settings/sitebrowser.php:28
+#: classes/WP_Piwik/Admin/Sitebrowser.php:31
 msgid "URL"
 msgstr "URL"
 
-#: ../settings/sitebrowser.php:29
+#: classes/WP_Piwik/Admin/Sitebrowser.php:32
 msgid "Site ID (Piwik)"
 msgstr "站点 ID(Piwik)"
 
-#: ../settings/support.php:2
-msgid "WP-Piwik support board"
-msgstr "WP-Piwik 支持公告板"
-
-#: ../settings/support.php:2
-msgid "no registration required, English &amp; German"
-msgstr "无需注册,英语和德语"
-
-#: ../settings/support.php:5
-msgid "WordPress.org forum about WP-Piwik"
-msgstr "WordPress.org 论坛的 WP-Piwik 板块"
-
-#: ../settings/support.php:5
-msgid "WordPress.org registration required, English"
-msgstr "WordPress.org 需要注册,英语"
-
-#: ../settings/support.php:12
-msgid "Debugging"
-msgstr "正在除错"
-
-#: ../settings/support.php:13
-msgid ""
-"Either allow_url_fopen has to be enabled <em>or</em> cURL has to be "
-"available:"
-msgstr "要么必须启用 allow_url_fopen,要么使用 cURL:"
-
-#: ../settings/support.php:16
-msgid "cURL is"
-msgstr "cURL 现在"
-
-#: ../settings/support.php:17 ../settings/support.php:22
-msgid "not"
-msgstr "不"
+#: classes/WP_Piwik/Admin/Sitebrowser.php:79
+msgid "Site not created yet."
+msgstr ""
 
-#: ../settings/support.php:18
-msgid "available"
-msgstr "可用"
+#: classes/WP_Piwik/Admin/Statistics.php:12
+msgid "Statistics"
+msgstr "统计数据"
 
-#: ../settings/support.php:21
-msgid "allow_url_fopen is"
-msgstr "allow_url_fopen 现在"
+#: classes/WP_Piwik/Admin/Statistics.php:20
+msgid "Currently shown stats:"
+msgstr "目前展示的统计:"
 
-#: ../settings/support.php:31
-msgid "Test script result"
-msgstr "测试脚本结果"
+#: classes/WP_Piwik/Request/Php.php:27
+msgid "Could not resolve"
+msgstr "无法解析"
 
-#: ../settings/support.php:35
-msgid "Please confirm your reset request"
-msgstr "请确认你的重置请求"
+#: classes/WP_Piwik/Request/Php.php:27
+msgid "realpath() returns false"
+msgstr "realpath() 返回 false"
 
-#: ../settings/support.php:35
-msgid ""
-"YES, please reset <strong>all</strong> WP-Piwik settings <strong>except</"
-"strong> auth token and Piwi URL."
+#: classes/WP_Piwik/Request/Php.php:39
+msgid "Class Piwik\\FrontController does not exists."
 msgstr ""
-"是,请重置<strong>所有</strong> WP-Piwik 设置,<strong>除了</strong>认证令牌"
-"和 Piwik URL。"
 
-#: ../settings/support.php:41
-msgid "WP-Piwik reset done"
-msgstr "WP-Piwik 重置完成"
+#: classes/WP_Piwik/Request/Php.php:42
+msgid "Class Piwik\\API\\Request does not exists."
+msgstr ""
 
-#: ../settings/support.php:46
-msgid "Get more debug information"
-msgstr "获取更多除错信息"
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:10
+msgid "Piwik Custom Variables"
+msgstr "Piwik 自定义变量"
 
-#: ../settings/support.php:48
-msgid "Run test script"
-msgstr "运行测试脚本"
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
+msgid "Name"
+msgstr "名称"
 
-#: ../settings/support.php:49
-msgid "Get site configuration details"
-msgstr "获取站点配置细节"
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
+msgid "Value"
+msgstr "值"
 
-#: ../settings/support.php:50
-msgid "Reset WP-Piwik settings except auth token and Piwik URL"
-msgstr "重置 WP-Piwki 设置,除了认证令牌和 Piwki URL"
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
+msgid "Set custom variables for a page view"
+msgstr "为页面浏览量(PV)设置自定义变量"
 
-#: ../settings/support.php:50
-msgid ""
-"This will not affect Piwik itself. Resetting large networks may take some "
-"minutes."
-msgstr "这样不会影响 Piwik 本身。重置大型网络时可能需要更多时间。"
+#: classes/WP_Piwik/Widget/BrowserDetails.php:18
+msgid "Browser Details"
+msgstr "浏览器细节"
 
-#: ../settings/support.php:52
-msgid ""
-"You have to enter your auth token and the Piwik URL before you can access "
-"more debug functions."
-msgstr "你需要输入认证令牌和 Piwik URL,然后才可以使用更多除错功能。"
+#: classes/WP_Piwik/Widget/BrowserDetails.php:37
+#: classes/WP_Piwik/Widget/Browsers.php:37
+#: classes/WP_Piwik/Widget/Chart.php:43
+#: classes/WP_Piwik/Widget/Noresult.php:23
+#: classes/WP_Piwik/Widget/Overview.php:24
+#: classes/WP_Piwik/Widget/Plugins.php:23 classes/WP_Piwik/Widget/Post.php:25
+#: classes/WP_Piwik/Widget/Screens.php:35
+#: classes/WP_Piwik/Widget/Search.php:23 classes/WP_Piwik/Widget/Seo.php:20
+#: classes/WP_Piwik/Widget/SystemDetails.php:33
+#: classes/WP_Piwik/Widget/Systems.php:33
+#: classes/WP_Piwik/Widget/Visitors.php:35 classes/WP_Piwik/Widget.php:91
+msgid "Piwik error"
+msgstr "Piwik 错误"
 
-#: ../settings/support.php:55
-msgid "Latest support threads on WordPress.org"
-msgstr "WordPress.org 上的最新支持讨论"
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+msgid "Browser"
+msgstr "浏览器"
 
-#: ../settings/tracking.php:10
-msgid "Add tracking code"
-msgstr "添加跟踪代码"
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+#: classes/WP_Piwik/Widget/Screens.php:37
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+#: classes/WP_Piwik/Widget/Visitors.php:57 classes/WP_Piwik/Widget.php:100
+msgid "Unique"
+msgstr "独立访客"
 
-#: ../settings/tracking.php:14
-msgid ""
-"If your template uses wp_footer(), WP-Piwik can automatically add the Piwik "
-"javascript code to your blog."
-msgstr ""
-"如果你的模板使用了 wp_footer() 函数,WP-Piwik 则可以自动把 Piwik 脚本代码插入"
-"到你的博客中。"
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+#: classes/WP_Piwik/Widget/Plugins.php:25
+#: classes/WP_Piwik/Widget/Screens.php:37
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+msgid "Percent"
+msgstr "百分比"
 
-#: ../settings/tracking.php:31
-msgid "Tracking code preview"
-msgstr "跟踪代码预览"
+#: classes/WP_Piwik/Widget/BrowserDetails.php:66
+#: classes/WP_Piwik/Widget/Browsers.php:66
+#: classes/WP_Piwik/Widget/Screens.php:64
+#: classes/WP_Piwik/Widget/SystemDetails.php:62
+#: classes/WP_Piwik/Widget/Systems.php:62
+msgid "Others"
+msgstr "其他"
 
-#: ../settings/tracking.php:37
-msgid "&lt;noscript&gt; code preview"
-msgstr "&lt;noscript&gt; 代码预览"
+#: classes/WP_Piwik/Widget/Browsers.php:18
+msgid "Browsers"
+msgstr ""
 
-#: ../settings/tracking.php:43
-msgid "Default tracking"
-msgstr "默认跟踪"
+#: classes/WP_Piwik/Widget/Chart.php:19
+#: classes/WP_Piwik/Widget/Overview.php:41 classes/WP_Piwik/Widget/Post.php:37
+#: classes/WP_Piwik/Widget/Visitors.php:17
+msgid "Visitors"
+msgstr "访客"
 
-#: ../settings/tracking.php:45
-msgid "WP-Piwik uses the Piwik default tracking code."
-msgstr "WP-Piwik 使用 Piwik 的默认跟踪代码"
+#: classes/WP_Piwik/Widget/Chart.php:71
+msgid ""
+"The graph contains the values shown in the table below (visitors / unique / "
+"bounces). The red line show a linear trendline (unique)."
+msgstr "图表中反映的是下边表格里的数据(访客、独立访客、弹出次数)。红色线条表示线性趋势走向(独立访客)。"
 
-#: ../settings/tracking.php:48
-msgid "Use js/index.php"
-msgstr "使用 js/index.php"
+#: classes/WP_Piwik/Widget/Keywords.php:16
+msgid "Keywords"
+msgstr "关键词"
 
-#: ../settings/tracking.php:50
-msgid ""
-"WP-Piwik can automatically use js/index.php instead of piwik.js and piwik."
-"php. See"
+#: classes/WP_Piwik/Widget/Noresult.php:16
+#: classes/WP_Piwik/Widget/Search.php:16
+msgid "Site Search"
 msgstr ""
-"WP-Piwik 可以自动使用 js/index.php,从而取代 piwik.js 和 piwik.php。请查看"
 
-#: ../settings/tracking.php:53
-msgid "Use proxy script"
-msgstr "使用代理脚本"
-
-#: ../settings/tracking.php:55
-msgid "WP-Piwik will use the piwik.php proxy script. See"
-msgstr "WP-Piwik 要使用 piwik.php 代理脚本。请查看"
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+msgid "Keyword"
+msgstr "关键词"
 
-#: ../settings/tracking.php:59
-msgid "Add &lt;noscript&gt;"
-msgstr "添加 &lt;noscript&gt;"
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+msgid "Requests"
+msgstr "请求"
 
-#: ../settings/tracking.php:61
-msgid "Adds the &lt;noscript&gt; code to your footer."
-msgstr "添加 &lt;noscript&gt; 代码到你的 footer 部分。"
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Bounced"
+msgstr "弹出次数"
 
-#: ../settings/tracking.php:61 ../settings/tracking.php:66
-#: ../settings/tracking.php:86
-msgid "Disabled in proxy mode."
-msgstr "在代理模式下不可用"
+#: classes/WP_Piwik/Widget/Overview.php:17 classes/WP_Piwik/Widget/Post.php:18
+msgid "Overview"
+msgstr "概览"
 
-#: ../settings/tracking.php:64
-msgid "Add rec parameter to noscript code"
-msgstr "在 noscript 代码中添加 rec 参数"
+#: classes/WP_Piwik/Widget/Overview.php:42 classes/WP_Piwik/Widget/Post.php:38
+msgid "Unique visitors"
+msgstr "独立访客"
 
-#: ../settings/tracking.php:66
-msgid "Enable tracking for visitors without JavaScript (not recommended). See"
-msgstr "对未启用 JavaScript 的访客启用跟踪(不推荐)。请查看"
+#: classes/WP_Piwik/Widget/Overview.php:43 classes/WP_Piwik/Widget/Post.php:39
+msgid "Page views"
+msgstr "页面浏览量(PV)"
 
-#: ../settings/tracking.php:69
-msgid "Disable cookies"
-msgstr "禁用 Cookie"
+#: classes/WP_Piwik/Widget/Overview.php:44 classes/WP_Piwik/Widget/Post.php:40
+msgid "Total time spent"
+msgstr "总停留时长"
 
-#: ../settings/tracking.php:71
-msgid "Disable all tracking cookies for a visitor."
-msgstr "对某访问者禁用所有跟踪 Cookie"
+#: classes/WP_Piwik/Widget/Overview.php:45 classes/WP_Piwik/Widget/Post.php:42
+msgid "Bounce count"
+msgstr "弹出次数"
 
-#: ../settings/tracking.php:74
-msgid "Track search"
-msgstr "跟踪搜索"
+#: classes/WP_Piwik/Widget/Overview.php:48 classes/WP_Piwik/Widget/Post.php:41
+msgid "Time/visit"
+msgstr "平均每次访问的停留时长"
 
-#: ../settings/tracking.php:76
-msgid "Use Piwik's advanced Site Search Analytics feature. See"
-msgstr "使用 Piwik 的高级站点搜索分析功能。请查看"
+#: classes/WP_Piwik/Widget/Overview.php:48
+msgid "Max. page views in one visit"
+msgstr "单次访问中最大页面浏览量"
 
-#: ../settings/tracking.php:79
-msgid "Track 404"
-msgstr "跟踪 404"
+#: classes/WP_Piwik/Widget/Overview.php:49 classes/WP_Piwik/Widget/Post.php:46
+msgid "Shortcut"
+msgstr "便捷链接"
 
-#: ../settings/tracking.php:81
-msgid "WP-Piwik can automatically add a 404-category to track 404-page-visits."
-msgstr "WP-Piwik 会自动添加一个 404 目录来跟踪 404 页面的访问"
+#: classes/WP_Piwik/Widget/Pages.php:16
+msgid "Pages"
+msgstr "页面"
 
-#: ../settings/tracking.php:84
-msgid "Avoid mod_security"
-msgstr "避免 mod_security"
+#: classes/WP_Piwik/Widget/Plugins.php:16
+msgid "Plugins"
+msgstr "插件"
 
-#: ../settings/tracking.php:86
-msgid ""
-"WP-Piwik can automatically force the Tracking Code to sent data in POST. See"
-msgstr "WP-Piwik 会自动强制跟踪代码以 POST 的方式发送信息。请查看"
+#: classes/WP_Piwik/Widget/Plugins.php:25
+msgid "Plugin"
+msgstr ""
 
-#: ../settings/tracking.php:89
-msgid "Enable cache"
-msgstr "启用缓存"
+#: classes/WP_Piwik/Widget/Plugins.php:25
+#: classes/WP_Piwik/Widget/Visitors.php:57 classes/WP_Piwik/Widget.php:102
+msgid "Visits"
+msgstr "访问"
 
-#: ../settings/tracking.php:91
-msgid "Cache API calls, which not contain today's values, for a week"
-msgstr "缓存 API,其不包含当天的数值,为期一周"
+#: classes/WP_Piwik/Widget/Post.php:43
+msgid "Min. generation time"
+msgstr ""
 
-#: ../settings/tracking.php:94
-msgid "CDN URL"
-msgstr "CDN URL"
+#: classes/WP_Piwik/Widget/Post.php:44
+msgid "Max. generation time"
+msgstr ""
 
-#: ../settings/tracking.php:96
-msgid ""
-"Leave blank if you do not want to define a CDN URL or you do not know what "
-"this is."
-msgstr "如果不需要定义 CDN URL,或者你不清楚这是什么,请留空。"
+#: classes/WP_Piwik/Widget/Referrers.php:16
+msgid "Referrers"
+msgstr ""
 
-#: ../settings/tracking.php:99
-msgid "Tracking filter"
-msgstr "跟踪过滤器"
+#: classes/WP_Piwik/Widget/Screens.php:16
+msgid "Resolutions"
+msgstr ""
 
-#: ../settings/tracking.php:106
-msgid "Choose users by user role you do <strong>not</strong> want to track."
-msgstr "选择你<strong>不</strong>需要跟踪的用户组"
+#: classes/WP_Piwik/Widget/Screens.php:37
+msgid "Resolution"
+msgstr "分辨率"
 
-#: ../settings/views.php:10
-msgid "WP-Piwik display name"
-msgstr "WP-Piwik 显示名称"
+#: classes/WP_Piwik/Widget/Seo.php:13
+msgid "SEO"
+msgstr "SEO"
 
-#: ../settings/views.php:12
-msgid "Plugin name shown in WordPress."
-msgstr "在 WordPress 中显示的插件名称。"
+#: classes/WP_Piwik/Widget/SystemDetails.php:14
+msgid "Operation System Details"
+msgstr ""
 
-#: ../settings/views.php:14
-msgid "Default date"
-msgstr "默认日期"
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+msgid "Operation System"
+msgstr ""
 
-#: ../settings/views.php:16 ../settings/views.php:24
-msgid "yesterday"
-msgstr "昨天"
+#: classes/WP_Piwik/Widget/Systems.php:14
+msgid "Operation Systems"
+msgstr ""
 
-#: ../settings/views.php:17 ../settings/views.php:25
-msgid "today"
-msgstr "今天"
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Date"
+msgstr "日期"
 
-#: ../settings/views.php:19
-msgid "Default date shown on statistics page."
-msgstr "在统计数据页面显示的默认日期。"
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Page Views"
+msgstr ""
 
-#: ../settings/views.php:21
-msgid "Home Dashboard"
-msgstr "仪表盘首页"
+#: classes/WP_Piwik/Widget.php:104
+msgid "Hits"
+msgstr ""
 
-#: ../settings/views.php:23
-msgid "Hide overview"
-msgstr "隐藏概览"
+#: classes/WP_Piwik/Widget.php:106
+msgid "Actions"
+msgstr ""
 
-#: ../settings/views.php:24 ../settings/views.php:25 ../settings/views.php:26
-msgid "Show overview"
-msgstr "显示概览"
+#: classes/WP_Piwik/Widget.php:162
+msgid "No data available."
+msgstr "目前无数据"
 
-#: ../settings/views.php:26
-msgid "last 30 days"
-msgstr "最近 30 天"
+#: classes/WP_Piwik/Widget.php:293
+msgid "week"
+msgstr ""
 
-#: ../settings/views.php:28
-msgid "Chart"
-msgstr "图表"
+#: classes/WP_Piwik.php:193
+msgid "%s %s installed."
+msgstr ""
 
-#: ../settings/views.php:29
-msgid "SEO <em>(slow!)</em>"
-msgstr "SEO(很慢!)"
+#: classes/WP_Piwik.php:193
+msgid "Next you should connect to Piwik"
+msgstr "接下来,请连接到 Piwik"
 
-#: ../settings/views.php:30
-msgid ""
-"Configure WP-Piwik widgets to be shown on your WordPress Home Dashboard."
-msgstr "配置 WP-Piwik 挂件,以显示在你的 WordPress 仪表盘首页上。"
+#: classes/WP_Piwik.php:227
+msgid "%s updated to %s."
+msgstr ""
 
-#: ../settings/views.php:32
-msgid "Show graph on WordPress Toolbar"
-msgstr "在 WordPress 工具条上显示图表"
+#: classes/WP_Piwik.php:227
+msgid "Please validate your configuration"
+msgstr "请验证你的配置"
 
-#: ../settings/views.php:34
-msgid "Display the last 30 days visitor stats on WordPress Toolbar."
-msgstr "在 WordPress 工具条上显示最近 30 天里的访客统计"
+#: classes/WP_Piwik.php:259 classes/WP_Piwik.php:481
+msgid "Settings"
+msgstr "设置"
 
-#: ../settings/views.php:36
-msgid "SEO data"
-msgstr "SEO 数据"
+#: classes/WP_Piwik.php:262
+msgid "Important"
+msgstr "重要"
 
-#: ../settings/views.php:38
-msgid "Display SEO ranking data on statistics page. <em>(Slow!)</em>"
-msgstr "在统计数据页面显示 SEO 排名数据(很慢!)"
+#: classes/WP_Piwik.php:343 classes/WP_Piwik.php:365
+msgid "Piwik Statistics"
+msgstr "Piwik 统计"
 
-#: ../settings/views.php:42
-msgid "Display a shortcut to Piwik itself."
-msgstr "显示到 Piwik 本身的链接。"
+#: classes/WP_Piwik.php:453
+msgid "Configure WP-Piwik"
+msgstr ""
 
-#: ../settings/views.php:44
-msgid "Display to"
-msgstr "显示在"
+#: classes/WP_Piwik.php:923
+msgid "An error occured"
+msgstr "出错了"
 
-#: ../settings/views.php:51
-msgid "Choose user roles allowed to see the statistics page."
-msgstr "选择能够查看统计页面的用户组"
+#: classes/WP_Piwik.php:1191
+msgid "Cheatin&#8217; uh?"
+msgstr "呃,打开的方式不对吧?"
 
-#: ../settings/views.php:53
-msgid "Disable time limit"
-msgstr "禁用时间限制"
+#: wp-piwik.php:60
+msgid ""
+"WP-Piwik requires at least PHP 5.3. You are using the deprecated version %s."
+" Please update PHP to use WP-Piwik."
+msgstr ""
 
-#: ../settings/views.php:55
-msgid "Use set_time_limit(0) if stats page causes a time out."
-msgstr "如果统计数据页面出现超时,请使用 set_time_limit(0)。"
+#. Plugin Name of the plugin/theme
+msgid "WP-Piwik"
+msgstr ""
 
-#: ../settings/views.php:57
-msgid "Enable shortcodes"
-msgstr "启用短代码"
+#. Plugin URI of the plugin/theme
+msgid "http://wordpress.org/extend/plugins/wp-piwik/"
+msgstr ""
 
-#: ../settings/views.php:59
-msgid "Enable shortcodes in post or page content."
-msgstr "启用短代码,可以插入到文章或页面内容中。"
+#. Description of the plugin/theme
+msgid ""
+"Adds Piwik stats to your dashboard menu and Piwik code to your wordpress "
+"header."
+msgstr ""
 
-#: ../shortcodes/overview.php:26
-msgid "Error"
-msgstr "错误"
+#. Author of the plugin/theme
+msgid "Andr&eacute; Br&auml;kling"
+msgstr ""
 
-#: ../shortcodes/overview.php:46
-msgid "No data available"
-msgstr "暂无数据"
+#. Author URI of the plugin/theme
+msgid "http://www.braekling.de"
+msgstr ""
diff --git a/wp-content/plugins/wp-piwik/languages/wp-piwik.pot b/wp-content/plugins/wp-piwik/languages/wp-piwik.pot
new file mode 100644
index 0000000000000000000000000000000000000000..4fda0d0bdb1c0c21f7c00b4c02377c422e04ce0e
--- /dev/null
+++ b/wp-content/plugins/wp-piwik/languages/wp-piwik.pot
@@ -0,0 +1,1259 @@
+# Copyright (C) 2015 WP-Piwik
+# This file is distributed under the same license as the WP-Piwik package.
+msgid ""
+msgstr ""
+"Project-Id-Version: WP-Piwik 1.0.2\n"
+"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-piwik\n"
+"POT-Creation-Date: 2015-07-22 10:25:29+00:00\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"PO-Revision-Date: 2015-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+
+#: classes/WP_Piwik/Admin/Settings.php:24
+msgid "Reload"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:27
+msgid "Changes saved."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:45
+msgid "Save Changes"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:46
+msgid "Thanks for using WP-Piwik!"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid "WP-Piwik %s is successfully connected to Piwik %s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid "You are running WordPress %s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:50
+msgid ""
+"You are running a WordPress %s blog network (WPMU). WP-Piwik will handle "
+"your sites as different websites."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:53
+msgid ""
+"WP-Piwik %s was not able to connect to Piwik using your configuration. Check "
+"the &raquo;Connect to Piwik&laquo; section below."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:56
+msgid ""
+"WP-Piwik %s has to be connected to Piwik first. Check the &raquo;Connect to "
+"Piwik&laquo; section below."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:60
+msgid "Connect to Piwik"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:65
+msgid "Show Statistics"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:69
+msgid "Enable Tracking"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:74
+msgid "Expert Settings"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:78 classes/WP_Piwik.php:923
+msgid "Support"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:82
+msgid "Credits"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid ""
+"WP-Piwik is a WordPress plugin to show a selection of Piwik stats in your "
+"WordPress admin dashboard and to add and configure your Piwik tracking code. "
+"To use this you will need your own Piwik instance. If you do not already "
+"have a Piwik setup, you have two simple options: use either"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "Self-hosted"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "or"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid "Cloud-hosted"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:98
+msgid ""
+"Neither cURL nor fopen are available. So WP-Piwik can not use the HTTP API "
+"and not connect to Piwik Pro."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:98
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
+msgid "More information"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid "You can choose between three connection methods:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:103
+msgid "Self-hosted (HTTP API, default)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"This is the default option for a self-hosted Piwik and should work for most "
+"configurations. WP-Piwik will connect to Piwik using http(s)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:104
+msgid "Self-hosted (PHP API)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"Choose this, if your self-hosted Piwik and WordPress are running on the same "
+"machine and you know the full server path to your Piwik instance."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+#: classes/WP_Piwik/Admin/Settings.php:105
+msgid "Cloud-hosted (Piwik Pro)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"If you are using a cloud-hosted Piwik by Piwik Pro, you can simply use this "
+"option."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:101
+msgid "Piwik Mode"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:102
+msgid "Disabled (WP-Piwik will not connect to Piwik)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:108
+msgid "Piwik URL"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:108
+msgid ""
+"Enter your Piwik URL. This is the same URL you use to access your Piwik "
+"instance, e.g. http://www.example.com/piwik/."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:109
+msgid "Piwik path"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:109
+msgid "Enter the file path to your Piwik instance, e.g. /var/www/piwik/."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:110
+msgid "Piwik user"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:110
+msgid ""
+"Enter your Piwik Pro username. It is also part of your URL: http://USERNAME."
+"piwik.pro."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid "Auth token"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid ""
+"Enter your Piwik auth token here. It is an alphanumerical code like "
+"0a1b2c34d56e78901fa2bc3d45678efa."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:111
+msgid "See %sWP-Piwik FAQ%s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:116
+msgid "Auto config"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:116
+msgid ""
+"Check this to automatically choose your blog from your Piwik sites by URL. "
+"If your blog is not added to Piwik yet, WP-Piwik will add a new site."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:127
+msgid "Determined site"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:132
+msgid "Select site"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:140
+msgid "Piwik default date"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:141
+#: classes/WP_Piwik/Admin/Settings.php:154
+msgid "Today"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:142
+#: classes/WP_Piwik/Admin/Settings.php:153
+msgid "Yesterday"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:143
+msgid "Current month"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:144
+msgid "Last month"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:145
+msgid "Current week"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:146
+msgid "Last week"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:147
+msgid "Default date shown on statistics page."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:149
+msgid "Show SEO data"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:149
+msgid "Display SEO ranking data on statistics page."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:149
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Slow!"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:151
+msgid "Dashboard overview"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:152
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:192
+#: classes/WP_Piwik/Admin/Settings.php:213
+#: classes/WP_Piwik/Admin/Settings.php:304
+msgid "Disabled"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:155
+msgid "Last 30 days"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:156
+msgid "Enable WP-Piwik dashboard widget &quot;Overview&quot;."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:158
+msgid "Dashboard graph"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:158
+msgid "Enable WP-Piwik dashboard widget &quot;Graph&quot;."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Dashboard SEO"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:160
+msgid "Enable WP-Piwik dashboard widget &quot;SEO&quot;."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:162
+msgid "Show graph on WordPress Toolbar"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:162
+msgid "Display a last 30 days visitor graph on WordPress' toolbar."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:164
+msgid "Display stats to"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:171
+msgid "Choose user roles allowed to see the statistics page."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:173
+msgid "Show per post stats"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:173
+msgid "Show stats about single posts at the post edit admin page."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:175
+msgid "Piwik shortcut"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:175
+msgid "Display a shortcut to Piwik itself."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:177
+msgid "WP-Piwik display name"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:177
+msgid "Plugin name shown in WordPress."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:179
+msgid "Enable shortcodes"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:179
+msgid "Enable shortcodes in post or page content."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "You can choose between four tracking code modes:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"WP-Piwik will not add the tracking code. Use this, if you want to add the "
+"tracking code to your template files or you use another plugin to add the "
+"tracking code."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:193
+msgid "Default tracking"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "WP-Piwik will use Piwik's standard tracking code."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:194
+msgid "Use js/index.php"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"You can choose this tracking code, to deliver a minified proxy code and to "
+"avoid using the files called piwik.js or piwik.php."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "See %sreadme file%s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:195
+msgid "Use proxy script"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "Use this tracking code to not reveal the Piwik server URL."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:210
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid "See %sPiwik FAQ%s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:196
+msgid "Enter manually"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid ""
+"Enter your own tracking code manually. You can choose one of the prior "
+"options, pre-configure your tracking code and switch to manually editing at "
+"last."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "Use the placeholder {ID} to add the Piwik site ID."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:191
+msgid "Add tracking code"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:199
+msgid "Tracking code"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:201
+msgid "JavaScript code position"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:202
+msgid "Footer"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:203
+msgid "Header"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:204
+msgid ""
+"Choose whether the JavaScript code is added to the footer or the header."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:206
+msgid "Noscript code"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+msgid "Add &lt;noscript&gt;"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+msgid "Adds the &lt;noscript&gt; code to your footer."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Disabled in proxy mode."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Add rec parameter to noscript code"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Enable tracking for visitors without JavaScript (not recommended)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:212
+msgid "Enable content tracking"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:214
+msgid "Track all content blocks"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:215
+msgid "Track only visible content blocks"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:216
+msgid ""
+"Content tracking allows you to track interaction with the content of a web "
+"page or application."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:216
+#: classes/WP_Piwik/Admin/Settings.php:218
+#: classes/WP_Piwik/Admin/Settings.php:222
+#: classes/WP_Piwik/Admin/Settings.php:224
+#: classes/WP_Piwik/Admin/Settings.php:226
+#: classes/WP_Piwik/Admin/Settings.php:247
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "See %sPiwik documentation%s."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:218
+msgid "Track search"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:218
+msgid "Use Piwik's advanced Site Search Analytics feature."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid "Track 404"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid "WP-Piwik can automatically add a 404-category to track 404-page-visits."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:222
+msgid "Add annotation on new post"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:222
+msgid "Add a Piwik annotation on each new post."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:224
+msgid "Show custom variables box"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:224
+msgid " Show a &quot;custom variables&quot; edit box on post edit page."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:226
+msgid "Add new file types for download tracking"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:226
+msgid ""
+"Add file extensions for download tracking, divided by a vertical bar "
+"(&#124;)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:228
+msgid "Disable cookies"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:228
+msgid "Disable all tracking cookies for a visitor."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:230
+msgid "Limit cookie lifetime"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:230
+msgid ""
+"You can limit the cookie lifetime to avoid tracking your users over a longer "
+"period as necessary."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:232
+msgid "Visitor timeout (seconds)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:234
+msgid "Session timeout (seconds)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:236
+msgid "Referral timeout (seconds)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:238
+msgid "Track admin pages"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:238
+msgid ""
+"Enable to track users on admin pages (remember to configure the tracking "
+"filter appropriately)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:241
+msgid "Tracking filter"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:245
+msgid "Choose users by user role you do <strong>not</strong> want to track."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:247
+msgid "Track subdomains in the same website"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:247
+msgid "Adds *.-prefix to cookie domain."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "Do not count subdomains as outlink"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:249
+msgid "Adds *.-prefix to tracked domain."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:251
+msgid "Track RSS feeds"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:251
+msgid "Enable to track posts in feeds via tracking pixel."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:253
+msgid "Track RSS feed links as campaign"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:255
+msgid "RSS feed campaign"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:255
+msgid "Keyword: post name."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:257
+msgid "Enable heartbeat timer"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:257
+msgid ""
+"Enable a heartbeat timer to get more accurate visit lengths by sending "
+"periodical HTTP ping requests as long as the site is opened. Enter the time "
+"between the pings in seconds (Piwik default: 15) to enable or 0 to disable "
+"this feature. <strong>Note:</strong> This will cause a lot of additional "
+"HTTP requests on your site."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:262
+msgid ""
+"Usually, you do not need to change these settings. If you want to do so, you "
+"should know what you do or you got an expert's advice."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:264
+msgid "Enable cache"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:264
+msgid "Cache API calls, which not contain today's values, for a week."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:267
+msgid "HTTP connection via"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:268
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "cURL"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:269
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "fopen"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:270
+msgid ""
+"Choose whether WP-Piwik should use cURL or fopen to connect to Piwik in HTTP "
+"or Pro mode."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:272
+msgid "HTTP method"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:273
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "POST"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:274
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "GET"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:275
+msgid "Choose whether WP-Piwik should use POST or GET in HTTP or Pro mode."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:277
+msgid "Disable time limit"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:277
+msgid "Use set_time_limit(0) if stats page causes a time out."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:279
+msgid "Connection timeout"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:281
+msgid "Disable SSL peer verification"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:281
+msgid "not recommended"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:283
+msgid "User agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:284
+msgid "Use the PHP default user agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:284
+msgid "empty"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:285
+msgid "Define a specific user agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:287
+msgid "Specific user agent"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:289
+msgid "Add data-cfasync=false"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:291
+msgid "CDN URL"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:293
+msgid "CDN URL (SSL)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:295
+msgid "Force Piwik to use a specific protocol"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:296
+msgid "Disabled (default)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:297
+msgid "http"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:298
+msgid "https (SSL)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:299
+msgid ""
+"Choose if you want to explicitly force Piwik to use HTTP or HTTPS. Does not "
+"work with a CDN URL."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:301
+msgid "Update notice"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:302
+msgid "Show always if WP-Piwik is updated"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:303
+msgid "Show only if WP-Piwik is updated and settings were changed"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:305
+msgid "Choose if you want to get an update notice if WP-Piwik is updated."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:466
+msgid "Donate"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:468
+msgid "If you like WP-Piwik, you can support its development by a donation:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:506
+msgid "My Amazon.de wishlist"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:509
+#: classes/WP_Piwik/Admin/Settings.php:556
+msgid "Please don't forget to vote the compatibility at the"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid "Thank you very much for your donation"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid "the Piwik team itself"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:540
+msgid ", and all people flattering this"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:541
+msgid ""
+"Graphs powered by <a href=\"http://www.jqplot.com/\">jqPlot</a> (License: "
+"GPL 2.0 and MIT) and <a href=\"http://omnipotent.net/jquery.sparkline/"
+"\">jQuery Sparklines</a> (License: New BSD License)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:542
+msgid "Metabox support inspired by"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:543
+msgid "Tabbed settings page suggested by the"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:544
+msgid "Thank you very much"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:544
+msgid "for your translation work"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:545
+msgid ""
+"Thank you very much, all users who send me mails containing criticism, "
+"commendation, feature requests and bug reports! You help me to make WP-Piwik "
+"much better."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:546
+msgid ""
+"Thank <strong>you</strong> for using my plugin. It is the best commendation "
+"if my piece of code is really used!"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:555
+msgid "The best place to get help:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:555
+msgid "WP-Piwik support forum"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:558
+msgid "Debugging"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:559
+msgid ""
+"Either allow_url_fopen has to be enabled <em>or</em> cURL has to be "
+"available:"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:562
+msgid "cURL is"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:563
+#: classes/WP_Piwik/Admin/Settings.php:568
+msgid "not"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:564
+msgid "available"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:567
+msgid "allow_url_fopen is"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:569
+msgid "enabled"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:571
+msgid "is used."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:573
+msgid "Determined Piwik base URL is"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:577
+msgid "Tools"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:579
+msgid "Run testscript"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:580
+msgid "Sitebrowser"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:581
+msgid "Clear cache"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:582
+msgid "Are you sure you want to clear all settings?"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:582
+msgid "Reset WP-Piwik"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:584
+msgid "Latest support threads on WordPress.org"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:635
+msgid "Settings cleared (except connection settings)."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:651
+msgid "Cache cleared."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:17
+msgid "site"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:18
+msgid "sites"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:24
+msgid "No site configured yet."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:29
+msgid "Blog ID"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:30
+msgid "Title"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:31
+msgid "URL"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:32
+msgid "Site ID (Piwik)"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:79
+msgid "Site not created yet."
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Statistics.php:12
+msgid "Statistics"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Statistics.php:20
+msgid "Currently shown stats:"
+msgstr ""
+
+#: classes/WP_Piwik/Request/Php.php:27
+msgid "Could not resolve"
+msgstr ""
+
+#: classes/WP_Piwik/Request/Php.php:27
+msgid "realpath() returns false"
+msgstr ""
+
+#: classes/WP_Piwik/Request/Php.php:39
+msgid "Class Piwik\\FrontController does not exists."
+msgstr ""
+
+#: classes/WP_Piwik/Request/Php.php:42
+msgid "Class Piwik\\API\\Request does not exists."
+msgstr ""
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:10
+msgid "Piwik Custom Variables"
+msgstr ""
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
+msgid "Name"
+msgstr ""
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
+msgid "Value"
+msgstr ""
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
+msgid "Set custom variables for a page view"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:18
+msgid "Browser Details"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:37
+#: classes/WP_Piwik/Widget/Browsers.php:37
+#: classes/WP_Piwik/Widget/Chart.php:43
+#: classes/WP_Piwik/Widget/Noresult.php:23
+#: classes/WP_Piwik/Widget/Overview.php:24
+#: classes/WP_Piwik/Widget/Plugins.php:23 classes/WP_Piwik/Widget/Post.php:25
+#: classes/WP_Piwik/Widget/Screens.php:35
+#: classes/WP_Piwik/Widget/Search.php:23 classes/WP_Piwik/Widget/Seo.php:20
+#: classes/WP_Piwik/Widget/SystemDetails.php:33
+#: classes/WP_Piwik/Widget/Systems.php:33
+#: classes/WP_Piwik/Widget/Visitors.php:35 classes/WP_Piwik/Widget.php:91
+msgid "Piwik error"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+msgid "Browser"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+#: classes/WP_Piwik/Widget/Screens.php:37
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+#: classes/WP_Piwik/Widget/Visitors.php:57 classes/WP_Piwik/Widget.php:100
+msgid "Unique"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:39
+#: classes/WP_Piwik/Widget/Browsers.php:39
+#: classes/WP_Piwik/Widget/Plugins.php:25
+#: classes/WP_Piwik/Widget/Screens.php:37
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+msgid "Percent"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:66
+#: classes/WP_Piwik/Widget/Browsers.php:66
+#: classes/WP_Piwik/Widget/Screens.php:64
+#: classes/WP_Piwik/Widget/SystemDetails.php:62
+#: classes/WP_Piwik/Widget/Systems.php:62
+msgid "Others"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Browsers.php:18
+msgid "Browsers"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Chart.php:19
+#: classes/WP_Piwik/Widget/Overview.php:41 classes/WP_Piwik/Widget/Post.php:37
+#: classes/WP_Piwik/Widget/Visitors.php:17
+msgid "Visitors"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Chart.php:71
+msgid ""
+"The graph contains the values shown in the table below (visitors / unique / "
+"bounces). The red line show a linear trendline (unique)."
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Keywords.php:16
+msgid "Keywords"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Noresult.php:16
+#: classes/WP_Piwik/Widget/Search.php:16
+msgid "Site Search"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+msgid "Keyword"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+msgid "Requests"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Bounced"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Overview.php:17 classes/WP_Piwik/Widget/Post.php:18
+msgid "Overview"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Overview.php:42 classes/WP_Piwik/Widget/Post.php:38
+msgid "Unique visitors"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Overview.php:43 classes/WP_Piwik/Widget/Post.php:39
+msgid "Page views"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Overview.php:44 classes/WP_Piwik/Widget/Post.php:40
+msgid "Total time spent"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Overview.php:45 classes/WP_Piwik/Widget/Post.php:42
+msgid "Bounce count"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Overview.php:48 classes/WP_Piwik/Widget/Post.php:41
+msgid "Time/visit"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Overview.php:48
+msgid "Max. page views in one visit"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Overview.php:49 classes/WP_Piwik/Widget/Post.php:46
+msgid "Shortcut"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Pages.php:16
+msgid "Pages"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Plugins.php:16
+msgid "Plugins"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Plugins.php:25
+msgid "Plugin"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Plugins.php:25
+#: classes/WP_Piwik/Widget/Visitors.php:57 classes/WP_Piwik/Widget.php:102
+msgid "Visits"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Post.php:43
+msgid "Min. generation time"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Post.php:44
+msgid "Max. generation time"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Referrers.php:16
+msgid "Referrers"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Screens.php:16
+msgid "Resolutions"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Screens.php:37
+msgid "Resolution"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Seo.php:13
+msgid "SEO"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/SystemDetails.php:14
+msgid "Operation System Details"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/SystemDetails.php:35
+#: classes/WP_Piwik/Widget/Systems.php:35
+msgid "Operation System"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Systems.php:14
+msgid "Operation Systems"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Date"
+msgstr ""
+
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Page Views"
+msgstr ""
+
+#: classes/WP_Piwik/Widget.php:104
+msgid "Hits"
+msgstr ""
+
+#: classes/WP_Piwik/Widget.php:106
+msgid "Actions"
+msgstr ""
+
+#: classes/WP_Piwik/Widget.php:162
+msgid "No data available."
+msgstr ""
+
+#: classes/WP_Piwik/Widget.php:293
+msgid "week"
+msgstr ""
+
+#: classes/WP_Piwik.php:193
+msgid "%s %s installed."
+msgstr ""
+
+#: classes/WP_Piwik.php:193
+msgid "Next you should connect to Piwik"
+msgstr ""
+
+#: classes/WP_Piwik.php:227
+msgid "%s updated to %s."
+msgstr ""
+
+#: classes/WP_Piwik.php:227
+msgid "Please validate your configuration"
+msgstr ""
+
+#: classes/WP_Piwik.php:259 classes/WP_Piwik.php:481
+msgid "Settings"
+msgstr ""
+
+#: classes/WP_Piwik.php:262
+msgid "Important"
+msgstr ""
+
+#: classes/WP_Piwik.php:343 classes/WP_Piwik.php:365
+msgid "Piwik Statistics"
+msgstr ""
+
+#: classes/WP_Piwik.php:453
+msgid "Configure WP-Piwik"
+msgstr ""
+
+#: classes/WP_Piwik.php:923
+msgid "An error occured"
+msgstr ""
+
+#: classes/WP_Piwik.php:1191
+msgid "Cheatin&#8217; uh?"
+msgstr ""
+
+#: wp-piwik.php:60
+msgid ""
+"WP-Piwik requires at least PHP 5.3. You are using the deprecated version %s. "
+"Please update PHP to use WP-Piwik."
+msgstr ""
+
+#. Plugin Name of the plugin/theme
+msgid "WP-Piwik"
+msgstr ""
+
+#. Plugin URI of the plugin/theme
+msgid "http://wordpress.org/extend/plugins/wp-piwik/"
+msgstr ""
+
+#. Description of the plugin/theme
+msgid ""
+"Adds Piwik stats to your dashboard menu and Piwik code to your wordpress "
+"header."
+msgstr ""
+
+#. Author of the plugin/theme
+msgid "Andr&eacute; Br&auml;kling"
+msgstr ""
+
+#. Author URI of the plugin/theme
+msgid "http://www.braekling.de"
+msgstr ""
diff --git a/wp-content/plugins/wp-piwik/proxy/config.php b/wp-content/plugins/wp-piwik/proxy/config.php
new file mode 100644
index 0000000000000000000000000000000000000000..4060135a4a5de97eb5a8e5fa32ce04f12f9ccca3
--- /dev/null
+++ b/wp-content/plugins/wp-piwik/proxy/config.php
@@ -0,0 +1,30 @@
+<?php
+require ('../../../../wp-load.php');
+
+require_once ('../classes/WP_Piwik/Settings.php');
+require_once ('../classes/WP_Piwik/Logger.php');
+require_once ('../classes/WP_Piwik/Logger/Dummy.php');
+
+$logger = new WP_Piwik\Logger\Dummy ( __CLASS__ );
+$settings = new WP_Piwik\Settings ( $logger );
+
+$protocol = (isset ( $_SERVER ['HTTPS'] ) && $_SERVER ['HTTPS'] != 'off') ? 'https' : 'http';
+
+switch ($settings->getGlobalOption ( 'piwik_mode' )) {
+	case 'php' :
+		$PIWIK_URL = $protocol . ':' . $settings->getGlobalOption ( 'proxy_url' );
+		break;
+	case 'pro' :
+		$PIWIK_URL = 'https://' . $settings->getGlobalOption ( 'piwik_user' ) . '.piwik.pro/';
+		break;
+	default :
+		$PIWIK_URL = $settings->getGlobalOption ( 'piwik_url' );
+}
+
+if (substr ( $PIWIK_URL, 0, 2 ) == '//')
+	$PIWIK_URL = (isset ( $_SERVER ['HTTPS'] ) ? 'https:' : 'http:') . $PIWIK_URL;
+
+$TOKEN_AUTH = $settings->getGlobalOption ( 'piwik_token' );
+$timeout = $settings->getGlobalOption ( 'connection_timeout' );
+
+ini_set ( 'display_errors', 0 );
\ No newline at end of file
diff --git a/wp-content/plugins/wp-piwik/proxy/index.php b/wp-content/plugins/wp-piwik/proxy/index.php
new file mode 100644
index 0000000000000000000000000000000000000000..9b3347dc327ee0179b3df406f1d910c861c05d3a
--- /dev/null
+++ b/wp-content/plugins/wp-piwik/proxy/index.php
@@ -0,0 +1,2 @@
+<?php
+	// Nothing to see...
\ No newline at end of file
diff --git a/wp-content/plugins/wp-piwik/proxy/piwik.php b/wp-content/plugins/wp-piwik/proxy/piwik.php
new file mode 100644
index 0000000000000000000000000000000000000000..29a077b47f66fcc9e4143e1563bdf15d8ae0d691
--- /dev/null
+++ b/wp-content/plugins/wp-piwik/proxy/piwik.php
@@ -0,0 +1,134 @@
+<?php
+/**
+ * Piwik - free/libre analytics platform
+ * Piwik Proxy Hide URL
+ *
+ * @link http://piwik.org/faq/how-to/#faq_132
+ * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
+ */
+if (file_exists('config.php')) {
+    include 'config.php';
+}
+// -----
+// Important: read the instructions in README.md or at:
+// https://github.com/piwik/piwik/tree/master/misc/proxy-hide-piwik-url#piwik-proxy-hide-url
+// -----
+// Edit the line below, and replace http://your-piwik-domain.example.org/piwik/
+// with your Piwik URL ending with a slash.
+// This URL will never be revealed to visitors or search engines.
+if (! isset($PIWIK_URL)) {
+    $PIWIK_URL = 'http://your-piwik-domain.example.org/piwik/';
+}
+// Edit the line below, and replace xyz by the token_auth for the user "UserTrackingAPI"
+// which you created when you followed instructions above.
+if (! isset($TOKEN_AUTH)) {
+    $TOKEN_AUTH = 'xyz';
+}
+// Maximum time, in seconds, to wait for the Piwik server to return the 1*1 GIF
+if (! isset($timeout)) {
+    $timeout = 5;
+}
+function sendHeader($header, $replace = true)
+{
+    headers_sent() || header($header, $replace);
+}
+function arrayValue($array, $key, $value = null)
+{
+    if (!empty($array[$key])) {
+        $value = $array[$key];
+    }
+    return $value;
+}
+function getContents($url, $options = false)
+{
+	if (ini_get('allow_url_fopen')) {
+		$ctx = ($options?stream_context_create($options):NULL);
+		return file_get_contents($url, 0, $ctx);
+	} elseif (function_exists('curl_version'))
+		return piwikFileGetContentsCurl($url, $options);
+	else return 'Neither url_fopen nor cURL is available. Please enable at least one of them.';
+}
+function piwikFileGetContentsCurl($url, $options) 
+{
+	$ch = curl_init();
+	curl_setopt($ch, CURLOPT_HEADER, 0);
+	curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
+	curl_setopt($ch, CURLOPT_USERAGENT, $options['http']['user_agent']);
+	curl_setopt($ch, CURLOPT_HTTPHEADER, $options['http']['header']);
+	curl_setopt($ch, CURLOPT_TIMEOUT, $options['http']['timeout']);
+	curl_setopt($ch, CURLOPT_URL, $url);
+	$data = curl_exec($ch);
+	curl_close($ch);
+	return $data;
+}
+// DO NOT MODIFY BELOW
+// ---------------------------
+// 1) PIWIK.JS PROXY: No _GET parameter, we serve the JS file
+if (empty($_GET)) {
+    $modifiedSince = false;
+    if (isset($_SERVER['HTTP_IF_MODIFIED_SINCE'])) {
+        $modifiedSince = $_SERVER['HTTP_IF_MODIFIED_SINCE'];
+        // strip any trailing data appended to header
+        if (false !== ($semicolon = strpos($modifiedSince, ';'))) {
+            $modifiedSince = substr($modifiedSince, 0, $semicolon);
+        }
+        $modifiedSince = strtotime($modifiedSince);
+    }
+    // Re-download the piwik.js once a day maximum
+    $lastModified = time() - 86400;
+    // set HTTP response headers
+    sendHeader('Vary: Accept-Encoding');
+    // Returns 304 if not modified since
+    if (!empty($modifiedSince) && $modifiedSince > $lastModified) {
+        sendHeader(sprintf("%s 304 Not Modified", $_SERVER['SERVER_PROTOCOL']));
+    } else {
+        sendHeader('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT');
+        sendHeader('Content-Type: application/javascript; charset=UTF-8');
+        if ($piwikJs = getContents($PIWIK_URL . 'piwik.js')) {
+            echo $piwikJs;
+        } else {
+            sendHeader($_SERVER['SERVER_PROTOCOL'] . '505 Internal server error');
+        }
+    }
+    exit;
+}
+@ini_set('magic_quotes_runtime', 0);
+// 2) PIWIK.PHP PROXY: GET parameters found, this is a tracking request, we redirect it to Piwik
+$url = sprintf("%spiwik.php?cip=%s&token_auth=%s&", $PIWIK_URL, getVisitIp(), $TOKEN_AUTH);
+foreach ($_GET as $key => $value) {
+    $url .= urlencode($key ). '=' . urlencode($value) . '&';
+}
+sendHeader("Content-Type: image/gif");
+$stream_options = array('http' => array(
+    'user_agent' => arrayValue($_SERVER, 'HTTP_USER_AGENT', ''),
+    'header'     => sprintf("Accept-Language: %s\r\n", str_replace(array("\n", "\t", "\r"), "", arrayValue($_SERVER, 'HTTP_ACCEPT_LANGUAGE', ''))),
+    'timeout'    => $timeout
+));
+if (version_compare(PHP_VERSION, '5.3.0', '<')) {
+    // PHP 5.2 breaks with the new 204 status code so we force returning the image every time
+    echo getContents($url . '&send_image=1', $stream_options);
+} else {
+    // PHP 5.3 and above
+    $content = getContents($url, $stream_options);
+    // Forward the HTTP response code
+    if (!headers_sent() && isset($http_response_header[0])) {
+        header($http_response_header[0]);
+    }
+    echo $content;
+}
+function getVisitIp()
+{
+    $matchIp = '/^([0-9]{1,3}\.){3}[0-9]{1,3}$/';
+    $ipKeys = array(
+        'HTTP_X_FORWARDED_FOR',
+        'HTTP_CLIENT_IP',
+        'HTTP_CF_CONNECTING_IP',
+    );
+    foreach($ipKeys as $ipKey) {
+        if (isset($_SERVER[$ipKey])
+            && preg_match($matchIp, $_SERVER[$ipKey])) {
+            return $_SERVER[$ipKey];
+        }
+    }
+    return arrayValue($_SERVER, 'REMOTE_ADDR');
+}
\ No newline at end of file
diff --git a/wp-content/plugins/wp-piwik/readme.txt b/wp-content/plugins/wp-piwik/readme.txt
index 754b8cdba19caeeb1b7b9911d9f79a16f4898f46..2be749fad2f56ef85b5e14c76e6fa42c9fb66ae0 100644
--- a/wp-content/plugins/wp-piwik/readme.txt
+++ b/wp-content/plugins/wp-piwik/readme.txt
@@ -1,9 +1,9 @@
 === WP-Piwik ===
 
 Contributors: Braekling
-Requires at least: 3.8
-Tested up to: 3.9.1
-Stable tag: 0.9.9.12
+Requires at least: 4.0
+Tested up to: 4.2.2
+Stable tag: 1.0.3
 Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=6046779
 Tags: statistics, stats, analytics, piwik, wpmu
 
@@ -11,17 +11,17 @@ This plugin adds a Piwik stats site to your WordPress or WordPress multisite das
 
 == Description ==
 
-This plugin adds a Piwik stats site to your WordPress dashboard. It's also able to add the Piwik tracking code to your blog using wp_footer.
+This plugin adds a Piwik stats site to your WordPress dashboard. It's also able to add the Piwik tracking code to your blog.
 
-You need a running **Piwik 2.0.2 or higher** installation and at least view access to your stats. Also **PHP 5.3 or higher** is strictly required.
+To use this plugin you will need your own Piwik instance. If you do not already have a Piwik setup, you have two simple options: use either [Self-hosted](http://piwik.org/) or [Cloud-hosted](http://piwik.org/hosting/). 
 
-Look at the [Piwik website](http://piwik.org/) to get further information about Piwik.
+**Requirements:** PHP 5.4 (or higher), WordPress 4.0 (or higher), Piwik 2.9 (or higher; 2.14.1 or higher recommended)
+ 
+**Languages:** English, Dutch, French, German, Greek, Italian, Portuguese (Brazil). Partially supported: Albanian, Azerbaijani, Belarusian, Chinese (simplified), Lithuanian, Norwegian, Persian, Romanian, Russian, Spanish, Swedish, Turkish, Ukrainian
 
-*This plugin is not created or provided by the Piwik project team.*
-
-Languages: English, German, Albanian, Azerbaijani, Belorussian, Chinese (simplified), Dutch, French, Greek, Italian, Lithuanian, Norwegian, Persian, Romanian, Russian, Spanish, Swedish, Ukrainian
+**Note:** If you vote "It's broken", please tell me about your problem. It's hard to fix a bug I don't know about! ;-)
 
-*Note: If you vote "It's broken", please tell me about your problem. It's hard to fix a bug I don't know about! ;-)*
+*This plugin is not created or provided by the Piwik project team.*
 
 = Shortcodes =
 You can use following shortcodes if activated:
@@ -38,18 +38,10 @@ Shows the chosen keys value related to the current post. You can define a range
 	[wp-piwik]
 is equal to *[wp-piwik module="overview" title="" period="day" date="yesterday"]*.
 
-More shortcodes will follow soon.
-
-= WP multisite =
-
-See section "Installation".
-
 = Credits =
 
 * Graphs powered by [jqPlot](http://www.jqplot.com/) (GPL 2.0 and MIT) and  and [jQuery Sparklines](http://omnipotent.net/jquery.sparkline/) (New BSD License).
-* Metabox support inspired by [Heiko Rabe's metabox demo plugin](http://www.code-styling.de/english/how-to-use-wordpress-metaboxes-at-own-plugins).
-* Translation credits see plugin settings
-* Donations: Marco L., Rolf W., Tobias U., Lars K., Donna F., Kevin D., Ramos S., Thomas M., John C., Andreas G., Ben M., Myra R. I., Carlos U. R.-S., Oleg I., M. N., Daniel K., James L., Jochen K., the Piwik team itself, and all people flattering this.
+* Donations: Marco L., Rolf W., Tobias U., Lars K., Donna F., Kevin D., Ramos S., Thomas M., John C., Andreas G., Ben M., Myra R. I., Carlos U. R.-S., Oleg I., M. N., Daniel K., James L., Jochen K., Cyril P., Thomas K., the Piwik team itself, and all people flattering this.
 * All users who send me mails containing criticism, commendation, feature requests and bug reports - you help me to make WP-Piwik much better!
 
 Thank you all!
@@ -58,29 +50,33 @@ Thank you all!
 
 = Where can I find the Piwik URL and the Piwik auth token? =
 
-WP-Piwik requires Piwik. If you did not install Piwik yet, first get it at the [Piwik website](http://www.piwik.org). 
+To use this plugin you will need your own Piwik instance. If you do not already have a Piwik setup, you have two simple options: use either [Self-hosted](http://piwik.org/) or [Cloud-hosted](http://piwik.org/hosting/). 
 
-If Piwik works, you'll be able to configure WP-Piwik: The Piwik URL is the same URL you use to access your Piwik, e.g. for the demo site: http://demo.piwik.org. The auth token is some kind of secret password, which allows WP-Piwik to get the necessary data from Piwik. The super user's auth token, i.e. a full access password for your Piwik, can be found on Piwik's API site. You can find a detailed description [here](http://peepbo.de/board/viewtopic.php?f=5&t=10).
+As soon as Piwik works, you'll be able to configure WP-Piwik: The Piwik URL is the same URL you use to access your Piwik, e.g. for the demo site: http://demo.piwik.org. The auth token is some kind of a secret password, which allows WP-Piwik to get the necessary data from Piwik. To get your auth token, log in to Piwik, click at your user name (top right) and click at "API" (left sidebar menu).
 
-= How to reset/remove all WP-Piwik settings without uninstalling? =
+You can get a more detailed description here: https://piwik.org/blog/2015/05/wordpress-integration-wp-piwik-1-0/
 
-Login to your admin dashboard and open http://YOUR_BLOG_URL/wp-admin/options-general.php?page=wp-piwik/wp-piwik.php&tab=support&mode=resetconfirmed&full=1
+= Can I contribute to WP-Piwik as a translator? =
 
-= Tracking does not work on HostGator! =
+You like to contribute to WP-Piwik translations? Please use the [Transifex translation community](https://www.transifex.com/projects/p/wp-piwik/).
 
-Try to enable the "avoid mod_security" option (WP-Piwik settings, Tracking tab) or create a mod_security whitelist.
+Of course, I will add missing languages if requested, and I will also upload the existing language files of older WP-Piwik releases.
 
-= WP-Piwik does not work with SSL! =
+If you can't (or don not want to) use transifex, you can also translate languages/wp-piwik.pot delivered with WP-Piwik.
 
-See [this support thread](http://wordpress.org/support/topic/plugin-wp-piwik-https-ssl-support?replies=3).
+Thank you very much! :-)
 
-= Overview shortcode shows no unique visitors using a yearly range. =
-See [Piwik FAQ](http://piwik.org/faq/how-to/#faq_113).
+= Why does WP-Piwik require a newer PHP version than WordPress? =
+
+WP-Piwik requires a working Piwik instance which requires a higher PHP version, too. Furthermore, please have a look at the [official PHP Unsupported Branches page](http://php.net/eol.php). Even if your software still works with PHP 5.2, the PHP team stopped to deliver **security** patches in January 2011. Even PHP 5.3 does not get security patches anymore (end of life date was August 2014).
+
+= Tracking does not work on HostGator! / The test script shows an empty response. =
+
+Try to enable the "avoid mod_security" option (WP-Piwik settings, Tracking tab) or create a mod_security whitelist.
 
-= Can I also access some Piwik values using a PHP call? =
+= Overview shortcode shows no unique visitors using a yearly range. =
 
-Yes, you can access also available shortcodes using PHP, too. See this example:
-echo $GLOBALS['wp_piwik']->shortcode(array('module' => 'post', 'range' => 'last300', 'key' => 'sum_daily_nb_uniq_visitors'));
+See [Piwik FAQ](http://piwik.org/faq/how-to/#faq_113).
 
 == Installation ==
 
@@ -90,11 +86,11 @@ echo $GLOBALS['wp_piwik']->shortcode(array('module' => 'post', 'range' => 'last3
 
 2. Activate the plugin through the 'Plugins' menu in WordPress. 
 
-3. Open the new 'Settings/WP-Piwik Settings' menu, enter your Piwik base URL and your auth token. Save settings.
+3. Open the new 'Settings/WP-Piwik Settings' menu and follow the instructions to configure your Piwik connection. Save settings.
 
 4. If you have view access to multiple site stats and did not enable "auto config", choose your blog and save settings again.
 
-5. Look at 'Dashboard/WP-Piwik' to get your site stats.
+5. Look at 'Dashboard/WP-Piwik' to see your site stats.
 
 = Install WP-Piwik on a WordPress blog network (WPMU/WP multisite) =
 
@@ -118,13 +114,127 @@ Add WP-Piwik to your /wp-content/plugins folder and enable it as [Network Plugin
 2. WP-Piwik statistics page.
 3. Closer look to a pie chart.
 4. WordPress toolbar graph.
+5. Piwik: Here you'll find your auth token.
 
 == Upgrade Notice ==
 
-Please update Piwik if not done yet (Piwik 2.0 or higher is recommended)!
+After several changes related to Piwik 2.14.1 and to prepare Piwik 3, I recommend to create a backup of your current system before updating Piwik and/or WP-Piwik. If you want to upgrade WP-Piwik from 0.8.x, please install 0.9.9.18 first: https://downloads.wordpress.org/plugin/wp-piwik.0.9.9.18.zip
 
 == Changelog ==
 
+= 1.0.3 =
+* Several language updates.
+* Switch to JSON renderer (Piwik 3 compatibility preparation)
+* Workaround: PHP API will work with Piwik 2.14+, see https://github.com/piwik/piwik/issues/8311 for further information.
+* Feature: Heartbeat timer support
+* Feature: Expanded token & URL/path input fields
+* Bugfix: Site duplication fix.
+* Bugfix: Avoid notice on empty overview response.
+* Bugfix: Return request error responses.
+* Bugfix: Opt-out URL fixed.
+* Bugfix: Capabilities: "Do not track"-filter and "show stats"-limit will work on multisites as expected again.
+
+= 1.0.2 =
+* Several language updates.
+* Feature: Disable update notifications (expert settings).
+* Feature: Choose between cURL and fopen if both are available (expert settings).
+* Feature: Choose between POST and GET (expert settings).
+* Widget: System details added.
+* Widget: SEO widget re-enabled.
+* Update: Replaced deprecated Piwik API calls.
+* Bugfix: Settings link (toolbar, network mode) fixed.
+* Bugfix: Encode blog titles in PHP mode.
+* Bugfix: Pie charts won't show to long legends if more than 10 items are available.
+
+= 1.0.1 =
+* Several language updates, amongst others Portuges (Brazil) finished. See https://www.transifex.com/organization/piwik/dashboard/wp-piwik for further information.
+* Bugfix: If WP-Piwik is not configured properly or the connection to Piwik could not be established, the toolbar graph won't cause a JavaScript error anymore.
+
+= 1.0.0 =
+* Feature: Expand "other" values on click
+* Bugfix: Avoid notices on invalid file path (PHP API)
+* Bugfix: Cookie lifetime input boxes are in some cases shown or hidden by mistake
+* Network (multisite): Updated plugin to use wp_get_sites if possible
+* Test script: Settings dump added
+
+= 0.10.1.0 =
+* Bugfix: Fixed memory & timeout issue on multisites
+
+= 0.10.0.9 =
+* Add clear cache function.
+* Add clear settings (reset) function.
+
+= 0.10.0.8 =
+* Bugfix: Sitebrowser link (settings page, support) fixed
+* Bugfix: Use new settings directly after saving (reloading is not necessary anymore)
+* Optimized caching behaviour
+* Language update (German, French)
+
+= 0.10.0.7 =
+* Bugfix: Opt-out shortcode output fix
+* Bugfix: Opt-out shortcode will also work in "pro" and "php" mode
+* Bugfix: Test script link (settings page, support) fixed
+* Bugfix: Removed test script errors and notices
+* Bugfix: Keep sure the revion ID is stored and avoid re-installing the plugin again and again
+* Bugfix: http/pro - after configuration the settings page had to be reloaded once to start working
+* Typo fixes
+ 
+= 0.10.0.6 =
+* Bugfix: Option storage bug if WP-Piwik is used as single site plugin on blog networks
+* Bugfix: WP-Piwik will work without Piwik superuser access, again
+* Bugfix: Choosing the site without auto config works again
+
+= 0.10.0.5 =
+* Bugfix: In some cases the update message did not disappear -> fixed
+* Important change: If you want to upgrade from 0.8.x to 0.10.x, please install 0.9.9.18 first: https://downloads.wordpress.org/plugin/wp-piwik.0.9.9.18.zip
+
+= 0.10.0.4 =
+* Bugfix: Settings link in admin notices fixed
+* Bugfix: Shortcode result will appear where expected
+* Bugfix: 0.9.9.18 settings will be kept (if WP-Piwik was not reconfigured after updating to 0.10.0.3, yet)
+* Feature: If Piwik returns an error instead of a tracking code, this error will be visible
+
+= 0.10.0.3 =
+* Public beta of WP-Piwik 1.0
+* Full refactored code
+* Feature: Limit referral cookie lifetime
+* Feature: Enable content tracking
+
+= 0.9.9.18 =
+* Improvement: Define additional file extensions for tracking downloads
+* Improvement: Added a POT file to support translators (Note: 1.0 will change a lot, so please don't spend too much time in translating the current version, e.g., by creating an all new translation. With 1.0 I will also offer a translation platform to support your work.)
+* Improvement: If necessary, you can force Piwik to use HTTP or HTTPS now (e.g., to avoid redirections from http to https)
+* Avoided a naming collision with Woo Theme
+
+= 0.9.9.17 =
+* Improvement: Updated the Piwik proxy script and added cURL support if url_fopen is not available
+* Bugfix: Setup bug, see https://wordpress.org/support/topic/piwik-urlpath-not-saved
+* Bugfix: CDN URL notice, see https://wordpress.org/support/topic/tracking-cdn-blank-gives-php-notice-which-breaks-the-trackback-js-code
+* Bugfix: Fixed zlib compression notice, see https://wordpress.org/support/topic/v09914-is-bad
+* Bugfix: Proxy script label links to proxy script checkbox
+* Fixed a typo in German language file
+
+= 0.9.9.16 =
+* Bugfix: PHP API causes plain text output issue (see 0.9.9.11)
+* Bugfix: Shortcode output translated
+
+= 0.9.9.15 =
+* Bugfix: One more commit error
+* Bugfix: Adding up problem related to the overview widget
+* Bugfix: Fixes missing brackets on ob_start
+* Hotfix: Adds /0.9.9.15 to js/index.php to force a reload
+* Bugifx: Replaced broken support link
+* Added a bitcoin donation link
+
+= 0.9.9.14 =
+* Bugfix: Commit errors in 0.9.9.13
+
+= 0.9.9.13 =
+* Improvement: Only activate/ load admin components if an admin page is actually loaded. Thanks to Michael!
+* Bugfix: Proxy tracking will work again. Piwik 2.7 or higher is recommended.
+* Bugfix: Avoid a PHP notice in dashboard
+* NOTE: If you update Piwik and use the "add tracking code" feature, please also update your WP-Piwik tracking code: Just open the WP-Piwik tracking code settings and save them again. 
+
 = 0.9.9.12 =
 * Bugfix: Avoid forced relogin on site change (WP network)
 * Bugfix: Avoid multiple annotations on post updates
@@ -144,7 +254,7 @@ Please update Piwik if not done yet (Piwik 2.0 or higher is recommended)!
 * Feature: Show page views (actions) in "visitors last 30"
 
 = 0.9.9.9 =
-* Update: PHP API will use namespaces (Piwik 2.x compatibility, PHP 5.3+ required)
+* Update: PHP API will use namespaces (Piwik 2.x compatibility)
 * Update: Piwik URL isn't necessary to use PHP API anymore.
 * Feature: Limit cookie lifetime
 * Feature: Track visitors across all subdomains
@@ -402,4 +512,4 @@ Please update Piwik if not done yet (Piwik 2.0 or higher is recommended)!
 * Browser stats and bounced visitors
 
 = 0.2.0 =
-* First public version.
\ No newline at end of file
+* First public version.
diff --git a/wp-content/plugins/wp-piwik/screenshot-1.gif b/wp-content/plugins/wp-piwik/screenshot-1.gif
index 6431aacea6e32d56cf027b4aba0f854b1f2b3b7e..5f210b5423508e2f18dad1bcd8002aaed21f50ae 100644
Binary files a/wp-content/plugins/wp-piwik/screenshot-1.gif and b/wp-content/plugins/wp-piwik/screenshot-1.gif differ
diff --git a/wp-content/plugins/wp-piwik/screenshot-2.gif b/wp-content/plugins/wp-piwik/screenshot-2.gif
index 997b87e3a57dcd52fd88c09e403768fdb0e87199..af1cdeb52d5790723a38281b3f5c83214e1d7391 100644
Binary files a/wp-content/plugins/wp-piwik/screenshot-2.gif and b/wp-content/plugins/wp-piwik/screenshot-2.gif differ
diff --git a/wp-content/plugins/wp-piwik/screenshot-3.gif b/wp-content/plugins/wp-piwik/screenshot-3.gif
index b2f8f31040933a33891c9445abe1489d026558ec..992df931c8609a90f1305acc55a4703bc6548383 100644
Binary files a/wp-content/plugins/wp-piwik/screenshot-3.gif and b/wp-content/plugins/wp-piwik/screenshot-3.gif differ
diff --git a/wp-content/plugins/wp-piwik/screenshot-4.gif b/wp-content/plugins/wp-piwik/screenshot-4.gif
index 85cec05db2c78ad2cf072fc3ba484b7a7922efec..96356c8a61bdeb7d68ce07631c31e19ea81eae4e 100644
Binary files a/wp-content/plugins/wp-piwik/screenshot-4.gif and b/wp-content/plugins/wp-piwik/screenshot-4.gif differ
diff --git a/wp-content/plugins/wp-piwik/screenshot-5.gif b/wp-content/plugins/wp-piwik/screenshot-5.gif
new file mode 100644
index 0000000000000000000000000000000000000000..6472c0077d4bda60c9d0951d35e5089c02f2b038
Binary files /dev/null and b/wp-content/plugins/wp-piwik/screenshot-5.gif differ
diff --git a/wp-content/plugins/wp-piwik/uninstall.php b/wp-content/plugins/wp-piwik/uninstall.php
index f6b983fe22d1251e863fb9a15ed852db34e4abb3..d6b57cc1cc3819b529030936d8ebb2ec34752b56 100644
--- a/wp-content/plugins/wp-piwik/uninstall.php
+++ b/wp-content/plugins/wp-piwik/uninstall.php
@@ -1,17 +1,110 @@
 <?php
 
 // Check if uninstall call is valid
-if (!defined('WP_UNINSTALL_PLUGIN')) exit();
+if ( !defined( 'WP_UNINSTALL_PLUGIN' ) ) 
+    exit();
+    
+$globalSettings = array(
+	'revision',
+	'last_settings_update',
+	'piwik_mode',
+	'piwik_url',
+	'piwik_path',
+	'piwik_user',
+	'piwik_token',
+	'auto_site_config',
+	'default_date',
+	'stats_seo',
+	'dashboard_widget',
+	'dashboard_chart',
+	'dashboard_seo',
+	'toolbar',
+	'capability_read_stats',
+	'perpost_stats',
+	'plugin_display_name',
+	'piwik_shortcut',
+	'shortcodes',
+	'track_mode',
+	'track_codeposition',
+	'track_noscript',
+	'track_nojavascript',
+	'proxy_url',
+	'track_content',
+	'track_search',
+	'track_404',
+	'add_post_annotations',
+	'add_customvars_box',
+	'add_download_extensions',
+	'disable_cookies',
+	'limit_cookies',
+	'limit_cookies_visitor',
+	'limit_cookies_session',
+	'limit_cookies_referral',
+	'track_admin',
+	'capability_stealth',
+	'track_across',
+	'track_across_alias',
+	'track_feed',
+	'track_feed_addcampaign',
+	'track_feed_campaign',
+	'cache',
+	'disable_timelimit',
+	'connection_timeout',
+	'disable_ssl_verify',
+	'piwik_useragent',
+	'piwik_useragent_string',
+	'track_datacfasync',
+	'track_cdnurl',
+	'track_cdnurlssl',
+	'force_protocol'
+);
+
+$settings = array (
+	'name',
+	'site_id',
+	'noscript_code',
+	'tracking_code',
+	'last_tracking_code_update',
+	'dashboard_revision'
+);
 
 global $wpdb;
 
 if (function_exists('is_multisite') && is_multisite()) {
-	delete_site_option('wp-piwik_global-settings');
-	$aryBlogs = $wpdb->get_results('SELECT blog_id FROM '.$wpdb->blogs.' ORDER BY blog_id');
+	if ( !wp_is_large_network() )
+		$aryBlogs = wp_get_sites ( array('limit' => $limit, 'offset' => $page?($page - 1) * $limit:null));
+	else {
+		if ($limit && $page) 
+			$queryLimit = 'LIMIT '.(int) (($page - 1) * $limit).','.(int) $limit.' ';
+		$aryBlogs = $wpdb->get_results('SELECT blog_id FROM '.$wpdb->blogs.' '.$queryLimit.'ORDER BY blog_id', ARRAY_A);
+	}
+
 	if (is_array($aryBlogs))
-		foreach ($aryBlogs as $aryBlog)
-			delete_blog_option($aryBlog->blog_id, 'wp-piwik_settings');
+		foreach ($aryBlogs as $aryBlog) {
+			foreach ($settings as $key) {
+				delete_blog_option($aryBlog['blog_id'], 'wp-piwik-'.$key);
+			}
+			switch_to_blog($aryBlog['blog_id']);
+			$wpdb->query("DELETE FROM $wpdb->postmeta WHERE meta_key LIKE 'wp-piwik_%'");
+			$wpdb->query("DELETE FROM $wpdb->options WHERE option_name LIKE '_transient_wp-piwik_%'");
+			$wpdb->query("DELETE FROM $wpdb->options WHERE option_name LIKE '_transient_timeout_wp-piwik_%'");
+			restore_current_blog();
+		}
+	foreach ($globalSettings as $key)
+		delete_site_option('wp-piwik_global-'.$key);
+	delete_site_option('wp-piwik-manually');
+	delete_site_option('wp-piwik-notices');
 }
 
-delete_option('wp-piwik_global-settings');
-delete_option('wp-piwik_settings');
\ No newline at end of file
+foreach ($settings as $key)
+	delete_option('wp-piwik-'.$key);
+	
+foreach ($globalSettings as $key)
+	delete_option('wp-piwik_global-'.$key);
+
+delete_option('wp-piwik-manually');
+delete_option('wp-piwik-notices');
+
+$wpdb->query("DELETE FROM $wpdb->postmeta WHERE meta_key LIKE 'wp-piwik-%'");
+$wpdb->query("DELETE FROM $wpdb->options WHERE option_name LIKE '_transient_wp-piwik_%'");
+$wpdb->query("DELETE FROM $wpdb->options WHERE option_name LIKE '_transient_timeout_wp-piwik_%'");
\ No newline at end of file
diff --git a/wp-content/plugins/wp-piwik/update/2015051101.php b/wp-content/plugins/wp-piwik/update/2015051101.php
new file mode 100644
index 0000000000000000000000000000000000000000..a476e08391386f9b0e440943c13d7ff53ee42c8c
--- /dev/null
+++ b/wp-content/plugins/wp-piwik/update/2015051101.php
@@ -0,0 +1,41 @@
+<?php
+
+// Get & delete old version's options
+if (self::$settings->checkNetworkActivation ()) {
+	$oldGlobalOptions = get_site_option ( 'wp-piwik_global-settings', array () );
+	delete_site_option('wp-piwik_global-settings');
+} else {
+	$oldGlobalOptions = get_option ( 'wp-piwik_global-settings', array () );
+	delete_option('wp-piwik_global-settings');
+}
+
+$oldOptions = get_option ( 'wp-piwik_settings', array () );
+delete_option('wp-piwik_settings');
+	
+if (self::$settings->checkNetworkActivation ()) {
+	global $wpdb;
+	$aryBlogs = \WP_Piwik\Settings::getBlogList();
+	if (is_array($aryBlogs))
+		foreach ($aryBlogs as $aryBlog) {
+			$oldOptions = get_blog_option ( $aryBlog['blog_id'], 'wp-piwik_settings', array () );
+			if (!$this->isConfigured())
+				foreach ( $oldOptions as $key => $value )
+					self::$settings->setOption ( $key, $value, $aryBlog['blog_id'] );
+			delete_blog_option($aryBlog['blog_id'], 'wp-piwik_settings');
+		}
+}
+
+if (!$this->isConfigured()) {
+	if (!$oldGlobalOptions['add_tracking_code']) $oldGlobalOptions['track_mode'] = 'disabled';
+	elseif (!$oldGlobalOptions['track_mode']) $oldGlobalOptions['track_mode'] = 'default';
+	elseif ($oldGlobalOptions['track_mode'] == 1) $oldGlobalOptions['track_mode'] = 'js';
+	elseif ($oldGlobalOptions['track_mode'] == 2) $oldGlobalOptions['track_mode'] = 'proxy';
+
+	// Store old values in new settings
+	foreach ( $oldGlobalOptions as $key => $value )
+		self::$settings->setGlobalOption ( $key, $value );
+	foreach ( $oldOptions as $key => $value )
+		self::$settings->setOption ( $key, $value );
+}
+
+self::$settings->save ();
\ No newline at end of file
diff --git a/wp-content/plugins/wp-piwik/update/90001.php b/wp-content/plugins/wp-piwik/update/90001.php
index af42fa4fb99cb7870fef2c9edd900eec021186c1..39625e023c188ea2692c6b51c424a1fa43e14df9 100644
--- a/wp-content/plugins/wp-piwik/update/90001.php
+++ b/wp-content/plugins/wp-piwik/update/90001.php
@@ -1,13 +1,9 @@
-<?php
-$aryWPMUConfig = get_site_option('wpmu-piwik_global-settings',false);
-if (is_plugin_active_for_network('wp-piwik/wp-piwik.php') && $aryWPMUConfig) {
-	foreach ($aryWPMUConfig as $key => $value)
-		self::$settings->setGlobalOption($key, $value);
-	delete_site_option('wpmu-piwik_global-settings');
-	self::$settings->setGlobalOption('auto_site_config', true);
-} else self::$settings->setGlobalOption('auto_site_config', false);
-self::$settings->setGlobalOption('dashboard_seo', false);
-self::$settings->setGlobalOption('stats_seo', false);
-self::$settings->setGlobalOption('track_404', self::$settings->getOption('track_404'));
-self::$settings->setGlobalOption('track_compress', false);
-self::$settings->setGlobalOption('track_post', false);
\ No newline at end of file
+<?php
+$aryWPMUConfig = get_site_option ( 'wpmu-piwik_global-settings', false );
+if (self::$settings->checkNetworkActivation () && $aryWPMUConfig) {
+	foreach ( $aryWPMUConfig as $key => $value )
+		self::$settings->setGlobalOption ( $key, $value );
+	delete_site_option ( 'wpmu-piwik_global-settings' );
+	self::$settings->setGlobalOption ( 'auto_site_config', true );
+} else
+	self::$settings->setGlobalOption ( 'auto_site_config', false );
\ No newline at end of file
diff --git a/wp-content/plugins/wp-piwik/update/90801.php b/wp-content/plugins/wp-piwik/update/90801.php
index ec3490fab22b866d22240774ac8ce81f7deb095c..f15a00d73996a440154163a89a8b3fe87f8c4499 100644
--- a/wp-content/plugins/wp-piwik/update/90801.php
+++ b/wp-content/plugins/wp-piwik/update/90801.php
@@ -1,7 +1,5 @@
-<?php
-self::$settings->setGlobalOption('track_search', false);
-self::$settings->setGlobalOption('connection_timeout', 5);
-if (self::$settings->getGlobalOption('track_compress'))
-	self::$settings->setGlobalOption('track_mode', 1);
-else 
-	self::$settings->setGlobalOption('track_mode', 0);
\ No newline at end of file
+<?php
+if (self::$settings->getGlobalOption ( 'track_compress' ))
+	self::$settings->setGlobalOption ( 'track_mode', 1 );
+else
+	self::$settings->setGlobalOption ( 'track_mode', 0 );
\ No newline at end of file
diff --git a/wp-content/plugins/wp-piwik/update/91006.php b/wp-content/plugins/wp-piwik/update/91006.php
index 0dd2bc8c4af08b8dc4676f01114754d92e0d311b..04b1a2b7e7158212ec9b13d450706a9675021f25 100644
--- a/wp-content/plugins/wp-piwik/update/91006.php
+++ b/wp-content/plugins/wp-piwik/update/91006.php
@@ -1,3 +1,10 @@
-<?php
-$aryRemoveOptions = array('wp-piwik_siteid','wp-piwik_404','wp-piwik_scriptupdate','wp-piwik_dashboardid','wp-piwik_jscode');
-foreach ($aryRemoveOptions as $strRemoveOption) delete_option($strRemoveOption);
\ No newline at end of file
+<?php
+$aryRemoveOptions = array (
+		'wp-piwik_siteid',
+		'wp-piwik_404',
+		'wp-piwik_scriptupdate',
+		'wp-piwik_dashboardid',
+		'wp-piwik_jscode' 
+);
+foreach ( $aryRemoveOptions as $strRemoveOption )
+	delete_option ( $strRemoveOption );
\ No newline at end of file
diff --git a/wp-content/plugins/wp-piwik/wp-piwik.php b/wp-content/plugins/wp-piwik/wp-piwik.php
index 1cd9c58b4f38a4eb0847a3b4cd2f33d7baed332b..ca80847f230f84b0bb408c45304ee02f71517341 100755
--- a/wp-content/plugins/wp-piwik/wp-piwik.php
+++ b/wp-content/plugins/wp-piwik/wp-piwik.php
@@ -1,1533 +1,77 @@
-<?php
-/*
-Plugin Name: WP-Piwik
-
-Plugin URI: http://wordpress.org/extend/plugins/wp-piwik/
-
-Description: Adds Piwik stats to your dashboard menu and Piwik code to your wordpress header.
-
-Version: 0.9.9.12
-Author: Andr&eacute; Br&auml;kling
-Author URI: http://www.braekling.de
-
-****************************************************************************************** 
-	Copyright (C) 2009-2014 Andre Braekling (email: webmaster@braekling.de)
-
-	This program is free software: you can redistribute it and/or modify
-	it under the terms of the GNU General Public License as published by
-	the Free Software Foundation, either version 3 of the License, or
-	at your option) any later version.
-
-	This program is distributed in the hope that it will be useful,
-	but WITHOUT ANY WARRANTY; without even the implied warranty of
-	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-	GNU General Public License for more details.
-
-	You should have received a copy of the GNU General Public License
-	along with this program.  If not, see <http://www.gnu.org/licenses/>.
-*******************************************************************************************/
-
-if (!function_exists ('add_action')) {
-	header('Status: 403 Forbidden');
-	header('HTTP/1.1 403 Forbidden');
-	exit();
-}
-
-//require_once(ABSPATH.'wp-includes/pluggable.php');
-
-if (!class_exists('wp_piwik')) {
-class wp_piwik {
-
-	private static
-		$intRevisionId = 93000,
-		$strVersion = '0.9.9.12',
-		$blog_id,
-		$intDashboardID = 30,
-		$strPluginBasename = NULL,
-		$bolJustActivated = false,
-		$logger,
-		$settings;
-				
-	private
-		$intStatsPage = NULL,
-		$bolNetwork = false,
-		$aryAttributes = array(),
-		$strResult = '';
-
-	public function __construct() {
-		global $blog_id;
-		self::$blog_id = (isset($blog_id)?$blog_id:'n/a');
-		$this->openLogger();
-		$this->openSettings();
-		$this->setup();
-		$this->addFilters();
-		$this->addActions();
-		$this->addShortcodes();
-		self::$settings->save();
-	}
-
-	public function __destruct() {
-		$this->closeLogger();
-	}
-
-	private function setup() {
-		self::$strPluginBasename = plugin_basename(__FILE__);
-		register_activation_hook(__FILE__, array($this, 'installPlugin'));
-		if ($this->isUpdated())
-			$this->upgradePlugin();
-		if ($this->isConfigSubmitted())
-			$this->applySettings();
-		if ($this->isPHPMode())
-			self::definePiwikConstants();
-		$this->loadLanguage();
-	}
-	
-	private function addActions() {
-		add_action('admin_menu', array($this, 'buildAdminMenu'));
-		add_action('admin_post_save_wp-piwik_stats', array(&$this, 'onStatsPageSaveChanges'));
-		add_action('load-post.php', array(&$this, 'postMetaboxes'));
-		add_action('load-post-new.php', array(&$this, 'postMetaboxes'));
-		if ($this->isNetworkMode())
-			add_action('network_admin_menu', array($this, 'buildNetworkAdminMenu'));
-		if ($this->isDashboardActive())
-			add_action('wp_dashboard_setup', array($this, 'extendWordPressDashboard'));
-		if ($this->isToolbarActive()) {
-			add_action(is_admin()?'admin_head':'wp_head', array($this, 'loadToolbarRequirements'));
-			add_action('admin_bar_menu', array(&$this, 'extendWordPressToolbar'), 1000);
-		}
-		if ($this->isTrackingActive()) {
-			add_action(self::$settings->getGlobalOption('track_codeposition') == 'footer'?'wp_footer':'wp_head', array($this, 'addJavascriptCode'));
-			if ($this->isAddNoScriptCode())
-				add_action('wp_footer', array($this, 'addNoscriptCode'));
-			if ($this->isAdminTrackingActive())
-				add_action('admin_head', array($this, 'addAdminHeaderTracking'));
-		}
-		if (self::$settings->getGlobalOption('add_post_annotations'))
-			add_action('transition_post_status', array($this, 'onPostStatusTransition'),10,3);
-	}
-
-	private function addFilters() {
-		add_filter('plugin_row_meta', array($this, 'setPluginMeta'), 10, 2);
-		add_filter('screen_layout_columns', array(&$this, 'onScreenLayoutColumns'), 10, 2);
-		if ($this->isTrackingActive()) {
-			if ($this->isTrackFeed()) {
-				add_filter('the_excerpt_rss', array(&$this, 'addFeedTracking'));
-				add_filter('the_content', array(&$this, 'addFeedTracking'));
-			}
-			if ($this->isAddFeedCampaign())
-				add_filter('post_link', array(&$this, 'addFeedCampaign'));
-		}
-	}
-		
-	private function addShortcodes() {
-		if ($this->isAddShortcode())
-			add_shortcode('wp-piwik', array(&$this, 'shortcode'));
-	}
-	
-	private function loadLanguage() {
-		load_plugin_textdomain('wp-piwik', false, dirname(self::$strPluginBasename)."/languages/");
-	}
-			
-	function installPlugin() {
-		self::$logger->log('Running WP-Piwik installation');
-		add_action('admin_notices', array($this, 'updateMessage'));
-		self::$bolJustActivated = true;
-		self::$settings->setGlobalOption('revision', self::$intRevisionId);
-		self::$settings->setGlobalOption('last_settings_update', time());
-	}
-
-	static function uninstallPlugin() {
-		self::$logger->log('Running WP-Piwik uninstallation');
-		if (!defined('WP_UNINSTALL_PLUGIN'))
-			exit();
-		self::$settings->resetSettings(true);
-	}
-
-	function upgradePlugin() {
-		self::$logger->log('Upgrade WP-Piwik to '.self::$strVersion);
-		add_action('admin_notices', array($this, 'updateMessage'));
-		$patches = glob(dirname(__FILE__).DIRECTORY_SEPARATOR.'update'.DIRECTORY_SEPARATOR.'*.php');
-		if (is_array($patches)) {
-			sort($patches);
-			foreach ($patches as $patch) {
-				$patchVersion = (int) pathinfo($patch, PATHINFO_FILENAME);
-				if ($patchVersion && self::$settings->getGlobalOption('revision') < $patchVersion)
-					self::includeFile('update'.DIRECTORY_SEPARATOR.$patchVersion);
-			} 
-		}
-		$this->installPlugin();	  
-	}
-
-	function updateMessage() {
-		$text = sprintf(__('%s %s installed.', 'wp-piwik'), self::$settings->getGlobalOption('plugin_display_name'), self::$strVersion);
-		$notice = (!self::isConfigured()?
-			__('Next you should connect to Piwik','wp-piwik'):
-			__('Please validate your configuration','wp-piwik')
-		);
-		$link = sprintf('<a href="'.getSettingsURL.'?page=%s">%s</a>', self::$strPluginBasename, __('Settings', 'wp-piwik'));
-		printf('<div class="updated fade"><p>%s<strong>%s:</strong> %s: %s</p></div>', $text, __('Important', 'wp-piwik'), $notice, $link);
-	}
-	
-	function getSettingsURL() {
-		return (self::$settings->checkNetworkActivation()?'settings':'options-general').'.php';
-	}
-
-	private function updateTrackingCode() {
-		if (!self::$settings->getOption('site_id') || !self::$settings->getOption('tracking_code'))
-			$this->addPiwikSite();
-		if ($this->isCurrentTrackingCode()) {
-			self::$settings->setOption('tracking_code', $this->callPiwikAPI('SitesManager.getJavascriptTag'));
-			self::$settings->save();
-		}
-	}
-
-	/* -- </REFACTORED><OLD> -- */
-		
-	function addJavascriptCode() {
-		if ($this->isHiddenUser()) {
-			self::$logger->log('Do not add tracking code to site header (user should not be tracked) Blog ID: '.self::$blog_id.' Site ID: '.self::$settings->getOption('site_id'));
-			return;
-		}
-		$this->updateTrackingCode();
-		
-		// Change code if 404
-		if (is_404() && self::$settings->getGlobalOption('track_404')) {
-			self::$logger->log('Apply 404 changes. Blog ID: '.self::$blog_id.' Site ID: '.self::$settings->getOption('site_id'));
-			$strTrackingCode = str_replace("_paq.push(['trackPageView']);", "_paq.push(['setDocumentTitle', '404/URL = '+String(document.location.pathname+document.location.search).replace(/\//g,'%2f') + '/From = ' + String(document.referrer).replace(/\//g,'%2f')]);\n_paq.push(['trackPageView']);", self::$settings->getOption('tracking_code'));
-		}
-		// Change code if search result
-		elseif (is_search() && self::$settings->getGlobalOption('track_search')) {
-			self::$logger->log('Apply search tracking changes. Blog ID: '.self::$blog_id.' Site ID: '.self::$settings->getOption('site_id'));
-			$objSearch = new WP_Query("s=" . get_search_query() . '&showposts=-1'); 
-			$intResultCount = $objSearch->post_count;
-			$strTrackingCode = str_replace("_paq.push(['trackPageView']);", "_paq.push(['trackSiteSearch','".get_search_query()."', false, ".$intResultCount."]);\n_paq.push(['trackPageView']);", self::$settings->getOption('tracking_code'));
-		// Use default tracking code
-		} else 
-			$strTrackingCode = self::$settings->getOption('tracking_code');
-		// Send tracking code
-		self::$logger->log('Add tracking code. Blog ID: '.self::$blog_id.' Site ID: '.self::$settings->getOption('site_id'));
-		// Add custom variables if set:
-		if (is_single()) {
-			$strCustomVars = '';
-			for ($i = 1; $i <= 5; $i++) {
-				// Get post ID
-				$intID = get_the_ID();
-				// Get key
-				$strMetaKey = get_post_meta($intID, 'wp-piwik_custom_cat'.$i, true);
-				// Get value
-				$strMetaVal = get_post_meta($intID, 'wp-piwik_custom_val'.$i, true);
-				if (!empty($strMetaKey) && !empty($strMetaVal))
-					$strCustomVars .= "_paq.push(['setCustomVariable',".$i.", '".$strMetaKey."', '".$strMetaVal."', 'page']);\n";
-			}
-			if (!empty($strCustomVars)) $strTrackingCode = str_replace("_paq.push(['trackPageView']);", $strCustomVars."_paq.push(['trackPageView']);", $strTrackingCode);
-		}
-		echo $strTrackingCode;
-		$strName = get_bloginfo('name');
-		if (self::$settings->getOption('name') != $strName)
-			$this->updatePiwikSite();
-	}
-
-	function addNoscriptCode() {
-		// Hotfix: Custom capability problem with WP multisite
-		if (is_multisite()) {
-			foreach (self::$settings->getGlobalOption('capability_stealth') as $strKey => $strVal)
-				if ($strVal && current_user_can($strKey))
-					return;
-		// Don't add tracking code?
-		} elseif (current_user_can('wp-piwik_stealth')) return;
-		// Send tracking code
-		self::$logger->log('Add noscript code. Blog ID: '.self::$blog_id.' Site ID: '.self::$settings->getOption('site_id'));
-		echo self::$settings->getOption('noscript_code')."\n";
-	}
-	
-	/**
-	 * Shortcode function
-	 **/
-	 
-	function shortcode($aryAttributes) {
-		$this->aryAttributes = shortcode_atts(
-			array(
-				'title' => '',
-				'module' => 'overview',
-				'period' => 'day',
-				'date' => 'yesterday',
-				'limit' => 10,
-				'width' => '100%',
-				'height' => '200px',
-				'language' => 'en',
-				'range' => false,
-				'key' => 'sum_daily_nb_uniq_visitors'
-			), $aryAttributes);
-		switch ($this->aryAttributes['module']) {
-			case 'opt-out':
-				$this->strResult = '<iframe frameborder="no" width="'.$this->aryAttributes['width'].'" height="'.$this->aryAttributes['height'].'" src="'.self::$settings->getGlobalOption('piwik_url').'index.php?module=CoreAdminHome&action=optOut&language='.$this->aryAttributes['language'].'"></iframe>';
-			break;
-			case 'post':
-				self::includeFile('shortcodes/post');
-			break;
-			case 'overview':
-			default:
-				self::includeFile('shortcodes/overview');
-		}
-		return $this->strResult;
-	}
-	
-	/**
-	 * Add metaboxes to posts
-	 */
-	function postMetaboxes() {
-		if (self::$settings->getGlobalOption('add_customvars_box')) {
-			add_action('add_meta_boxes', array(&$this, 'postAddMetaboxes'));
-			add_action('save_post', array(&$this, 'postCustomvarsSave'), 10, 2);
-		}
-		// Show per post stats if enabled
-		if (self::$settings->getGlobalOption('perpost_stats')) {
-			$this->includeFile('classes/WP_Piwik_MetaBox_PerPost_Stats');
-			add_action('add_meta_boxes', array(new WP_Piwik_MetaBox_PerPost_Stats($this->subClassConfig()), 'addMetabox'));
-		}
-	}
-
-	/**
-	 * Create post meta boxes
-	 */
-	function postAddMetaboxes() {
-		add_meta_box(
-			'wp-piwik_post_customvars',
-			__('Piwik Custom Variables', 'wp-piwik'),
-			array(&$this, 'postCustomvars'),
-			'post',
-			'side',
-			'default'
-		);
-	}
-	
-	/**
-	 * Display custom variables meta box
-	 */
-	function postCustomvars($objPost, $objBox ) {
-		wp_nonce_field(basename( __FILE__ ), 'wp-piwik_post_customvars_nonce'); ?>
-	 	<table>
-	 		<tr><th></th><th><?php _e('Name', 'wp-piwik'); ?></th><th><?php _e('Value', 'wp-piwik'); ?></th></tr>
-	 	<?php for($i = 1; $i <= 5; $i++) { ?>
-		 	<tr>
-		 		<th><label for="wp-piwik_customvar1"><?php echo $i; ?>: </label></th>
-		 		<td><input class="widefat" type="text" name="wp-piwik_custom_cat<?php echo $i; ?>" value="<?php echo esc_attr(get_post_meta($objPost->ID, 'wp-piwik_custom_cat'.$i, true ) ); ?>" size="200" /></td>
-		 		<td><input class="widefat" type="text" name="wp-piwik_custom_val<?php echo $i; ?>" value="<?php echo esc_attr(get_post_meta($objPost->ID, 'wp-piwik_custom_val'.$i, true ) ); ?>" size="200" /></td>
-		 	</tr>
-		<?php } ?>
-		</table>
-		<p><?php _e('Set custom variables for a page view', 'wp-piwik'); ?>. (<a href="http://piwik.org/docs/custom-variables/"><?php _e('More information', 'wp-piwik'); ?></a>.)</p>
-		<?php 
-	}
-
-	/**
-	 * Save post custom variables
-	 */
-	function postCustomvarsSave($intID, $objPost) {
-		// Verify the nonce before proceeding.
-		if (!isset( $_POST['wp-piwik_post_customvars_nonce'] ) || !wp_verify_nonce( $_POST['wp-piwik_post_customvars_nonce'], basename( __FILE__ ) ) )
-			return $intID;
-		// Get post type object
-		$objPostType = get_post_type_object($objPost->post_type);
-		// Check if the current user has permission to edit the post.
-		if (!current_user_can($objPostType->cap->edit_post, $intID))
-			return $intID;
-		$aryNames = array('cat', 'val');
-		for ($i = 1; $i <= 5; $i++)
-			for ($j = 0; $j <= 1; $j++) {
-				// Get data
-				$strMetaVal = (isset($_POST['wp-piwik_custom_'.$aryNames[$j].$i])?htmlentities($_POST['wp-piwik_custom_'.$aryNames[$j].$i]):'');
-				// Create key
-				$strMetaKey = 'wp-piwik_custom_'.$aryNames[$j].$i;
-				// Get the meta value of the custom field key
-				$strCurVal = get_post_meta($intID, $strMetaKey, true);
-				// Add meta val:
-				if ($strMetaVal && '' == $strCurVal)
-					add_post_meta($intID, $strMetaKey, $strMetaVal, true);
-				// Update meta val:
-				elseif ($strMetaVal && $strMetaVal != $strCurVal)
-					update_post_meta($intID, $strMetaKey, $strMetaVal);
-				// Delete meta val:
-				elseif (''==$strMetaVal && $strCurVal)
-					delete_post_meta($intID, $strMetaKey, $strCurVal);
-			}
-	}
-
-	/**
-	 * Add pages to admin menu
-	 */
-	function buildAdminMenu() {
-		// Show stats dashboard page if WP-Piwik is configured
-		if (self::isConfigured()) {
-			// Add dashboard page
-			$this->intStatsPage = add_dashboard_page(
-				__('Piwik Statistics', 'wp-piwik'), 
-				self::$settings->getGlobalOption('plugin_display_name'), 
-				'wp-piwik_read_stats',
-				'wp-piwik_stats',
-				array($this, 'showStats')
-			);
-			// Add required scripts
-			add_action('admin_print_scripts-'.$this->intStatsPage, array($this, 'loadStatsScripts'));
-			// Add required styles
-			add_action('admin_print_styles-'.$this->intStatsPage, array($this, 'addAdminStyle'));
-			// Add required header tags
-			add_action('admin_head-'.$this->intStatsPage, array($this, 'addAdminHeaderStats'));
-			// Stats page onload callback
-			add_action('load-'.$this->intStatsPage, array(&$this, 'onloadStatsPage'));
-		}
-		if (!self::$settings->checkNetworkActivation()) {
-			// Add options page
-			$intOptionsPage = add_options_page(
-				self::$settings->getGlobalOption('plugin_display_name'),
-				self::$settings->getGlobalOption('plugin_display_name'), 
-				'activate_plugins',
-				__FILE__,
-				array($this, 'showSettings')
-			);
-			// Add required scripts
-			add_action('admin_print_scripts-'.$this->intStatsPage, array($this, 'loadSettingsScripts'));
-			// Add required header tags
-			add_action('admin_head-'.$intOptionsPage, array($this, 'addAdminHeaderSettings'));
-			// Add styles required by options page
-			add_action('admin_print_styles-'.$intOptionsPage, array($this, 'addAdminStyle'));
-		}
-	}
-
-	/**
-	 * Add pages to network admin menu
-	 */
-	function buildNetworkAdminMenu() {
-		// Show stats dashboard page if WP-Piwik is configured
-		if (self::isConfigured()) {
-			// Add dashboard page
-			$this->intStatsPage = add_dashboard_page(
-				__('Piwik Statistics', 'wp-piwik'), 
-				self::$settings->getGlobalOption('plugin_display_name'), 
-				'manage_sites',
-				'wp-piwik_stats',
-				array($this, 'showStatsNetwork')
-			);
-			// Add required scripts
-			add_action('admin_print_scripts-'.$this->intStatsPage, array($this, 'loadStatsScripts'));
-			// Add required styles
-			add_action('admin_print_styles-'.$this->intStatsPage, array($this, 'addAdminStyle'));
-			// Add required header tags
-			add_action('admin_head-'.$this->intStatsPage, array($this, 'addAdminHeaderStats'));
-			// Stats page onload callback
-			add_action('load-'.$this->intStatsPage, array(&$this, 'onloadStatsPage'));
-		}
-		$intOptionsPage = add_submenu_page(
-			'settings.php',
-			self::$settings->getGlobalOption('plugin_display_name'),
-			self::$settings->getGlobalOption('plugin_display_name'),
-			'manage_sites',
-			__FILE__,
-			array($this, 'showSettings')
-		);
-		
-		// Add styles required by options page
-		add_action('admin_print_styles-'.$intOptionsPage, array($this, 'addAdminStyle'));
-		add_action('admin_head-'.$intOptionsPage, array($this, 'addAdminHeaderSettings'));
-	}
-	
-	/**
-	 * Support two columns 
-	 * seen in Heiko Rabe's metabox demo plugin 
-	 * 
-	 * @see http://tinyurl.com/5r5vnzs 
-	 */ 
-	function onScreenLayoutColumns($aryColumns, $strScreen) {		
-		if ($strScreen == $this->intStatsPage)
-			$aryColumns[$this->intStatsPage] = 3;
-		return $aryColumns;
-	}
-	
-	/**
-	 * Add widgets to WordPress dashboard
-	 */
-	function extendWordPressDashboard() {
-		// Is user allowed to see stats?
-		if (current_user_can('wp-piwik_read_stats')) {
-			// TODO: Use bitmask here
-			// Add data widget if enabled
-			if (self::$settings->getGlobalOption('dashboard_widget'))
-				$this->addWordPressDashboardWidget();
-			// Add chart widget if enabled
-			if (self::$settings->getGlobalOption('dashboard_chart')) {				
-				// Add required scripts
-				add_action('admin_print_scripts-index.php', array($this, 'loadStatsScripts'));
-				// Add required styles
-				add_action('admin_print_styles-index.php', array($this, 'addAdminStyle'));
-				// Add required header tags
-				add_action('admin_head-index.php', array($this, 'addAdminHeaderStats'));
-				$this->addWordPressDashboardChart();
-			}
-			// Add SEO widget if enabled
-			if (self::$settings->getGlobalOption('dashboard_seo'))
-				$this->addWordPressDashboardSEO();
-		}
-	}
-	
-	/**
-	 * Add widgets to WordPress Toolbar
-	 */
-	public function extendWordPressToolbar(&$objToolbar) {
-		// Is user allowed to see stats?
-		if (current_user_can('wp-piwik_read_stats') && is_admin_bar_showing()) {
-			$aryUnique = $this->callPiwikAPI('VisitsSummary.getUniqueVisitors','day','last30',null);
-			if (!is_array($aryUnique)) $aryUnique = array();
-			$strGraph = '<script type="text/javascript">';	
-			$strGraph .= "var \$jSpark = jQuery.noConflict();\$jSpark(function() {var piwikSparkVals=[".implode(',',$aryUnique)."];\$jSpark('.wp-piwik_dynbar').sparkline(piwikSparkVals, {type: 'bar', barColor: '#ccc', barWidth:2});});";
-			$strGraph .= '</script>';
-			$strGraph .= '<span class="wp-piwik_dynbar">Loading...</span>';
-			$objToolbar->add_menu(array(
-				'id' => 'wp-piwik_stats',
-				'title' => $strGraph,
-				'href' => admin_url().'?page=wp-piwik_stats'
-			));
-		}		
-	}
-
-	/**
-	 * Add a data widget to the WordPress dashboard
-	 */
-	function addWordPressDashboardWidget() {
-		$aryConfig = array(
-			'params' => array('period' => 'day','date'  => self::$settings->getGlobalOption('dashboard_widget'),'limit' => null),
-			'inline' => true,			
-		);
-		$strFile = 'overview';
-		add_meta_box(
-				'wp-piwik_stats-dashboard-overview', 
-				self::$settings->getGlobalOption('plugin_display_name').' - '.__(self::$settings->getGlobalOption('dashboard_widget'), 'wp-piwik'), 
-				array(&$this, 'createDashboardWidget'), 
-				'dashboard', 
-				'side', 
-				'high',
-				array('strFile' => $strFile, 'aryConfig' => $aryConfig)
-			);
-	}
-	
-	/**
-	 * Add a visitor chart to the WordPress dashboard
-	 */
-	function addWordPressDashboardChart() {
-		$aryConfig = array(
-			'params' => array('period' => 'day','date'  => 'last30','limit' => null),
-			'inline' => true,			
-		);
-		$strFile = 'visitors';
-		add_meta_box(
-				'wp-piwik_stats-dashboard-chart', 
-				self::$settings->getGlobalOption('plugin_display_name').' - '.__('Visitors', 'wp-piwik'), 
-				array(&$this, 'createDashboardWidget'), 
-				'dashboard', 
-				'side', 
-				'high',
-				array('strFile' => $strFile, 'aryConfig' => $aryConfig)
-			);
-	}	
-
-	/**
-	 * Add a SEO widget to the WordPress dashboard
-	 */
-	function addWordPressDashboardSEO() {
-		$aryConfig = array(
-			'params' => array('period' => 'day','date'  => 'today','limit' => null),
-			'inline' => true,			
-		);
-		$strFile = 'seo';
-		add_meta_box(
-				'wp-piwik_stats-dashboard-seo', 
-				self::$settings->getGlobalOption('plugin_display_name').' - '.__('SEO', 'wp-piwik'), 
-				array(&$this, 'createDashboardWidget'), 
-				'dashboard', 
-				'side', 
-				'high',
-				array('strFile' => $strFile, 'aryConfig' => $aryConfig)
-			);
-	}
-
-	/**
-	 * Add plugin meta links to plugin details
-	 * 
-	 * @see http://wpengineer.com/1295/meta-links-for-wordpress-plugins/
-	 */
-	function setPluginMeta($strLinks, $strFile) {
-		// Get plugin basename
-		$strPlugin = plugin_basename(__FILE__);
-		// Add link just to this plugin's details
-		if ($strFile == self::$strPluginBasename) 
-			return array_merge(
-				$strLinks,
-				array(
-					sprintf('<a href="'.(self::$settings->checkNetworkActivation()?'settings':'options-general').'.php?page=%s">%s</a>', self::$strPluginBasename, __('Settings', 'wp-piwik'))
-				)
-			);
-		// Don't affect other plugins details
-		return $strLinks;
-	}
-
-	/**
-	 * Load required scripts to stats page
-	 */
-	function loadStatsScripts() {
-		// Load WP-Piwik script
-		wp_enqueue_script('wp-piwik', $this->getPluginURL().'js/wp-piwik.js', array(), self::$strVersion, true);
-		// Load jqPlot
-		wp_enqueue_script('wp-piwik-jqplot',$this->getPluginURL().'js/jqplot/wp-piwik.jqplot.js',array('jquery'));
-	}
-
-	/**
-	 * Load scripts required by Toolbar graphs
-	 */
-	function loadToolbarRequirements() {
-		// Only load if user is allowed to see stats
-		if (current_user_can('wp-piwik_read_stats') && is_admin_bar_showing()) {
-			// Load Sparklines
-			wp_enqueue_script('wp-piwik-sparkline',$this->getPluginURL().'js/sparkline/jquery.sparkline.min.js',array('jquery'),'2.1.1');
-			// Load CSS
-			wp_enqueue_style('wp-piwik', $this->getPluginURL().'css/wp-piwik-spark.css');
-		}
-	}
-
-	/**
-	 * Load required scripts to settings page
-	 */
-	function loadSettingsScripts() {
-		wp_enqueue_script('jquery');
-	}
-
-	/**
-	 * Load required styles to admin pages
-	 */
-	function addAdminStyle() {
-		// Load WP-Piwik styles
-		wp_enqueue_style('wp-piwik', $this->getPluginURL().'css/wp-piwik.css',array(),self::$strVersion);
-	}
-
-	/**
-	 * Add tracking code to admin header
-	 */
-	function addAdminHeaderTracking() {
-		$this->site_header();	
-	}
-
-	/**
-	 * Add tracking image to feeds
-	 **/
-	function addFeedTracking($content) {
-		global $post;
-		if(is_feed()) {
-			self::$logger->log('Add tracking image to feed entry.');
-			if (!self::$settings->getOption('site_id'))
-				self::addPiwikSite();
-			$title = the_title(null,null,false);
-			$posturl = get_permalink($post->ID);
-			$urlref = get_bloginfo('rss2_url');
-			$url = self::$settings->getGlobalOption('piwik_url');
-			if (substr($url, -10, 10) == '/index.php')
-				$url = str_replace('/index.php', '/piwik.php', $url);
-			else $url .= 'piwik.php';
-			$trackingImage = $url.'?idsite='.self::$settings->getOption('site_id').'&amp;rec=1'.
-				'&amp;url='.urlencode($posturl).
-				'&amp;action_name='.urlencode($title).
-				'&amp;urlref='.urlencode($urlref);
-			$content .= '<img src="'.$trackingImage.'" style="border:0;width:0;height:0" width="0" height="0" alt="" />';
-		}
-		return $content;
-	}
-
-	/**
-	 * Add tracking image to feeds
-	 **/
-	function addFeedCampaign($permalink) {
-		global $post;
-		if(is_feed()) {
-			self::$logger->log('Add campaign to feed permalink.');
-			$sep = (strpos($permalink, '?') === false?'?':'&');
-			$permalink .= $sep.'pk_campaign='.urlencode(self::$settings->getGlobalOption('track_feed_campaign')).'&pk_kwd='.urlencode($post->post_name);
-		}
-		return $permalink;
-	}
-
-	function addPiwikAnnotation($postID) {
-		$this->callPiwikAPI('Annotations.add', '', date('Y-m-d'), '', false, false, 'PHP', '', false, 'Published: '.get_post($postID)->post_title.' - URL: '.get_permalink($postID));
-	}
-
-	/**
-	 * Add required header tags to stats page
-	 */
-	function addAdminHeaderStats() {
-		// Load jqPlot IE compatibility script
-		echo '<!--[if IE]><script language="javascript" type="text/javascript" src="'.$this->getPluginURL().'js/jqplot/excanvas.min.js"></script><![endif]-->';
-		// Load jqPlot styles
-		echo '<link rel="stylesheet" href="'.$this->getPluginURL().'js/jqplot/jquery.jqplot.min.css" type="text/css"/>';
-		echo '<script type="text/javascript">var $j = jQuery.noConflict();</script>';
-	}
-
-	/**
-	 * Add required header tags to settings page
-	 */
-	function addAdminHeaderSettings() {
-		echo '<script type="text/javascript">var $j = jQuery.noConflict();</script>';
-		echo '<script type="text/javascript">/* <![CDATA[ */(function() {var s = document.createElement(\'script\');var t = document.getElementsByTagName(\'script\')[0];s.type = \'text/javascript\';s.async = true;s.src = \'//api.flattr.com/js/0.6/load.js?mode=auto\';t.parentNode.insertBefore(s, t);})();/* ]]> */</script>';
-	}
-	
-	/**
-	 * Get this plugin's URL
-	 */
-	function getPluginURL() {
-		// Return plugins URL + /wp-piwik/
-		return trailingslashit(plugins_url().'/wp-piwik/');
-	}
-
-	/**
-	 * Call REST API
-	 * 
-	 * @param $strURL Remote file URL
-	 */
-	function callREST($strURL) {
-		$strPiwikURL = self::$settings->getGlobalOption('piwik_url');
-		if (substr($strPiwikURL, -1, 1) != '/') $strPiwikURL .= '/';
-		$strURL = $strPiwikURL.'?module=API'.$strURL;
-		// Use cURL if available	
-		if (function_exists('curl_init')) {
-			// Init cURL
-			$c = curl_init($strURL);
-			// Disable SSL peer verification if asked to
-			curl_setopt($c, CURLOPT_SSL_VERIFYPEER, !self::$settings->getGlobalOption('disable_ssl_verify'));
-			// Set user agent
-			curl_setopt($c, CURLOPT_USERAGENT, self::$settings->getGlobalOption('piwik_useragent')=='php'?ini_get('user_agent'):self::$settings->getGlobalOption('piwik_useragent_string'));
-			// Configure cURL CURLOPT_RETURNTRANSFER = 1
-			curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);
-			// Configure cURL CURLOPT_HEADER = 0 
-			curl_setopt($c, CURLOPT_HEADER, 0);
-			// Set cURL timeout
-			curl_setopt($c, CURLOPT_TIMEOUT, self::$settings->getGlobalOption('connection_timeout'));
-			$httpProxyClass = new WP_HTTP_Proxy();
-			if ($httpProxyClass->is_enabled() && $httpProxyClass->send_through_proxy($strURL)) {
-				curl_setopt($c, CURLOPT_PROXY, $httpProxyClass->host());
-				curl_setopt($c, CURLOPT_PROXYPORT, $httpProxyClass->port());
-				if ($httpProxyClass->use_authentication())
-					curl_setopt($c, CURLOPT_PROXYUSERPWD, $httpProxyClass->username().':'.$httpProxyClass->password());
-			}
-			// Get result
-			$strResult = curl_exec($c);
-			// Close connection			
-			curl_close($c);
-		// cURL not available but url fopen allowed
-		} elseif (ini_get('allow_url_fopen')) {
-			// Set timeout
-			$resContext = stream_context_create(array('http'=>array('timeout' => self::$settings->getGlobalOption('connection_timeout'))));
-			// Get file using file_get_contents
-			$strResult = @file_get_contents($strURL, false, $strContext);
-		// Error: Not possible to get remote file
-		} else $strResult = serialize(array(
-				'result' => 'error',
-				'message' => 'Remote access to Piwik not possible. Enable allow_url_fopen or CURL.'
-			));
-		// Return result
-		return $strResult;
-	}
-	
-	/**
-	 * Call PHP API
-	 * 
-	 * @param $strParams API call params
-	 */
-	function callPHP($strParams) {
-		if (!defined('PIWIK_INCLUDE_PATH'))
-			return;
-		if (PIWIK_INCLUDE_PATH === FALSE)
-			return serialize(array('result' => 'error', 'message' => __('Could not resolve','wp-piwik').' &quot;'.htmlentities(self::$settings->getGlobalOption('piwik_path')).'&quot;: '.__('realpath() returns false','wp-piwik').'.'));
-		if (!headers_sent()) {
-			$current = ob_get_contents();
-			ob_end_clean();
-			ob_start();
-		}
-		if (file_exists(PIWIK_INCLUDE_PATH . "/index.php"))
-			require_once PIWIK_INCLUDE_PATH . "/index.php";
-		if (file_exists(PIWIK_INCLUDE_PATH . "/core/API/Request.php"))
-			require_once PIWIK_INCLUDE_PATH . "/core/API/Request.php";
-		if (class_exists('Piwik\FrontController'))
-			Piwik\FrontController::getInstance()->init();
-		else serialize(array('result' => 'error', 'message' => __('Class Piwik\FrontController does not exists.','wp-piwik')));
-		if (class_exists('Piwik\API\Request'))
-			$objRequest = new Piwik\API\Request($strParams);
-		else serialize(array('result' => 'error', 'message' => __('Class Piwik\API\Request does not exists.','wp-piwik')));
-		if (!headers_sent()) {
-			ob_end_clean();
-			ob_start;
-			echo $current;
-		}
-		return $objRequest->process();		
-	}
-
-	/**
-	 * Get remote file
-	 * 
-	 * @param String $strURL Remote file URL
-	 */
-	function getRemoteFile($strURL, $blogURL = '') {
-		if (self::$settings->getGlobalOption('piwik_mode') == 'php')
-			return $this->callPHP($strURL.($blogURL?'&url='.$blogURL:''));
-		else
-			return $this->callREST($strURL.($blogURL?'&url='.urlencode($blogURL):''));
-	}
-
-	/**
-	 * Add a new site to Piwik if a new blog was requested,
-	 * or get its ID by URL
-	 */ 
-	function addPiwikSite() {
-		if (isset($_GET['wpmu_show_stats']) && self::$settings->checkNetworkActivation()) {
-			self::$logger->log('Switch blog ID: '.(int) $_GET['wpmu_show_stats']);
-			switch_to_blog((int) $_GET['wpmu_show_stats']);
-		}
-		self::$logger->log('Get the blog\'s site ID by URL: '.get_bloginfo('url'));
-		// Check if blog URL already known
-		$strURL = '&method=SitesManager.getSitesIdFromSiteUrl';
-		$strURL .= '&format=PHP';
-		$strURL .= '&token_auth='.self::$settings->getGlobalOption('piwik_token');
-		$aryResult = unserialize($this->getRemoteFile($strURL, get_bloginfo('url')));
-		if (!empty($aryResult) && isset($aryResult[0]['idsite'])) {
-			self::$settings->setOption('site_id', (int) $aryResult[0]['idsite']);
-		// Otherwise create new site
-		} elseif (self::isConfigured() && !empty($strURL)) {
-			self::$logger->log('Blog not known yet - create new site');
-			$strName = get_bloginfo('name');
-			if (empty($strName)) $strName = get_bloginfo('url');
-			self::$settings->setOption('name', $strName);
-			$strURL .= '&method=SitesManager.addSite';
-			$strURL .= '&siteName='.urlencode($strName).'&urls='.urlencode(get_bloginfo('url'));
-			$strURL .= '&format=PHP';
-			$strURL .= '&token_auth='.self::$settings->getGlobalOption('piwik_token');
-			$strResult = unserialize($this->getRemoteFile($strURL, get_bloginfo('url')));
-			if (!empty($strResult)) self::$settings->setOption('site_id', (int) $strResult);
-		}
-		// Store new data if site created
-		if (self::$settings->getOption('site_id')) {
-			self::$logger->log('Get the site\'s tracking code');
-			self::$settings->setOption('tracking_code', $this->callPiwikAPI('SitesManager.getJavascriptTag'));
-		} else self::$settings->getOption('tracking_code', '');
-		self::$settings->save();
-		if (isset($_GET['wpmu_show_stats']) && self::$settings->checkNetworkActivation()) {
-			self::$logger->log('Back to current blog');
-			restore_current_blog();
-		}
-		return array('js' => self::$settings->getOption('tracking_code'), 'id' => self::$settings->getOption('site_id'));
-	}
-
-	/**
-	 * Update a site 
-	 */ 
-	function updatePiwikSite() {
-		$strBlogURL = get_bloginfo('url');
-		// Check if blog URL already known
-		$strName = get_bloginfo('name');
-		if (empty($strName)) $strName = $strBlogURL;
-		self::$settings->setOption('name', $strName);
-		$strURL = '&method=SitesManager.updateSite';
-		$strURL .= '&idSite='.self::$settings->getOption('site_id');
-		$strURL .= '&siteName='.urlencode($strName).'&urls='.urlencode($strBlogURL);
-		$strURL .= '&format=PHP';
-		$strURL .= '&token_auth='.self::$settings->getGlobalOption('piwik_token');
-		$strResult = unserialize($this->getRemoteFile($strURL));		
-		// Store new data
-		self::$settings->getOption('tracking_code', $this->callPiwikAPI('SitesManager.getJavascriptTag'));
-		self::$settings->save();
-	}
-
-	/**
-	 * Apply configured Tracking Code changes
-	 */
-	function applyJSCodeChanges($strCode) {
-		self::$logger->log('Apply tracking code changes.');
-		self::$settings->setOption('last_tracking_code_update', time());
-		$strCode = html_entity_decode($strCode);
-		// Change code if js/index.php should be used
-		if (self::$settings->getGlobalOption('track_mode') == 1) {
-			$strCode = str_replace('piwik.js', 'js/', $strCode);
-			$strCode = str_replace('piwik.php', 'js/', $strCode);
-		} elseif (self::$settings->getGlobalOption('track_mode') == 2) {
-			$strCode = str_replace('piwik.js', 'piwik.php', $strCode);
-			$strURL = str_replace('https://', '://', self::$settings->getGlobalOption('piwik_url'));
-			$strURL = str_replace('http://', '://', $strURL);
-			$strProxy = str_replace('https://', '://', plugins_url('wp-piwik'));
-			$strProxy = str_replace('http://', '://', $strProxy);
-			$strProxy .= '/';
-			$strCode = str_replace($strURL, $strProxy, $strCode);
-		}
-		$strCode = str_replace('//";','/"',$strCode);
-		if (self::$settings->getGlobalOption('track_cdnurl')||self::$settings->getGlobalOption('track_cdnurlssl')) {
-			$strCode = str_replace("var d=doc", "var ucdn=(('https:' == document.location.protocol) ? 'https://".(self::$settings->getGlobalOption('track_cdnurlssl')?self::$settings->getGlobalOption('track_cdnurlssl'):self::$settings->getGlobalOption('track_cdnurl'))."/' : 'http://".(self::$settings->getGlobalOption('track_cdnurl')?self::$settings->getGlobalOption('track_cdnurl'):self::$settings->getGlobalOption('track_cdnurlssl'))."/');\nvar d=doc", $strCode);
-			$strCode = str_replace("g.src=u+", "g.src=ucdn+", $strCode);
-		}
-		// Change code if POST is forced to be used
-		if (self::$settings->getGlobalOption('track_post') && self::$settings->getGlobalOption('track_mode') != 2) $strCode = str_replace("_paq.push(['trackPageView']);", "_paq.push(['setRequestMethod', 'POST']);\n_paq.push(['trackPageView']);", $strCode);
-		// Change code if cookies are disabled
-		if (self::$settings->getGlobalOption('disable_cookies')) $strCode = str_replace("_paq.push(['trackPageView']);", "_paq.push(['disableCookies']);\n_paq.push(['trackPageView']);", $strCode);
-		if (self::$settings->getGlobalOption('limit_cookies')) $strCode = str_replace("_paq.push(['trackPageView']);", "_paq.push(['setVisitorCookieTimeout', '".self::$settings->getGlobalOption('limit_cookies_visitor')."']);\n_paq.push(['setSessionCookieTimeout', '".self::$settings->getGlobalOption('limit_cookies_session')."']);\n_paq.push(['trackPageView']);", $strCode);
-		// Store <noscript> code
-		$aryNoscript = array();
-		preg_match('/<noscript>(.*)<\/noscript>/', $strCode, $aryNoscript);
-		if (isset($aryNoscript[0])) {
-			if (self::$settings->getGlobalOption('track_nojavascript'))
-				$aryNoscript[0] = str_replace('?idsite', '?rec=1&idsite', $aryNoscript[0]);
-			self::$settings->setOption('noscript_code', $aryNoscript[0]);
-		}
-		if (self::$settings->getGlobalOption('track_datacfasync'))
-			$strCode = str_replace('<script type', '<script data-cfasync="false" type', $strCode);
-		// Remove <noscript> code
-		$strCode = preg_replace('/<noscript>(.*)<\/noscript>/', '', $strCode);
-		// Return code without empty lines
-		return preg_replace('/\s+(\r\n|\r|\n)/', '$1', $strCode);
-	}
-	
-	/**
-	 * Create a WordPress dashboard widget
-	 */
-	function createDashboardWidget($objPost, $aryMetabox) {
-		// Create description and ID
-		$strDesc = $strID = '';
-		$aryConfig = $aryMetabox['args']['aryConfig'];
-		foreach ($aryConfig['params'] as $strParam)
-			if (!empty($strParam)) {
-				$strDesc .= $strParam.', ';
-				$strID .= '_'.$strParam;
-			}
-		// Remove dots from filename
-		$strFile = str_replace('.', '', $aryMetabox['args']['strFile']);
-		// Finalize configuration
-		$aryConf = array_merge($aryConfig, array(
-			'id' => $strFile.$strID,
-			'desc' => substr($strDesc, 0, -2)));
-		// Include widget file
-		if (file_exists(dirname(__FILE__).DIRECTORY_SEPARATOR.'dashboard/'.$strFile.'.php'))
-			include(dirname(__FILE__).DIRECTORY_SEPARATOR.'dashboard/'.$strFile.'.php');
- 	}
-
-	/**
-	 * Call Piwik's API
-	 */
-	function callPiwikAPI($strMethod, $strPeriod='', $strDate='', $intLimit='',$bolExpanded=false, $intId = false, $strFormat = 'PHP', $strPageURL = '', $useCache = true, $strNote = '') {
-		// Create unique cache key
-		$strKey = 'wp-piwik_'.md5($strMethod.'_'.$strPeriod.'_'.$strDate.'_'.$intLimit.'_'.self::$settings->getGlobalOption('piwik_token').'_'.self::$settings->getGlobalOption('piwik_url').'_'.$intId.'_'.$strPageURL);
-		// Call API if data not cached
-		if (self::$settings->getGlobalOption('cache') && $useCache) {
-			$result = get_transient($strKey);
-			self::$logger->log('API method: '.$strMethod.' Fetch call from cache: '.$strKey);
-		} else $result = false;
-		if ($strMethod == "SitesManager.getSitesWithAtLeastViewAccess" || false === $result) {
-			$strToken = self::$settings->getGlobalOption('piwik_token');
-			// If multisite stats are shown, maybe the super admin wants to show other blog's stats.
-			if (self::$settings->checkNetworkActivation() && function_exists('is_super_admin') && function_exists('wp_get_current_user') && is_super_admin() && isset($_GET['wpmu_show_stats'])) {
-				$aryOptions = get_blog_option((int) $_GET['wpmu_show_stats'], 'wp-piwik_settings' , array());
-				if (!empty($aryOptions) && isset($aryOptions['site_id']))
-					$intSite = $aryOptions['site_id'];
-				else $intSite = self::$settings->getOption('site_id');
-			// Otherwise use the current site's id.
-			} else {
-				if (!self::$settings->getOption('site_id'))
-					self::addPiwikSite();
-				$intSite = self::$settings->getOption('site_id');
-			}
-			//die($intSite);
-			// Create error message if WP-Piwik isn't configured
-			if (!self::isConfigured()) {
-				$result = array(
-					'result' => 'error',
-					'message' => 'Piwik URL/path or auth token not set.'
-				);
-				return $result;
-			}
-			// Build URL			
-			$strURL = '&method='.$strMethod;
-			$strURL .= '&idSite='.(int)$intSite.'&period='.$strPeriod.'&date='.$strDate;
-			$strURL .= '&filter_limit='.$intLimit;
-			$strURL .= '&token_auth='.$strToken;
-			$strURL .= '&expanded='.$bolExpanded;
-			$strURL .= '&format='.$strFormat;
-			$strURL .= ($strPageURL?'&pageUrl='.urlencode($strPageURL):'');
-			$strURL .= ($strNote?'&note='.urlencode($strNote):'');
-			if (self::$settings->getGlobalOption('track_across') && $strMethod == 'SitesManager.getJavascriptTag') {
-				$strURL .= '&mergeSubdomains=1';
-			}
-			if (self::$settings->getGlobalOption('track_across_alias') && $strMethod == 'SitesManager.getJavascriptTag') {
-				$strURL .= '&mergeAliasUrls=1';
-			}
-			// Fetch data if site exists
-			if (!empty($intSite) || $strMethod=='SitesManager.getSitesWithAtLeastViewAccess') {
-				self::$logger->log('API method: '.$strMethod.' API call: '.$strURL);
-				$strResult = (string) $this->getRemoteFile($strURL, get_bloginfo('url'));			
-				$result = ($strFormat == 'PHP'?unserialize($strResult):$strResult);
-				// Apply tracking code changes if configured
-				if ($strMethod == 'SitesManager.getJavascriptTag' && !empty($result)) {
-					$result = is_string($result)?$this->applyJSCodeChanges($result):'<!-- WP-Piwik ERROR: Tracking code not availbale -->'."\n";
-				}
-			// Otherwise return error message
-			} else $result = array('result' => 'error', 'message' => 'Unknown site/blog.');
-			if (
-					$strMethod != 'SitesManager.getJavascriptTag' &&
-					$strDate != 'today' && $strDate != date('Ymd') && substr($strDate, 0, 4) != 'last' &&
-					self::$settings->getGlobalOption('cache') &&
-					!(isset($result['result']) && $result['result'] == 'error')&&
-					!empty($result)
-				) set_transient($strKey, $result, WEEK_IN_SECONDS);
-		}	
-		return $result;	
-	}
- 	
-	/* TODO: Add post stats
-	 * function display_post_unique_column($aryCols) {
-	 * 	$aryCols['wp-piwik_unique'] = __('Unique');
-	 *		return $aryCols;
-	 * }
-	 *
-	 * function display_post_unique_content($strCol, $intID) {
-	 *	if( $strCol == 'wp-piwik_unique' ) {
-	 *	}
-	 * }
-	 */
-
-	function onloadStatsPage() {
-		wp_enqueue_script('common');
-		wp_enqueue_script('wp-lists');
-		wp_enqueue_script('postbox');
-		$strToken = self::$settings->getGlobalOption('piwik_token');
-		$strPiwikURL = self::$settings->getGlobalOption('piwik_url');
-		$aryDashboard = array();
-		// Set default configuration
-		$arySortOrder = array(
-			'side' => array(
-				'overview' => array(__('Overview', 'wp-piwik'), 'day', 'yesterday'),
-				'seo' => array(__('SEO', 'wp-piwik'), 'day', 'yesterday'),
-				'pages' => array(__('Pages', 'wp-piwik'), 'day', 'yesterday'),
-				'keywords' => array(__('Keywords', 'wp-piwik'), 'day', 'yesterday', 10),
-				'websites' => array(__('Websites', 'wp-piwik'), 'day', 'yesterday', 10),
-				'plugins' => array(__('Plugins', 'wp-piwik'), 'day', 'yesterday'),
-				'search' => array(__('Site Search Keywords', 'wp-piwik'), 'day', 'yesterday', 10),
-				'noresult' => array(__('Site Search without Results', 'wp-piwik'), 'day', 'yesterday', 10),
-			),
-			'normal' => array(
-				'visitors' => array(__('Visitors', 'wp-piwik'), 'day', 'last30'),
-				'browsers' => array(__('Browser', 'wp-piwik'), 'day', 'yesterday'),
-				'browserdetails' => array(__('Browser Details', 'wp-piwik'), 'day', 'yesterday'),
-				'screens' => array(__('Resolution', 'wp-piwik'), 'day', 'yesterday'),
-				'systems' => array(__('Operating System', 'wp-piwik'), 'day', 'yesterday')
-			)
-		);
-		// Don't show SEO stats if disabled
-		if (!self::$settings->getGlobalOption('stats_seo'))
-			unset($arySortOrder['side']['seo']);
-			
-		foreach ($arySortOrder as $strCol => $aryWidgets) {
-			if (is_array($aryWidgets)) foreach ($aryWidgets as $strFile => $aryParams) {
-					$aryDashboard[$strCol][$strFile] = array(
-						'params' => array(
-							'title'	 => (isset($aryParams[0])?$aryParams[0]:$strFile),
-							'period' => (isset($aryParams[1])?$aryParams[1]:''),
-							'date'   => (isset($aryParams[2])?$aryParams[2]:''),
-							'limit'  => (isset($aryParams[3])?$aryParams[3]:'')
-						)
-					);
-					if (isset($_GET['date']) && preg_match('/^[0-9]{8}$/', $_GET['date']) && $strFile != 'visitors')
-						$aryDashboard[$strCol][$strFile]['params']['date'] = $_GET['date'];
-					elseif ($strFile != 'visitors') 
-						$aryDashboard[$strCol][$strFile]['params']['date'] = self::$settings->getGlobalOption('default_date');
-			}
-		}
-		$intSideBoxCnt = $intContentBox = 0;
-		foreach ($aryDashboard['side'] as $strFile => $aryConfig) {
-			$intSideBoxCnt++;
-			if (preg_match('/(\d{4})(\d{2})(\d{2})/', $aryConfig['params']['date'], $aryResult))
-				$strDate = $aryResult[1]."-".$aryResult[2]."-".$aryResult[3];
-			else $strDate = $aryConfig['params']['date'];
-			add_meta_box(
-				'wp-piwik_stats-sidebox-'.$intSideBoxCnt, 
-				$aryConfig['params']['title'].' '.($aryConfig['params']['title']!='SEO'?__($strDate, 'wp-piwik'):''), 
-				array(&$this, 'createDashboardWidget'), 
-				$this->intStatsPage, 
-				'side', 
-				'core',
-				array('strFile' => $strFile, 'aryConfig' => $aryConfig)
-			);
-		}
-		foreach ($aryDashboard['normal'] as $strFile => $aryConfig) {
-			if (preg_match('/(\d{4})(\d{2})(\d{2})/', $aryConfig['params']['date'], $aryResult))
-				$strDate = $aryResult[1]."-".$aryResult[2]."-".$aryResult[3];
-			else $strDate = $aryConfig['params']['date'];
-			$intContentBox++;
-			add_meta_box(
-				'wp-piwik_stats-contentbox-'.$intContentBox, 
-				$aryConfig['params']['title'].' '.($aryConfig['params']['title']!='SEO'?__($strDate, 'wp-piwik'):''),
-				array(&$this, 'createDashboardWidget'), 
-				$this->intStatsPage, 
-				'normal', 
-				'core',
-				array('strFile' => $strFile, 'aryConfig' => $aryConfig)
-			);
-		}
-	}
-	
-	// Open stats page as network admin
-	function showStatsNetwork() {
-		$this->bolNetwork = true;
-		$this->showStats();
-	}	
-	
-	function showStats() {
-		// Disabled time limit if required
-		if (self::$settings->getGlobalOption('disable_timelimit') && self::$settings->getGlobalOption('disable_timelimit')) 
-			set_time_limit(0);
-		//we need the global screen column value to be able to have a sidebar in WordPress 2.8
-		global $screen_layout_columns;
-		if (empty($screen_layout_columns)) $screen_layout_columns = 2;
-/***************************************************************************/ ?>
-<div id="wp-piwik-stats-general" class="wrap">
-	<?php screen_icon('options-general'); ?>
-	<h2><?php echo (self::$settings->getGlobalOption('plugin_display_name') == 'WP-Piwik'?'Piwik '.__('Statistics', 'wp-piwik'):self::$settings->getGlobalOption('plugin_display_name')); ?></h2>
-<?php /************************************************************************/
-		if (self::$settings->checkNetworkActivation() && function_exists('is_super_admin') && is_super_admin() && $this->bolNetwork) {
-			if (isset($_GET['wpmu_show_stats'])) {
-				switch_to_blog((int) $_GET['wpmu_show_stats']);
-				// TODO OPTIMIZE
-			} else {
-				$this->includeFile('settings/sitebrowser');
-				return;
-			}
-			echo '<p>'.__('Currently shown stats:').' <a href="'.get_bloginfo('url').'">'.(int) $_GET['wpmu_show_stats'].' - '.get_bloginfo('name').'</a>.'.' <a href="?page=wp-piwik_stats">Show site overview</a>.</p>'."\n";			
-			echo '</form>'."\n";
-		}
-/***************************************************************************/ ?>
-	<form action="admin-post.php" method="post">
-		<?php wp_nonce_field('wp-piwik_stats-general'); ?>
-		<?php wp_nonce_field('closedpostboxes', 'closedpostboxesnonce', false ); ?>
-		<?php wp_nonce_field('meta-box-order', 'meta-box-order-nonce', false ); ?>
-		<input type="hidden" name="action" value="save_wp-piwik_stats_general" />		
-		<div id="dashboard-widgets" class="metabox-holder columns-<?php echo $screen_layout_columns; ?><?php echo 2 <= $screen_layout_columns?' has-right-sidebar':''; ?>">
-				<div id='postbox-container-1' class='postbox-container'>
-					<?php $meta_boxes = do_meta_boxes($this->intStatsPage, 'normal', null); ?>	
-				</div>
-				
-				<div id='postbox-container-2' class='postbox-container'>
-					<?php do_meta_boxes($this->intStatsPage, 'side', null); ?>
-				</div>
-				
-				<div id='postbox-container-3' class='postbox-container'>
-					<?php do_meta_boxes($this->intStatsPage, 'column3', null); ?>
-				</div>
-				
-		</div>
-	</form>
-</div>
-<script type="text/javascript">
-	//<![CDATA[
-	jQuery(document).ready( function($) {
-		// close postboxes that should be closed
-		$('.if-js-closed').removeClass('if-js-closed').addClass('closed');
-		// postboxes setup
-		postboxes.add_postbox_toggles('<?php echo $this->intStatsPage; ?>');
-	});
-	//]]>
-</script>
-<?php /************************************************************************/
-		if (self::$settings->checkNetworkActivation() && function_exists('is_super_admin') && is_super_admin()) {
-			restore_current_blog();
-		}
-	}
-
-	/* Stats page changes by POST submit
-	   seen in Heiko Rabe's metabox demo plugin 
-	   http://tinyurl.com/5r5vnzs */
-	function onStatsPageSaveChanges() {
-		//user permission check
-		if ( !current_user_can('manage_options') )
-			wp_die( __('Cheatin&#8217; uh?') );			
-		//cross check the given referer
-		check_admin_referer('wp-piwik_stats');
-		//process here your on $_POST validation and / or option saving
-		//lets redirect the post request into get request (you may add additional params at the url, if you need to show save results
-		wp_redirect($_POST['_wp_http_referer']);		
-	}
-
-	/**
-	 * Add tabs to settings page
-	 * See http://wp.smashingmagazine.com/2011/10/20/create-tabs-wordpress-settings-pages/
-	 */
-	function showSettingsTabs($bolFull = true, $strCurr = 'homepage') {
-		$aryTabs = ($bolFull?array(
-			'homepage' => __('Home','wp-piwik'),
-			'piwik' => __('Piwik Settings','wp-piwik'),
-			'tracking' => __('Tracking','wp-piwik'),
-			'views' => __('Statistics','wp-piwik'),
-			'support' => __('Support','wp-piwik'),
-			'credits' => __('Credits','wp-piwik')
-		):array(
-			'piwik' => __('Piwik Settings','wp-piwik'),
-			'support' => __('Support','wp-piwik'),
-			'credits' => __('Credits','wp-piwik')
-		));
-		if (empty($strCurr)) $strCurr = 'homepage';
-		elseif (!isset($aryTabs[$strCurr]) && $strCurr != 'sitebrowser') $strCurr = 'piwik';
-		echo '<div id="icon-themes" class="icon32"><br></div>';
-		echo '<h2 class="nav-tab-wrapper">';
-		foreach($aryTabs as $strTab => $strName) {
-			$strClass = ($strTab == $strCurr?' nav-tab-active':'');
-			echo '<a class="nav-tab'.$strClass.'" href="?page=wp-piwik/wp-piwik.php&tab='.$strTab.'">'.$strName.'</a>';
-		}
-		echo '</h2>';
-		return $strCurr;
-	}
-		
-	/**
-	 * Apply & store new settings
-	 */
-	function applySettings() {
-		$strTab = (isset($_GET['tab'])?$_GET['tab']:'homepage');
-		self::$logger->log('Apply changes: '.$strTab);
-		switch ($strTab) {
-			case 'views':
-				self::$settings->setGlobalOption('plugin_display_name', (!empty($_POST['wp-piwik_displayname'])?htmlentities($_POST['wp-piwik_displayname']):'WP-Piwk'));
-				self::$settings->setGlobalOption('dashboard_widget',(isset($_POST['wp-piwik_dbwidget'])?$_POST['wp-piwik_dbwidget']:0));
-				self::$settings->setGlobalOption('dashboard_chart',(isset($_POST['wp-piwik_dbchart'])?$_POST['wp-piwik_dbchart']:false));
-				self::$settings->setGlobalOption('dashboard_seo',(isset($_POST['wp-piwik_dbseo'])?$_POST['wp-piwik_dbseo']:false));
-				self::$settings->setGlobalOption('stats_seo',(isset($_POST['wp-piwik_statsseo'])?$_POST['wp-piwik_statsseo']:false));
-				self::$settings->setGlobalOption('piwik_shortcut', (isset($_POST['wp-piwik_piwiklink'])?$_POST['wp-piwik_piwiklink']:false));
-				self::$settings->setGlobalOption('default_date', (isset($_POST['wp-piwik_default_date'])?$_POST['wp-piwik_default_date']:'yesterday'));
-				self::$settings->setGlobalOption('capability_read_stats', (isset($_POST['wp-piwik_displayto'])?$_POST['wp-piwik_displayto']:array()));
-				self::$settings->setGlobalOption('disable_timelimit', (isset($_POST['wp-piwik_disabletimelimit'])?$_POST['wp-piwik_disabletimelimit']:false));
-				self::$settings->setGlobalOption('toolbar', (isset($_POST['wp-piwik_toolbar'])?$_POST['wp-piwik_toolbar']:false));
-				self::$settings->setGlobalOption('shortcodes', (isset($_POST['wp-piwik_shortcodes'])?$_POST['wp-piwik_shortcodes']:false));
-				self::$settings->setGlobalOption('perpost_stats', (isset($_POST['wp-piwik_perpost'])?$_POST['wp-piwik_perpost']:false));
-			break;
-			case 'tracking':
-				self::$settings->setGlobalOption('add_tracking_code', (isset($_POST['wp-piwik_addjs'])?$_POST['wp-piwik_addjs']:false));
-				self::$settings->setGlobalOption('track_404', (isset($_POST['wp-piwik_404'])?$_POST['wp-piwik_404']:false));
-				self::$settings->setGlobalOption('track_search', (isset($_POST['wp-piwik_search'])?$_POST['wp-piwik_search']:false));
-				self::$settings->setGlobalOption('track_mode', (isset($_POST['wp-piwik_trackingmode'])?(int)$_POST['wp-piwik_trackingmode']:0));
-				self::$settings->setGlobalOption('track_post', (isset($_POST['wp-piwik_reqpost'])?$_POST['wp-piwik_reqpost']:false));
-				self::$settings->setGlobalOption('track_proxy', (isset($_POST['wp-piwik_proxy'])?$_POST['wp-piwik_proxy']:false));
-				self::$settings->setGlobalOption('track_cdnurl', trim(isset($_POST['wp-piwik_cdnurl'])?$_POST['wp-piwik_cdnurl']:''));				
-				self::$settings->setGlobalOption('track_cdnurlssl', trim(isset($_POST['wp-piwik_cdnurlssl'])?$_POST['wp-piwik_cdnurlssl']:self::$settings->getGlobalOption('track_cdnurl')));
-				self::$settings->setGlobalOption('track_noscript', (isset($_POST['wp-piwik_noscript'])?$_POST['wp-piwik_noscript']:false));
-				self::$settings->setGlobalOption('track_codeposition', (isset($_POST['wp-piwik_codeposition'])?$_POST['wp-piwik_codeposition']:'footer'));
-				self::$settings->setGlobalOption('track_nojavascript', (isset($_POST['wp-piwik_nojavascript'])?$_POST['wp-piwik_nojavascript']:false));
-				self::$settings->setGlobalOption('track_admin', (isset($_POST['wp-piwik_trackadmin'])?$_POST['wp-piwik_trackadmin']:false));
-				self::$settings->setGlobalOption('track_feed', (isset($_POST['wp-piwik_trackfeed'])?$_POST['wp-piwik_trackfeed']:false));
-				self::$settings->setGlobalOption('track_feed_goal', (isset($_POST['wp-piwik_trackfeed_goal'])&&!empty($_POST['wp-piwik_trackfeed_goal'])?(int)$_POST['wp-piwik_trackfeed_goal']:''));
-				self::$settings->setGlobalOption('track_feed_revenue', (isset($_POST['wp-piwik_trackfeed_revenue'])&&!empty($_POST['wp-piwik_trackfeed_revenue'])?(int)$_POST['wp-piwik_trackfeed_revenue']:''));
-				self::$settings->setGlobalOption('track_feed_campaign', (isset($_POST['wp-piwik_trackfeed_campaign'])?$_POST['wp-piwik_trackfeed_campaign']:'feed'));
-				self::$settings->setGlobalOption('track_feed_addcampaign', (isset($_POST['wp-piwik_trackfeed_addcampaign'])?$_POST['wp-piwik_trackfeed_addcampaign']:false));
-				self::$settings->setGlobalOption('track_datacfasync', (isset($_POST['wp-piwik_datacfasync'])?$_POST['wp-piwik_datacfasync']:false));
-				self::$settings->setGlobalOption('track_across', (isset($_POST['wp-piwik_track_across'])?$_POST['wp-piwik_track_across']:false));
-				self::$settings->setGlobalOption('track_across_alias', (isset($_POST['wp-piwik_track_across_alias'])?$_POST['wp-piwik_track_across_alias']:false));
-				self::$settings->setGlobalOption('add_post_annotations', (isset($_POST['wp-piwik_annotations'])?$_POST['wp-piwik_annotations']:false));
-				self::$settings->setGlobalOption('add_customvars_box', (isset($_POST['wp-piwik_customvars'])?$_POST['wp-piwik_customvars']:false));
-				self::$settings->setGlobalOption('capability_stealth', (isset($_POST['wp-piwik_filter'])?$_POST['wp-piwik_filter']:array()));
-				self::$settings->setGlobalOption('disable_cookies', (isset($_POST['wp-piwik_disable_cookies'])?$_POST['wp-piwik_disable_cookies']:false));
-				self::$settings->setGlobalOption('limit_cookies', (isset($_POST['wp-piwik_limit_cookies'])?$_POST['wp-piwik_limit_cookies']:false));
-				self::$settings->setGlobalOption('limit_cookies_visitor', (isset($_POST['wp-piwik_limit_cookies_visitor'])?(int)$_POST['wp-piwik_limit_cookies_visitor']:1209600));
-				self::$settings->setGlobalOption('limit_cookies_session', (isset($_POST['wp-piwik_limit_cookies_session'])?(int)$_POST['wp-piwik_limit_cookies_session']:0));
-				self::$settings->setOption('tracking_code', $this->callPiwikAPI('SitesManager.getJavascriptTag'));
-			break;
-			case 'piwik':
-				self::$settings->setGlobalOption('piwik_token', (isset($_POST['wp-piwik_token'])?$_POST['wp-piwik_token']:''));
-				self::$settings->setGlobalOption('piwik_url', self::checkURL((isset($_POST['wp-piwik_url'])?$_POST['wp-piwik_url']:'')));
-				self::$settings->setGlobalOption('piwik_path', (isset($_POST['wp-piwik_path']) && !empty($_POST['wp-piwik_path'])?realpath($_POST['wp-piwik_path']):''));
-				self::$settings->setGlobalOption('cache', (isset($_POST['wp-piwik_cache'])?$_POST['wp-piwik_cache']:false));
-				self::$settings->setGlobalOption('piwik_mode', (isset($_POST['wp-piwik_mode'])?$_POST['wp-piwik_mode']:'http'));
-				self::$settings->setGlobalOption('piwik_useragent', (isset($_POST['wp-piwik_useragent'])?$_POST['wp-piwik_useragent']:'php'));
-				self::$settings->setGlobalOption('connection_timeout', (isset($_POST['wp-piwik_timeout'])?(int)$_POST['wp-piwik_timeout']:5));
-				self::$settings->setGlobalOption('piwik_useragent_string', (isset($_POST['wp-piwik_useragent_string'])?$_POST['wp-piwik_useragent_string']:'WP-Piwik'));
-				self::$settings->setGlobalOption('disable_ssl_verify', (isset($_POST['wp-piwik_disable_ssl_verify'])?$_POST['wp-piwik_disable_ssl_verify']:false));
-				if (!self::$settings->checkNetworkActivation()) {
-					self::$settings->setGlobalOption('auto_site_config', (isset($_POST['wp-piwik_auto_site_config'])?$_POST['wp-piwik_auto_site_config']:false));
-					if (!self::$settings->getGlobalOption('auto_site_config'))
-						self::$settings->setOption('site_id', (isset($_POST['wp-piwik_siteid'])?$_POST['wp-piwik_siteid']:self::$settings->getOption('site_id')));
-				} else self::$settings->setGlobalOption('auto_site_config', true);
-			break;
-		}
-		if (self::$settings->getGlobalOption('auto_site_config') && self::isConfigured()) {
-			if (self::$settings->getGlobalOption('piwik_mode') == 'php' && !defined('PIWIK_INCLUDE_PATH')) 
-				self::definePiwikConstants();
-			$aryReturn = $this->addPiwikSite();
-			self::$settings->getOption('tracking_code', $aryReturn['js']);
-			self::$settings->getOption('site_id', $aryReturn['id']);
-		}
-		self::$settings->setGlobalOption('last_settings_update', time());
-	}
-
-	/**
-	 * Check & prepare URL
-	 */
-	static function checkURL($strURL) {
-		if (empty($strURL)) return '';
-		if (substr($strURL, -1, 1) != '/' && substr($strURL, -10, 10) != '/index.php') 
-			$strURL .= '/';
-		return $strURL;
-	}
-	
-	/**
-	 * Show settings page
-	 */
-	function showSettings() {
-		// Define globals and get request vars
-		global $pagenow;
-		$strTab = (isset($_GET['tab'])?$_GET['tab']:'homepage');
-		// Show update message if stats saved
-		if (isset($_POST['wp-piwik_settings_submit']) && $_POST['wp-piwik_settings_submit'] == 'Y')
-			echo '<div id="message" class="updated fade"><p>'.__('Changes saved','wp-piwik').'</p></div>';
-		// Show settings page title
-		echo '<div class="wrap"><h2>'.self::$settings->getGlobalOption('plugin_display_name').' '.__('Settings', 'wp-piwik').'</h2>';
-		// Show tabs
-		$strTab = $this->showSettingsTabs(self::isConfigured(), $strTab);
-		if ($strTab != 'sitebrowser') {
-/***************************************************************************/ ?>
-		<div class="wp-piwik-donate">
-			<p><strong><?php _e('Donate','wp-piwik'); ?></strong></p>
-			<p><?php _e('If you like WP-Piwik, you can support its development by a donation:', 'wp-piwik'); ?></p>
-			<script type="text/javascript">
-			/* <![CDATA[ */
-			window.onload = function() {
-        		FlattrLoader.render({
-            		'uid': 'flattr',
-            		'url': 'http://wp.local',
-            		'title': 'Title of the thing',
-            		'description': 'Description of the thing'
-				}, 'element_id', 'replace');
-			}
-			/* ]]> */
-			</script>
-			<div>
-				<a class="FlattrButton" style="display:none;" title="WordPress Plugin WP-Piwik" rel="flattr;uid:braekling;category:software;tags:wordpress,piwik,plugin,statistics;" href="https://www.braekling.de/wp-piwik-wpmu-piwik-wordpress">This WordPress plugin adds a Piwik stats site to your WordPress dashboard. It's also able to add the Piwik tracking code to your blog using wp_footer. You need a running Piwik installation and at least view access to your stats.</a>
-			</div>
-			<div>Paypal
-				<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
-					<input type="hidden" name="cmd" value="_s-xclick" />
-					<input type="hidden" name="hosted_button_id" value="6046779" />
-					<input type="image" src="https://www.paypal.com/en_GB/i/btn/btn_donateCC_LG.gif" name="submit" alt="PayPal - The safer, easier way to pay online." />
-					<img alt="" border="0" src="https://www.paypal.com/de_DE/i/scr/pixel.gif" width="1" height="1" />
-				</form>
-			</div>
-			<div>
-				<a href="http://www.amazon.de/gp/registry/wishlist/111VUJT4HP1RA?reveal=unpurchased&amp;filter=all&amp;sort=priority&amp;layout=standard&amp;x=12&amp;y=14"><?php _e('My Amazon.de wishlist', 'wp-piwik'); ?></a>
-			</div>
-			<div>
-				<?php _e('Please don\'t forget to vote the compatibility at the','wp-piwik'); ?> <a href="http://wordpress.org/extend/plugins/wp-piwik/">WordPress.org Plugin Directory</a>. 
-			</div>
-		</div>
-<?php /***************************************************************************/
-		}
-		echo '<form class="'.($strTab != 'sitebrowser'?'wp-piwik-settings':'').'" method="post" action="'.admin_url(($pagenow == 'settings.php'?'network/':'').$pagenow.'?page=wp-piwik/wp-piwik.php&tab='.$strTab).'">';
-		echo '<input type="hidden" name="action" value="save_wp-piwik_settings" />';
-		wp_nonce_field('wp-piwik_settings');
-		// Show settings
-		if (($pagenow == 'options-general.php' || $pagenow == 'settings.php') && $_GET['page'] == 'wp-piwik/wp-piwik.php') {
-			echo '<table class="wp-piwik-form-table form-table">';
-			// Get tab contents
-			require_once('settings/'.$strTab.'.php');				
-		// Show submit button
-			if (!in_array($strTab, array('homepage','credits','support','sitebrowser')))
-				echo '<tr><td><p class="submit" style="clear: both;padding:0;margin:0"><input type="submit" name="Submit"  class="button-primary" value="'.__('Save settings', 'wp-piwik').'" /><input type="hidden" name="wp-piwik_settings_submit" value="Y" /></p></td></tr>';
-			echo '</table>';
-		}
-		// Close form
-		echo '</form></div>';
-	}
-
-	/**
-	 * Check if SSL is used
-	 */
-	private static function isSSL() {
-		return (isset($_SERVER['HTTPS']) && !empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] != 'off');
-	}
-
-	/**
-	 * Show an error message extended by a support site link
-	 */
-	private static function showErrorMessage($strMessage) {
-		echo '<strong class="wp-piwik-error">'.__('An error occured', 'wp-piwik').':</strong> '.$strMessage.' [<a href="'.(self::$settings->checkNetworkActivation()?'network/settings':'options-general').'.php?page=wp-piwik/wp-piwik.php&tab=support">'.__('Support','wp-piwik').'</a>]';
-	}
-
-	/**
-	 * Read a RSS feed
-	 */
-	private static function readRSSFeed($strFeedURL, $intCount = 5) {
- 		$aryResult = array();
-		if (function_exists('simplexml_load_file') && !empty($strFeedURL)) {
-			$objXML = @simplexml_load_file($strFeedURL);
-			if (empty($strFeedURL) || !$objXML || !isset($objXML->channel[0]->item))
-				return array(array('title' => 'Can\'t read RSS feed.','url' => $strFeedURL));
- 			foreach($objXML->channel[0]->item as $objItem) {
-				if( $intCount-- == 0 ) break;
-				$aryResult[] = array('title' => $objItem->title[0], 'url' => $objItem->link[0]);
-			}
-		}
-		return $aryResult;
-	}
-
-	/**
-	 * Execute test script
-	 */
-	private static function loadTestscript() {
-		require_once('debug/testscript.php');
-	}
-	
-	/**
-	 * Get a blog's piwik ID
-	 */
-	public static function getSiteID($intBlogID = null) {
-		$intResult = self::$settings->getOption('site_id');
-		if (self::$settings->checkNetworkActivation() && !empty($intBlogID)) {
-			$aryResult = get_blog_option($intBlogID, 'wp-piwik_settings');
-			$intResult = $aryResult['site_id'];
-		}
-		return (is_int($intResult)?$intResult:'n/a');
-	}
-
-	public static function isConfigured() {
-		return (
-			self::$settings->getGlobalOption('piwik_token') 
-			&& (
-				(
-					(self::$settings->getGlobalOption('piwik_mode') == 'http') && (self::$settings->getGlobalOption('piwik_url'))
-				) || (
-					(self::$settings->getGlobalOption('piwik_mode') == 'php') && (self::$settings->getGlobalOption('piwik_path'))
-				)
-			)
-		);
-	}
-		
-	private function isUpdated() {
-		return self::$settings->getGlobalOption('revision') && self::$settings->getGlobalOption('revision') < self::$intRevisionId;
-	}
-	
-	private function isConfigSubmitted() {
-		return isset($_POST['action']) && $_POST['action'] == 'save_wp-piwik_settings';
-	}
-	
-	private function isPHPMode() {
-		return self::$settings->getGlobalOption('piwik_mode') && self::$settings->getGlobalOption('piwik_mode') == 'php';
-	}
-	
-	private function isNetworkMode() {
-		return self::$settings->checkNetworkActivation();
-	}
-	
-	private function isDashboardActive() {
-		return self::$settings->getGlobalOption('dashboard_widget') || self::$settings->getGlobalOption('dashboard_chart') || self::$settings->getGlobalOption('dashboard_seo');
-	}
-	
-	private function isToolbarActive() {
-		return self::$settings->getGlobalOption('toolbar');
-	}
-	
-	private function isTrackingActive() {
-		return self::$settings->getGlobalOption('add_tracking_code');
-	}
-	
-	private function isAdminTrackingActive() {
-		return self::$settings->getGlobalOption('track_admin');
-	}
-	
-	private function isAddNoScriptCode() {
-		return self::$settings->getGlobalOption('track_noscript');
-	}
-	
-	private function isTrackFeed() {
-		return self::$settings->getGlobalOption('track_feed');
-	}
-	
-	private function isAddFeedCampaign() {
-		return self::$settings->getGlobalOption('track_feed_addcampaign');
-	}
-	
-	private function isAddShortcode() {
-		return self::$settings->getGlobalOption('shortcodes');
-	}
-
-	private static function definePiwikConstants() {
-		if (!defined('PIWIK_INCLUDE_PATH')) {
-			@header('Content-type: text/xml');
-			define('PIWIK_INCLUDE_PATH', self::$settings->getGlobalOption('piwik_path'));
-			define('PIWIK_USER_PATH', self::$settings->getGlobalOption('piwik_path'));
-			define('PIWIK_ENABLE_DISPATCH', false);
-			define('PIWIK_ENABLE_ERROR_HANDLER', false);
-			define('PIWIK_ENABLE_SESSION_START', false);
-		}
-	}
-	
-	private function openLogger() {
-		switch (WP_PIWIK_ACTIVATE_LOGGER) {
-			case 2:
-				require_once('classes/WP_Piwik_Logger_File.php');
-				self::$logger = new WP_Piwik_Logger_File(__CLASS__);
-			break;
-			default:
-				require_once('classes/WP_Piwik_Logger_Dummy.php');
-				self::$logger = new WP_Piwik_Logger_Dummy(__CLASS__);
-		}
-	}
-
-	private function closeLogger() {
-		self::$logger = null;
-	}
-
-	private function openSettings() {
-		$this->includeFile('classes/WP_Piwik_Settings');
-		self::$settings = new WP_Piwik_Settings(self::$logger);
-	}
-
-	private function subClassConfig() {
-		return array(
-			'wp_piwik' => $this,
-			'logger' => self::$logger,
-			'settings' => self::$settings
-		);
-	}
-	
-	private function includeFile($strFile) {
-		self::$logger->log('Include '.$strFile.'.php');
-		if (file_exists(dirname(__FILE__).DIRECTORY_SEPARATOR.$strFile.'.php'))
-			include(dirname(__FILE__).DIRECTORY_SEPARATOR.$strFile.'.php');
-	}
-	
-	private function isHiddenUser() {
-		if (is_multisite())
-			foreach (self::$settings->getGlobalOption('capability_stealth') as $key => $val)
-				if ($val && current_user_can($key)) return true;
-		return current_user_can('wp-piwik_stealth');
-	}
-	
-	private function isCurrentTrackingCode() {
-		return (self::$settings->getOption('last_tracking_code_update') < self::$settings->getGlobalOption('last_settings_update'));
-	}
-	
-	function site_header() {
-		self::$logger->log('Using deprecated function site_header');
-		$this->addJavascriptCode();
-	}
-	
-	function site_footer() {
-		self::$logger->log('Using deprecated function site_footer');
-		$this->addNoscriptCode();
-	}
-	
-	public function onPostStatusTransition($newStatus, $oldStatus, $post) {
-		if ($newStatus == 'publish' && $oldStatus != 'publish' ) {
-			add_action('publish_post', array($this, 'addPiwikAnnotation'));
-		}
-	}
-	
-}
-}
-
-require_once(dirname(__FILE__).DIRECTORY_SEPARATOR.'config.php');
-
-if (class_exists('wp_piwik'))
-	$GLOBALS['wp_piwik'] = new wp_piwik();
-
-/* EOF */
\ No newline at end of file
+<?php
+/*
+Plugin Name: WP-Piwik
+
+Plugin URI: http://wordpress.org/extend/plugins/wp-piwik/
+
+Description: Adds Piwik stats to your dashboard menu and Piwik code to your wordpress header.
+
+Version: 1.0.3
+Author: Andr&eacute; Br&auml;kling
+Author URI: http://www.braekling.de
+Text Domain: wp-piwik
+Domain Path: /languages/
+License: GPL3
+
+****************************************************************************************** 
+	Copyright (C) 2009-2015 Andre Braekling (email: webmaster@braekling.de)
+
+	This program is free software: you can redistribute it and/or modify
+	it under the terms of the GNU General Public License as published by
+	the Free Software Foundation, either version 3 of the License, or
+	at your option) any later version.
+
+	This program is distributed in the hope that it will be useful,
+	but WITHOUT ANY WARRANTY; without even the implied warranty of
+	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+	GNU General Public License for more details.
+
+	You should have received a copy of the GNU General Public License
+	along with this program.  If not, see <http://www.gnu.org/licenses/>.
+*******************************************************************************************/
+
+if (! function_exists ( 'add_action' )) {
+	header ( 'Status: 403 Forbidden' );
+	header ( 'HTTP/1.1 403 Forbidden' );
+	exit ();
+}
+
+if (! defined ( 'NAMESPACE_SEPARATOR' ))
+	define ( 'NAMESPACE_SEPARATOR', '\\' );
+
+/**
+ * Define WP-Piwik autoloader
+ *
+ * @param string $class
+ *        	class name
+ */
+function wp_piwik_autoloader($class) {
+	if (substr ( $class, 0, 9 ) == 'WP_Piwik' . NAMESPACE_SEPARATOR) {
+		$class = str_replace ( '.', '', str_replace ( NAMESPACE_SEPARATOR, DIRECTORY_SEPARATOR, substr ( $class, 9 ) ) );
+		require_once ('classes' . DIRECTORY_SEPARATOR . 'WP_Piwik' . DIRECTORY_SEPARATOR . $class . '.php');
+	}
+}
+
+/**
+ * Show notice about outdated PHP version
+ */
+function wp_piwik_phperror() {
+	echo '<div class="error"><p>';
+	printf ( __ ( 'WP-Piwik requires at least PHP 5.3. You are using the deprecated version %s. Please update PHP to use WP-Piwik.', 'wp-piwik' ), PHP_VERSION );
+	echo '</p></div>';
+}
+
+if (is_admin())
+	load_plugin_textdomain ( 'wp-piwik', false, 'wp-piwik' . DIRECTORY_SEPARATOR . 'languages' . DIRECTORY_SEPARATOR );
+
+if (version_compare ( PHP_VERSION, '5.3.0', '<' ))
+	add_action ( 'admin_notices', 'wp_piwik_phperror' );
+else {
+	define ( 'WP_PIWIK_PATH', dirname ( __FILE__ ) . DIRECTORY_SEPARATOR );
+	require_once (WP_PIWIK_PATH . 'config.php');
+	require_once (WP_PIWIK_PATH . 'classes' . DIRECTORY_SEPARATOR . 'WP_Piwik.php');
+	spl_autoload_register ( 'wp_piwik_autoloader' );
+	$GLOBALS ['wp-piwik_debug'] = false;
+	if (class_exists ( 'WP_Piwik' ))
+		$GLOBALS ['wp-piwik'] = new WP_Piwik ();
+}