WP-Matomo (WP-Piwik) - Version 0.10.0.7

Version Description

  • Bugfix: Opt-out shortcode output fix
  • Bugfix: Opt-out shortcode will also work in "pro" and "php" mode
  • Bugfix: Sitebrowser 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
Download this release

Release Info

Developer Braekling
Plugin Icon 128x128 WP-Matomo (WP-Piwik)
Version 0.10.0.7
Comparing to
See all releases

Code changes from version 0.10.0.6 to 0.10.0.7

classes/WP_Piwik.php CHANGED
@@ -12,7 +12,7 @@ class WP_Piwik {
12
  *
13
  * @var Runtime environment variables
14
  */
15
- private static $intRevisionId = 2015051101, $version = '0.10.0.6', $blog_id, $pluginBasename = NULL, $logger, $settings, $request;
16
 
17
  /**
18
  * Constructor class to configure and register all WP-Piwik components
@@ -191,7 +191,7 @@ class WP_Piwik {
191
  self::$logger->log ( 'Running WP-Piwik installation' );
192
  if (! $isUpdate)
193
  $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' ) );
194
- self::$settings->setGlobalOption ( 'revision', self::$intRevisionId );
195
  self::$settings->setGlobalOption ( 'last_settings_update', time () );
196
  }
197
 
@@ -557,18 +557,18 @@ class WP_Piwik {
557
  * @return boolean settings update applied
558
  */
559
  private function applySettings() {
560
- if (isset ( $_POST ) && isset ( $_POST ['wp-piwik'] )) {
561
- self::$settings->applyChanges ( $_POST ['wp-piwik'] );
562
- if (self::$settings->getGlobalOption ( 'auto_site_config' ) && self::isConfigured ()) {
563
- if ($this->isPHPMode () && ! defined ( 'PIWIK_INCLUDE_PATH' ))
564
- self::definePiwikConstants ();
565
- $siteId = $this->requestPiwikSiteId ();
566
- $trackingCode = $this->updateTrackingCode ( $siteId );
567
- self::$settings->getOption ( 'site_id', $siteId );
568
- }
569
- return true;
570
  }
571
- return false;
 
 
572
  }
573
 
574
  /**
@@ -586,7 +586,7 @@ class WP_Piwik {
586
  * @return boolean Was WP-Piwik updated?
587
  */
588
  private function isUpdated() {
589
- return self::$settings->getGlobalOption ( 'revision' ) && self::$settings->getGlobalOption ( 'revision' ) < self::$intRevisionId;
590
  }
591
 
592
  /**
@@ -598,7 +598,7 @@ class WP_Piwik {
598
  $oldSettings = $this->getWordPressOption ( 'wp-piwik_global-settings', false );
599
  if ($oldSettings && isset( $oldSettings['revision'] ))
600
  self::$settings->setGlobalOption ( 'revision', $oldSettings['revision'] );
601
- return self::$settings->getGlobalOption ( 'revision' );
602
  }
603
 
604
  /**
@@ -607,7 +607,7 @@ class WP_Piwik {
607
  * @return boolean Are new settings submitted?
608
  */
609
  private function isConfigSubmitted() {
610
- return isset ( $_POST ['action'] ) && $_POST ['action'] == 'save_wp-piwik_settings';
611
  }
612
 
613
  /**
@@ -752,7 +752,7 @@ class WP_Piwik {
752
  */
753
  private function openSettings() {
754
  self::$settings = new WP_Piwik\Settings ( $this, self::$logger );
755
- if (! $this->applySettings () && $this->isPHPMode () && ! defined ( 'PIWIK_INCLUDE_PATH' ))
756
  self::definePiwikConstants ();
757
  }
758
 
@@ -919,9 +919,13 @@ class WP_Piwik {
919
  * request ID
920
  * @return mixed request result
921
  */
922
- public function request($id) {
 
 
923
  if (! isset ( self::$request ))
924
  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 ));
 
 
925
  return self::$request->perform ( $id );
926
  }
927
 
@@ -991,7 +995,7 @@ class WP_Piwik {
991
  $this->log ( 'Tried to identify current site, result: ' . serialize ( $result ) );
992
  if (empty ( $result ) || ! isset ( $result [0] ))
993
  $result = $this->addPiwikSite ( $blogId );
994
- else
995
  $result = $result [0] ['idsite'];
996
  } else
997
  $result = null;
12
  *
13
  * @var Runtime environment variables
14
  */
15
+ private static $revisionId = 2015051501, $version = '0.10.0.7', $blog_id, $pluginBasename = NULL, $logger, $settings, $request;
16
 
17
  /**
18
  * Constructor class to configure and register all WP-Piwik components
191
  self::$logger->log ( 'Running WP-Piwik installation' );
192
  if (! $isUpdate)
193
  $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' ) );
194
+ self::$settings->setGlobalOption ( 'revision', self::$revisionId );
195
  self::$settings->setGlobalOption ( 'last_settings_update', time () );
196
  }
197
 
557
  * @return boolean settings update applied
558
  */
559
  private function applySettings() {
560
+ self::$settings->applyChanges ( $_POST ['wp-piwik'] );
561
+ echo 'Settings gespeichert';
562
+ if (self::$settings->getGlobalOption ( 'auto_site_config' ) && self::isConfigured ()) {
563
+ if ($this->isPHPMode () && ! defined ( 'PIWIK_INCLUDE_PATH' ))
564
+ self::definePiwikConstants ();
565
+ $siteId = $this->getPiwikSiteId ();
566
+ $trackingCode = $this->updateTrackingCode ( $siteId );
567
+ self::$settings->setOption ( 'site_id', $siteId );
 
 
568
  }
569
+ self::$settings->setGlobalOption ( 'revision', self::$revisionId );
570
+ self::$settings->setGlobalOption ( 'last_settings_update', time () );
571
+ return true;
572
  }
573
 
574
  /**
586
  * @return boolean Was WP-Piwik updated?
587
  */
588
  private function isUpdated() {
589
+ return self::$settings->getGlobalOption ( 'revision' ) && self::$settings->getGlobalOption ( 'revision' ) < self::$revisionId;
590
  }
591
 
592
  /**
598
  $oldSettings = $this->getWordPressOption ( 'wp-piwik_global-settings', false );
599
  if ($oldSettings && isset( $oldSettings['revision'] ))
600
  self::$settings->setGlobalOption ( 'revision', $oldSettings['revision'] );
601
+ return self::$settings->getGlobalOption ( 'revision' ) > 0;
602
  }
603
 
604
  /**
607
  * @return boolean Are new settings submitted?
608
  */
609
  private function isConfigSubmitted() {
610
+ return isset ( $_POST ) && isset ( $_POST ['wp-piwik'] );
611
  }
612
 
613
  /**
752
  */
753
  private function openSettings() {
754
  self::$settings = new WP_Piwik\Settings ( $this, self::$logger );
755
+ if (! $this->isConfigSubmitted () && $this->isPHPMode () && ! defined ( 'PIWIK_INCLUDE_PATH' ))
756
  self::definePiwikConstants ();
757
  }
758
 
919
  * request ID
920
  * @return mixed request result
921
  */
922
+ public function request($id, $debug = false) {
923
+ if ( self::$settings->getGlobalOption ( 'piwik_mode' ) == 'disabled' )
924
+ return 'n/a';
925
  if (! isset ( self::$request ))
926
  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 ));
927
+ if ($debug)
928
+ return self::$request->getDebug ( $id );
929
  return self::$request->perform ( $id );
930
  }
931
 
995
  $this->log ( 'Tried to identify current site, result: ' . serialize ( $result ) );
996
  if (empty ( $result ) || ! isset ( $result [0] ))
997
  $result = $this->addPiwikSite ( $blogId );
998
+ elseif ( $result != 'n/a' )
999
  $result = $result [0] ['idsite'];
1000
  } else
1001
  $result = null;
classes/WP_Piwik/Admin/Settings.php CHANGED
@@ -89,7 +89,7 @@ class Settings extends \WP_Piwik\Admin {
89
  if (! function_exists ( 'curl_init' ) && ! ini_get ( 'allow_url_fopen' ))
90
  $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' ) ) );
91
 
92
- $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 Piwk 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' ) );
93
  $this->showSelect ( 'piwik_mode', __ ( 'Piwik Mode', 'wp-piwik' ), array (
94
  'disabled' => __ ( 'Disabled (WP-Piwik will not connect to Piwik)', 'wp-piwik' ),
95
  'http' => __ ( 'Self-hosted (HTTP API, default)', 'wp-piwik' ),
@@ -240,7 +240,7 @@ class Settings extends \WP_Piwik\Admin {
240
 
241
  $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 );
242
 
243
- $this->showCheckbox ( 'track_across_alias', __ ( 'Do not count subdomians 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 );
244
 
245
  $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' );
246
 
@@ -542,7 +542,7 @@ class Settings extends \WP_Piwik\Admin {
542
  _e('enabled','wp-piwik');
543
  ?></strong>.</li>
544
  </ol>
545
- <p><a href="<?php echo admin_url( 'options-general.php?page='.$_GET['page'].'&testscript=1' ); ?>">Run testscript</a>. <a href="<?php echo admin_url( 'options-general.php?page='.$_GET['page'].'&sitebrowser=1' ); ?>">Sitebrowser</a>.</p>
546
  <h3><?php _e('Latest support threads on WordPress.org', 'wp-piwik'); ?></h3><?php
547
  $supportThreads = $this->readRSSFeed('http://wordpress.org/support/rss/plugin/wp-piwik');
548
  if (!empty($supportThreads)) {
@@ -597,20 +597,23 @@ class Settings extends \WP_Piwik\Admin {
597
  echo '`WP-Piwik '.self::$wpPiwik->getPluginVersion()."\nMode: ".self::$settings->getGlobalOption('piwik_mode')."\n\n";
598
  ?>Test 1/3: global.getPiwikVersion<?php
599
  $GLOBALS ['wp-piwik_debug'] = true;
600
- $id = \WP_Piwik\Request::register ( 'API.getPiwikVersion' );
601
  echo "\n\n"; var_dump( self::$wpPiwik->request( $id ) ); echo "\n";
 
602
  $GLOBALS ['wp-piwik_debug'] = false;
603
  ?>Test 2/3: SitesManager.getSitesWithAtLeastViewAccess<?php
604
  $GLOBALS ['wp-piwik_debug'] = true;
605
- $id = \WP_Piwik\Request::register ( 'SitesManager.getSitesWithAtLeastViewAccess' );
606
  echo "\n\n"; var_dump( self::$wpPiwik->request( $id ) ); echo "\n";
 
607
  $GLOBALS ['wp-piwik_debug'] = false;
608
  ?>Test 3/3: SitesManager.getSitesIdFromSiteUrl<?php
609
  $GLOBALS ['wp-piwik_debug'] = true;
610
  $id = \WP_Piwik\Request::register ( 'SitesManager.getSitesIdFromSiteUrl', array (
611
  'url' => get_bloginfo ( 'url' )
612
  ) );
613
- echo "\n\n"; var_dump( self::$wpPiwik->request( $id ) ); echo "`";
 
614
  $GLOBALS ['wp-piwik_debug'] = false;
615
  ?></textarea>
616
  <?php } else echo '<p>Please configure WP-Piwik first.</p>'; ?>
89
  if (! function_exists ( 'curl_init' ) && ! ini_get ( 'allow_url_fopen' ))
90
  $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' ) ) );
91
 
92
+ $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' ) );
93
  $this->showSelect ( 'piwik_mode', __ ( 'Piwik Mode', 'wp-piwik' ), array (
94
  'disabled' => __ ( 'Disabled (WP-Piwik will not connect to Piwik)', 'wp-piwik' ),
95
  'http' => __ ( 'Self-hosted (HTTP API, default)', 'wp-piwik' ),
240
 
241
  $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 );
242
 
243
+ $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 );
244
 
245
  $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' );
246
 
542
  _e('enabled','wp-piwik');
543
  ?></strong>.</li>
544
  </ol>
545
+ <p><a href="<?php echo admin_url( (self::$settings->checkNetworkActivation () ? 'network/settings' : 'options-general').'.php?page='.$_GET['page'].'&testscript=1' ); ?>">Run testscript</a>. <a href="<?php echo admin_url( 'options-general.php?page='.$_GET['page'].'&sitebrowser=1' ); ?>">Sitebrowser</a>.</p>
546
  <h3><?php _e('Latest support threads on WordPress.org', 'wp-piwik'); ?></h3><?php
547
  $supportThreads = $this->readRSSFeed('http://wordpress.org/support/rss/plugin/wp-piwik');
548
  if (!empty($supportThreads)) {
597
  echo '`WP-Piwik '.self::$wpPiwik->getPluginVersion()."\nMode: ".self::$settings->getGlobalOption('piwik_mode')."\n\n";
598
  ?>Test 1/3: global.getPiwikVersion<?php
599
  $GLOBALS ['wp-piwik_debug'] = true;
600
+ $id = \WP_Piwik\Request::register ( 'API.getPiwikVersion', array() );
601
  echo "\n\n"; var_dump( self::$wpPiwik->request( $id ) ); echo "\n";
602
+ var_dump( self::$wpPiwik->request( $id, true ) ); echo "\n";
603
  $GLOBALS ['wp-piwik_debug'] = false;
604
  ?>Test 2/3: SitesManager.getSitesWithAtLeastViewAccess<?php
605
  $GLOBALS ['wp-piwik_debug'] = true;
606
+ $id = \WP_Piwik\Request::register ( 'SitesManager.getSitesWithAtLeastViewAccess', array() );
607
  echo "\n\n"; var_dump( self::$wpPiwik->request( $id ) ); echo "\n";
608
+ var_dump( self::$wpPiwik->request( $id, true ) ); echo "\n";
609
  $GLOBALS ['wp-piwik_debug'] = false;
610
  ?>Test 3/3: SitesManager.getSitesIdFromSiteUrl<?php
611
  $GLOBALS ['wp-piwik_debug'] = true;
612
  $id = \WP_Piwik\Request::register ( 'SitesManager.getSitesIdFromSiteUrl', array (
613
  'url' => get_bloginfo ( 'url' )
614
  ) );
615
+ echo "\n\n"; var_dump( self::$wpPiwik->request( $id ) ); echo "\n";
616
+ var_dump( self::$wpPiwik->request( $id, true ) ); echo "`";
617
  $GLOBALS ['wp-piwik_debug'] = false;
618
  ?></textarea>
619
  <?php } else echo '<p>Please configure WP-Piwik first.</p>'; ?>
classes/WP_Piwik/Request.php CHANGED
@@ -19,6 +19,8 @@
19
  $id = 'method='.$method.self::parameterToString($parameter);
20
  if (
21
  in_array( $method, array( 'API.getPiwikVersion', 'SitesManager.getJavascriptTag', 'SitesManager.getSitesWithAtLeastViewAccess', 'SitesManager.getSitesIdFromSiteUrl', 'SitesManager.addSite', 'SitesManager.updateSite', 'SitesManager.getSitesWithAtLeastViewAccess' ) ) ||
 
 
22
  substr($parameter['date'], 0, 4) == 'last' ||
23
  $parameter['date'] == 'today' ||
24
  ( $parameter['period'] == 'day' && $parameter['date'] == date('Ymd') ) ||
@@ -57,6 +59,10 @@
57
  } else return false;
58
  }
59
 
 
 
 
 
60
  protected function buildURL($config, $urlDecode = false) {
61
  $url = 'method='.($config['method']).'&idSite='.self::$settings->getOption('site_id');
62
  foreach ($config['parameter'] as $key => $value)
19
  $id = 'method='.$method.self::parameterToString($parameter);
20
  if (
21
  in_array( $method, array( 'API.getPiwikVersion', 'SitesManager.getJavascriptTag', 'SitesManager.getSitesWithAtLeastViewAccess', 'SitesManager.getSitesIdFromSiteUrl', 'SitesManager.addSite', 'SitesManager.updateSite', 'SitesManager.getSitesWithAtLeastViewAccess' ) ) ||
22
+ !isset( $parameter['date'] ) ||
23
+ !isset( $parameter['period'] ) ||
24
  substr($parameter['date'], 0, 4) == 'last' ||
25
  $parameter['date'] == 'today' ||
26
  ( $parameter['period'] == 'day' && $parameter['date'] == date('Ymd') ) ||
59
  } else return false;
60
  }
61
 
62
+ public function getDebug($id) {
63
+ return isset( self::$debug[$id] )? self::$debug[$id] : false;
64
+ }
65
+
66
  protected function buildURL($config, $urlDecode = false) {
67
  $url = 'method='.($config['method']).'&idSite='.self::$settings->getOption('site_id');
68
  foreach ($config['parameter'] as $key => $value)
classes/WP_Piwik/Request/Php.php CHANGED
@@ -11,14 +11,14 @@
11
  if (!isset(self::$results[$requestID])) {
12
  $params = 'module=API&format=php&'.$this->buildURL($config, true);
13
  $map[$count] = $requestID;
14
- $result = $this->call($url, $params);
15
  self::$results[$map[$count]] = $result;
16
  $count++;
17
  }
18
  }
19
  }
20
 
21
- private function call($url, $params) {
22
  if (!defined('PIWIK_INCLUDE_PATH'))
23
  return;
24
  if (PIWIK_INCLUDE_PATH === FALSE)
@@ -39,7 +39,7 @@
39
  header("Content-Type: text/html", true);
40
  $result = $this->unserialize($result);
41
  if ($GLOBALS ['wp-piwik_debug'])
42
- array_unshift($result, $params.'&token_auth=...');
43
  return $result;
44
  }
45
  }
11
  if (!isset(self::$results[$requestID])) {
12
  $params = 'module=API&format=php&'.$this->buildURL($config, true);
13
  $map[$count] = $requestID;
14
+ $result = $this->call($id, $url, $params);
15
  self::$results[$map[$count]] = $result;
16
  $count++;
17
  }
18
  }
19
  }
20
 
21
+ private function call($id, $url, $params) {
22
  if (!defined('PIWIK_INCLUDE_PATH'))
23
  return;
24
  if (PIWIK_INCLUDE_PATH === FALSE)
39
  header("Content-Type: text/html", true);
40
  $result = $this->unserialize($result);
41
  if ($GLOBALS ['wp-piwik_debug'])
42
+ self::$debug[$id] = array ( $params.'&token_auth=...' );
43
  return $result;
44
  }
45
  }
classes/WP_Piwik/Request/Rest.php CHANGED
@@ -17,13 +17,13 @@
17
  $count++;
18
  }
