WP-Matomo (WP-Piwik) - Version 1.0.0

Version Description

  • Feature: Expand "other" values on click
  • Bugfix: Avoid notices on invalid file path (PHP API)
  • Bugfix: Cookie lifetime input boxes are in some cases shown or hidden by mistake
  • Network (multisite): Updated plugin to use wp_get_sites if possible
  • Test script: Settings dump added
Download this release

Release Info

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

Code changes from version 0.10.1.0 to 1.0.0

classes/WP_Piwik.php CHANGED
@@ -12,7 +12,7 @@ class WP_Piwik {
12
  *
13
  * @var Runtime environment variables
14
  */
15
- private static $revisionId = 2015051901, $version = '0.10.1.0', $blog_id, $pluginBasename = NULL, $logger, $settings, $request;
16
 
17
  /**
18
  * Constructor class to configure and register all WP-Piwik components
12
  *
13
  * @var Runtime environment variables
14
  */
15
+ private static $revisionId = 2015052401, $version = '1.0.0', $blog_id, $pluginBasename = NULL, $logger, $settings, $request;
16
 
17
  /**
18
  * Constructor class to configure and register all WP-Piwik components
classes/WP_Piwik/Admin/Settings.php CHANGED
@@ -44,12 +44,12 @@ class Settings extends \WP_Piwik\Admin {
44
  <?php
45
  $submitButton = '<tr><td colspan="2"><p class="submit"><input name="Submit" type="submit" class="button-primary" value="' . esc_attr__ ( 'Save Changes' ) . '" /></p></td></tr>';
46
  printf ( '<tr><td colspan="2">%s</td></tr>', __ ( 'Thanks for using WP-Piwik!', 'wp-piwik' ) );
47
- // $this->showDonation();
48
  if (self::$wpPiwik->isConfigured ()) {
49
  $piwikVersion = self::$wpPiwik->request ( 'global.getPiwikVersion' );
50
- if (! empty ( $piwikVersion ) && ! is_array ( $piwikVersion ))
51
  $this->showText ( sprintf ( __ ( 'WP-Piwik %s is successfully connected to Piwik %s.', 'wp-piwik' ), self::$wpPiwik->getPluginVersion (), $piwikVersion ) . ' ' . (! self::$wpPiwik->isNetworkMode () ? sprintf ( __ ( 'You are running WordPress %s.', 'wp-piwik' ), get_bloginfo ( 'version' ) ) : sprintf ( __ ( 'You are running a WordPress %s blog network (WPMU). WP-Piwik will handle your sites as different websites.', 'wp-piwik' ), get_bloginfo ( 'version' ) )) );
52
- else {
 
53
  $this->showBox ( 'error', 'no', sprintf ( __ ( 'WP-Piwik %s was not able to connect to Piwik using your configuration. Check the &raquo;Connect to Piwik&laquo; section below.', 'wp-piwik' ), self::$wpPiwik->getPluginVersion () ) );
54
  }
55
  } else
@@ -227,13 +227,13 @@ class Settings extends \WP_Piwik\Admin {
227
 
228
  $this->showCheckbox ( 'disable_cookies', __ ( 'Disable cookies', 'wp-piwik' ), __ ( 'Disable all tracking cookies for a visitor.', 'wp-piwik' ), $isNotGeneratedTracking, $fullGeneratedTrackingGroup );
229
 
230
- $this->showCheckbox ( 'limit_cookies', __ ( 'Limit cookie lifetime', 'wp-piwik' ), __ ( 'You can limit the cookie lifetime to avoid tracking your users over a longer period as necessary.', 'wp-piwik' ), $isNotGeneratedTracking, $fullGeneratedTrackingGroup, true, '$j(\'tr.wp-piwik-cookielifetime-option\').toggle(\'wp-piwik-hidden\');' );
231
-
232
- $this->showInput ( 'limit_cookies_visitor', __ ( 'Visitor timeout (seconds)', 'wp-piwik' ), false, $isNotGeneratedTracking || ! self::$settings->getGlobalOption ( 'limit_cookies' ), $fullGeneratedTrackingGroup.' wp-piwik-cookielifetime-option' );
233
 
234
- $this->showInput ( 'limit_cookies_session', __ ( 'Session timeout (seconds)', 'wp-piwik' ), false, $isNotGeneratedTracking || ! self::$settings->getGlobalOption ( 'limit_cookies' ), $fullGeneratedTrackingGroup . ' wp-piwik-cookielifetime-option' );
235
 
236
- $this->showInput ( 'limit_cookies_referral', __ ( 'Referral timeout (seconds)', 'wp-piwik' ), false, $isNotGeneratedTracking || ! self::$settings->getGlobalOption ( 'limit_cookies' ), $fullGeneratedTrackingGroup . ' wp-piwik-cookielifetime-option' );
237
 
238
  $this->showCheckbox ( 'track_admin', __ ( 'Track admin pages', 'wp-piwik' ), __ ( 'Enable to track users on admin pages (remember to configure the tracking filter appropriately).', 'wp-piwik' ), $isNotTracking, $fullGeneratedTrackingGroup . ' wp-piwik-track-option-manually' );
239
 
@@ -275,9 +275,9 @@ class Settings extends \WP_Piwik\Admin {
275
 
276
  $this->showCheckbox ( 'track_datacfasync', __ ( 'Add data-cfasync=false', 'wp-piwik' ), __ ( 'Adds data-cfasync=false to the script tag, e.g., to ask Rocket Loader to ignore the script.' . ' ' . sprintf ( __ ( 'See %sCloudFlare Knowledge Base%s.', 'wp-piwik' ), '<a href="https://support.cloudflare.com/hc/en-us/articles/200169436-How-can-I-have-Rocket-Loader-ignore-my-script-s-in-Automatic-Mode-">', '</a>' ), 'wp-piwik' ) );
277
 
278
- $this->showInput ( 'track_cdnurl', __ ( 'CDN URL', 'wp-piwik' ), 'Enter URL if you want to load the tracking code via CDN.' );
279
 
280
- $this->showInput ( 'track_cdnurlssl', __ ( 'CDN URL (SSL)', 'wp-piwik' ), 'Enter URL if you want to load the tracking code via a separate SSL CDN.' );
281
 
282
  $this->showSelect ( 'force_protocol', __ ( 'Force Piwik to use a specific protocol', 'wp-piwik' ), array (
283
  'disabled' => __ ( 'Disabled (default)', 'wp-piwik' ),
@@ -610,10 +610,10 @@ class Settings extends \WP_Piwik\Admin {
610
  }
611
  global $wpdb;
612
  if (self::$settings->checkNetworkActivation()) {
613
- $aryBlogs = $wpdb->get_results('SELECT blog_id FROM '.$wpdb->blogs.' ORDER BY blog_id');
614
  if (is_array($aryBlogs))
615
  foreach ($aryBlogs as $aryBlog) {
616
- switch_to_blog($aryBlog->blog_id);
617
  $wpdb->query("DELETE FROM $wpdb->options WHERE option_name LIKE '_transient_wp-piwik_%'");
618
  $wpdb->query("DELETE FROM $wpdb->options WHERE option_name LIKE '_transient_timeout_wp-piwik_%'");
619
  restore_current_blog();
@@ -652,7 +652,8 @@ class Settings extends \WP_Piwik\Admin {
652
  'url' => get_bloginfo ( 'url' )
653
  ) );
654
  echo "\n\n"; var_dump( self::$wpPiwik->request( $id ) ); echo "\n";
655
- var_dump( self::$wpPiwik->request( $id, true ) ); echo "`";
 
656
  $GLOBALS ['wp-piwik_debug'] = false;
657
  ?></textarea>
658
  <?php } else echo '<p>Please configure WP-Piwik first.</p>'; ?>
44
  <?php
45
  $submitButton = '<tr><td colspan="2"><p class="submit"><input name="Submit" type="submit" class="button-primary" value="' . esc_attr__ ( 'Save Changes' ) . '" /></p></td></tr>';
46
  printf ( '<tr><td colspan="2">%s</td></tr>', __ ( 'Thanks for using WP-Piwik!', 'wp-piwik' ) );
 
47
  if (self::$wpPiwik->isConfigured ()) {
48
  $piwikVersion = self::$wpPiwik->request ( 'global.getPiwikVersion' );
49
+ if (! empty ( $piwikVersion ) && ! is_array ( $piwikVersion )) {
50
  $this->showText ( sprintf ( __ ( 'WP-Piwik %s is successfully connected to Piwik %s.', 'wp-piwik' ), self::$wpPiwik->getPluginVersion (), $piwikVersion ) . ' ' . (! self::$wpPiwik->isNetworkMode () ? sprintf ( __ ( 'You are running WordPress %s.', 'wp-piwik' ), get_bloginfo ( 'version' ) ) : sprintf ( __ ( 'You are running a WordPress %s blog network (WPMU). WP-Piwik will handle your sites as different websites.', 'wp-piwik' ), get_bloginfo ( 'version' ) )) );
51
+ $this->showDonation();
52
+ } else {
53
  $this->showBox ( 'error', 'no', sprintf ( __ ( 'WP-Piwik %s was not able to connect to Piwik using your configuration. Check the &raquo;Connect to Piwik&laquo; section below.', 'wp-piwik' ), self::$wpPiwik->getPluginVersion () ) );
54
  }
55
  } else
227
 
228
  $this->showCheckbox ( 'disable_cookies', __ ( 'Disable cookies', 'wp-piwik' ), __ ( 'Disable all tracking cookies for a visitor.', 'wp-piwik' ), $isNotGeneratedTracking, $fullGeneratedTrackingGroup );
229
 
230
+ $this->showCheckbox ( 'limit_cookies', __ ( 'Limit cookie lifetime', 'wp-piwik' ), __ ( 'You can limit the cookie lifetime to avoid tracking your users over a longer period as necessary.', 'wp-piwik' ), $isNotGeneratedTracking, $fullGeneratedTrackingGroup, true, '$j(\'tr.wp-piwik-cookielifetime-option\').toggleClass(\'wp-piwik-hidden\');' );
231
+
232
+ $this->showInput ( 'limit_cookies_visitor', __ ( 'Visitor timeout (seconds)', 'wp-piwik' ), false, $isNotGeneratedTracking || ! self::$settings->getGlobalOption ( 'limit_cookies' ), $fullGeneratedTrackingGroup.' wp-piwik-cookielifetime-option'. (self::$settings->getGlobalOption ( 'limit_cookies' )? '': ' wp-piwik-hidden') );
233
 
234
+ $this->showInput ( 'limit_cookies_session', __ ( 'Session timeout (seconds)', 'wp-piwik' ), false, $isNotGeneratedTracking || ! self::$settings->getGlobalOption ( 'limit_cookies' ), $fullGeneratedTrackingGroup .' wp-piwik-cookielifetime-option'. (self::$settings->getGlobalOption ( 'limit_cookies' )? '': ' wp-piwik-hidden') );
235
 
236
+ $this->showInput ( 'limit_cookies_referral', __ ( 'Referral timeout (seconds)', 'wp-piwik' ), false, $isNotGeneratedTracking || ! self::$settings->getGlobalOption ( 'limit_cookies' ), $fullGeneratedTrackingGroup .' wp-piwik-cookielifetime-option'. (self::$settings->getGlobalOption ( 'limit_cookies' )? '': ' wp-piwik-hidden') );
237
 
238
  $this->showCheckbox ( 'track_admin', __ ( 'Track admin pages', 'wp-piwik' ), __ ( 'Enable to track users on admin pages (remember to configure the tracking filter appropriately).', 'wp-piwik' ), $isNotTracking, $fullGeneratedTrackingGroup . ' wp-piwik-track-option-manually' );
239
 
275
 
276
  $this->showCheckbox ( 'track_datacfasync', __ ( 'Add data-cfasync=false', 'wp-piwik' ), __ ( 'Adds data-cfasync=false to the script tag, e.g., to ask Rocket Loader to ignore the script.' . ' ' . sprintf ( __ ( 'See %sCloudFlare Knowledge Base%s.', 'wp-piwik' ), '<a href="https://support.cloudflare.com/hc/en-us/articles/200169436-How-can-I-have-Rocket-Loader-ignore-my-script-s-in-Automatic-Mode-">', '</a>' ), 'wp-piwik' ) );
277
 
278
+ $this->showInput ( 'track_cdnurl', __ ( 'CDN URL', 'wp-piwik' ).' http://', 'Enter URL if you want to load the tracking code via CDN.' );
279
 
280
+ $this->showInput ( 'track_cdnurlssl', __ ( 'CDN URL (SSL)', 'wp-piwik' ).' https://', 'Enter URL if you want to load the tracking code via a separate SSL CDN.' );
281
 
282
  $this->showSelect ( 'force_protocol', __ ( 'Force Piwik to use a specific protocol', 'wp-piwik' ), array (
283
  'disabled' => __ ( 'Disabled (default)', 'wp-piwik' ),
610
  }
611
  global $wpdb;
612
  if (self::$settings->checkNetworkActivation()) {
613
+ $aryBlogs = \WP_Piwik\Settings::getBlogList();
614
  if (is_array($aryBlogs))
615
  foreach ($aryBlogs as $aryBlog) {
616
+ switch_to_blog($aryBlog['blog_id']);
617
  $wpdb->query("DELETE FROM $wpdb->options WHERE option_name LIKE '_transient_wp-piwik_%'");
618
  $wpdb->query("DELETE FROM $wpdb->options WHERE option_name LIKE '_transient_timeout_wp-piwik_%'");
619
  restore_current_blog();
652
  'url' => get_bloginfo ( 'url' )
653
  ) );
654
  echo "\n\n"; var_dump( self::$wpPiwik->request( $id ) ); echo "\n";
655
+ var_dump( self::$wpPiwik->request( $id, true ) ); echo "\n";
656
+ echo "\n\n"; var_dump( self::$settings->getDebugData() ); echo "`";
657
  $GLOBALS ['wp-piwik_debug'] = false;
658
  ?></textarea>
659
  <?php } else echo '<p>Please configure WP-Piwik first.</p>'; ?>
classes/WP_Piwik/Admin/Sitebrowser.php CHANGED
@@ -42,9 +42,9 @@ class Sitebrowser extends \WP_List_Table {
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,
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 = \WP_Piwik\Settings::getBlogList($per_page, $current_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,
classes/WP_Piwik/Request/Php.php CHANGED
@@ -35,6 +35,7 @@
35
  else serialize(array('result' => 'error', 'message' => __('Class Piwik\API\Request does not exists.','wp-piwik')));
36
  if (isset($request))
37
  $result = $request->process();
 
38
  if (!headers_sent())
39
  header("Content-Type: text/html", true);
40
  $result = $this->unserialize($result);
35
  else serialize(array('result' => 'error', 'message' => __('Class Piwik\API\Request does not exists.','wp-piwik')));
36
  if (isset($request))
37
  $result = $request->process();
38
+ else $result = null;
39
  if (!headers_sent())
40
  header("Content-Type: text/html", true);
41
  $result = $this->unserialize($result);
classes/WP_Piwik/Settings.php CHANGED
@@ -228,10 +228,10 @@ class Settings {
228
  self::$wpPiwik->log ( 'Reset WP-Piwik settings' );
229
  global $wpdb;
230
  if ( $this->checkNetworkActivation() ) {
231
- $aryBlogs = $wpdb->get_results('SELECT blog_id FROM '.$wpdb->blogs.' ORDER BY blog_id');
232
  if (is_array($aryBlogs))
233
  foreach ($aryBlogs as $aryBlog) {
234
- switch_to_blog($aryBlog->blog_id);
235
  $wpdb->query("DELETE FROM $wpdb->options WHERE option_name LIKE 'wp-piwik-%'");
236
  restore_current_blog();
237
  }
@@ -240,6 +240,18 @@ class Settings {
240
  else $wpdb->query("DELETE FROM $wpdb->options WHERE option_name LIKE 'wp-piwik_global-%'");
241
  }
242
 
 
 
 
 
 
 
 
 
 
 
 
 
243
  /**
244
  * Check if plugin is network activated
245
  *
@@ -364,4 +376,18 @@ class Settings {
364
  return stripslashes ( $value );
365
  return $value;
366
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
367
  }
228
  self::$wpPiwik->log ( 'Reset WP-Piwik settings' );
229
  global $wpdb;
230
  if ( $this->checkNetworkActivation() ) {
231
+ $aryBlogs = self::getBlogList();
232
  if (is_array($aryBlogs))
233
  foreach ($aryBlogs as $aryBlog) {
234
+ switch_to_blog($aryBlog['blog_id']);
235
  $wpdb->query("DELETE FROM $wpdb->options WHERE option_name LIKE 'wp-piwik-%'");
236
  restore_current_blog();
237
  }
240
  else $wpdb->query("DELETE FROM $wpdb->options WHERE option_name LIKE 'wp-piwik_global-%'");
241
  }
242
 
243
+ /**
244
+ * Get blog list
245
+ */
246
+ public static function getBlogList($limit = null, $page = null) {
247
+ if ( !\wp_is_large_network() )
248
+ return \wp_get_sites ( array('limit' => $limit, 'offset' => $page?($page - 1) * $limit:null));
249
+ if ($limit && $page)
250
+ $queryLimit = ' LIMIT '.(int) (($page - 1) * $limit).','.(int) $limit;
251
+ global $wpdb;
252
+ return $wpdb->get_results('SELECT blog_id FROM '.$wpdb->blogs.' ORDER BY blog_id'.$queryLimit, ARRAY_A);
253
+ }
254
+
255
  /**
256
  * Check if plugin is network activated
257
  *
376
  return stripslashes ( $value );
377
  return $value;
378
  }
379
+
380
+ /**
381
+ * Get debug data
382
+ *
383
+ * @return array WP-Piwik settings for debug output
384
+ */
385
+ public function getDebugData() {
386
+ $debug = array(
387
+ 'global_settings' => $this->globalSettings,
388
+ 'settings' => $this->settings
389
+ );
390
+ $debug['global_settings']['piwik_token'] = !empty($debug['global_settings']['piwik_token'])?'set':'not set';
391
+ return $debug;
392
+ }
393
  }
classes/WP_Piwik/Widget.php CHANGED
@@ -148,7 +148,7 @@ abstract class Widget {
148
  * @param string $javaScript
149
  * array of javascript code to apply on body rows
150
  */
151
- protected function table($thead, $tbody = array(), $tfoot = array(), $class = false, $javaScript = array()) {
152
  $this->out( '<div class="table"><table class="widefat wp-piwik-table">' );
153
  if ($this->isShortcode && $this->title) {
154
  $colspan = !empty ( $tbody ) ? count( $tbody[0] ) : 2 ;
@@ -157,7 +157,7 @@ abstract class Widget {
157
  if (! empty ( $thead ))
158
  $this->tabHead ( $thead, $class );
159
  if (! empty ( $tbody ))
160
- $this->tabBody ( $tbody, $class, $javaScript );
161
  else
162
  $this->out( '<tr><td colspan="10">' . __ ( 'No data available.', 'wp-piwik' ) . '</td></tr>' );
163
  if (! empty ( $tfoot ))
@@ -191,10 +191,10 @@ abstract class Widget {
191
  * @param unknown $javaScript
192
  * array of javascript code to apply (one item per row)
193
  */
194
- private function tabBody($tbody, $class = false, $javaScript = array()) {
195
  $this->out( '<tbody' . ($class ? ' class="' . $class . '"' : '') . '>' );
196
  foreach ( $tbody as $key => $trow )
197
- $this->tabRow ( $trow, isset( $javaScript [$key] ) ?$javaScript [$key] : '');
198
  $this->out( '</tbody>' );
199
  }
200
 
@@ -222,8 +222,8 @@ abstract class Widget {
222
  * @param string $javaScript
223
  * javascript code to apply
224
  */
225
- private function tabRow($trow, $javaScript = '') {
226
- $this->out( '<tr' . (! empty ( $javaScript ) ? ' onclick="' . $javaScript . '"' : '') . '>' );
227
  $count = 0;
228
  foreach ( $trow as $tcell )
229
  $this->out( '<td' . ($count ++ ? ' class="right"' : '') . '>' . $tcell . '</td>' );
148
  * @param string $javaScript
149
  * array of javascript code to apply on body rows
150
  */
151
+ protected function table($thead, $tbody = array(), $tfoot = array(), $class = false, $javaScript = array(), $classes = array()) {
152
  $this->out( '<div class="table"><table class="widefat wp-piwik-table">' );
153
  if ($this->isShortcode && $this->title) {
154
  $colspan = !empty ( $tbody ) ? count( $tbody[0] ) : 2 ;
157
  if (! empty ( $thead ))
158
  $this->tabHead ( $thead, $class );
159
  if (! empty ( $tbody ))
160
+ $this->tabBody ( $tbody, $class, $javaScript, $classes );
161
  else
162
  $this->out( '<tr><td colspan="10">' . __ ( 'No data available.', 'wp-piwik' ) . '</td></tr>' );
163
  if (! empty ( $tfoot ))
191
  * @param unknown $javaScript
192
  * array of javascript code to apply (one item per row)
193
  */
194
+ private function tabBody($tbody, $class = false, $javaScript = array(), $classes = array()) {
195
  $this->out( '<tbody' . ($class ? ' class="' . $class . '"' : '') . '>' );
196
  foreach ( $tbody as $key => $trow )
197
+ $this->tabRow ( $trow, isset( $javaScript [$key] ) ?$javaScript [$key] : '', isset ( $classes [$key] ) ?$classes [$key] : '');
198
  $this->out( '</tbody>' );
199
  }
200
 
222
  * @param string $javaScript
223
  * javascript code to apply
224
  */
225
+ private function tabRow($trow, $javaScript = '', $class = '') {
226
+ $this->out( '<tr' . (! empty ( $javaScript ) ? ' onclick="' . $javaScript . '"' : '') . (! empty ( $class ) ? ' class="' . $class . '"' : '') . '>' );
227
  $count = 0;
228
  foreach ( $trow as $tcell )
229
  $this->out( '<td' . ($count ++ ? ' class="right"' : '') . '>' . $tcell . '</td>' );
classes/WP_Piwik/Widget/BrowserDetails.php CHANGED
@@ -39,24 +39,34 @@
39
  else $unique = 'sum_daily_nb_uniq_visitors';
40
  $count = 0;
41
  $sum = 0;
 
42
  foreach ($response as $row) {
43
  $count++;
44
  $sum += isset($row[$unique])?$row[$unique]:0;
45
  if ($count < $this->limit)
46
  $tableBody[$row['label']] = array($row['label'], $row[$unique], 0);
47
- elseif (!isset($tableBody['Others']))
48
  $tableBody['Others'] = array($row['label'], $row[$unique], 0);
49
- else
 
 
 
 
 
50
  $tableBody['Others'][1] += $row[$unique];
 
 
 
 
51
  }
52
  if ($count > $this->limit)
53
- $tableBody['Others'][0] = __('Others', 'wp-piwik');
54
 
55
  foreach ($tableBody as $key => $row)
56
  $tableBody[$key][2] = number_format($row[1]/$sum*100, 2).'%';
57
 
58
  if (!empty($tableBody)) $this->pieChart($tableBody);
59
- $this->table($tableHead, $tableBody, null);
60
  }
61
  }
62
 
39
  else $unique = 'sum_daily_nb_uniq_visitors';
40
  $count = 0;
41
  $sum = 0;
42
+ $class = array();
43
  foreach ($response as $row) {
44
  $count++;
45
  $sum += isset($row[$unique])?$row[$unique]:0;
46
  if ($count < $this->limit)
47
  $tableBody[$row['label']] = array($row['label'], $row[$unique], 0);
48
+ elseif (!isset($tableBody['Others'])) {
49
  $tableBody['Others'] = array($row['label'], $row[$unique], 0);
50
+ $class['Others'] = 'wp-piwik-hideDetails';
51
+ $js['Others'] = '$j'."( '.wp-piwik-hideDetails' ).toggle( 'hidden' );";
52
+ $tableBody[$row['label']] = array($row['label'], $row[$unique], 0);
53
+ $class[$row['label']] = 'wp-piwik-hideDetails hidden';
54
+ $js[$row['label']] = '$j'."( '.wp-piwik-hideDetails' ).toggle( 'hidden' );";
55
+ } else {
56
  $tableBody['Others'][1] += $row[$unique];
57
+ $tableBody[$row['label']] = array($row['label'], $row[$unique], 0);
58
+ $class[$row['label']] = 'wp-piwik-hideDetails hidden';
59
+ $js[$row['label']] = '$j'."( '.wp-piwik-hideDetails' ).toggle( 'hidden' );";
60
+ }
61
  }
62
  if ($count > $this->limit)
63
+ $tableBody['Others'][0] = '<u>'.__('Others', 'wp-piwik').'</u>';
64
 
65
  foreach ($tableBody as $key => $row)
66
  $tableBody[$key][2] = number_format($row[1]/$sum*100, 2).'%';
67
 
68
  if (!empty($tableBody)) $this->pieChart($tableBody);
69
+ $this->table($tableHead, $tableBody, null, false, $js, $class);
70
  }
71
  }
72
 
classes/WP_Piwik/Widget/Browsers.php CHANGED
@@ -39,24 +39,37 @@
39
  else $unique = 'sum_daily_nb_uniq_visitors';
40
  $count = 0;
41
  $sum = 0;
 
42
  foreach ($response as $row) {
43
  $count++;
44
  $sum += isset($row[$unique])?$row[$unique]:0;
45
  if ($count < $this->limit)
46
  $tableBody[$row['label']] = array($row['label'], $row[$unique], 0);
47
- elseif (!isset($tableBody['Others']))
48
  $tableBody['Others'] = array($row['label'], $row[$unique], 0);
49
- else
 
 
 
 
 
50
  $tableBody['Others'][1] += $row[$unique];
 
 
 
 
51
  }
52
  if ($count > $this->limit)
53
- $tableBody['Others'][0] = __('Others', 'wp-piwik');
 
 
 
54
 
55
  foreach ($tableBody as $key => $row)
56
  $tableBody[$key][2] = number_format($row[1]/$sum*100, 2).'%';
57
 
58
  if (!empty($tableBody)) $this->pieChart($tableBody);
59
- $this->table($tableHead, $tableBody, null);
60
  }
61
  }
62
 
39
  else $unique = 'sum_daily_nb_uniq_visitors';
40
  $count = 0;
41
  $sum = 0;
42
+ $class = array();
43
  foreach ($response as $row) {
44
  $count++;
45
  $sum += isset($row[$unique])?$row[$unique]:0;
46
  if ($count < $this->limit)
47
  $tableBody[$row['label']] = array($row['label'], $row[$unique], 0);
48
+ elseif (!isset($tableBody['Others'])) {
49
  $tableBody['Others'] = array($row['label'], $row[$unique], 0);
50
+ $class['Others'] = 'wp-piwik-hideDetails';
51
+ $js['Others'] = '$j'."( '.wp-piwik-hideDetails' ).toggle( 'hidden' );";
52
+ $tableBody[$row['label']] = array($row['label'], $row[$unique], 0);
53
+ $class[$row['label']] = 'wp-piwik-hideDetails hidden';
54
+ $js[$row['label']] = '$j'."( '.wp-piwik-hideDetails' ).toggle( 'hidden' );";
55
+ } else {
56
  $tableBody['Others'][1] += $row[$unique];
57
+ $tableBody[$row['label']] = array($row['label'], $row[$unique], 0);
58
+ $class[$row['label']] = 'wp-piwik-hideDetails hidden';
59
+ $js[$row['label']] = '$j'."( '.wp-piwik-hideDetails' ).toggle( 'hidden' );";
60
+ }
61
  }
62
  if ($count > $this->limit)
63
+ $tableBody['Others'][0] = '<u>'.__('Others', 'wp-piwik').'</u>';
64
+ elseif ($count == $this->limit) {
65
+ $class['Others'] = $js['Others'] = '';
66
+ }
67
 
68
  foreach ($tableBody as $key => $row)
69
  $tableBody[$key][2] = number_format($row[1]/$sum*100, 2).'%';
70
 
71
  if (!empty($tableBody)) $this->pieChart($tableBody);
72
+ $this->table($tableHead, $tableBody, null, false, $js, $class);
73
  }
74
  }
75
 
classes/WP_Piwik/Widget/Screens.php CHANGED
@@ -39,24 +39,34 @@
39
  else $unique = 'sum_daily_nb_uniq_visitors';
40
  $count = 0;
41
  $sum = 0;
 
42
  foreach ($response as $row) {
43
  $count++;
44
  $sum += isset($row[$unique])?$row[$unique]:0;
45
  if ($count < $this->limit)
46
  $tableBody[$row['label']] = array($row['label'], $row[$unique], 0);
47
- elseif (!isset($tableBody['Others']))
48
  $tableBody['Others'] = array($row['label'], $row[$unique], 0);
49
- else
 
 
 
 
 
50
  $tableBody['Others'][1] += $row[$unique];
 
 
 
 
51
  }
52
  if ($count > $this->limit)
53
- $tableBody['Others'][0] = __('Others', 'wp-piwik');
54
 
55
  foreach ($tableBody as $key => $row)
56
  $tableBody[$key][2] = number_format($row[1]/$sum*100, 2).'%';
57
 
58
  if (!empty($tableBody)) $this->pieChart($tableBody);
59
- $this->table($tableHead, $tableBody, null);
60
  }
61
  }
62
 
