WP-Matomo (WP-Piwik) - Version 0.10.0.8

Version Description

  • Bugfix: Sitebrowser link (settings page, support) fixed
  • Bugfix: Use new settings directly after saving (reloading is not necessary anymore)
  • Optimized caching behaviour
  • Language update (German, French)
Download this release

Release Info

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

Code changes from version 0.10.0.7 to 0.10.0.8

classes/WP_Piwik.php CHANGED
@@ -12,7 +12,7 @@ class WP_Piwik {
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
@@ -26,7 +26,6 @@ class WP_Piwik {
26
  $this->addFilters ();
27
  $this->addActions ();
28
  $this->addShortcodes ();
29
- self::$settings->save ();
30
  }
31
 
32
  /**
@@ -47,6 +46,7 @@ class WP_Piwik {
47
  $this->updatePlugin ();
48
  if ($this->isConfigSubmitted ())
49
  $this->applySettings ();
 
50
  }
51
 
52
  /**
@@ -922,13 +922,21 @@ class WP_Piwik {
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
 
 
 
 
 
 
 
 
 
932
  /**
933
  * Execute WP-Piwik shortcode
934
  *
@@ -1064,8 +1072,7 @@ class WP_Piwik {
1064
  * @return string tracking code
1065
  */
1066
  public function updateTrackingCode($siteId = false, $blogId = null) {
1067
- if (! $siteId)
1068
- $siteId = $this->getPiwikSiteId ();
1069
  if (self::$settings->getGlobalOption ( 'track_mode' ) == 'disabled' || self::$settings->getGlobalOption ( 'track_mode' ) == 'manually')
1070
  return false;
1071
  $id = WP_Piwik\Request::register ( 'SitesManager.getJavascriptTag', array (
12
  *
13
  * @var Runtime environment variables
14
  */
15
+ private static $revisionId = 2015051801, $version = '0.10.0.8', $blog_id, $pluginBasename = NULL, $logger, $settings, $request;
16
 
17
  /**
18
  * Constructor class to configure and register all WP-Piwik components
26
  $this->addFilters ();
27
  $this->addActions ();
28
  $this->addShortcodes ();
 
29
  }
30
 
31
  /**
46
  $this->updatePlugin ();
47
  if ($this->isConfigSubmitted ())
48
  $this->applySettings ();
49
+ self::$settings->save ();
50
  }
51
 
52
  /**
922
  public function request($id, $debug = false) {
923
  if ( self::$settings->getGlobalOption ( 'piwik_mode' ) == 'disabled' )
924
  return 'n/a';
925
+ if (! isset ( self::$request ) || empty ( 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
 
932
+ /**
933
+ * Reset request object
934
+ */
935
+ public function resetRequest() {
936
+ self::$request->reset();
937
+ self::$request = NULL;
938
+ }
939
+
940
  /**
941
  * Execute WP-Piwik shortcode
942
  *
1072
  * @return string tracking code
1073
  */
1074
  public function updateTrackingCode($siteId = false, $blogId = null) {
1075
+ $siteId = $this->getPiwikSiteId ();
 
1076
  if (self::$settings->getGlobalOption ( 'track_mode' ) == 'disabled' || self::$settings->getGlobalOption ( 'track_mode' ) == 'manually')
1077
  return false;
1078
  $id = WP_Piwik\Request::register ( 'SitesManager.getJavascriptTag', array (
classes/WP_Piwik/Admin/Settings.php CHANGED
@@ -19,8 +19,11 @@ class Settings extends \WP_Piwik\Admin {
19
  return;
20
  }
21
  global $wp_roles;
22
- if (isset ( $_POST ) && isset ( $_POST ['wp-piwik'] ))
23
  $this->showBox ( 'updated', 'yes', __ ( 'Changes saved.' ) );
 
 
 
24
  ?>
25
  <div id="plugin-options-wrap" class="widefat">
26
  <?php
@@ -112,14 +115,12 @@ class Settings extends \WP_Piwik\Admin {
112
  foreach ($piwikSiteList as $details)
113
  $piwikSiteDetails[$details['idsite']] = $details;
114
  unset($piwikSiteList);
115
- if (($piwikSiteId == 'n/a'))
116
- $piwikSiteDescription = 'n/a';
117
- elseif (! self::$settings->getGlobalOption ( 'auto_site_config' ))
118
- $piwikSiteDescription = __ ( 'Save settings to start estimation.', 'wp-piwik' );
119
- else
120
  $piwikSiteDescription = $piwikSiteDetails [$piwikSiteId] ['name'] . ' (' . $piwikSiteDetails [$piwikSiteId] ['main_url'] . ')';
 
 
121
  echo '<tr class="wp-piwik-auto-option' . (! self::$settings->getGlobalOption ( 'auto_site_config' ) ? ' hidden' : '') . '"><th scope="row">' . __ ( 'Determined site', 'wp-piwik' ) . ':</th><td>' . $piwikSiteDescription . '</td></tr>';
122
- if (is_array ( $piwikSiteDetails ))
123
  foreach ( $piwikSiteDetails as $key => $siteData )
124
  $siteList [$siteData['idsite']] = $siteData ['name'] . ' (' . $siteData ['main_url'] . ')';
125
  if (isset($siteList))
@@ -542,7 +543,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( (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)) {
19
  return;
20
  }
21
  global $wp_roles;
22
+ if (isset ( $_POST ) && isset ( $_POST ['wp-piwik'] )) {
23
  $this->showBox ( 'updated', 'yes', __ ( 'Changes saved.' ) );
24
+ self::$wpPiwik->resetRequest();
25
+ self::$wpPiwik->updateTrackingCode();
26
+ }
27
  ?>
28
  <div id="plugin-options-wrap" class="widefat">
29
  <?php
115
  foreach ($piwikSiteList as $details)
116
  $piwikSiteDetails[$details['idsite']] = $details;
117
  unset($piwikSiteList);
118
+ if ( $piwikSiteId != 'n/a' && isset( $piwikSiteDetails ) && is_array( $piwikSiteDetails ) )
 
 
 
 
119
  $piwikSiteDescription = $piwikSiteDetails [$piwikSiteId] ['name'] . ' (' . $piwikSiteDetails [$piwikSiteId] ['main_url'] . ')';
120
+ else
121
+ $piwikSiteDescription = 'n/a';
122
  echo '<tr class="wp-piwik-auto-option' . (! self::$settings->getGlobalOption ( 'auto_site_config' ) ? ' hidden' : '') . '"><th scope="row">' . __ ( 'Determined site', 'wp-piwik' ) . ':</th><td>' . $piwikSiteDescription . '</td></tr>';
123
+ if (isset ( $piwikSiteDetails ) && is_array ( $piwikSiteDetails ))
124
  foreach ( $piwikSiteDetails as $key => $siteData )
125
  $siteList [$siteData['idsite']] = $siteData ['name'] . ' (' . $siteData ['main_url'] . ')';
126
  if (isset($siteList))
543
  _e('enabled','wp-piwik');
544
  ?></strong>.</li>
545
  </ol>
546
+ <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( (self::$settings->checkNetworkActivation () ? 'network/settings' : 'options-general').'.php?page='.$_GET['page'].'&sitebrowser=1' ); ?>">Sitebrowser</a>.</p>
547
  <h3><?php _e('Latest support threads on WordPress.org', 'wp-piwik'); ?></h3><?php
548
  $supportThreads = $this->readRSSFeed('http://wordpress.org/support/rss/plugin/wp-piwik');
549
  if (!empty($supportThreads)) {
classes/WP_Piwik/Admin/Sitebrowser.php CHANGED
@@ -1,93 +1,98 @@
1
- <?php
2
-
3
- namespace WP_Piwik\Admin;
4
-
5
- if (!class_exists('WP_List_Table'))
6
- require_once( ABSPATH . 'wp-admin/includes/class-wp-list-table.php' );
7
-
8
- class Sitebrowser extends \WP_List_Table {
9
-
10
- private $data = array(), $wpPiwik;
11
-
12
- public function __construct($wpPiwik) {
13
- $this->wpPiwik = $wpPiwik;
14
- $cnt = $this->prepare_items();
15
- global $status, $page;
16
- parent::__construct( array(
17
- 'singular' => __('site', 'wp-piwik'),
18
- 'plural' => __('sites', 'wp-piwik'),
19
- 'ajax' => false
20
- ) );
21
- if ($cnt > 0) $this->display();
22
- else echo '<p>'.__('No site configured yet.', 'wp-piwik').'</p>';
23
- }
24
-
25
- public function get_columns(){
26
- $columns = array(
27
- 'id' => __('ID','wp-piwik'),
28
- 'name' => __('Title','wp-piwik'),
29
- 'siteurl' => __('URL','wp-piwik'),
30
- 'piwikid' => __('Site ID (Piwik)','wp-piwik')
31
- );
32
- return $columns;
33
- }
34
-
35
- public function prepare_items() {
36
- $current_page = $this->get_pagenum();
37
- $per_page = 10;
38
- global $blog_id;
39
- global $wpdb;
40
- global $pagenow;
41
- if (is_plugin_active_for_network('wp-piwik/wp-piwik.php')) {
42
- $total_items = $wpdb->get_var('SELECT COUNT(*) FROM '.$wpdb->blogs);
43
- $blogs = $wpdb->get_results($wpdb->prepare('SELECT blog_id FROM '.$wpdb->blogs.' ORDER BY blog_id LIMIT %d,%d',(($current_page-1)*$per_page),$per_page));
44
- foreach ($blogs as $blog) {
45
- $blogDetails = get_blog_details($blog->blog_id, true);
46
- $this->data[] = array(
47
- 'name' => $blogDetails->blogname,
48
- 'id' => $blogDetails->blog_id,
49
- 'siteurl' => $blogDetails->siteurl,
50
- 'piwikid' => $this->wpPiwik->getPiwikSiteId($blogDetails->blog_id)
51
- );
52
- }
53
- } else {
54
- $blogDetails = get_bloginfo();
55
- $this->data[] = array(
56
- 'name' => get_bloginfo('name'),
57
- 'id' => '-',
58
- 'siteurl' => get_bloginfo('url'),
59
- 'piwikid' => $this->wpPiwik->getPiwikSiteId()
60
- );
61
- $total_items = 1;
62
- }
63
- $columns = $this->get_columns();
64
- $hidden = array();
65
- $sortable = array();
66
- $this->_column_headers = array($columns, $hidden, $sortable);
67
- $this->set_pagination_args(array(
68
- 'total_items' => $total_items,
69
- 'per_page' => $per_page
70
- ));
71
- foreach ($this->data as $key => $dataset) {
72
- if (empty($dataset['piwikid']) || $dataset['piwikid'] == 'n/a')
73
- $this->data[$key]['piwikid'] = __('Site not created yet.', 'wp-piwik');
74
- if ($this->wpPiwik->isNetworkMode())
75
- $this->data[$key]['name'] = '<a href="?page=wp-piwik_stats&wpmu_show_stats='.$dataset['id'].'">'.$dataset['name'].'</a>';
76
- }
77
- $this->items = $this->data;
78
- return count($this->items);
79
- }
80
-
81
- function column_default( $item, $column_name ) {
82
- switch( $column_name ) {
83
- case 'id':
84
- case 'name':
85
- case 'siteurl':
86
- case 'piwikid':
87
- return $item[$column_name];
88
- default:
89
- return print_r($item,true);
90
- }
91
- }
92
-
93
- }
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace WP_Piwik\Admin;
4
+
5
+ if (! class_exists ( 'WP_List_Table' ))
6
+ require_once (ABSPATH . 'wp-admin/includes/class-wp-list-table.php');
7
+
8
+ class Sitebrowser extends \WP_List_Table {
9
+
10
+ private $data = array (), $wpPiwik;
11
+
12
+ public function __construct($wpPiwik) {
13
+ $this->wpPiwik = $wpPiwik;
14
+ $cnt = $this->prepare_items ();
15
+ global $status, $page;
16
+ parent::__construct ( array (
17
+ 'singular' => __ ( 'site', 'wp-piwik' ),
18
+ 'plural' => __ ( 'sites', 'wp-piwik' ),
19
+ 'ajax' => false
20
+ ) );
21
+ if ($cnt > 0)
22
+ $this->display ();
23
+ else
24
+ echo '<p>' . __ ( 'No site configured yet.', 'wp-piwik' ) . '</p>';
25
+ }
26
+
27
+ public function get_columns() {
28
+ $columns = array (
29
+ 'id' => __ ( 'Blog ID', 'wp-piwik' ),
30
+ 'name' => __ ( 'Title', 'wp-piwik' ),
31
+ 'siteurl' => __ ( 'URL', 'wp-piwik' ),
32
+ 'piwikid' => __ ( 'Site ID (Piwik)', 'wp-piwik' )
33
+ );
34
+ return $columns;
35
+ }
36
+
37
+ public function prepare_items() {
38
+ $current_page = $this->get_pagenum ();
39
+ $per_page = 10;
40
+ global $blog_id;
41
+ global $wpdb;
42
+ global $pagenow;
43
+ if (is_plugin_active_for_network ( 'wp-piwik/wp-piwik.php' )) {
44
+ $total_items = $wpdb->get_var ( 'SELECT COUNT(*) FROM ' . $wpdb->blogs );
45
+ $blogs = $wpdb->get_results ( $wpdb->prepare ( 'SELECT blog_id FROM ' . $wpdb->blogs . ' ORDER BY blog_id LIMIT %d,%d', (($current_page - 1) * $per_page), $per_page ) );
46
+ foreach ( $blogs as $blog ) {
47
+ $blogDetails = get_blog_details ( $blog->blog_id, true );
48
+ $this->data [] = array (
49
+ 'name' => $blogDetails->blogname,
50
+ 'id' => $blogDetails->blog_id,
51
+ 'siteurl' => $blogDetails->siteurl,
52
+ 'piwikid' => $this->wpPiwik->getPiwikSiteId ( $blogDetails->blog_id )
53
+ );
54
+ }
55
+ } else {
56
+ $blogDetails = get_bloginfo ();
57
+ $this->data [] = array (
58
+ 'name' => get_bloginfo ( 'name' ),
59
+ 'id' => '-',
60
+ 'siteurl' => get_bloginfo ( 'url' ),
61
+ 'piwikid' => $this->wpPiwik->getPiwikSiteId ()
62
+ );
63
+ $total_items = 1;
64
+ }
65
+ $columns = $this->get_columns ();
66
+ $hidden = array ();
67
+ $sortable = array ();
68
+ $this->_column_headers = array (
69
+ $columns,
70
+ $hidden,
71
+ $sortable
72
+ );
73
+ $this->set_pagination_args ( array (
74
+ 'total_items' => $total_items,
75
+ 'per_page' => $per_page
76
+ ) );
77
+ foreach ( $this->data as $key => $dataset ) {
78
+ if (empty ( $dataset ['piwikid'] ) || $dataset ['piwikid'] == 'n/a')
79
+ $this->data [$key] ['piwikid'] = __ ( 'Site not created yet.', 'wp-piwik' );
80
+ if ($this->wpPiwik->isNetworkMode ())
81
+ $this->data [$key] ['name'] = '<a href="?page=wp-piwik_stats&wpmu_show_stats=' . $dataset ['id'] . '">' . $dataset ['name'] . '</a>';
82
+ }
83
+ $this->items = $this->data;
84
+ return count ( $this->items );
85
+ }
86
+
87
+ public function column_default($item, $column_name) {
88
+ switch ($column_name) {
89
+ case 'id' :
90
+ case 'name' :
91
+ case 'siteurl' :
92
+ case 'piwikid' :
93
+ return $item [$column_name];
94
+ default :
95
+ return print_r ( $item, true );
96
+ }
97
+ }
98
+ }
classes/WP_Piwik/Request.php CHANGED
@@ -12,6 +12,14 @@
12
  self::register('API.getPiwikVersion', array());
13
  }
14
 
 
 
 
 
 
 
 
 
15
  public static function register($method, $parameter) {
16
  if ($method == 'API.getPiwikVersion')
17
  $id = 'global.getPiwikVersion';
@@ -42,8 +50,10 @@
42
 
43
  public function perform($id) {
44
  if ( self::$settings->getGlobalOption('cache') && false !== ( $cached = get_transient( 'wp-piwik_c_'.md5(self::$isCacheable[$id] ) ) ) ) {
45
- self::$wpPiwik->log("Deliver cached data: ".$id);
46
- return $cached;
 
 
47
  }
48
  self::$wpPiwik->log("Perform request: ".$id);
49
  if (!isset(self::$requests[$id]))
@@ -51,7 +61,7 @@
51
  elseif (!isset(self::$results[$id])) {
52
  $this->request($id);
53
  }
54
- if ( isset ( self::$results[$id] )) {
55
  if ( self::$settings->getGlobalOption('cache') && self::$isCacheable[$id] ) {
56
  set_transient( 'wp-piwik_c_'.md5(self::$isCacheable[$id]) , self::$results[$id], WEEK_IN_SECONDS );
57
  }
12
  self::register('API.getPiwikVersion', array());
13
  }
14
 
15
+ public function reset() {
16
+ self::$debug = null;
17
+ self::$requests = array();
18
+ self::$results = array();
19
+ self::$isCacheable = array();
20
+ self::$piwikVersion = null;
21
+ }
22
+
23
  public static function register($method, $parameter) {
24
  if ($method == 'API.getPiwikVersion')
25
  $id = 'global.getPiwikVersion';
50
 
51
  public function perform($id) {
52
  if ( self::$settings->getGlobalOption('cache') && false !== ( $cached = get_transient( 'wp-piwik_c_'.md5(self::$isCacheable[$id] ) ) ) ) {
53
+ if (!empty ( $cached ) && !(! empty ( $cached['result'] ) && $cached['result'] == 'error') ) {
54
+ self::$wpPiwik->log("Deliver cached data: ".$id);
55
+ return $cached;
56
+ }
57
  }
58
  self::$wpPiwik->log("Perform request: ".$id);
59
  if (!isset(self::$requests[$id]))
61
  elseif (!isset(self::$results[$id])) {
62
  $this->request($id);
63
  }
64
+ if ( isset ( self::$results[$id] ) ) {
65
  if ( self::$settings->getGlobalOption('cache') && self::$isCacheable[$id] ) {
66
  set_transient( 'wp-piwik_c_'.md5(self::$isCacheable[$id]) , self::$results[$id], WEEK_IN_SECONDS );
67
  }
classes/WP_Piwik/Settings.php CHANGED
@@ -23,6 +23,7 @@ class Settings {
23
  private $checkSettings = array (
24
  'piwik_url' => 'checkPiwikUrl',
25
  'piwik_token' => 'checkPiwikToken',
 
26
  'tracking_code' => 'prepareTrackingCode',
27
  'noscript_code' => 'prepareNocscriptCode'
28
  );
@@ -333,6 +334,21 @@ class Settings {
333
  return str_replace ( '&token_auth=', '', $value );
334
  }
335
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
336
  /**
337
  * Prepare the tracking code
338
  *
23
  private $checkSettings = array (
24
  'piwik_url' => 'checkPiwikUrl',
25
  'piwik_token' => 'checkPiwikToken',
26
+ 'site_id' => 'requestPiwikSiteID',
27
  'tracking_code' => 'prepareTrackingCode',
28
  'noscript_code' => 'prepareNocscriptCode'
29
  );
334
  return str_replace ( '&token_auth=', '', $value );
335
  }
336
 
337
+ /**
338
+ * Request the site ID (if not set before)
339
+ *
340
+ * @param string $value
341
+ * tracking code
342
+ * @param array $in
343
+ * configuration set
344
+ * @return int Piwik site ID
345
+ */
346
+ private function requestPiwikSiteID($value, $in) {
347
+ if ($in ['auto_site_config'] && ! $value)
348
+ return self::$wpPiwik->getPiwikSiteId();
349
+ return $value;
350
+ }
351
+
352
  /**
353
  * Prepare the tracking code
354
  *
classes/WP_Piwik/TrackingCode.php CHANGED
@@ -1,109 +1,117 @@
1
- <?php
2
-
3
- namespace WP_Piwik;
4
-
5
- class TrackingCode {
6
-
7
- private static $wpPiwik, $piwikUrl = false;
8
- private $trackingCode;
9
-
10
- public $is404 = false, $isSearch = false;
11
-
12
- public function __construct($wpPiwik) {
13
- self::$wpPiwik = $wpPiwik;
14
- if ( !self::$wpPiwik->isCurrentTrackingCode() || !self::$wpPiwik->getOption('tracking_code') )
15
- self::$wpPiwik->updateTrackingCode();
16
- $this->trackingCode = ( self::$wpPiwik->isNetworkMode() && self::$wpPiwik->getGlobalOption('track_mode') == 'manually' ) ? get_site_option( 'wp-piwik-manually' ) : self::$wpPiwik->getOption('tracking_code');
17
- }
18
-
19
- public function getTrackingCode() {
20
- if ($this->is404) $this->apply404Changes();
21
- if ($this->isSearch) $this->applySearchChanges();
22
- if (is_single()) $this->addCustomValues();
23
- return $this->trackingCode;
24
- }
25
-
26
- public static function prepareTrackingCode($code, $settings, $logger) {
27
- $logger->log('Apply tracking code changes:');
28
- $settings->setOption('last_tracking_code_update', time());
29
- if ($settings->getGlobalOption('track_mode') == 'js')
30
- $code = str_replace(array('piwik.js', 'piwik.php'), 'js/index.php', $code);
31
- elseif ($settings->getGlobalOption('track_mode') == 'proxy') {
32
- $code = str_replace('piwik.js', 'piwik.php', $code);
33
- $proxy = str_replace(array('https://', 'http://'), '//', plugins_url('wp-piwik').'/proxy').'/';
34
- if ( preg_match('/var u="([^"]*)";/', $code, $hits) ) {
35
- $settings->setGlobalOption('proxy_url', $hits[1]);
36
- }
37
- $code = preg_replace('/var u="([^"]*)";/','var u="'.$proxy.'"',$code);
38
- $code = preg_replace('/img src="([^"]*)piwik.php/','img src="'.$proxy.'piwik.php',$code);
39
- }
40
- if ($settings->getGlobalOption('track_cdnurl') || $settings->getGlobalOption('track_cdnurlssl'))
41
- $code = str_replace(array("var d=doc","g.src=u+"), array("var ucdn=(('https:' == document.location.protocol) ? 'https://".($settings->getGlobalOption('track_cdnurlssl')?$settings->getGlobalOption('track_cdnurlssl'):$settings->getGlobalOption('track_cdnurl'))."/' : 'http://".($settings->getGlobalOption('track_cdnurl')?$settings->getGlobalOption('track_cdnurl'):$settings->getGlobalOption('track_cdnurlssl'))."/');\nvar d=doc", "g.src=ucdn+"), $code);
42
-
43
- if ($settings->getGlobalOption('track_datacfasync'))
44
- $code = str_replace('<script type', '<script data-cfasync="false" type', $code);
45
- if ($settings->getGlobalOption('add_download_extensions'))
46
- $code = str_replace("_paq.push(['trackPageView']);", "_paq.push(['addDownloadExtensions', '".($settings->getGlobalOption('add_download_extensions'))."']);\n_paq.push(['trackPageView']);", $code);
47
- if ($settings->getGlobalOption('limit_cookies'))
48
- $code = str_replace("_paq.push(['trackPageView']);", "_paq.push(['setVisitorCookieTimeout', '".$settings->getGlobalOption('limit_cookies_visitor')."']);\n_paq.push(['setSessionCookieTimeout', '".$settings->getGlobalOption('limit_cookies_session')."']);\n_paq.push(['setReferralCookieTimeout', '".$settings->getGlobalOption('limit_cookies_referral')."']);\n_paq.push(['trackPageView']);", $code);
49
- if ($settings->getGlobalOption('force_protocol') != 'disabled')
50
- $code = str_replace('"//', '"'.$settings->getGlobalOption('force_protocol').'://', $code);
51
- if ($settings->getGlobalOption('track_content') == 'all')
52
- $code = str_replace("_paq.push(['trackPageView']);", "_paq.push(['trackPageView']);\n_paq.push(['trackAllContentImpressions']);", $code);
53
- elseif ($settings->getGlobalOption('track_content') == 'visible')
54
- $code = str_replace("_paq.push(['trackPageView']);", "_paq.push(['trackPageView']);\n_paq.push(['trackVisibleContentImpressions']);", $code);
55
-
56
- if ($settings->getGlobalOption('piwik_mode') == 'pro')
57
- $code = str_replace('.piwik.pro', '.piwikpro.com', $code);
58
-
59
- $noScript = array();
60
- preg_match('/<noscript>(.*)<\/noscript>/', $code, $noScript);
61
- if (isset($noScript[0])) {
62
- if ($settings->getGlobalOption('track_nojavascript'))
63
- $noScript[0] = str_replace('?idsite', '?rec=1&idsite', $noScript[0]);
64
- $noScript = $noScript[0];
65
- } else $noScript = '';
66
- $script = preg_replace('/<noscript>(.*)<\/noscript>/', '', $code);
67
- $script = preg_replace('/\s+(\r\n|\r|\n)/', '$1', $script);
68
- $logger->log('Finished tracking code: '.$script);
69
- $logger->log('Finished noscript code: '.$noScript);
70
- return array('script' => $script, 'noscript' => $noScript);
71
- }
72
-
73
- private function apply404Changes() {
74
- self::$wpPiwik->log('Apply 404 changes. Blog ID: '.get_current_blog_id().' Site ID: '.self::$wpPiwik->getOption('site_id'));
75
- $this->trackingCode = str_replace(
76
- "_paq.push(['trackPageView']);",
77
- "_paq.push(['setDocumentTitle', '404/URL = '+String(document.location.pathname+document.location.search).replace(/\//g,'%2f') + '/From = ' + String(document.referrer).replace(/\//g,'%2f')]);\n_paq.push(['trackPageView']);",
78
- $this->trackingCode
79
- );
80
- }
81
-
82
- private function applySearchChanges() {
83
- self::$wpPiwik->log('Apply search tracking changes. Blog ID: '.get_current_blog_id().' Site ID: '.self::$wpPiwik->getOption('site_id'));
84
- $objSearch = new \WP_Query("s=" . get_search_query() . '&showposts=-1');
85
- $intResultCount = $objSearch->post_count;
86
- $this->trackingCode = str_replace(
87
- "_paq.push(['trackPageView']);",
88
- "_paq.push(['trackSiteSearch','".get_search_query()."', false, ".$intResultCount."]);\n_paq.push(['trackPageView']);",
89
- $this->trackingCode
90
- );
91
- }
92
-
93
- private function addCustomValues() {
94
- $customVars = '';
95
- for ($i = 1; $i <= 5; $i++) {
96
- $postId = get_the_ID();
97
- $metaKey = get_post_meta($postId, 'wp-piwik_custom_cat'.$i, true);
98
- $metaVal = get_post_meta($postId, 'wp-piwik_custom_val'.$i, true);
99
- if (!empty($metaKey) && !empty($metaVal))
100
- $customVars .= "_paq.push(['setCustomVariable',".$i.", '".$metaKey."', '".$metaVal."', 'page']);\n";
101
- }
102
- if (!empty($customVars))
103
- $this->trackingCode = str_replace(
104
- "_paq.push(['trackPageView']);",
105
- $customVars."_paq.push(['trackPageView']);",
106
- $this->trackingCode
107
- );
108
- }
109
- }
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace WP_Piwik;
4
+
5
+ class TrackingCode {
6
+
7
+ private static $wpPiwik, $piwikUrl = false;
8
+
9
+ private $trackingCode;
10
+
11
+ public $is404 = false, $isSearch = false;
12
+
13
+ public function __construct($wpPiwik) {
14
+ self::$wpPiwik = $wpPiwik;
15
+ if (! self::$wpPiwik->isCurrentTrackingCode () || ! self::$wpPiwik->getOption ( 'tracking_code' ) || strpos( self::$wpPiwik->getOption ( 'tracking_code' ), 'a:2:{s:6:"result";s:5:"error";' ) !== false )
16
+ self::$wpPiwik->updateTrackingCode ();
17
+ $this->trackingCode = (self::$wpPiwik->isNetworkMode () && self::$wpPiwik->getGlobalOption ( 'track_mode' ) == 'manually') ? get_site_option ( 'wp-piwik-manually' ) : self::$wpPiwik->getOption ( 'tracking_code' );
18
+ }
19
+
20
+ public function getTrackingCode() {
21
+ if ($this->is404)
22
+ $this->apply404Changes ();
23
+ if ($this->isSearch)
24
+ $this->applySearchChanges ();
25
+ if (is_single ())
26
+ $this->addCustomValues ();
27
+ return $this->trackingCode;
28
+ }
29
+
30
+ public static function prepareTrackingCode($code, $settings, $logger) {
31
+ $logger->log ( 'Apply tracking code changes:' );
32
+ $settings->setOption ( 'last_tracking_code_update', time () );
33
+ if ($settings->getGlobalOption ( 'track_mode' ) == 'js')
34
+ $code = str_replace ( array (
35
+ 'piwik.js',
36
+ 'piwik.php'
37
+ ), 'js/index.php', $code );
38
+ elseif ($settings->getGlobalOption ( 'track_mode' ) == 'proxy') {
39
+ $code = str_replace ( 'piwik.js', 'piwik.php', $code );
40
+ $proxy = str_replace ( array (
41
+ 'https://',
42
+ 'http://'
43
+ ), '//', plugins_url ( 'wp-piwik' ) . '/proxy' ) . '/';
44
+ if (preg_match ( '/var u="([^"]*)";/', $code, $hits )) {
45
+ $settings->setGlobalOption ( 'proxy_url', $hits [1] );
46
+ }
47
+ $code = preg_replace ( '/var u="([^"]*)";/', 'var u="' . $proxy . '"', $code );
48
+ $code = preg_replace ( '/img src="([^"]*)piwik.php/', 'img src="' . $proxy . 'piwik.php', $code );
49
+ }
50
+ if ($settings->getGlobalOption ( 'track_cdnurl' ) || $settings->getGlobalOption ( 'track_cdnurlssl' ))
51
+ $code = str_replace ( array (
52
+ "var d=doc",
53
+ "g.src=u+"
54
+ ), array (
55
+ "var ucdn=(('https:' == document.location.protocol) ? 'https://" . ($settings->getGlobalOption ( 'track_cdnurlssl' ) ? $settings->getGlobalOption ( 'track_cdnurlssl' ) : $settings->getGlobalOption ( 'track_cdnurl' )) . "/' : 'http://" . ($settings->getGlobalOption ( 'track_cdnurl' ) ? $settings->getGlobalOption ( 'track_cdnurl' ) : $settings->getGlobalOption ( 'track_cdnurlssl' )) . "/');\nvar d=doc",
56
+ "g.src=ucdn+"
57
+ ), $code );
58
+
59
+ if ($settings->getGlobalOption ( 'track_datacfasync' ))
60
+ $code = str_replace ( '<script type', '<script data-cfasync="false" type', $code );
61
+ if ($settings->getGlobalOption ( 'add_download_extensions' ))
62
+ $code = str_replace ( "_paq.push(['trackPageView']);", "_paq.push(['addDownloadExtensions', '" . ($settings->getGlobalOption ( 'add_download_extensions' )) . "']);\n_paq.push(['trackPageView']);", $code );
63
+ if ($settings->getGlobalOption ( 'limit_cookies' ))
64
+ $code = str_replace ( "_paq.push(['trackPageView']);", "_paq.push(['setVisitorCookieTimeout', '" . $settings->getGlobalOption ( 'limit_cookies_visitor' ) . "']);\n_paq.push(['setSessionCookieTimeout', '" . $settings->getGlobalOption ( 'limit_cookies_session' ) . "']);\n_paq.push(['setReferralCookieTimeout', '" . $settings->getGlobalOption ( 'limit_cookies_referral' ) . "']);\n_paq.push(['trackPageView']);", $code );
65
+ if ($settings->getGlobalOption ( 'force_protocol' ) != 'disabled')
66
+ $code = str_replace ( '"//', '"' . $settings->getGlobalOption ( 'force_protocol' ) . '://', $code );
67
+ if ($settings->getGlobalOption ( 'track_content' ) == 'all')
68
+ $code = str_replace ( "_paq.push(['trackPageView']);", "_paq.push(['trackPageView']);\n_paq.push(['trackAllContentImpressions']);", $code );
69
+ elseif ($settings->getGlobalOption ( 'track_content' ) == 'visible')
70
+ $code = str_replace ( "_paq.push(['trackPageView']);", "_paq.push(['trackPageView']);\n_paq.push(['trackVisibleContentImpressions']);", $code );
71
+
72
+ if ($settings->getGlobalOption ( 'piwik_mode' ) == 'pro')
73
+ $code = str_replace ( '.piwik.pro', '.piwikpro.com', $code );
74
+
75
+ $noScript = array ();
76
+ preg_match ( '/<noscript>(.*)<\/noscript>/', $code, $noScript );
77
+ if (isset ( $noScript [0] )) {
78
+ if ($settings->getGlobalOption ( 'track_nojavascript' ))
79
+ $noScript [0] = str_replace ( '?idsite', '?rec=1&idsite', $noScript [0] );
80
+ $noScript = $noScript [0];
81
+ } else
82
+ $noScript = '';
83
+ $script = preg_replace ( '/<noscript>(.*)<\/noscript>/', '', $code );
84
+ $script = preg_replace ( '/\s+(\r\n|\r|\n)/', '$1', $script );
85
+ $logger->log ( 'Finished tracking code: ' . $script );
86
+ $logger->log ( 'Finished noscript code: ' . $noScript );
87
+ return array (
88
+ 'script' => $script,
89
+ 'noscript' => $noScript
90
+ );
91
+ }
92
+
93
+ private function apply404Changes() {
94
+ self::$wpPiwik->log ( 'Apply 404 changes. Blog ID: ' . get_current_blog_id () . ' Site ID: ' . self::$wpPiwik->getOption ( 'site_id' ) );
95
+ $this->trackingCode = str_replace ( "_paq.push(['trackPageView']);", "_paq.push(['setDocumentTitle', '404/URL = '+String(document.location.pathname+document.location.search).replace(/\//g,'%2f') + '/From = ' + String(document.referrer).replace(/\//g,'%2f')]);\n_paq.push(['trackPageView']);", $this->trackingCode );
96
+ }
97
+
98
+ private function applySearchChanges() {
99
+ self::$wpPiwik->log ( 'Apply search tracking changes. Blog ID: ' . get_current_blog_id () . ' Site ID: ' . self::$wpPiwik->getOption ( 'site_id' ) );
100
+ $objSearch = new \WP_Query ( "s=" . get_search_query () . '&showposts=-1' );
101
+ $intResultCount = $objSearch->post_count;
102
+ $this->trackingCode = str_replace ( "_paq.push(['trackPageView']);", "_paq.push(['trackSiteSearch','" . get_search_query () . "', false, " . $intResultCount . "]);\n_paq.push(['trackPageView']);", $this->trackingCode );
103
+ }
104
+
105
+ private function addCustomValues() {
106
+ $customVars = '';
107
+ for($i = 1; $i <= 5; $i ++) {
108
+ $postId = get_the_ID ();
109
+ $metaKey = get_post_meta ( $postId, 'wp-piwik_custom_cat' . $i, true );
110
+ $metaVal = get_post_meta ( $postId, 'wp-piwik_custom_val' . $i, true );
111
+ if (! empty ( $metaKey ) && ! empty ( $metaVal ))
112
+ $customVars .= "_paq.push(['setCustomVariable'," . $i . ", '" . $metaKey . "', '" . $metaVal . "', 'page']);\n";
113
+ }
114
+ if (! empty ( $customVars ))
115
+ $this->trackingCode = str_replace ( "_paq.push(['trackPageView']);", $customVars . "_paq.push(['trackPageView']);", $this->trackingCode );
116
+ }
117
+ }
classes/WP_Piwik/Widget.php CHANGED
@@ -87,7 +87,7 @@ abstract class Widget {
87
  */
88
  public function show() {
89
  $response = self::$wpPiwik->request ( $this->apiID [$this->method] );
90
- if (! empty ( $response ['result'] ) && $response ['result'] = 'error')
91
  $this->out( '<strong>' . __ ( 'Piwik error', 'wp-piwik' ) . ':</strong> ' . htmlentities ( $response ['message'], ENT_QUOTES, 'utf-8' ) );
92
  else {
93
  if (isset ( $response [0] ['nb_uniq_visitors'] ))
87
  */
88
  public function show() {
89
  $response = self::$wpPiwik->request ( $this->apiID [$this->method] );
90
+ if (! empty ( $response ['result'] ) && $response ['result'] == 'error')
91
  $this->out( '<strong>' . __ ( 'Piwik error', 'wp-piwik' ) . ':</strong> ' . htmlentities ( $response ['message'], ENT_QUOTES, 'utf-8' ) );
92
  else {
93
  if (isset ( $response [0] ['nb_uniq_visitors'] ))
languages/wp-piwik-de_DE.mo CHANGED
Binary file
languages/wp-piwik-de_DE.po CHANGED
@@ -6,15 +6,16 @@ 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 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"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
  "Language: de_DE\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-SourceCharset: UTF-8\n"
@@ -82,18 +83,31 @@ msgstr "Du verwendest WordPress %s."
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
99
  msgid "Connect to Piwik"
@@ -116,8 +130,17 @@ msgid "Credits"
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
123
  msgid "Self-hosted"
@@ -132,10 +155,15 @@ msgid "Cloud-hosted"
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,29 +171,46 @@ msgstr "Weitere Informationen"
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
171
  msgid "Piwik Mode"
@@ -180,8 +225,12 @@ msgid "Piwik URL"
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
187
  msgid "Piwik path"
@@ -189,23 +238,32 @@ msgstr "Piwik Pfad"
189
 
190
  #: classes/WP_Piwik/Admin/Settings.php:93
191
  msgid "Enter the file path to your Piwik instance, e.g. /var/www/piwik/."
192
- msgstr "Gib den Dateipfad zu Deiner Piwik-Installation an, z.B. /var/www/piwik/."
 
193
 
194
  #: classes/WP_Piwik/Admin/Settings.php:94
195
  msgid "Piwik user"
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
203
  msgid "Auth token"
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
211
  #, php-format
@@ -217,8 +275,13 @@ msgid "Auto config"
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
224
  msgid "Save settings to start estimation."
@@ -236,11 +299,13 @@ msgstr "W&auml;hle die Seite"
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,7 +337,8 @@ msgstr "Zeige SEO-Daten"
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,7 +346,10 @@ msgstr "Langsam!"
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
 
@@ -314,7 +383,8 @@ msgstr "Zeige einen Graphen in der WordPress Toolbar"
314
 
315
  #: classes/WP_Piwik/Admin/Settings.php:144
316
  msgid "Display a last 30 days visitor graph on WordPress' toolbar."
317
- msgstr "Zeige einen Besuchergraph der letzten 30 Tage in der WordPress' Toolbar."
 
318
 
319
  #: classes/WP_Piwik/Admin/Settings.php:146
320
  msgid "Display stats to"
@@ -322,7 +392,9 @@ msgstr "Zeige Statistiken für"
322
 
323
  #: classes/WP_Piwik/Admin/Settings.php:153
324
  msgid "Choose user roles allowed to see the statistics page."
325
- msgstr "W&auml;hle diejenigen Nutzerrollen, die sich die Statistiken ansehen d&uuml;rfen."
 
 
326
 
327
  #: classes/WP_Piwik/Admin/Settings.php:155
328
  msgid "Show per post stats"
@@ -330,7 +402,8 @@ msgstr "Zeige Beitrags-Statistiken"
330
 
331
  #: classes/WP_Piwik/Admin/Settings.php:155
332
  msgid "Show stats about single posts at the post edit admin page."
333
- msgstr "Zeige Statistiken zu einzelnen Beitr&auml;gen auf der Bearbeiten-Seite."
 
334
 
335
  #: classes/WP_Piwik/Admin/Settings.php:157
336
  msgid "Piwik shortcut"
@@ -361,10 +434,17 @@ msgid "You can choose between four tracking code modes:"
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,39 +452,57 @@ msgstr "Standard-Tracking"
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
384
  #, php-format
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
 
392
  #: classes/WP_Piwik/Admin/Settings.php:172
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
410
  msgid "Use the placeholder {ID} to add the Piwik site ID."
@@ -431,8 +529,11 @@ msgid "Header"
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
438
  msgid "Noscript code"
@@ -446,7 +547,8 @@ msgstr "F&uuml;ge &lt;noscript&gt; hinzu"
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,10 +573,21 @@ msgid "Track only visible content blocks"
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."
@@ -493,7 +606,9 @@ 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
499
  msgid "Add annotation on new post"
@@ -509,15 +624,21 @@ msgstr "Zeige Custom-Variables-Box"
509
 
510
  #: classes/WP_Piwik/Admin/Settings.php:206
511
  msgid " Show a &quot;custom variables&quot; edit box on post edit page."
512
- msgstr "Zeige eine Eingabebox für &quot;custom variables&quot; auf der Seite zum Bearbeiten von Posts."
 
 
513
 
514
  #: classes/WP_Piwik/Admin/Settings.php:208
515
  msgid "Add new file types for download tracking"
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
523
  msgid "Disable cookies"
@@ -532,8 +653,12 @@ msgid "Limit cookie lifetime"
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
539
  msgid "Visitor timeout (seconds)"
@@ -552,8 +677,12 @@ msgid "Track admin pages"
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
559
  msgid "Tracking filter"
@@ -561,7 +690,9 @@ msgstr "Tracking-Filter"
561
 
562
  #: classes/WP_Piwik/Admin/Settings.php:227
563
  msgid "Choose users by user role you do <strong>not</strong> want to track."
564
- msgstr "W&auml;hle diejenigen Nutzerrollen, die Du <strong>nicht</strong> erfassen willst."
 
 
565
 
566
  #: classes/WP_Piwik/Admin/Settings.php:229
567
  msgid "Track subdomains in the same website"
@@ -593,7 +724,8 @@ msgstr "Links in RSS-Feeds als Kampagne tracken"
593
 
594
  #: classes/WP_Piwik/Admin/Settings.php:235
595
  msgid "This will add Piwik campaign parameters to the RSS feed links. "
596
- msgstr "Dies f&uuml;gt einen Piwik-Kampagnen-Parameter zu den RSS-Feed-Links hinzu."
 
597
 
598
  #: classes/WP_Piwik/Admin/Settings.php:237
599
  msgid "RSS feed campaign"
@@ -604,8 +736,13 @@ msgid "Keyword: post name."
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
611
  msgid "Enable cache"
@@ -613,7 +750,8 @@ msgstr "Cache einschalten"
613
 
614
  #: classes/WP_Piwik/Admin/Settings.php:244
615
  msgid "Cache API calls, which not contain today's values, for a week."
616
- msgstr "Cache API-Anfragen, die keine heutigen Werte enthalten, für eine Woche."
 
617
 
618
  #: classes/WP_Piwik/Admin/Settings.php:246
619
  msgid "Disable time limit"
@@ -621,7 +759,8 @@ msgstr "Zeitlimit deaktivieren"
621
 
622
  #: classes/WP_Piwik/Admin/Settings.php:246
623
  msgid "Use set_time_limit(0) if stats page causes a time out."
624
- msgstr "Verwende set_time_limit(0) falls die Statistik-Seite einen Timeout erzeugt."
 
625
 
626
  #: classes/WP_Piwik/Admin/Settings.php:248
627
  msgid "Connection timeout"
@@ -665,8 +804,12 @@ msgid "See %sCloudFlare Knowledge Base%s."
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
672
  msgid "CDN URL"
@@ -693,8 +836,12 @@ msgid "https (SSL)"
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
700
  msgid "Donate"
@@ -702,13 +849,16 @@ msgstr "Spenden"
702
 
703
  #: classes/WP_Piwik/Admin/Settings.php:429
704
  msgid "If you like WP-Piwik, you can support its development by a donation:"
705
- msgstr "Wenn Dir WP-Piwik gef&auml;llt, kannst Du die weitere Entwicklung mit einer Spende f&ouml;rdern:"
 
 
706
 
707
  #: classes/WP_Piwik/Admin/Settings.php:467
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,8 +875,14 @@ msgid ", and all people flattering this"
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
732
  msgid "Metabox support inspired by"
@@ -734,7 +890,8 @@ msgstr "Die Metabox-Unterst&uuml;tzung wurde inspiriert von"
734
 
735
  #: classes/WP_Piwik/Admin/Settings.php:504
736
  msgid "Tabbed settings page suggested by the"
737
- msgstr "Die Tabs f&uuml;r die Einstellungen wurden inspiriert von einem Artikel im"
 
738
 
739
  #: classes/WP_Piwik/Admin/Settings.php:505
740
  msgid "Thank you very much"
@@ -745,12 +902,22 @@ msgid "for your translation work"
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
756
  msgid "The best place to get help:"
@@ -765,14 +932,19 @@ msgid "Debugging"
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,16 +1036,31 @@ msgstr "Wert"
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,15 +1084,23 @@ msgstr "Woche"
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,31 +1108,42 @@ msgstr "Andere"
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,5 +1237,9 @@ msgstr "Seitenansichten"
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."
 
 
 
 
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-19 08:20+0100\n"
10
  "Last-Translator: André Bräkling <andre@braekling.de>\n"
11
+ "Language-Team: German (Germany) (http://www.transifex.com/projects/p/wp-"
12
+ "piwik/language/de_DE/)\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
  "Language: de_DE\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
+ "X-Generator: Poedit 1.5.7\n"
19
  "X-Poedit-Basepath: .\n"
20
  "X-Poedit-KeywordsList: __;_e\n"
21
  "X-Poedit-SourceCharset: UTF-8\n"
83
 
84
  #: classes/WP_Piwik/Admin/Settings.php:35
85
  #, php-format
86
+ msgid ""
87
+ "You are running a WordPress %s blog network (WPMU). WP-Piwik will handle "
88
+ "your sites as different websites."
89
+ msgstr ""
90
+ "Du verwendest ein WordPress %s Blog Netzwerk (WPMU). WP-Piwik wird Deine "
91
+ "Seiten als unterschiedliche Webseiten behandeln."
92
 
93
  #: classes/WP_Piwik/Admin/Settings.php:37
94
  #, php-format
95
+ msgid ""
96
+ "WP-Piwik %s was not able to connect to Piwik using your configuration. Check "
97
+ "the &raquo;Connect to Piwik&laquo; section below."
98
+ msgstr ""
99
+ "WP-Piwik %s konnte sich mit Deiner Konfiguration nicht mit Piwik verbinden. "
100
+ "Bitte &uuml;berpr&uuml;fe die &raquo;Mit Piwik verbinden&laquo;-Sektion "
101
+ "unten."
102
 
103
  #: classes/WP_Piwik/Admin/Settings.php:40
104
  #, php-format
105
+ msgid ""
106
+ "WP-Piwik %s has to be connected to Piwik first. Check the &raquo;Connect to "
107
+ "Piwik&laquo; section below."
108
+ msgstr ""
109
+ "WP-Piwik %s muss zun&auml;chst mit Piwik verbunden werden. Bitte &uuml;"
110
+ "berpr&uuml;fe die &raquo;Mit Piwik verbinden&laquo;-Sektion unten."
111
 
112
  #: classes/WP_Piwik/Admin/Settings.php:44
113
  msgid "Connect to Piwik"
130
  msgstr "Danksagungen"
131
 
132
  #: classes/WP_Piwik/Admin/Settings.php:79
133
+ msgid ""
134
+ "WP-Piwik is a WordPress plugin to show a selection of Piwik stats in your "
135
+ "WordPress admin dashboard and to add and configure your Piwik tracking code. "
136
+ "To use this you will need your own Piwik instance. If you do not already "
137
+ "have a Piwik setup, you have two simple options: use either"
138
+ msgstr ""
139
+ "WP-Piwik ist ein WordPress Plugin, um eine Auswahl von Piwik-Statistiken in "
140
+ "Deinem WordPress Admin-Dashboard anzuzeigen, und um Deinen Piwik-Tracking-"
141
+ "Code hinzuzufügen und zu konfigurieren. Um es zu verwenden, musst Du "
142
+ "zunächst eine Piwik-Installation haben. Es gibt zwei M&ouml;glichkeiten: "
143
+ "Betreibe Piwik entweder "
144
 
145
  #: classes/WP_Piwik/Admin/Settings.php:79
146
  msgid "Self-hosted"
155
  msgstr "in der Cloud"
156
 
157
  #: classes/WP_Piwik/Admin/Settings.php:82
158
+ msgid ""
159
+ "Neither cURL nor fopen are available. So WP-Piwik can not use the HTTP API "
160
+ "and not connect to Piwik Pro."
161
+ msgstr ""
162
+ "Weder cURL noch fopen ist verfügbar. Deswegen kann WP-Piwik die HTTP-API "
163
+ "nicht verwenden und auch nicht zu Piwik Pro verbinden."
164
 
165
+ #: classes/WP_Piwik/Admin/Settings.php:82
166
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
167
  msgid "More information"
168
  msgstr "Weitere Informationen"
169
 
171
  msgid "You can choose between three connection methods:"
172
  msgstr "Du kannst zwischen drei Verbindungsmöglichkeiten wählen:"
173
 
174
+ #: classes/WP_Piwik/Admin/Settings.php:84
175
+ #: classes/WP_Piwik/Admin/Settings.php:87
176
  msgid "Self-hosted (HTTP API, default)"
177
  msgstr "Selbst-gehostet (HTTP API, Standard)"
178
 
179
  #: classes/WP_Piwik/Admin/Settings.php:84
180
+ msgid ""
181
+ "This is the default option for a self-hosted Piwik and should work for most "
182
+ "configurations. WP-Piwik will connect to Piwik using http(s)."
183
+ msgstr ""
184
+ "Dies ist die Standard-Einstellung für ein selbst-gehostetes Piwik und sollte "
185
+ "in den meisten Konfigurationen funktionieren. WP-Piwik verbindet sich mit "
186
+ "Piwik &uuml;ber http(s)."
187
 
188
+ #: classes/WP_Piwik/Admin/Settings.php:84
189
+ #: classes/WP_Piwik/Admin/Settings.php:88
190
  msgid "Self-hosted (PHP API)"
191
  msgstr "Selbst-gehostet (PHP AP)"
192
 
193
  #: classes/WP_Piwik/Admin/Settings.php:84
194
+ msgid ""
195
+ "Choose this, if your self-hosted Piwik and WordPress are running on the same "
196
+ "machine and you know the full server path to your Piwik instance."
197
+ msgstr ""
198
+ "W&auml;hle diese Option, wenn Dein selbst-gehostetes Piwik und WordPress auf "
199
+ "dem gleichen Server laufen und Du den vollen Serverpfad zu Deiner Piwik-"
200
+ "Installation kennst."
201
 
202
+ #: classes/WP_Piwik/Admin/Settings.php:84
203
+ #: classes/WP_Piwik/Admin/Settings.php:89
204
  msgid "Cloud-hosted (Piwik Pro)"
205
  msgstr "In der Cloud (Piwik Pro)"
206
 
207
  #: classes/WP_Piwik/Admin/Settings.php:84
208
+ msgid ""
209
+ "If you are using a cloud-hosted Piwik by Piwik Pro, you can simply use this "
210
+ "option."
211
+ msgstr ""
212
+ "Wenn Du ein Piwik in der Cloud von Piwik Pro verwendest, kannst Du einfach "
213
+ "diese Option w&auml;hlen."
214
 
215
  #: classes/WP_Piwik/Admin/Settings.php:85
216
  msgid "Piwik Mode"
225
  msgstr "Piwik URL"
226
 
227
  #: classes/WP_Piwik/Admin/Settings.php:92
228
+ msgid ""
229
+ "Enter your Piwik URL. This is the same URL you use to access your Piwik "
230
+ "instance, e.g. http://www.example.com/piwik/."
231
+ msgstr ""
232
+ "Gebe Deine Piwik-URL ein. Es handelt sich um die gleiche URL, die Du auch "
233
+ "verwendest, um Dein Piwik zu &ouml;ffnen, z.B. http://www.example.com/piwik/."
234
 
235
  #: classes/WP_Piwik/Admin/Settings.php:93
236
  msgid "Piwik path"
238
 
239
  #: classes/WP_Piwik/Admin/Settings.php:93
240
  msgid "Enter the file path to your Piwik instance, e.g. /var/www/piwik/."
241
+ msgstr ""
242
+ "Gib den Dateipfad zu Deiner Piwik-Installation an, z.B. /var/www/piwik/."
243
 
244
  #: classes/WP_Piwik/Admin/Settings.php:94
245
  msgid "Piwik user"
246
  msgstr "Piwik-Benutzer"
247
 
248
  #: classes/WP_Piwik/Admin/Settings.php:94
249
+ msgid ""
250
+ "Enter your Piwik Pro username. It is also part of your URL: http://USERNAME."
251
+ "piwik.pro."
252
+ msgstr ""
253
+ "Gib hier Deinen Piwik Pro Benutzernamen an. Er ist auch Teil Deiner URL: "
254
+ "http://USERNAME.piwik.pro."
255
 
256
  #: classes/WP_Piwik/Admin/Settings.php:95
257
  msgid "Auth token"
258
  msgstr "Auth Token"
259
 
260
  #: classes/WP_Piwik/Admin/Settings.php:95
261
+ msgid ""
262
+ "Enter your Piwik auth token here. It is an alphanumerical code like "
263
+ "0a1b2c34d56e78901fa2bc3d45678efa."
264
+ msgstr ""
265
+ "Gib hier Dein Piwik Auth Token an. Es ist ein alphanumerische Code wie "
266
+ "0a1b2c34d56e78901fa2bc3d45678efa."
267
 
268
  #: classes/WP_Piwik/Admin/Settings.php:95
269
  #, php-format
275
  msgstr "Auto-Konfiguration"
276
 
277
  #: classes/WP_Piwik/Admin/Settings.php:100
278
+ msgid ""
279
+ "Check this to automatically choose your blog from your Piwik sites by URL. "
280
+ "If your blog is not added to Piwik yet, WP-Piwik will add a new site."
281
+ msgstr ""
282
+ "Aktiviere diesen Haken, um Dein Blog &uuml;ber seine URL automatisch aus "
283
+ "Deinen Piwik-Seiten auszuw&auml;hlen. Wenn Dein Blog bisher nicht zu Piwik "
284
+ "hinzugef&uuml;gt wurde, wird WP-Piwik eine neue Seite hinzuf&uuml;gen."
285
 
286
  #: classes/WP_Piwik/Admin/Settings.php:106
287
  msgid "Save settings to start estimation."
299
  msgid "Piwik default date"
300
  msgstr "Piwik Standard-Datum"
301
 
302
+ #: classes/WP_Piwik/Admin/Settings.php:123
303
+ #: classes/WP_Piwik/Admin/Settings.php:136
304
  msgid "Today"
305
  msgstr "Heute"
306
 
307
+ #: classes/WP_Piwik/Admin/Settings.php:124
308
+ #: classes/WP_Piwik/Admin/Settings.php:135
309
  msgid "Yesterday"
310
  msgstr "Gestern"
311
 
337
  msgid "Display SEO ranking data on statistics page."
338
  msgstr "Zeige SEO-Ranking-Daten auf der Statistiken-Seite."
339
 
340
+ #: classes/WP_Piwik/Admin/Settings.php:131
341
+ #: classes/WP_Piwik/Admin/Settings.php:142
342
  msgid "Slow!"
343
  msgstr "Langsam!"
344
 
346
  msgid "Dashboard overview"
347
  msgstr "Dashboard Übersicht"
348
 
349
+ #: classes/WP_Piwik/Admin/Settings.php:134
350
+ #: classes/WP_Piwik/Admin/Settings.php:172
351
+ #: classes/WP_Piwik/Admin/Settings.php:174
352
+ #: classes/WP_Piwik/Admin/Settings.php:195
353
  msgid "Disabled"
354
  msgstr "Deaktiviert"
355
 
383
 
384
  #: classes/WP_Piwik/Admin/Settings.php:144
385
  msgid "Display a last 30 days visitor graph on WordPress' toolbar."
386
+ msgstr ""
387
+ "Zeige einen Besuchergraph der letzten 30 Tage in der WordPress' Toolbar."
388
 
389
  #: classes/WP_Piwik/Admin/Settings.php:146
390
  msgid "Display stats to"
392
 
393
  #: classes/WP_Piwik/Admin/Settings.php:153
394
  msgid "Choose user roles allowed to see the statistics page."
395
+ msgstr ""
396
+ "W&auml;hle diejenigen Nutzerrollen, die sich die Statistiken ansehen d&uuml;"
397
+ "rfen."
398
 
399
  #: classes/WP_Piwik/Admin/Settings.php:155
400
  msgid "Show per post stats"
402
 
403
  #: classes/WP_Piwik/Admin/Settings.php:155
404
  msgid "Show stats about single posts at the post edit admin page."
405
+ msgstr ""
406
+ "Zeige Statistiken zu einzelnen Beitr&auml;gen auf der Bearbeiten-Seite."
407
 
408
  #: classes/WP_Piwik/Admin/Settings.php:157
409
  msgid "Piwik shortcut"
434
  msgstr "Du kannst zwischen vier Tracking-Code-Varianten wählen:"
435
 
436
  #: classes/WP_Piwik/Admin/Settings.php:172
437
+ msgid ""
438
+ "WP-Piwik will not add the tracking code. Use this, if you want to add the "
439
+ "tracking code to your template files or you use another plugin to add the "
440
+ "tracking code."
441
+ msgstr ""
442
+ "WP-Piwik wird den Tracking-Code nicht hinzuf&uuml;gen. Benutze dies, wenn Du "
443
+ "den Tracking-Code direkt in Deinem Template oder &uuml;ber ein anderes "
444
+ "Plugin einfügen willst."
445
 
446
+ #: classes/WP_Piwik/Admin/Settings.php:172
447
+ #: classes/WP_Piwik/Admin/Settings.php:175
448
  msgid "Default tracking"
449
  msgstr "Standard-Tracking"
450
 
452
  msgid "WP-Piwik will use Piwik's standard tracking code."
453
  msgstr "WP-Piwik verwendet den Standard Tracking-Code von Piwik."
454
 
455
+ #: classes/WP_Piwik/Admin/Settings.php:172
456
+ #: classes/WP_Piwik/Admin/Settings.php:176
457
  msgid "Use js/index.php"
458
  msgstr "Nutze js/index.php"
459
 
460
  #: classes/WP_Piwik/Admin/Settings.php:172
461
+ msgid ""
462
+ "You can choose this tracking code, to deliver a minified proxy code and to "
463
+ "avoid using the files called piwik.js or piwik.php."
464
+ msgstr ""
465
+ "Du kannst diesen Tracking-Code w&auml;hlen, um einen minimierten Proxy-Code "
466
+ "auszuliefern und dabei zu vermeiden, dass die Dateien mit dem Namen piwik.js "
467
+ "oder piwik.php verwendet werden."
468
 
469
  #: classes/WP_Piwik/Admin/Settings.php:172
470
  #, php-format
471
  msgid "See %sreadme file%s."
472
  msgstr "Siehe %sReadme-Datei%s."
473
 
474
+ #: classes/WP_Piwik/Admin/Settings.php:172
475
+ #: classes/WP_Piwik/Admin/Settings.php:177
476
  msgid "Use proxy script"
477
  msgstr "Verwende Proxy-Skript"
478
 
479
  #: classes/WP_Piwik/Admin/Settings.php:172
480
  msgid "Use this tracking code to not reveal the Piwik server URL."
481
+ msgstr ""
482
+ "Verwende diesen Tracking-Code, um die URL zu Deinem Piwik-Sever nicht "
483
+ "offenzulegen."
484
 
485
+ #: classes/WP_Piwik/Admin/Settings.php:172
486
+ #: classes/WP_Piwik/Admin/Settings.php:192
487
+ #: classes/WP_Piwik/Admin/Settings.php:202
488
  #, php-format
489
  msgid "See %sPiwik FAQ%s."
490
  msgstr "Siehe %sPiwik FAQ%s."
491
 
492
+ #: classes/WP_Piwik/Admin/Settings.php:172
493
+ #: classes/WP_Piwik/Admin/Settings.php:178
494
  msgid "Enter manually"
495
  msgstr "Manuelle Eingabe"
496
 
497
  #: classes/WP_Piwik/Admin/Settings.php:172
498
+ msgid ""
499
+ "Enter your own tracking code manually. You can choose one of the prior "
500
+ "options, pre-configure your tracking code and switch to manually editing at "
501
+ "last."
502
+ msgstr ""
503
+ "Gebe manuell Deinen eigenen Tracking-Code ein. Du kannst eine der "
504
+ "vorhergehenden Optionen nutzen, Deinen Tracking-Code vorkonfigurieren und "
505
+ "abschlie&szlig;end auf die manuelle Bearbeitung wechseln."
506
 
507
  #: classes/WP_Piwik/Admin/Settings.php:172
508
  msgid "Use the placeholder {ID} to add the Piwik site ID."
529
  msgstr "Kopfbereich"
530
 
531
  #: classes/WP_Piwik/Admin/Settings.php:186
532
+ msgid ""
533
+ "Choose whether the JavaScript code is added to the footer or the header."
534
+ msgstr ""
535
+ "W&auml;hle, ob der JavaScript-Code im Footer oder im Header eingef&uuml;gt "
536
+ "werden soll."
537
 
538
  #: classes/WP_Piwik/Admin/Settings.php:188
539
  msgid "Noscript code"
547
  msgid "Adds the &lt;noscript&gt; code to your footer."
548
  msgstr "F&uuml;gt den &lt;noscript&gt;-Code im Footer ein."
549
 
550
+ #: classes/WP_Piwik/Admin/Settings.php:190
551
+ #: classes/WP_Piwik/Admin/Settings.php:192
552
  msgid "Disabled in proxy mode."
553
  msgstr "Im Proxy-Modus deaktiviert."
554
 
573
  msgstr "Tracke nur sichtbare Content-Bereiche"
574
 
575
  #: classes/WP_Piwik/Admin/Settings.php:198
576
+ msgid ""
577
+ "Content tracking allows you to track interaction with the content of a web "
578
+ "page or application."
579
+ msgstr ""
580
+ "Das Content-Tracking erlaubt es Dir, Interaktionen mit dem Inhalt einer "
581
+ "Webseite oder -anwendung zu tracken."
582
 
583
+ #: classes/WP_Piwik/Admin/Settings.php:198
584
+ #: classes/WP_Piwik/Admin/Settings.php:200
585
+ #: classes/WP_Piwik/Admin/Settings.php:204
586
+ #: classes/WP_Piwik/Admin/Settings.php:206
587
+ #: classes/WP_Piwik/Admin/Settings.php:208
588
+ #: classes/WP_Piwik/Admin/Settings.php:229
589
+ #: classes/WP_Piwik/Admin/Settings.php:231
590
+ #: classes/WP_Piwik/Admin/Settings.php:235
591
  #, php-format
592
  msgid "See %sPiwik documentation%s."
593
  msgstr "Siehe %sPiwik-Dokumentation%s."
606
 
607
  #: classes/WP_Piwik/Admin/Settings.php:202
608
  msgid "WP-Piwik can automatically add a 404-category to track 404-page-visits."
609
+ msgstr ""
610
+ "WP-Piwik kann automatisch eine eigene Kategorie f&uuml;r 404-Seiten "
611
+ "hinzuf&uuml;gen."
612
 
613
  #: classes/WP_Piwik/Admin/Settings.php:204
614
  msgid "Add annotation on new post"
624
 
625
  #: classes/WP_Piwik/Admin/Settings.php:206
626
  msgid " Show a &quot;custom variables&quot; edit box on post edit page."
627
+ msgstr ""
628
+ "Zeige eine Eingabebox für &quot;custom variables&quot; auf der Seite zum "
629
+ "Bearbeiten von Posts."
630
 
631
  #: classes/WP_Piwik/Admin/Settings.php:208
632
  msgid "Add new file types for download tracking"
633
  msgstr "F&uuml;ge weitere Dateitypen f&uuml;r das Download-Tracking hinzu."
634
 
635
  #: classes/WP_Piwik/Admin/Settings.php:208
636
+ msgid ""
637
+ "Add file extensions for download tracking, divided by a vertical bar "
638
+ "(&#124;)."
639
+ msgstr ""
640
+ "F&uuml;ge Dateierweiterung zum Download-Tracking hinzu. Trenne mehrere "
641
+ "Erweiterung durch einen senkrechten Strich (&#124;)."
642
 
643
  #: classes/WP_Piwik/Admin/Settings.php:210
644
  msgid "Disable cookies"
653
  msgstr "Cookie-Lebensdauer beschr&auml;nken"
654
 
655
  #: classes/WP_Piwik/Admin/Settings.php:212
656
+ msgid ""
657
+ "You can limit the cookie lifetime to avoid tracking your users over a longer "
658
+ "period as necessary."
659
+ msgstr ""
660
+ "Du kannst die Cookie-Lebenszeit begrenzen, um Deine Besucher nicht länger "
661
+ "als notwendig zu tracken."
662
 
663
  #: classes/WP_Piwik/Admin/Settings.php:214
664
  msgid "Visitor timeout (seconds)"
677
  msgstr "Admin-Seiten tracken"
678
 
679
  #: classes/WP_Piwik/Admin/Settings.php:220
680
+ msgid ""
681
+ "Enable to track users on admin pages (remember to configure the tracking "
682
+ "filter appropriately)."
683
+ msgstr ""
684
+ "Aktivieren, um Nutzer auf Admin-Seiten zu z&auml;hlen (bitte den Tracking "
685
+ "Filter entsprechend konfigurieren)."
686
 
687
  #: classes/WP_Piwik/Admin/Settings.php:223
688
  msgid "Tracking filter"
690
 
691
  #: classes/WP_Piwik/Admin/Settings.php:227
692
  msgid "Choose users by user role you do <strong>not</strong> want to track."
693
+ msgstr ""
694
+ "W&auml;hle diejenigen Nutzerrollen, die Du <strong>nicht</strong> erfassen "
695
+ "willst."
696
 
697
  #: classes/WP_Piwik/Admin/Settings.php:229
698
  msgid "Track subdomains in the same website"
724
 
725
  #: classes/WP_Piwik/Admin/Settings.php:235
726
  msgid "This will add Piwik campaign parameters to the RSS feed links. "
727
+ msgstr ""
728
+ "Dies f&uuml;gt einen Piwik-Kampagnen-Parameter zu den RSS-Feed-Links hinzu."
729
 
730
  #: classes/WP_Piwik/Admin/Settings.php:237
731
  msgid "RSS feed campaign"
736
  msgstr "Schl&uuml;sselwort: Name des Beitrags."
737
 
738
  #: classes/WP_Piwik/Admin/Settings.php:242
739
+ msgid ""
740
+ "Usually, you do not need to change these settings. If you want to do so, you "
741
+ "should know what you do or you got an expert's advice."
742
+ msgstr ""
743
+ "Normalerweise solltest Du diese Einstellungen nicht ändern müssen. Solltest "
744
+ "Du hier doch etwas ändern wollen, solltest Du wissen was Du tust oder dies "
745
+ "auf Anleitung eines Experten tun."
746
 
747
  #: classes/WP_Piwik/Admin/Settings.php:244
748
  msgid "Enable cache"
750
 
751
  #: classes/WP_Piwik/Admin/Settings.php:244
752
  msgid "Cache API calls, which not contain today's values, for a week."
753
+ msgstr ""
754
+ "Cache API-Anfragen, die keine heutigen Werte enthalten, für eine Woche."
755
 
756
  #: classes/WP_Piwik/Admin/Settings.php:246
757
  msgid "Disable time limit"
759
 
760
  #: classes/WP_Piwik/Admin/Settings.php:246
761
  msgid "Use set_time_limit(0) if stats page causes a time out."
762
+ msgstr ""
763
+ "Verwende set_time_limit(0) falls die Statistik-Seite einen Timeout erzeugt."
764
 
765
  #: classes/WP_Piwik/Admin/Settings.php:248
766
  msgid "Connection timeout"
804
  msgstr "Siehe %sdie CloudFlare Knowledge Base%s."
805
 
806
  #: classes/WP_Piwik/Admin/Settings.php:258
807
+ msgid ""
808
+ "Adds data-cfasync=false to the script tag, e.g., to ask Rocket Loader to "
809
+ "ignore the script. "
810
+ msgstr ""
811
+ "F&uuml;ge data-cfasync=false zum Script-Tag hinzu. Damit wird z.B. Rocket "
812
+ "Loader aufgefordert, das Skript zu ignorieren."
813
 
814
  #: classes/WP_Piwik/Admin/Settings.php:260
815
  msgid "CDN URL"
836
  msgstr "https (SSL)"
837
 
838
  #: classes/WP_Piwik/Admin/Settings.php:268
839
+ msgid ""
840
+ "Choose if you want to explicitly force Piwik to use HTTP or HTTPS. Does not "
841
+ "work with a CDN URL."
842
+ msgstr ""
843
+ "W&auml;hle aus, ob Du Piwik ausdr&uuml;cklich zwingen willst, HTTP oder "
844
+ "HTTPS zu verwenden. Funktioniert nicht mit einer CDN URL."
845
 
846
  #: classes/WP_Piwik/Admin/Settings.php:427
847
  msgid "Donate"
849
 
850
  #: classes/WP_Piwik/Admin/Settings.php:429
851
  msgid "If you like WP-Piwik, you can support its development by a donation:"
852
+ msgstr ""
853
+ "Wenn Dir WP-Piwik gef&auml;llt, kannst Du die weitere Entwicklung mit einer "
854
+ "Spende f&ouml;rdern:"
855
 
856
  #: classes/WP_Piwik/Admin/Settings.php:467
857
  msgid "My Amazon.de wishlist"
858
  msgstr "Meine Wunschliste bei Amazon.de"
859
 
860
+ #: classes/WP_Piwik/Admin/Settings.php:470
861
+ #: classes/WP_Piwik/Admin/Settings.php:517
862
  msgid "Please don't forget to vote the compatibility at the"
863
  msgstr "Bitte denke daran, eine Kompatibilit&auml;tsbewertung abzugeben:"
864
 
875
  msgstr " und allen, die WP-Piwik flattrn"
876
 
877
  #: classes/WP_Piwik/Admin/Settings.php:502
878
+ msgid ""
879
+ "Graphs powered by <a href=\"http://www.jqplot.com/\">jqPlot</a> (License: "
880
+ "GPL 2.0 and MIT) and <a href=\"http://omnipotent.net/jquery.sparkline/"
881
+ "\">jQuery Sparklines</a> (License: New BSD License)."
882
+ msgstr ""
883
+ "Die Graphen werden mit <a href=\"http://www.jqplot.com/\">jqPlot</a> "
884
+ "(Lizenz: GPL 2.0 and MIT) und <a href=\"http://omnipotent.net/jquery."
885
+ "sparkline/\">jQuery Sparklines</a> (Lizenz: New BSD License) erstellt."
886
 
887
  #: classes/WP_Piwik/Admin/Settings.php:503
888
  msgid "Metabox support inspired by"
890
 
891
  #: classes/WP_Piwik/Admin/Settings.php:504
892
  msgid "Tabbed settings page suggested by the"
893
+ msgstr ""
894
+ "Die Tabs f&uuml;r die Einstellungen wurden inspiriert von einem Artikel im"
895
 
896
  #: classes/WP_Piwik/Admin/Settings.php:505
897
  msgid "Thank you very much"
902
  msgstr "f&uuml;r eure &Uuml;bersetzungsarbeit"
903
 
904
  #: classes/WP_Piwik/Admin/Settings.php:506
905
+ msgid ""
906
+ "Thank you very much, all users who send me mails containing criticism, "
907
+ "commendation, feature requests and bug reports! You help me to make WP-Piwik "
908
+ "much better."
909
+ msgstr ""
910
+ "Vielen Dank an alle Nutzer, die mir Mails mit Kritik, Lob, Featurew&uuml;"
911
+ "nsche und Bugmeldungen senden. Ihr helft mir dabei, WP-Piwik viel besser zu "
912
+ "machen."
913
 
914
  #: classes/WP_Piwik/Admin/Settings.php:507
915
+ msgid ""
916
+ "Thank <strong>you</strong> for using my plugin. It is the best commendation "
917
+ "if my piece of code is really used!"
918
+ msgstr ""
919
+ "Vielen Dank an <strong>Dich</strong> f&uuml;r die Nutzung meines Plugins. Es "
920
+ "ist das gr&ouml;&szlig;te Lob, wenn mein Code tats&auml;chlich benutzt wird!"
921
 
922
  #: classes/WP_Piwik/Admin/Settings.php:516
923
  msgid "The best place to get help:"
932
  msgstr "Fehlersuche"
933
 
934
  #: classes/WP_Piwik/Admin/Settings.php:520
935
+ msgid ""
936
+ "Either allow_url_fopen has to be enabled <em>or</em> cURL has to be "
937
+ "available:"
938
+ msgstr ""
939
+ "Entweder allow_url_fopen muss aktiviert <em>oder</em> cURL muss verf&uuml;"
940
+ "gbar sein:"
941
 
942
  #: classes/WP_Piwik/Admin/Settings.php:523
943
  msgid "cURL is"
944
  msgstr "cURL ist"
945
 
946
+ #: classes/WP_Piwik/Admin/Settings.php:524
947
+ #: classes/WP_Piwik/Admin/Settings.php:529
948
  msgid "not"
949
  msgstr "nicht"
950
 
1036
  msgid "Set custom variables for a page view"
1037
  msgstr "Definiere custom variables f&uuml;r einen Seitenaufruf."
1038
 
1039
+ #: classes/WP_Piwik/Widget.php:91
1040
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:35
1041
+ #: classes/WP_Piwik/Widget/Browsers.php:35
1042
+ #: classes/WP_Piwik/Widget/Chart.php:41
1043
+ #: classes/WP_Piwik/Widget/Noresult.php:23
1044
+ #: classes/WP_Piwik/Widget/Overview.php:24
1045
+ #: classes/WP_Piwik/Widget/Plugins.php:23 classes/WP_Piwik/Widget/Post.php:25
1046
+ #: classes/WP_Piwik/Widget/Screens.php:35
1047
+ #: classes/WP_Piwik/Widget/Search.php:23 classes/WP_Piwik/Widget/Seo.php:20
1048
+ #: classes/WP_Piwik/Widget/Systems.php:33
1049
+ #: classes/WP_Piwik/Widget/Visitors.php:35
1050
  msgid "Piwik error"
1051
  msgstr "Piwik-Fehler"
1052
 
1053
+ #: classes/WP_Piwik/Widget.php:100
1054
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:37
1055
+ #: classes/WP_Piwik/Widget/Browsers.php:37
1056
+ #: classes/WP_Piwik/Widget/Screens.php:37
1057
+ #: classes/WP_Piwik/Widget/Systems.php:35
1058
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1059
  msgid "Unique"
1060
  msgstr "Unique"
1061
 
1062
+ #: classes/WP_Piwik/Widget.php:102 classes/WP_Piwik/Widget/Plugins.php:25
1063
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1064
  msgid "Visits"
1065
  msgstr "Besuche"
1066
 
1084
  msgid "Browser Details"
1085
  msgstr "Browser-Details"
1086
 
1087
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:37
1088
+ #: classes/WP_Piwik/Widget/Browsers.php:37
1089
  msgid "Browser"
1090
  msgstr "Browser"
1091
 
1092
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:37
1093
+ #: classes/WP_Piwik/Widget/Browsers.php:37
1094
+ #: classes/WP_Piwik/Widget/Plugins.php:25
1095
+ #: classes/WP_Piwik/Widget/Screens.php:37
1096
+ #: classes/WP_Piwik/Widget/Systems.php:35
1097
  msgid "Percent"
1098
  msgstr "Prozent"
1099
 
1100
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:53
1101
+ #: classes/WP_Piwik/Widget/Browsers.php:53
1102
+ #: classes/WP_Piwik/Widget/Screens.php:53
1103
+ #: classes/WP_Piwik/Widget/Systems.php:51
1104
  msgid "Others"
1105
  msgstr "Andere"
1106
 
1108
  msgid "Browsers"
1109
  msgstr "Browser"
1110
 
1111
+ #: classes/WP_Piwik/Widget/Chart.php:17
1112
+ #: classes/WP_Piwik/Widget/Overview.php:40 classes/WP_Piwik/Widget/Post.php:37
1113
+ #: classes/WP_Piwik/Widget/Visitors.php:17
1114
  msgid "Visitors"
1115
  msgstr "Besucher"
1116
 
1117
  #: classes/WP_Piwik/Widget/Chart.php:69
1118
+ msgid ""
1119
+ "The graph contains the values shown in the table below (visitors / unique / "
1120
+ "bounces). The red line show a linear trendline (unique)."
1121
+ msgstr ""
1122
+ "Der Graph zeigt die Werte aus der Besucher-Tabelle (Besucher / Unique / "
1123
+ "Abspr&uuml;nge). Die rote Linie zeigt eine lineare Trendlinie (Unique)."
1124
 
1125
  #: classes/WP_Piwik/Widget/Keywords.php:16
1126
  msgid "Keywords"
1127
  msgstr "Keywords"
1128
 
1129
+ #: classes/WP_Piwik/Widget/Noresult.php:16
1130
+ #: classes/WP_Piwik/Widget/Search.php:16
1131
  msgid "Site Search"
1132
  msgstr "Seitensuche"
1133
 
1134
+ #: classes/WP_Piwik/Widget/Noresult.php:25
1135
+ #: classes/WP_Piwik/Widget/Search.php:25
1136
  msgid "Keyword"
1137
  msgstr "Keyword"
1138
 
1139
+ #: classes/WP_Piwik/Widget/Noresult.php:25
1140
+ #: classes/WP_Piwik/Widget/Search.php:25
1141
  msgid "Requests"
1142
  msgstr "Anfragen"
1143
 
1144
+ #: classes/WP_Piwik/Widget/Noresult.php:25
1145
+ #: classes/WP_Piwik/Widget/Search.php:25
1146
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1147
  msgid "Bounced"
1148
  msgstr "Abspr&uuml;nge"
1149
 
1237
 
1238
  #: wp-piwik.php:60
1239
  #, php-format
1240
+ msgid ""
1241
+ "WP-Piwik requires at least PHP 5.3. You are using the deprecated version %s. "
1242
+ "Please update PHP to use WP-Piwik."
1243
+ msgstr ""
1244
+ "WP-Piwik ben&ouml;tigt zumindest PHP 5.3. Du verwendest die veraltete "
1245
+ "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,4 +1,4 @@
1
- #
2
  # Translators:
3
  # Andre Braekling <webmaster@braekling.de>, 2009
4
  # Franck, 2015
@@ -6,19 +6,20 @@ 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
@@ -85,21 +86,27 @@ msgstr "Vous utilisez WordPress %s."
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"
@@ -124,10 +131,15 @@ msgstr "Crédits"
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"
@@ -145,7 +157,9 @@ msgstr "hébergé dans un Cloud"
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
@@ -166,6 +180,9 @@ 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
@@ -174,9 +191,12 @@ 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
@@ -187,7 +207,9 @@ msgstr "Hébergé dans un Cloud (Piwik Pro)"
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"
@@ -205,7 +227,9 @@ msgstr "Piwik URL"
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"
@@ -221,9 +245,11 @@ 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"
@@ -233,7 +259,9 @@ msgstr "Clef partagée (token_auth)"
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
@@ -248,7 +276,10 @@ msgstr "Auto config"
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."
@@ -326,7 +357,8 @@ 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"
@@ -350,7 +382,9 @@ 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"
@@ -358,7 +392,8 @@ 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"
@@ -366,7 +401,9 @@ 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"
@@ -401,7 +438,10 @@ 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
@@ -421,7 +461,9 @@ msgstr "Utiliser js/index.php"
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
@@ -454,11 +496,15 @@ 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"
@@ -483,7 +529,9 @@ msgstr "En-tête"
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"
@@ -526,7 +574,9 @@ msgstr "Suivre uniquement les blocs de contenu visibles"
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
@@ -546,16 +596,18 @@ 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"
@@ -571,7 +623,9 @@ 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"
@@ -581,7 +635,9 @@ msgstr "Ajouter de nouveaux types de fichier pour le suivi de téléchargement"
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"
@@ -597,9 +653,11 @@ 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)"
@@ -621,7 +679,9 @@ msgstr "Suivre les pages d'admin"
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"
@@ -629,7 +689,9 @@ 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"
@@ -641,7 +703,7 @@ 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."
@@ -673,9 +735,12 @@ 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"
@@ -683,7 +748,9 @@ 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"
@@ -691,7 +758,9 @@ 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"
@@ -738,7 +807,9 @@ msgstr "Voir la %sBase de connaissances CloudFlare%s."
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"
@@ -768,7 +839,9 @@ msgstr "https (SSL)"
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"
@@ -776,7 +849,9 @@ 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"
@@ -802,10 +877,12 @@ msgstr ", et toutes les personnes flatteuses à ce sujet."
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"
@@ -826,15 +903,20 @@ msgstr "pour votre travail de traduction"
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:"
@@ -852,7 +934,8 @@ msgstr "Débogage"
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"
@@ -1033,7 +1116,10 @@ msgstr "Visiteurs"
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"
@@ -1151,6 +1237,8 @@ msgstr "Pages vues"
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."
 
 
1
+ #
2
  # Translators:
3
  # Andre Braekling <webmaster@braekling.de>, 2009
4
  # Franck, 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-19 08:18+0100\n"
10
  "Last-Translator: André Bräkling <andre@braekling.de>\n"
11
+ "Language-Team: French (France) (http://www.transifex.com/projects/p/wp-piwik/"
12
+ "language/fr_FR/)\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
  "Language: fr_FR\n"
17
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
+ "X-Generator: Poedit 1.5.7\n"
19
  "X-Poedit-Basepath: .\n"
20
  "X-Poedit-KeywordsList: __;_e\n"
 
21
  "X-Poedit-SourceCharset: UTF-8\n"
22
+ "X-Poedit-SearchPath-0: .\n"
23
 
24
  #: classes/WP_Piwik.php:185
25
  #, php-format
86
  msgid ""
87
  "You are running a WordPress %s blog network (WPMU). WP-Piwik will handle "
88
  "your sites as different websites."
89
+ msgstr ""
90
+ "Vous utilisez le réseau de blogs (WPMU) d'un WordPress %s . WP-Piwik va "
91
+ "gérer vos sites comme des sites distincts."
92
 
93
  #: classes/WP_Piwik/Admin/Settings.php:37
94
  #, php-format
95
  msgid ""
96
+ "WP-Piwik %s was not able to connect to Piwik using your configuration. Check "
97
+ "the &raquo;Connect to Piwik&laquo; section below."
98
+ msgstr ""
99
+ "WP-Piwik %s n'a pas pu se connecter à Piwik à partir de votre configuration. "
100
+ "Vérifiez la section ci-dessous &raquo;Connecter à Piwik&laquo;."
101
 
102
  #: classes/WP_Piwik/Admin/Settings.php:40
103
  #, php-format
104
  msgid ""
105
  "WP-Piwik %s has to be connected to Piwik first. Check the &raquo;Connect to "
106
  "Piwik&laquo; section below."
107
+ msgstr ""
108
+ "WP-Piwik %s doit en premier être connecté à Piwik. Vérifiez la section ci-"
109
+ "dessous &raquo;&nbsp;Connecter à Piwik&nbsp;&laquo; à Piwik&laquo;."
110
 
111
  #: classes/WP_Piwik/Admin/Settings.php:44
112
  msgid "Connect to Piwik"
131
  #: classes/WP_Piwik/Admin/Settings.php:79
132
  msgid ""
133
  "WP-Piwik is a WordPress plugin to show a selection of Piwik stats in your "
134
+ "WordPress admin dashboard and to add and configure your Piwik tracking code. "
135
+ "To use this you will need your own Piwik instance. If you do not already "
136
  "have a Piwik setup, you have two simple options: use either"
137
+ msgstr ""
138
+ "WP-Piwik est une extension WordPress pour afficher une sélection de stats "
139
+ "Piwik dans votre tableau de bord d'admin WordPress et pour ajouter et "
140
+ "configurer votre code de suivi Piwik. Pour utiliser cela, vous aurez besoin "
141
+ "de votre propre instance Piwik. Si vous ne possédez pas encore de "
142
+ "configuration Piwik, vous avez deux options simples&nbsp;: utilisez au choix"
143
 
144
  #: classes/WP_Piwik/Admin/Settings.php:79
145
  msgid "Self-hosted"
157
  msgid ""
158
  "Neither cURL nor fopen are available. So WP-Piwik can not use the HTTP API "
159
  "and not connect to Piwik Pro."
160
+ msgstr ""
161
+ "Ni cURL ni fopen sont disponibles. WP-Piwik ne peut donc pas utiliser l'API "
162
+ "HTTP et ne peut pas se connecter à Piwik Pro."
163
 
164
  #: classes/WP_Piwik/Admin/Settings.php:82
165
  #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
180
  "This is the default option for a self-hosted Piwik and should work for most "
181
  "configurations. WP-Piwik will connect to Piwik using http(s)."
182
  msgstr ""
183
+ "C'est l'option par défaut pour un Piwik auto-hébergé et devrait fonctionner "
184
+ "pour la plupart des configurations. WP-Piwik va se connecter à Piwik en "
185
+ "utilisant http(s)."
186
 
187
  #: classes/WP_Piwik/Admin/Settings.php:84
188
  #: classes/WP_Piwik/Admin/Settings.php:88
191
 
192
  #: classes/WP_Piwik/Admin/Settings.php:84
193
  msgid ""
194
+ "Choose this, if your self-hosted Piwik and WordPress are running on the same "
195
+ "machine and you know the full server path to your Piwik instance."
196
+ msgstr ""
197
+ "Choisissez cela, si votre Piwik auto-hébergé et WordPress fonctionnent sur "
198
+ "la même machine et que vous connaissez le chemin complet du serveur de votre "
199
+ "instance Piwik."
200
 
201
  #: classes/WP_Piwik/Admin/Settings.php:84
202
  #: classes/WP_Piwik/Admin/Settings.php:89
207
  msgid ""
208
  "If you are using a cloud-hosted Piwik by Piwik Pro, you can simply use this "
209
  "option."
210
+ msgstr ""
211
+ "Si vous utilisez Piwik hébergé dans un cloud par Piwik Pro, vous pouvez "
212
+ "simplement utiliser cette option."
213
 
214
  #: classes/WP_Piwik/Admin/Settings.php:85
215
  msgid "Piwik Mode"
227
  msgid ""
228
  "Enter your Piwik URL. This is the same URL you use to access your Piwik "
229
  "instance, e.g. http://www.example.com/piwik/."
230
+ msgstr ""
231
+ "Entrez votre URL Piwik. C'est la même URL que vous utilisez pour accéder à "
232
+ "votre instance de Piwik, par exemple, http://www.example.com/piwik/."
233
 
234
  #: classes/WP_Piwik/Admin/Settings.php:93
235
  msgid "Piwik path"
245
 
246
  #: classes/WP_Piwik/Admin/Settings.php:94
247
  msgid ""
248
+ "Enter your Piwik Pro username. It is also part of your URL: http://USERNAME."
249
+ "piwik.pro."
250
+ msgstr ""
251
+ "Entrez votre nom d'utilisateur Piwik Pro. C'est également une partie de "
252
+ "votre URL&nbsp;: http://NOMUTILISATEUR.piwik.pro."
253
 
254
  #: classes/WP_Piwik/Admin/Settings.php:95
255
  msgid "Auth token"
259
  msgid ""
260
  "Enter your Piwik auth token here. It is an alphanumerical code like "
261
  "0a1b2c34d56e78901fa2bc3d45678efa."
262
+ msgstr ""
263
+ "Entrez votre clef partagée (token_auth) Piwik ici. C'est un code "
264
+ "alphanumérique du genre 0a1b2c34d56e78901fa2bc3d45678efa."
265
 
266
  #: classes/WP_Piwik/Admin/Settings.php:95
267
  #, php-format
276
  msgid ""
277
  "Check this to automatically choose your blog from your Piwik sites by URL. "
278
  "If your blog is not added to Piwik yet, WP-Piwik will add a new site."
279
+ msgstr ""
280
+ "Cochez cette case pour choisir automatiquement votre blog à partir de vos "
281
+ "sites Piwik par URL. Si votre blog est pas encore ajouté à Piwik, WP-Piwik "
282
+ "ajoutera un nouveau site."
283
 
284
  #: classes/WP_Piwik/Admin/Settings.php:106
285
  msgid "Save settings to start estimation."
357
 
358
  #: classes/WP_Piwik/Admin/Settings.php:138
359
  msgid "Enable WP-Piwik dashboard widget &quot;Overview&quot;."
360
+ msgstr ""
361
+ "Activer le widget du tableau de bord WP-Piwik &quot;Vue d'ensemble&quot;."
362
 
363
  #: classes/WP_Piwik/Admin/Settings.php:140
364
  msgid "Dashboard graph"
382
 
383
  #: classes/WP_Piwik/Admin/Settings.php:144
384
  msgid "Display a last 30 days visitor graph on WordPress' toolbar."
385
+ msgstr ""
386
+ "Afficher un graphique des visiteurs des 30 derniers jours dans la barre "
387
+ "d'outils WordPress"
388
 
389
  #: classes/WP_Piwik/Admin/Settings.php:146
390
  msgid "Display stats to"
392
 
393
  #: classes/WP_Piwik/Admin/Settings.php:153
394
  msgid "Choose user roles allowed to see the statistics page."
395
+ msgstr ""
396
+ "Choisissez les rôles utilisateurs autorisés à voir la page de statistiques."
397
 
398
  #: classes/WP_Piwik/Admin/Settings.php:155
399
  msgid "Show per post stats"
401
 
402
  #: classes/WP_Piwik/Admin/Settings.php:155
403
  msgid "Show stats about single posts at the post edit admin page."
404
+ msgstr ""
405
+ "Afficher les stats de l'article sur la page admin de modification des "
406
+ "articles."
407
 
408
  #: classes/WP_Piwik/Admin/Settings.php:157
409
  msgid "Piwik shortcut"
438
  "WP-Piwik will not add the tracking code. Use this, if you want to add the "
439
  "tracking code to your template files or you use another plugin to add the "
440
  "tracking code."
441
+ msgstr ""
442
+ "WP-Piwik n'ajoutera pas le code de suivi. Utilisez cela si vous souhaitez "
443
+ "ajouter le code de suivi dans les fichiers de votre thème, ou que vous "
444
+ "utilisez une autre extension pour ajouter le code de suivi."
445
 
446
  #: classes/WP_Piwik/Admin/Settings.php:172
447
  #: classes/WP_Piwik/Admin/Settings.php:175
461
  msgid ""
462
  "You can choose this tracking code, to deliver a minified proxy code and to "
463
  "avoid using the files called piwik.js or piwik.php."
464
+ msgstr ""
465
+ "Vous pouvez choisir ce code de suivi, pour délivrer un code proxy minifié et "
466
+ "d'éviter d'utiliser les fichiers appelés piwik.js ou piwik.php."
467
 
468
  #: classes/WP_Piwik/Admin/Settings.php:172
469
  #, php-format
496
  "Enter your own tracking code manually. You can choose one of the prior "
497
  "options, pre-configure your tracking code and switch to manually editing at "
498
  "last."
499
+ msgstr ""
500
+ "Entrer manuellement votre propre code de suivi. Vous pouvez choisir l'une "
501
+ "des options préalables, pré-configurer votre code de suivi et le modifier "
502
+ "manuellement à la fin."
503
 
504
  #: classes/WP_Piwik/Admin/Settings.php:172
505
  msgid "Use the placeholder {ID} to add the Piwik site ID."
506
+ msgstr ""
507
+ "Utilisez l'espace réservé {ID} pour ajouter l'identifiant de site Piwik."
508
 
509
  #: classes/WP_Piwik/Admin/Settings.php:173
510
  msgid "Add tracking code"
529
  #: classes/WP_Piwik/Admin/Settings.php:186
530
  msgid ""
531
  "Choose whether the JavaScript code is added to the footer or the header."
532
+ msgstr ""
533
+ "Choisissez si le code JavaScript est ajouté dans le pied de page ou l'en-"
534
+ "tête."
535
 
536
  #: classes/WP_Piwik/Admin/Settings.php:188
537
  msgid "Noscript code"
574
  msgid ""
575
  "Content tracking allows you to track interaction with the content of a web "
576
  "page or application."
577
+ msgstr ""
578
+ "Le suivi de contenu vous autorise à suivre l'interaction avec le contenu "
579
+ "d'une page web ou d'une application."
580
 
581
  #: classes/WP_Piwik/Admin/Settings.php:198
582
  #: classes/WP_Piwik/Admin/Settings.php:200
596
 
597
  #: classes/WP_Piwik/Admin/Settings.php:200
598
  msgid "Use Piwik's advanced Site Search Analytics feature."
599
+ msgstr ""
600
+ "Utiliser la fonctionnalité avancée Piwik d'analyse de recherche du site"
601
 
602
  #: classes/WP_Piwik/Admin/Settings.php:202
603
  msgid "Track 404"
604
  msgstr "Suivre les 404"
605
 
606
  #: classes/WP_Piwik/Admin/Settings.php:202
607
+ msgid "WP-Piwik can automatically add a 404-category to track 404-page-visits."
608
+ msgstr ""
609
+ "WP-Piwik peut ajouter automatiquement une catégorie 404 pour suivre les "
610
+ "visites de page 404."
611
 
612
  #: classes/WP_Piwik/Admin/Settings.php:204
613
  msgid "Add annotation on new post"
623
 
624
  #: classes/WP_Piwik/Admin/Settings.php:206
625
  msgid " Show a &quot;custom variables&quot; edit box on post edit page."
626
+ msgstr ""
627
+ "Afficher une boîte de modification des &quot;variables personnalisées&quot; "
628
+ "sur la page de modification des articles;"
629
 
630
  #: classes/WP_Piwik/Admin/Settings.php:208
631
  msgid "Add new file types for download tracking"
635
  msgid ""
636
  "Add file extensions for download tracking, divided by a vertical bar "
637
  "(&#124;)."
638
+ msgstr ""
639
+ "Ajouter des extensions de fichier pour le suivi de téléchargement, séparées "
640
+ "par une barre verticale (&#124;)."
641
 
642
  #: classes/WP_Piwik/Admin/Settings.php:210
643
  msgid "Disable cookies"
653
 
654
  #: classes/WP_Piwik/Admin/Settings.php:212
655
  msgid ""
656
+ "You can limit the cookie lifetime to avoid tracking your users over a longer "
657
+ "period as necessary."
658
+ msgstr ""
659
+ "Vous pouvez limiter la durée de vie des cookies pour éviter le suivi de vos "
660
+ "utilisateurs sur une période plus longue que nécessaire."
661
 
662
  #: classes/WP_Piwik/Admin/Settings.php:214
663
  msgid "Visitor timeout (seconds)"
679
  msgid ""
680
  "Enable to track users on admin pages (remember to configure the tracking "
681
  "filter appropriately)."
682
+ msgstr ""
683
+ "Activer le suivi des utilisateurs sur les pages d'admin (n'oubliez pas de "
684
+ "configurer le filtre de suivi adéquat)"
685
 
686
  #: classes/WP_Piwik/Admin/Settings.php:223
687
  msgid "Tracking filter"
689
 
690
  #: classes/WP_Piwik/Admin/Settings.php:227
691
  msgid "Choose users by user role you do <strong>not</strong> want to track."
692
+ msgstr ""
693
+ "Choisissez, pour chaque rôle, ceux que <strong>vous ne souhaitez pas</"
694
+ "strong> inclure dans le suivi."
695
 
696
  #: classes/WP_Piwik/Admin/Settings.php:229
697
  msgid "Track subdomains in the same website"
703
 
704
  #: classes/WP_Piwik/Admin/Settings.php:231
705
  msgid "Do not count subdomains as outlink"
706
+ msgstr "Ne pas comptabiliser les sous-domaines en tant que lien sortant"
707
 
708
  #: classes/WP_Piwik/Admin/Settings.php:231
709
  msgid "Adds *.-prefix to tracked domain."
735
 
736
  #: classes/WP_Piwik/Admin/Settings.php:242
737
  msgid ""
738
+ "Usually, you do not need to change these settings. If you want to do so, you "
739
+ "should know what you do or you got an expert's advice."
740
+ msgstr ""
741
+ "Habituellement, vous n'avez pas besoin de pas modifier ces réglages. Si "
742
+ "vous voulez faire, vous devez savoir ce que vous faites ou avoir obtenu le "
743
+ "conseil d'un expert."
744
 
745
  #: classes/WP_Piwik/Admin/Settings.php:244
746
  msgid "Enable cache"
748
 
749
  #: classes/WP_Piwik/Admin/Settings.php:244
750
  msgid "Cache API calls, which not contain today's values, for a week."
751
+ msgstr ""
752
+ "Appels API de cache, qui ne contiennent pas les valeurs d'aujourd'hui, pour "
753
+ "une semaine."
754
 
755
  #: classes/WP_Piwik/Admin/Settings.php:246
756
  msgid "Disable time limit"
758
 
759
  #: classes/WP_Piwik/Admin/Settings.php:246
760
  msgid "Use set_time_limit(0) if stats page causes a time out."
761
+ msgstr ""
762
+ "Utilisez set_time_limit(0) si la pages de statistiques provoque une "
763
+ "expiration du délai d'attente."
764
 
765
  #: classes/WP_Piwik/Admin/Settings.php:248
766
  msgid "Connection timeout"
807
  msgid ""
808
  "Adds data-cfasync=false to the script tag, e.g., to ask Rocket Loader to "
809
  "ignore the script. "
810
+ msgstr ""
811
+ "Ajoute data-cfasync=false à la balise du script, pour demander par exemple, "
812
+ "au chargeur Rocket d'ignorer le script. "
813
 
814
  #: classes/WP_Piwik/Admin/Settings.php:260
815
  msgid "CDN URL"
839
  msgid ""
840
  "Choose if you want to explicitly force Piwik to use HTTP or HTTPS. Does not "
841
  "work with a CDN URL."
842
+ msgstr ""
843
+ "Choisissez si vous voulez forcer explicitement Piwik à utiliser le protocole "
844
+ "HTTP ou HTTPS. Ne fonctionne pas avec une URL CDN."
845
 
846
  #: classes/WP_Piwik/Admin/Settings.php:427
847
  msgid "Donate"
849
 
850
  #: classes/WP_Piwik/Admin/Settings.php:429
851
  msgid "If you like WP-Piwik, you can support its development by a donation:"
852
+ msgstr ""
853
+ "Si vous aimez WP-Piwik, vous pouvez soutenir son développement par un "
854
+ "don&nbsp;:"
855
 
856
  #: classes/WP_Piwik/Admin/Settings.php:467
857
  msgid "My Amazon.de wishlist"
877
  #: classes/WP_Piwik/Admin/Settings.php:502
878
  msgid ""
879
  "Graphs powered by <a href=\"http://www.jqplot.com/\">jqPlot</a> (License: "
880
+ "GPL 2.0 and MIT) and <a href=\"http://omnipotent.net/jquery.sparkline/"
881
+ "\">jQuery Sparklines</a> (License: New BSD License)."
882
+ msgstr ""
883
+ "Graphiques générés par <a href=\"http://www.jqplot.com/\">jqPlot</a> "
884
+ "(Licence&nbsp;: GPL 2.0 et MIT) et <a href=\"http://omnipotent.net/jquery."
885
+ "sparkline/\">jQuery Sparklines</a> (Licence&nbsp;: Nouvelle licence BSD)."
886
 
887
  #: classes/WP_Piwik/Admin/Settings.php:503
888
  msgid "Metabox support inspired by"
903
  #: classes/WP_Piwik/Admin/Settings.php:506
904
  msgid ""
905
  "Thank you very much, all users who send me mails containing criticism, "
906
+ "commendation, feature requests and bug reports! You help me to make WP-Piwik "
907
+ "much better."
908
+ msgstr ""
909
+ "Merci beaucoup, à tous les utilisateurs qui envoient des mails contenant "
910
+ "critique, éloge, demandes de fonctionnalités et rapports de bogues&nbsp;! "
911
+ "Vous m'avez aidé a rendre WP-Piwik encore meilleur."
912
 
913
  #: classes/WP_Piwik/Admin/Settings.php:507
914
  msgid ""
915
  "Thank <strong>you</strong> for using my plugin. It is the best commendation "
916
  "if my piece of code is really used!"
917
+ msgstr ""
918
+ "Je <strong>vous</strong> remercie d'utiliser mon extension. C'est la "
919
+ "meilleur éloge si mon morceau de code est vraiment utilisé&nbsp;!"
920
 
921
  #: classes/WP_Piwik/Admin/Settings.php:516
922
  msgid "The best place to get help:"
934
  msgid ""
935
  "Either allow_url_fopen has to be enabled <em>or</em> cURL has to be "
936
  "available:"
937
+ msgstr ""
938
+ "allow_url_fopen doit être activé <em>ou</em> cURL doit être disponible&nbsp;:"
939
 
940
  #: classes/WP_Piwik/Admin/Settings.php:523
941
  msgid "cURL is"
1116
  msgid ""
1117
  "The graph contains the values shown in the table below (visitors / unique / "
1118
  "bounces). The red line show a linear trendline (unique)."
1119
+ msgstr ""
1120
+ "Le graphique contient les valeurs indiquées dans le tableau ci-dessous "
1121
+ "(visiteurs / unique / rebonds). La ligne rouge montre une courbe de tendance "
1122
+ "linéaire (unique)."
1123
 
1124
  #: classes/WP_Piwik/Widget/Keywords.php:16
1125
  msgid "Keywords"
1237
  #: wp-piwik.php:60
1238
  #, php-format
1239
  msgid ""
1240
+ "WP-Piwik requires at least PHP 5.3. You are using the deprecated version %s. "
1241
+ "Please update PHP to use WP-Piwik."
1242
+ msgstr ""
1243
+ "WP-Piwik requiert au moins PHP 5.3. Vous utilisez la version obsolète %s. "
1244
+ "Merci de mettre à jour PHP pour utiliser WP-Piwik."
readme.txt CHANGED
@@ -127,10 +127,16 @@ This is a full refactored version of WP-Piwik. Please check your settings after
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
127
 
128
  == Changelog ==
129
 
130
+ = 0.10.0.8 =
131
+ * Bugfix: Sitebrowser link (settings page, support) fixed
132
+ * Bugfix: Use new settings directly after saving (reloading is not necessary anymore)
133
+ * Optimized caching behaviour
134
+ * Language update (German, French)
135
+
136
  = 0.10.0.7 =
137
  * Bugfix: Opt-out shortcode output fix
138
  * Bugfix: Opt-out shortcode will also work in "pro" and "php" mode
139
+ * Bugfix: Test script link (settings page, support) fixed
140
  * Bugfix: Removed test script errors and notices
141
  * Bugfix: Keep sure the revion ID is stored and avoid re-installing the plugin again and again
142
  * Bugfix: http/pro - after configuration the settings page had to be reloaded once to start working
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.7
10
  Author: Andr&eacute; Br&auml;kling
11
  Author URI: http://www.braekling.de
12
  Text Domain: 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.8
10
  Author: Andr&eacute; Br&auml;kling
11
  Author URI: http://www.braekling.de
12
  Text Domain: wp-piwik