19
  }
20
- $results = (function_exists('curl_init')?$this->curl($url, $params):$this->fopen($url, $params));
21
  if (is_array($results))
22
  foreach ($results as $num => $result)
23
  self::$results[$map[$num]] = $result;
24
  }
25
 
26
- private function curl($url, $params) {
27
  $c = curl_init($url);
28
  curl_setopt($c, CURLOPT_POST, 1);
29
  curl_setopt($c, CURLOPT_POSTFIELDS, $params.'&token_auth='.self::$settings->getGlobalOption('piwik_token'));
@@ -45,22 +45,18 @@
45
  $header = substr($result, 0, $header_size);
46
  $body = substr($result, $header_size);
47
  $result = $this->unserialize($body);
48
- array_unshift($result[0], $header);
49
- array_unshift($result[0], $url.'?'.$params.'&token_auth=...');
50
  } else $result = $this->unserialize($result);
51
  curl_close($c);
52
  return $result;
53
  }
54
 
55
- private function fopen($url, $params) {
56
  $context = stream_context_create(array('http'=>array('timeout' => self::$settings->getGlobalOption('connection_timeout'))));
57
  $fullUrl = $url.'?'.$params.'&token_auth='.self::$settings->getGlobalOption('piwik_token');
58
  $result = $this->unserialize(@file_get_contents($fullUrl, false, $context));
59
- if ($GLOBALS ['wp-piwik_debug']) {
60
- $header = get_headers($fullUrl, 1);
61
- array_unshift($result[0], $header);
62
- array_unshift($result[0], $url.'?'.$params.'&token_auth=...');
63
- }
64
  return $result;
65
  }
66
  }
17
  $count++;
18
  }
19
  }
20
+ $results = (function_exists('curl_init')?$this->curl($id, $url, $params):$this->fopen($id, $url, $params));
21
  if (is_array($results))
22
  foreach ($results as $num => $result)
23
  self::$results[$map[$num]] = $result;
24
  }
25
 
26
+ private function curl($id, $url, $params) {
27
  $c = curl_init($url);
28
  curl_setopt($c, CURLOPT_POST, 1);
29
  curl_setopt($c, CURLOPT_POSTFIELDS, $params.'&token_auth='.self::$settings->getGlobalOption('piwik_token'));
45
  $header = substr($result, 0, $header_size);
46
  $body = substr($result, $header_size);
47
  $result = $this->unserialize($body);
48
+ self::$debug[$id] = array ( $header, $url.'?'.$params.'&token_auth=...' );
 
49
  } else $result = $this->unserialize($result);
50
  curl_close($c);
51
  return $result;
52
  }
53
 
54
+ private function fopen($id, $url, $params) {
55
  $context = stream_context_create(array('http'=>array('timeout' => self::$settings->getGlobalOption('connection_timeout'))));
56
  $fullUrl = $url.'?'.$params.'&token_auth='.self::$settings->getGlobalOption('piwik_token');
57
  $result = $this->unserialize(@file_get_contents($fullUrl, false, $context));
58
+ if ($GLOBALS ['wp-piwik_debug'])
59
+ self::$debug[$id] = array ( get_headers($fullUrl, 1), $url.'?'.$params.'&token_auth=...' );
 
 
 
60
  return $result;
61
  }
62
  }
classes/WP_Piwik/Widget/OptOut.php CHANGED
@@ -11,7 +11,18 @@
11
  }
12
 
13
  public function show() {
14
- echo '<iframe frameborder="no" width="'.(isset($this->parameter['width'])?$this->parameter['width']:'').'" height="'.(isset($this->parameter['height'])?$this->parameter['height']:'').'" src="'.self::$settings->getGlobalOption('piwik_url').'index.php?module=CoreAdminHome&action=optOut&language='.(isset($this->parameter['language'])?$this->parameter['language']:'en').'"></iframe>';
 
 
 
 
 
 
 
 
 
 
 
15
  }
16
 
17
  }
11
  }
12
 
13
  public function show() {
14
+ $protocol = (isset ( $_SERVER ['HTTPS'] ) && $_SERVER ['HTTPS'] != 'off') ? 'https' : 'http';
15
+ switch (self::$settings->getGlobalOption ( 'piwik_mode' )) {
16
+ case 'php' :
17
+ $PIWIK_URL = $protocol . ':' . self::$settings->getGlobalOption ( 'proxy_url' );
18
+ break;
19
+ case 'pro' :
20
+ $PIWIK_URL = 'https://' . self::$settings->getGlobalOption ( 'piwik_user' ) . '.piwik.pro/';
21
+ break;
22
+ default :
23
+ $PIWIK_URL = self::$settings->getGlobalOption ( 'piwik_url' );
24
+ }
25
+ $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>' );
26
  }
27
 
28
  }
languages/wp-piwik-de_DE.mo CHANGED
Binary file
languages/wp-piwik-de_DE.po CHANGED
@@ -1,4 +1,4 @@
1
- #
2
  # Translators:
3
  # Andr&eacute; Br&auml;kling <webmaster@braekling.de>, 2011
4
  # André Bräkling <andre@braekling.de>, 2015
@@ -6,7 +6,7 @@ msgid ""
6
  msgstr ""
7
  "Project-Id-Version: WP-Piwik\n"
8
  "POT-Creation-Date: 2015-05-10 16:33+0100\n"
9
- "PO-Revision-Date: 2015-05-10 14:45+0000\n"
10
  "Last-Translator: André Bräkling <andre@braekling.de>\n"
11
  "Language-Team: German (Germany) (http://www.transifex.com/projects/p/wp-piwik/language/de_DE/)\n"
12
  "MIME-Version: 1.0\n"
@@ -17,8 +17,8 @@ msgstr ""
17
  "X-Generator: Poedit 1.7.5\n"
18
  "X-Poedit-Basepath: .\n"
19
  "X-Poedit-KeywordsList: __;_e\n"
20
- "X-Poedit-SearchPath-0: .\n"
21
  "X-Poedit-SourceCharset: UTF-8\n"
 
22
 
23
  #: classes/WP_Piwik.php:185
24
  #, php-format
@@ -82,23 +82,17 @@ msgstr "Du verwendest WordPress %s."
82
 
83
  #: classes/WP_Piwik/Admin/Settings.php:35
84
  #, php-format
85
- msgid ""
86
- "You are running a WordPress %s blog network (WPMU). WP-Piwik will handle "
87
- "your sites as different websites."
88
  msgstr "Du verwendest ein WordPress %s Blog Netzwerk (WPMU). WP-Piwik wird Deine Seiten als unterschiedliche Webseiten behandeln."
89
 
90
  #: classes/WP_Piwik/Admin/Settings.php:37
91
  #, php-format
92
- msgid ""
93
- "WP-Piwik %s was not able to connect to Piwik using your configuration. Check"
94
- " the &raquo;Connect to Piwik&laquo; section below."
95
  msgstr "WP-Piwik %s konnte sich mit Deiner Konfiguration nicht mit Piwik verbinden. Bitte &uuml;berprf&uuml;fe die &raquo;Mit Piwik verbinden&laquo;-Sektion unten."
96
 
97
  #: classes/WP_Piwik/Admin/Settings.php:40
98
  #, php-format
99
- msgid ""
100
- "WP-Piwik %s has to be connected to Piwik first. Check the &raquo;Connect to "
101
- "Piwik&laquo; section below."
102
  msgstr "WP-Piwik %s muss zun&auml;chst mit Piwik verbunden werden. Bitte &uuml;berprf&uuml;fe die &raquo;Mit Piwik verbinden&laquo;-Sektion unten."
103
 
104
  #: classes/WP_Piwik/Admin/Settings.php:44
@@ -122,11 +116,7 @@ msgid "Credits"
122
  msgstr "Danksagungen"
123
 
124
  #: classes/WP_Piwik/Admin/Settings.php:79
125
- msgid ""
126
- "WP-Piwik is a WordPress plugin to show a selection of Piwik stats in your "
127
- "WordPress admin dashboard and to add and configure your Piwik tracking code."
128
- " To use this you will need your own Piwik instance. If you do not already "
129
- "have a Piwik setup, you have two simple options: use either"
130
  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 "
131
 
132
  #: classes/WP_Piwik/Admin/Settings.php:79
@@ -142,13 +132,10 @@ msgid "Cloud-hosted"
142
  msgstr "in der Cloud"
143
 
144
  #: classes/WP_Piwik/Admin/Settings.php:82
145
- msgid ""
146
- "Neither cURL nor fopen are available. So WP-Piwik can not use the HTTP API "
147
- "and not connect to Piwik Pro."
148
  msgstr "Weder cURL noch fopen ist verfügbar. Deswegen kann WP-Piwik die HTTP-API nicht verwenden und auch nicht zu Piwik Pro verbinden."
149
 
150
- #: classes/WP_Piwik/Admin/Settings.php:82
151
- #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
152
  msgid "More information"
153
  msgstr "Weitere Informationen"
154
 
@@ -156,37 +143,28 @@ msgstr "Weitere Informationen"
156
  msgid "You can choose between three connection methods:"
157
  msgstr "Du kannst zwischen drei Verbindungsmöglichkeiten wählen:"
158
 
159
- #: classes/WP_Piwik/Admin/Settings.php:84
160
- #: classes/WP_Piwik/Admin/Settings.php:87
161
  msgid "Self-hosted (HTTP API, default)"
162
  msgstr "Selbst-gehostet (HTTP API, Standard)"
163
 
164
  #: classes/WP_Piwik/Admin/Settings.php:84
165
- msgid ""
166
- "This is the default option for a self-hosted Piwik and should work for most "
167
- "configurations. WP-Piwik will connect to Piwk using http(s)."
168
  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)."
169
 
170
- #: classes/WP_Piwik/Admin/Settings.php:84
171
- #: classes/WP_Piwik/Admin/Settings.php:88
172
  msgid "Self-hosted (PHP API)"
173
  msgstr "Selbst-gehostet (PHP AP)"
174
 
175
  #: classes/WP_Piwik/Admin/Settings.php:84
176
- msgid ""
177
- "Choose this, if your self-hosted Piwik and WordPress are running on the same"
178
- " machine and you know the full server path to your Piwik instance."
179
  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."
180
 
181
- #: classes/WP_Piwik/Admin/Settings.php:84
182
- #: classes/WP_Piwik/Admin/Settings.php:89
183
  msgid "Cloud-hosted (Piwik Pro)"
184
  msgstr "In der Cloud (Piwik Pro)"
185
 
186
  #: classes/WP_Piwik/Admin/Settings.php:84
187
- msgid ""
188
- "If you are using a cloud-hosted Piwik by Piwik Pro, you can simply use this "
189
- "option."
190
  msgstr "Wenn Du ein Piwik in der Cloud von Piwik Pro verwendest, kannst Du einfach diese Option w&auml;hlen."
191
 
192
  #: classes/WP_Piwik/Admin/Settings.php:85
@@ -202,9 +180,7 @@ msgid "Piwik URL"
202
  msgstr "Piwik URL"
203
 
204
  #: classes/WP_Piwik/Admin/Settings.php:92
205
- msgid ""
206
- "Enter your Piwik URL. This is the same URL you use to access your Piwik "
207
- "instance, e.g. http://www.example.com/piwik/."
208
  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/."
209
 
210
  #: classes/WP_Piwik/Admin/Settings.php:93
@@ -220,9 +196,7 @@ msgid "Piwik user"
220
  msgstr "Piwik-Benutzer"
221
 
222
  #: classes/WP_Piwik/Admin/Settings.php:94
223
- msgid ""
224
- "Enter your Piwik Pro username. It is also part of your URL: "
225
- "http://USERNAME.piwik.pro."
226
  msgstr "Gib hier Deinen Piwik Pro Benutzernamen an. Er ist auch Teil Deiner URL: http://USERNAME.piwik.pro."
227
 
228
  #: classes/WP_Piwik/Admin/Settings.php:95
@@ -230,9 +204,7 @@ msgid "Auth token"
230
  msgstr "Auth Token"
231
 
232
  #: classes/WP_Piwik/Admin/Settings.php:95
233
- msgid ""
234
- "Enter your Piwik auth token here. It is an alphanumerical code like "
235
- "0a1b2c34d56e78901fa2bc3d45678efa."
236
  msgstr "Gib hier Dein Piwik Auth Token an. Es ist ein alphanumerische Code wie 0a1b2c34d56e78901fa2bc3d45678efa."
237
 
238
  #: classes/WP_Piwik/Admin/Settings.php:95
@@ -245,9 +217,7 @@ msgid "Auto config"
245
  msgstr "Auto-Konfiguration"
246
 
247
  #: classes/WP_Piwik/Admin/Settings.php:100
248
- msgid ""
249
- "Check this to automatically choose your blog from your Piwik sites by URL. "
250
- "If your blog is not added to Piwik yet, WP-Piwik will add a new site."
251
  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."
252
 
253
  #: classes/WP_Piwik/Admin/Settings.php:106
@@ -266,13 +236,11 @@ msgstr "W&auml;hle die Seite"
266
  msgid "Piwik default date"
267
  msgstr "Piwik Standard-Datum"
268
 
269
- #: classes/WP_Piwik/Admin/Settings.php:123
270
- #: classes/WP_Piwik/Admin/Settings.php:136
271
  msgid "Today"
272
  msgstr "Heute"
273
 
274
- #: classes/WP_Piwik/Admin/Settings.php:124
275
- #: classes/WP_Piwik/Admin/Settings.php:135
276
  msgid "Yesterday"
277
  msgstr "Gestern"
278
 
@@ -304,8 +272,7 @@ msgstr "Zeige SEO-Daten"
304
  msgid "Display SEO ranking data on statistics page."
305
  msgstr "Zeige SEO-Ranking-Daten auf der Statistiken-Seite."
306
 
307
- #: classes/WP_Piwik/Admin/Settings.php:131
308
- #: classes/WP_Piwik/Admin/Settings.php:142
309
  msgid "Slow!"
310
  msgstr "Langsam!"
311
 
@@ -313,10 +280,7 @@ msgstr "Langsam!"
313
  msgid "Dashboard overview"
314
  msgstr "Dashboard Übersicht"
315
 
316
- #: classes/WP_Piwik/Admin/Settings.php:134
317
- #: classes/WP_Piwik/Admin/Settings.php:172
318
- #: classes/WP_Piwik/Admin/Settings.php:174
319
- #: classes/WP_Piwik/Admin/Settings.php:195
320
  msgid "Disabled"
321
  msgstr "Deaktiviert"
322
 
@@ -397,14 +361,10 @@ msgid "You can choose between four tracking code modes:"
397
  msgstr "Du kannst zwischen vier Tracking-Code-Varianten wählen:"
398
 
399
  #: classes/WP_Piwik/Admin/Settings.php:172
400
- msgid ""
401
- "WP-Piwik will not add the tracking code. Use this, if you want to add the "
402
- "tracking code to your template files or you use another plugin to add the "
403
- "tracking code."
404
  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."
405
 
406
- #: classes/WP_Piwik/Admin/Settings.php:172
407
- #: classes/WP_Piwik/Admin/Settings.php:175
408
  msgid "Default tracking"
409
  msgstr "Standard-Tracking"
410
 
@@ -412,15 +372,12 @@ msgstr "Standard-Tracking"
412
  msgid "WP-Piwik will use Piwik's standard tracking code."
413
  msgstr "WP-Piwik verwendet den Standard Tracking-Code von Piwik."
414
 
415
- #: classes/WP_Piwik/Admin/Settings.php:172
416
- #: classes/WP_Piwik/Admin/Settings.php:176
417
  msgid "Use js/index.php"
418
  msgstr "Nutze js/index.php"
419
 
420
  #: classes/WP_Piwik/Admin/Settings.php:172
421
- msgid ""
422
- "You can choose this tracking code, to deliver a minified proxy code and to "
423
- "avoid using the files called piwik.js or piwik.php."
424
  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."
425
 
426
  #: classes/WP_Piwik/Admin/Settings.php:172
@@ -428,8 +385,7 @@ msgstr "Du kannst diesen Tracking-Code w&auml;hlen, um einen minimierten Proxy-C
428
  msgid "See %sreadme file%s."
429
  msgstr "Siehe %sReadme-Datei%s."
430
 
431
- #: classes/WP_Piwik/Admin/Settings.php:172
432
- #: classes/WP_Piwik/Admin/Settings.php:177
433
  msgid "Use proxy script"
434
  msgstr "Verwende Proxy-Skript"
435
 
@@ -437,23 +393,17 @@ msgstr "Verwende Proxy-Skript"
437
  msgid "Use this tracking code to not reveal the Piwik server URL."
438
  msgstr "Verwende diesen Tracking-Code, um die URL zu Deinem Piwik-Sever nicht offenzulegen."
439
 
440
- #: classes/WP_Piwik/Admin/Settings.php:172
441
- #: classes/WP_Piwik/Admin/Settings.php:192
442
- #: classes/WP_Piwik/Admin/Settings.php:202
443
  #, php-format
444
  msgid "See %sPiwik FAQ%s."
445
  msgstr "Siehe %sPiwik FAQ%s."
446
 
447
- #: classes/WP_Piwik/Admin/Settings.php:172
448
- #: classes/WP_Piwik/Admin/Settings.php:178
449
  msgid "Enter manually"
450
  msgstr "Manuelle Eingabe"