39
  else $unique = 'sum_daily_nb_uniq_visitors';
40
  $count = 0;
41
  $sum = 0;
42
+ $class = array();
43
  foreach ($response as $row) {
44
  $count++;
45
  $sum += isset($row[$unique])?$row[$unique]:0;
46
  if ($count < $this->limit)
47
  $tableBody[$row['label']] = array($row['label'], $row[$unique], 0);
48
+ elseif (!isset($tableBody['Others'])) {
49
  $tableBody['Others'] = array($row['label'], $row[$unique], 0);
50
+ $class['Others'] = 'wp-piwik-hideDetails';
51
+ $js['Others'] = '$j'."( '.wp-piwik-hideDetails' ).toggle( 'hidden' );";
52
+ $tableBody[$row['label']] = array($row['label'], $row[$unique], 0);
53
+ $class[$row['label']] = 'wp-piwik-hideDetails hidden';
54
+ $js[$row['label']] = '$j'."( '.wp-piwik-hideDetails' ).toggle( 'hidden' );";
55
+ } else {
56
  $tableBody['Others'][1] += $row[$unique];
57
+ $tableBody[$row['label']] = array($row['label'], $row[$unique], 0);
58
+ $class[$row['label']] = 'wp-piwik-hideDetails hidden';
59
+ $js[$row['label']] = '$j'."( '.wp-piwik-hideDetails' ).toggle( 'hidden' );";
60
+ }
61
  }
62
  if ($count > $this->limit)
63
+ $tableBody['Others'][0] = '<u>'.__('Others', 'wp-piwik').'</u>';
64
 
65
  foreach ($tableBody as $key => $row)
66
  $tableBody[$key][2] = number_format($row[1]/$sum*100, 2).'%';
67
 
68
  if (!empty($tableBody)) $this->pieChart($tableBody);
69
+ $this->table($tableHead, $tableBody, null, false, $js, $class);
70
  }
71
  }
72
 
classes/WP_Piwik/Widget/Systems.php CHANGED
@@ -37,24 +37,34 @@
37
  else $unique = 'sum_daily_nb_uniq_visitors';
38
  $count = 0;
39
  $sum = 0;
 
40
  foreach ($response as $row) {
41
  $count++;
42
  $sum += isset($row[$unique])?$row[$unique]:0;
43
  if ($count < $this->limit)
44
  $tableBody[$row['label']] = array($row['label'], $row[$unique], 0);
45
- elseif (!isset($tableBody['Others']))
46
  $tableBody['Others'] = array($row['label'], $row[$unique], 0);
47
- else
 
 
 
 
 
48
  $tableBody['Others'][1] += $row[$unique];
 
 
 
 
49
  }
50
  if ($count > $this->limit)
51
- $tableBody['Others'][0] = __('Others', 'wp-piwik');
52
 
53
  foreach ($tableBody as $key => $row)
54
  $tableBody[$key][2] = number_format($row[1]/$sum*100, 2).'%';
55
 
56
  if (!empty($tableBody)) $this->pieChart($tableBody);
57
- $this->table($tableHead, $tableBody, null);
58
  }
59
  }
60
 
37
  else $unique = 'sum_daily_nb_uniq_visitors';
38
  $count = 0;
39
  $sum = 0;
40
+ $class = array();
41
  foreach ($response as $row) {
42
  $count++;
43
  $sum += isset($row[$unique])?$row[$unique]:0;
44
  if ($count < $this->limit)
45
  $tableBody[$row['label']] = array($row['label'], $row[$unique], 0);
46
+ elseif (!isset($tableBody['Others'])) {
47
  $tableBody['Others'] = array($row['label'], $row[$unique], 0);
48
+ $class['Others'] = 'wp-piwik-hideDetails';
49
+ $js['Others'] = '$j'."( '.wp-piwik-hideDetails' ).toggle( 'hidden' );";
50
+ $tableBody[$row['label']] = array($row['label'], $row[$unique], 0);
51
+ $class[$row['label']] = 'wp-piwik-hideDetails hidden';
52
+ $js[$row['label']] = '$j'."( '.wp-piwik-hideDetails' ).toggle( 'hidden' );";
53
+ } else {
54
  $tableBody['Others'][1] += $row[$unique];
55
+ $tableBody[$row['label']] = array($row['label'], $row[$unique], 0);
56
+ $class[$row['label']] = 'wp-piwik-hideDetails hidden';
57
+ $js[$row['label']] = '$j'."( '.wp-piwik-hideDetails' ).toggle( 'hidden' );";
58
+ }
59
  }
60
  if ($count > $this->limit)
61
+ $tableBody['Others'][0] = '<u>'.__('Others', 'wp-piwik').'</u>';
62
 
63
  foreach ($tableBody as $key => $row)
64
  $tableBody[$key][2] = number_format($row[1]/$sum*100, 2).'%';
65
 
66
  if (!empty($tableBody)) $this->pieChart($tableBody);
67
+ $this->table($tableHead, $tableBody, null, false, $js, $class);
68
  }
69
  }
70
 
css/wp-piwik.css CHANGED
@@ -28,4 +28,25 @@ table.wp-piwik_menu-tab th {
28
 
29
  div.wp-piwik-debug {
30
  padding:10px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
  }
28
 
29
  div.wp-piwik-debug {
30
  padding:10px;
31
+ }
32
+
33
+ tr.wp-piwik-hideDetails {
34
+ cursor: pointer;
35
+ }
36
+
37
+ div.wp-piwik-donate {
38
+ float:right;
39
+ width:220px;
40
+ background:#ffc;
41
+ padding:10px;
42
+ border:1px solid black;
43
+ margin: 10px 10px;
44
+ }
45
+
46
+ div.wp-piwik-donate div {
47
+ width:190px;
48
+ text-align:center;
49
+ border:solid black;
50
+ border-width:1px 0 0 0 ;
51
+ padding:5px
52
  }
languages/wp-piwik-de_DE.mo CHANGED
Binary file
languages/wp-piwik-de_DE.po CHANGED
@@ -1,969 +1,854 @@
1
- #
 
2
  # Translators:
3
  # Andr&eacute; Br&auml;kling <webmaster@braekling.de>, 2011
4
  # André Bräkling <andre@braekling.de>, 2015
5
  msgid ""
6
  msgstr ""
7
  "Project-Id-Version: WP-Piwik\n"
8
- "POT-Creation-Date: 2015-05-10 16:33+0100\n"
9
- "PO-Revision-Date: 2015-05-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"
22
- "X-Poedit-SearchPath-0: .\n"
23
-
24
- #: classes/WP_Piwik.php:185
25
- #, php-format
26
- msgid "%s %s installed."
27
- msgstr "%s %s installiert."
28
-
29
- #: classes/WP_Piwik.php:185
30
- msgid "Next you should connect to Piwik"
31
- msgstr "Als n&auml;chstes solltest Du eine Verbindung zu Piwik herstellen"
32
-
33
- #: classes/WP_Piwik.php:215
34
- #, php-format
35
- msgid "%s updated to %s."
36
- msgstr "%s aktualisiert auf %s."
37
-
38
- #: classes/WP_Piwik.php:215
39
- msgid "Please validate your configuration"
40
- msgstr "Bitte &uuml;berpr&uuml;fe Deine Konfiguration"
41
-
42
- #: classes/WP_Piwik.php:247 classes/WP_Piwik.php:463
43
- msgid "Settings"
44
- msgstr "Einstellungen"
45
-
46
- #: classes/WP_Piwik.php:250
47
- msgid "Important"
48
- msgstr "Wichtig"
49
-
50
- #: classes/WP_Piwik.php:331 classes/WP_Piwik.php:353
51
- msgid "Piwik Statistics"
52
- msgstr "Piwik Statistiken"
53
-
54
- #: classes/WP_Piwik.php:901
55
- msgid "An error occured"
56
- msgstr "Ein Fehler ist aufgetreten"
57
 
58
- #: classes/WP_Piwik.php:901 classes/WP_Piwik/Admin/Settings.php:62
59
- msgid "Support"
60
- msgstr "Support"
61
 
62
- #: classes/WP_Piwik.php:1150
63
- msgid "Cheatin&#8217; uh?"
64
- msgstr "Schummelst wohl?"
65
-
66
- #: classes/WP_Piwik/Admin/Settings.php:19
67
  msgid "Changes saved."
68
  msgstr "&Auml;nderungen gespeichert"
69
 
70
- #: classes/WP_Piwik/Admin/Settings.php:30
 
 
 
 
71
  msgid "Thanks for using WP-Piwik!"
72
  msgstr "Vielen Dank f&uuml;r die Verwendung von WP-Piwik!"
73
 
74
- #: classes/WP_Piwik/Admin/Settings.php:35
75
- #, php-format
76
  msgid "WP-Piwik %s is successfully connected to Piwik %s."
77
  msgstr "WP-Piwik %s wurde erfolgreich mit Piwik %s verbunden."
78
 
79
- #: classes/WP_Piwik/Admin/Settings.php:35
80
- #, php-format
81
  msgid "You are running WordPress %s."
82
  msgstr "Du verwendest WordPress %s."
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"
114
  msgstr "Mit Piwik verbinden"
115
 
116
- #: classes/WP_Piwik/Admin/Settings.php:49
117
  msgid "Show Statistics"
118
  msgstr "Zeige Statistiken"
119
 
120
- #: classes/WP_Piwik/Admin/Settings.php:53
121
  msgid "Enable Tracking"
122
  msgstr "Aktiviere Tracking"
123
 
124
- #: classes/WP_Piwik/Admin/Settings.php:58
125
  msgid "Expert Settings"
126
  msgstr "Expertenkonfiguration"
127
 
128
- #: classes/WP_Piwik/Admin/Settings.php:66
 
 
 
 
129
  msgid "Credits"
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"
147
  msgstr "selbst-gehostet"
148
 
149
- #: classes/WP_Piwik/Admin/Settings.php:79
150
  msgid "or"
151
  msgstr "oder"
152
 
153
- #: classes/WP_Piwik/Admin/Settings.php:79
154
  msgid "Cloud-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
 
170
- #: classes/WP_Piwik/Admin/Settings.php:84
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"
217
  msgstr "Piwik-Modus"
218
 
219
- #: classes/WP_Piwik/Admin/Settings.php:86
220
  msgid "Disabled (WP-Piwik will not connect to Piwik)"
221
  msgstr "Deaktiviert (WP-Piwik wird sich nicht mit Piwik verbinden)"
222
 
223
- #: classes/WP_Piwik/Admin/Settings.php:92
224
  msgid "Piwik URL"
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"
237
  msgstr "Piwik Pfad"
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
270
  msgid "See %sWP-Piwik FAQ%s."
271
  msgstr "Siehe %sdie WP-Piwik FAQ%s"
272
 
273
- #: classes/WP_Piwik/Admin/Settings.php:100
274
  msgid "Auto config"
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."
288
- msgstr "Speichere die Einstellungen, um die Ermittlung zu starten."
289
 
290
- #: classes/WP_Piwik/Admin/Settings.php:109
291
  msgid "Determined site"
292
  msgstr "Ermittelte Seite"
293
 
294
- #: classes/WP_Piwik/Admin/Settings.php:114
295
  msgid "Select site"
296
  msgstr "W&auml;hle die Seite"
297
 
298
- #: classes/WP_Piwik/Admin/Settings.php:122
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
 
312
- #: classes/WP_Piwik/Admin/Settings.php:125
313
  msgid "Current month"
314
  msgstr "Aktueller Monat"
315
 
316
- #: classes/WP_Piwik/Admin/Settings.php:126
317
  msgid "Last month"
318
  msgstr "Letzter Monat"
319
 
320
- #: classes/WP_Piwik/Admin/Settings.php:127
321
  msgid "Current week"
322
  msgstr "Aktuelle Woche"
323
 
324
- #: classes/WP_Piwik/Admin/Settings.php:128
325
  msgid "Last week"
326
  msgstr "Letzte Woche"
327
 
328
- #: classes/WP_Piwik/Admin/Settings.php:129
329
  msgid "Default date shown on statistics page."
330
  msgstr "Default-Datum, das auf der Statistik-Seite gezeigt wird."
331
 
332
- #: classes/WP_Piwik/Admin/Settings.php:131
333
  msgid "Show SEO data"
334
  msgstr "Zeige SEO-Daten"
335
 
336
- #: classes/WP_Piwik/Admin/Settings.php:131
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
 
345
- #: classes/WP_Piwik/Admin/Settings.php:133
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
 
356
- #: classes/WP_Piwik/Admin/Settings.php:137
357
  msgid "Last 30 days"
358
  msgstr "Letzte 30 Tage"
359
 
360
- #: classes/WP_Piwik/Admin/Settings.php:138
361
  msgid "Enable WP-Piwik dashboard widget &quot;Overview&quot;."
362
  msgstr "Aktiviere das WP-Piwik Dashboard Widget &quot;Übersicht&quot;."
363
 
364
- #: classes/WP_Piwik/Admin/Settings.php:140
365
  msgid "Dashboard graph"
366
  msgstr "Dashboard-Graph"
367
 
368
- #: classes/WP_Piwik/Admin/Settings.php:140
369
  msgid "Enable WP-Piwik dashboard widget &quot;Graph&quot;."
370
  msgstr "Aktiviere das WP-Piwik Dashboard Widget &quot;Graph&quot;."
371
 
372
- #: classes/WP_Piwik/Admin/Settings.php:142
373
  msgid "Dashboard SEO"
374
  msgstr "Dashboard SEO"
375
 
376
- #: classes/WP_Piwik/Admin/Settings.php:142
377
  msgid "Enable WP-Piwik dashboard widget &quot;SEO&quot;."
378
  msgstr "Aktiviere das WP-Piwik Dashboard Widget &quot;SEO&quot;."
379
 
380
- #: classes/WP_Piwik/Admin/Settings.php:144
381
  msgid "Show graph on WordPress Toolbar"
382
  msgstr "Zeige einen Graphen in der WordPress Toolbar"
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"
391
  msgstr "Zeige Statistiken für"
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"
401
  msgstr "Zeige Beitrags-Statistiken"
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"
410
  msgstr "Piwik-Verlinkung"
411
 
412
- #: classes/WP_Piwik/Admin/Settings.php:157
413
  msgid "Display a shortcut to Piwik itself."
414
  msgstr "Zeigt einen Shortcut zu Piwik an."
415
 
416
- #: classes/WP_Piwik/Admin/Settings.php:159
417
  msgid "WP-Piwik display name"
418
  msgstr "Anzeigename f&uuml;r WP-Piwik"
419
 
420
- #: classes/WP_Piwik/Admin/Settings.php:159
421
  msgid "Plugin name shown in WordPress."
422
  msgstr "Der Name, mit dem das Plugin in WordPress angezeigt wird."
423
 
424
- #: classes/WP_Piwik/Admin/Settings.php:161
425
  msgid "Enable shortcodes"
426
  msgstr "Aktiviere Shortcodes"
427
 
428
- #: classes/WP_Piwik/Admin/Settings.php:161
429
  msgid "Enable shortcodes in post or page content."
430
  msgstr "Aktiviere Shortcodes innerhalb von Artikeln und Seiten."
431
 
432
- #: classes/WP_Piwik/Admin/Settings.php:172
433
  msgid "You can choose between four tracking code modes:"
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
 
451
- #: classes/WP_Piwik/Admin/Settings.php:172
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."
509
  msgstr "Verwende den Platzhalter {ID}, um Piwiks Site-ID einzuf&uuml;gen."
510
 
511
- #: classes/WP_Piwik/Admin/Settings.php:173
512
  msgid "Add tracking code"
513
  msgstr "Tracking-Code einf&uuml;gen"
514
 
515
- #: classes/WP_Piwik/Admin/Settings.php:181
516
  msgid "Tracking code"
517
  msgstr "Tracking-Code"
518
 
519
- #: classes/WP_Piwik/Admin/Settings.php:183
520
  msgid "JavaScript code position"
521
  msgstr "Position des JavaScript-Codes"
522
 
523
- #: classes/WP_Piwik/Admin/Settings.php:184
524
  msgid "Footer"
525
  msgstr "Fußbereich"
526
 
527
- #: classes/WP_Piwik/Admin/Settings.php:185
528
  msgid "Header"
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"
540
  msgstr "Noscript-Code"
541
 
542
- #: classes/WP_Piwik/Admin/Settings.php:190
543
  msgid "Add &lt;noscript&gt;"
544
  msgstr "F&uuml;ge &lt;noscript&gt; hinzu"
545
 
546
- #: classes/WP_Piwik/Admin/Settings.php:190
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
 
555
- #: classes/WP_Piwik/Admin/Settings.php:192
556
  msgid "Add rec parameter to noscript code"
557
  msgstr "F&uuml;ge rec-Parameter zum noscript Code hinzu"
558
 
559
- #: classes/WP_Piwik/Admin/Settings.php:192
560
  msgid "Enable tracking for visitors without JavaScript (not recommended)."
561
  msgstr "Aktiviere das Tracking für Besucher ohne JavaScript (nicht empfohlen)."
562
 
563
- #: classes/WP_Piwik/Admin/Settings.php:194
564
  msgid "Enable content tracking"
565
  msgstr "Aktiviere Content-Tracking"
566
 
567
- #: classes/WP_Piwik/Admin/Settings.php:196
568
  msgid "Track all content blocks"
569
  msgstr "Tracke alle Content-Bereiche"
570
 
571
- #: classes/WP_Piwik/Admin/Settings.php:197
572
  msgid "Track only visible content blocks"
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."
594
 
595
- #: classes/WP_Piwik/Admin/Settings.php:200
596
  msgid "Track search"
597
  msgstr "Tracke Suchanfragen"
598
 
599
- #: classes/WP_Piwik/Admin/Settings.php:200
600
  msgid "Use Piwik's advanced Site Search Analytics feature."
601
  msgstr "Nutze Piwiks Site Search Funktion, um interne Suchen zu tracken."
602
 
603
- #: classes/WP_Piwik/Admin/Settings.php:202
604
  msgid "Track 404"
605
  msgstr "404-Tracking"
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"
615
  msgstr "Notiz bei neuem Post"
616
 
617
- #: classes/WP_Piwik/Admin/Settings.php:204
618
  msgid "Add a Piwik annotation on each new post."
619
  msgstr "F&uuml;ge eine Piwik-Notiz bei jedem neuen Post hinzu."
620
 
621
- #: classes/WP_Piwik/Admin/Settings.php:206
622
  msgid "Show custom variables box"
623
  msgstr "Zeige Custom-Variables-Box"
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"
645
  msgstr "Cookies deaktivieren"
646
 
647
- #: classes/WP_Piwik/Admin/Settings.php:210
648
  msgid "Disable all tracking cookies for a visitor."
649
  msgstr "Schalte alle Tracking-Cookies f&uuml;r Besucher ab."
650
 
651
- #: classes/WP_Piwik/Admin/Settings.php:212
652
  msgid "Limit cookie lifetime"
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)"
665
  msgstr "Besucher-Timeout (Sekunden)"
666
 
667
- #: classes/WP_Piwik/Admin/Settings.php:216
668
  msgid "Session timeout (seconds)"
669
  msgstr "Session-Timeout (Sekunden)"
670
 
671
- #: classes/WP_Piwik/Admin/Settings.php:218
672
  msgid "Referral timeout (seconds)"
673
  msgstr "Referral-Timeout (Sekunden)"
674
 
675
- #: classes/WP_Piwik/Admin/Settings.php:220
676
  msgid "Track admin pages"
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"
689
  msgstr "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"
699
  msgstr "Tracke Subdomains innerhalb der gleichen Webseite"
700
 
701
- #: classes/WP_Piwik/Admin/Settings.php:229
702
  msgid "Adds *.-prefix to cookie domain."
703
  msgstr "F&uuml;gt ein *.-Pr&auml;fix zur Cookie Domain hinzu."
704
 
705
- #: classes/WP_Piwik/Admin/Settings.php:231
706
  msgid "Do not count subdomains as outlink"
707
  msgstr "Werte Subdomains nicht als ausgehenden Link"
708
 
709
- #: classes/WP_Piwik/Admin/Settings.php:231
710
  msgid "Adds *.-prefix to tracked domain."
711
  msgstr "F&uuml;gt ein *.-Pr&auml;fix zur getrackten Domain hinzu."
712
 
713
- #: classes/WP_Piwik/Admin/Settings.php:233
714
  msgid "Track RSS feeds"
715
  msgstr "Tracke RSS-Feeds"
716
 
717
- #: classes/WP_Piwik/Admin/Settings.php:233
718
  msgid "Enable to track posts in feeds via tracking pixel."
719
  msgstr "Aktivieren, um Beir&auml;ge im Feed via Tracking-Pixel zu z&auml;hlen."
720
 
721
- #: classes/WP_Piwik/Admin/Settings.php:235
722
  msgid "Track RSS feed links as campaign"
723
  msgstr "Links in RSS-Feeds als Kampagne tracken"
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"
732
  msgstr "RSS-Feed Kampagne"
733
 
734
- #: classes/WP_Piwik/Admin/Settings.php:237
735
  msgid "Keyword: post name."
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"
749
  msgstr "Cache einschalten"
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"
758
  msgstr "Zeitlimit deaktivieren"
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"
767
  msgstr "Verbindungs-Timeout"
768
 
769
- #: classes/WP_Piwik/Admin/Settings.php:250
770
  msgid "Disable SSL peer verification"
771
  msgstr "SSL Peer-Verifikation deaktivieren"
772
 
773
- #: classes/WP_Piwik/Admin/Settings.php:250
774
  msgid "not recommended"
775
  msgstr "Nicht empfohlen"
776
 
777
- #: classes/WP_Piwik/Admin/Settings.php:252
778
  msgid "User agent"
779
  msgstr "User Agent"
780
 
781
- #: classes/WP_Piwik/Admin/Settings.php:253
782
  msgid "Use the PHP default user agent"
783
  msgstr "Verwende den PHP-Standard User-Agent"
784
 
785
- #: classes/WP_Piwik/Admin/Settings.php:253
786
  msgid "empty"
787
  msgstr "leer"
788
 
789
- #: classes/WP_Piwik/Admin/Settings.php:254
790
  msgid "Define a specific user agent"
791
  msgstr "Lege einen spezifischen User-Agent fest"
792
 
793
- #: classes/WP_Piwik/Admin/Settings.php:256
794
  msgid "Specific user agent"
795
  msgstr "Spezifischer User-Agent"
796
 
797
- #: classes/WP_Piwik/Admin/Settings.php:258
798
  msgid "Add data-cfasync=false"
799
  msgstr "data-cfasync=false einf&uuml;gen"
800
 
801
- #: classes/WP_Piwik/Admin/Settings.php:258
802
- #, php-format
803
- msgid "See %sCloudFlare Knowledge Base%s."
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"
816
  msgstr "CDN URL"
817
 
818
- #: classes/WP_Piwik/Admin/Settings.php:262
819
  msgid "CDN URL (SSL)"
820
  msgstr "CDN URL (SSL)"
821
 
822
- #: classes/WP_Piwik/Admin/Settings.php:264
823
  msgid "Force Piwik to use a specific protocol"
824
  msgstr "Zwinge Piwik, ein bestimmtes Protokoll zu verwenden"
825
 
826
- #: classes/WP_Piwik/Admin/Settings.php:265
827
  msgid "Disabled (default)"
828
  msgstr "Deaktiviert (Standard)"
829
 
830
- #: classes/WP_Piwik/Admin/Settings.php:266
831
  msgid "http"
832
  msgstr "http"
833
 
834
- #: classes/WP_Piwik/Admin/Settings.php:267
835
  msgid "https (SSL)"
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"
848
  msgstr "Spenden"
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
 
865
- #: classes/WP_Piwik/Admin/Settings.php:501
866
  msgid "Thank you very much for your donation"
867
  msgstr "Vielen Dank f&uuml;r eure Spenden"
868
 
869
- #: classes/WP_Piwik/Admin/Settings.php:501
870
  msgid "the Piwik team itself"
871
  msgstr "das Piwik-Team selbst"
872
 
873
- #: classes/WP_Piwik/Admin/Settings.php:501
874
  msgid ", and all people flattering this"
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"
889
  msgstr "Die Metabox-Unterst&uuml;tzung wurde inspiriert von"
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"
898
  msgstr "Vielen Dank"
899
 
900
- #: classes/WP_Piwik/Admin/Settings.php:505
901
  msgid "for your translation work"
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:"
924
  msgstr "Der beste Platz, um Hilfe zu bekommen:"
925
 
926
- #: classes/WP_Piwik/Admin/Settings.php:516
927
  msgid "WP-Piwik support forum"
928
  msgstr "WP-Piwik Support-Forum"
929
 
930
- #: classes/WP_Piwik/Admin/Settings.php:519
931
  msgid "Debugging"
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
 
951
- #: classes/WP_Piwik/Admin/Settings.php:525
952
  msgid "available"
953
  msgstr "verf&uuml;gbar"
954
 
955
- #: classes/WP_Piwik/Admin/Settings.php:528
956
  msgid "allow_url_fopen is"
957
  msgstr "allow_url_fopen ist"
958
 
959
- #: classes/WP_Piwik/Admin/Settings.php:530
960
  msgid "enabled"
961
  msgstr "aktiviert"
962
 
963
- #: classes/WP_Piwik/Admin/Settings.php:533
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
964
  msgid "Latest support threads on WordPress.org"
965
  msgstr "Die letzten Support-Beitr&auml;ge auf WordPress.org"
966
 
 
 
 
 
 
 
 
 
967
  #: classes/WP_Piwik/Admin/Sitebrowser.php:17
968
  msgid "site"
969
  msgstr "Seite"
@@ -972,27 +857,27 @@ msgstr "Seite"
972
  msgid "sites"
973
  msgstr "Seiten"
974
 
975
- #: classes/WP_Piwik/Admin/Sitebrowser.php:22
976
  msgid "No site configured yet."
977
  msgstr "Noch keine Seite konfiguriert."
978
 
979
- #: classes/WP_Piwik/Admin/Sitebrowser.php:27
980
- msgid "ID"
981
- msgstr "ID"
982
 
983
- #: classes/WP_Piwik/Admin/Sitebrowser.php:28
984
  msgid "Title"
985
  msgstr "Titel"
986
 
987
- #: classes/WP_Piwik/Admin/Sitebrowser.php:29
988
  msgid "URL"
989
  msgstr "URL"
990
 
991
- #: classes/WP_Piwik/Admin/Sitebrowser.php:30
992
  msgid "Site ID (Piwik)"
993
  msgstr "Seiten-ID (Piwik)"
994
 
995
- #: classes/WP_Piwik/Admin/Sitebrowser.php:73
996
  msgid "Site not created yet."
997
  msgstr "Seite noch nicht erstellt."
998
 
@@ -1036,7 +921,10 @@ msgstr "Wert"
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
@@ -1046,49 +934,23 @@ msgstr "Definiere custom variables f&uuml;r einen Seitenaufruf."
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
-
1067
- #: classes/WP_Piwik/Widget.php:104
1068
- msgid "Hits"
1069
- msgstr "Aufrufe"
1070
-
1071
- #: classes/WP_Piwik/Widget.php:106
1072
- msgid "Actions"
1073
- msgstr "Aktionen"
1074
-
1075
- #: classes/WP_Piwik/Widget.php:144
1076
- msgid "No data available."
1077
- msgstr "Keine Daten vorhanden."
1078
-
1079
- #: classes/WP_Piwik/Widget.php:275
1080
- msgid "week"
1081
- msgstr "Woche"
1082
-
1083
- #: classes/WP_Piwik/Widget/BrowserDetails.php:16
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
@@ -1118,9 +980,7 @@ msgstr "Besucher"
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"
@@ -1151,10 +1011,6 @@ msgstr "Abspr&uuml;nge"
1151
  msgid "Overview"
1152
  msgstr "&Uuml;bersicht"
1153
 
1154
- #: classes/WP_Piwik/Widget/Overview.php:17
1155
- msgid "dashboard"
1156
- msgstr "Dashboard"
1157
-
1158
  #: classes/WP_Piwik/Widget/Overview.php:41 classes/WP_Piwik/Widget/Post.php:38
1159
  msgid "Unique visitors"
1160
  msgstr "Eindeutige Besucher"
@@ -1195,6 +1051,11 @@ msgstr "Plugins"
1195
  msgid "Plugin"
1196
  msgstr "Plugin"
1197
 
 
 
 
 
 
1198
  #: classes/WP_Piwik/Widget/Post.php:43
1199
  msgid "Min. generation time"
1200
  msgstr "Min. Zeit zur Generierung"
@@ -1235,11 +1096,82 @@ msgstr "Datum"
1235
  msgid "Page Views"
1236
  msgstr "Seitenansichten"
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."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2015 WP-Piwik
2
+ # This file is distributed under the same license as the WP-Piwik package.
3
  # Translators:
4
  # Andr&eacute; Br&auml;kling <webmaster@braekling.de>, 2011
5
  # André Bräkling <andre@braekling.de>, 2015
6
  msgid ""
7
  msgstr ""
8
  "Project-Id-Version: WP-Piwik\n"
9
+ "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/wp-piwik\n"
10
+ "POT-Creation-Date: 2015-05-20 21:59:25+00:00\n"
11
+ "PO-Revision-Date: 2015-05-24 09:25+0000\n"
12
  "Last-Translator: André Bräkling <andre@braekling.de>\n"