451
 
452
  #: classes/WP_Piwik/Admin/Settings.php:172
453
- msgid ""
454
- "Enter your own tracking code manually. You can choose one of the prior "
455
- "options, pre-configure your tracking code and switch to manually editing at "
456
- "last."
457
  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."
458
 
459
  #: classes/WP_Piwik/Admin/Settings.php:172
@@ -481,8 +431,7 @@ msgid "Header"
481
  msgstr "Kopfbereich"
482
 
483
  #: classes/WP_Piwik/Admin/Settings.php:186
484
- msgid ""
485
- "Choose whether the JavaScript code is added to the footer or the header."
486
  msgstr "W&auml;hle, ob der JavaScript-Code im Footer oder im Header eingef&uuml;gt werden soll."
487
 
488
  #: classes/WP_Piwik/Admin/Settings.php:188
@@ -497,8 +446,7 @@ msgstr "F&uuml;ge &lt;noscript&gt; hinzu"
497
  msgid "Adds the &lt;noscript&gt; code to your footer."
498
  msgstr "F&uuml;gt den &lt;noscript&gt;-Code im Footer ein."
499
 
500
- #: classes/WP_Piwik/Admin/Settings.php:190
501
- #: classes/WP_Piwik/Admin/Settings.php:192
502
  msgid "Disabled in proxy mode."
503
  msgstr "Im Proxy-Modus deaktiviert."
504
 
@@ -523,19 +471,10 @@ msgid "Track only visible content blocks"
523
  msgstr "Tracke nur sichtbare Content-Bereiche"
524
 
525
  #: classes/WP_Piwik/Admin/Settings.php:198
526
- msgid ""
527
- "Content tracking allows you to track interaction with the content of a web "
528
- "page or application."
529
  msgstr "Das Content-Tracking erlaubt es Dir, Interaktionen mit dem Inhalt einer Webseite oder -anwendung zu tracken."
530
 
531
- #: classes/WP_Piwik/Admin/Settings.php:198
532
- #: classes/WP_Piwik/Admin/Settings.php:200
533
- #: classes/WP_Piwik/Admin/Settings.php:204
534
- #: classes/WP_Piwik/Admin/Settings.php:206
535
- #: classes/WP_Piwik/Admin/Settings.php:208
536
- #: classes/WP_Piwik/Admin/Settings.php:229
537
- #: classes/WP_Piwik/Admin/Settings.php:231
538
- #: classes/WP_Piwik/Admin/Settings.php:235
539
  #, php-format
540
  msgid "See %sPiwik documentation%s."
541
  msgstr "Siehe %sPiwik-Dokumentation%s."
@@ -553,8 +492,7 @@ msgid "Track 404"
553
  msgstr "404-Tracking"
554
 
555
  #: classes/WP_Piwik/Admin/Settings.php:202
556
- msgid ""
557
- "WP-Piwik can automatically add a 404-category to track 404-page-visits."
558
  msgstr "WP-Piwik kann automatisch eine eigene Kategorie f&uuml;r 404-Seiten hinzuf&uuml;gen."
559
 
560
  #: classes/WP_Piwik/Admin/Settings.php:204
@@ -578,9 +516,7 @@ msgid "Add new file types for download tracking"
578
  msgstr "F&uuml;ge weitere Dateitypen f&uuml;r das Download-Tracking hinzu."
579
 
580
  #: classes/WP_Piwik/Admin/Settings.php:208
581
- msgid ""
582
- "Add file extensions for download tracking, divided by a vertical bar "
583
- "(&#124;)."
584
  msgstr "F&uuml;ge Dateierweiterung zum Download-Tracking hinzu. Trenne mehrere Erweiterung durch einen senkrechten Strich (&#124;)."
585
 
586
  #: classes/WP_Piwik/Admin/Settings.php:210
@@ -596,9 +532,7 @@ msgid "Limit cookie lifetime"
596
  msgstr "Cookie-Lebensdauer beschr&auml;nken"
597
 
598
  #: classes/WP_Piwik/Admin/Settings.php:212
599
- msgid ""
600
- "You can limit the cookie lifetime to avoid tracking your users over a longer"
601
- " period as necessary."
602
  msgstr "Du kannst die Cookie-Lebenszeit begrenzen, um Deine Besucher nicht länger als notwendig zu tracken."
603
 
604
  #: classes/WP_Piwik/Admin/Settings.php:214
@@ -618,9 +552,7 @@ msgid "Track admin pages"
618
  msgstr "Admin-Seiten tracken"
619
 
620
  #: classes/WP_Piwik/Admin/Settings.php:220
621
- msgid ""
622
- "Enable to track users on admin pages (remember to configure the tracking "
623
- "filter appropriately)."
624
  msgstr "Aktivieren, um Nutzer auf Admin-Seiten zu z&auml;hlen (bitte den Tracking Filter entsprechend konfigurieren)."
625
 
626
  #: classes/WP_Piwik/Admin/Settings.php:223
@@ -640,7 +572,7 @@ msgid "Adds *.-prefix to cookie domain."
640
  msgstr "F&uuml;gt ein *.-Pr&auml;fix zur Cookie Domain hinzu."
641
 
642
  #: classes/WP_Piwik/Admin/Settings.php:231
643
- msgid "Do not count subdomians as outlink"
644
  msgstr "Werte Subdomains nicht als ausgehenden Link"
645
 
646
  #: classes/WP_Piwik/Admin/Settings.php:231
@@ -672,9 +604,7 @@ msgid "Keyword: post name."
672
  msgstr "Schl&uuml;sselwort: Name des Beitrags."
673
 
674
  #: classes/WP_Piwik/Admin/Settings.php:242
675
- msgid ""
676
- "Usually, you do not need to change these settings. If you want to do so, you"
677
- " should know what you do or you got an expert's advice."
678
  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."
679
 
680
  #: classes/WP_Piwik/Admin/Settings.php:244
@@ -735,9 +665,7 @@ msgid "See %sCloudFlare Knowledge Base%s."
735
  msgstr "Siehe %sdie CloudFlare Knowledge Base%s."
736
 
737
  #: classes/WP_Piwik/Admin/Settings.php:258
738
- msgid ""
739
- "Adds data-cfasync=false to the script tag, e.g., to ask Rocket Loader to "
740
- "ignore the script. "
741
  msgstr "F&uuml;ge data-cfasync=false zum Script-Tag hinzu. Damit wird z.B. Rocket Loader aufgefordert, das Skript zu ignorieren."
742
 
743
  #: classes/WP_Piwik/Admin/Settings.php:260
@@ -765,9 +693,7 @@ msgid "https (SSL)"
765
  msgstr "https (SSL)"
766
 
767
  #: classes/WP_Piwik/Admin/Settings.php:268
768
- msgid ""
769
- "Choose if you want to explicitly force Piwik to use HTTP or HTTPS. Does not "
770
- "work with a CDN URL."
771
  msgstr "W&auml;hle aus, ob Du Piwik ausdr&uuml;cklich zwingen willst, HTTP oder HTTPS zu verwenden. Funktioniert nicht mit einer CDN URL."
772
 
773
  #: classes/WP_Piwik/Admin/Settings.php:427
@@ -782,8 +708,7 @@ msgstr "Wenn Dir WP-Piwik gef&auml;llt, kannst Du die weitere Entwicklung mit ei
782
  msgid "My Amazon.de wishlist"
783
  msgstr "Meine Wunschliste bei Amazon.de"
784
 
785
- #: classes/WP_Piwik/Admin/Settings.php:470
786
- #: classes/WP_Piwik/Admin/Settings.php:517
787
  msgid "Please don't forget to vote the compatibility at the"
788
  msgstr "Bitte denke daran, eine Kompatibilit&auml;tsbewertung abzugeben:"
789
 
@@ -800,11 +725,7 @@ msgid ", and all people flattering this"
800
  msgstr " und allen, die WP-Piwik flattrn"
801
 
802
  #: classes/WP_Piwik/Admin/Settings.php:502
803
- msgid ""
804
- "Graphs powered by <a href=\"http://www.jqplot.com/\">jqPlot</a> (License: "
805
- "GPL 2.0 and MIT) and <a "
806
- "href=\"http://omnipotent.net/jquery.sparkline/\">jQuery Sparklines</a> "
807
- "(License: New BSD License)."
808
  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."
809
 
810
  #: classes/WP_Piwik/Admin/Settings.php:503
@@ -824,16 +745,11 @@ msgid "for your translation work"
824
  msgstr "f&uuml;r eure &Uuml;bersetzungsarbeit"
825
 
826
  #: classes/WP_Piwik/Admin/Settings.php:506
827
- msgid ""
828
- "Thank you very much, all users who send me mails containing criticism, "
829
- "commendation, feature requests and bug reports! You help me to make WP-Piwik"
830
- " much better."
831
  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."
832
 
833
  #: classes/WP_Piwik/Admin/Settings.php:507
834
- msgid ""
835
- "Thank <strong>you</strong> for using my plugin. It is the best commendation "
836
- "if my piece of code is really used!"
837
  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!"
838
 
839
  #: classes/WP_Piwik/Admin/Settings.php:516
@@ -849,17 +765,14 @@ msgid "Debugging"
849
  msgstr "Fehlersuche"
850
 
851
  #: classes/WP_Piwik/Admin/Settings.php:520
852
- msgid ""
853
- "Either allow_url_fopen has to be enabled <em>or</em> cURL has to be "
854
- "available:"
855
  msgstr "Entweder allow_url_fopen muss aktiviert <em>oder</em> cURL muss verf&uuml;gbar sein:"
856
 
857
  #: classes/WP_Piwik/Admin/Settings.php:523
858
  msgid "cURL is"
859
  msgstr "cURL ist"
860
 
861
- #: classes/WP_Piwik/Admin/Settings.php:524
862
- #: classes/WP_Piwik/Admin/Settings.php:529
863
  msgid "not"
864
  msgstr "nicht"
865
 
@@ -951,31 +864,16 @@ msgstr "Wert"
951
  msgid "Set custom variables for a page view"
952
  msgstr "Definiere custom variables f&uuml;r einen Seitenaufruf."
953
 
954
- #: classes/WP_Piwik/Widget.php:91
955
- #: classes/WP_Piwik/Widget/BrowserDetails.php:35
956
- #: classes/WP_Piwik/Widget/Browsers.php:35
957
- #: classes/WP_Piwik/Widget/Chart.php:41
958
- #: classes/WP_Piwik/Widget/Noresult.php:23
959
- #: classes/WP_Piwik/Widget/Overview.php:24
960
- #: classes/WP_Piwik/Widget/Plugins.php:23 classes/WP_Piwik/Widget/Post.php:25
961
- #: classes/WP_Piwik/Widget/Screens.php:35
962
- #: classes/WP_Piwik/Widget/Search.php:23 classes/WP_Piwik/Widget/Seo.php:20
963
- #: classes/WP_Piwik/Widget/Systems.php:33
964
- #: classes/WP_Piwik/Widget/Visitors.php:35
965
  msgid "Piwik error"
966
  msgstr "Piwik-Fehler"
967
 
968
- #: classes/WP_Piwik/Widget.php:100
969
- #: classes/WP_Piwik/Widget/BrowserDetails.php:37
970
- #: classes/WP_Piwik/Widget/Browsers.php:37
971
- #: classes/WP_Piwik/Widget/Screens.php:37
972
- #: classes/WP_Piwik/Widget/Systems.php:35
973
- #: classes/WP_Piwik/Widget/Visitors.php:57
974
  msgid "Unique"
975
  msgstr "Unique"
976
 
977
- #: classes/WP_Piwik/Widget.php:102 classes/WP_Piwik/Widget/Plugins.php:25
978
- #: classes/WP_Piwik/Widget/Visitors.php:57
979
  msgid "Visits"
980
  msgstr "Besuche"
981
 
@@ -999,23 +897,15 @@ msgstr "Woche"
999
  msgid "Browser Details"
1000
  msgstr "Browser-Details"
1001
 
1002
- #: classes/WP_Piwik/Widget/BrowserDetails.php:37
1003
- #: classes/WP_Piwik/Widget/Browsers.php:37
1004
  msgid "Browser"
1005
  msgstr "Browser"
1006
 
1007
- #: classes/WP_Piwik/Widget/BrowserDetails.php:37
1008
- #: classes/WP_Piwik/Widget/Browsers.php:37
1009
- #: classes/WP_Piwik/Widget/Plugins.php:25
1010
- #: classes/WP_Piwik/Widget/Screens.php:37
1011
- #: classes/WP_Piwik/Widget/Systems.php:35
1012
  msgid "Percent"
1013
  msgstr "Prozent"
1014
 
1015
- #: classes/WP_Piwik/Widget/BrowserDetails.php:53
1016
- #: classes/WP_Piwik/Widget/Browsers.php:53
1017
- #: classes/WP_Piwik/Widget/Screens.php:53
1018
- #: classes/WP_Piwik/Widget/Systems.php:51
1019
  msgid "Others"
1020
  msgstr "Andere"
1021
 
@@ -1023,40 +913,31 @@ msgstr "Andere"
1023
  msgid "Browsers"
1024
  msgstr "Browser"
1025
 
1026
- #: classes/WP_Piwik/Widget/Chart.php:17
1027
- #: classes/WP_Piwik/Widget/Overview.php:40 classes/WP_Piwik/Widget/Post.php:37
1028
- #: classes/WP_Piwik/Widget/Visitors.php:17
1029
  msgid "Visitors"
1030
  msgstr "Besucher"
1031
 
1032
  #: classes/WP_Piwik/Widget/Chart.php:69
1033
- msgid ""
1034
- "The graph contains the values shown in the table below (visitors / unique / "
1035
- "bounces). The red line show a linear trendline (unique)."
1036
  msgstr "Der Graph zeigt die Werte aus der Besucher-Tabelle (Besucher / Unique / Abspr&uuml;nge). Die rote Linie zeigt eine lineare Trendlinie (Unique)."
1037
 
1038
  #: classes/WP_Piwik/Widget/Keywords.php:16
1039
  msgid "Keywords"
1040
  msgstr "Keywords"
1041
 
1042
- #: classes/WP_Piwik/Widget/Noresult.php:16
1043
- #: classes/WP_Piwik/Widget/Search.php:16
1044
  msgid "Site Search"
1045
  msgstr "Seitensuche"
1046
 
1047
- #: classes/WP_Piwik/Widget/Noresult.php:25
1048
- #: classes/WP_Piwik/Widget/Search.php:25
1049
  msgid "Keyword"
1050
  msgstr "Keyword"
1051
 
1052
- #: classes/WP_Piwik/Widget/Noresult.php:25
1053
- #: classes/WP_Piwik/Widget/Search.php:25
1054
  msgid "Requests"
1055
  msgstr "Anfragen"
1056
 
1057
- #: classes/WP_Piwik/Widget/Noresult.php:25
1058
- #: classes/WP_Piwik/Widget/Search.php:25
1059
- #: classes/WP_Piwik/Widget/Visitors.php:57
1060
  msgid "Bounced"
1061
  msgstr "Abspr&uuml;nge"
1062
 
@@ -1150,7 +1031,5 @@ msgstr "Seitenansichten"
1150
 
1151
  #: wp-piwik.php:60
1152
  #, php-format
1153
- msgid ""
1154
- "WP-Piwik requires at least PHP 5.3. You are using the deprecated version %s."
1155
- " Please update PHP to use WP-Piwik."
1156
  msgstr "WP-Piwik ben&ouml;tigt zumindest PHP 5.3. Du verwendest die veraltete Version %s. Bitte aktualisiere PHP um WP-Piwik zu nutzen."
1
+ #
2
  # Translators:
3
  # Andr&eacute; Br&auml;kling <webmaster@braekling.de>, 2011
4
  # André Bräkling <andre@braekling.de>, 2015
6
  msgstr ""
7
  "Project-Id-Version: WP-Piwik\n"
8
  "POT-Creation-Date: 2015-05-10 16:33+0100\n"
9
+ "PO-Revision-Date: 2015-05-15 22:19+0100\n"
10
  "Last-Translator: André Bräkling <andre@braekling.de>\n"
11
  "Language-Team: German (Germany) (http://www.transifex.com/projects/p/wp-piwik/language/de_DE/)\n"
12
  "MIME-Version: 1.0\n"
17
  "X-Generator: Poedit 1.7.5\n"
18
  "X-Poedit-Basepath: .\n"
19
  "X-Poedit-KeywordsList: __;_e\n"
 
20
  "X-Poedit-SourceCharset: UTF-8\n"
21
+ "X-Poedit-SearchPath-0: .\n"
22
 
23
  #: classes/WP_Piwik.php:185
24
  #, php-format
82
 
83
  #: classes/WP_Piwik/Admin/Settings.php:35
84
  #, php-format
85
+ msgid "You are running a WordPress %s blog network (WPMU). WP-Piwik will handle your sites as different websites."
 
 
86
  msgstr "Du verwendest ein WordPress %s Blog Netzwerk (WPMU). WP-Piwik wird Deine Seiten als unterschiedliche Webseiten behandeln."
87
 
88
  #: classes/WP_Piwik/Admin/Settings.php:37
89
  #, php-format
90
+ msgid "WP-Piwik %s was not able to connect to Piwik using your configuration. Check the &raquo;Connect to Piwik&laquo; section below."
 
 
91
  msgstr "WP-Piwik %s konnte sich mit Deiner Konfiguration nicht mit Piwik verbinden. Bitte &uuml;berprf&uuml;fe die &raquo;Mit Piwik verbinden&laquo;-Sektion unten."
92
 
93
  #: classes/WP_Piwik/Admin/Settings.php:40
94
  #, php-format
95
+ msgid "WP-Piwik %s has to be connected to Piwik first. Check the &raquo;Connect to Piwik&laquo; section below."
 
 
96
  msgstr "WP-Piwik %s muss zun&auml;chst mit Piwik verbunden werden. Bitte &uuml;berprf&uuml;fe die &raquo;Mit Piwik verbinden&laquo;-Sektion unten."
97
 
98
  #: classes/WP_Piwik/Admin/Settings.php:44
116
  msgstr "Danksagungen"
117
 
118
  #: classes/WP_Piwik/Admin/Settings.php:79
119
+ 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"
 
 
 
 
120
  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 "
121
 
122
  #: classes/WP_Piwik/Admin/Settings.php:79
132
  msgstr "in der Cloud"
133
 
134
  #: classes/WP_Piwik/Admin/Settings.php:82
135
+ msgid "Neither cURL nor fopen are available. So WP-Piwik can not use the HTTP API and not connect to Piwik Pro."
 
 
136
  msgstr "Weder cURL noch fopen ist verfügbar. Deswegen kann WP-Piwik die HTTP-API nicht verwenden und auch nicht zu Piwik Pro verbinden."
137
 
138
+ #: classes/WP_Piwik/Admin/Settings.php:82 classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
 
139
  msgid "More information"
140
  msgstr "Weitere Informationen"
141
 
143
  msgid "You can choose between three connection methods:"
144
  msgstr "Du kannst zwischen drei Verbindungsmöglichkeiten wählen:"
145
 
146
+ #: classes/WP_Piwik/Admin/Settings.php:84 classes/WP_Piwik/Admin/Settings.php:87
 
147
  msgid "Self-hosted (HTTP API, default)"
148
  msgstr "Selbst-gehostet (HTTP API, Standard)"
149
 
150
  #: classes/WP_Piwik/Admin/Settings.php:84
151
+ 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)."
 
 
152
  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)."
153
 
154
+ #: classes/WP_Piwik/Admin/Settings.php:84 classes/WP_Piwik/Admin/Settings.php:88
 
155
  msgid "Self-hosted (PHP API)"
156
  msgstr "Selbst-gehostet (PHP AP)"
157
 
158
  #: classes/WP_Piwik/Admin/Settings.php:84
159
+ 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."
 
 
160
  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."
161
 
162
+ #: classes/WP_Piwik/Admin/Settings.php:84 classes/WP_Piwik/Admin/Settings.php:89
 
163
  msgid "Cloud-hosted (Piwik Pro)"
164
  msgstr "In der Cloud (Piwik Pro)"
165
 
166
  #: classes/WP_Piwik/Admin/Settings.php:84
167
+ msgid "If you are using a cloud-hosted Piwik by Piwik Pro, you can simply use this option."
 
 
168
  msgstr "Wenn Du ein Piwik in der Cloud von Piwik Pro verwendest, kannst Du einfach diese Option w&auml;hlen."
169
 
170
  #: classes/WP_Piwik/Admin/Settings.php:85
180
  msgstr "Piwik URL"
181
 
182
  #: classes/WP_Piwik/Admin/Settings.php:92
183
+ msgid "Enter your Piwik URL. This is the same URL you use to access your Piwik instance, e.g. http://www.example.com/piwik/."
 
 
184
  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/."
185
 
186
  #: classes/WP_Piwik/Admin/Settings.php:93
196
  msgstr "Piwik-Benutzer"
197
 
198
  #: classes/WP_Piwik/Admin/Settings.php:94
199
+ msgid "Enter your Piwik Pro username. It is also part of your URL: http://USERNAME.piwik.pro."
 
 
200
  msgstr "Gib hier Deinen Piwik Pro Benutzernamen an. Er ist auch Teil Deiner URL: http://USERNAME.piwik.pro."
201
 
202
  #: classes/WP_Piwik/Admin/Settings.php:95
204
  msgstr "Auth Token"
205
 
206
  #: classes/WP_Piwik/Admin/Settings.php:95
207
+ msgid "Enter your Piwik auth token here. It is an alphanumerical code like 0a1b2c34d56e78901fa2bc3d45678efa."
 
 
208
  msgstr "Gib hier Dein Piwik Auth Token an. Es ist ein alphanumerische Code wie 0a1b2c34d56e78901fa2bc3d45678efa."
209
 
210
  #: classes/WP_Piwik/Admin/Settings.php:95
217
  msgstr "Auto-Konfiguration"
218
 
219
  #: classes/WP_Piwik/Admin/Settings.php:100
220
+ 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."
 
 
221
  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."
222
 
223
  #: classes/WP_Piwik/Admin/Settings.php:106
236
  msgid "Piwik default date"
237
  msgstr "Piwik Standard-Datum"
238
 
239
+ #: classes/WP_Piwik/Admin/Settings.php:123 classes/WP_Piwik/Admin/Settings.php:136
 
240
  msgid "Today"
241
  msgstr "Heute"
242
 
243
+ #: classes/WP_Piwik/Admin/Settings.php:124 classes/WP_Piwik/Admin/Settings.php:135
 
244
  msgid "Yesterday"
245
  msgstr "Gestern"
246
 
272
  msgid "Display SEO ranking data on statistics page."
273
  msgstr "Zeige SEO-Ranking-Daten auf der Statistiken-Seite."
274
 
275
+ #: classes/WP_Piwik/Admin/Settings.php:131 classes/WP_Piwik/Admin/Settings.php:142
 
276
  msgid "Slow!"
277
  msgstr "Langsam!"
278
 
280
  msgid "Dashboard overview"
281
  msgstr "Dashboard Übersicht"
282
 
283
+ #: classes/WP_Piwik/Admin/Settings.php:134 classes/WP_Piwik/Admin/Settings.php:172 classes/WP_Piwik/Admin/Settings.php:174 classes/WP_Piwik/Admin/Settings.php:195
 
 
 
284
  msgid "Disabled"
285
  msgstr "Deaktiviert"
286
 
361
  msgstr "Du kannst zwischen vier Tracking-Code-Varianten wählen:"
362
 
363
  #: classes/WP_Piwik/Admin/Settings.php:172
364
+ 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."
 
 
 
365
  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."
366
 
367
+ #: classes/WP_Piwik/Admin/Settings.php:172 classes/WP_Piwik/Admin/Settings.php:175
 
368
  msgid "Default tracking"
369
  msgstr "Standard-Tracking"
370
 
372
  msgid "WP-Piwik will use Piwik's standard tracking code."
373
  msgstr "WP-Piwik verwendet den Standard Tracking-Code von Piwik."
374
 
375
+ #: classes/WP_Piwik/Admin/Settings.php:172 classes/WP_Piwik/Admin/Settings.php:176
 
376
  msgid "Use js/index.php"
377
  msgstr "Nutze js/index.php"
378
 
379
  #: classes/WP_Piwik/Admin/Settings.php:172
380
+ 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."
 
 
381
  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."
382
 
383
  #: classes/WP_Piwik/Admin/Settings.php:172
385
  msgid "See %sreadme file%s."
386
  msgstr "Siehe %sReadme-Datei%s."
387
 
388
+ #: classes/WP_Piwik/Admin/Settings.php:172 classes/WP_Piwik/Admin/Settings.php:177
 
389
  msgid "Use proxy script"
390
  msgstr "Verwende Proxy-Skript"
391
 
393
  msgid "Use this tracking code to not reveal the Piwik server URL."
394
  msgstr "Verwende diesen Tracking-Code, um die URL zu Deinem Piwik-Sever nicht offenzulegen."
395
 
396
+ #: classes/WP_Piwik/Admin/Settings.php:172 classes/WP_Piwik/Admin/Settings.php:192 classes/WP_Piwik/Admin/Settings.php:202
 
 
397
  #, php-format
398
  msgid "See %sPiwik FAQ%s."
399
  msgstr "Siehe %sPiwik FAQ%s."
400
 
401
+ #: classes/WP_Piwik/Admin/Settings.php:172 classes/WP_Piwik/Admin/Settings.php:178
 
402
  msgid "Enter manually"
403
  msgstr "Manuelle Eingabe"
404
 
405
  #: classes/WP_Piwik/Admin/Settings.php:172
406
+ 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."
 
 
 
407
  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."
408
 
409
  #: classes/WP_Piwik/Admin/Settings.php:172
431
  msgstr "Kopfbereich"
432
 
433
  #: classes/WP_Piwik/Admin/Settings.php:186
434
+ msgid "Choose whether the JavaScript code is added to the footer or the header."
 
435
  msgstr "W&auml;hle, ob der JavaScript-Code im Footer oder im Header eingef&uuml;gt werden soll."
436
 
437
  #: classes/WP_Piwik/Admin/Settings.php:188
446
  msgid "Adds the &lt;noscript&gt; code to your footer."
447
  msgstr "F&uuml;gt den &lt;noscript&gt;-Code im Footer ein."
448
 
449
+ #: classes/WP_Piwik/Admin/Settings.php:190 classes/WP_Piwik/Admin/Settings.php:192
 
450
  msgid "Disabled in proxy mode."
451
  msgstr "Im Proxy-Modus deaktiviert."
452
 
471
  msgstr "Tracke nur sichtbare Content-Bereiche"
472
 
473
  #: classes/WP_Piwik/Admin/Settings.php:198
474
+ msgid "Content tracking allows you to track interaction with the content of a web page or application."
 
 
475
  msgstr "Das Content-Tracking erlaubt es Dir, Interaktionen mit dem Inhalt einer Webseite oder -anwendung zu tracken."
476
 
477
+ #: classes/WP_Piwik/Admin/Settings.php:198 classes/WP_Piwik/Admin/Settings.php:200 classes/WP_Piwik/Admin/Settings.php:204 classes/WP_Piwik/Admin/Settings.php:206 classes/WP_Piwik/Admin/Settings.php:208 classes/WP_Piwik/Admin/Settings.php:229 classes/WP_Piwik/Admin/Settings.php:231 classes/WP_Piwik/Admin/Settings.php:235
 
 
 
 
 
 
 
478
  #, php-format
479
  msgid "See %sPiwik documentation%s."
480
  msgstr "Siehe %sPiwik-Dokumentation%s."
492
  msgstr "404-Tracking"
493
 
494
  #: classes/WP_Piwik/Admin/Settings.php:202
495
+ msgid "WP-Piwik can automatically add a 404-category to track 404-page-visits."
 
496
  msgstr "WP-Piwik kann automatisch eine eigene Kategorie f&uuml;r 404-Seiten hinzuf&uuml;gen."
497
 
498
  #: classes/WP_Piwik/Admin/Settings.php:204
516
  msgstr "F&uuml;ge weitere Dateitypen f&uuml;r das Download-Tracking hinzu."
517
 
518
  #: classes/WP_Piwik/Admin/Settings.php:208
519
+ msgid "Add file extensions for download tracking, divided by a vertical bar (&#124;)."
 
 
520
  msgstr "F&uuml;ge Dateierweiterung zum Download-Tracking hinzu. Trenne mehrere Erweiterung durch einen senkrechten Strich (&#124;)."
521
 
522
  #: classes/WP_Piwik/Admin/Settings.php:210
532
  msgstr "Cookie-Lebensdauer beschr&auml;nken"
533
 
534
  #: classes/WP_Piwik/Admin/Settings.php:212
535
+ msgid "You can limit the cookie lifetime to avoid tracking your users over a longer period as necessary."
 
 
536
  msgstr "Du kannst die Cookie-Lebenszeit begrenzen, um Deine Besucher nicht länger als notwendig zu tracken."
537
 
538
  #: classes/WP_Piwik/Admin/Settings.php:214
552
  msgstr "Admin-Seiten tracken"
553
 
554
  #: classes/WP_Piwik/Admin/Settings.php:220
555
+ msgid "Enable to track users on admin pages (remember to configure the tracking filter appropriately)."
 
 
556
  msgstr "Aktivieren, um Nutzer auf Admin-Seiten zu z&auml;hlen (bitte den Tracking Filter entsprechend konfigurieren)."
557
 
558
  #: classes/WP_Piwik/Admin/Settings.php:223
572
  msgstr "F&uuml;gt ein *.-Pr&auml;fix zur Cookie Domain hinzu."
573
 
574
  #: classes/WP_Piwik/Admin/Settings.php:231
575
+ msgid "Do not count subdomains as outlink"
576
  msgstr "Werte Subdomains nicht als ausgehenden Link"
577
 
578
  #: classes/WP_Piwik/Admin/Settings.php:231
604
  msgstr "Schl&uuml;sselwort: Name des Beitrags."
605
 
606
  #: classes/WP_Piwik/Admin/Settings.php:242
607
+ 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."
 
 
608
  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."
609
 
610
  #: classes/WP_Piwik/Admin/Settings.php:244
665
  msgstr "Siehe %sdie CloudFlare Knowledge Base%s."
666
 
667
  #: classes/WP_Piwik/Admin/Settings.php:258
668
+ msgid "Adds data-cfasync=false to the script tag, e.g., to ask Rocket Loader to ignore the script. "
 
 
669
  msgstr "F&uuml;ge data-cfasync=false zum Script-Tag hinzu. Damit wird z.B. Rocket Loader aufgefordert, das Skript zu ignorieren."
670
 
671
  #: classes/WP_Piwik/Admin/Settings.php:260
693
  msgstr "https (SSL)"
694
 
695
  #: classes/WP_Piwik/Admin/Settings.php:268
696
+ msgid "Choose if you want to explicitly force Piwik to use HTTP or HTTPS. Does not work with a CDN URL."
 
 
697
  msgstr "W&auml;hle aus, ob Du Piwik ausdr&uuml;cklich zwingen willst, HTTP oder HTTPS zu verwenden. Funktioniert nicht mit einer CDN URL."
698
 
699
  #: classes/WP_Piwik/Admin/Settings.php:427
708
  msgid "My Amazon.de wishlist"
709
  msgstr "Meine Wunschliste bei Amazon.de"
710
 
711
+ #: classes/WP_Piwik/Admin/Settings.php:470 classes/WP_Piwik/Admin/Settings.php:517
 
712
  msgid "Please don't forget to vote the compatibility at the"
713
  msgstr "Bitte denke daran, eine Kompatibilit&auml;tsbewertung abzugeben:"
714
 
725
  msgstr " und allen, die WP-Piwik flattrn"
726
 
727
  #: classes/WP_Piwik/Admin/Settings.php:502
728
+ 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)."
 
 
 
 
729
  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."
730
 
731
  #: classes/WP_Piwik/Admin/Settings.php:503
745
  msgstr "f&uuml;r eure &Uuml;bersetzungsarbeit"
746
 
747
  #: classes/WP_Piwik/Admin/Settings.php:506
748
+ 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."
 
 
 
749
  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."
750
 
751
  #: classes/WP_Piwik/Admin/Settings.php:507
752
+ msgid "Thank <strong>you</strong> for using my plugin. It is the best commendation if my piece of code is really used!"
 
 
753
  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!"
754
 
755
  #: classes/WP_Piwik/Admin/Settings.php:516
765
  msgstr "Fehlersuche"
766
 
767
  #: classes/WP_Piwik/Admin/Settings.php:520
768
+ msgid "Either allow_url_fopen has to be enabled <em>or</em> cURL has to be available:"
 
 
769
  msgstr "Entweder allow_url_fopen muss aktiviert <em>oder</em> cURL muss verf&uuml;gbar sein:"
770
 
771
  #: classes/WP_Piwik/Admin/Settings.php:523
772
  msgid "cURL is"
773
  msgstr "cURL ist"
774
 
775
+ #: classes/WP_Piwik/Admin/Settings.php:524 classes/WP_Piwik/Admin/Settings.php:529
 
776
  msgid "not"
777
  msgstr "nicht"
778
 
864
  msgid "Set custom variables for a page view"
865
  msgstr "Definiere custom variables f&uuml;r einen Seitenaufruf."
866
 
867
+ #: classes/WP_Piwik/Widget.php:91 classes/WP_Piwik/Widget/BrowserDetails.php:35 classes/WP_Piwik/Widget/Browsers.php:35 classes/WP_Piwik/Widget/Chart.php:41 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
868
+ #: 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/Systems.php:33 classes/WP_Piwik/Widget/Visitors.php:35
 
 
 
 
 
 
 
 
 
869
  msgid "Piwik error"
870
  msgstr "Piwik-Fehler"
871
 
872
+ #: classes/WP_Piwik/Widget.php:100 classes/WP_Piwik/Widget/BrowserDetails.php:37 classes/WP_Piwik/Widget/Browsers.php:37 classes/WP_Piwik/Widget/Screens.php:37 classes/WP_Piwik/Widget/Systems.php:35 classes/WP_Piwik/Widget/Visitors.php:57
 
 
 
 
 
873
  msgid "Unique"
874
  msgstr "Unique"
875
 
876
+ #: classes/WP_Piwik/Widget.php:102 classes/WP_Piwik/Widget/Plugins.php:25 classes/WP_Piwik/Widget/Visitors.php:57
 
877
  msgid "Visits"
878
  msgstr "Besuche"
879
 
897
  msgid "Browser Details"
898
  msgstr "Browser-Details"
899
 
900
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:37 classes/WP_Piwik/Widget/Browsers.php:37
 
901
  msgid "Browser"
902
  msgstr "Browser"
903
 
904
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:37 classes/WP_Piwik/Widget/Browsers.php:37 classes/WP_Piwik/Widget/Plugins.php:25 classes/WP_Piwik/Widget/Screens.php:37 classes/WP_Piwik/Widget/Systems.php:35
 
 
 
 
905
  msgid "Percent"
906
  msgstr "Prozent"
907
 
908
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:53 classes/WP_Piwik/Widget/Browsers.php:53 classes/WP_Piwik/Widget/Screens.php:53 classes/WP_Piwik/Widget/Systems.php:51
 
 
 
909
  msgid "Others"
910
  msgstr "Andere"
911
 
913
  msgid "Browsers"
914
  msgstr "Browser"
915
 
916
+ #: classes/WP_Piwik/Widget/Chart.php:17 classes/WP_Piwik/Widget/Overview.php:40 classes/WP_Piwik/Widget/Post.php:37 classes/WP_Piwik/Widget/Visitors.php:17
 
 
917
  msgid "Visitors"