13
+ "Language-Team: German (Germany) (http://www.transifex.com/projects/p/wp-piwik/language/de_DE/)\n"
 
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
  "Language: de_DE\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
 
20
+ #: classes/WP_Piwik/Admin/Settings.php:24
21
+ msgid "Reload"
22
+ msgstr "Neu laden"
23
 
24
+ #: classes/WP_Piwik/Admin/Settings.php:27
 
 
 
 
25
  msgid "Changes saved."
26
  msgstr "&Auml;nderungen gespeichert"
27
 
28
+ #: classes/WP_Piwik/Admin/Settings.php:45
29
+ msgid "Save Changes"
30
+ msgstr "&Auml;nderungen speichern"
31
+
32
+ #: classes/WP_Piwik/Admin/Settings.php:46
33
  msgid "Thanks for using WP-Piwik!"
34
  msgstr "Vielen Dank f&uuml;r die Verwendung von WP-Piwik!"
35
 
36
+ #: classes/WP_Piwik/Admin/Settings.php:51
 
37
  msgid "WP-Piwik %s is successfully connected to Piwik %s."
38
  msgstr "WP-Piwik %s wurde erfolgreich mit Piwik %s verbunden."
39
 
40
+ #: classes/WP_Piwik/Admin/Settings.php:51
 
41
  msgid "You are running WordPress %s."
42
  msgstr "Du verwendest WordPress %s."
43
 
44
+ #: classes/WP_Piwik/Admin/Settings.php:51
 
45
  msgid ""
46
  "You are running a WordPress %s blog network (WPMU). WP-Piwik will handle "
47
  "your sites as different websites."
48
+ msgstr "Du verwendest ein WordPress %s Blog Netzwerk (WPMU). WP-Piwik wird Deine Seiten als unterschiedliche Webseiten behandeln."
 
 
49
 
50
+ #: classes/WP_Piwik/Admin/Settings.php:53
 
51
  msgid ""
52
+ "WP-Piwik %s was not able to connect to Piwik using your configuration. Check"
53
+ " the &raquo;Connect to Piwik&laquo; section below."
54
+ msgstr "WP-Piwik %s konnte sich mit Deiner Konfiguration nicht mit Piwik verbinden. Bitte &uuml;berpr&uuml;fe die &raquo;Mit Piwik verbinden&laquo;-Sektion unten."
 
 
 
55
 
56
+ #: classes/WP_Piwik/Admin/Settings.php:56
 
57
  msgid ""
58
  "WP-Piwik %s has to be connected to Piwik first. Check the &raquo;Connect to "
59
  "Piwik&laquo; section below."
60
+ msgstr "WP-Piwik %s muss zun&auml;chst mit Piwik verbunden werden. Bitte &uuml;berpr&uuml;fe die &raquo;Mit Piwik verbinden&laquo;-Sektion unten."
 
 
61
 
62
+ #: classes/WP_Piwik/Admin/Settings.php:60
63
  msgid "Connect to Piwik"
64
  msgstr "Mit Piwik verbinden"
65
 
66
+ #: classes/WP_Piwik/Admin/Settings.php:65
67
  msgid "Show Statistics"
68
  msgstr "Zeige Statistiken"
69
 
70
+ #: classes/WP_Piwik/Admin/Settings.php:69
71
  msgid "Enable Tracking"
72
  msgstr "Aktiviere Tracking"
73
 
74
+ #: classes/WP_Piwik/Admin/Settings.php:74
75
  msgid "Expert Settings"
76
  msgstr "Expertenkonfiguration"
77
 
78
+ #: classes/WP_Piwik/Admin/Settings.php:78 classes/WP_Piwik.php:914
79
+ msgid "Support"
80
+ msgstr "Support"
81
+
82
+ #: classes/WP_Piwik/Admin/Settings.php:82
83
  msgid "Credits"
84
  msgstr "Danksagungen"
85
 
86
+ #: classes/WP_Piwik/Admin/Settings.php:95
87
  msgid ""
88
  "WP-Piwik is a WordPress plugin to show a selection of Piwik stats in your "
89
+ "WordPress admin dashboard and to add and configure your Piwik tracking code."
90
+ " To use this you will need your own Piwik instance. If you do not already "
91
  "have a Piwik setup, you have two simple options: use either"
92
+ 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 "
 
 
 
 
 
93
 
94
+ #: classes/WP_Piwik/Admin/Settings.php:95
95
  msgid "Self-hosted"
96
  msgstr "selbst-gehostet"
97
 
98
+ #: classes/WP_Piwik/Admin/Settings.php:95
99
  msgid "or"
100
  msgstr "oder"
101
 
102
+ #: classes/WP_Piwik/Admin/Settings.php:95
103
  msgid "Cloud-hosted"
104
  msgstr "in der Cloud"
105
 
106
+ #: classes/WP_Piwik/Admin/Settings.php:98
107
  msgid ""
108
  "Neither cURL nor fopen are available. So WP-Piwik can not use the HTTP API "
109
  "and not connect to Piwik Pro."
110
+ msgstr "Weder cURL noch fopen ist verfügbar. Deswegen kann WP-Piwik die HTTP-API nicht verwenden und auch nicht zu Piwik Pro verbinden."
 
 
111
 
112
+ #: classes/WP_Piwik/Admin/Settings.php:98
113
  #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
114
  msgid "More information"
115
  msgstr "Weitere Informationen"
116
 
117
+ #: classes/WP_Piwik/Admin/Settings.php:100
118
  msgid "You can choose between three connection methods:"
119
  msgstr "Du kannst zwischen drei Verbindungsmöglichkeiten wählen:"
120
 
121
+ #: classes/WP_Piwik/Admin/Settings.php:100
122
+ #: classes/WP_Piwik/Admin/Settings.php:103
123
  msgid "Self-hosted (HTTP API, default)"
124
  msgstr "Selbst-gehostet (HTTP API, Standard)"
125
 
126
+ #: classes/WP_Piwik/Admin/Settings.php:100
127
  msgid ""
128
  "This is the default option for a self-hosted Piwik and should work for most "
129
  "configurations. WP-Piwik will connect to Piwik using http(s)."
130
+ 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)."
 
 
 
131
 
132
+ #: classes/WP_Piwik/Admin/Settings.php:100
133
+ #: classes/WP_Piwik/Admin/Settings.php:104
134
  msgid "Self-hosted (PHP API)"
135
  msgstr "Selbst-gehostet (PHP AP)"
136
 
137
+ #: classes/WP_Piwik/Admin/Settings.php:100
138
  msgid ""
139
+ "Choose this, if your self-hosted Piwik and WordPress are running on the same"
140
+ " machine and you know the full server path to your Piwik instance."
141
+ 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."
 
 
 
142
 
143
+ #: classes/WP_Piwik/Admin/Settings.php:100
144
+ #: classes/WP_Piwik/Admin/Settings.php:105
145
  msgid "Cloud-hosted (Piwik Pro)"
146
  msgstr "In der Cloud (Piwik Pro)"
147
 
148
+ #: classes/WP_Piwik/Admin/Settings.php:100
149
  msgid ""
150
  "If you are using a cloud-hosted Piwik by Piwik Pro, you can simply use this "
151
  "option."
152
+ msgstr "Wenn Du ein Piwik in der Cloud von Piwik Pro verwendest, kannst Du einfach diese Option w&auml;hlen."
 
 
153
 
154
+ #: classes/WP_Piwik/Admin/Settings.php:101
155
  msgid "Piwik Mode"
156
  msgstr "Piwik-Modus"
157
 
158
+ #: classes/WP_Piwik/Admin/Settings.php:102
159
  msgid "Disabled (WP-Piwik will not connect to Piwik)"
160
  msgstr "Deaktiviert (WP-Piwik wird sich nicht mit Piwik verbinden)"
161
 
162
+ #: classes/WP_Piwik/Admin/Settings.php:108
163
  msgid "Piwik URL"
164
  msgstr "Piwik URL"
165
 
166
+ #: classes/WP_Piwik/Admin/Settings.php:108
167
  msgid ""
168
  "Enter your Piwik URL. This is the same URL you use to access your Piwik "
169
  "instance, e.g. http://www.example.com/piwik/."
170
+ 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/."
 
 
171
 
172
+ #: classes/WP_Piwik/Admin/Settings.php:109
173
  msgid "Piwik path"
174
  msgstr "Piwik Pfad"
175
 
176
+ #: classes/WP_Piwik/Admin/Settings.php:109
177
  msgid "Enter the file path to your Piwik instance, e.g. /var/www/piwik/."
178
+ msgstr "Gib den Dateipfad zu Deiner Piwik-Installation an, z.B. /var/www/piwik/."
 
179
 
180
+ #: classes/WP_Piwik/Admin/Settings.php:110
181
  msgid "Piwik user"
182
  msgstr "Piwik-Benutzer"
183
 
184
+ #: classes/WP_Piwik/Admin/Settings.php:110
185
  msgid ""
186
+ "Enter your Piwik Pro username. It is also part of your URL: "
 
 
 
187
  "http://USERNAME.piwik.pro."
188
+ msgstr "Gib hier Deinen Piwik Pro Benutzernamen an. Er ist auch Teil Deiner URL: http://USERNAME.piwik.pro."
189
 
190
+ #: classes/WP_Piwik/Admin/Settings.php:111
191
  msgid "Auth token"
192
  msgstr "Auth Token"
193
 
194
+ #: classes/WP_Piwik/Admin/Settings.php:111
195
  msgid ""
196
  "Enter your Piwik auth token here. It is an alphanumerical code like "
197
  "0a1b2c34d56e78901fa2bc3d45678efa."
198
+ msgstr "Gib hier Dein Piwik Auth Token an. Es ist ein alphanumerische Code wie 0a1b2c34d56e78901fa2bc3d45678efa."
 
 
199
 
200
+ #: classes/WP_Piwik/Admin/Settings.php:111
 
201
  msgid "See %sWP-Piwik FAQ%s."
202
  msgstr "Siehe %sdie WP-Piwik FAQ%s"
203
 
204
+ #: classes/WP_Piwik/Admin/Settings.php:116
205
  msgid "Auto config"
206
  msgstr "Auto-Konfiguration"
207
 
208
+ #: classes/WP_Piwik/Admin/Settings.php:116
209
  msgid ""
210
  "Check this to automatically choose your blog from your Piwik sites by URL. "
211
  "If your blog is not added to Piwik yet, WP-Piwik will add a new site."
212
+ 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."
 
 
 
 
 
 
 
213
 
214
+ #: classes/WP_Piwik/Admin/Settings.php:127
215
  msgid "Determined site"
216
  msgstr "Ermittelte Seite"
217
 
218
+ #: classes/WP_Piwik/Admin/Settings.php:132
219
  msgid "Select site"
220
  msgstr "W&auml;hle die Seite"
221
 
222
+ #: classes/WP_Piwik/Admin/Settings.php:140
223
  msgid "Piwik default date"
224
  msgstr "Piwik Standard-Datum"
225
 
226
+ #: classes/WP_Piwik/Admin/Settings.php:141
227
+ #: classes/WP_Piwik/Admin/Settings.php:154
228
  msgid "Today"
229
  msgstr "Heute"
230
 
231
+ #: classes/WP_Piwik/Admin/Settings.php:142
232
+ #: classes/WP_Piwik/Admin/Settings.php:153
233
  msgid "Yesterday"
234
  msgstr "Gestern"
235
 
236
+ #: classes/WP_Piwik/Admin/Settings.php:143
237
  msgid "Current month"
238
  msgstr "Aktueller Monat"
239
 
240
+ #: classes/WP_Piwik/Admin/Settings.php:144
241
  msgid "Last month"
242
  msgstr "Letzter Monat"
243
 
244
+ #: classes/WP_Piwik/Admin/Settings.php:145
245
  msgid "Current week"
246
  msgstr "Aktuelle Woche"
247
 
248
+ #: classes/WP_Piwik/Admin/Settings.php:146
249
  msgid "Last week"
250
  msgstr "Letzte Woche"
251
 
252
+ #: classes/WP_Piwik/Admin/Settings.php:147
253
  msgid "Default date shown on statistics page."
254
  msgstr "Default-Datum, das auf der Statistik-Seite gezeigt wird."
255
 
256
+ #: classes/WP_Piwik/Admin/Settings.php:149
257
  msgid "Show SEO data"
258
  msgstr "Zeige SEO-Daten"
259
 
260
+ #: classes/WP_Piwik/Admin/Settings.php:149
261
  msgid "Display SEO ranking data on statistics page."
262
  msgstr "Zeige SEO-Ranking-Daten auf der Statistiken-Seite."
263
 
264
+ #: classes/WP_Piwik/Admin/Settings.php:149
265
+ #: classes/WP_Piwik/Admin/Settings.php:160
266
  msgid "Slow!"
267
  msgstr "Langsam!"
268
 
269
+ #: classes/WP_Piwik/Admin/Settings.php:151
270
  msgid "Dashboard overview"
271
  msgstr "Dashboard Übersicht"
272
 
273
+ #: classes/WP_Piwik/Admin/Settings.php:152
274
+ #: classes/WP_Piwik/Admin/Settings.php:190
275
+ #: classes/WP_Piwik/Admin/Settings.php:192
276
+ #: classes/WP_Piwik/Admin/Settings.php:213
277
  msgid "Disabled"
278
  msgstr "Deaktiviert"
279
 
280
+ #: classes/WP_Piwik/Admin/Settings.php:155
281
  msgid "Last 30 days"
282
  msgstr "Letzte 30 Tage"
283
 
284
+ #: classes/WP_Piwik/Admin/Settings.php:156
285
  msgid "Enable WP-Piwik dashboard widget &quot;Overview&quot;."
286
  msgstr "Aktiviere das WP-Piwik Dashboard Widget &quot;Übersicht&quot;."
287
 
288
+ #: classes/WP_Piwik/Admin/Settings.php:158
289
  msgid "Dashboard graph"
290
  msgstr "Dashboard-Graph"
291
 
292
+ #: classes/WP_Piwik/Admin/Settings.php:158
293
  msgid "Enable WP-Piwik dashboard widget &quot;Graph&quot;."
294
  msgstr "Aktiviere das WP-Piwik Dashboard Widget &quot;Graph&quot;."
295
 
296
+ #: classes/WP_Piwik/Admin/Settings.php:160
297
  msgid "Dashboard SEO"
298
  msgstr "Dashboard SEO"
299
 
300
+ #: classes/WP_Piwik/Admin/Settings.php:160
301
  msgid "Enable WP-Piwik dashboard widget &quot;SEO&quot;."
302
  msgstr "Aktiviere das WP-Piwik Dashboard Widget &quot;SEO&quot;."
303
 
304
+ #: classes/WP_Piwik/Admin/Settings.php:162
305
  msgid "Show graph on WordPress Toolbar"
306
  msgstr "Zeige einen Graphen in der WordPress Toolbar"
307
 
308
+ #: classes/WP_Piwik/Admin/Settings.php:162
309
  msgid "Display a last 30 days visitor graph on WordPress' toolbar."
310
+ msgstr "Zeige einen Besuchergraph der letzten 30 Tage in der WordPress' Toolbar."
 
311
 
312
+ #: classes/WP_Piwik/Admin/Settings.php:164
313
  msgid "Display stats to"
314
  msgstr "Zeige Statistiken für"
315
 
316
+ #: classes/WP_Piwik/Admin/Settings.php:171
317
  msgid "Choose user roles allowed to see the statistics page."
318
+ msgstr "W&auml;hle diejenigen Nutzerrollen, die sich die Statistiken ansehen d&uuml;rfen."
 
 
319
 
320
+ #: classes/WP_Piwik/Admin/Settings.php:173
321
  msgid "Show per post stats"
322
  msgstr "Zeige Beitrags-Statistiken"
323
 
324
+ #: classes/WP_Piwik/Admin/Settings.php:173
325
  msgid "Show stats about single posts at the post edit admin page."
326
+ msgstr "Zeige Statistiken zu einzelnen Beitr&auml;gen auf der Bearbeiten-Seite."
 
327
 
328
+ #: classes/WP_Piwik/Admin/Settings.php:175
329
  msgid "Piwik shortcut"
330
  msgstr "Piwik-Verlinkung"
331
 
332
+ #: classes/WP_Piwik/Admin/Settings.php:175
333
  msgid "Display a shortcut to Piwik itself."
334
  msgstr "Zeigt einen Shortcut zu Piwik an."
335
 
336
+ #: classes/WP_Piwik/Admin/Settings.php:177
337
  msgid "WP-Piwik display name"
338
  msgstr "Anzeigename f&uuml;r WP-Piwik"
339
 
340
+ #: classes/WP_Piwik/Admin/Settings.php:177
341
  msgid "Plugin name shown in WordPress."
342
  msgstr "Der Name, mit dem das Plugin in WordPress angezeigt wird."
343
 
344
+ #: classes/WP_Piwik/Admin/Settings.php:179
345
  msgid "Enable shortcodes"
346
  msgstr "Aktiviere Shortcodes"
347
 
348
+ #: classes/WP_Piwik/Admin/Settings.php:179
349
  msgid "Enable shortcodes in post or page content."
350
  msgstr "Aktiviere Shortcodes innerhalb von Artikeln und Seiten."
351
 
352
+ #: classes/WP_Piwik/Admin/Settings.php:190
353
  msgid "You can choose between four tracking code modes:"
354
  msgstr "Du kannst zwischen vier Tracking-Code-Varianten wählen:"
355
 
356
+ #: classes/WP_Piwik/Admin/Settings.php:190
357
  msgid ""
358
  "WP-Piwik will not add the tracking code. Use this, if you want to add the "
359
  "tracking code to your template files or you use another plugin to add the "
360
  "tracking code."
361
+ 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."
 
 
 
362
 
363
+ #: classes/WP_Piwik/Admin/Settings.php:190
364
+ #: classes/WP_Piwik/Admin/Settings.php:193
365
  msgid "Default tracking"
366
  msgstr "Standard-Tracking"
367
 
368
+ #: classes/WP_Piwik/Admin/Settings.php:190
369
  msgid "WP-Piwik will use Piwik's standard tracking code."
370
  msgstr "WP-Piwik verwendet den Standard Tracking-Code von Piwik."
371
 
372
+ #: classes/WP_Piwik/Admin/Settings.php:190
373
+ #: classes/WP_Piwik/Admin/Settings.php:194
374
  msgid "Use js/index.php"
375
  msgstr "Nutze js/index.php"
376
 
377
+ #: classes/WP_Piwik/Admin/Settings.php:190
378
  msgid ""
379
  "You can choose this tracking code, to deliver a minified proxy code and to "
380
  "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:190
 
384
  msgid "See %sreadme file%s."
385
  msgstr "Siehe %sReadme-Datei%s."
386
 
387
+ #: classes/WP_Piwik/Admin/Settings.php:190
388
+ #: classes/WP_Piwik/Admin/Settings.php:195
389
  msgid "Use proxy script"
390
  msgstr "Verwende Proxy-Skript"
391
 
392
+ #: classes/WP_Piwik/Admin/Settings.php:190
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:190
397
+ #: classes/WP_Piwik/Admin/Settings.php:210
398
+ #: classes/WP_Piwik/Admin/Settings.php:220
 
399
  msgid "See %sPiwik FAQ%s."
400
  msgstr "Siehe %sPiwik FAQ%s."
401
 
402
+ #: classes/WP_Piwik/Admin/Settings.php:190
403
+ #: classes/WP_Piwik/Admin/Settings.php:196
404
  msgid "Enter manually"
405
  msgstr "Manuelle Eingabe"
406
 
407
+ #: classes/WP_Piwik/Admin/Settings.php:190
408
  msgid ""
409
  "Enter your own tracking code manually. You can choose one of the prior "
410
  "options, pre-configure your tracking code and switch to manually editing at "
411
  "last."
412
+ 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."
 
 
 
413
 
414
+ #: classes/WP_Piwik/Admin/Settings.php:190
415
  msgid "Use the placeholder {ID} to add the Piwik site ID."
416
  msgstr "Verwende den Platzhalter {ID}, um Piwiks Site-ID einzuf&uuml;gen."
417
 
418
+ #: classes/WP_Piwik/Admin/Settings.php:191
419
  msgid "Add tracking code"
420
  msgstr "Tracking-Code einf&uuml;gen"
421
 
422
+ #: classes/WP_Piwik/Admin/Settings.php:199
423
  msgid "Tracking code"
424
  msgstr "Tracking-Code"
425
 
426
+ #: classes/WP_Piwik/Admin/Settings.php:201
427
  msgid "JavaScript code position"
428
  msgstr "Position des JavaScript-Codes"
429
 
430
+ #: classes/WP_Piwik/Admin/Settings.php:202
431
  msgid "Footer"
432
  msgstr "Fußbereich"
433
 
434
+ #: classes/WP_Piwik/Admin/Settings.php:203
435
  msgid "Header"
436
  msgstr "Kopfbereich"
437
 
438
+ #: classes/WP_Piwik/Admin/Settings.php:204
439
  msgid ""
440
  "Choose whether the JavaScript code is added to the footer or the header."
441
+ msgstr "W&auml;hle, ob der JavaScript-Code im Footer oder im Header eingef&uuml;gt werden soll."
 
 
442
 
443
+ #: classes/WP_Piwik/Admin/Settings.php:206
444
  msgid "Noscript code"
445
  msgstr "Noscript-Code"
446
 
447
+ #: classes/WP_Piwik/Admin/Settings.php:208
448
  msgid "Add &lt;noscript&gt;"
449
  msgstr "F&uuml;ge &lt;noscript&gt; hinzu"
450
 
451
+ #: classes/WP_Piwik/Admin/Settings.php:208
452
  msgid "Adds the &lt;noscript&gt; code to your footer."
453
  msgstr "F&uuml;gt den &lt;noscript&gt;-Code im Footer ein."
454
 
455
+ #: classes/WP_Piwik/Admin/Settings.php:208
456
+ #: classes/WP_Piwik/Admin/Settings.php:210
457
  msgid "Disabled in proxy mode."
458
  msgstr "Im Proxy-Modus deaktiviert."
459
 
460
+ #: classes/WP_Piwik/Admin/Settings.php:210
461
  msgid "Add rec parameter to noscript code"
462
  msgstr "F&uuml;ge rec-Parameter zum noscript Code hinzu"
463
 
464
+ #: classes/WP_Piwik/Admin/Settings.php:210
465
  msgid "Enable tracking for visitors without JavaScript (not recommended)."
466
  msgstr "Aktiviere das Tracking für Besucher ohne JavaScript (nicht empfohlen)."
467
 
468
+ #: classes/WP_Piwik/Admin/Settings.php:212
469
  msgid "Enable content tracking"
470
  msgstr "Aktiviere Content-Tracking"
471
 
472
+ #: classes/WP_Piwik/Admin/Settings.php:214
473
  msgid "Track all content blocks"
474
  msgstr "Tracke alle Content-Bereiche"
475
 
476
+ #: classes/WP_Piwik/Admin/Settings.php:215
477
  msgid "Track only visible content blocks"
478
  msgstr "Tracke nur sichtbare Content-Bereiche"
479
 
480
+ #: classes/WP_Piwik/Admin/Settings.php:216
481
  msgid ""
482
  "Content tracking allows you to track interaction with the content of a web "
483
  "page or application."
484
+ msgstr "Das Content-Tracking erlaubt es Dir, Interaktionen mit dem Inhalt einer Webseite oder -anwendung zu tracken."
 
 
485
 
486
+ #: classes/WP_Piwik/Admin/Settings.php:216
487
+ #: classes/WP_Piwik/Admin/Settings.php:218
488
+ #: classes/WP_Piwik/Admin/Settings.php:222
489
+ #: classes/WP_Piwik/Admin/Settings.php:224
490
+ #: classes/WP_Piwik/Admin/Settings.php:226
491
+ #: classes/WP_Piwik/Admin/Settings.php:247
492
+ #: classes/WP_Piwik/Admin/Settings.php:249
 
 
493
  msgid "See %sPiwik documentation%s."
494
  msgstr "Siehe %sPiwik-Dokumentation%s."
495
 
496
+ #: classes/WP_Piwik/Admin/Settings.php:218
497
  msgid "Track search"
498
  msgstr "Tracke Suchanfragen"
499
 
500
+ #: classes/WP_Piwik/Admin/Settings.php:218
501
  msgid "Use Piwik's advanced Site Search Analytics feature."
502
  msgstr "Nutze Piwiks Site Search Funktion, um interne Suchen zu tracken."
503
 
504
+ #: classes/WP_Piwik/Admin/Settings.php:220
505
  msgid "Track 404"
506
  msgstr "404-Tracking"
507
 
508
+ #: classes/WP_Piwik/Admin/Settings.php:220
509
+ msgid ""
510
+ "WP-Piwik can automatically add a 404-category to track 404-page-visits."
511
+ msgstr "WP-Piwik kann automatisch eine eigene Kategorie f&uuml;r 404-Seiten hinzuf&uuml;gen."
 
512
 
513
+ #: classes/WP_Piwik/Admin/Settings.php:222
514
  msgid "Add annotation on new post"
515
  msgstr "Notiz bei neuem Post"
516
 
517
+ #: classes/WP_Piwik/Admin/Settings.php:222
518
  msgid "Add a Piwik annotation on each new post."
519
  msgstr "F&uuml;ge eine Piwik-Notiz bei jedem neuen Post hinzu."
520
 
521
+ #: classes/WP_Piwik/Admin/Settings.php:224
522
  msgid "Show custom variables box"
523
  msgstr "Zeige Custom-Variables-Box"
524
 
525
+ #: classes/WP_Piwik/Admin/Settings.php:224
526
  msgid " Show a &quot;custom variables&quot; edit box on post edit page."
527
+ msgstr "Zeige eine Eingabebox für &quot;custom variables&quot; auf der Seite zum Bearbeiten von Posts."
 
 
528
 
529
+ #: classes/WP_Piwik/Admin/Settings.php:226
530
  msgid "Add new file types for download tracking"
531
  msgstr "F&uuml;ge weitere Dateitypen f&uuml;r das Download-Tracking hinzu."
532
 
533
+ #: classes/WP_Piwik/Admin/Settings.php:226
534
  msgid ""
535
  "Add file extensions for download tracking, divided by a vertical bar "
536
  "(&#124;)."
537
+ msgstr "F&uuml;ge Dateierweiterung zum Download-Tracking hinzu. Trenne mehrere Erweiterung durch einen senkrechten Strich (&#124;)."
 
 
538
 
539
+ #: classes/WP_Piwik/Admin/Settings.php:228
540
  msgid "Disable cookies"
541
  msgstr "Cookies deaktivieren"
542
 
543
+ #: classes/WP_Piwik/Admin/Settings.php:228
544
  msgid "Disable all tracking cookies for a visitor."
545
  msgstr "Schalte alle Tracking-Cookies f&uuml;r Besucher ab."
546
 
547
+ #: classes/WP_Piwik/Admin/Settings.php:230
548
  msgid "Limit cookie lifetime"
549
  msgstr "Cookie-Lebensdauer beschr&auml;nken"
550
 
551
+ #: classes/WP_Piwik/Admin/Settings.php:230
552
  msgid ""
553
+ "You can limit the cookie lifetime to avoid tracking your users over a longer"
554
+ " period as necessary."
555
+ msgstr "Du kannst die Cookie-Lebenszeit begrenzen, um Deine Besucher nicht länger als notwendig zu tracken."
 
 
556
 
557
+ #: classes/WP_Piwik/Admin/Settings.php:232
558
  msgid "Visitor timeout (seconds)"
559
  msgstr "Besucher-Timeout (Sekunden)"
560
 
561
+ #: classes/WP_Piwik/Admin/Settings.php:234
562
  msgid "Session timeout (seconds)"
563
  msgstr "Session-Timeout (Sekunden)"
564
 
565
+ #: classes/WP_Piwik/Admin/Settings.php:236
566
  msgid "Referral timeout (seconds)"
567
  msgstr "Referral-Timeout (Sekunden)"
568
 
569
+ #: classes/WP_Piwik/Admin/Settings.php:238
570
  msgid "Track admin pages"
571
  msgstr "Admin-Seiten tracken"
572
 
573
+ #: classes/WP_Piwik/Admin/Settings.php:238
574
  msgid ""
575
  "Enable to track users on admin pages (remember to configure the tracking "
576
  "filter appropriately)."
577
+ msgstr "Aktivieren, um Nutzer auf Admin-Seiten zu z&auml;hlen (bitte den Tracking Filter entsprechend konfigurieren)."
 
 
578
 
579
+ #: classes/WP_Piwik/Admin/Settings.php:241
580
  msgid "Tracking filter"
581
  msgstr "Tracking-Filter"
582
 
583
+ #: classes/WP_Piwik/Admin/Settings.php:245
584
  msgid "Choose users by user role you do <strong>not</strong> want to track."
585
+ msgstr "W&auml;hle diejenigen Nutzerrollen, die Du <strong>nicht</strong> erfassen willst."
 
 
586
 
587
+ #: classes/WP_Piwik/Admin/Settings.php:247
588
  msgid "Track subdomains in the same website"
589
  msgstr "Tracke Subdomains innerhalb der gleichen Webseite"
590
 
591
+ #: classes/WP_Piwik/Admin/Settings.php:247
592
  msgid "Adds *.-prefix to cookie domain."