918
  msgstr "Besucher"
919
 
920
  #: classes/WP_Piwik/Widget/Chart.php:69
921
+ msgid "The graph contains the values shown in the table below (visitors / unique / bounces). The red line show a linear trendline (unique)."
 
 
922
  msgstr "Der Graph zeigt die Werte aus der Besucher-Tabelle (Besucher / Unique / Abspr&uuml;nge). Die rote Linie zeigt eine lineare Trendlinie (Unique)."
923
 
924
  #: classes/WP_Piwik/Widget/Keywords.php:16
925
  msgid "Keywords"
926
  msgstr "Keywords"
927
 
928
+ #: classes/WP_Piwik/Widget/Noresult.php:16 classes/WP_Piwik/Widget/Search.php:16
 
929
  msgid "Site Search"
930
  msgstr "Seitensuche"
931
 
932
+ #: classes/WP_Piwik/Widget/Noresult.php:25 classes/WP_Piwik/Widget/Search.php:25
 
933
  msgid "Keyword"
934
  msgstr "Keyword"
935
 
936
+ #: classes/WP_Piwik/Widget/Noresult.php:25 classes/WP_Piwik/Widget/Search.php:25
 
937
  msgid "Requests"
938
  msgstr "Anfragen"
939
 
940
+ #: classes/WP_Piwik/Widget/Noresult.php:25 classes/WP_Piwik/Widget/Search.php:25 classes/WP_Piwik/Widget/Visitors.php:57
 
 
941
  msgid "Bounced"
942
  msgstr "Abspr&uuml;nge"
943
 
1031
 
1032
  #: wp-piwik.php:60
1033
  #, php-format
1034
+ msgid "WP-Piwik requires at least PHP 5.3. You are using the deprecated version %s. Please update PHP to use WP-Piwik."
 
 
1035
  msgstr "WP-Piwik ben&ouml;tigt zumindest PHP 5.3. Du verwendest die veraltete Version %s. Bitte aktualisiere PHP um WP-Piwik zu nutzen."
languages/wp-piwik-fr_FR.mo CHANGED
Binary file
languages/wp-piwik-fr_FR.po CHANGED
@@ -1,258 +1,1156 @@
1
- # WP-Piwik 0.3.0 - French language file
2
- # Copyright (C) 2009 Andre Braekling
3
- # This file is distributed under the same license as the WP-Piwik package.
4
- # Andre Braekling <webmaster@braekling.de>, 2009.
5
- #
6
  msgid ""
7
  msgstr ""
8
- "Project-Id-Version: \n"
9
- "Report-Msgid-Bugs-To: \n"
10
- "POT-Creation-Date: \n"
11
- "PO-Revision-Date: 2010-04-28 15:44+0100\n"
12
- "Last-Translator: fuburize <fuburize@gmail.com>\n"
13
- "Language-Team: \n"
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
 
18
- #: dashboard/browsers.php:8
19
- #: dashboard/browsers.php:37
20
- msgid "Browser"
21
- msgstr "Navigateur"
22
 
23
- msgid "Others"
24
- msgstr "Autres"
 
25
 
26
- msgid "Resolution"
27
- msgstr "Résolution"
 
28
 
29
- msgid "Operating System"
30
- msgstr "Système d'exploitation"
 
31
 
32
- msgid "Shortcut"
33
- msgstr "Raccourci"
 
34
 
35
- msgid "Advertisement"
36
- msgstr "Publicité"
 
37
 
38
- msgid "Looking for premium themes? Visit "
39
- msgstr "Vous cherchez des Premium-Themes ? Visitez "
 
40
 
41
- msgid "Avg"
42
- msgstr "Moyenne"
 
 
43
 
44
- msgid "Sum"
45
- msgstr "Somme"
 
 
46
 
47
- msgid "Unique TOTAL"
48
- msgstr "Unique TOTAL"
 
 
 
 
49
 
50
- #: dashboard/browsers.php:37
51
- #: dashboard/keywords.php:13
52
- #: dashboard/visitors.php:56
53
- #: dashboard/websites.php:13
54
- msgid "Unique"
55
- msgstr "Unique"
56
 
57
- #: dashboard/browsers.php:37
58
- msgid "Percent"
59
- msgstr "Pourcentage"
 
 
 
60
 
61
- #: dashboard/keywords.php:8
62
- msgid "Keywords"
63
- msgstr "Mots Clés"
64
 
65
- #: dashboard/keywords.php:13
66
- msgid "Keyword"
67
- msgstr "Mots clés"
68
 
69
- #: dashboard/overview.php:8
70
- msgid "Overview"
71
- msgstr "Vue d'ensemble"
72
 
73
- #: dashboard/overview.php:16
74
- #: dashboard/visitors.php:21
75
- msgid "Visitors"
76
- msgstr "Visiteurs"
77
 
78
- #: dashboard/overview.php:17
79
- msgid "Unique visitors"
80
- msgstr "Visiteurs uniques"
81
 
82
- #: dashboard/overview.php:18
83
- msgid "Page views"
84
- msgstr "Pages vues"
 
 
 
 
85
 
86
- #: dashboard/overview.php:19
87
- msgid "Max. page views in one visit"
88
- msgstr "Pages vues max.par visite"
89
 
90
- #: dashboard/overview.php:20
91
- msgid "Total time spent by visitors"
92
- msgstr "Temps total passé par les visiteurs"
93
 
94
- #: dashboard/overview.php:21
95
- msgid "Bounce count"
96
- msgstr "Nombre de sauts"
97
 
98
- #: dashboard/visitors.php:56
99
- msgid "Date"
100
- msgstr "Date"
 
 
101
 
102
- #: dashboard/visitors.php:56
103
- msgid "Visits"
104
- msgstr "Visites"
 
105
 
106
- #: dashboard/visitors.php:56
107
- msgid "Bounced"
108
- msgstr "Rebonds"
109
 
110
- #: dashboard/websites.php:8
111
- msgid "Websites"
112
- msgstr "Sites web"
 
113
 
114
- #: dashboard/websites.php:13
115
- msgid "Website"
116
- msgstr "Site web"
 
 
117
 
118
- #: wp-piwik.php:49
119
- #: wp-piwik.php:147
120
- msgid "Piwik Statistics"
121
- msgstr "Statistiques Piwik"
122
 
123
- #. #-#-#-#-# plugin.pot (PACKAGE VERSION) #-#-#-#-#
124
- #. Plugin Name of an extension
125
- #: wp-piwik.php:49
126
- msgid "WP-Piwik"
127
- msgstr "WP-Piwik"
128
 
129
- #: wp-piwik.php:53
130
- #: wp-piwik.php:185
131
- msgid "WP-Piwik Settings"
132
- msgstr "Paramètres WP-Piwik"
133
 
134
- #: wp-piwik.php:59
135
- msgid "Settings"
136
- msgstr "Paramètres"
 
 
137
 
138
- #: wp-piwik.php:112
139
- msgid "Remote access to Piwik not possible. Enable allow_url_fopen or CURL."
140
- msgstr "Accès à distance à Piwik impossible. Activez allow_url_fopen ou CURL."
141
 
142
- #: wp-piwik.php:190
143
- msgid "Account settings"
144
- msgstr "Paramètres du compte"
145
 
146
- #: wp-piwik.php:192
147
  msgid "Piwik URL"
148
  msgstr "Piwik URL"
149
 
150
- #: wp-piwik.php:196
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
151
  msgid "Auth token"
152
- msgstr "Auth Token"
153
 
154
- #: wp-piwik.php:200
155
- 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;."
156
- 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\"."
 
 
157
 
158
- #: wp-piwik.php:205
159
- #: wp-piwik.php:207
160
- msgid "An error occured"
161
- msgstr "Une erreur s'est produite"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
162
 
163
- #: wp-piwik.php:205
164
- msgid "Please check URL and auth token. You need at least view access to one site."
165
- msgstr "Vérifiez l'URL et Auth Token. Vous devez posséder les droits d'accès sur au moins un site."
166
 
167
- #: wp-piwik:php:215
168
- msgid "Choose site"
169
- msgstr "Choisissez un site"
170
 
171
- #: wp-piwik.php:221
172
- msgid "If your template uses wp_footer(), WP-Piwik can automatically add the Piwik javascript code to your blog."
173
- msgstr "Si votre thème utilise wp_footer(), WP-Piwik peut ajouter automatiquement le code javascript Piwik à votre blog."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
174
 
175
- #: wp-piwik.php:226
176
- msgid "Add script to wp_footer()"
177
- msgstr "Ajouter le script à wp_footer()"
178
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
179
  msgid "Tracking filter"
180
  msgstr "Filtre de suivi"
181
 
182
- msgid "Choose users by user role you do <strong>not</strong> want to track. Requires enabled &quot;Add script to wp_footer()&quot;-functionality."
183
- 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;"
184
-
185
  msgid "Choose users by user role you do <strong>not</strong> want to track."
186
  msgstr "Choisissez, pour chaque rôle, ceux que <strong>vous ne souhaitez pas</strong> inclure dans le suivi."
187
 
188
- msgid "Display statistics to"
189
- msgstr "Affichez les statistiques aux"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
190
 
191
- msgid "or above"
192
- msgstr "ou rôle supérieur"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
193
 
194
- msgid "Minimum user level required to display statistics page."
195
- msgstr "Niveau de rôle minimum requis pour afficher les statistiques."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
196
 
197
- #: wp-piwik.php:229
198
- msgid "Save settings"
199
- msgstr "Sauvegarder les changements"
200
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
201
  msgid "Currently shown stats:"
202
  msgstr "Stats affichées actuellement : "
203
 
204
- msgid "Change"
205
- msgstr "Changer"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
206
 
207
- msgid "WPMU-Piwik Settings"
208
- msgstr "Paramètres WPMU-Piwik"
 
209
 
210
- 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."
211
- 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."
 
212
 
213
- 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!"
214
- 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."
 
215
 
216
- msgid "WP-Piwik uses the Google Chart API to create graphs. To avoid this, just check this box."
217
- msgstr "WP-Piwik utilise la Google Chart API pour générer les graphiques. Si vous ne le souhaitez pas, cochez cette case."
 
218
 
219
- msgid "Disable Google Chart API"
220
- msgstr "Désactiver Google Chart API"
 
221
 
222
- #. Plugin URI of an extension
223
- msgid "http://dev.braekling.de/wordpress-plugins/dev/wp-piwik/index.html"
224
- msgstr "http://dev.braekling.de/wordpress-plugins/dev/wp-piwik/index.html"
225
 
226
- #. Description of an extension
227
- msgid "Adds Piwik stats to your dashboard menu and Piwik code to your wordpress footer."
228
- msgstr "Ajoute des statistiques Piwik au menu de votre Tableau de bord et le code Piwik au footer de votre wordpress."
229
 
230
- #. Author of an extension
231
- msgid "Andr&eacute; Br&auml;kling"
232
- msgstr "Andr&eacute; Br&auml;kling"
233
 
234
- #. Author URI of an extension
235
- msgid "http://www.braekling.de"
236
- msgstr "http://www.braekling.de"
237
 
238
- msgid "last 30 days"
239
- msgstr "derniers 30 jours"
 
240
 
241
- msgid "today"
242
- msgstr "aujourd'hui"
 
243
 
244
- msgid "yesterday"
245
- msgstr "hier"
 
246
 
247
- msgid "No"
248
- msgstr "Non"
 
249
 
250
- msgid "Yes"
251
- msgstr "Oui"
 
252
 
253
- msgid "Show overview on WordPress dashboard"
254
- msgstr "Montrer une vue d'ensemble sur le Tableau de bord de wordpress"
 
255
 
256
- msgid "Show Piwik link in overview"
257
- msgstr "Afficher un lien vers Piwik dans la vue d'ensemble"
 
 
 
 
 
258
 
 
 
 
 
 
 
 
 
 
 
1
+ #
2
+ # Translators:
3
+ # Andre Braekling <webmaster@braekling.de>, 2009
4
+ # Franck, 2015
 
5
  msgid ""
6
  msgstr ""
7
+ "Project-Id-Version: WP-Piwik\n"
8
+ "POT-Creation-Date: 2015-05-10 16:33+0100\n"
9
+ "PO-Revision-Date: 2015-05-15 18:43+0000\n"
10
+ "Last-Translator: André Bräkling <andre@braekling.de>\n"
11
+ "Language-Team: French (France) (http://www.transifex.com/projects/p/wp-piwik/language/fr_FR/)\n"
 
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
+ "Language: fr_FR\n"
16
+ "Plural-Forms: nplurals=2; plural=(n > 1);\n"
17
+ "X-Generator: Poedit 1.7.5\n"
18
+ "X-Poedit-Basepath: .\n"
19
+ "X-Poedit-KeywordsList: __;_e\n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+ "X-Poedit-SourceCharset: UTF-8\n"
22
+
23
+ #: classes/WP_Piwik.php:185
24
+ #, php-format
25
+ msgid "%s %s installed."
26
+ msgstr "%s %s installé."
27
+
28
+ #: classes/WP_Piwik.php:185
29
+ msgid "Next you should connect to Piwik"
30
+ msgstr "Ensuite, vous devez vous connecter à Piwik"
31
+
32
+ #: classes/WP_Piwik.php:215
33
+ #, php-format
34
+ msgid "%s updated to %s."
35
+ msgstr "%s mis à jour vers %s."
36
+
37
+ #: classes/WP_Piwik.php:215
38
+ msgid "Please validate your configuration"
39
+ msgstr "Merci de valider votre configuration"
40
+
41
+ #: classes/WP_Piwik.php:247 classes/WP_Piwik.php:463
42
+ msgid "Settings"
43
+ msgstr "Paramètres"
44
 
45
+ #: classes/WP_Piwik.php:250
46
+ msgid "Important"
47
+ msgstr "Important"
 
48
 
49
+ #: classes/WP_Piwik.php:331 classes/WP_Piwik.php:353
50
+ msgid "Piwik Statistics"
51
+ msgstr "Statistiques Piwik"
52
 
53
+ #: classes/WP_Piwik.php:901
54
+ msgid "An error occured"
55
+ msgstr "Une erreur s'est produite"
56
 
57
+ #: classes/WP_Piwik.php:901 classes/WP_Piwik/Admin/Settings.php:62
58
+ msgid "Support"
59
+ msgstr "Support"
60
 
61
+ #: classes/WP_Piwik.php:1150
62
+ msgid "Cheatin&#8217; uh?"
63
+ msgstr "Alors, on triche&nbsp;?"
64
 
65
+ #: classes/WP_Piwik/Admin/Settings.php:19
66
+ msgid "Changes saved."
67
+ msgstr "Modifications enregistrées."
68
 
69
+ #: classes/WP_Piwik/Admin/Settings.php:30
70
+ msgid "Thanks for using WP-Piwik!"
71
+ msgstr "Merci d'utiliser WP-Piwik&nbsp;!"
72
 
73
+ #: classes/WP_Piwik/Admin/Settings.php:35
74
+ #, php-format
75
+ msgid "WP-Piwik %s is successfully connected to Piwik %s."
76
+ msgstr "WP-Piwik %s est connecté avec succès à Piwik %s."
77
 
78
+ #: classes/WP_Piwik/Admin/Settings.php:35
79
+ #, php-format
80
+ msgid "You are running WordPress %s."
81
+ msgstr "Vous utilisez WordPress %s."
82
 
83
+ #: classes/WP_Piwik/Admin/Settings.php:35
84
+ #, php-format
85
+ msgid ""
86
+ "You are running a WordPress %s blog network (WPMU). WP-Piwik will handle "
87
+ "your sites as different websites."
88
+ msgstr "Vous utilisez le réseau de blogs (WPMU) d'un WordPress %s . WP-Piwik va gérer vos sites comme des sites distincts."
89
 
90
+ #: classes/WP_Piwik/Admin/Settings.php:37
91
+ #, php-format
92
+ msgid ""
93
+ "WP-Piwik %s was not able to connect to Piwik using your configuration. Check"
94
+ " the &raquo;Connect to Piwik&laquo; section below."
95
+ 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;."
96
 
97
+ #: classes/WP_Piwik/Admin/Settings.php:40
98
+ #, php-format
99
+ msgid ""
100
+ "WP-Piwik %s has to be connected to Piwik first. Check the &raquo;Connect to "
101
+ "Piwik&laquo; section below."
102
+ msgstr "WP-Piwik %s doit en premier être connecté à Piwik. Vérifiez la section ci-dessous &raquo;&nbsp;Connecter à Piwik&nbsp;&laquo; à Piwik&laquo;."
103
 
104
+ #: classes/WP_Piwik/Admin/Settings.php:44
105
+ msgid "Connect to Piwik"
106
+ msgstr "Connecter à Piwik"
107
 
108
+ #: classes/WP_Piwik/Admin/Settings.php:49
109
+ msgid "Show Statistics"
110
+ msgstr "Afficher les statistiques"
111
 
112
+ #: classes/WP_Piwik/Admin/Settings.php:53
113
+ msgid "Enable Tracking"
114
+ msgstr "Activer le suivi"
115
 
116
+ #: classes/WP_Piwik/Admin/Settings.php:58
117
+ msgid "Expert Settings"
118
+ msgstr "Réglages expert"
 
119
 
120
+ #: classes/WP_Piwik/Admin/Settings.php:66
121
+ msgid "Credits"
122
+ msgstr "Crédits"
123
 
124
+ #: classes/WP_Piwik/Admin/Settings.php:79
125
+ msgid ""
126
+ "WP-Piwik is a WordPress plugin to show a selection of Piwik stats in your "
127
+ "WordPress admin dashboard and to add and configure your Piwik tracking code."
128
+ " To use this you will need your own Piwik instance. If you do not already "
129
+ "have a Piwik setup, you have two simple options: use either"
130
+ 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"
131
 
132
+ #: classes/WP_Piwik/Admin/Settings.php:79
133
+ msgid "Self-hosted"
134
+ msgstr "auto-hébergé"
135
 