593
  msgstr "F&uuml;gt ein *.-Pr&auml;fix zur Cookie Domain hinzu."
594
 
595
+ #: classes/WP_Piwik/Admin/Settings.php:249
596
  msgid "Do not count subdomains as outlink"
597
  msgstr "Werte Subdomains nicht als ausgehenden Link"
598
 
599
+ #: classes/WP_Piwik/Admin/Settings.php:249
600
  msgid "Adds *.-prefix to tracked domain."
601
  msgstr "F&uuml;gt ein *.-Pr&auml;fix zur getrackten Domain hinzu."
602
 
603
+ #: classes/WP_Piwik/Admin/Settings.php:251
604
  msgid "Track RSS feeds"
605
  msgstr "Tracke RSS-Feeds"
606
 
607
+ #: classes/WP_Piwik/Admin/Settings.php:251
608
  msgid "Enable to track posts in feeds via tracking pixel."
609
  msgstr "Aktivieren, um Beir&auml;ge im Feed via Tracking-Pixel zu z&auml;hlen."
610
 
611
+ #: classes/WP_Piwik/Admin/Settings.php:253
612
  msgid "Track RSS feed links as campaign"
613
  msgstr "Links in RSS-Feeds als Kampagne tracken"
614
 
615
+ #: classes/WP_Piwik/Admin/Settings.php:255
 
 
 
 
 
616
  msgid "RSS feed campaign"
617
  msgstr "RSS-Feed Kampagne"
618
 
619
+ #: classes/WP_Piwik/Admin/Settings.php:255
620
  msgid "Keyword: post name."
621
  msgstr "Schl&uuml;sselwort: Name des Beitrags."
622
 
623
+ #: classes/WP_Piwik/Admin/Settings.php:260
624
  msgid ""
625
+ "Usually, you do not need to change these settings. If you want to do so, you"
626
+ " should know what you do or you got an expert's advice."
627
+ 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."
 
 
 
628
 
629
+ #: classes/WP_Piwik/Admin/Settings.php:262
630
  msgid "Enable cache"
631
  msgstr "Cache einschalten"
632
 
633
+ #: classes/WP_Piwik/Admin/Settings.php:262
634
  msgid "Cache API calls, which not contain today's values, for a week."
635
+ msgstr "Cache API-Anfragen, die keine heutigen Werte enthalten, für eine Woche."
 
636
 
637
+ #: classes/WP_Piwik/Admin/Settings.php:264
638
  msgid "Disable time limit"
639
  msgstr "Zeitlimit deaktivieren"
640
 
641
+ #: classes/WP_Piwik/Admin/Settings.php:264
642
  msgid "Use set_time_limit(0) if stats page causes a time out."
643
+ msgstr "Verwende set_time_limit(0) falls die Statistik-Seite einen Timeout erzeugt."
 
644
 
645
+ #: classes/WP_Piwik/Admin/Settings.php:266
646
  msgid "Connection timeout"
647
  msgstr "Verbindungs-Timeout"
648
 
649
+ #: classes/WP_Piwik/Admin/Settings.php:268
650
  msgid "Disable SSL peer verification"
651
  msgstr "SSL Peer-Verifikation deaktivieren"
652
 
653
+ #: classes/WP_Piwik/Admin/Settings.php:268
654
  msgid "not recommended"
655
  msgstr "Nicht empfohlen"
656
 
657
+ #: classes/WP_Piwik/Admin/Settings.php:270
658
  msgid "User agent"
659
  msgstr "User Agent"
660
 
661
+ #: classes/WP_Piwik/Admin/Settings.php:271
662
  msgid "Use the PHP default user agent"
663
  msgstr "Verwende den PHP-Standard User-Agent"
664
 
665
+ #: classes/WP_Piwik/Admin/Settings.php:271
666
  msgid "empty"
667
  msgstr "leer"
668
 
669
+ #: classes/WP_Piwik/Admin/Settings.php:272
670
  msgid "Define a specific user agent"
671
  msgstr "Lege einen spezifischen User-Agent fest"
672
 
673
+ #: classes/WP_Piwik/Admin/Settings.php:274
674
  msgid "Specific user agent"
675
  msgstr "Spezifischer User-Agent"
676
 
677
+ #: classes/WP_Piwik/Admin/Settings.php:276
678
  msgid "Add data-cfasync=false"
679
  msgstr "data-cfasync=false einf&uuml;gen"
680
 
681
+ #: classes/WP_Piwik/Admin/Settings.php:278
 
 
 
 
 
 
 
 
 
 
 
 
 
682
  msgid "CDN URL"
683
  msgstr "CDN URL"
684
 
685
+ #: classes/WP_Piwik/Admin/Settings.php:280
686
  msgid "CDN URL (SSL)"
687
  msgstr "CDN URL (SSL)"
688
 
689
+ #: classes/WP_Piwik/Admin/Settings.php:282
690
  msgid "Force Piwik to use a specific protocol"
691
  msgstr "Zwinge Piwik, ein bestimmtes Protokoll zu verwenden"
692
 
693
+ #: classes/WP_Piwik/Admin/Settings.php:283
694
  msgid "Disabled (default)"
695
  msgstr "Deaktiviert (Standard)"
696
 
697
+ #: classes/WP_Piwik/Admin/Settings.php:284
698
  msgid "http"
699
  msgstr "http"
700
 
701
+ #: classes/WP_Piwik/Admin/Settings.php:285
702
  msgid "https (SSL)"
703
  msgstr "https (SSL)"
704
 
705
+ #: classes/WP_Piwik/Admin/Settings.php:286
706
  msgid ""
707
  "Choose if you want to explicitly force Piwik to use HTTP or HTTPS. Does not "
708
  "work with a CDN URL."
709
+ msgstr "W&auml;hle aus, ob Du Piwik ausdr&uuml;cklich zwingen willst, HTTP oder HTTPS zu verwenden. Funktioniert nicht mit einer CDN URL."
 
 
710
 
711
+ #: classes/WP_Piwik/Admin/Settings.php:445
712
  msgid "Donate"
713
  msgstr "Spenden"
714
 
715
+ #: classes/WP_Piwik/Admin/Settings.php:447
716
  msgid "If you like WP-Piwik, you can support its development by a donation:"
717
+ msgstr "Wenn Dir WP-Piwik gef&auml;llt, kannst Du die weitere Entwicklung mit einer Spende f&ouml;rdern:"
 
 
718
 
719
+ #: classes/WP_Piwik/Admin/Settings.php:485
720
  msgid "My Amazon.de wishlist"
721
  msgstr "Meine Wunschliste bei Amazon.de"
722
 
723
+ #: classes/WP_Piwik/Admin/Settings.php:488
724
+ #: classes/WP_Piwik/Admin/Settings.php:535
725
  msgid "Please don't forget to vote the compatibility at the"
726
  msgstr "Bitte denke daran, eine Kompatibilit&auml;tsbewertung abzugeben:"
727
 
728
+ #: classes/WP_Piwik/Admin/Settings.php:519
729
  msgid "Thank you very much for your donation"
730
  msgstr "Vielen Dank f&uuml;r eure Spenden"
731
 
732
+ #: classes/WP_Piwik/Admin/Settings.php:519
733
  msgid "the Piwik team itself"
734
  msgstr "das Piwik-Team selbst"
735
 
736
+ #: classes/WP_Piwik/Admin/Settings.php:519
737
  msgid ", and all people flattering this"
738
  msgstr " und allen, die WP-Piwik flattrn"
739
 
740
+ #: classes/WP_Piwik/Admin/Settings.php:520
741
  msgid ""
742
  "Graphs powered by <a href=\"http://www.jqplot.com/\">jqPlot</a> (License: "
743
+ "GPL 2.0 and MIT) and <a "
744
+ "href=\"http://omnipotent.net/jquery.sparkline/\">jQuery Sparklines</a> "
745
+ "(License: New BSD License)."
746
+ 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."
 
 
747
 
748
+ #: classes/WP_Piwik/Admin/Settings.php:521
749
  msgid "Metabox support inspired by"
750
  msgstr "Die Metabox-Unterst&uuml;tzung wurde inspiriert von"
751
 
752
+ #: classes/WP_Piwik/Admin/Settings.php:522
753
  msgid "Tabbed settings page suggested by the"
754
+ msgstr "Die Tabs f&uuml;r die Einstellungen wurden inspiriert von einem Artikel im"
 
755
 
756
+ #: classes/WP_Piwik/Admin/Settings.php:523
757
  msgid "Thank you very much"
758
  msgstr "Vielen Dank"
759
 
760
+ #: classes/WP_Piwik/Admin/Settings.php:523
761
  msgid "for your translation work"
762
  msgstr "f&uuml;r eure &Uuml;bersetzungsarbeit"
763
 
764
+ #: classes/WP_Piwik/Admin/Settings.php:524
765
  msgid ""
766
  "Thank you very much, all users who send me mails containing criticism, "
767
+ "commendation, feature requests and bug reports! You help me to make WP-Piwik"
768
+ " much better."
769
+ 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."
 
 
 
770
 
771
+ #: classes/WP_Piwik/Admin/Settings.php:525
772
  msgid ""
773
  "Thank <strong>you</strong> for using my plugin. It is the best commendation "
774
  "if my piece of code is really used!"
775
+ 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!"
 
 
776
 
777
+ #: classes/WP_Piwik/Admin/Settings.php:534
778
  msgid "The best place to get help:"
779
  msgstr "Der beste Platz, um Hilfe zu bekommen:"
780
 
781
+ #: classes/WP_Piwik/Admin/Settings.php:534
782
  msgid "WP-Piwik support forum"
783
  msgstr "WP-Piwik Support-Forum"
784
 
785
+ #: classes/WP_Piwik/Admin/Settings.php:537
786
  msgid "Debugging"
787
  msgstr "Fehlersuche"
788
 
789
+ #: classes/WP_Piwik/Admin/Settings.php:538
790
  msgid ""
791
  "Either allow_url_fopen has to be enabled <em>or</em> cURL has to be "
792
  "available:"
793
+ msgstr "Entweder allow_url_fopen muss aktiviert <em>oder</em> cURL muss verf&uuml;gbar sein:"
 
 
794
 
795
+ #: classes/WP_Piwik/Admin/Settings.php:541
796
  msgid "cURL is"
797
  msgstr "cURL ist"
798
 
799
+ #: classes/WP_Piwik/Admin/Settings.php:542
800
+ #: classes/WP_Piwik/Admin/Settings.php:547
801
  msgid "not"
802
  msgstr "nicht"
803
 
804
+ #: classes/WP_Piwik/Admin/Settings.php:543
805
  msgid "available"
806
  msgstr "verf&uuml;gbar"
807
 
808
+ #: classes/WP_Piwik/Admin/Settings.php:546
809
  msgid "allow_url_fopen is"
810
  msgstr "allow_url_fopen ist"
811
 
812
+ #: classes/WP_Piwik/Admin/Settings.php:548
813
  msgid "enabled"
814
  msgstr "aktiviert"
815
 
816
+ #: classes/WP_Piwik/Admin/Settings.php:551
817
+ msgid "Tools"
818
+ msgstr "Tools"
819
+
820
+ #: classes/WP_Piwik/Admin/Settings.php:553
821
+ msgid "Run testscript"
822
+ msgstr "Testskript ausf&uuml;hren"
823
+
824
+ #: classes/WP_Piwik/Admin/Settings.php:554
825
+ msgid "Sitebrowser"
826
+ msgstr "Sitebrowser"
827
+
828
+ #: classes/WP_Piwik/Admin/Settings.php:555
829
+ msgid "Clear cache"
830
+ msgstr "Cache leeren"
831
+
832
+ #: classes/WP_Piwik/Admin/Settings.php:556
833
+ msgid "Are you sure you want to clear all settings?"
834
+ msgstr "Bist Du Dir sicher, dass Du alle Einstellungen l&ouml;schen willst?"
835
+
836
+ #: classes/WP_Piwik/Admin/Settings.php:556
837
+ msgid "Reset WP-Piwik"
838
+ msgstr "WP-Piwik zur&uuml;cksetzen"
839
+
840
+ #: classes/WP_Piwik/Admin/Settings.php:558
841
  msgid "Latest support threads on WordPress.org"
842
  msgstr "Die letzten Support-Beitr&auml;ge auf WordPress.org"
843
 
844
+ #: classes/WP_Piwik/Admin/Settings.php:609
845
+ msgid "Settings cleared (except connection settings)."
846
+ msgstr "Einstellungen gel&ouml;scht (au&szlig;er Verbindungsdaten)"
847
+
848
+ #: classes/WP_Piwik/Admin/Settings.php:625
849
+ msgid "Cache cleared."
850
+ msgstr "Cache geleert."
851
+
852
  #: classes/WP_Piwik/Admin/Sitebrowser.php:17
853
  msgid "site"
854
  msgstr "Seite"
857
  msgid "sites"
858
  msgstr "Seiten"
859
 
860
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:24
861
  msgid "No site configured yet."
862
  msgstr "Noch keine Seite konfiguriert."
863
 
864
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:29
865
+ msgid "Blog ID"
866
+ msgstr "Blog ID"
867
 
868
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:30
869
  msgid "Title"
870
  msgstr "Titel"
871
 
872
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:31
873
  msgid "URL"
874
  msgstr "URL"
875
 
876
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:32
877
  msgid "Site ID (Piwik)"
878
  msgstr "Seiten-ID (Piwik)"
879
 
880
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:79
881
  msgid "Site not created yet."
882
  msgstr "Seite noch nicht erstellt."
883
 
921
  msgid "Set custom variables for a page view"
922
  msgstr "Definiere custom variables f&uuml;r einen Seitenaufruf."
923
 
924
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:16
925
+ msgid "Browser Details"
926
+ msgstr "Browser-Details"
927
+
928
  #: classes/WP_Piwik/Widget/BrowserDetails.php:35
929
  #: classes/WP_Piwik/Widget/Browsers.php:35
930
  #: classes/WP_Piwik/Widget/Chart.php:41
934
  #: classes/WP_Piwik/Widget/Screens.php:35
935
  #: classes/WP_Piwik/Widget/Search.php:23 classes/WP_Piwik/Widget/Seo.php:20
936
  #: classes/WP_Piwik/Widget/Systems.php:33
937
+ #: classes/WP_Piwik/Widget/Visitors.php:35 classes/WP_Piwik/Widget.php:91
938
  msgid "Piwik error"
939
  msgstr "Piwik-Fehler"
940
 
941
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:37
942
+ #: classes/WP_Piwik/Widget/Browsers.php:37
943
+ msgid "Browser"
944
+ msgstr "Browser"
945
+
946
  #: classes/WP_Piwik/Widget/BrowserDetails.php:37
947
  #: classes/WP_Piwik/Widget/Browsers.php:37
948
  #: classes/WP_Piwik/Widget/Screens.php:37
949
  #: classes/WP_Piwik/Widget/Systems.php:35
950
+ #: classes/WP_Piwik/Widget/Visitors.php:57 classes/WP_Piwik/Widget.php:100
951
  msgid "Unique"
952
  msgstr "Unique"
953
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
954
  #: classes/WP_Piwik/Widget/BrowserDetails.php:37
955
  #: classes/WP_Piwik/Widget/Browsers.php:37
956
  #: classes/WP_Piwik/Widget/Plugins.php:25
980
  msgid ""
981
  "The graph contains the values shown in the table below (visitors / unique / "
982
  "bounces). The red line show a linear trendline (unique)."
983
+ msgstr "Der Graph zeigt die Werte aus der Besucher-Tabelle (Besucher / Unique / Abspr&uuml;nge). Die rote Linie zeigt eine lineare Trendlinie (Unique)."
 
 
984
 
985
  #: classes/WP_Piwik/Widget/Keywords.php:16
986
  msgid "Keywords"
1011
  msgid "Overview"
1012
  msgstr "&Uuml;bersicht"
1013
 
 
 
 
 
1014
  #: classes/WP_Piwik/Widget/Overview.php:41 classes/WP_Piwik/Widget/Post.php:38
1015
  msgid "Unique visitors"
1016
  msgstr "Eindeutige Besucher"
1051
  msgid "Plugin"
1052
  msgstr "Plugin"
1053
 
1054
+ #: classes/WP_Piwik/Widget/Plugins.php:25
1055
+ #: classes/WP_Piwik/Widget/Visitors.php:57 classes/WP_Piwik/Widget.php:102
1056
+ msgid "Visits"
1057
+ msgstr "Besuche"
1058
+
1059
  #: classes/WP_Piwik/Widget/Post.php:43
1060
  msgid "Min. generation time"
1061
  msgstr "Min. Zeit zur Generierung"
1096
  msgid "Page Views"
1097
  msgstr "Seitenansichten"
1098
 
1099
+ #: classes/WP_Piwik/Widget.php:104
1100
+ msgid "Hits"
1101
+ msgstr "Aufrufe"
1102
+
1103
+ #: classes/WP_Piwik/Widget.php:106
1104
+ msgid "Actions"
1105
+ msgstr "Aktionen"
1106
+
1107
+ #: classes/WP_Piwik/Widget.php:162
1108
+ msgid "No data available."
1109
+ msgstr "Keine Daten vorhanden."
1110
+
1111
+ #: classes/WP_Piwik/Widget.php:293
1112
+ msgid "week"
1113
+ msgstr "Woche"
1114
+
1115
+ #: classes/WP_Piwik.php:193
1116
+ msgid "%s %s installed."
1117
+ msgstr "%s %s installiert."
1118
+
1119
+ #: classes/WP_Piwik.php:193
1120
+ msgid "Next you should connect to Piwik"
1121
+ msgstr "Als n&auml;chstes solltest Du eine Verbindung zu Piwik herstellen"
1122
+
1123
+ #: classes/WP_Piwik.php:223
1124
+ msgid "%s updated to %s."
1125
+ msgstr "%s aktualisiert auf %s."
1126
+
1127
+ #: classes/WP_Piwik.php:223
1128
+ msgid "Please validate your configuration"
1129
+ msgstr "Bitte &uuml;berpr&uuml;fe Deine Konfiguration"
1130
+
1131
+ #: classes/WP_Piwik.php:255 classes/WP_Piwik.php:471
1132
+ msgid "Settings"
1133
+ msgstr "Einstellungen"
1134
+
1135
+ #: classes/WP_Piwik.php:258
1136
+ msgid "Important"
1137
+ msgstr "Wichtig"
1138
+
1139
+ #: classes/WP_Piwik.php:339 classes/WP_Piwik.php:361
1140
+ msgid "Piwik Statistics"
1141
+ msgstr "Piwik Statistiken"
1142
+
1143
+ #: classes/WP_Piwik.php:914
1144
+ msgid "An error occured"
1145
+ msgstr "Ein Fehler ist aufgetreten"
1146
+
1147
+ #: classes/WP_Piwik.php:1179
1148
+ msgid "Cheatin&#8217; uh?"
1149
+ msgstr "Schummelst wohl?"
1150
+
1151
  #: wp-piwik.php:60
 
1152
  msgid ""
1153
+ "WP-Piwik requires at least PHP 5.3. You are using the deprecated version %s."
1154
+ " Please update PHP to use WP-Piwik."
1155
+ msgstr "WP-Piwik ben&ouml;tigt zumindest PHP 5.3. Du verwendest die veraltete Version %s. Bitte aktualisiere PHP um WP-Piwik zu nutzen."
1156
+
1157
+ #. Plugin Name of the plugin/theme
1158
+ msgid "WP-Piwik"
1159
+ msgstr "WP-Piwik"
1160
+
1161
+ #. Plugin URI of the plugin/theme
1162
+ msgid "http://wordpress.org/extend/plugins/wp-piwik/"
1163
+ msgstr "http://wordpress.org/extend/plugins/wp-piwik/"
1164
+
1165
+ #. Description of the plugin/theme
1166
+ msgid ""
1167
+ "Adds Piwik stats to your dashboard menu and Piwik code to your wordpress "
1168
+ "header."
1169
+ msgstr "F&uuml;gt Piwik-Statistiken zu Deinem Dashboard und den Piwik-Code zu Deinem Blog hinzu."
1170
+
1171
+ #. Author of the plugin/theme
1172
+ msgid "Andr&eacute; Br&auml;kling"
1173
+ msgstr "Andr&eacute; Br&auml;kling"
1174
+
1175
+ #. Author URI of the plugin/theme
1176
+ msgid "http://www.braekling.de"
1177
+ msgstr "http://www.braekling.de"
languages/wp-piwik-fa_IR.mo CHANGED
Binary file
languages/wp-piwik-fa_IR.po CHANGED
@@ -1,408 +1,228 @@
1
- # Translation of the WordPress plugin WP-Piwik 0.8.0 by Andr&eacute; Br&auml;kling.
2
- # Copyright (C) 2010 Andr&eacute; Br&auml;kling
3
  # This file is distributed under the same license as the WP-Piwik package.
4
- # Andr&eacute; Br&auml;kling <webmaster@braekling.de>, 2011.
5
- #
6
  msgid ""
7
  msgstr ""
8
- "Project-Id-Version: WP-Piwik 0.8.4\n"
9
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-piwik\n"
10
- "POT-Creation-Date: 2010-07-19 18:06+0000\n"
11
- "PO-Revision-Date: 2011-11-16 11:13+0330\n"
12
- "Last-Translator: hossein <hossein@email.com>\n"
13
- "Language-Team: Persian <LL@li.org>\n"
14
  "MIME-Version: 1.0\n"
15
- "Content-Type: text/plain; charset=utf-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
- "X-Poedit-Language: Persian\n"
18
- "X-Poedit-Country: IRAN, ISLAMIC REPUBLIC OF\n"
19
- "X-Poedit-SourceCharset: utf-8\n"
20
 
21
- #: dashboard/browsers.php:12
22
- #: dashboard/browsers.php:33
23
- msgid "Browser"
24
- msgstr "مرورگر"
25
-
26
- #: dashboard/browsers.php:22
27
- #: dashboard/pages.php:43
28
- #: dashboard/screens.php:22
29
- #: dashboard/systems.php:22
30
- msgid "Others"
31
- msgstr "غیره"
32
-
33
- #: dashboard/browsers.php:34
34
- #: dashboard/keywords.php:17
35
- #: dashboard/pages.php:22
36
- #: dashboard/screens.php:33
37
- #: dashboard/systems.php:35
38
- #: dashboard/visitors.php:53
39
- #: dashboard/websites.php:19
40
- #: wp-piwik.php:305
41
- msgid "Unique"
42
- msgstr "یکتا"
43
-
44
- #: dashboard/browsers.php:35
45
- #: dashboard/plugins.php:33
46
- #: dashboard/screens.php:34
47
- #: dashboard/systems.php:36
48
- msgid "Percent"
49
- msgstr "درصد"
50
-
51
- #: dashboard/keywords.php:12
52
- msgid "Keywords"
53
- msgstr "کلمات کلیدی"
54
-
55
- #: dashboard/keywords.php:17
56
- msgid "Keyword"
57
- msgstr "کلمه کلیدی"
58
-
59
- #: dashboard/overview.php:12
60
- msgid "Overview"
61
- msgstr "نمای کلی"
62
-
63
- #: dashboard/overview.php:42
64
- #: dashboard/visitors.php:24
65
- msgid "Visitors"
66
- msgstr "بازدید کنندگان"
67
 
68
- #: dashboard/overview.php:43
69
- msgid "Unique visitors"
70
- msgstr "بازدیدکنندگان یکتا"
71
-
72
- #: dashboard/overview.php:44
73
- msgid "Page views"
74
- msgstr "نمایش صفحه"
75
-
76
- #: dashboard/overview.php:45
77
- msgid "Max. page views in one visit"
78
- msgstr "حداکثر تعداد نمایش صفحه در یک بازدید"
79
-
80
- #: dashboard/overview.php:46
81
- msgid "Total time spent"
82
- msgstr "زمان سپری شده"
83
-
84
- msgid "Time/visit"
85
- msgstr "زمان/بازدید"
86
-
87
- #: dashboard/overview.php:47
88
- msgid "Bounce count"
89
- msgstr "تعداد بازگشت"
90
 
91
- #: dashboard/overview.php:49
92
- #: wp-piwik.php:563
93
- msgid "Shortcut"
94
- msgstr "میان‌بر"
95
-
96
- #: dashboard/pages.php:13
97
- msgid "Pages"
98
- msgstr "صفحه"
99
-
100
- #: dashboard/pages.php:21
101
- msgid "Page"
102
- msgstr "صفحه"
103
-
104
- #: dashboard/pages.php:23
105
- #: dashboard/plugins.php:32
106
- #: dashboard/visitors.php:52
107
- msgid "Visits"
108
- msgstr "بازدید"
109
-
110
- #: dashboard/plugins.php:12
111
- #: dashboard/plugins.php:31
112
- msgid "Plugins"
113
- msgstr "افزونه"
114
-
115
- #: dashboard/screens.php:12
116
- #: dashboard/screens.php:32
117
- msgid "Resolution"
118
- msgstr "وضوح"
119
-
120
- #: dashboard/systems.php:12
121
- #: dashboard/systems.php:34
122
- msgid "Operating System"
123
- msgstr "سیستم عامل"
124
-
125
- #: dashboard/visitors.php:51
126
- msgid "Date"
127
- msgstr "تاریخ"
128
-
129
- #: dashboard/visitors.php:54
130
- msgid "Bounced"
131
- msgstr "بازگشت"
132
-
133
- #: dashboard/visitors.php:67
134
- msgid "Unique TOTAL"
135
- msgstr "مجموع یکتا"
136
-
137
- #: dashboard/visitors.php:67
138
- msgid "Sum"
139
- msgstr "مجموع"
140
-
141
- #: dashboard/visitors.php:67
142
- msgid "Avg"
143
- msgstr "میانگین"
144
-
145
- #: dashboard/websites.php:12
146
- msgid "Websites"
147
- msgstr "سایت"
148
-
149
- #: dashboard/websites.php:18
150
- msgid "Website"
151
- msgstr "سایت"
152
-
153
- #: wp-piwik.php:110
154
- #: wp-piwik.php:365
155
- msgid "Piwik Statistics"
156
- msgstr "آمارگیر"
157
-
158
- #. #-#-#-#-# plugin.pot (WP-Piwik 0.8.0) #-#-#-#-#
159
- #. Plugin Name of the plugin/theme
160
- #: wp-piwik.php:111
161
- #: wp-piwik.php:122
162
- #: wp-piwik.php:123
163
- #: wp-piwik.php:146
164
- msgid "WP-Piwik"
165
- msgstr "آمار"
166
-
167
- #: wp-piwik.php:130
168
- #: wp-piwik.php:131
169
- msgid "WPMU-Piwik"
170
- msgstr "آمارگیر چندکاربره"
171
-
172
- #: wp-piwik.php:142
173
- #: wp-piwik.php:557
174
- msgid "yesterday"
175
- msgstr "دیروز"
176
-
177
- #: wp-piwik.php:143
178
- #: wp-piwik.php:558
179
- msgid "today"
180
- msgstr "امروز"
181
-
182
- #: wp-piwik.php:144
183
- #: wp-piwik.php:559
184
- msgid "last 30 days"
185
- msgstr "30 روز اخیر"
186
-
187
- #: wp-piwik.php:179
188
- msgid "Settings"
189
- msgstr "تنظیمات"
190
 
191
- #: wp-piwik.php:381
192
- msgid "Change"
193
- msgstr "تغییر"
194
 
195
- #: wp-piwik.php:382
196
- msgid "Currently shown stats:"
197
- msgstr "آمار نمایش جاری:"
198
-
199
- #: wp-piwik.php:383
200
- msgid "Current shown stats: <strong>Overall</strong>"
201
- msgstr "آمار نمایش جاری: <strong>مجموع</strong>"
202
-
203
- #: wp-piwik.php:448
204
- msgid "WP-Piwik Settings"
205
- msgstr "تنظیمات آمار"
206
 
207
- #: wp-piwik.php:455
208
- #: wp-piwik.php:617
209
- msgid "Account settings"
210
- msgstr "تنظیمات حساب"
211
 
212
- #: wp-piwik.php:457
213
- #: wp-piwik.php:619
214
  msgid "Piwik URL"
215
  msgstr "آدرس پیویک"
216
 
217
- #: wp-piwik.php:461
218
- #: wp-piwik.php:623
219
  msgid "Auth token"
220
  msgstr "نشانه اعتبارسنجی"
221
 
222
- #: wp-piwik.php:467
223
- #: wp-piwik.php:628
224
- msgid "To enable Piwik statistics, please enter your Piwik base URL (like http://mydomain.com/piwik) and your personal authentification token. You can get the token on the API page inside your Piwik interface. It looks like &quot;1234a5cd6789e0a12345b678cd9012ef&quot;."
225
- msgstr "برای فعال کردن آمار پیویک، لطفاً آدرس نصب پایه پیویک (مانند http://mydomain.com/piwik) و نشانه اعتبارسنجی خود را وارد کنید. شما می‌توانید در بخش API رابط کاربری پیویک، آن را به دست بیاورید. این نشانه چیزی مانند این است:&quot;1234a5cd6789e0a12345b678cd9012ef&quot;."
226
-
227
- #: wp-piwik.php:477
228
- msgid "<strong>Important note:</strong> If you do not host this blog on your own, your site admin is able to get your auth token from the database. So he is able to access your statistics. You should never use an auth token with more than simple view access!"
229
- msgstr "<strong>نکته مهم:</strong> اگر شما وبلاگ را خود میزبانی نکنید، مدیر سایت شما نیز می‌تواند با دسترسی به پایگاه داده نشانه اعتبارسنجی شما را به دست آورد. بنابراین شما نباید هرگز از نشانه اعتبارسنجی با دسترسی بالاتر از نمایش ساده استفاده کنید."
230
-
231
- #: wp-piwik.php:485
232
- #: wp-piwik.php:489
233
- msgid "An error occured"
234
- msgstr "خطائی رخ داده است"
235
-
236
- #: wp-piwik.php:486
237
- msgid "Please check URL and auth token. You need at least view access to one site."
238
- msgstr "لطفاً آدرس نصب پیویک و نشانه اعتبارسنجی را بررسی کنید. شما باید حداقل دسترسی نمایش به یک سایت داشته باشید."
239
-
240
- #: wp-piwik.php:492
241
- msgid "Choose site"
242
- msgstr "انتخاب سایت"
243
-
244
- #: wp-piwik.php:511
245
- #: wp-piwik.php:547
246
- #: wp-piwik.php:584
247
- #: wp-piwik.php:658
248
- msgid "Save settings"
249
- msgstr "ذخیره تنظیمات"
250
-
251
- #: wp-piwik.php:515
252
- #: wp-piwik.php:643
253
- msgid "Tracking settings"
254
- msgstr "تنظیمات ره‌گیری"
255
-
256
- #: wp-piwik.php:521
257
- msgid "Add script"
258
- msgstr "افزودن اسکریپت"
259
-
260
- #: wp-piwik.php:525
261
- msgid "If your template uses wp_footer(), WP-Piwik can automatically add the Piwik javascript code to your blog."
262
- msgstr "اگر از قالبی استفاده می‌کنید که از wp_footer() بهره می‌گیرد، آن‌گاه افزونه می‌تواند به طور خودکار کد جاوااسکریپت را به وبلاگ شما اضافه کند."
263
 
264
- #: wp-piwik.php:528
265
- msgid "Track 404"
266
- msgstr "ره‌گیری 404 (صفحه یافت نشد)"
267
 
268
- #: wp-piwik.php:532
269
- msgid "If you add the Piwik javascript code by wp_footer(), WP-Piwik can automatically add a 404-category to track 404-page-visits."
270
- msgstr "اگر جاواسکریپت پیویک را با wp_footer() استفاده می‌کنید، آن‌گاه افزونه می‌تواند به طور خودکار دسته 404 را به برای رهگیری بازدیدهای صفحات ناموجود اضافه کند."
271
 
272
- #: wp-piwik.php:536
273
- #: wp-piwik.php:644
274
- msgid "Tracking filter"
275
- msgstr "پالایه ره‌گیری"
276
 
277
- msgid "Choose users by user role you do <strong>not</strong> want to track."
278
- msgstr "کاربرانی را که <strong>نمی‌خواهید</strong> ره‌گیری شوند با توجه به وظیفه انتخاب کنید."
 
279
 
280
- msgid "Choose users by user role you do <strong>not</strong> want to track. Requires enabled &quot;Add script&quot;-functionality."
281
- msgstr "کاربرانی را که <strong>نمی‌خواهید</strong> ره‌گیری شوند با توجه به وظیفه انتخاب کنید: باید قابلیت &quot;افزودن اسکریپت&quot; فعال باشد."
 
282
 
283
- #: wp-piwik.php:551
284
- msgid "Statistic view settings"
285
- msgstr "تنظیمات نمایش آمار"
286
 
287
- #: wp-piwik.php:554
288
- msgid "Dashboard"
289
- msgstr "پیشخوان"
290
 
291
- #: wp-piwik.php:556
292
- msgid "No"
293
- msgstr "خیر"
 
294
 
295
- #: wp-piwik.php:557
296
- #: wp-piwik.php:558
297
- #: wp-piwik.php:559
298
- msgid "Yes"
299
- msgstr "بله"
 
 
300
 
301
- #: wp-piwik.php:562
302
- msgid "Display a dashboard widget to your WordPress dashboard."
303
- msgstr "نمایش یک ویدجت در پیشخوان وردپرس شما."
 
 
 
 
304
 
305
- #: wp-piwik.php:567
306
- msgid "Display a shortcut to Piwik itself."
307
- msgstr "نمایش یک میان‌بر به پیویک اصلی."
 
 
 
308
 
309
- #: wp-piwik.php:568
310
- msgid "Display to"
311
- msgstr "نمایش در"
 
 
312
 
313
- #: wp-piwik.php:579
314
- msgid "Choose user roles allowed to see the statistics page."
315
- msgstr "انتخاب کاربرانی که مجازند صفحه آمار ر اببینند."
316
 
317
- #: wp-piwik.php:612
318
- msgid "WPMU-Piwik Settings"
319
- msgstr "تنظیمات پیویک چندکاربره"
 
320
 
321
- #: wp-piwik.php:636
322
- msgid "<strong>Important note:</strong> You have to choose a token which provides administration access. WPMU-Piwik will create new Piwik sites for each blog if it is shown the first time and it is not added yet. All users can access their own statistics only, while site admins can access all statistics. To avoid conflicts, you should use a clean Piwik installation without other sites added. The provided themes should use wp_footer, because it adds the Piwik javascript code to each page."
323
- msgstr " <strong>نکته مهم:</strong> شما باید نشانه‌ای با دسترسی مدیریتی انتخاب کنید. پیویک چندکاربره برای هر وبلاگ، اگر اولی نمایش باشد یا اضافه نشده باشد، یک سایت جدید ایجاد می‌کند. کاربران تنها می‌توانند به آمار خود دسترسی داشته باشند، اما مدیر سایت می‌تواند به همه آمار دسترسی داشته باشد. برای جلوگیری از تعارض، باید یک پیویک نصب شده تمیز بدون هیچ سایت افزوده شده استفاده شود. قالب استفاده شده باید از wp_footer بهره بگیرد، چون پیویک کد جاوااسکریپت را به هر صفحه اضافه می‌کند."
 
324
 
325
- #: wp-piwik.php:671
326
- msgid "If you like WP-Piwik, you can support its development by a donation:"
327
- msgstr "اگر افزونه پیویک برای وردپرس را دوست دارید، با کمک مالی از آن حمایت کنید:"
 
 
328
 
329
- #: wp-piwik.php:687
330
- msgid "My Amazon.de wishlist (German)"
331
- msgstr "مورد علاقه‌های من در آمازون (آلمانی)"
332
 
333
- #. Plugin URI of the plugin/theme
334
- msgid "http://www.braekling.de/wp-piwik-wpmu-piwik-wordpress/"
335
- msgstr "http://www.braekling.de/wp-piwik-wpmu-piwik-wordpress/"
336
 
337
- #. Description of the plugin/theme
338
- msgid "Adds Piwik stats to your dashboard menu and Piwik code to your wordpress footer."
339
- msgstr "آمار پیویک را به منوی پیشخوان و کد پیویک به پانویس وردپرس اضافه می‌کند."
340
 
341
- #. Author of the plugin/theme
342
- msgid "Andr&eacute; Br&auml;kling"
343
- msgstr "آندرکوت بروملینگ"
344
 
345
- #. Author URI of the plugin/theme
346
- msgid "http://www.braekling.de"
347
- msgstr "http://www.braekling.de"
348
 
349
- msgid "Credits"
350
- msgstr "سازندگان"
 
351
 
352
- msgid "Thank you very much for your donation"
353
- msgstr "از شما به خاطر هدایایتان تشکر می‌کنم"
 
354
 
355
- msgid "and all people flattering this"
356
- msgstr "و تمام افرادی که تشکر کردند"
 
357
 
358
- msgid "Graphs powered by <a href=\"http://www.jqplot.com/\">jqPlot</a>, an open source project by Chris Leonello. Give it a try! (License: GPL 2.0 and MIT)"
359
- msgstr "نمودارها توسط <a href=\"http://www.jqplot.com/\">jqPlot</a> ایجاد شده‌اند, که یک پروژه کدباز است که توسط کریس لئونلو ایجاد شده است. امتحانش کنید (اجازه‌نامه: GPL 2.0 und MIT)"
 
360
 
361
- msgid "Thank you very much"
362
- msgstr "از شما بسیار متشکریم"
 
363
 
364
- msgid ", and"
365
- msgstr و"
 
 
366
 
367
- msgid "for your translation work"
368
- msgstr "برای فعالیت شما در ترجمه"
 
369
 
370
- 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."
371
- msgstr "از شما بسیار متشکریم، تمام کاربرانی که به من ایمیل زدند، تشکر کردند، و درخواست ویژگی یا گزارش باگ انجام دادند. ش ما کمک کردید که پیویک وردپرس بسیار بهتر شود."
 
372
 
373
- msgid "Thank <strong>you</strong> for using my plugin. It is the best commendation if my piece of code is really used!"
374
- msgstr "از <strong>شما</strong> به خاطر استفاده از این افزونه متشکریم. بهترین تقدیر این است که کدی که من نوشتم واقعاً استفاده شود."
 
375
 
376
- msgid "Changes saved"
377
- msgstr "تغییرات ذخیره شد"
 
378
 
379
- msgid "installed"
380
- msgstr "نصب شده"
 
381
 
 
382
  msgid "Next you should connect to Piwik"
383
  msgstr "سپس باید به پیویک متصل شوید"
384
 
 
385
  msgid "Please validate your configuration"
386
  msgstr "لطفاً صحت تنظیمات خود را بررسی کنید"
387
 
388
- msgid "Default date"
389
- msgstr "تاریخ پیش‌گزیده"
390
-
391
- msgid "Default date shown on statistics page."
392
- msgstr "داده‌های پیش‌گزیده نمایش داده شده در صفحه آمار"
393
-
394
- msgid "Dashboard data"
395
- msgstr "داده پیشخوان"
396
-
397
- msgid "Display an overview widget to your WordPress dashboard."
398
- msgstr "نمایش آمار کلی در پیشخوان وردپرس شما."
399
 
400
- msgid "Boad chart"
401
- msgstr "صفحه آمار"
 
402
 
403
- msgid "Display a visitor graph widget to your WordPress dashboard."
404
- msgstr "نمایش نمودار بازدید کنندگان در پیشخوان وردپرس شما."
 
405
 
406
- msgid "No data available."
407
- msgstr "داده‌ای در دسترس نیست"
 
408
 
 
 
 
1
+ # Copyright (C) 2015 WP-Piwik
 
2
  # This file is distributed under the same license as the WP-Piwik package.
3
+ # Translators:
4
+ # WebNashr <info@webnashr.com>, 2015
5
  msgid ""
6
  msgstr ""
7
+ "Project-Id-Version: WP-Piwik\n"
8
+ "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/wp-piwik\n"
9
+ "POT-Creation-Date: 2015-05-20 21:59:25+00:00\n"
10
+ "PO-Revision-Date: 2015-05-24 09:26+0000\n"
11
+ "Language-Team: Persian (Iran) (http://www.transifex.com/projects/p/wp-piwik/language/fa_IR/)\n"
 
12
  "MIME-Version: 1.0\n"
13
+ "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
+ "Language: fa_IR\n"
16
+ "Plural-Forms: nplurals=1; plural=0;\n"
 
17
 
18
+ #: classes/WP_Piwik/Admin/Settings.php:46
19
+ msgid "Thanks for using WP-Piwik!"
20
+ msgstr "بابت استفاده از WP-Piwik از شما ممنونیم!"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
 
22
+ #: classes/WP_Piwik/Admin/Settings.php:51
23
+ msgid "WP-Piwik %s is successfully connected to Piwik %s."
24
+ msgstr "WP-Piwik %s با موفقیت به Piwik %s متصل شد."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
 
26
+ #: classes/WP_Piwik/Admin/Settings.php:51
27
+ msgid "You are running WordPress %s."
28
+ msgstr "شما از وردپرس %s استفاده می کنید."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
29
 
30
+ #: classes/WP_Piwik/Admin/Settings.php:78 classes/WP_Piwik.php:914
31
+ msgid "Support"
32
+ msgstr "پشتیبانی"
33
 
34
+ #: classes/WP_Piwik/Admin/Settings.php:82
35
+ msgid "Credits"
36
+ msgstr "دست‌اندرکاران"
 
 
 
 
 
 
 
 
37
 
38
+ #: classes/WP_Piwik/Admin/Settings.php:98
39
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
40
+ msgid "More information"
41
+ msgstr "اطلاعات بیشتر"
42
 
43
+ #: classes/WP_Piwik/Admin/Settings.php:108
 
44
  msgid "Piwik URL"
45
  msgstr "آدرس پیویک"
46
 
47
+ #: classes/WP_Piwik/Admin/Settings.php:111
 
48
  msgid "Auth token"
49
  msgstr "نشانه اعتبارسنجی"
50
 
51
+ #: classes/WP_Piwik/Admin/Settings.php:447
52
+ msgid "If you like WP-Piwik, you can support its development by a donation:"
53
+ msgstr "اگر افزونه پیویک برای وردپرس را دوست دارید، با کمک مالی از آن حمایت کنید:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
54
 
55
+ #: classes/WP_Piwik/Admin/Settings.php:548
56
+ msgid "enabled"
57
+ msgstr "فعال"
58
 
59
+ #: classes/WP_Piwik/Admin/Statistics.php:12
60
+ msgid "Statistics"
61
+ msgstr "آمار"
62
 
63
+ #: classes/WP_Piwik/Admin/Statistics.php:20
64
+ msgid "Currently shown stats:"
65
+ msgstr "آمار در حال نمایش:"
 
66
 
67
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:10
68
+ msgid "Piwik Custom Variables"
69
+ msgstr "متغیر های سفارشی Piwik"
70
 
71
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
72
+ msgid "Name"
73
+ msgstr "نام"
74
 
75
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
76
+ msgid "Value"
77
+ msgstr "مقدار"
78
 
79
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:16
80
+ msgid "Browser Details"
81
+ msgstr "جزئیات مرورگرها"
82
 
83
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:37
84
+ #: classes/WP_Piwik/Widget/Browsers.php:37
85
+ msgid "Browser"
86
+ msgstr "مرورگر"
87
 
88
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:37
89
+ #: classes/WP_Piwik/Widget/Browsers.php:37
90
+ #: classes/WP_Piwik/Widget/Screens.php:37
91
+ #: classes/WP_Piwik/Widget/Systems.php:35
92
+ #: classes/WP_Piwik/Widget/Visitors.php:57 classes/WP_Piwik/Widget.php:100
93
+ msgid "Unique"
94
+ msgstr "یکتا"
95
 
96
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:37
97
+ #: classes/WP_Piwik/Widget/Browsers.php:37
98
+ #: classes/WP_Piwik/Widget/Plugins.php:25
99
+ #: classes/WP_Piwik/Widget/Screens.php:37
100
+ #: classes/WP_Piwik/Widget/Systems.php:35
101
+ msgid "Percent"
102
+ msgstr "درصد"
103
 
104
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:53
105
+ #: classes/WP_Piwik/Widget/Browsers.php:53
106
+ #: classes/WP_Piwik/Widget/Screens.php:53
107
+ #: classes/WP_Piwik/Widget/Systems.php:51
108
+ msgid "Others"
109
+ msgstr "غیره"
110
 
111
+ #: classes/WP_Piwik/Widget/Chart.php:17
112
+ #: classes/WP_Piwik/Widget/Overview.php:40 classes/WP_Piwik/Widget/Post.php:37
113
+ #: classes/WP_Piwik/Widget/Visitors.php:17
114
+ msgid "Visitors"
115
+ msgstr "بازدیدکنندگان"
116
 
117
+ #: classes/WP_Piwik/Widget/Keywords.php:16
118
+ msgid "Keywords"
119
+ msgstr "کلیدواژه‌های"
120
 
121
+ #: classes/WP_Piwik/Widget/Noresult.php:25
122
+ #: classes/WP_Piwik/Widget/Search.php:25
123
+ msgid "Keyword"
124
+ msgstr "کلیدواژه"
125
 
126
+ #: classes/WP_Piwik/Widget/Noresult.php:25
127
+ #: classes/WP_Piwik/Widget/Search.php:25
128
+ msgid "Requests"
129
+ msgstr "تعداد"
130
 
131
+ #: classes/WP_Piwik/Widget/Noresult.php:25
132
+ #: classes/WP_Piwik/Widget/Search.php:25
133
+ #: classes/WP_Piwik/Widget/Visitors.php:57
134
+ msgid "Bounced"
135
+ msgstr "بازگشت"
136
 
137
+ #: classes/WP_Piwik/Widget/Overview.php:17 classes/WP_Piwik/Widget/Post.php:18
138
+ msgid "Overview"
139
+ msgstr "نمای کلی"
140
 
141
+ #: classes/WP_Piwik/Widget/Overview.php:41 classes/WP_Piwik/Widget/Post.php:38
142
+ msgid "Unique visitors"
143
+ msgstr "بازدیدکنندگان یکتا"
144
 
145
+ #: classes/WP_Piwik/Widget/Overview.php:42 classes/WP_Piwik/Widget/Post.php:39
146
+ msgid "Page views"
147
+ msgstr "نمایش‌های صفحه"
148
 
149
+ #: classes/WP_Piwik/Widget/Overview.php:43 classes/WP_Piwik/Widget/Post.php:40
150
+ msgid "Total time spent"
151
+ msgstr "کل زمان سپری شده"
152
 
153
+ #: classes/WP_Piwik/Widget/Overview.php:44 classes/WP_Piwik/Widget/Post.php:42
154
+ msgid "Bounce count"
155
+ msgstr "تعداد بازگشت"
156
 
157
+ #: classes/WP_Piwik/Widget/Overview.php:47 classes/WP_Piwik/Widget/Post.php:41
158
+ msgid "Time/visit"
159
+ msgstr "زمان/بازدید"
160
 
161
+ #: classes/WP_Piwik/Widget/Overview.php:47
162
+ msgid "Max. page views in one visit"
163
+ msgstr "حداکثر تعداد نمایش‌های صفحه در یک بازدید"
164
 
165
+ #: classes/WP_Piwik/Widget/Overview.php:48 classes/WP_Piwik/Widget/Post.php:46
166
+ msgid "Shortcut"
167
+ msgstr "میان‌بر"
168
 
169
+ #: classes/WP_Piwik/Widget/Pages.php:16
170
+ msgid "Pages"
171
+ msgstr "صفحه‌های"
172
 
173
+ #: classes/WP_Piwik/Widget/Plugins.php:16
174
+ msgid "Plugins"
175
+ msgstr "افزونه‌ها"
176
 
177
+ #: classes/WP_Piwik/Widget/Plugins.php:25
178
+ #: classes/WP_Piwik/Widget/Visitors.php:57 classes/WP_Piwik/Widget.php:102
179
+ msgid "Visits"
180
+ msgstr "بازدیدها"
181
 
182
+ #: classes/WP_Piwik/Widget/Screens.php:37
183
+ msgid "Resolution"
184
+ msgstr "وضوح تصویر"
185
 
186
+ #: classes/WP_Piwik/Widget/Seo.php:13
187
+ msgid "SEO"
188
+ msgstr "SEO"
189
 
190
+ #: classes/WP_Piwik/Widget/Visitors.php:57
191
+ msgid "Date"
192
+ msgstr "تاریخ"
193
 
194
+ #: classes/WP_Piwik/Widget/Visitors.php:57
195
+ msgid "Page Views"
196
+ msgstr "تعداد نمایش صفحه"
197
 
198
+ #: classes/WP_Piwik/Widget.php:162
199
+ msgid "No data available."
200
+ msgstr "داده‌ای در دسترس نیست"
201
 
202
+ #: classes/WP_Piwik.php:193
203
  msgid "Next you should connect to Piwik"
204
  msgstr "سپس باید به پیویک متصل شوید"
205
 
206
+ #: classes/WP_Piwik.php:223
207
  msgid "Please validate your configuration"
208
  msgstr "لطفاً صحت تنظیمات خود را بررسی کنید"
209
 
210
+ #: classes/WP_Piwik.php:255 classes/WP_Piwik.php:471
211
+ msgid "Settings"
212
+ msgstr "تنظیمات"
 
 
 
 
 
 
 
 
213
 
214
+ #: classes/WP_Piwik.php:258
215
+ msgid "Important"
216
+ msgstr "مهم"
217
 
218
+ #: classes/WP_Piwik.php:339 classes/WP_Piwik.php:361
219
+ msgid "Piwik Statistics"
220
+ msgstr "آمار"
221
 
222
+ #: classes/WP_Piwik.php:914
223
+ msgid "An error occured"
224
+ msgstr "خطائی رخ داده است"
225
 
226
+ #: classes/WP_Piwik.php:1179
227
+ msgid "Cheatin&#8217; uh?"
228
+ msgstr "کلک میزنی،‌ها؟"
languages/wp-piwik-fr_FR.mo CHANGED
Binary file
languages/wp-piwik-fr_FR.po CHANGED
@@ -1,967 +1,854 @@
1
- #
 
2
  # Translators:
3
  # Andre Braekling <webmaster@braekling.de>, 2009
4
  # Franck, 2015
5
  msgid ""
6
  msgstr ""
7
  "Project-Id-Version: WP-Piwik\n"
8
- "POT-Creation-Date: 2015-05-10 16:33+0100\n"
9
- "PO-Revision-Date: 2015-05-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
26
- msgid "%s %s installed."
27
- msgstr "%s %s installé."
28
-
29
- #: classes/WP_Piwik.php:185
30
- msgid "Next you should connect to Piwik"
31
- msgstr "Ensuite, vous devez vous connecter à Piwik"
32
-
33
- #: classes/WP_Piwik.php:215
34
- #, php-format
35
- msgid "%s updated to %s."
36
- msgstr "%s mis à jour vers %s."
37
-
38
- #: classes/WP_Piwik.php:215
39
- msgid "Please validate your configuration"
40
- msgstr "Merci de valider votre configuration"
41
-
42
- #: classes/WP_Piwik.php:247 classes/WP_Piwik.php:463
43
- msgid "Settings"
44
- msgstr "Paramètres"
45
-
46
- #: classes/WP_Piwik.php:250
47
- msgid "Important"
48
- msgstr "Important"
49
-
50
- #: classes/WP_Piwik.php:331 classes/WP_Piwik.php:353
51
- msgid "Piwik Statistics"
52
- msgstr "Statistiques Piwik"
53
-
54
- #: classes/WP_Piwik.php:901
55
- msgid "An error occured"
56
- msgstr "Une erreur s'est produite"
57
 
58
- #: classes/WP_Piwik.php:901 classes/WP_Piwik/Admin/Settings.php:62
59
- msgid "Support"
60
- msgstr "Support"
61
 
62
- #: classes/WP_Piwik.php:1150
63
- msgid "Cheatin&#8217; uh?"
64
- msgstr "Alors, on triche&nbsp;?"
65
-
66
- #: classes/WP_Piwik/Admin/Settings.php:19
67
  msgid "Changes saved."
68
  msgstr "Modifications enregistrées."
69
 
70
- #: classes/WP_Piwik/Admin/Settings.php:30
 
 
 
 
71
  msgid "Thanks for using WP-Piwik!"
72
  msgstr "Merci d'utiliser WP-Piwik&nbsp;!"
73
 
74
- #: classes/WP_Piwik/Admin/Settings.php:35
75
- #, php-format
76
  msgid "WP-Piwik %s is successfully connected to Piwik %s."
77
  msgstr "WP-Piwik %s est connecté avec succès à Piwik %s."
78
 
79
- #: classes/WP_Piwik/Admin/Settings.php:35
80
- #, php-format
81
  msgid "You are running WordPress %s."
82
  msgstr "Vous utilisez WordPress %s."
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
- "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"
113
  msgstr "Connecter à Piwik"
114
 
115
- #: classes/WP_Piwik/Admin/Settings.php:49
116
  msgid "Show Statistics"
117
  msgstr "Afficher les statistiques"
118
 
119
- #: classes/WP_Piwik/Admin/Settings.php:53
120
  msgid "Enable Tracking"
121
  msgstr "Activer le suivi"
122
 
123
- #: classes/WP_Piwik/Admin/Settings.php:58
124
  msgid "Expert Settings"
125
  msgstr "Réglages expert"
126
 
127
- #: classes/WP_Piwik/Admin/Settings.php:66
 
 
 
 
128
  msgid "Credits"
129
  msgstr "Crédits"
130
 
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"
146
  msgstr "auto-hébergé"
147
 
148
- #: classes/WP_Piwik/Admin/Settings.php:79
149
  msgid "or"
150
  msgstr "ou"
151
 
152
- #: classes/WP_Piwik/Admin/Settings.php:79
153
  msgid "Cloud-hosted"
154
  msgstr "hébergé dans un Cloud"
155
 
156
- #: classes/WP_Piwik/Admin/Settings.php:82
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
166
  msgid "More information"
167
  msgstr "Plus d'informations"
168
 
169
- #: classes/WP_Piwik/Admin/Settings.php:84
170
  msgid "You can choose between three connection methods:"
171
  msgstr "Vous pouvez choisir entre trois méthodes de connexion&nbsp;:"
172
 
173
- #: classes/WP_Piwik/Admin/Settings.php:84
174
- #: classes/WP_Piwik/Admin/Settings.php:87
175
  msgid "Self-hosted (HTTP API, default)"
176
  msgstr "Auto-hébergé (API HTTP par défaut)"
177
 
178
- #: classes/WP_Piwik/Admin/Settings.php:84
179
  msgid ""
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
189
  msgid "Self-hosted (PHP API)"
190
  msgstr "Auto-hébergé (API PHP)"
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
203
  msgid "Cloud-hosted (Piwik Pro)"
204
  msgstr "Hébergé dans un Cloud (Piwik Pro)"
205
 
206
- #: classes/WP_Piwik/Admin/Settings.php:84
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"
216
  msgstr "Mode Piwik"
217
 
218
- #: classes/WP_Piwik/Admin/Settings.php:86
219
  msgid "Disabled (WP-Piwik will not connect to Piwik)"
220
  msgstr "Désactivé (WP-Piwik ne se connectera pas à Piwik)"
221
 
222
- #: classes/WP_Piwik/Admin/Settings.php:92
223
  msgid "Piwik URL"
224
  msgstr "Piwik URL"
225
 
226
- #: classes/WP_Piwik/Admin/Settings.php:92
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"
236
  msgstr "Chemin Piwik"
237
 
238
- #: classes/WP_Piwik/Admin/Settings.php:93
239
  msgid "Enter the file path to your Piwik instance, e.g. /var/www/piwik/."
240
  msgstr "Entrez le chemin de votre instance Piwik, par exemple /var/www/piwik/."
241
 
242
- #: classes/WP_Piwik/Admin/Settings.php:94
243
  msgid "Piwik user"
244
  msgstr "Utilisateur Piwik"
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"
256
  msgstr "Clef partagée (token_auth)"
257
 
258
- #: classes/WP_Piwik/Admin/Settings.php:95
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
268
  msgid "See %sWP-Piwik FAQ%s."
269
  msgstr "Voir la %sFAQ WP-Piwik%s."
270
 
271
- #: classes/WP_Piwik/Admin/Settings.php:100
272
  msgid "Auto config"
273
  msgstr "Auto config"
274
 
275
- #: classes/WP_Piwik/Admin/Settings.php:100
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."
286
- msgstr "Enregistrer les réglages pour démarrer l'estimation."
287
 
288
- #: classes/WP_Piwik/Admin/Settings.php:109
289
  msgid "Determined site"
290
  msgstr "Site déterminé"
291
 
292
- #: classes/WP_Piwik/Admin/Settings.php:114
293
  msgid "Select site"
294
  msgstr "Sélectionner le site"
295
 
296
- #: classes/WP_Piwik/Admin/Settings.php:122
297
  msgid "Piwik default date"
298
  msgstr "Date par défaut Piwik"
299
 
300
- #: classes/WP_Piwik/Admin/Settings.php:123
301
- #: classes/WP_Piwik/Admin/Settings.php:136
302
  msgid "Today"
303
  msgstr "Aujourd'hui"
304
 
305
- #: classes/WP_Piwik/Admin/Settings.php:124
306
- #: classes/WP_Piwik/Admin/Settings.php:135
307
  msgid "Yesterday"
308
  msgstr "Hier"
309
 
310
- #: classes/WP_Piwik/Admin/Settings.php:125
311
  msgid "Current month"
312
  msgstr "Mois en cours"
313
 
314
- #: classes/WP_Piwik/Admin/Settings.php:126
315
  msgid "Last month"
316
  msgstr "Mois précédent"
317
 
318
- #: classes/WP_Piwik/Admin/Settings.php:127
319
  msgid "Current week"
320
  msgstr "Semaine en cours"
321
 
322
- #: classes/WP_Piwik/Admin/Settings.php:128
323
  msgid "Last week"
324
  msgstr "Semaine précédente"
325
 
326
- #: classes/WP_Piwik/Admin/Settings.php:129
327
  msgid "Default date shown on statistics page."
328
  msgstr "Date affichée par défaut sur la page de statistiques."
329
 
330
- #: classes/WP_Piwik/Admin/Settings.php:131
331
  msgid "Show SEO data"
332
  msgstr "Afficher les données SEO"
333
 
334
- #: classes/WP_Piwik/Admin/Settings.php:131
335
  msgid "Display SEO ranking data on statistics page."