136
+ #: classes/WP_Piwik/Admin/Settings.php:79
137
+ msgid "or"
138
+ msgstr "ou"
139
 
140
+ #: classes/WP_Piwik/Admin/Settings.php:79
141
+ msgid "Cloud-hosted"
142
+ msgstr "hébergé dans un Cloud"
143
 
144
+ #: classes/WP_Piwik/Admin/Settings.php:82
145
+ msgid ""
146
+ "Neither cURL nor fopen are available. So WP-Piwik can not use the HTTP API "
147
+ "and not connect to Piwik Pro."
148
+ 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."
149
 
150
+ #: classes/WP_Piwik/Admin/Settings.php:82
151
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
152
+ msgid "More information"
153
+ msgstr "Plus d'informations"
154
 
155
+ #: classes/WP_Piwik/Admin/Settings.php:84
156
+ msgid "You can choose between three connection methods:"
157
+ msgstr "Vous pouvez choisir entre trois méthodes de connexion&nbsp;:"
158
 
159
+ #: classes/WP_Piwik/Admin/Settings.php:84
160
+ #: classes/WP_Piwik/Admin/Settings.php:87
161
+ msgid "Self-hosted (HTTP API, default)"
162
+ msgstr "Auto-hébergé (API HTTP par défaut)"
163
 
164
+ #: classes/WP_Piwik/Admin/Settings.php:84
165
+ msgid ""
166
+ "This is the default option for a self-hosted Piwik and should work for most "
167
+ "configurations. WP-Piwik will connect to Piwik using http(s)."
168
+ msgstr ""
169
 
170
+ #: classes/WP_Piwik/Admin/Settings.php:84
171
+ #: classes/WP_Piwik/Admin/Settings.php:88
172
+ msgid "Self-hosted (PHP API)"
173
+ msgstr "Auto-hébergé (API PHP)"
174
 
175
+ #: classes/WP_Piwik/Admin/Settings.php:84
176
+ msgid ""
177
+ "Choose this, if your self-hosted Piwik and WordPress are running on the same"
178
+ " machine and you know the full server path to your Piwik instance."
179
+ 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."
180
 
181
+ #: classes/WP_Piwik/Admin/Settings.php:84
182
+ #: classes/WP_Piwik/Admin/Settings.php:89
183
+ msgid "Cloud-hosted (Piwik Pro)"
184
+ msgstr "Hébergé dans un Cloud (Piwik Pro)"
185
 
186
+ #: classes/WP_Piwik/Admin/Settings.php:84
187
+ msgid ""
188
+ "If you are using a cloud-hosted Piwik by Piwik Pro, you can simply use this "
189
+ "option."
190
+ msgstr "Si vous utilisez Piwik hébergé dans un cloud par Piwik Pro, vous pouvez simplement utiliser cette option."
191
 
192
+ #: classes/WP_Piwik/Admin/Settings.php:85
193
+ msgid "Piwik Mode"
194
+ msgstr "Mode Piwik"
195
 
196
+ #: classes/WP_Piwik/Admin/Settings.php:86
197
+ msgid "Disabled (WP-Piwik will not connect to Piwik)"
198
+ msgstr "Désactivé (WP-Piwik ne se connectera pas à Piwik)"
199
 
200
+ #: classes/WP_Piwik/Admin/Settings.php:92
201
  msgid "Piwik URL"
202
  msgstr "Piwik URL"
203
 
204
+ #: classes/WP_Piwik/Admin/Settings.php:92
205
+ msgid ""
206
+ "Enter your Piwik URL. This is the same URL you use to access your Piwik "
207
+ "instance, e.g. http://www.example.com/piwik/."
208
+ 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/."
209
+
210
+ #: classes/WP_Piwik/Admin/Settings.php:93
211
+ msgid "Piwik path"
212
+ msgstr "Chemin Piwik"
213
+
214
+ #: classes/WP_Piwik/Admin/Settings.php:93
215
+ msgid "Enter the file path to your Piwik instance, e.g. /var/www/piwik/."
216
+ msgstr "Entrez le chemin de votre instance Piwik, par exemple /var/www/piwik/."
217
+
218
+ #: classes/WP_Piwik/Admin/Settings.php:94
219
+ msgid "Piwik user"
220
+ msgstr "Utilisateur Piwik"
221
+
222
+ #: classes/WP_Piwik/Admin/Settings.php:94
223
+ msgid ""
224
+ "Enter your Piwik Pro username. It is also part of your URL: "
225
+ "http://USERNAME.piwik.pro."
226
+ msgstr "Entrez votre nom d'utilisateur Piwik Pro. C'est également une partie de votre URL&nbsp;: http://NOMUTILISATEUR.piwik.pro."
227
+
228
+ #: classes/WP_Piwik/Admin/Settings.php:95
229
  msgid "Auth token"
230
+ msgstr "Clef partagée (token_auth)"
231
 
232
+ #: classes/WP_Piwik/Admin/Settings.php:95
233
+ msgid ""
234
+ "Enter your Piwik auth token here. It is an alphanumerical code like "
235
+ "0a1b2c34d56e78901fa2bc3d45678efa."
236
+ msgstr "Entrez votre clef partagée (token_auth) Piwik ici. C'est un code alphanumérique du genre 0a1b2c34d56e78901fa2bc3d45678efa."
237
 
238
+ #: classes/WP_Piwik/Admin/Settings.php:95
239
+ #, php-format
240
+ msgid "See %sWP-Piwik FAQ%s."
241
+ msgstr "Voir la %sFAQ WP-Piwik%s."
242
+
243
+ #: classes/WP_Piwik/Admin/Settings.php:100
244
+ msgid "Auto config"
245
+ msgstr "Auto config"
246
+
247
+ #: classes/WP_Piwik/Admin/Settings.php:100
248
+ msgid ""
249
+ "Check this to automatically choose your blog from your Piwik sites by URL. "
250
+ "If your blog is not added to Piwik yet, WP-Piwik will add a new site."
251
+ 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."
252
+
253
+ #: classes/WP_Piwik/Admin/Settings.php:106
254
+ msgid "Save settings to start estimation."
255
+ msgstr "Enregistrer les réglages pour démarrer l'estimation."
256
+
257
+ #: classes/WP_Piwik/Admin/Settings.php:109
258
+ msgid "Determined site"
259
+ msgstr "Site déterminé"
260
+
261
+ #: classes/WP_Piwik/Admin/Settings.php:114
262
+ msgid "Select site"
263
+ msgstr "Sélectionner le site"
264
+
265
+ #: classes/WP_Piwik/Admin/Settings.php:122
266
+ msgid "Piwik default date"
267
+ msgstr "Date par défaut Piwik"
268
+
269
+ #: classes/WP_Piwik/Admin/Settings.php:123
270
+ #: classes/WP_Piwik/Admin/Settings.php:136
271
+ msgid "Today"
272
+ msgstr "Aujourd'hui"
273
+
274
+ #: classes/WP_Piwik/Admin/Settings.php:124
275
+ #: classes/WP_Piwik/Admin/Settings.php:135
276
+ msgid "Yesterday"
277
+ msgstr "Hier"
278
+
279
+ #: classes/WP_Piwik/Admin/Settings.php:125
280
+ msgid "Current month"
281
+ msgstr "Mois en cours"
282
+
283
+ #: classes/WP_Piwik/Admin/Settings.php:126
284
+ msgid "Last month"
285
+ msgstr "Mois précédent"
286
+
287
+ #: classes/WP_Piwik/Admin/Settings.php:127
288
+ msgid "Current week"
289
+ msgstr "Semaine en cours"
290
+
291
+ #: classes/WP_Piwik/Admin/Settings.php:128
292
+ msgid "Last week"
293
+ msgstr "Semaine précédente"
294
+
295
+ #: classes/WP_Piwik/Admin/Settings.php:129
296
+ msgid "Default date shown on statistics page."
297
+ msgstr "Date affichée par défaut sur la page de statistiques."
298
+
299
+ #: classes/WP_Piwik/Admin/Settings.php:131
300
+ msgid "Show SEO data"
301
+ msgstr "Afficher les données SEO"
302
+
303
+ #: classes/WP_Piwik/Admin/Settings.php:131
304
+ msgid "Display SEO ranking data on statistics page."
305
+ msgstr "Afficher les données de classement SEO sur la page de statistiques."
306
+
307
+ #: classes/WP_Piwik/Admin/Settings.php:131
308
+ #: classes/WP_Piwik/Admin/Settings.php:142
309
+ msgid "Slow!"
310
+ msgstr "Doucement&nbsp;!"
311
+
312
+ #: classes/WP_Piwik/Admin/Settings.php:133
313
+ msgid "Dashboard overview"
314
+ msgstr "Tableau de bord vue d'ensemble"
315
+
316
+ #: classes/WP_Piwik/Admin/Settings.php:134
317
+ #: classes/WP_Piwik/Admin/Settings.php:172
318
+ #: classes/WP_Piwik/Admin/Settings.php:174
319
+ #: classes/WP_Piwik/Admin/Settings.php:195
320
+ msgid "Disabled"
321
+ msgstr "Désactivé"
322
+
323
+ #: classes/WP_Piwik/Admin/Settings.php:137
324
+ msgid "Last 30 days"
325
+ msgstr "30 derniers jours"
326
+
327
+ #: classes/WP_Piwik/Admin/Settings.php:138
328
+ msgid "Enable WP-Piwik dashboard widget &quot;Overview&quot;."
329
+ msgstr "Activer le widget du tableau de bord WP-Piwik &quot;Vue d'ensemble&quot;."
330
+
331
+ #: classes/WP_Piwik/Admin/Settings.php:140
332
+ msgid "Dashboard graph"
333
+ msgstr "Tableau de bord graphique"
334
+
335
+ #: classes/WP_Piwik/Admin/Settings.php:140
336
+ msgid "Enable WP-Piwik dashboard widget &quot;Graph&quot;."
337
+ msgstr "Activer le widget du tableau de bord WP-Piwik &quot;Graphique&quot;."
338
+
339
+ #: classes/WP_Piwik/Admin/Settings.php:142
340
+ msgid "Dashboard SEO"
341
+ msgstr "Tableau de bord SEO"
342
+
343
+ #: classes/WP_Piwik/Admin/Settings.php:142
344
+ msgid "Enable WP-Piwik dashboard widget &quot;SEO&quot;."
345
+ msgstr "Activer le widget du tableau de bord WP-Piwik &quot;SEO&quot;."
346
+
347
+ #: classes/WP_Piwik/Admin/Settings.php:144
348
+ msgid "Show graph on WordPress Toolbar"
349
+ msgstr "Afficher le graphique dans la barre d'outils WordPress"
350
+
351
+ #: classes/WP_Piwik/Admin/Settings.php:144
352
+ msgid "Display a last 30 days visitor graph on WordPress' toolbar."
353
+ msgstr "Afficher un graphique des visiteurs des 30 derniers jours dans la barre d'outils WordPress"
354
+
355
+ #: classes/WP_Piwik/Admin/Settings.php:146
356
+ msgid "Display stats to"
357
+ msgstr "Afficher les stats pour le(s)"
358
+
359
+ #: classes/WP_Piwik/Admin/Settings.php:153
360
+ msgid "Choose user roles allowed to see the statistics page."
361
+ msgstr "Choisissez les rôles utilisateurs autorisés à voir la page de statistiques."
362
+
363
+ #: classes/WP_Piwik/Admin/Settings.php:155
364
+ msgid "Show per post stats"
365
+ msgstr "Afficher les stats par article"
366
+
367
+ #: classes/WP_Piwik/Admin/Settings.php:155
368
+ msgid "Show stats about single posts at the post edit admin page."
369
+ msgstr "Afficher les stats de l'article sur la page admin de modification des articles."
370
+
371
+ #: classes/WP_Piwik/Admin/Settings.php:157
372
+ msgid "Piwik shortcut"
373
+ msgstr "Raccourci Piwik"
374
+
375
+ #: classes/WP_Piwik/Admin/Settings.php:157
376
+ msgid "Display a shortcut to Piwik itself."
377
+ msgstr "Affiche un raccourci vers Piwik lui-même."
378
+
379
+ #: classes/WP_Piwik/Admin/Settings.php:159
380
+ msgid "WP-Piwik display name"
381
+ msgstr "Nom d'affichage WP-Piwik"
382
+
383
+ #: classes/WP_Piwik/Admin/Settings.php:159
384
+ msgid "Plugin name shown in WordPress."
385
+ msgstr "Nom d'extension affichée dans WordPress."
386
+
387
+ #: classes/WP_Piwik/Admin/Settings.php:161
388
+ msgid "Enable shortcodes"
389
+ msgstr "Activer les codes courts"
390
+
391
+ #: classes/WP_Piwik/Admin/Settings.php:161
392
+ msgid "Enable shortcodes in post or page content."
393
+ msgstr "Active les codes courts dans le contenu des articles ou des pages"
394
+
395
+ #: classes/WP_Piwik/Admin/Settings.php:172
396
+ msgid "You can choose between four tracking code modes:"
397
+ msgstr "Vous pouvez choisir entre quatre modes de code de suivi&nbsp;:"
398
+
399
+ #: classes/WP_Piwik/Admin/Settings.php:172
400
+ msgid ""
401
+ "WP-Piwik will not add the tracking code. Use this, if you want to add the "
402
+ "tracking code to your template files or you use another plugin to add the "
403
+ "tracking code."
404
+ 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."
405
+
406
+ #: classes/WP_Piwik/Admin/Settings.php:172
407
+ #: classes/WP_Piwik/Admin/Settings.php:175
408
+ msgid "Default tracking"
409
+ msgstr "Suivi par défaut"
410
+
411
+ #: classes/WP_Piwik/Admin/Settings.php:172
412
+ msgid "WP-Piwik will use Piwik's standard tracking code."
413
+ msgstr "WP-Piwik utilisera le code de suivi standard de Piwik."
414
+
415
+ #: classes/WP_Piwik/Admin/Settings.php:172
416
+ #: classes/WP_Piwik/Admin/Settings.php:176
417
+ msgid "Use js/index.php"
418
+ msgstr "Utiliser js/index.php"
419
+
420
+ #: classes/WP_Piwik/Admin/Settings.php:172
421
+ msgid ""
422
+ "You can choose this tracking code, to deliver a minified proxy code and to "
423
+ "avoid using the files called piwik.js or piwik.php."
424
+ 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."
425
+
426
+ #: classes/WP_Piwik/Admin/Settings.php:172
427
+ #, php-format
428
+ msgid "See %sreadme file%s."
429
+ msgstr "Voir le %sfichier lisez-moi%s"
430
+
431
+ #: classes/WP_Piwik/Admin/Settings.php:172
432
+ #: classes/WP_Piwik/Admin/Settings.php:177
433
+ msgid "Use proxy script"
434
+ msgstr "Utiliser une code proxy"
435
+
436
+ #: classes/WP_Piwik/Admin/Settings.php:172
437
+ msgid "Use this tracking code to not reveal the Piwik server URL."
438
+ msgstr "Utilisez ce code de suivi pour ne pas révéler l'URL du serveur Piwik."
439
+
440
+ #: classes/WP_Piwik/Admin/Settings.php:172
441
+ #: classes/WP_Piwik/Admin/Settings.php:192
442
+ #: classes/WP_Piwik/Admin/Settings.php:202
443
+ #, php-format
444
+ msgid "See %sPiwik FAQ%s."
445
+ msgstr "Voir la %sFAQ Piwik%s."
446
+
447
+ #: classes/WP_Piwik/Admin/Settings.php:172
448
+ #: classes/WP_Piwik/Admin/Settings.php:178
449
+ msgid "Enter manually"
450
+ msgstr "Entrer manuellement"
451
+
452
+ #: classes/WP_Piwik/Admin/Settings.php:172
453
+ msgid ""
454
+ "Enter your own tracking code manually. You can choose one of the prior "
455
+ "options, pre-configure your tracking code and switch to manually editing at "
456
+ "last."
457
+ 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."
458
+
459
+ #: classes/WP_Piwik/Admin/Settings.php:172
460
+ msgid "Use the placeholder {ID} to add the Piwik site ID."
461
+ msgstr "Utilisez l'espace réservé {ID} pour ajouter l'identifiant de site Piwik."
462
+
463
+ #: classes/WP_Piwik/Admin/Settings.php:173
464
+ msgid "Add tracking code"
465
+ msgstr "Ajouter le code de suivi"
466
+
467
+ #: classes/WP_Piwik/Admin/Settings.php:181
468
+ msgid "Tracking code"
469
+ msgstr "Code de suivi"
470
+
471
+ #: classes/WP_Piwik/Admin/Settings.php:183
472
+ msgid "JavaScript code position"
473
+ msgstr "Emplacement du code JavaScript"
474
+
475
+ #: classes/WP_Piwik/Admin/Settings.php:184
476
+ msgid "Footer"
477
+ msgstr "Pied de page"
478
+
479
+ #: classes/WP_Piwik/Admin/Settings.php:185
480
+ msgid "Header"
481
+ msgstr "En-tête"
482
+
483
+ #: classes/WP_Piwik/Admin/Settings.php:186
484
+ msgid ""
485
+ "Choose whether the JavaScript code is added to the footer or the header."
486
+ msgstr "Choisissez si le code JavaScript est ajouté dans le pied de page ou l'en-tête."
487
+
488
+ #: classes/WP_Piwik/Admin/Settings.php:188
489
+ msgid "Noscript code"
490
+ msgstr "Code noscript"
491
+
492
+ #: classes/WP_Piwik/Admin/Settings.php:190
493
+ msgid "Add &lt;noscript&gt;"
494
+ msgstr "Ajouter &lt;noscript&gt;"
495
+
496
+ #: classes/WP_Piwik/Admin/Settings.php:190
497
+ msgid "Adds the &lt;noscript&gt; code to your footer."
498
+ msgstr "Ajoute le code &lt;noscript&gt; à votre pied de page."
499
+
500
+ #: classes/WP_Piwik/Admin/Settings.php:190
501
+ #: classes/WP_Piwik/Admin/Settings.php:192
502
+ msgid "Disabled in proxy mode."
503
+ msgstr "Désactivé en mode proxy."
504
+
505
+ #: classes/WP_Piwik/Admin/Settings.php:192
506
+ msgid "Add rec parameter to noscript code"
507
+ msgstr "Ajouter le paramètre rec au code noscript"
508
+
509
+ #: classes/WP_Piwik/Admin/Settings.php:192
510
+ msgid "Enable tracking for visitors without JavaScript (not recommended)."
511
+ msgstr "Activer le suivi des visiteurs sans JavaScript (non recommandé)."
512
+
513
+ #: classes/WP_Piwik/Admin/Settings.php:194
514
+ msgid "Enable content tracking"
515
+ msgstr "Activer le suivi de contenu"
516
 