336
  msgstr "Afficher les données de classement SEO sur la page de statistiques."
337
 
338
- #: classes/WP_Piwik/Admin/Settings.php:131
339
- #: classes/WP_Piwik/Admin/Settings.php:142
340
  msgid "Slow!"
341
  msgstr "Doucement&nbsp;!"
342
 
343
- #: classes/WP_Piwik/Admin/Settings.php:133
344
  msgid "Dashboard overview"
345
  msgstr "Tableau de bord vue d'ensemble"
346
 
347
- #: classes/WP_Piwik/Admin/Settings.php:134
348
- #: classes/WP_Piwik/Admin/Settings.php:172
349
- #: classes/WP_Piwik/Admin/Settings.php:174
350
- #: classes/WP_Piwik/Admin/Settings.php:195
351
  msgid "Disabled"
352
  msgstr "Désactivé"
353
 
354
- #: classes/WP_Piwik/Admin/Settings.php:137
355
  msgid "Last 30 days"
356
  msgstr "30 derniers jours"
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"
365
  msgstr "Tableau de bord graphique"
366
 
367
- #: classes/WP_Piwik/Admin/Settings.php:140
368
  msgid "Enable WP-Piwik dashboard widget &quot;Graph&quot;."
369
  msgstr "Activer le widget du tableau de bord WP-Piwik &quot;Graphique&quot;."
370
 
371
- #: classes/WP_Piwik/Admin/Settings.php:142
372
  msgid "Dashboard SEO"
373
  msgstr "Tableau de bord SEO"
374
 
375
- #: classes/WP_Piwik/Admin/Settings.php:142
376
  msgid "Enable WP-Piwik dashboard widget &quot;SEO&quot;."
377
  msgstr "Activer le widget du tableau de bord WP-Piwik &quot;SEO&quot;."
378
 
379
- #: classes/WP_Piwik/Admin/Settings.php:144
380
  msgid "Show graph on WordPress Toolbar"
381
  msgstr "Afficher le graphique dans la barre d'outils WordPress"
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"
391
  msgstr "Afficher les stats pour le(s)"
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"
400
  msgstr "Afficher les stats par article"
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"
410
  msgstr "Raccourci Piwik"
411
 
412
- #: classes/WP_Piwik/Admin/Settings.php:157
413
  msgid "Display a shortcut to Piwik itself."
414
  msgstr "Affiche un raccourci vers Piwik lui-même."
415
 
416
- #: classes/WP_Piwik/Admin/Settings.php:159
417
  msgid "WP-Piwik display name"
418
  msgstr "Nom d'affichage WP-Piwik"
419
 
420
- #: classes/WP_Piwik/Admin/Settings.php:159
421
  msgid "Plugin name shown in WordPress."
422
  msgstr "Nom d'extension affichée dans WordPress."
423
 
424
- #: classes/WP_Piwik/Admin/Settings.php:161
425
  msgid "Enable shortcodes"
426
  msgstr "Activer les codes courts"
427
 
428
- #: classes/WP_Piwik/Admin/Settings.php:161
429
  msgid "Enable shortcodes in post or page content."
430
  msgstr "Active les codes courts dans le contenu des articles ou des pages"
431
 
432
- #: classes/WP_Piwik/Admin/Settings.php:172
433
  msgid "You can choose between four tracking code modes:"
434
  msgstr "Vous pouvez choisir entre quatre modes de code de suivi&nbsp;:"
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 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
448
  msgid "Default tracking"
449
  msgstr "Suivi par défaut"
450
 
451
- #: classes/WP_Piwik/Admin/Settings.php:172
452
  msgid "WP-Piwik will use Piwik's standard tracking code."
453
  msgstr "WP-Piwik utilisera le code de suivi standard de 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 "Utiliser 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
- "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
470
  msgid "See %sreadme file%s."
471
  msgstr "Voir le %sfichier lisez-moi%s"
472
 
473
- #: classes/WP_Piwik/Admin/Settings.php:172
474
- #: classes/WP_Piwik/Admin/Settings.php:177
475
  msgid "Use proxy script"
476
  msgstr "Utiliser une code proxy"
477
 
478
- #: classes/WP_Piwik/Admin/Settings.php:172
479
  msgid "Use this tracking code to not reveal the Piwik server URL."
480
  msgstr "Utilisez ce code de suivi pour ne pas révéler l'URL du serveur Piwik."
481
 
482
- #: classes/WP_Piwik/Admin/Settings.php:172
483
- #: classes/WP_Piwik/Admin/Settings.php:192
484
- #: classes/WP_Piwik/Admin/Settings.php:202
485
- #, php-format
486
  msgid "See %sPiwik FAQ%s."
487
  msgstr "Voir la %sFAQ Piwik%s."
488
 
489
- #: classes/WP_Piwik/Admin/Settings.php:172
490
- #: classes/WP_Piwik/Admin/Settings.php:178
491
  msgid "Enter manually"
492
  msgstr "Entrer manuellement"
493
 
494
- #: classes/WP_Piwik/Admin/Settings.php:172
495
  msgid ""
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"
511
  msgstr "Ajouter le code de suivi"
512
 
513
- #: classes/WP_Piwik/Admin/Settings.php:181
514
  msgid "Tracking code"
515
  msgstr "Code de suivi"
516
 
517
- #: classes/WP_Piwik/Admin/Settings.php:183
518
  msgid "JavaScript code position"
519
  msgstr "Emplacement du code JavaScript"
520
 
521
- #: classes/WP_Piwik/Admin/Settings.php:184
522
  msgid "Footer"
523
  msgstr "Pied de page"
524
 
525
- #: classes/WP_Piwik/Admin/Settings.php:185
526
  msgid "Header"
527
  msgstr "En-tête"
528
 
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"
538
  msgstr "Code noscript"
539
 
540
- #: classes/WP_Piwik/Admin/Settings.php:190
541
  msgid "Add &lt;noscript&gt;"
542
  msgstr "Ajouter &lt;noscript&gt;"
543
 
544
- #: classes/WP_Piwik/Admin/Settings.php:190
545
  msgid "Adds the &lt;noscript&gt; code to your footer."
546
  msgstr "Ajoute le code &lt;noscript&gt; à votre pied de page."
547
 
548
- #: classes/WP_Piwik/Admin/Settings.php:190
549
- #: classes/WP_Piwik/Admin/Settings.php:192
550
  msgid "Disabled in proxy mode."
551
  msgstr "Désactivé en mode proxy."
552
 
553
- #: classes/WP_Piwik/Admin/Settings.php:192
554
  msgid "Add rec parameter to noscript code"
555
  msgstr "Ajouter le paramètre rec au code noscript"
556
 
557
- #: classes/WP_Piwik/Admin/Settings.php:192
558
  msgid "Enable tracking for visitors without JavaScript (not recommended)."
559
  msgstr "Activer le suivi des visiteurs sans JavaScript (non recommandé)."
560
 
561
- #: classes/WP_Piwik/Admin/Settings.php:194
562
  msgid "Enable content tracking"
563
  msgstr "Activer le suivi de contenu"
564
 
565
- #: classes/WP_Piwik/Admin/Settings.php:196
566
  msgid "Track all content blocks"
567
  msgstr "Suivre tous les blocs de contenu"
568
 
569
- #: classes/WP_Piwik/Admin/Settings.php:197
570
  msgid "Track only visible content blocks"
571
  msgstr "Suivre uniquement les blocs de contenu visibles"
572
 
573
- #: classes/WP_Piwik/Admin/Settings.php:198
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
583
- #: classes/WP_Piwik/Admin/Settings.php:204
584
- #: classes/WP_Piwik/Admin/Settings.php:206
585
- #: classes/WP_Piwik/Admin/Settings.php:208
586
- #: classes/WP_Piwik/Admin/Settings.php:229
587
- #: classes/WP_Piwik/Admin/Settings.php:231
588
- #: classes/WP_Piwik/Admin/Settings.php:235
589
- #, php-format
590
  msgid "See %sPiwik documentation%s."
591
  msgstr "Voir la %sdocumentation Piwik%s."
592
 
593
- #: classes/WP_Piwik/Admin/Settings.php:200
594
  msgid "Track search"
595
  msgstr "Suivre la recherche"
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"
614
  msgstr "Ajouter une annotation sur un nouvel article"
615
 
616
- #: classes/WP_Piwik/Admin/Settings.php:204
617
  msgid "Add a Piwik annotation on each new post."
618
  msgstr "Ajoute une annotation Piwik sur chaque nouvel article."
619
 
620
- #: classes/WP_Piwik/Admin/Settings.php:206
621
  msgid "Show custom variables box"
622
  msgstr "Afficher la boîte de variables personnalisées"
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"
632
  msgstr "Ajouter de nouveaux types de fichier pour le suivi de téléchargement"
633
 
634
- #: classes/WP_Piwik/Admin/Settings.php:208
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"
644
  msgstr "Désactiver les cookies"
645
 
646
- #: classes/WP_Piwik/Admin/Settings.php:210
647
  msgid "Disable all tracking cookies for a visitor."
648
  msgstr "Désactiver tous les cookies de suivi pour un visiteur"
649
 
650
- #: classes/WP_Piwik/Admin/Settings.php:212
651
  msgid "Limit cookie lifetime"
652
  msgstr "Limiter la durée de vie des 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)"
664
  msgstr "Expiration du délai d'attente visiteur (en secondes)"
665
 
666
- #: classes/WP_Piwik/Admin/Settings.php:216
667
  msgid "Session timeout (seconds)"
668
  msgstr "Expiration du délai d'attente session (en secondes)"
669
 
670
- #: classes/WP_Piwik/Admin/Settings.php:218
671
  msgid "Referral timeout (seconds)"
672
  msgstr "Expiration du délai d'attente référant"
673
 
674
- #: classes/WP_Piwik/Admin/Settings.php:220
675
  msgid "Track admin pages"
676
  msgstr "Suivre les pages d'admin"
677
 
678
- #: classes/WP_Piwik/Admin/Settings.php:220
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"
688
  msgstr "Filtre de suivi"
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"
698
  msgstr "Suivre les sous-domaines dans le même site web"
699
 
700
- #: classes/WP_Piwik/Admin/Settings.php:229
701
  msgid "Adds *.-prefix to cookie domain."
702
  msgstr "Ajoute *.-préfixe au cookie de domaine."
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."
710
  msgstr "Ajoute *.-préfixe au domaine suivi."
711
 
712
- #: classes/WP_Piwik/Admin/Settings.php:233
713
  msgid "Track RSS feeds"
714
  msgstr "Suivre les flux RSS"
715
 
716
- #: classes/WP_Piwik/Admin/Settings.php:233
717
  msgid "Enable to track posts in feeds via tracking pixel."
718
  msgstr "Activer le suivi des articles dans les flux via un pixel de suivi."
719
 
720
- #: classes/WP_Piwik/Admin/Settings.php:235
721
  msgid "Track RSS feed links as campaign"
722
  msgstr "Suivre les liens du flux RSS comme une campagne"
723
 
724
- #: classes/WP_Piwik/Admin/Settings.php:235
725
- msgid "This will add Piwik campaign parameters to the RSS feed links. "
726
- msgstr "Ceci ajoutera des paramètres de campagne Piwik aux liens du flux RSS."
727
-
728
- #: classes/WP_Piwik/Admin/Settings.php:237
729
  msgid "RSS feed campaign"
730
  msgstr "Campagne flux RSS"
731
 
732
- #: classes/WP_Piwik/Admin/Settings.php:237
733
  msgid "Keyword: post name."
734
  msgstr "Mot-clef&nbsp;: nom d'article."
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"
747
  msgstr "Activer le 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"
757
  msgstr "Désactiver la limite de temps"
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"
767
  msgstr "Expiration du délai d'attente de la connexion"
768
 
769
- #: classes/WP_Piwik/Admin/Settings.php:250
770
  msgid "Disable SSL peer verification"
771
  msgstr "Désactiver la vérification par les pairs SSL"
772
 
773
- #: classes/WP_Piwik/Admin/Settings.php:250
774
  msgid "not recommended"
775
  msgstr "non recommandé"
776
 
777
- #: classes/WP_Piwik/Admin/Settings.php:252
778
  msgid "User agent"
779
  msgstr "Agent utilisateur (User agent)"
780
 
781
- #: classes/WP_Piwik/Admin/Settings.php:253
782
  msgid "Use the PHP default user agent"
783
  msgstr "Utiliser l'agent utilisateur (user-agent) par défaut de PHP"
784
 
785
- #: classes/WP_Piwik/Admin/Settings.php:253
786
  msgid "empty"
787
  msgstr "vide"
788
 
789
- #: classes/WP_Piwik/Admin/Settings.php:254
790
  msgid "Define a specific user agent"
791
  msgstr "Définir un agent utilisateur (user-agent) spécifique"
792
 
793
- #: classes/WP_Piwik/Admin/Settings.php:256
794
  msgid "Specific user agent"
795
  msgstr "Agent utilisateur (user-agent) spécifique"
796
 
797
- #: classes/WP_Piwik/Admin/Settings.php:258
798
  msgid "Add data-cfasync=false"
799
  msgstr "Ajouter data-cfasync=false"
800
 
801
- #: classes/WP_Piwik/Admin/Settings.php:258
802
- #, php-format
803
- msgid "See %sCloudFlare Knowledge Base%s."
804
- msgstr "Voir la %sBase de connaissances CloudFlare%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
- "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"
816
  msgstr "URL CDN"
817
 
818
- #: classes/WP_Piwik/Admin/Settings.php:262
819
  msgid "CDN URL (SSL)"
820
  msgstr "URL CDN (SSL)"
821
 
822
- #: classes/WP_Piwik/Admin/Settings.php:264
823
  msgid "Force Piwik to use a specific protocol"
824
  msgstr "Forcer Piwik à utiliser un protocole spécifique"
825
 
826
- #: classes/WP_Piwik/Admin/Settings.php:265
827
  msgid "Disabled (default)"
828
  msgstr "Désactivé (par défaut)"
829
 
830
- #: classes/WP_Piwik/Admin/Settings.php:266
831
  msgid "http"
832
  msgstr "http"
833
 
834
- #: classes/WP_Piwik/Admin/Settings.php:267
835
  msgid "https (SSL)"
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
- "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"
848
  msgstr "Faire un don"
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"
858
  msgstr "Ma liste de souhaits 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 "Merci de ne pas oublier de voter la compatibilité avec"
864
 
865
- #: classes/WP_Piwik/Admin/Settings.php:501
866
  msgid "Thank you very much for your donation"
867
  msgstr "Merci beaucoup pour votre don"
868
 
869
- #: classes/WP_Piwik/Admin/Settings.php:501
870
  msgid "the Piwik team itself"
871
  msgstr "l'équipe Piwik elle-même"
872
 
873
- #: classes/WP_Piwik/Admin/Settings.php:501
874
  msgid ", and all people flattering this"
875
  msgstr ", et toutes les personnes flatteuses à ce sujet."
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
- "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"
889
  msgstr "Prise en charge Metabox inspirée par"
890
 
891
- #: classes/WP_Piwik/Admin/Settings.php:504
892
  msgid "Tabbed settings page suggested by the"
893
  msgstr "Page des réglages en onglets suggérée par le"
894
 
895
- #: classes/WP_Piwik/Admin/Settings.php:505
896
  msgid "Thank you very much"
897
  msgstr "Merci beaucoup"
898
 
899
- #: classes/WP_Piwik/Admin/Settings.php:505
900
  msgid "for your translation work"
901
  msgstr "pour votre travail de traduction"
902
 
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:"
923
  msgstr "Le meilleur endroit pour obtenir de l'aide&nbsp;:"
924
 
925
- #: classes/WP_Piwik/Admin/Settings.php:516
926
  msgid "WP-Piwik support forum"
927
  msgstr "Forum de support WP-Piwik"
928
 
929
- #: classes/WP_Piwik/Admin/Settings.php:519
930
  msgid "Debugging"
931
  msgstr "Débogage"
932
 
933
- #: classes/WP_Piwik/Admin/Settings.php:520
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"
942
  msgstr "cURL est"
943
 
944
- #: classes/WP_Piwik/Admin/Settings.php:524
945
- #: classes/WP_Piwik/Admin/Settings.php:529
946
  msgid "not"
947
  msgstr "non"
948
 
949
- #: classes/WP_Piwik/Admin/Settings.php:525
950
  msgid "available"
951
  msgstr "disponible"
952
 
953
- #: classes/WP_Piwik/Admin/Settings.php:528
954
  msgid "allow_url_fopen is"
955
  msgstr "allow_url_fopen est"
956
 
957
- #: classes/WP_Piwik/Admin/Settings.php:530
958
  msgid "enabled"
959
  msgstr "activé"
960
 
961
- #: classes/WP_Piwik/Admin/Settings.php:533
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
962
  msgid "Latest support threads on WordPress.org"
963
  msgstr "Les derniers messages de support sur WordPress.org"
964
 
 
 
 
 
 
 
 
 
965
  #: classes/WP_Piwik/Admin/Sitebrowser.php:17
966
  msgid "site"
967
  msgstr "site"
@@ -970,27 +857,27 @@ msgstr "site"
970
  msgid "sites"
971
  msgstr "sites"
972
 
973
- #: classes/WP_Piwik/Admin/Sitebrowser.php:22
974
  msgid "No site configured yet."
975
  msgstr "Pas de site configuré actuellement."
976
 
977
- #: classes/WP_Piwik/Admin/Sitebrowser.php:27
978
- msgid "ID"
979
- msgstr "Identifiant"
980
 
981
- #: classes/WP_Piwik/Admin/Sitebrowser.php:28
982
  msgid "Title"
983
  msgstr "Titre"
984
 
985
- #: classes/WP_Piwik/Admin/Sitebrowser.php:29
986
  msgid "URL"
987
  msgstr "URL"
988
 
989
- #: classes/WP_Piwik/Admin/Sitebrowser.php:30
990
  msgid "Site ID (Piwik)"
991
  msgstr "Identifiant du site (Piwik)"
992
 
993
- #: classes/WP_Piwik/Admin/Sitebrowser.php:73
994
  msgid "Site not created yet."
995
  msgstr "Le site n'a pas encore été créé."
996
 
@@ -1034,7 +921,10 @@ msgstr "Valeur"
1034
  msgid "Set custom variables for a page view"
1035
  msgstr "Définir des variables personnalisées pour une page vue"
1036
 
1037
- #: classes/WP_Piwik/Widget.php:91
 
 
 
1038
  #: classes/WP_Piwik/Widget/BrowserDetails.php:35
1039
  #: classes/WP_Piwik/Widget/Browsers.php:35
1040
  #: classes/WP_Piwik/Widget/Chart.php:41
@@ -1044,49 +934,23 @@ msgstr "Définir des variables personnalisées pour une page vue"
1044
  #: classes/WP_Piwik/Widget/Screens.php:35
1045
  #: classes/WP_Piwik/Widget/Search.php:23 classes/WP_Piwik/Widget/Seo.php:20
1046
  #: classes/WP_Piwik/Widget/Systems.php:33
1047
- #: classes/WP_Piwik/Widget/Visitors.php:35
1048
  msgid "Piwik error"
1049
  msgstr "Erreur Piwik"
1050
 
1051
- #: classes/WP_Piwik/Widget.php:100
 
 
 
 
1052
  #: classes/WP_Piwik/Widget/BrowserDetails.php:37
1053
  #: classes/WP_Piwik/Widget/Browsers.php:37
1054
  #: classes/WP_Piwik/Widget/Screens.php:37
1055
  #: classes/WP_Piwik/Widget/Systems.php:35
1056
- #: classes/WP_Piwik/Widget/Visitors.php:57
1057
  msgid "Unique"
1058
  msgstr "Unique"
1059
 
1060
- #: classes/WP_Piwik/Widget.php:102 classes/WP_Piwik/Widget/Plugins.php:25
1061
- #: classes/WP_Piwik/Widget/Visitors.php:57
1062
- msgid "Visits"
1063
- msgstr "Visites"
1064
-
1065
- #: classes/WP_Piwik/Widget.php:104
1066
- msgid "Hits"
1067
- msgstr "Entrées"
1068
-
1069
- #: classes/WP_Piwik/Widget.php:106
1070
- msgid "Actions"
1071
- msgstr "Actions"
1072
-
1073
- #: classes/WP_Piwik/Widget.php:144
1074
- msgid "No data available."
1075
- msgstr "Pas de données disponibles"
1076
-
1077
- #: classes/WP_Piwik/Widget.php:275
1078
- msgid "week"
1079
- msgstr "semaine"
1080
-
1081
- #: classes/WP_Piwik/Widget/BrowserDetails.php:16
1082
- msgid "Browser Details"
1083
- msgstr "Détails navigateur"
1084
-
1085
- #: classes/WP_Piwik/Widget/BrowserDetails.php:37
1086
- #: classes/WP_Piwik/Widget/Browsers.php:37
1087
- msgid "Browser"
1088
- msgstr "Navigateur"
1089
-
1090
  #: classes/WP_Piwik/Widget/BrowserDetails.php:37
1091
  #: classes/WP_Piwik/Widget/Browsers.php:37
1092
  #: classes/WP_Piwik/Widget/Plugins.php:25
@@ -1116,10 +980,7 @@ msgstr "Visiteurs"
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"
@@ -1150,10 +1011,6 @@ msgstr "Rebonds"
1150
  msgid "Overview"
1151
  msgstr "Vue d'ensemble"
1152
 
1153
- #: classes/WP_Piwik/Widget/Overview.php:17
1154
- msgid "dashboard"
1155
- msgstr "Tableau de bord"
1156
-
1157
  #: classes/WP_Piwik/Widget/Overview.php:41 classes/WP_Piwik/Widget/Post.php:38
1158
  msgid "Unique visitors"
1159
  msgstr "Visiteurs uniques"
@@ -1194,6 +1051,11 @@ msgstr "Extensions"
1194
  msgid "Plugin"
1195
  msgstr "Extension"
1196
 
 
 
 
 
 
1197
  #: classes/WP_Piwik/Widget/Post.php:43
1198
  msgid "Min. generation time"
1199
  msgstr "Temps min. de génération"
@@ -1234,11 +1096,82 @@ msgstr "Date"
1234
  msgid "Page Views"
1235
  msgstr "Pages vues"
1236
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2015 WP-Piwik
2
+ # This file is distributed under the same license as the WP-Piwik package.
3
  # Translators:
4
  # Andre Braekling <webmaster@braekling.de>, 2009
5
  # Franck, 2015
6
  msgid ""
7
  msgstr ""
8
  "Project-Id-Version: WP-Piwik\n"
9
+ "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/wp-piwik\n"
10
+ "POT-Creation-Date: 2015-05-20 21:59:25+00:00\n"
11
+ "PO-Revision-Date: 2015-05-24 09:25+0000\n"
12
  "Last-Translator: André Bräkling <andre@braekling.de>\n"
13
+ "Language-Team: French (France) (http://www.transifex.com/projects/p/wp-piwik/language/fr_FR/)\n"
 
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
  "Language: fr_FR\n"
18
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
 
20
+ #: classes/WP_Piwik/Admin/Settings.php:24
21
+ msgid "Reload"
22
+ msgstr "Recharger"
23
 
24
+ #: classes/WP_Piwik/Admin/Settings.php:27
 
 
 
 
25
  msgid "Changes saved."
26
  msgstr "Modifications enregistrées."
27
 
28
+ #: classes/WP_Piwik/Admin/Settings.php:45
29
+ msgid "Save Changes"
30
+ msgstr "Enregistrer les modifications"
31
+
32
+ #: classes/WP_Piwik/Admin/Settings.php:46
33
  msgid "Thanks for using WP-Piwik!"
34
  msgstr "Merci d'utiliser WP-Piwik&nbsp;!"
35
 
36
+ #: classes/WP_Piwik/Admin/Settings.php:51
 
37
  msgid "WP-Piwik %s is successfully connected to Piwik %s."
38
  msgstr "WP-Piwik %s est connecté avec succès à Piwik %s."
39
 
40
+ #: classes/WP_Piwik/Admin/Settings.php:51
 
41
  msgid "You are running WordPress %s."
42
  msgstr "Vous utilisez WordPress %s."
43
 
44
+ #: classes/WP_Piwik/Admin/Settings.php:51
 
45
  msgid ""
46
  "You are running a WordPress %s blog network (WPMU). WP-Piwik will handle "
47
  "your sites as different websites."
48
+ msgstr "Vous utilisez le réseau de blogs (WPMU) d'un WordPress %s . WP-Piwik va gérer vos sites comme des sites distincts."
 
 
49
 
50
+ #: classes/WP_Piwik/Admin/Settings.php:53
 
51
  msgid ""
52
+ "WP-Piwik %s was not able to connect to Piwik using your configuration. Check"
53
+ " the &raquo;Connect to Piwik&laquo; section below."
54
+ 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;."
 
 
55
 
56
+ #: classes/WP_Piwik/Admin/Settings.php:56
 
57
  msgid ""
58
  "WP-Piwik %s has to be connected to Piwik first. Check the &raquo;Connect to "
59
  "Piwik&laquo; section below."
60
+ msgstr "WP-Piwik %s doit en premier être connecté à Piwik. Vérifiez la section ci-dessous &raquo;&nbsp;Connecter à Piwik&nbsp;&laquo; à Piwik&laquo;."
 
 
61
 
62
+ #: classes/WP_Piwik/Admin/Settings.php:60
63
  msgid "Connect to Piwik"
64
  msgstr "Connecter à Piwik"
65
 
66
+ #: classes/WP_Piwik/Admin/Settings.php:65
67
  msgid "Show Statistics"
68
  msgstr "Afficher les statistiques"
69
 
70
+ #: classes/WP_Piwik/Admin/Settings.php:69
71
  msgid "Enable Tracking"
72
  msgstr "Activer le suivi"
73
 
74
+ #: classes/WP_Piwik/Admin/Settings.php:74
75
  msgid "Expert Settings"
76
  msgstr "Réglages expert"
77
 
78
+ #: classes/WP_Piwik/Admin/Settings.php:78 classes/WP_Piwik.php:914
79
+ msgid "Support"
80
+ msgstr "Support"
81
+
82
+ #: classes/WP_Piwik/Admin/Settings.php:82
83
  msgid "Credits"
84
  msgstr "Crédits"
85
 
86
+ #: classes/WP_Piwik/Admin/Settings.php:95
87
  msgid ""
88
  "WP-Piwik is a WordPress plugin to show a selection of Piwik stats in your "
89
+ "WordPress admin dashboard and to add and configure your Piwik tracking code."
90
+ " To use this you will need your own Piwik instance. If you do not already "
91
  "have a Piwik setup, you have two simple options: use either"
92
+ 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"
 
 
 
 
 
93
 
94
+ #: classes/WP_Piwik/Admin/Settings.php:95
95
  msgid "Self-hosted"
96
  msgstr "auto-hébergé"
97
 
98
+ #: classes/WP_Piwik/Admin/Settings.php:95
99
  msgid "or"
100
  msgstr "ou"
101
 
102
+ #: classes/WP_Piwik/Admin/Settings.php:95
103
  msgid "Cloud-hosted"
104
  msgstr "hébergé dans un Cloud"
105
 
106
+ #: classes/WP_Piwik/Admin/Settings.php:98
107
  msgid ""
108
  "Neither cURL nor fopen are available. So WP-Piwik can not use the HTTP API "
109
  "and not connect to Piwik Pro."
110
+ 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."
 
 
111
 
112
+ #: classes/WP_Piwik/Admin/Settings.php:98
113
  #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
114
  msgid "More information"
115
  msgstr "Plus d'informations"
116
 
117
+ #: classes/WP_Piwik/Admin/Settings.php:100
118
  msgid "You can choose between three connection methods:"
119
  msgstr "Vous pouvez choisir entre trois méthodes de connexion&nbsp;:"
120
 
121
+ #: classes/WP_Piwik/Admin/Settings.php:100
122
+ #: classes/WP_Piwik/Admin/Settings.php:103
123
  msgid "Self-hosted (HTTP API, default)"
124
  msgstr "Auto-hébergé (API HTTP par défaut)"
125
 
126
+ #: classes/WP_Piwik/Admin/Settings.php:100
127
  msgid ""
128
  "This is the default option for a self-hosted Piwik and should work for most "
129
  "configurations. WP-Piwik will connect to Piwik using http(s)."
130
+ msgstr "C'est l'option par défaut pour un Piwik auto-hébergé et devrait fonctionner pour la plupart des configurations. WP-Piwik va se connecter à Piwik en utilisant http(s)."
 
 
 
131
 
132
+ #: classes/WP_Piwik/Admin/Settings.php:100
133
+ #: classes/WP_Piwik/Admin/Settings.php:104
134
  msgid "Self-hosted (PHP API)"
135
  msgstr "Auto-hébergé (API PHP)"
136
 
137
+ #: classes/WP_Piwik/Admin/Settings.php:100
138
  msgid ""
139
+ "Choose this, if your self-hosted Piwik and WordPress are running on the same"
140
+ " machine and you know the full server path to your Piwik instance."
141
+ 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."
 
 
 
142
 
143
+ #: classes/WP_Piwik/Admin/Settings.php:100
144
+ #: classes/WP_Piwik/Admin/Settings.php:105
145
  msgid "Cloud-hosted (Piwik Pro)"
146
  msgstr "Hébergé dans un Cloud (Piwik Pro)"
147
 
148
+ #: classes/WP_Piwik/Admin/Settings.php:100
149
  msgid ""
150
  "If you are using a cloud-hosted Piwik by Piwik Pro, you can simply use this "
151
  "option."
152
+ msgstr "Si vous utilisez Piwik hébergé dans un cloud par Piwik Pro, vous pouvez simplement utiliser cette option."
 
 
153
 
154
+ #: classes/WP_Piwik/Admin/Settings.php:101
155
  msgid "Piwik Mode"
156
  msgstr "Mode Piwik"
157
 
158
+ #: classes/WP_Piwik/Admin/Settings.php:102
159
  msgid "Disabled (WP-Piwik will not connect to Piwik)"
160
  msgstr "Désactivé (WP-Piwik ne se connectera pas à Piwik)"
161
 
162
+ #: classes/WP_Piwik/Admin/Settings.php:108
163
  msgid "Piwik URL"
164
  msgstr "Piwik URL"
165
 
166
+ #: classes/WP_Piwik/Admin/Settings.php:108
167
  msgid ""
168
  "Enter your Piwik URL. This is the same URL you use to access your Piwik "
169
  "instance, e.g. http://www.example.com/piwik/."
170
+ 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/."
 
 
171
 
172
+ #: classes/WP_Piwik/Admin/Settings.php:109
173
  msgid "Piwik path"
174
  msgstr "Chemin Piwik"
175
 
176
+ #: classes/WP_Piwik/Admin/Settings.php:109
177
  msgid "Enter the file path to your Piwik instance, e.g. /var/www/piwik/."
178
  msgstr "Entrez le chemin de votre instance Piwik, par exemple /var/www/piwik/."
179
 
180
+ #: classes/WP_Piwik/Admin/Settings.php:110
181
  msgid "Piwik user"
182
  msgstr "Utilisateur Piwik"
183
 
184
+ #: classes/WP_Piwik/Admin/Settings.php:110
185
  msgid ""
186
+ "Enter your Piwik Pro username. It is also part of your URL: "
187
+ "http://USERNAME.piwik.pro."
188
+ msgstr "Entrez votre nom d'utilisateur Piwik Pro. C'est également une partie de votre URL&nbsp;: http://NOMUTILISATEUR.piwik.pro."
 
 
189
 
190
+ #: classes/WP_Piwik/Admin/Settings.php:111
191
  msgid "Auth token"
192
  msgstr "Clef partagée (token_auth)"
193
 
194
+ #: classes/WP_Piwik/Admin/Settings.php:111
195
  msgid ""
196
  "Enter your Piwik auth token here. It is an alphanumerical code like "
197
  "0a1b2c34d56e78901fa2bc3d45678efa."
198
+ msgstr "Entrez votre clef partagée (token_auth) Piwik ici. C'est un code alphanumérique du genre 0a1b2c34d56e78901fa2bc3d45678efa."
 
 
199
 
200
+ #: classes/WP_Piwik/Admin/Settings.php:111
 
201
  msgid "See %sWP-Piwik FAQ%s."
202
  msgstr "Voir la %sFAQ WP-Piwik%s."
203
 
204
+ #: classes/WP_Piwik/Admin/Settings.php:116
205
  msgid "Auto config"
206
  msgstr "Auto config"
207
 
208
+ #: classes/WP_Piwik/Admin/Settings.php:116
209
  msgid ""
210
  "Check this to automatically choose your blog from your Piwik sites by URL. "
211
  "If your blog is not added to Piwik yet, WP-Piwik will add a new site."
212
+ 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."
 
 
 
 
 
 
 
213
 
214
+ #: classes/WP_Piwik/Admin/Settings.php:127
215
  msgid "Determined site"
216
  msgstr "Site déterminé"
217
 
218
+ #: classes/WP_Piwik/Admin/Settings.php:132
219
  msgid "Select site"
220
  msgstr "Sélectionner le site"
221
 
222
+ #: classes/WP_Piwik/Admin/Settings.php:140
223
  msgid "Piwik default date"
224
  msgstr "Date par défaut Piwik"
225
 
226
+ #: classes/WP_Piwik/Admin/Settings.php:141
227
+ #: classes/WP_Piwik/Admin/Settings.php:154
228
  msgid "Today"
229
  msgstr "Aujourd'hui"
230
 
231
+ #: classes/WP_Piwik/Admin/Settings.php:142
232
+ #: classes/WP_Piwik/Admin/Settings.php:153
233
  msgid "Yesterday"
234
  msgstr "Hier"
235
 
236
+ #: classes/WP_Piwik/Admin/Settings.php:143
237
  msgid "Current month"
238
  msgstr "Mois en cours"
239
 
240
+ #: classes/WP_Piwik/Admin/Settings.php:144
241
  msgid "Last month"
242
  msgstr "Mois précédent"
243
 
244
+ #: classes/WP_Piwik/Admin/Settings.php:145
245
  msgid "Current week"
246
  msgstr "Semaine en cours"
247
 
248
+ #: classes/WP_Piwik/Admin/Settings.php:146
249
  msgid "Last week"
250
  msgstr "Semaine précédente"
251
 
252
+ #: classes/WP_Piwik/Admin/Settings.php:147
253
  msgid "Default date shown on statistics page."
254
  msgstr "Date affichée par défaut sur la page de statistiques."
255
 
256
+ #: classes/WP_Piwik/Admin/Settings.php:149
257
  msgid "Show SEO data"
258
  msgstr "Afficher les données SEO"
259
 
260
+ #: classes/WP_Piwik/Admin/Settings.php:149
261
  msgid "Display SEO ranking data on statistics page."
262
  msgstr "Afficher les données de classement SEO sur la page de statistiques."
263
 
264
+ #: classes/WP_Piwik/Admin/Settings.php:149
265
+ #: classes/WP_Piwik/Admin/Settings.php:160
266
  msgid "Slow!"
267
  msgstr "Doucement&nbsp;!"
268
 
269
+ #: classes/WP_Piwik/Admin/Settings.php:151
270
  msgid "Dashboard overview"
271
  msgstr "Tableau de bord vue d'ensemble"
272
 
273
+ #: classes/WP_Piwik/Admin/Settings.php:152
274
+ #: classes/WP_Piwik/Admin/Settings.php:190
275
+ #: classes/WP_Piwik/Admin/Settings.php:192
276
+ #: classes/WP_Piwik/Admin/Settings.php:213
277
  msgid "Disabled"
278
  msgstr "Désactivé"
279
 
280
+ #: classes/WP_Piwik/Admin/Settings.php:155
281
  msgid "Last 30 days"
282
  msgstr "30 derniers jours"
283
 
284
+ #: classes/WP_Piwik/Admin/Settings.php:156
285
  msgid "Enable WP-Piwik dashboard widget &quot;Overview&quot;."
286
+ msgstr "Activer le widget du tableau de bord WP-Piwik &quot;Vue d'ensemble&quot;."
 
287
 
288
+ #: classes/WP_Piwik/Admin/Settings.php:158
289
  msgid "Dashboard graph"
290
  msgstr "Tableau de bord graphique"
291
 
292
+ #: classes/WP_Piwik/Admin/Settings.php:158
293
  msgid "Enable WP-Piwik dashboard widget &quot;Graph&quot;."
294
  msgstr "Activer le widget du tableau de bord WP-Piwik &quot;Graphique&quot;."
295
 
296
+ #: classes/WP_Piwik/Admin/Settings.php:160
297
  msgid "Dashboard SEO"
298
  msgstr "Tableau de bord SEO"
299
 
300
+ #: classes/WP_Piwik/Admin/Settings.php:160
301
  msgid "Enable WP-Piwik dashboard widget &quot;SEO&quot;."
302
  msgstr "Activer le widget du tableau de bord WP-Piwik &quot;SEO&quot;."
303
 
304
+ #: classes/WP_Piwik/Admin/Settings.php:162
305
  msgid "Show graph on WordPress Toolbar"
306
  msgstr "Afficher le graphique dans la barre d'outils WordPress"
307
 
308
+ #: classes/WP_Piwik/Admin/Settings.php:162
309
  msgid "Display a last 30 days visitor graph on WordPress' toolbar."
310
+ msgstr "Afficher un graphique des visiteurs des 30 derniers jours dans la barre d'outils WordPress"
 
 
311
 
312
+ #: classes/WP_Piwik/Admin/Settings.php:164
313
  msgid "Display stats to"
314
  msgstr "Afficher les stats pour le(s)"
315
 
316
+ #: classes/WP_Piwik/Admin/Settings.php:171
317
  msgid "Choose user roles allowed to see the statistics page."
318
+ msgstr "Choisissez les rôles utilisateurs autorisés à voir la page de statistiques."
 
319
 
320
+ #: classes/WP_Piwik/Admin/Settings.php:173
321
  msgid "Show per post stats"
322
  msgstr "Afficher les stats par article"
323
 
324
+ #: classes/WP_Piwik/Admin/Settings.php:173
325
  msgid "Show stats about single posts at the post edit admin page."
326
+ msgstr "Afficher les stats de l'article sur la page admin de modification des articles."
 
 
327
 
328
+ #: classes/WP_Piwik/Admin/Settings.php:175
329
  msgid "Piwik shortcut"
330
  msgstr "Raccourci Piwik"
331
 
332
+ #: classes/WP_Piwik/Admin/Settings.php:175
333
  msgid "Display a shortcut to Piwik itself."
334
  msgstr "Affiche un raccourci vers Piwik lui-même."
335
 
336
+ #: classes/WP_Piwik/Admin/Settings.php:177
337
  msgid "WP-Piwik display name"
338
  msgstr "Nom d'affichage WP-Piwik"
339
 
340
+ #: classes/WP_Piwik/Admin/Settings.php:177
341
  msgid "Plugin name shown in WordPress."
342
  msgstr "Nom d'extension affichée dans WordPress."
343
 
344
+ #: classes/WP_Piwik/Admin/Settings.php:179
345
  msgid "Enable shortcodes"
346
  msgstr "Activer les codes courts"
347
 
348
+ #: classes/WP_Piwik/Admin/Settings.php:179
349
  msgid "Enable shortcodes in post or page content."
350
  msgstr "Active les codes courts dans le contenu des articles ou des pages"
351
 
352
+ #: classes/WP_Piwik/Admin/Settings.php:190
353
  msgid "You can choose between four tracking code modes:"
354
  msgstr "Vous pouvez choisir entre quatre modes de code de suivi&nbsp;:"
355
 
356
+ #: classes/WP_Piwik/Admin/Settings.php:190
357
  msgid ""
358
  "WP-Piwik will not add the tracking code. Use this, if you want to add the "
359
  "tracking code to your template files or you use another plugin to add the "
360
  "tracking code."
361
+ 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."
 
 
 
362
 
363
+ #: classes/WP_Piwik/Admin/Settings.php:190
364
+ #: classes/WP_Piwik/Admin/Settings.php:193
365
  msgid "Default tracking"
366
  msgstr "Suivi par défaut"
367
 
368
+ #: classes/WP_Piwik/Admin/Settings.php:190
369
  msgid "WP-Piwik will use Piwik's standard tracking code."
370
  msgstr "WP-Piwik utilisera le code de suivi standard de Piwik."
371
 
372
+ #: classes/WP_Piwik/Admin/Settings.php:190
373
+ #: classes/WP_Piwik/Admin/Settings.php:194
374
  msgid "Use js/index.php"
375
  msgstr "Utiliser js/index.php"
376
 
377
+ #: classes/WP_Piwik/Admin/Settings.php:190
378
  msgid ""
379
  "You can choose this tracking code, to deliver a minified proxy code and to "
380
  "avoid using the files called piwik.js or piwik.php."
381
+ 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."
 
 
382
 
383
+ #: classes/WP_Piwik/Admin/Settings.php:190
 
384
  msgid "See %sreadme file%s."
385
  msgstr "Voir le %sfichier lisez-moi%s"
386
 
387
+ #: classes/WP_Piwik/Admin/Settings.php:190
388
+ #: classes/WP_Piwik/Admin/Settings.php:195
389
  msgid "Use proxy script"
390
  msgstr "Utiliser une code proxy"
391
 
392
+ #: classes/WP_Piwik/Admin/Settings.php:190
393
  msgid "Use this tracking code to not reveal the Piwik server URL."
394
  msgstr "Utilisez ce code de suivi pour ne pas révéler l'URL du serveur Piwik."
395
 
396
+ #: classes/WP_Piwik/Admin/Settings.php:190
397
+ #: classes/WP_Piwik/Admin/Settings.php:210
398
+ #: classes/WP_Piwik/Admin/Settings.php:220
 
399
  msgid "See %sPiwik FAQ%s."
400
  msgstr "Voir la %sFAQ Piwik%s."
401
 
402
+ #: classes/WP_Piwik/Admin/Settings.php:190
403
+ #: classes/WP_Piwik/Admin/Settings.php:196
404
  msgid "Enter manually"
405
  msgstr "Entrer manuellement"
406
 
407
+ #: classes/WP_Piwik/Admin/Settings.php:190
408
  msgid ""
409
  "Enter your own tracking code manually. You can choose one of the prior "
410
  "options, pre-configure your tracking code and switch to manually editing at "
411
  "last."
412
+ 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."
 
 
 
413
 
414
+ #: classes/WP_Piwik/Admin/Settings.php:190
415
  msgid "Use the placeholder {ID} to add the Piwik site ID."
416
+ msgstr "Utilisez l'espace réservé {ID} pour ajouter l'identifiant de site Piwik."
 
417
 
418
+ #: classes/WP_Piwik/Admin/Settings.php:191
419
  msgid "Add tracking code"
420
  msgstr "Ajouter le code de suivi"
421
 
422
+ #: classes/WP_Piwik/Admin/Settings.php:199
423
  msgid "Tracking code"
424
  msgstr "Code de suivi"
425
 
426
+ #: classes/WP_Piwik/Admin/Settings.php:201
427
  msgid "JavaScript code position"
428
  msgstr "Emplacement du code JavaScript"
429
 
430
+ #: classes/WP_Piwik/Admin/Settings.php:202
431
  msgid "Footer"
432
  msgstr "Pied de page"
433
 
434
+ #: classes/WP_Piwik/Admin/Settings.php:203
435
  msgid "Header"
436
  msgstr "En-tête"
437
 
438
+ #: classes/WP_Piwik/Admin/Settings.php:204
439
  msgid ""
440
  "Choose whether the JavaScript code is added to the footer or the header."
441
+ msgstr "Choisissez si le code JavaScript est ajouté dans le pied de page ou l'en-tête."
 
 
442
 
443
+ #: classes/WP_Piwik/Admin/Settings.php:206
444
  msgid "Noscript code"
445
  msgstr "Code noscript"
446
 
447
+ #: classes/WP_Piwik/Admin/Settings.php:208
448
  msgid "Add &lt;noscript&gt;"
449
  msgstr "Ajouter &lt;noscript&gt;"
450
 
451
+ #: classes/WP_Piwik/Admin/Settings.php:208
452
  msgid "Adds the &lt;noscript&gt; code to your footer."
453
  msgstr "Ajoute le code &lt;noscript&gt; à votre pied de page."
454
 
455
+ #: classes/WP_Piwik/Admin/Settings.php:208
456
+ #: classes/WP_Piwik/Admin/Settings.php:210
457
  msgid "Disabled in proxy mode."
458
  msgstr "Désactivé en mode proxy."
459
 
460
+ #: classes/WP_Piwik/Admin/Settings.php:210
461
  msgid "Add rec parameter to noscript code"
462
  msgstr "Ajouter le paramètre rec au code noscript"
463
 
464
+ #: classes/WP_Piwik/Admin/Settings.php:210
465
  msgid "Enable tracking for visitors without JavaScript (not recommended)."
466
  msgstr "Activer le suivi des visiteurs sans JavaScript (non recommandé)."
467
 
468
+ #: classes/WP_Piwik/Admin/Settings.php:212
469
  msgid "Enable content tracking"
470
  msgstr "Activer le suivi de contenu"
471
 
472
+ #: classes/WP_Piwik/Admin/Settings.php:214
473
  msgid "Track all content blocks"
474
  msgstr "Suivre tous les blocs de contenu"
475
 
476
+ #: classes/WP_Piwik/Admin/Settings.php:215
477
  msgid "Track only visible content blocks"
478
  msgstr "Suivre uniquement les blocs de contenu visibles"
479
 
480
+ #: classes/WP_Piwik/Admin/Settings.php:216
481
  msgid ""
482
  "Content tracking allows you to track interaction with the content of a web "
483
  "page or application."
484
+ msgstr "Le suivi de contenu vous autorise à suivre l'interaction avec le contenu d'une page web ou d'une application."
 
 
485
 
486
+ #: classes/WP_Piwik/Admin/Settings.php:216
487
+ #: classes/WP_Piwik/Admin/Settings.php:218
488
+ #: classes/WP_Piwik/Admin/Settings.php:222
489
+ #: classes/WP_Piwik/Admin/Settings.php:224
490
+ #: classes/WP_Piwik/Admin/Settings.php:226
491
+ #: classes/WP_Piwik/Admin/Settings.php:247
492
+ #: classes/WP_Piwik/Admin/Settings.php:249
 
 
493
  msgid "See %sPiwik documentation%s."
494
  msgstr "Voir la %sdocumentation Piwik%s."
495
 
496
+ #: classes/WP_Piwik/Admin/Settings.php:218
497
  msgid "Track search"
498
  msgstr "Suivre la recherche"
499
 
500
+ #: classes/WP_Piwik/Admin/Settings.php:218
501
  msgid "Use Piwik's advanced Site Search Analytics feature."
502
+ msgstr "Utiliser la fonctionnalité avancée Piwik d'analyse de recherche du site"
 
503
 
504
+ #: classes/WP_Piwik/Admin/Settings.php:220
505
  msgid "Track 404"
506
  msgstr "Suivre les 404"
507
 
508
+ #: classes/WP_Piwik/Admin/Settings.php:220
509
+ msgid ""
510
+ "WP-Piwik can automatically add a 404-category to track 404-page-visits."
511
+ msgstr "WP-Piwik peut ajouter automatiquement une catégorie 404 pour suivre les visites de page 404."
 
512
 
513
+ #: classes/WP_Piwik/Admin/Settings.php:222
514
  msgid "Add annotation on new post"
515
  msgstr "Ajouter une annotation sur un nouvel article"
516
 
517
+ #: classes/WP_Piwik/Admin/Settings.php:222
518
  msgid "Add a Piwik annotation on each new post."
519
  msgstr "Ajoute une annotation Piwik sur chaque nouvel article."
520
 
521
+ #: classes/WP_Piwik/Admin/Settings.php:224
522
  msgid "Show custom variables box"
523
  msgstr "Afficher la boîte de variables personnalisées"
524
 
525
+ #: classes/WP_Piwik/Admin/Settings.php:224
526
  msgid " Show a &quot;custom variables&quot; edit box on post edit page."
527
+ msgstr "Afficher une boîte de modification des &quot;variables personnalisées&quot; sur la page de modification des articles;"
 
 
528
 
529
+ #: classes/WP_Piwik/Admin/Settings.php:226
530
  msgid "Add new file types for download tracking"
531
  msgstr "Ajouter de nouveaux types de fichier pour le suivi de téléchargement"
532
 
533
+ #: classes/WP_Piwik/Admin/Settings.php:226
534
  msgid ""
535
  "Add file extensions for download tracking, divided by a vertical bar "
536
  "(&#124;)."
537
+ msgstr "Ajouter des extensions de fichier pour le suivi de téléchargement, séparées par une barre verticale (&#124;)."
 
 
538
 
539
+ #: classes/WP_Piwik/Admin/Settings.php:228
540
  msgid "Disable cookies"
541
  msgstr "Désactiver les cookies"
542
 
543
+ #: classes/WP_Piwik/Admin/Settings.php:228
544
  msgid "Disable all tracking cookies for a visitor."
545
  msgstr "Désactiver tous les cookies de suivi pour un visiteur"
546
 
547
+ #: classes/WP_Piwik/Admin/Settings.php:230
548
  msgid "Limit cookie lifetime"
549
  msgstr "Limiter la durée de vie des cookies"
550
 
551
+ #: classes/WP_Piwik/Admin/Settings.php:230
552
  msgid ""
553
+ "You can limit the cookie lifetime to avoid tracking your users over a longer"
554
+ " period as necessary."
555
+ 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."
 
 
556
 
557
+ #: classes/WP_Piwik/Admin/Settings.php:232
558
  msgid "Visitor timeout (seconds)"
559
  msgstr "Expiration du délai d'attente visiteur (en secondes)"
560
 
561
+ #: classes/WP_Piwik/Admin/Settings.php:234
562
  msgid "Session timeout (seconds)"
563
  msgstr "Expiration du délai d'attente session (en secondes)"
564
 
565
+ #: classes/WP_Piwik/Admin/Settings.php:236
566
  msgid "Referral timeout (seconds)"
567
  msgstr "Expiration du délai d'attente référant"
568
 
569
+ #: classes/WP_Piwik/Admin/Settings.php:238
570
  msgid "Track admin pages"
571
  msgstr "Suivre les pages d'admin"
572
 
573
+ #: classes/WP_Piwik/Admin/Settings.php:238
574
  msgid ""
575
  "Enable to track users on admin pages (remember to configure the tracking "
576
  "filter appropriately)."
577
+ msgstr "Activer le suivi des utilisateurs sur les pages d'admin (n'oubliez pas de configurer le filtre de suivi adéquat)"
 
 
578
 
579
+ #: classes/WP_Piwik/Admin/Settings.php:241
580
  msgid "Tracking filter"
581
  msgstr "Filtre de suivi"
582
 
583
+ #: classes/WP_Piwik/Admin/Settings.php:245
584
  msgid "Choose users by user role you do <strong>not</strong> want to track."
585
+ msgstr "Choisissez, pour chaque rôle, ceux que <strong>vous ne souhaitez pas</strong> inclure dans le suivi."
 
 
586
 
587
+ #: classes/WP_Piwik/Admin/Settings.php:247
588
  msgid "Track subdomains in the same website"
589
  msgstr "Suivre les sous-domaines dans le même site web"
590
 
591
+ #: classes/WP_Piwik/Admin/Settings.php:247
592
  msgid "Adds *.-prefix to cookie domain."
593
  msgstr "Ajoute *.-préfixe au cookie de domaine."
594
 
595
+ #: classes/WP_Piwik/Admin/Settings.php:249
596
  msgid "Do not count subdomains as outlink"
597
  msgstr "Ne pas comptabiliser les sous-domaines en tant que lien sortant"
598
 
599
+ #: classes/WP_Piwik/Admin/Settings.php:249
600
  msgid "Adds *.-prefix to tracked domain."
601
  msgstr "Ajoute *.-préfixe au domaine suivi."
602
 
603
+ #: classes/WP_Piwik/Admin/Settings.php:251
604
  msgid "Track RSS feeds"
605
  msgstr "Suivre les flux RSS"
606
 
607
+ #: classes/WP_Piwik/Admin/Settings.php:251
608
  msgid "Enable to track posts in feeds via tracking pixel."
609
  msgstr "Activer le suivi des articles dans les flux via un pixel de suivi."
610
 
611
+ #: classes/WP_Piwik/Admin/Settings.php:253
612
  msgid "Track RSS feed links as campaign"
613
  msgstr "Suivre les liens du flux RSS comme une campagne"
614
 
615
+ #: classes/WP_Piwik/Admin/Settings.php:255
 
 
 
 
616
  msgid "RSS feed campaign"
617
  msgstr "Campagne flux RSS"
618
 
619
+ #: classes/WP_Piwik/Admin/Settings.php:255
620
  msgid "Keyword: post name."
621
  msgstr "Mot-clef&nbsp;: nom d'article."
622
 
623
+ #: classes/WP_Piwik/Admin/Settings.php:260
624
  msgid ""
625
+ "Usually, you do not need to change these settings. If you want to do so, you"
626
+ " should know what you do or you got an expert's advice."
627
+ 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."
 
 
 
628
 
629
+ #: classes/WP_Piwik/Admin/Settings.php:262
630
  msgid "Enable cache"
631
  msgstr "Activer le cache"
632
 
633
+ #: classes/WP_Piwik/Admin/Settings.php:262
634
  msgid "Cache API calls, which not contain today's values, for a week."
635
+ msgstr "Appels API de cache, qui ne contiennent pas les valeurs d'aujourd'hui, pour une semaine."
 
 
636
 
637
+ #: classes/WP_Piwik/Admin/Settings.php:264
638
  msgid "Disable time limit"
639
  msgstr "Désactiver la limite de temps"
640
 
641
+ #: classes/WP_Piwik/Admin/Settings.php:264
642
  msgid "Use set_time_limit(0) if stats page causes a time out."
643
+ msgstr "Utilisez set_time_limit(0) si la pages de statistiques provoque une expiration du délai d'attente."
 
 
644
 
645
+ #: classes/WP_Piwik/Admin/Settings.php:266
646
  msgid "Connection timeout"
647
  msgstr "Expiration du délai d'attente de la connexion"
648
 
649
+ #: classes/WP_Piwik/Admin/Settings.php:268
650
  msgid "Disable SSL peer verification"
651
  msgstr "Désactiver la vérification par les pairs SSL"
652
 
653
+ #: classes/WP_Piwik/Admin/Settings.php:268
654
  msgid "not recommended"
655
  msgstr "non recommandé"
656
 
657
+ #: classes/WP_Piwik/Admin/Settings.php:270
658
  msgid "User agent"
659
  msgstr "Agent utilisateur (User agent)"
660
 
661
+ #: classes/WP_Piwik/Admin/Settings.php:271
662
  msgid "Use the PHP default user agent"
663
  msgstr "Utiliser l'agent utilisateur (user-agent) par défaut de PHP"
664
 
665
+ #: classes/WP_Piwik/Admin/Settings.php:271
666
  msgid "empty"
667
  msgstr "vide"
668
 
669
+ #: classes/WP_Piwik/Admin/Settings.php:272
670
  msgid "Define a specific user agent"
671
  msgstr "Définir un agent utilisateur (user-agent) spécifique"
672
 
673
+ #: classes/WP_Piwik/Admin/Settings.php:274
674
  msgid "Specific user agent"
675
  msgstr "Agent utilisateur (user-agent) spécifique"
676
 
677
+ #: classes/WP_Piwik/Admin/Settings.php:276
678
  msgid "Add data-cfasync=false"
679
  msgstr "Ajouter data-cfasync=false"
680
 
681
+ #: classes/WP_Piwik/Admin/Settings.php:278
 
 
 
 
 
 
 
 
 
 
 
 
 
682
  msgid "CDN URL"
683
  msgstr "URL CDN"
684
 
685
+ #: classes/WP_Piwik/Admin/Settings.php:280
686
  msgid "CDN URL (SSL)"
687
  msgstr "URL CDN (SSL)"
688
 
689
+ #: classes/WP_Piwik/Admin/Settings.php:282
690
  msgid "Force Piwik to use a specific protocol"
691
  msgstr "Forcer Piwik à utiliser un protocole spécifique"
692
 
693
+ #: classes/WP_Piwik/Admin/Settings.php:283
694
  msgid "Disabled (default)"
695
  msgstr "Désactivé (par défaut)"
696
 
697
+ #: classes/WP_Piwik/Admin/Settings.php:284
698
  msgid "http"
699
  msgstr "http"
700
 
701
+ #: classes/WP_Piwik/Admin/Settings.php:285
702
  msgid "https (SSL)"
703
  msgstr "https (SSL)"
704
 
705
+ #: classes/WP_Piwik/Admin/Settings.php:286
706
  msgid ""
707
  "Choose if you want to explicitly force Piwik to use HTTP or HTTPS. Does not "
708
  "work with a CDN URL."
709
+ msgstr "Choisissez si vous voulez forcer explicitement Piwik à utiliser le protocole HTTP ou HTTPS. Ne fonctionne pas avec une URL CDN."
 
 
710
 
711
+ #: classes/WP_Piwik/Admin/Settings.php:445
712
  msgid "Donate"
713
  msgstr "Faire un don"
714
 
715
+ #: classes/WP_Piwik/Admin/Settings.php:447
716
  msgid "If you like WP-Piwik, you can support its development by a donation:"
717
+ msgstr "Si vous aimez WP-Piwik, vous pouvez soutenir son développement par un don&nbsp;:"
 
 
718
 
719
+ #: classes/WP_Piwik/Admin/Settings.php:485
720
  msgid "My Amazon.de wishlist"
721
  msgstr "Ma liste de souhaits Amazon.de"
722
 
723
+ #: classes/WP_Piwik/Admin/Settings.php:488
724
+ #: classes/WP_Piwik/Admin/Settings.php:535
725
  msgid "Please don't forget to vote the compatibility at the"
726
  msgstr "Merci de ne pas oublier de voter la compatibilité avec"
727
 
728
+ #: classes/WP_Piwik/Admin/Settings.php:519
729
  msgid "Thank you very much for your donation"
730
  msgstr "Merci beaucoup pour votre don"
731
 
732
+ #: classes/WP_Piwik/Admin/Settings.php:519
733
  msgid "the Piwik team itself"
734
  msgstr "l'équipe Piwik elle-même"
735
 
736
+ #: classes/WP_Piwik/Admin/Settings.php:519
737
  msgid ", and all people flattering this"
738
  msgstr ", et toutes les personnes flatteuses à ce sujet."