517
+ #: classes/WP_Piwik/Admin/Settings.php:196
518
+ msgid "Track all content blocks"
519
+ msgstr "Suivre tous les blocs de contenu"
520
 
521
+ #: classes/WP_Piwik/Admin/Settings.php:197
522
+ msgid "Track only visible content blocks"
523
+ msgstr "Suivre uniquement les blocs de contenu visibles"
524
 
525
+ #: classes/WP_Piwik/Admin/Settings.php:198
526
+ msgid ""
527
+ "Content tracking allows you to track interaction with the content of a web "
528
+ "page or application."
529
+ msgstr "Le suivi de contenu vous autorise à suivre l'interaction avec le contenu d'une page web ou d'une application."
530
+
531
+ #: classes/WP_Piwik/Admin/Settings.php:198
532
+ #: classes/WP_Piwik/Admin/Settings.php:200
533
+ #: classes/WP_Piwik/Admin/Settings.php:204
534
+ #: classes/WP_Piwik/Admin/Settings.php:206
535
+ #: classes/WP_Piwik/Admin/Settings.php:208
536
+ #: classes/WP_Piwik/Admin/Settings.php:229
537
+ #: classes/WP_Piwik/Admin/Settings.php:231
538
+ #: classes/WP_Piwik/Admin/Settings.php:235
539
+ #, php-format
540
+ msgid "See %sPiwik documentation%s."
541
+ msgstr "Voir la %sdocumentation Piwik%s."
542
+
543
+ #: classes/WP_Piwik/Admin/Settings.php:200
544
+ msgid "Track search"
545
+ msgstr "Suivre la recherche"
546
+
547
+ #: classes/WP_Piwik/Admin/Settings.php:200
548
+ msgid "Use Piwik's advanced Site Search Analytics feature."
549
+ msgstr "Utiliser la fonctionnalité avancée Piwik d'analyse de recherche du site"
550
+
551
+ #: classes/WP_Piwik/Admin/Settings.php:202
552
+ msgid "Track 404"
553
+ msgstr "Suivre les 404"
554
+
555
+ #: classes/WP_Piwik/Admin/Settings.php:202
556
+ msgid ""
557
+ "WP-Piwik can automatically add a 404-category to track 404-page-visits."
558
+ msgstr "WP-Piwik peut ajouter automatiquement une catégorie 404 pour suivre les visites de page 404."
559
+
560
+ #: classes/WP_Piwik/Admin/Settings.php:204
561
+ msgid "Add annotation on new post"
562
+ msgstr "Ajouter une annotation sur un nouvel article"
563
+
564
+ #: classes/WP_Piwik/Admin/Settings.php:204
565
+ msgid "Add a Piwik annotation on each new post."
566
+ msgstr "Ajoute une annotation Piwik sur chaque nouvel article."
567
+
568
+ #: classes/WP_Piwik/Admin/Settings.php:206
569
+ msgid "Show custom variables box"
570
+ msgstr "Afficher la boîte de variables personnalisées"
571
+
572
+ #: classes/WP_Piwik/Admin/Settings.php:206
573
+ msgid " Show a &quot;custom variables&quot; edit box on post edit page."
574
+ msgstr "Afficher une boîte de modification des &quot;variables personnalisées&quot; sur la page de modification des articles;"
575
+
576
+ #: classes/WP_Piwik/Admin/Settings.php:208
577
+ msgid "Add new file types for download tracking"
578
+ msgstr "Ajouter de nouveaux types de fichier pour le suivi de téléchargement"
579
+
580
+ #: classes/WP_Piwik/Admin/Settings.php:208
581
+ msgid ""
582
+ "Add file extensions for download tracking, divided by a vertical bar "
583
+ "(&#124;)."
584
+ msgstr "Ajouter des extensions de fichier pour le suivi de téléchargement, séparées par une barre verticale (&#124;)."
585
+
586
+ #: classes/WP_Piwik/Admin/Settings.php:210
587
+ msgid "Disable cookies"
588
+ msgstr "Désactiver les cookies"
589
+
590
+ #: classes/WP_Piwik/Admin/Settings.php:210
591
+ msgid "Disable all tracking cookies for a visitor."
592
+ msgstr "Désactiver tous les cookies de suivi pour un visiteur"
593
+
594
+ #: classes/WP_Piwik/Admin/Settings.php:212
595
+ msgid "Limit cookie lifetime"
596
+ msgstr "Limiter la durée de vie des cookies"
597
+
598
+ #: classes/WP_Piwik/Admin/Settings.php:212
599
+ msgid ""
600
+ "You can limit the cookie lifetime to avoid tracking your users over a longer"
601
+ " period as necessary."
602
+ 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."
603
+
604
+ #: classes/WP_Piwik/Admin/Settings.php:214
605
+ msgid "Visitor timeout (seconds)"
606
+ msgstr "Expiration du délai d'attente visiteur (en secondes)"
607
 
608
+ #: classes/WP_Piwik/Admin/Settings.php:216
609
+ msgid "Session timeout (seconds)"
610
+ msgstr "Expiration du délai d'attente session (en secondes)"
611
 
612
+ #: classes/WP_Piwik/Admin/Settings.php:218
613
+ msgid "Referral timeout (seconds)"
614
+ msgstr "Expiration du délai d'attente référant"
615
+
616
+ #: classes/WP_Piwik/Admin/Settings.php:220
617
+ msgid "Track admin pages"
618
+ msgstr "Suivre les pages d'admin"
619
+
620
+ #: classes/WP_Piwik/Admin/Settings.php:220
621
+ msgid ""
622
+ "Enable to track users on admin pages (remember to configure the tracking "
623
+ "filter appropriately)."
624
+ msgstr "Activer le suivi des utilisateurs sur les pages d'admin (n'oubliez pas de configurer le filtre de suivi adéquat)"
625
+
626
+ #: classes/WP_Piwik/Admin/Settings.php:223
627
  msgid "Tracking filter"
628
  msgstr "Filtre de suivi"
629
 
630
+ #: classes/WP_Piwik/Admin/Settings.php:227
 
 
631
  msgid "Choose users by user role you do <strong>not</strong> want to track."
632
  msgstr "Choisissez, pour chaque rôle, ceux que <strong>vous ne souhaitez pas</strong> inclure dans le suivi."
633
 
634
+ #: classes/WP_Piwik/Admin/Settings.php:229
635
+ msgid "Track subdomains in the same website"
636
+ msgstr "Suivre les sous-domaines dans le même site web"
637
+
638
+ #: classes/WP_Piwik/Admin/Settings.php:229
639
+ msgid "Adds *.-prefix to cookie domain."
640
+ msgstr "Ajoute *.-préfixe au cookie de domaine."
641
+
642
+ #: classes/WP_Piwik/Admin/Settings.php:231
643
+ msgid "Do not count subdomains as outlink"
644
+ msgstr ""
645
+
646
+ #: classes/WP_Piwik/Admin/Settings.php:231
647
+ msgid "Adds *.-prefix to tracked domain."
648
+ msgstr "Ajoute *.-préfixe au domaine suivi."
649
+
650
+ #: classes/WP_Piwik/Admin/Settings.php:233
651
+ msgid "Track RSS feeds"
652
+ msgstr "Suivre les flux RSS"
653
+
654
+ #: classes/WP_Piwik/Admin/Settings.php:233
655
+ msgid "Enable to track posts in feeds via tracking pixel."
656
+ msgstr "Activer le suivi des articles dans les flux via un pixel de suivi."
657
+
658
+ #: classes/WP_Piwik/Admin/Settings.php:235
659
+ msgid "Track RSS feed links as campaign"
660
+ msgstr "Suivre les liens du flux RSS comme une campagne"
661
+
662
+ #: classes/WP_Piwik/Admin/Settings.php:235
663
+ msgid "This will add Piwik campaign parameters to the RSS feed links. "
664
+ msgstr "Ceci ajoutera des paramètres de campagne Piwik aux liens du flux RSS."
665
+
666
+ #: classes/WP_Piwik/Admin/Settings.php:237
667
+ msgid "RSS feed campaign"
668
+ msgstr "Campagne flux RSS"
669
+
670
+ #: classes/WP_Piwik/Admin/Settings.php:237
671
+ msgid "Keyword: post name."
672
+ msgstr "Mot-clef&nbsp;: nom d'article."
673
 
674
+ #: classes/WP_Piwik/Admin/Settings.php:242
675
+ msgid ""
676
+ "Usually, you do not need to change these settings. If you want to do so, you"
677
+ " should know what you do or you got an expert's advice."
678
+ 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."
679
+
680
+ #: classes/WP_Piwik/Admin/Settings.php:244
681
+ msgid "Enable cache"
682
+ msgstr "Activer le cache"
683
+
684
+ #: classes/WP_Piwik/Admin/Settings.php:244
685
+ msgid "Cache API calls, which not contain today's values, for a week."
686
+ msgstr "Appels API de cache, qui ne contiennent pas les valeurs d'aujourd'hui, pour une semaine."
687
+
688
+ #: classes/WP_Piwik/Admin/Settings.php:246
689
+ msgid "Disable time limit"
690
+ msgstr "Désactiver la limite de temps"
691
+
692
+ #: classes/WP_Piwik/Admin/Settings.php:246
693
+ msgid "Use set_time_limit(0) if stats page causes a time out."
694
+ msgstr "Utilisez set_time_limit(0) si la pages de statistiques provoque une expiration du délai d'attente."
695
+
696
+ #: classes/WP_Piwik/Admin/Settings.php:248
697
+ msgid "Connection timeout"
698
+ msgstr "Expiration du délai d'attente de la connexion"
699
+
700
+ #: classes/WP_Piwik/Admin/Settings.php:250
701
+ msgid "Disable SSL peer verification"
702
+ msgstr "Désactiver la vérification par les pairs SSL"
703
+
704
+ #: classes/WP_Piwik/Admin/Settings.php:250
705
+ msgid "not recommended"
706
+ msgstr "non recommandé"
707
 
708
+ #: classes/WP_Piwik/Admin/Settings.php:252
709
+ msgid "User agent"
710
+ msgstr "Agent utilisateur (User agent)"
711
+
712
+ #: classes/WP_Piwik/Admin/Settings.php:253
713
+ msgid "Use the PHP default user agent"
714
+ msgstr "Utiliser l'agent utilisateur (user-agent) par défaut de PHP"
715
+
716
+ #: classes/WP_Piwik/Admin/Settings.php:253
717
+ msgid "empty"
718
+ msgstr "vide"
719
+
720
+ #: classes/WP_Piwik/Admin/Settings.php:254
721
+ msgid "Define a specific user agent"
722
+ msgstr "Définir un agent utilisateur (user-agent) spécifique"
723
+
724
+ #: classes/WP_Piwik/Admin/Settings.php:256
725
+ msgid "Specific user agent"
726
+ msgstr "Agent utilisateur (user-agent) spécifique"
727
+
728
+ #: classes/WP_Piwik/Admin/Settings.php:258
729
+ msgid "Add data-cfasync=false"
730
+ msgstr "Ajouter data-cfasync=false"
731
+
732
+ #: classes/WP_Piwik/Admin/Settings.php:258
733
+ #, php-format
734
+ msgid "See %sCloudFlare Knowledge Base%s."
735
+ msgstr "Voir la %sBase de connaissances CloudFlare%s."
736
+
737
+ #: classes/WP_Piwik/Admin/Settings.php:258
738
+ msgid ""
739
+ "Adds data-cfasync=false to the script tag, e.g., to ask Rocket Loader to "
740
+ "ignore the script. "
741
+ msgstr "Ajoute data-cfasync=false à la balise du script, pour demander par exemple, au chargeur Rocket d'ignorer le script. "
742
 
743
+ #: classes/WP_Piwik/Admin/Settings.php:260
744
+ msgid "CDN URL"
745
+ msgstr "URL CDN"
746
 
747
+ #: classes/WP_Piwik/Admin/Settings.php:262
748
+ msgid "CDN URL (SSL)"
749
+ msgstr "URL CDN (SSL)"
750
+
751
+ #: classes/WP_Piwik/Admin/Settings.php:264
752
+ msgid "Force Piwik to use a specific protocol"
753
+ msgstr "Forcer Piwik à utiliser un protocole spécifique"
754
+
755
+ #: classes/WP_Piwik/Admin/Settings.php:265
756
+ msgid "Disabled (default)"
757
+ msgstr "Désactivé (par défaut)"
758
+
759
+ #: classes/WP_Piwik/Admin/Settings.php:266
760
+ msgid "http"
761
+ msgstr "http"
762
+
763
+ #: classes/WP_Piwik/Admin/Settings.php:267
764
+ msgid "https (SSL)"
765
+ msgstr "https (SSL)"
766
+
767
+ #: classes/WP_Piwik/Admin/Settings.php:268
768
+ msgid ""
769
+ "Choose if you want to explicitly force Piwik to use HTTP or HTTPS. Does not "
770
+ "work with a CDN URL."
771
+ msgstr "Choisissez si vous voulez forcer explicitement Piwik à utiliser le protocole HTTP ou HTTPS. Ne fonctionne pas avec une URL CDN."
772
+
773
+ #: classes/WP_Piwik/Admin/Settings.php:427
774
+ msgid "Donate"
775
+ msgstr "Faire un don"
776
+
777
+ #: classes/WP_Piwik/Admin/Settings.php:429
778
+ msgid "If you like WP-Piwik, you can support its development by a donation:"
779
+ msgstr "Si vous aimez WP-Piwik, vous pouvez soutenir son développement par un don&nbsp;:"
780
+
781
+ #: classes/WP_Piwik/Admin/Settings.php:467
782
+ msgid "My Amazon.de wishlist"
783
+ msgstr "Ma liste de souhaits Amazon.de"
784
+
785
+ #: classes/WP_Piwik/Admin/Settings.php:470
786
+ #: classes/WP_Piwik/Admin/Settings.php:517
787
+ msgid "Please don't forget to vote the compatibility at the"
788
+ msgstr "Merci de ne pas oublier de voter la compatibilité avec"
789
+
790
+ #: classes/WP_Piwik/Admin/Settings.php:501
791
+ msgid "Thank you very much for your donation"
792
+ msgstr "Merci beaucoup pour votre don"
793
+
794
+ #: classes/WP_Piwik/Admin/Settings.php:501
795
+ msgid "the Piwik team itself"
796
+ msgstr "l'équipe Piwik elle-même"
797
+
798
+ #: classes/WP_Piwik/Admin/Settings.php:501
799
+ msgid ", and all people flattering this"
800
+ msgstr ", et toutes les personnes flatteuses à ce sujet."
801
+
802
+ #: classes/WP_Piwik/Admin/Settings.php:502
803
+ msgid ""
804
+ "Graphs powered by <a href=\"http://www.jqplot.com/\">jqPlot</a> (License: "
805
+ "GPL 2.0 and MIT) and <a "
806
+ "href=\"http://omnipotent.net/jquery.sparkline/\">jQuery Sparklines</a> "
807
+ "(License: New BSD License)."
808
+ 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)."
809
+
810
+ #: classes/WP_Piwik/Admin/Settings.php:503
811
+ msgid "Metabox support inspired by"
812
+ msgstr "Prise en charge Metabox inspirée par"
813
+
814
+ #: classes/WP_Piwik/Admin/Settings.php:504
815
+ msgid "Tabbed settings page suggested by the"
816
+ msgstr "Page des réglages en onglets suggérée par le"
817
+
818
+ #: classes/WP_Piwik/Admin/Settings.php:505
819
+ msgid "Thank you very much"
820
+ msgstr "Merci beaucoup"
821
+
822
+ #: classes/WP_Piwik/Admin/Settings.php:505
823
+ msgid "for your translation work"
824
+ msgstr "pour votre travail de traduction"
825
+
826
+ #: classes/WP_Piwik/Admin/Settings.php:506
827
+ msgid ""
828
+ "Thank you very much, all users who send me mails containing criticism, "
829
+ "commendation, feature requests and bug reports! You help me to make WP-Piwik"
830
+ " much better."
831
+ 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."
832
+
833
+ #: classes/WP_Piwik/Admin/Settings.php:507
834
+ msgid ""
835
+ "Thank <strong>you</strong> for using my plugin. It is the best commendation "
836
+ "if my piece of code is really used!"
837
+ msgstr "Je <strong>vous</strong> remercie d'utiliser mon extension. C'est la meilleur éloge si mon morceau de code est vraiment utilisé&nbsp;!"
838
+
839
+ #: classes/WP_Piwik/Admin/Settings.php:516
840
+ msgid "The best place to get help:"
841
+ msgstr "Le meilleur endroit pour obtenir de l'aide&nbsp;:"
842
+
843
+ #: classes/WP_Piwik/Admin/Settings.php:516
844
+ msgid "WP-Piwik support forum"
845
+ msgstr "Forum de support WP-Piwik"
846
+
847
+ #: classes/WP_Piwik/Admin/Settings.php:519
848
+ msgid "Debugging"
849
+ msgstr "Débogage"
850
+
851
+ #: classes/WP_Piwik/Admin/Settings.php:520
852
+ msgid ""
853
+ "Either allow_url_fopen has to be enabled <em>or</em> cURL has to be "
854
+ "available:"
855
+ msgstr "allow_url_fopen doit être activé <em>ou</em> cURL doit être disponible&nbsp;:"
856
+
857
+ #: classes/WP_Piwik/Admin/Settings.php:523
858
+ msgid "cURL is"
859
+ msgstr "cURL est"
860
+
861
+ #: classes/WP_Piwik/Admin/Settings.php:524
862
+ #: classes/WP_Piwik/Admin/Settings.php:529
863
+ msgid "not"
864
+ msgstr "non"
865
+
866
+ #: classes/WP_Piwik/Admin/Settings.php:525
867
+ msgid "available"
868
+ msgstr "disponible"
869
+
870
+ #: classes/WP_Piwik/Admin/Settings.php:528
871
+ msgid "allow_url_fopen is"
872
+ msgstr "allow_url_fopen est"
873
+
874
+ #: classes/WP_Piwik/Admin/Settings.php:530
875
+ msgid "enabled"
876
+ msgstr "activé"
877
+
878
+ #: classes/WP_Piwik/Admin/Settings.php:533
879
+ msgid "Latest support threads on WordPress.org"
880
+ msgstr "Les derniers messages de support sur WordPress.org"
881
+
882
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:17
883
+ msgid "site"
884
+ msgstr "site"
885
+
886
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:18
887
+ msgid "sites"
888
+ msgstr "sites"
889
+
890
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:22
891
+ msgid "No site configured yet."
892
+ msgstr "Pas de site configuré actuellement."
893
+
894
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:27
895
+ msgid "ID"
896
+ msgstr "Identifiant"
897
+
898
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:28
899
+ msgid "Title"
900
+ msgstr "Titre"
901
+
902
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:29
903
+ msgid "URL"
904
+ msgstr "URL"
905
+
906
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:30
907
+ msgid "Site ID (Piwik)"
908
+ msgstr "Identifiant du site (Piwik)"
909
+
910
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:73
911
+ msgid "Site not created yet."
912
+ msgstr "Le site n'a pas encore été créé."
913
+
914
+ #: classes/WP_Piwik/Admin/Statistics.php:12
915
+ msgid "Statistics"
916
+ msgstr "Statistiques"
917
+
918
+ #: classes/WP_Piwik/Admin/Statistics.php:20
919
  msgid "Currently shown stats:"