739
 
740
+ #: classes/WP_Piwik/Admin/Settings.php:520
741
  msgid ""
742
  "Graphs powered by <a href=\"http://www.jqplot.com/\">jqPlot</a> (License: "
743
+ "GPL 2.0 and MIT) and <a "
744
+ "href=\"http://omnipotent.net/jquery.sparkline/\">jQuery Sparklines</a> "
745
+ "(License: New BSD License)."
746
+ 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)."
 
 
747
 
748
+ #: classes/WP_Piwik/Admin/Settings.php:521
749
  msgid "Metabox support inspired by"
750
  msgstr "Prise en charge Metabox inspirée par"
751
 
752
+ #: classes/WP_Piwik/Admin/Settings.php:522
753
  msgid "Tabbed settings page suggested by the"
754
  msgstr "Page des réglages en onglets suggérée par le"
755
 
756
+ #: classes/WP_Piwik/Admin/Settings.php:523
757
  msgid "Thank you very much"
758
  msgstr "Merci beaucoup"
759
 
760
+ #: classes/WP_Piwik/Admin/Settings.php:523
761
  msgid "for your translation work"
762
  msgstr "pour votre travail de traduction"
763
 
764
+ #: classes/WP_Piwik/Admin/Settings.php:524
765
  msgid ""
766
  "Thank you very much, all users who send me mails containing criticism, "
767
+ "commendation, feature requests and bug reports! You help me to make WP-Piwik"
768
+ " much better."
769
+ 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."
 
 
 
770
 
771
+ #: classes/WP_Piwik/Admin/Settings.php:525
772
  msgid ""
773
  "Thank <strong>you</strong> for using my plugin. It is the best commendation "
774
  "if my piece of code is really used!"
775
+ msgstr "Je <strong>vous</strong> remercie d'utiliser mon extension. C'est la meilleur éloge si mon morceau de code est vraiment utilisé&nbsp;!"
 
 
776
 
777
+ #: classes/WP_Piwik/Admin/Settings.php:534
778
  msgid "The best place to get help:"
779
  msgstr "Le meilleur endroit pour obtenir de l'aide&nbsp;:"
780
 
781
+ #: classes/WP_Piwik/Admin/Settings.php:534
782
  msgid "WP-Piwik support forum"
783
  msgstr "Forum de support WP-Piwik"
784
 
785
+ #: classes/WP_Piwik/Admin/Settings.php:537
786
  msgid "Debugging"
787
  msgstr "Débogage"
788
 
789
+ #: classes/WP_Piwik/Admin/Settings.php:538
790
  msgid ""
791
  "Either allow_url_fopen has to be enabled <em>or</em> cURL has to be "
792
  "available:"
793
+ msgstr "allow_url_fopen doit être activé <em>ou</em> cURL doit être disponible&nbsp;:"
 
794
 
795
+ #: classes/WP_Piwik/Admin/Settings.php:541
796
  msgid "cURL is"
797
  msgstr "cURL est"
798
 
799
+ #: classes/WP_Piwik/Admin/Settings.php:542
800
+ #: classes/WP_Piwik/Admin/Settings.php:547
801
  msgid "not"
802
  msgstr "non"
803
 
804
+ #: classes/WP_Piwik/Admin/Settings.php:543
805
  msgid "available"
806
  msgstr "disponible"
807
 
808
+ #: classes/WP_Piwik/Admin/Settings.php:546
809
  msgid "allow_url_fopen is"
810
  msgstr "allow_url_fopen est"
811
 
812
+ #: classes/WP_Piwik/Admin/Settings.php:548
813
  msgid "enabled"
814
  msgstr "activé"
815
 
816
+ #: classes/WP_Piwik/Admin/Settings.php:551
817
+ msgid "Tools"
818
+ msgstr "Outils"
819
+
820
+ #: classes/WP_Piwik/Admin/Settings.php:553
821
+ msgid "Run testscript"
822
+ msgstr "Lancer le script de test"
823
+
824
+ #: classes/WP_Piwik/Admin/Settings.php:554
825
+ msgid "Sitebrowser"
826
+ msgstr "Navigateur de site"
827
+
828
+ #: classes/WP_Piwik/Admin/Settings.php:555
829
+ msgid "Clear cache"
830
+ msgstr "Nettoyer le cache"
831
+
832
+ #: classes/WP_Piwik/Admin/Settings.php:556
833
+ msgid "Are you sure you want to clear all settings?"
834
+ msgstr "Êtes-vous sûr de vouloir effacer tous les réglages&nbsp;?"
835
+
836
+ #: classes/WP_Piwik/Admin/Settings.php:556
837
+ msgid "Reset WP-Piwik"
838
+ msgstr "Réinitialiser WP-Piwik"
839
+
840
+ #: classes/WP_Piwik/Admin/Settings.php:558
841
  msgid "Latest support threads on WordPress.org"
842
  msgstr "Les derniers messages de support sur WordPress.org"
843
 
844
+ #: classes/WP_Piwik/Admin/Settings.php:609
845
+ msgid "Settings cleared (except connection settings)."
846
+ msgstr "Les réglages ont été effacés (sauf les paramètres de connexion)"
847
+
848
+ #: classes/WP_Piwik/Admin/Settings.php:625
849
+ msgid "Cache cleared."
850
+ msgstr "Le cache a été effacé."
851
+
852
  #: classes/WP_Piwik/Admin/Sitebrowser.php:17
853
  msgid "site"
854
  msgstr "site"
857
  msgid "sites"
858
  msgstr "sites"
859
 
860
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:24
861
  msgid "No site configured yet."
862
  msgstr "Pas de site configuré actuellement."
863
 
864
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:29
865
+ msgid "Blog ID"
866
+ msgstr "Identifiant du blog"
867
 
868
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:30
869
  msgid "Title"
870
  msgstr "Titre"
871
 
872
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:31
873
  msgid "URL"
874
  msgstr "URL"
875
 
876
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:32
877
  msgid "Site ID (Piwik)"
878
  msgstr "Identifiant du site (Piwik)"
879
 
880
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:79
881
  msgid "Site not created yet."
882
  msgstr "Le site n'a pas encore été créé."
883
 
921
  msgid "Set custom variables for a page view"
922
  msgstr "Définir des variables personnalisées pour une page vue"
923
 
924
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:16
925
+ msgid "Browser Details"
926
+ msgstr "Détails navigateur"
927
+
928
  #: classes/WP_Piwik/Widget/BrowserDetails.php:35
929
  #: classes/WP_Piwik/Widget/Browsers.php:35
930
  #: classes/WP_Piwik/Widget/Chart.php:41
934
  #: classes/WP_Piwik/Widget/Screens.php:35
935
  #: classes/WP_Piwik/Widget/Search.php:23 classes/WP_Piwik/Widget/Seo.php:20
936
  #: classes/WP_Piwik/Widget/Systems.php:33
937
+ #: classes/WP_Piwik/Widget/Visitors.php:35 classes/WP_Piwik/Widget.php:91
938
  msgid "Piwik error"
939
  msgstr "Erreur Piwik"
940
 
941
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:37
942
+ #: classes/WP_Piwik/Widget/Browsers.php:37
943
+ msgid "Browser"
944
+ msgstr "Navigateur"
945
+
946
  #: classes/WP_Piwik/Widget/BrowserDetails.php:37
947
  #: classes/WP_Piwik/Widget/Browsers.php:37
948
  #: classes/WP_Piwik/Widget/Screens.php:37
949
  #: classes/WP_Piwik/Widget/Systems.php:35
950
+ #: classes/WP_Piwik/Widget/Visitors.php:57 classes/WP_Piwik/Widget.php:100
951
  msgid "Unique"
952
  msgstr "Unique"
953
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
954
  #: classes/WP_Piwik/Widget/BrowserDetails.php:37
955
  #: classes/WP_Piwik/Widget/Browsers.php:37
956
  #: classes/WP_Piwik/Widget/Plugins.php:25
980
  msgid ""
981
  "The graph contains the values shown in the table below (visitors / unique / "
982
  "bounces). The red line show a linear trendline (unique)."
983
+ 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)."
 
 
 
984
 
985
  #: classes/WP_Piwik/Widget/Keywords.php:16
986
  msgid "Keywords"
1011
  msgid "Overview"
1012
  msgstr "Vue d'ensemble"
1013
 
 
 
 
 
1014
  #: classes/WP_Piwik/Widget/Overview.php:41 classes/WP_Piwik/Widget/Post.php:38
1015
  msgid "Unique visitors"
1016
  msgstr "Visiteurs uniques"
1051
  msgid "Plugin"
1052
  msgstr "Extension"
1053
 
1054
+ #: classes/WP_Piwik/Widget/Plugins.php:25
1055
+ #: classes/WP_Piwik/Widget/Visitors.php:57 classes/WP_Piwik/Widget.php:102
1056
+ msgid "Visits"
1057
+ msgstr "Visites"
1058
+
1059
  #: classes/WP_Piwik/Widget/Post.php:43
1060
  msgid "Min. generation time"
1061
  msgstr "Temps min. de génération"
1096
  msgid "Page Views"
1097
  msgstr "Pages vues"
1098
 
1099
+ #: classes/WP_Piwik/Widget.php:104
1100
+ msgid "Hits"
1101
+ msgstr "Entrées"
1102
+
1103
+ #: classes/WP_Piwik/Widget.php:106
1104
+ msgid "Actions"
1105
+ msgstr "Actions"
1106
+
1107
+ #: classes/WP_Piwik/Widget.php:162
1108
+ msgid "No data available."
1109
+ msgstr "Pas de données disponibles"
1110
+
1111
+ #: classes/WP_Piwik/Widget.php:293
1112
+ msgid "week"
1113
+ msgstr "semaine"
1114
+
1115
+ #: classes/WP_Piwik.php:193
1116
+ msgid "%s %s installed."
1117
+ msgstr "%s %s installé."
1118
+
1119
+ #: classes/WP_Piwik.php:193
1120
+ msgid "Next you should connect to Piwik"
1121
+ msgstr "Ensuite, vous devez vous connecter à Piwik"
1122
+
1123
+ #: classes/WP_Piwik.php:223
1124
+ msgid "%s updated to %s."
1125
+ msgstr "%s mis à jour vers %s."
1126
+
1127
+ #: classes/WP_Piwik.php:223
1128
+ msgid "Please validate your configuration"
1129
+ msgstr "Merci de valider votre configuration"
1130
+
1131
+ #: classes/WP_Piwik.php:255 classes/WP_Piwik.php:471
1132
+ msgid "Settings"
1133
+ msgstr "Paramètres"
1134
+
1135
+ #: classes/WP_Piwik.php:258
1136
+ msgid "Important"
1137
+ msgstr "Important"
1138
+
1139
+ #: classes/WP_Piwik.php:339 classes/WP_Piwik.php:361
1140
+ msgid "Piwik Statistics"
1141
+ msgstr "Statistiques Piwik"
1142
+
1143
+ #: classes/WP_Piwik.php:914
1144
+ msgid "An error occured"
1145
+ msgstr "Une erreur s'est produite"
1146
+
1147
+ #: classes/WP_Piwik.php:1179
1148
+ msgid "Cheatin&#8217; uh?"
1149
+ msgstr "Alors, on triche&nbsp;?"
1150
+
1151
  #: wp-piwik.php:60
 
1152
  msgid ""
1153
+ "WP-Piwik requires at least PHP 5.3. You are using the deprecated version %s."
1154
+ " Please update PHP to use WP-Piwik."
1155
+ 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."
1156
+
1157
+ #. Plugin Name of the plugin/theme
1158
+ msgid "WP-Piwik"
1159
+ msgstr "WP-Piwik"
1160
+
1161
+ #. Plugin URI of the plugin/theme
1162
+ msgid "http://wordpress.org/extend/plugins/wp-piwik/"
1163
+ msgstr "http://wordpress.org/extend/plugins/wp-piwik/"
1164
+
1165
+ #. Description of the plugin/theme
1166
+ msgid ""
1167
+ "Adds Piwik stats to your dashboard menu and Piwik code to your wordpress "
1168
+ "header."
1169
+ msgstr "Ajoute les stats Piwik au menu de votre tableau de bord et le code Piwik dans votre en-tête WordPress."
1170
+
1171
+ #. Author of the plugin/theme
1172
+ msgid "Andr&eacute; Br&auml;kling"
1173
+ msgstr "Andr&eacute; Br&auml;kling"
1174
+
1175
+ #. Author URI of the plugin/theme
1176
+ msgid "http://www.braekling.de"
1177
+ msgstr "http://www.braekling.de"
languages/wp-piwik.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the same license as the WP-Piwik package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: WP-Piwik 0.10.0.9\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/wp-piwik\n"
7
- "POT-Creation-Date: 2015-05-19 22:00:43+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -12,6 +12,10 @@ msgstr ""
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
 
 
 
 
15
  #: classes/WP_Piwik/Admin/Settings.php:27
16
  msgid "Changes saved."
17
  msgstr ""
@@ -66,7 +70,7 @@ msgstr ""
66
  msgid "Expert Settings"
67
  msgstr ""
68
 
69
- #: classes/WP_Piwik/Admin/Settings.php:78 classes/WP_Piwik.php:912
70
  msgid "Support"
71
  msgstr ""
72
 
@@ -819,12 +823,11 @@ msgid "Clear cache"
819
  msgstr ""
820
 
821
  #: classes/WP_Piwik/Admin/Settings.php:556
822
- msgid ""
823
- "Are you sure you want to clear all settings except the connection settings?"
824
  msgstr ""
825
 
826
  #: classes/WP_Piwik/Admin/Settings.php:556
827
- msgid "Clear cache and settings except connection settings"
828
  msgstr ""
829
 
830
  #: classes/WP_Piwik/Admin/Settings.php:558
@@ -1130,11 +1133,11 @@ msgstr ""
1130
  msgid "Piwik Statistics"
1131
  msgstr ""
1132
 
1133
- #: classes/WP_Piwik.php:912
1134
  msgid "An error occured"
1135
  msgstr ""
1136
 
1137
- #: classes/WP_Piwik.php:1176
1138
  msgid "Cheatin&#8217; uh?"
1139
  msgstr ""
1140
 
2
  # This file is distributed under the same license as the WP-Piwik package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: WP-Piwik 0.10.1.0\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/wp-piwik\n"
7
+ "POT-Creation-Date: 2015-05-20 21:59:25+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
+ #: classes/WP_Piwik/Admin/Settings.php:24
16
+ msgid "Reload"
17
+ msgstr ""
18
+
19
  #: classes/WP_Piwik/Admin/Settings.php:27
20
  msgid "Changes saved."
21
  msgstr ""
70
  msgid "Expert Settings"
71
  msgstr ""
72
 
73
+ #: classes/WP_Piwik/Admin/Settings.php:78 classes/WP_Piwik.php:914
74
  msgid "Support"
75
  msgstr ""
76
 
823
  msgstr ""
824
 
825
  #: classes/WP_Piwik/Admin/Settings.php:556
826
+ msgid "Are you sure you want to clear all settings?"
 
827
  msgstr ""
828
 
829
  #: classes/WP_Piwik/Admin/Settings.php:556
830
+ msgid "Reset WP-Piwik"
831
  msgstr ""
832
 
833
  #: classes/WP_Piwik/Admin/Settings.php:558
1133
  msgid "Piwik Statistics"
1134
  msgstr ""
1135
 
1136
+ #: classes/WP_Piwik.php:914
1137
  msgid "An error occured"
1138
  msgstr ""
1139
 
1140
+ #: classes/WP_Piwik.php:1179
1141
  msgid "Cheatin&#8217; uh?"
1142
  msgstr ""
1143
 
readme.txt CHANGED
@@ -3,7 +3,7 @@
3
  Contributors: Braekling
4
  Requires at least: 4.0
5
  Tested up to: 4.2.2
6
- Stable tag: 0.10.1.0
7
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=6046779
8
  Tags: statistics, stats, analytics, piwik, wpmu
9
 
@@ -13,11 +13,11 @@ This plugin adds a Piwik stats site to your WordPress or WordPress multisite das
13
 
14
  This plugin adds a Piwik stats site to your WordPress dashboard. It's also able to add the Piwik tracking code to your blog.
15
 
16
- To use this plugin you will need your own Piwik instance. If you do not already have a Piwik setup, you have two simple options: use either [Self-hosted](http://piwik.org/) (**Piwik 2.9.0 or higher**) or [Cloud-hosted](http://piwik.org/hosting/).
17
 
18
  **Requirements:** PHP 5.4 (or higher), WordPress 4.0 (or higher), Piwik 2.9 (or higher)
19
 
20
- Languages: English, French, German. Partially supported: Albanian, Azerbaijani, Belorussian, Chinese (simplified), Dutch, Greek, Italian, Lithuanian, Norwegian, Persian, Romanian, Russian, Spanish, Swedish, Ukrainian
21
 
22
  **Note:** If you vote "It's broken", please tell me about your problem. It's hard to fix a bug I don't know about! ;-)
23
 
@@ -38,12 +38,9 @@ Shows the chosen keys value related to the current post. You can define a range
38
  [wp-piwik]
39
  is equal to *[wp-piwik module="overview" title="" period="day" date="yesterday"]*.
40
 
41
- More shortcodes will follow soon.
42
-
43
  = Credits =
44
 
45
  * Graphs powered by [jqPlot](http://www.jqplot.com/) (GPL 2.0 and MIT) and and [jQuery Sparklines](http://omnipotent.net/jquery.sparkline/) (New BSD License).
46
- * Metabox support inspired by [Heiko Rabe's metabox demo plugin](http://www.code-styling.de/english/how-to-use-wordpress-metaboxes-at-own-plugins).
47
  * Donations: Marco L., Rolf W., Tobias U., Lars K., Donna F., Kevin D., Ramos S., Thomas M., John C., Andreas G., Ben M., Myra R. I., Carlos U. R.-S., Oleg I., M. N., Daniel K., James L., Jochen K., Cyril P., Thomas K., the Piwik team itself, and all people flattering this.
48
  * All users who send me mails containing criticism, commendation, feature requests and bug reports - you help me to make WP-Piwik much better!
49
 
@@ -55,7 +52,7 @@ Thank you all!
55
 
56
  To use this plugin you will need your own Piwik instance. If you do not already have a Piwik setup, you have two simple options: use either [Self-hosted](http://piwik.org/) or [Cloud-hosted](http://piwik.org/hosting/).
57
 
58
- As soon as Piwik works, you'll be able to configure WP-Piwik: The Piwik URL is the same URL you use to access your Piwik, e.g. for the demo site: http://demo.piwik.org. The auth token is some kind of secret password, which allows WP-Piwik to get the necessary data from Piwik. To get your auth token, log in to Piwik, click at your user name (top right) and click at "API" (left sidebar menu).
59
 
60
  = Can I contribute to WP-Piwik as translator? =
61
 
@@ -71,10 +68,6 @@ Thank you very much! :-)
71
 
72
  Try to enable the "avoid mod_security" option (WP-Piwik settings, Tracking tab) or create a mod_security whitelist.
73
 
74
- = WP-Piwik does not work with SSL! =
75
-
76
- See [this support thread](http://wordpress.org/support/topic/plugin-wp-piwik-https-ssl-support?replies=3).
77
-
78
  = Overview shortcode shows no unique visitors using a yearly range. =
79
 
80
  See [Piwik FAQ](http://piwik.org/faq/how-to/#faq_113).
@@ -87,11 +80,11 @@ See [Piwik FAQ](http://piwik.org/faq/how-to/#faq_113).
87
 
88
  2. Activate the plugin through the 'Plugins' menu in WordPress.
89
 
90
- 3. Open the new 'Settings/WP-Piwik Settings' menu, enter your Piwik base URL and your auth token. Save settings.
91
 
92
  4. If you have view access to multiple site stats and did not enable "auto config", choose your blog and save settings again.
93
 
94
- 5. Look at 'Dashboard/WP-Piwik' to get your site stats.
95
 
96
  = Install WP-Piwik on a WordPress blog network (WPMU/WP multisite) =
97
 
@@ -115,6 +108,7 @@ Add WP-Piwik to your /wp-content/plugins folder and enable it as [Network Plugin
115
  2. WP-Piwik statistics page.
116
  3. Closer look to a pie chart.
117
  4. WordPress toolbar graph.
 
118
 
119
  == Upgrade Notice ==
120
 
@@ -122,6 +116,13 @@ This is a full refactored version of WP-Piwik. Please check your settings after
122
 
123
  == Changelog ==
124
 
 
 
 
 
 
 
 
125
  = 0.10.1.0 =
126
  * Bugfix: Fixed memory & timeout issue on multisites
127
 
@@ -477,4 +478,4 @@ This is a full refactored version of WP-Piwik. Please check your settings after
477
  * Browser stats and bounced visitors
478
 
479
  = 0.2.0 =
480
- * First public version.
3
  Contributors: Braekling
4
  Requires at least: 4.0
5
  Tested up to: 4.2.2
6
+ Stable tag: 1.0.0
7
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=6046779
8
  Tags: statistics, stats, analytics, piwik, wpmu
9
 
13
 
14
  This plugin adds a Piwik stats site to your WordPress dashboard. It's also able to add the Piwik tracking code to your blog.
15
 
16
+ To use this plugin you will need your own Piwik instance. If you do not already have a Piwik setup, you have two simple options: use either [Self-hosted](http://piwik.org/) or [Cloud-hosted](http://piwik.org/hosting/).
17
 
18
  **Requirements:** PHP 5.4 (or higher), WordPress 4.0 (or higher), Piwik 2.9 (or higher)
19
 
20
+ **Languages:** English, French, German. Partially supported: Albanian, Azerbaijani, Belorussian, Chinese (simplified), Dutch, Greek, Italian, Lithuanian, Norwegian, Persian, Romanian, Russian, Spanish, Swedish, Ukrainian
21
 
22
  **Note:** If you vote "It's broken", please tell me about your problem. It's hard to fix a bug I don't know about! ;-)
23
 
38
  [wp-piwik]
39
  is equal to *[wp-piwik module="overview" title="" period="day" date="yesterday"]*.
40
 
 
 
41
  = Credits =
42
 
43
  * Graphs powered by [jqPlot](http://www.jqplot.com/) (GPL 2.0 and MIT) and and [jQuery Sparklines](http://omnipotent.net/jquery.sparkline/) (New BSD License).
 
44
  * Donations: Marco L., Rolf W., Tobias U., Lars K., Donna F., Kevin D., Ramos S., Thomas M., John C., Andreas G., Ben M., Myra R. I., Carlos U. R.-S., Oleg I., M. N., Daniel K., James L., Jochen K., Cyril P., Thomas K., the Piwik team itself, and all people flattering this.
45
  * All users who send me mails containing criticism, commendation, feature requests and bug reports - you help me to make WP-Piwik much better!
46
 
52
 
53
  To use this plugin you will need your own Piwik instance. If you do not already have a Piwik setup, you have two simple options: use either [Self-hosted](http://piwik.org/) or [Cloud-hosted](http://piwik.org/hosting/).
54
 
55
+ As soon as Piwik works, you'll be able to configure WP-Piwik: The Piwik URL is the same URL you use to access your Piwik, e.g. for the demo site: http://demo.piwik.org. The auth token is some kind of a secret password, which allows WP-Piwik to get the necessary data from Piwik. To get your auth token, log in to Piwik, click at your user name (top right) and click at "API" (left sidebar menu).
56
 
57
  = Can I contribute to WP-Piwik as translator? =
58
 
68
 
69
  Try to enable the "avoid mod_security" option (WP-Piwik settings, Tracking tab) or create a mod_security whitelist.
70
 
 
 
 
 
71
  = Overview shortcode shows no unique visitors using a yearly range. =
72
 
73
  See [Piwik FAQ](http://piwik.org/faq/how-to/#faq_113).
80
 
81
  2. Activate the plugin through the 'Plugins' menu in WordPress.
82
 
83
+ 3. Open the new 'Settings/WP-Piwik Settings' menu and follow the instructions to configure your Piwik connection. Save settings.
84
 
85
  4. If you have view access to multiple site stats and did not enable "auto config", choose your blog and save settings again.
86
 
87
+ 5. Look at 'Dashboard/WP-Piwik' to see your site stats.
88
 
89
  = Install WP-Piwik on a WordPress blog network (WPMU/WP multisite) =
90
 
108
  2. WP-Piwik statistics page.
109
  3. Closer look to a pie chart.
110
  4. WordPress toolbar graph.
111
+ 5. Piwik: Here you'll find your auth token.
112
 
113
  == Upgrade Notice ==
114
 
116
 
117
  == Changelog ==
118
 
119
+ = 1.0.0 =
120
+ * Feature: Expand "other" values on click
121
+ * Bugfix: Avoid notices on invalid file path (PHP API)
122
+ * Bugfix: Cookie lifetime input boxes are in some cases shown or hidden by mistake
123
+ * Network (multisite): Updated plugin to use wp_get_sites if possible
124
+ * Test script: Settings dump added
125
+
126
  = 0.10.1.0 =
127
  * Bugfix: Fixed memory & timeout issue on multisites
128
 
478
  * Browser stats and bounced visitors
479
 
480
  = 0.2.0 =
481
+ * First public version.
screenshot-2.gif CHANGED
Binary file
screenshot-5.gif ADDED
Binary file
uninstall.php CHANGED
@@ -71,13 +71,20 @@ $settings = array (
71
  global $wpdb;
72
 
73
  if (function_exists('is_multisite') && is_multisite()) {
74
- $aryBlogs = $wpdb->get_results('SELECT blog_id FROM '.$wpdb->blogs.' ORDER BY blog_id');
 
 
 
 
 
 
 
75
  if (is_array($aryBlogs))
76
  foreach ($aryBlogs as $aryBlog) {
77
  foreach ($settings as $key) {
78
- delete_blog_option($aryBlog->blog_id, 'wp-piwik-'.$key);
79
  }
80
- switch_to_blog($aryBlog->blog_id);
81
  $wpdb->query("DELETE FROM $wpdb->postmeta WHERE meta_key LIKE 'wp-piwik_%'");
82
  $wpdb->query("DELETE FROM $wpdb->options WHERE option_name LIKE '_transient_wp-piwik_%'");
83
  $wpdb->query("DELETE FROM $wpdb->options WHERE option_name LIKE '_transient_timeout_wp-piwik_%'");
71
  global $wpdb;
72
 
73
  if (function_exists('is_multisite') && is_multisite()) {
74
+ if ( !wp_is_large_network() )
75
+ $aryBlogs = wp_get_sites ( array('limit' => $limit, 'offset' => $page?($page - 1) * $limit:null));
76
+ else {
77
+ if ($limit && $page)
78
+ $queryLimit = 'LIMIT '.(int) (($page - 1) * $limit).','.(int) $limit.' ';
79
+ $aryBlogs = $wpdb->get_results('SELECT blog_id FROM '.$wpdb->blogs.' '.$queryLimit.'ORDER BY blog_id', ARRAY_A);
80
+ }
81
+
82
  if (is_array($aryBlogs))
83
  foreach ($aryBlogs as $aryBlog) {
84
  foreach ($settings as $key) {
85
+ delete_blog_option($aryBlog['blog_id'], 'wp-piwik-'.$key);
86
  }
87
+ switch_to_blog($aryBlog['blog_id']);
88
  $wpdb->query("DELETE FROM $wpdb->postmeta WHERE meta_key LIKE 'wp-piwik_%'");
89
  $wpdb->query("DELETE FROM $wpdb->options WHERE option_name LIKE '_transient_wp-piwik_%'");
90
  $wpdb->query("DELETE FROM $wpdb->options WHERE option_name LIKE '_transient_timeout_wp-piwik_%'");
update/2015051101.php CHANGED
@@ -14,14 +14,14 @@ delete_option('wp-piwik_settings');
14
 
15
  if (self::$settings->checkNetworkActivation ()) {
16
  global $wpdb;
17
- $aryBlogs = $wpdb->get_results('SELECT blog_id FROM '.$wpdb->blogs.' ORDER BY blog_id');
18
  if (is_array($aryBlogs))
19
  foreach ($aryBlogs as $aryBlog) {
20
- $oldOptions = get_blog_option ( $aryBlog->blog_id, 'wp-piwik_settings', array () );
21
  if (!$this->isConfigured())
22
  foreach ( $oldOptions as $key => $value )
23
- self::$settings->setOption ( $key, $value, $aryBlog->blog_id );
24
- delete_blog_option($aryBlog->blog_id, 'wp-piwik_settings');
25
  }
26
  }
27
 
14
 
15
  if (self::$settings->checkNetworkActivation ()) {
16
  global $wpdb;
17
+ $aryBlogs = \WP_Piwik\Settings::getBlogList();
18
  if (is_array($aryBlogs))
19
  foreach ($aryBlogs as $aryBlog) {
20
+ $oldOptions = get_blog_option ( $aryBlog['blog_id'], 'wp-piwik_settings', array () );
21
  if (!$this->isConfigured())
22
  foreach ( $oldOptions as $key => $value )
23
+ self::$settings->setOption ( $key, $value, $aryBlog['blog_id'] );
24
+ delete_blog_option($aryBlog['blog_id'], 'wp-piwik_settings');
25
  }
26
  }
27
 
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.1.0
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: 1.0.0
10
  Author: Andr&eacute; Br&auml;kling
11
  Author URI: http://www.braekling.de
12
  Text Domain: wp-piwik