920
  msgstr "Stats affichées actuellement : "
921
 
922
+ #: classes/WP_Piwik/Request/Php.php:25
923
+ msgid "Could not resolve"
924
+ msgstr "Impossible de résoudre"
925
+
926
+ #: classes/WP_Piwik/Request/Php.php:25
927
+ msgid "realpath() returns false"
928
+ msgstr "realpath() retourne faux (false)"
929
+
930
+ #: classes/WP_Piwik/Request/Php.php:32
931
+ msgid "Class Piwik\\FrontController does not exists."
932
+ msgstr "La classe Piwik\\FrontController n'existe pas."
933
+
934
+ #: classes/WP_Piwik/Request/Php.php:35
935
+ msgid "Class Piwik\\API\\Request does not exists."
936
+ msgstr "La class Piwik\\API\\Request n'existe pas."
937
+
938
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:10
939
+ msgid "Piwik Custom Variables"
940
+ msgstr "Variables personnalisées Piwik"
941
+
942
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
943
+ msgid "Name"
944
+ msgstr "Nom"
945
+
946
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
947
+ msgid "Value"
948
+ msgstr "Valeur"
949
+
950
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
951
+ msgid "Set custom variables for a page view"
952
+ msgstr "Définir des variables personnalisées pour une page vue"
953
+
954
+ #: classes/WP_Piwik/Widget.php:91
955
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:35
956
+ #: classes/WP_Piwik/Widget/Browsers.php:35
957
+ #: classes/WP_Piwik/Widget/Chart.php:41
958
+ #: classes/WP_Piwik/Widget/Noresult.php:23
959
+ #: classes/WP_Piwik/Widget/Overview.php:24
960
+ #: classes/WP_Piwik/Widget/Plugins.php:23 classes/WP_Piwik/Widget/Post.php:25
961
+ #: classes/WP_Piwik/Widget/Screens.php:35
962
+ #: classes/WP_Piwik/Widget/Search.php:23 classes/WP_Piwik/Widget/Seo.php:20
963
+ #: classes/WP_Piwik/Widget/Systems.php:33
964
+ #: classes/WP_Piwik/Widget/Visitors.php:35
965
+ msgid "Piwik error"
966
+ msgstr "Erreur Piwik"
967
+
968
+ #: classes/WP_Piwik/Widget.php:100
969
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:37
970
+ #: classes/WP_Piwik/Widget/Browsers.php:37
971
+ #: classes/WP_Piwik/Widget/Screens.php:37
972
+ #: classes/WP_Piwik/Widget/Systems.php:35
973
+ #: classes/WP_Piwik/Widget/Visitors.php:57
974
+ msgid "Unique"
975
+ msgstr "Unique"
976
+
977
+ #: classes/WP_Piwik/Widget.php:102 classes/WP_Piwik/Widget/Plugins.php:25
978
+ #: classes/WP_Piwik/Widget/Visitors.php:57
979
+ msgid "Visits"
980
+ msgstr "Visites"
981
+
982
+ #: classes/WP_Piwik/Widget.php:104
983
+ msgid "Hits"
984
+ msgstr "Entrées"
985
+
986
+ #: classes/WP_Piwik/Widget.php:106
987
+ msgid "Actions"
988
+ msgstr "Actions"
989
+
990
+ #: classes/WP_Piwik/Widget.php:144
991
+ msgid "No data available."
992
+ msgstr "Pas de données disponibles"
993
+
994
+ #: classes/WP_Piwik/Widget.php:275
995
+ msgid "week"
996
+ msgstr "semaine"
997
+
998
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:16
999
+ msgid "Browser Details"
1000
+ msgstr "Détails navigateur"
1001
+
1002
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:37
1003
+ #: classes/WP_Piwik/Widget/Browsers.php:37
1004
+ msgid "Browser"
1005
+ msgstr "Navigateur"
1006
+
1007
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:37
1008
+ #: classes/WP_Piwik/Widget/Browsers.php:37
1009
+ #: classes/WP_Piwik/Widget/Plugins.php:25
1010
+ #: classes/WP_Piwik/Widget/Screens.php:37
1011
+ #: classes/WP_Piwik/Widget/Systems.php:35
1012
+ msgid "Percent"
1013
+ msgstr "Pourcentage"
1014
+
1015
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:53
1016
+ #: classes/WP_Piwik/Widget/Browsers.php:53
1017
+ #: classes/WP_Piwik/Widget/Screens.php:53
1018
+ #: classes/WP_Piwik/Widget/Systems.php:51
1019
+ msgid "Others"
1020
+ msgstr "Autres"
1021
+
1022
+ #: classes/WP_Piwik/Widget/Browsers.php:16
1023
+ msgid "Browsers"
1024
+ msgstr "Navigateurs"
1025
+
1026
+ #: classes/WP_Piwik/Widget/Chart.php:17
1027
+ #: classes/WP_Piwik/Widget/Overview.php:40 classes/WP_Piwik/Widget/Post.php:37
1028
+ #: classes/WP_Piwik/Widget/Visitors.php:17
1029
+ msgid "Visitors"
1030
+ msgstr "Visiteurs"
1031
+
1032
+ #: classes/WP_Piwik/Widget/Chart.php:69
1033
+ msgid ""
1034
+ "The graph contains the values shown in the table below (visitors / unique / "
1035
+ "bounces). The red line show a linear trendline (unique)."
1036
+ 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)."
1037
+
1038
+ #: classes/WP_Piwik/Widget/Keywords.php:16
1039
+ msgid "Keywords"
1040
+ msgstr "Mots Clés"
1041
+
1042
+ #: classes/WP_Piwik/Widget/Noresult.php:16
1043
+ #: classes/WP_Piwik/Widget/Search.php:16
1044
+ msgid "Site Search"
1045
+ msgstr "Recherche du site"
1046
+
1047
+ #: classes/WP_Piwik/Widget/Noresult.php:25
1048
+ #: classes/WP_Piwik/Widget/Search.php:25
1049
+ msgid "Keyword"
1050
+ msgstr "Mots clés"
1051
+
1052
+ #: classes/WP_Piwik/Widget/Noresult.php:25
1053
+ #: classes/WP_Piwik/Widget/Search.php:25
1054
+ msgid "Requests"
1055
+ msgstr "Requêtes"
1056
+
1057
+ #: classes/WP_Piwik/Widget/Noresult.php:25
1058
+ #: classes/WP_Piwik/Widget/Search.php:25
1059
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1060
+ msgid "Bounced"
1061
+ msgstr "Rebonds"
1062
+
1063
+ #: classes/WP_Piwik/Widget/Overview.php:17 classes/WP_Piwik/Widget/Post.php:18
1064
+ msgid "Overview"
1065
+ msgstr "Vue d'ensemble"
1066
+
1067
+ #: classes/WP_Piwik/Widget/Overview.php:17
1068
+ msgid "dashboard"
1069
+ msgstr "Tableau de bord"
1070
+
1071
+ #: classes/WP_Piwik/Widget/Overview.php:41 classes/WP_Piwik/Widget/Post.php:38
1072
+ msgid "Unique visitors"
1073
+ msgstr "Visiteurs uniques"
1074
+
1075
+ #: classes/WP_Piwik/Widget/Overview.php:42 classes/WP_Piwik/Widget/Post.php:39
1076
+ msgid "Page views"
1077
+ msgstr "Pages vues"
1078
 
1079
+ #: classes/WP_Piwik/Widget/Overview.php:43 classes/WP_Piwik/Widget/Post.php:40
1080
+ msgid "Total time spent"
1081
+ msgstr "Temps passé total"
1082
 
1083
+ #: classes/WP_Piwik/Widget/Overview.php:44 classes/WP_Piwik/Widget/Post.php:42
1084
+ msgid "Bounce count"
1085
+ msgstr "Nombre de sauts"
1086
 
1087
+ #: classes/WP_Piwik/Widget/Overview.php:47 classes/WP_Piwik/Widget/Post.php:41
1088
+ msgid "Time/visit"
1089
+ msgstr "Temps / visite"
1090
 
1091
+ #: classes/WP_Piwik/Widget/Overview.php:47
1092
+ msgid "Max. page views in one visit"
1093
+ msgstr "Pages vues max.par visite"
1094
 
1095
+ #: classes/WP_Piwik/Widget/Overview.php:48 classes/WP_Piwik/Widget/Post.php:46
1096
+ msgid "Shortcut"
1097
+ msgstr "Raccourci"
1098
 
1099
+ #: classes/WP_Piwik/Widget/Pages.php:16
1100
+ msgid "Pages"
1101
+ msgstr "Pages"
1102
 
1103
+ #: classes/WP_Piwik/Widget/Plugins.php:16
1104
+ msgid "Plugins"
1105
+ msgstr "Extensions"
1106
 
1107
+ #: classes/WP_Piwik/Widget/Plugins.php:25
1108
+ msgid "Plugin"
1109
+ msgstr "Extension"
1110
 
1111
+ #: classes/WP_Piwik/Widget/Post.php:43
1112
+ msgid "Min. generation time"
1113
+ msgstr "Temps min. de génération"
1114
 
1115
+ #: classes/WP_Piwik/Widget/Post.php:44
1116
+ msgid "Max. generation time"
1117
+ msgstr "Temps max. de génération"
1118
 
1119
+ #: classes/WP_Piwik/Widget/Referrers.php:16
1120
+ msgid "Referrers"
1121
+ msgstr "Référants"
1122
 
1123
+ #: classes/WP_Piwik/Widget/Screens.php:16
1124
+ msgid "Resolutions"
1125
+ msgstr "Résolutions"
1126
 
1127
+ #: classes/WP_Piwik/Widget/Screens.php:37
1128
+ msgid "Resolution"
1129
+ msgstr "Résolution"
1130
 
1131
+ #: classes/WP_Piwik/Widget/Seo.php:13
1132
+ msgid "SEO"
1133
+ msgstr "SEO"
1134
 
1135
+ #: classes/WP_Piwik/Widget/Systems.php:14
1136
+ msgid "Operation Systems"
1137
+ msgstr "Systèmes d'exploitation"
1138
 
1139
+ #: classes/WP_Piwik/Widget/Systems.php:35
1140
+ msgid "Operation System"
1141
+ msgstr "Système d'exploitation"
1142
+
1143
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1144
+ msgid "Date"
1145
+ msgstr "Date"
1146
 
1147
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1148
+ msgid "Page Views"
1149
+ msgstr "Pages vues"
1150
+
1151
+ #: wp-piwik.php:60
1152
+ #, php-format
1153
+ msgid ""
1154
+ "WP-Piwik requires at least PHP 5.3. You are using the deprecated version %s."
1155
+ " Please update PHP to use WP-Piwik."
1156
+ 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."
languages/wp-piwik.pot CHANGED
@@ -160,7 +160,7 @@ msgstr ""
160
  #: classes/WP_Piwik/Admin/Settings.php:84
161
  msgid ""
162
  "This is the default option for a self-hosted Piwik and should work for most "
163
- "configurations. WP-Piwik will connect to Piwk using http(s)."
164
  msgstr ""
165
 
166
  #: classes/WP_Piwik/Admin/Settings.php:84
@@ -635,7 +635,7 @@ msgid "Adds *.-prefix to cookie domain."
635
  msgstr ""
636
 
637
  #: classes/WP_Piwik/Admin/Settings.php:231
638
- msgid "Do not count subdomians as outlink"
639
  msgstr ""
640
 
641
  #: classes/WP_Piwik/Admin/Settings.php:231
160
  #: classes/WP_Piwik/Admin/Settings.php:84
161
  msgid ""
162
  "This is the default option for a self-hosted Piwik and should work for most "
163
+ "configurations. WP-Piwik will connect to Piwik using http(s)."
164
  msgstr ""
165
 
166
  #: classes/WP_Piwik/Admin/Settings.php:84
635
  msgstr ""
636
 
637
  #: classes/WP_Piwik/Admin/Settings.php:231
638
+ msgid "Do not count subdomains as outlink"
639
  msgstr ""
640
 
641
  #: classes/WP_Piwik/Admin/Settings.php:231
readme.txt CHANGED
@@ -3,7 +3,7 @@
3
  Contributors: Braekling
4
  Requires at least: 4.0
5
  Tested up to: 4.2.2
6
- Stable tag: 0.10.0.6
7
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=6046779
8
  Tags: statistics, stats, analytics, piwik, wpmu
9
 
@@ -127,9 +127,19 @@ This is a full refactored version of WP-Piwik. Please check your settings after
127
 
128
  == Changelog ==
129
 
 
 
 
 
 
 
 
 
 
130
  = 0.10.0.6 =
131
  * Bugfix: Option storage bug if WP-Piwik is used as single site plugin on blog networks
132
  * Bugfix: WP-Piwik will work without Piwik superuser access, again
 
133
 
134
  = 0.10.0.5 =
135
  * Bugfix: In some cases the update message did not disappear -> fixed
3
  Contributors: Braekling
4
  Requires at least: 4.0
5
  Tested up to: 4.2.2
6
+ Stable tag: 0.10.0.7
7
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=6046779
8
  Tags: statistics, stats, analytics, piwik, wpmu
9
 
127
 
128
  == Changelog ==
129
 
130
+ = 0.10.0.7 =
131
+ * Bugfix: Opt-out shortcode output fix
132
+ * Bugfix: Opt-out shortcode will also work in "pro" and "php" mode
133
+ * Bugfix: Sitebrowser link (settings page, support) fixed
134
+ * Bugfix: Removed test script errors and notices
135
+ * Bugfix: Keep sure the revion ID is stored and avoid re-installing the plugin again and again
136
+ * Bugfix: http/pro - after configuration the settings page had to be reloaded once to start working
137
+ * Typo fixes
138
+
139
  = 0.10.0.6 =
140
  * Bugfix: Option storage bug if WP-Piwik is used as single site plugin on blog networks
141
  * Bugfix: WP-Piwik will work without Piwik superuser access, again
142
+ * Bugfix: Choosing the site without auto config works again
143
 
144
  = 0.10.0.5 =
145
  * Bugfix: In some cases the update message did not disappear -> fixed
screenshot-1.gif CHANGED
Binary file
screenshot-2.gif CHANGED
Binary file
screenshot-3.gif CHANGED
Binary file
screenshot-4.gif CHANGED
Binary file
wp-piwik.php CHANGED
@@ -6,7 +6,7 @@ Plugin URI: http://wordpress.org/extend/plugins/wp-piwik/
6
 
7
  Description: Adds Piwik stats to your dashboard menu and Piwik code to your wordpress header.
8
 
9
- Version: 0.10.0.6
10
  Author: Andr&eacute; Br&auml;kling
11
  Author URI: http://www.braekling.de
12
  Text Domain: wp-piwik
@@ -74,4 +74,4 @@ else {
74
  $GLOBALS ['wp-piwik_debug'] = false;
75
  if (class_exists ( 'WP_Piwik' ))
76
  $GLOBALS ['wp-piwik'] = new WP_Piwik ();
77
- }
6
 
7
  Description: Adds Piwik stats to your dashboard menu and Piwik code to your wordpress header.
8
 
9
+ Version: 0.10.0.7
10
  Author: Andr&eacute; Br&auml;kling
11
  Author URI: http://www.braekling.de
12
  Text Domain: wp-piwik
74
  $GLOBALS ['wp-piwik_debug'] = false;
75
  if (class_exists ( 'WP_Piwik' ))
76
  $GLOBALS ['wp-piwik'] = new WP_Piwik ();
77
+ }