Google Analytics Dashboard for WP (GADWP) - Version 4.8.1

Version Description

  • Bug Fix: add % suffix to bouncerate item reports
  • Bug Fix: add query string support to frontend item reports
  • Bug Fix: make the main menu translatable
  • Bug Fix: PHP notice while no View is assigned to a new network site
  • Enhancement: French translation updated
  • Enhancement: Romanian translation updated
  • Enhancement: display an admin notice after manual and automatic updates
  • Enhancement: small I18N tweaks and POT file update
  • Enhancement: introducing last 14 days range in items reports
  • Enhancement: introducing One Year and Three Years range for all google analytics reports
  • Enhancement: set the last selected report and date range as default for subsequent requests
Download this release

Release Info

Developer deconf
Plugin Icon 128x128 Google Analytics Dashboard for WP (GADWP)
Version 4.8.1
Comparing to
See all releases

Code changes from version 4.8 to 4.8.1

admin/ajax-actions-ui.php ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Author: Alin Marcu
4
+ * Author URI: http://deconf.com
5
+ * License: GPLv2 or later
6
+ * License URI: http://www.gnu.org/licenses/gpl-2.0.html
7
+ */
8
+
9
+ // Exit if accessed directly
10
+ if ( ! defined( 'ABSPATH' ) )
11
+ exit();
12
+
13
+ if ( ! class_exists( 'GADWP_UI_Ajax' ) ) {
14
+
15
+ final class GADWP_UI_Ajax {
16
+
17
+ public function __construct() {
18
+ if ( current_user_can( 'manage_options' ) ) {
19
+ // Admin Widget action
20
+ add_action( 'wp_ajax_gadwp_dismiss_notices', array( $this, 'ajax_dismiss_notices' ) );
21
+ }
22
+ }
23
+
24
+ /**
25
+ * Ajax handler for dismissing Admin notices
26
+ *
27
+ * @return json|int
28
+ */
29
+ public function ajax_dismiss_notices() {
30
+ if ( ! isset( $_REQUEST['gadwp_security_dismiss_notices'] ) || ! wp_verify_nonce( $_REQUEST['gadwp_security_dismiss_notices'], 'gadwp_dismiss_notices' ) ) {
31
+ wp_die( - 30 );
32
+ }
33
+
34
+ if ( !current_user_can( 'manage_options' ) ) {
35
+ wp_die( - 31 );
36
+ }
37
+
38
+ delete_option( 'gadwp_got_updated' );
39
+
40
+ wp_send_json( 1 );
41
+ }
42
+ }
43
+ }
admin/js/item-reports.js CHANGED
@@ -67,15 +67,50 @@ function () {
67
  jQuery.fn.extend( {
68
  gadwpItemReport : function ( slug, item_id ) {
69
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
70
  var template = {
71
 
72
  data : '<div id="gadwp-container' + slug + '"><select id="gadwp-sel-period' + slug + '"></select> <select id="gadwp-sel-report' + slug + '"></select><div id="gadwp-progressbar' + slug + '"></div><div id="gadwp-status' + slug + '"></div><div id="gadwp-reports' + slug + '"></div><div style="text-align:right;width:100%;font-size:0.8em;clear:both;margin-right:5px;margin-top:10px;">' + gadwp_item_data.i18n[ 14 ] + ' <a href="https://deconf.com/google-analytics-dashboard-wordpress/?utm_source=gadwp_report&utm_medium=link&utm_content=back_report&utm_campaign=gadwp" rel="nofollow" style="text-decoration:none;font-size:1em;">GADWP</a>&nbsp;</div></div>',
73
 
74
  addOptions : function ( id, list ) {
75
-
76
  var output = [];
 
77
  jQuery.each( list, function ( key, value ) {
78
- if ( key == '30daysAgo' || key == 'sessions' ) {
 
 
 
 
 
 
 
 
79
  output.push( '<option value="' + key + '" selected="selected">' + value + '</option>' );
80
  } else {
81
  output.push( '<option value="' + key + '">' + value + '</option>' );
@@ -139,7 +174,7 @@ jQuery.fn.extend( {
139
  var options = {
140
  allowCollapse : true,
141
  allowHtml : true,
142
- height: '100%'
143
  };
144
 
145
  var chart = new google.visualization.OrgChart( document.getElementById( 'gadwp-trafficchannels' + slug ) );
@@ -252,10 +287,19 @@ jQuery.fn.extend( {
252
  chart.draw( data, options );
253
  },
254
 
255
- drawmainchart : function ( gadwp_mainchart ) {
256
 
257
  var data = google.visualization.arrayToDataTable( gadwp_mainchart );
258
 
 
 
 
 
 
 
 
 
 
259
  var options = {
260
  legend : {
261
  position : 'none'
@@ -339,18 +383,29 @@ jQuery.fn.extend( {
339
  from = '90daysAgo';
340
  to = 'yesterday';
341
  break;
 
 
 
 
 
 
 
 
342
  default:
343
  from = '30daysAgo';
344
  to = 'yesterday';
345
  break;
346
  }
347
 
 
 
 
348
  var data = {
349
  action : 'gadwp_backend_item_reports',
350
  gadwp_security_backend_item_reports : gadwp_item_data.security,
351
  from : from,
352
  to : to,
353
- filter : item_id
354
  }
355
 
356
  if ( jQuery.inArray( query, [ 'referrers', 'contentpages', 'searches' ] ) > -1 ) {
@@ -498,7 +553,11 @@ jQuery.fn.extend( {
498
  if ( !jQuery.isNumeric( response[ 0 ] ) ) {
499
  if ( jQuery.isArray( response[ 0 ] ) ) {
500
  reports.mainchart = response[ 0 ];
501
- google.setOnLoadCallback( reports.drawmainchart( reports.mainchart ) );
 
 
 
 
502
  } else {
503
  reports.throwDebug( response[ 0 ] );
504
  }
67
  jQuery.fn.extend( {
68
  gadwpItemReport : function ( slug, item_id ) {
69
 
70
+ var tools = {
71
+ set_cookie : function ( name, value ) {
72
+ var date_item = new Date();
73
+ date_item.setTime( date_item.getTime() + ( 24 * 60 * 60 * 1000 * 365 * 10 ) );
74
+ var expires = "expires=" + date_item.toUTCString();
75
+ document.cookie = "gadwp_ir_" + name + "=" + value + "; " + expires + "; path=/";
76
+ },
77
+ get_cookie : function ( name ) {
78
+ var name = "gadwp_ir_" + name + "=";
79
+ var cookies_array = document.cookie.split( ';' );
80
+ for ( var i = 0; i < cookies_array.length; i++ ) {
81
+ var cookie = cookies_array[ i ];
82
+ while ( cookie.charAt( 0 ) == ' ' )
83
+ cookie = cookie.substring( 1 );
84
+ if ( cookie.indexOf( name ) == 0 )
85
+ return cookie.substring( name.length, cookie.length );
86
+ }
87
+ return false;
88
+ },
89
+ escape : function ( str ) {
90
+ var div = document.createElement( 'div' );
91
+ div.appendChild( document.createTextNode( str ) );
92
+ return div.innerHTML;
93
+ },
94
+ }
95
+
96
  var template = {
97
 
98
  data : '<div id="gadwp-container' + slug + '"><select id="gadwp-sel-period' + slug + '"></select> <select id="gadwp-sel-report' + slug + '"></select><div id="gadwp-progressbar' + slug + '"></div><div id="gadwp-status' + slug + '"></div><div id="gadwp-reports' + slug + '"></div><div style="text-align:right;width:100%;font-size:0.8em;clear:both;margin-right:5px;margin-top:10px;">' + gadwp_item_data.i18n[ 14 ] + ' <a href="https://deconf.com/google-analytics-dashboard-wordpress/?utm_source=gadwp_report&utm_medium=link&utm_content=back_report&utm_campaign=gadwp" rel="nofollow" style="text-decoration:none;font-size:1em;">GADWP</a>&nbsp;</div></div>',
99
 
100
  addOptions : function ( id, list ) {
101
+ var default_metric, default_dimension;
102
  var output = [];
103
+
104
  jQuery.each( list, function ( key, value ) {
105
+ if ( !tools.get_cookie( 'default_metric' ) || !tools.get_cookie( 'default_dimension' ) ) {
106
+ default_metric = 'uniquePageviews';
107
+ default_dimension = '30daysAgo';
108
+ } else {
109
+ default_metric = tools.get_cookie( 'default_metric' );
110
+ default_dimension = tools.get_cookie( 'default_dimension' );
111
+ }
112
+
113
+ if ( key == default_metric || key == default_dimension ) {
114
  output.push( '<option value="' + key + '" selected="selected">' + value + '</option>' );
115
  } else {
116
  output.push( '<option value="' + key + '">' + value + '</option>' );
174
  var options = {
175
  allowCollapse : true,
176
  allowHtml : true,
177
+ height : '100%'
178
  };
179
 
180
  var chart = new google.visualization.OrgChart( document.getElementById( 'gadwp-trafficchannels' + slug ) );
287
  chart.draw( data, options );
288
  },
289
 
290
+ drawmainchart : function ( gadwp_mainchart, format ) {
291
 
292
  var data = google.visualization.arrayToDataTable( gadwp_mainchart );
293
 
294
+ if ( format ) {
295
+ var formatter = new google.visualization.NumberFormat( {
296
+ suffix : '%',
297
+ fractionDigits : 2
298
+ } );
299
+
300
+ formatter.format( data, 1 );
301
+ }
302
+
303
  var options = {
304
  legend : {
305
  position : 'none'
383
  from = '90daysAgo';
384
  to = 'yesterday';
385
  break;
386
+ case '365daysAgo':
387
+ from = '365daysAgo';
388
+ to = 'yesterday';
389
+ break;
390
+ case '1095daysAgo':
391
+ from = '1095daysAgo';
392
+ to = 'yesterday';
393
+ break;
394
  default:
395
  from = '30daysAgo';
396
  to = 'yesterday';
397
  break;
398
  }
399
 
400
+ tools.set_cookie( 'default_metric', query );
401
+ tools.set_cookie( 'default_dimension', period );
402
+
403
  var data = {
404
  action : 'gadwp_backend_item_reports',
405
  gadwp_security_backend_item_reports : gadwp_item_data.security,
406
  from : from,
407
  to : to,
408
+ filter : item_id,
409
  }
410
 
411
  if ( jQuery.inArray( query, [ 'referrers', 'contentpages', 'searches' ] ) > -1 ) {
553
  if ( !jQuery.isNumeric( response[ 0 ] ) ) {
554
  if ( jQuery.isArray( response[ 0 ] ) ) {
555
  reports.mainchart = response[ 0 ];
556
+ if ( query == 'visitBounceRate' ) {
557
+ google.setOnLoadCallback( reports.drawmainchart( reports.mainchart, true ) );
558
+ } else {
559
+ google.setOnLoadCallback( reports.drawmainchart( reports.mainchart, false ) );
560
+ }
561
  } else {
562
  reports.throwDebug( response[ 0 ] );
563
  }
admin/js/ui.js ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "use strict";
2
+
3
+ jQuery( document ).ready( function () {
4
+
5
+ var gadwp_ui = {
6
+ action : 'gadwp_dismiss_notices',
7
+ gadwp_security_dismiss_notices : gadwp_ui_data.security,
8
+ }
9
+
10
+ jQuery( "#gadwp-notice .notice-dismiss" ).click( function () {
11
+ jQuery.post( gadwp_ui_data.ajaxurl, gadwp_ui, function ( response ) {
12
+ return true;
13
+ } );
14
+ } );
15
+
16
+ if (gadwp_ui_data.ed_bubble != ''){
17
+ jQuery('#toplevel_page_gadash_settings li > a[href*="page=gadash_errors_debugging"]').append('&nbsp;<span class="awaiting-mod count-1"><span class="pending-count" style="padding:0 7px;">'+gadwp_ui_data.ed_bubble+'</span></span>');
18
+ }
19
+
20
+ } );
admin/settings.php CHANGED
@@ -1259,6 +1259,8 @@ final class GADWP_Settings {
1259
  }
1260
 
1261
  public static function output_sidebar() {
 
 
1262
  $gadwp = GADWP();
1263
  ?>
1264
  </div>
@@ -1350,5 +1352,10 @@ final class GADWP_Settings {
1350
  </div>
1351
  </div>
1352
  </div>
1353
- <?php }
 
 
 
 
 
1354
  }
1259
  }
1260
 
1261
  public static function output_sidebar() {
1262
+ global $wp_version;
1263
+
1264
  $gadwp = GADWP();
1265
  ?>
1266
  </div>
1352
  </div>
1353
  </div>
1354
  </div>
1355
+ <?php
1356
+ //Dismiss the admin update notice
1357
+ if ( version_compare( $wp_version, '4.2', '<' ) && current_user_can('manage_options') ) {
1358
+ delete_option('gadwp_got_updated');
1359
+ }
1360
+ }
1361
  }
admin/setup.php CHANGED
@@ -27,24 +27,8 @@ if ( ! class_exists( 'GADWP_Backend_Setup' ) ) {
27
  add_action( 'network_admin_menu', array( $this, 'network_menu' ) );
28
  // Settings link
29
  add_filter( "plugin_action_links_" . plugin_basename( GADWP_DIR . 'gadwp.php' ), array( $this, 'settings_link' ) );
30
- // Error bubble
31
- add_action( 'admin_print_scripts', array( $this, 'draw_error_bubble' ), 10000 );
32
- }
33
-
34
- /**
35
- * Error bubble for Errors & Debug
36
- */
37
- public function draw_error_bubble() {
38
- $bubble_msg = '!';
39
- if ( get_transient( 'ga_dash_gapi_errors' ) ) {
40
- ?>
41
- <script type="text/javascript">
42
- jQuery(document).ready(function() {
43
- jQuery('#toplevel_page_gadash_settings li > a[href*="page=gadash_errors_debugging"]').append('&nbsp;<span class="awaiting-mod count-1"><span class="pending-count" style="padding:0 7px;"><?php echo $bubble_msg ?></span></span>');
44
- });
45
- </script>
46
- <?php
47
- }
48
  }
49
 
50
  /**
@@ -54,7 +38,7 @@ if ( ! class_exists( 'GADWP_Backend_Setup' ) ) {
54
  global $wp_version;
55
  if ( current_user_can( 'manage_options' ) ) {
56
  include ( GADWP_DIR . 'admin/settings.php' );
57
- add_menu_page( __( "Google Analytics", 'ga-dash' ), 'Google Analytics', 'manage_options', 'gadash_settings', array( 'GADWP_Settings', 'general_settings' ), version_compare( $wp_version, '3.8.0', '>=' ) ? 'dashicons-chart-area' : GADWP_URL . 'admin/images/gadash-icon.png' );
58
  add_submenu_page( 'gadash_settings', __( "General Settings", 'ga-dash' ), __( "General Settings", 'ga-dash' ), 'manage_options', 'gadash_settings', array( 'GADWP_Settings', 'general_settings' ) );
59
  add_submenu_page( 'gadash_settings', __( "Backend Settings", 'ga-dash' ), __( "Backend Settings", 'ga-dash' ), 'manage_options', 'gadash_backend_settings', array( 'GADWP_Settings', 'backend_settings' ) );
60
  add_submenu_page( 'gadash_settings', __( "Frontend Settings", 'ga-dash' ), __( "Frontend Settings", 'ga-dash' ), 'manage_options', 'gadash_frontend_settings', array( 'GADWP_Settings', 'frontend_settings' ) );
@@ -83,18 +67,46 @@ if ( ! class_exists( 'GADWP_Backend_Setup' ) ) {
83
  * $hook
84
  */
85
  public function load_styles_scripts( $hook ) {
 
 
 
 
 
 
 
86
 
87
  /*
88
  * GADWP main stylesheet
89
  */
90
  wp_enqueue_style( 'gadwp', GADWP_URL . 'admin/css/gadwp.css', null, GADWP_CURRENT_VERSION );
91
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
92
  /*
93
  * Dashboard Widgets Styles & Scripts
94
  */
95
  $widgets_hooks = array( 'index.php' );
96
 
97
- if ( in_array( $hook, $widgets_hooks ) ) {
98
  if ( GADWP_Tools::check_roles( $this->gadwp->config->options['ga_dash_access_back'] ) && $this->gadwp->config->options['dashboard_widget'] ) {
99
 
100
  wp_enqueue_style( 'gadwp-nprogress', GADWP_URL . 'tools/nprogress/nprogress.css', null, GADWP_CURRENT_VERSION );
@@ -146,9 +158,13 @@ if ( ! class_exists( 'GADWP_Backend_Setup' ) ) {
146
  'dateList' => array(
147
  'today' => __( "Today", 'ga-dash' ),
148
  'yesterday' => __( "Yesterday", 'ga-dash' ),
149
- '7daysAgo' => __( "Last 7 Days", 'ga-dash' ),
150
- '30daysAgo' => __( "Last 30 Days", 'ga-dash' ),
151
- '90daysAgo' => __( "Last 90 Days", 'ga-dash' ) ),
 
 
 
 
152
  'reportList' => array(
153
  'uniquePageviews' => __( "Unique Views", 'ga-dash' ),
154
  'users' => __( "Users", 'ga-dash' ),
@@ -158,7 +174,8 @@ if ( ! class_exists( 'GADWP_Backend_Setup' ) ) {
158
  'locations' => __( "Location", 'ga-dash' ),
159
  'referrers' => __( "Referrers", 'ga-dash' ),
160
  'searches' => __( "Searches", 'ga-dash' ),
161
- 'trafficdetails' => __( "Traffic Details", 'ga-dash' ) ),
 
162
  'i18n' => array(
163
  __( "A JavaScript Error is blocking plugin resources!", 'ga-dash' ),
164
  __( "Traffic Mediums", 'ga-dash' ),
@@ -174,9 +191,11 @@ if ( ! class_exists( 'GADWP_Backend_Setup' ) ) {
174
  __( "Invalid response, more details in JavaScript Console (F12).", 'ga-dash' ),
175
  __( "Not enough data collected", 'ga-dash' ),
176
  __( "This report is unavailable", 'ga-dash' ),
177
- __( "report generated by", 'ga-dash' ) ),
 
178
  'colorVariations' => GADWP_Tools::variations( $this->gadwp->config->options['ga_dash_style'] ),
179
- 'region' => $region )
 
180
  );
181
  /* @formatter:on */
182
  }
@@ -185,9 +204,9 @@ if ( ! class_exists( 'GADWP_Backend_Setup' ) ) {
185
  /*
186
  * Settings Styles & Scripts
187
  */
188
- $settings_hooks = array( 'toplevel_page_gadash_settings', 'google-analytics_page_gadash_backend_settings', 'google-analytics_page_gadash_frontend_settings', 'google-analytics_page_gadash_tracking_settings', 'google-analytics_page_gadash_errors_debugging' );
189
 
190
- if ( in_array( $hook, $settings_hooks ) ) {
191
  wp_enqueue_style( 'wp-color-picker' );
192
  wp_enqueue_script( 'wp-color-picker' );
193
  wp_enqueue_script( 'wp-color-picker-script-handle', plugins_url( 'js/wp-color-picker-script.js', __FILE__ ), array( 'wp-color-picker' ), false, true );
@@ -207,5 +226,18 @@ if ( ! class_exists( 'GADWP_Backend_Setup' ) ) {
207
  array_unshift( $links, $settings_link );
208
  return $links;
209
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
210
  }
211
  }
27
  add_action( 'network_admin_menu', array( $this, 'network_menu' ) );
28
  // Settings link
29
  add_filter( "plugin_action_links_" . plugin_basename( GADWP_DIR . 'gadwp.php' ), array( $this, 'settings_link' ) );
30
+ // Updated admin notice
31
+ add_action( 'admin_notices', array( $this, 'admin_notice' ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
32
  }
33
 
34
  /**
38
  global $wp_version;
39
  if ( current_user_can( 'manage_options' ) ) {
40
  include ( GADWP_DIR . 'admin/settings.php' );
41
+ add_menu_page( __( "Google Analytics", 'ga-dash' ), __( "Google Analytics", 'ga-dash' ), 'manage_options', 'gadash_settings', array( 'GADWP_Settings', 'general_settings' ), version_compare( $wp_version, '3.8.0', '>=' ) ? 'dashicons-chart-area' : GADWP_URL . 'admin/images/gadash-icon.png' );
42
  add_submenu_page( 'gadash_settings', __( "General Settings", 'ga-dash' ), __( "General Settings", 'ga-dash' ), 'manage_options', 'gadash_settings', array( 'GADWP_Settings', 'general_settings' ) );
43
  add_submenu_page( 'gadash_settings', __( "Backend Settings", 'ga-dash' ), __( "Backend Settings", 'ga-dash' ), 'manage_options', 'gadash_backend_settings', array( 'GADWP_Settings', 'backend_settings' ) );
44
  add_submenu_page( 'gadash_settings', __( "Frontend Settings", 'ga-dash' ), __( "Frontend Settings", 'ga-dash' ), 'manage_options', 'gadash_frontend_settings', array( 'GADWP_Settings', 'frontend_settings' ) );
67
  * $hook
68
  */
69
  public function load_styles_scripts( $hook ) {
70
+ $new_hook = explode( '_page_', $hook );
71
+
72
+ if ( isset( $new_hook[1] ) ) {
73
+ $new_hook = '_page_' . $new_hook[1];
74
+ } else {
75
+ $new_hook = $hook;
76
+ }
77
 
78
  /*
79
  * GADWP main stylesheet
80
  */
81
  wp_enqueue_style( 'gadwp', GADWP_URL . 'admin/css/gadwp.css', null, GADWP_CURRENT_VERSION );
82
 
83
+ /*
84
+ * GADWP UI
85
+ */
86
+
87
+ if ( get_transient( 'ga_dash_gapi_errors' ) ) {
88
+ $ed_bubble = '!';
89
+ }else{
90
+ $ed_bubble = '';
91
+ }
92
+
93
+ wp_enqueue_script( 'gadwp_backend_ui', plugins_url( 'js/ui.js', __FILE__ ), array( 'jquery' ), GADWP_CURRENT_VERSION, true );
94
+
95
+ /* @formatter:off */
96
+ wp_localize_script( 'gadwp_backend_ui', 'gadwp_ui_data', array(
97
+ 'ajaxurl' => admin_url( 'admin-ajax.php' ),
98
+ 'security' => wp_create_nonce( 'gadwp_dismiss_notices' ),
99
+ 'ed_bubble' => $ed_bubble,
100
+ )
101
+ );
102
+ /* @formatter:on */
103
+
104
  /*
105
  * Dashboard Widgets Styles & Scripts
106
  */
107
  $widgets_hooks = array( 'index.php' );
108
 
109
+ if ( in_array( $new_hook, $widgets_hooks ) ) {
110
  if ( GADWP_Tools::check_roles( $this->gadwp->config->options['ga_dash_access_back'] ) && $this->gadwp->config->options['dashboard_widget'] ) {
111
 
112
  wp_enqueue_style( 'gadwp-nprogress', GADWP_URL . 'tools/nprogress/nprogress.css', null, GADWP_CURRENT_VERSION );
158
  'dateList' => array(
159
  'today' => __( "Today", 'ga-dash' ),
160
  'yesterday' => __( "Yesterday", 'ga-dash' ),
161
+ '7daysAgo' => sprintf( __( "Last %d Days", 'ga-dash' ), 7 ),
162
+ '14daysAgo' => sprintf( __( "Last %d Days", 'ga-dash' ), 14 ),
163
+ '30daysAgo' => sprintf( __( "Last %d Days", 'ga-dash' ), 30 ),
164
+ '90daysAgo' => sprintf( __( "Last %d Days", 'ga-dash' ), 90 ),
165
+ '365daysAgo' => sprintf( _n( "%s Year", "%s Years", 1, 'ga-dash' ), __('One', 'ga-dash') ),
166
+ '1095daysAgo' => sprintf( _n( "%s Year", "%s Years", 3, 'ga-dash' ), __('Three', 'ga-dash') ),
167
+ ),
168
  'reportList' => array(
169
  'uniquePageviews' => __( "Unique Views", 'ga-dash' ),
170
  'users' => __( "Users", 'ga-dash' ),
174
  'locations' => __( "Location", 'ga-dash' ),
175
  'referrers' => __( "Referrers", 'ga-dash' ),
176
  'searches' => __( "Searches", 'ga-dash' ),
177
+ 'trafficdetails' => __( "Traffic Details", 'ga-dash' )
178
+ ),
179
  'i18n' => array(
180
  __( "A JavaScript Error is blocking plugin resources!", 'ga-dash' ),
181
  __( "Traffic Mediums", 'ga-dash' ),
191
  __( "Invalid response, more details in JavaScript Console (F12).", 'ga-dash' ),
192
  __( "Not enough data collected", 'ga-dash' ),
193
  __( "This report is unavailable", 'ga-dash' ),
194
+ __( "report generated by", 'ga-dash' ),
195
+ ),
196
  'colorVariations' => GADWP_Tools::variations( $this->gadwp->config->options['ga_dash_style'] ),
197
+ 'region' => $region,
198
+ )
199
  );
200
  /* @formatter:on */
201
  }
204
  /*
205
  * Settings Styles & Scripts
206
  */
207
+ $settings_hooks = array( '_page_gadash_settings', '_page_gadash_backend_settings', '_page_gadash_frontend_settings', '_page_gadash_tracking_settings', '_page_gadash_errors_debugging' );
208
 
209
+ if ( in_array( $new_hook, $settings_hooks ) ) {
210
  wp_enqueue_style( 'wp-color-picker' );
211
  wp_enqueue_script( 'wp-color-picker' );
212
  wp_enqueue_script( 'wp-color-picker-script-handle', plugins_url( 'js/wp-color-picker-script.js', __FILE__ ), array( 'wp-color-picker' ), false, true );
226
  array_unshift( $links, $settings_link );
227
  return $links;
228
  }
229
+
230
+ /**
231
+ * Add an admin notice after a manual or atuomatic update
232
+ */
233
+ function admin_notice() {
234
+ if ( get_option( 'gadwp_got_updated' ) ) :
235
+ ?>
236
+ <div id="gadwp-notice" class="notice is-dismissible">
237
+ <p><?php echo sprintf( __('Google Analytics Dashboard for WP has been updated to version %s.', 'ga-dash' ), GADWP_CURRENT_VERSION).' '.sprintf(__('For details, check out %1$s and %2$s.'),sprintf(' <a href="https://deconf.com/google-analytics-dashboard-wordpress/?utm_source=gadwp_notice&utm_medium=link&utm_content=release_notice&utm_campaign=gadwp">%s</a> ', __('the documentation page', 'ga-dash') ), sprintf(' <a href="%1$s">%2$s</a>', esc_url( get_admin_url( null, 'admin.php?page=gadash_settings' ) ), __('the plugin&#39;s settings page', 'ga-dash') )); ?></p>
238
+ </div>
239
+ <?php
240
+ endif;
241
+ }
242
  }
243
  }
admin/widgets.php CHANGED
@@ -19,16 +19,12 @@ if ( ! class_exists( 'GADWP_Backend_Widgets' ) ) {
19
  public function __construct() {
20
  $this->gadwp = GADWP();
21
  if ( GADWP_Tools::check_roles( $this->gadwp->config->options['ga_dash_access_back'] ) && ( 1 == $this->gadwp->config->options['dashboard_widget'] ) ) {
22
- add_action( 'wp_dashboard_setup', array(
23
- $this,
24
- 'add_widget' ) );
25
  }
26
  }
27
 
28
  public function add_widget() {
29
- wp_add_dashboard_widget( 'gadash-widget', __( "Google Analytics Dashboard", 'ga-dash' ), array(
30
- $this,
31
- 'dashboard_widget' ), $control_callback = null );
32
  }
33
 
34
  public function dashboard_widget() {
@@ -101,31 +97,35 @@ if ( ! class_exists( 'GADWP_Backend_Widgets' ) ) {
101
  }
102
  if ( isset( $_REQUEST['query'] ) ) {
103
  $query = $_REQUEST['query'];
104
- $this->gadwp->config->options['ga_dash_default_metric'] = $query;
105
  $this->gadwp->config->set_plugin_options();
106
  } else {
107
- $query = isset( $this->gadwp->config->options['ga_dash_default_metric'] ) ? $this->gadwp->config->options['ga_dash_default_metric'] : 'sessions';
 
108
  }
109
  if ( isset( $_REQUEST['period'] ) ) {
110
  $period = $_REQUEST['period'];
111
- $this->gadwp->config->options['ga_dash_default_dimension'] = $period;
112
  $this->gadwp->config->set_plugin_options();
113
  } else {
114
- $period = isset( $this->gadwp->config->options['ga_dash_default_dimension'] ) ? $this->gadwp->config->options['ga_dash_default_dimension'] : '30daysAgo';
 
115
  }
116
  ?>
117
-
118
- <select id="ga_dash_period" name="period" onchange="this.form.submit()">
119
  <option value="realtime" <?php selected ( "realtime", $period, true ); ?>><?php _e("Real-Time",'ga-dash'); ?></option>
120
  <option value="today" <?php selected ( "today", $period, true ); ?>><?php _e("Today",'ga-dash'); ?></option>
121
  <option value="yesterday" <?php selected ( "yesterday", $period, true ); ?>><?php _e("Yesterday",'ga-dash'); ?></option>
122
- <option value="7daysAgo" <?php selected ( "7daysAgo", $period, true ); ?>><?php _e("Last 7 Days",'ga-dash'); ?></option>
123
- <option value="14daysAgo" <?php selected ( "14daysAgo", $period, true ); ?>><?php _e("Last 14 Days",'ga-dash'); ?></option>
124
- <option value="30daysAgo" <?php selected ( "30daysAgo", $period, true ); ?>><?php _e("Last 30 Days",'ga-dash'); ?></option>
125
- <option value="90daysAgo" <?php selected ( "90daysAgo", $period, true ); ?>><?php _e("Last 90 Days",'ga-dash'); ?></option>
 
 
126
  </select>
 
127
  <?php if ($period != 'realtime') {?>
128
- <select id="ga_dash_query" name="query" onchange="this.form.submit()">
129
  <option value="sessions" <?php selected ( "sessions", $query, true ); ?>><?php _e("Sessions",'ga-dash'); ?></option>
130
  <option value="users" <?php selected ( "users", $query, true ); ?>><?php _e("Users",'ga-dash'); ?></option>
131
  <option value="organicSearches" <?php selected ( "organicSearches", $query, true ); ?>><?php _e("Organic",'ga-dash'); ?></option>
@@ -162,15 +162,25 @@ if ( ! class_exists( 'GADWP_Backend_Widgets' ) ) {
162
  $to = 'yesterday';
163
  $haxis = 3;
164
  break;
165
- case '30daysAgo' :
166
- $from = '30daysAgo';
 
 
 
 
 
 
 
 
 
 
167
  $to = 'yesterday';
168
  $haxis = 5;
169
  break;
170
  default :
171
- $from = '90daysAgo';
172
  $to = 'yesterday';
173
- $haxis = 16;
174
  break;
175
  }
176
  if ( $query == 'visitBounceRate' ) {
19
  public function __construct() {
20
  $this->gadwp = GADWP();
21
  if ( GADWP_Tools::check_roles( $this->gadwp->config->options['ga_dash_access_back'] ) && ( 1 == $this->gadwp->config->options['dashboard_widget'] ) ) {
22
+ add_action( 'wp_dashboard_setup', array( $this, 'add_widget' ) );
 
 
23
  }
24
  }
25
 
26
  public function add_widget() {
27
+ wp_add_dashboard_widget( 'gadash-widget', __( "Google Analytics Dashboard", 'ga-dash' ), array( $this, 'dashboard_widget' ), $control_callback = null );
 
 
28
  }
29
 
30
  public function dashboard_widget() {
97
  }
98
  if ( isset( $_REQUEST['query'] ) ) {
99
  $query = $_REQUEST['query'];
100
+ GADWP_Tools::set_cookie( 'default_metric', $query );
101
  $this->gadwp->config->set_plugin_options();
102
  } else {
103
+ $default_metric = GADWP_Tools::get_cookie( 'default_metric' );
104
+ $query = $default_metric ? esc_html( $default_metric ) : 'sessions';
105
  }
106
  if ( isset( $_REQUEST['period'] ) ) {
107
  $period = $_REQUEST['period'];
108
+ GADWP_Tools::set_cookie( 'default_dimension', $period );
109
  $this->gadwp->config->set_plugin_options();
110
  } else {
111
+ $default_dimension = GADWP_Tools::get_cookie( 'default_dimension' );
112
+ $period = $default_dimension ? esc_html( $default_dimension ) : '30daysAgo';
113
  }
114
  ?>
115
+ <select id="ga_dash_period" name="period" onchange="this.form.submit()">
 
116
  <option value="realtime" <?php selected ( "realtime", $period, true ); ?>><?php _e("Real-Time",'ga-dash'); ?></option>
117
  <option value="today" <?php selected ( "today", $period, true ); ?>><?php _e("Today",'ga-dash'); ?></option>
118
  <option value="yesterday" <?php selected ( "yesterday", $period, true ); ?>><?php _e("Yesterday",'ga-dash'); ?></option>
119
+ <option value="7daysAgo" <?php selected ( "7daysAgo", $period, true ); ?>><?php printf( __( "Last %d Days", 'ga-dash' ), 7 ); ?></option>
120
+ <option value="14daysAgo" <?php selected ( "14daysAgo", $period, true ); ?>><?php printf( __( "Last %d Days", 'ga-dash' ), 14 ); ?></option>
121
+ <option value="30daysAgo" <?php selected ( "30daysAgo", $period, true ); ?>><?php printf( __( "Last %d Days", 'ga-dash' ), 30 ); ?></option>
122
+ <option value="90daysAgo" <?php selected ( "90daysAgo", $period, true ); ?>><?php printf( __( "Last %d Days", 'ga-dash' ), 90 ); ?></option>
123
+ <option value="365daysAgo" <?php selected ( "365daysAgo", $period, true ); ?>><?php printf( _n( "%s Year", "%s Years", 1, 'ga-dash' ), __('One', 'ga-dash') ); ?></option>
124
+ <option value="1095daysAgo" <?php selected ( "1095daysAgo", $period, true ); ?>><?php printf( _n( "%s Year", "%s Years", 3, 'ga-dash' ), __('Three', 'ga-dash') ); ?></option>
125
  </select>
126
+
127
  <?php if ($period != 'realtime') {?>
128
+ <select id="ga_dash_query" name="query" onchange="this.form.submit()">
129
  <option value="sessions" <?php selected ( "sessions", $query, true ); ?>><?php _e("Sessions",'ga-dash'); ?></option>
130
  <option value="users" <?php selected ( "users", $query, true ); ?>><?php _e("Users",'ga-dash'); ?></option>
131
  <option value="organicSearches" <?php selected ( "organicSearches", $query, true ); ?>><?php _e("Organic",'ga-dash'); ?></option>
162
  $to = 'yesterday';
163
  $haxis = 3;
164
  break;
165
+ case '90daysAgo' :
166
+ $from = '90daysAgo';
167
+ $to = 'yesterday';
168
+ $haxis = 16;
169
+ break;
170
+ case '365daysAgo' :
171
+ $from = '365daysAgo';
172
+ $to = 'yesterday';
173
+ $haxis = 5;
174
+ break;
175
+ case '1095daysAgo' :
176
+ $from = '1095daysAgo';
177
  $to = 'yesterday';
178
  $haxis = 5;
179
  break;
180
  default :
181
+ $from = '30daysAgo';
182
  $to = 'yesterday';
183
+ $haxis = 5;
184
  break;
185
  }
186
  if ( $query == 'visitBounceRate' ) {
config.php CHANGED
@@ -185,7 +185,7 @@ if (! class_exists('GADWP_Config')) {
185
  $network_options = (array) json_decode($get_network_options);
186
  if (isset($network_options['ga_dash_network']) && ($network_options['ga_dash_network'])) {
187
  $network_options = (array) json_decode($get_network_options);
188
- if (! is_network_admin() && ! empty($network_options['ga_dash_profile_list'])) {
189
  $network_options['ga_dash_profile_list'] = array(
190
  0 => GADWP_Tools::get_selected_profile($network_options['ga_dash_profile_list'], $network_options['ga_dash_tableid_network']->$blog_id)
191
  );
@@ -199,12 +199,14 @@ if (! class_exists('GADWP_Config')) {
199
  private function maintain_compatibility()
200
  {
201
  $flag = false;
 
202
  if (GADWP_CURRENT_VERSION != get_option('gadwp_version')) {
203
  GADWP_Tools::clear_cache();
204
  $flag = true;
205
  $this->options['automatic_updates_minorversion'] = 1;
206
  delete_transient('ga_dash_lasterror');
207
  update_option('gadwp_version', GADWP_CURRENT_VERSION);
 
208
  if (is_multisite()) { // Cleanup errors on the entire network
209
  foreach (wp_get_sites(array(
210
  'limit' => apply_filters('gadwp_sites_limit', 100)
@@ -309,6 +311,14 @@ if (! class_exists('GADWP_Config')) {
309
  $this->options['backend_item_reports'] = 1;
310
  $flag = true;
311
  }
 
 
 
 
 
 
 
 
312
  if (isset($this->options['item_reports'])) { //v4.8
313
  $this->options['backend_item_reports'] = $this->options['item_reports'];
314
  unset($this->options['item_reports']);
185
  $network_options = (array) json_decode($get_network_options);
186
  if (isset($network_options['ga_dash_network']) && ($network_options['ga_dash_network'])) {
187
  $network_options = (array) json_decode($get_network_options);
188
+ if (! is_network_admin() && ! empty($network_options['ga_dash_profile_list']) && isset($network_options['ga_dash_tableid_network']->$blog_id)) {
189
  $network_options['ga_dash_profile_list'] = array(
190
  0 => GADWP_Tools::get_selected_profile($network_options['ga_dash_profile_list'], $network_options['ga_dash_tableid_network']->$blog_id)
191
  );
199
  private function maintain_compatibility()
200
  {
201
  $flag = false;
202
+
203
  if (GADWP_CURRENT_VERSION != get_option('gadwp_version')) {
204
  GADWP_Tools::clear_cache();
205
  $flag = true;
206
  $this->options['automatic_updates_minorversion'] = 1;
207
  delete_transient('ga_dash_lasterror');
208
  update_option('gadwp_version', GADWP_CURRENT_VERSION);
209
+ update_option('gadwp_got_updated', true);
210
  if (is_multisite()) { // Cleanup errors on the entire network
211
  foreach (wp_get_sites(array(
212
  'limit' => apply_filters('gadwp_sites_limit', 100)
311
  $this->options['backend_item_reports'] = 1;
312
  $flag = true;
313
  }
314
+ if ( isset($this->options['ga_dash_default_metric'])) { //v4.8.1
315
+ unset($this->options['ga_dash_default_metric']);
316
+ $flag = true;
317
+ }
318
+ if ( isset($this->options['ga_dash_default_dimension'])) { //v4.8.1
319
+ unset($this->options['ga_dash_default_dimension']);
320
+ $flag = true;
321
+ }
322
  if (isset($this->options['item_reports'])) { //v4.8
323
  $this->options['backend_item_reports'] = $this->options['item_reports'];
324
  unset($this->options['item_reports']);
front/ajax-actions.php CHANGED
@@ -49,6 +49,8 @@ if ( ! class_exists( 'GADWP_Frontend_Ajax' ) ) {
49
 
50
  // allow URL correction before sending an API request
51
  $filter = apply_filters( 'gadwp_frontenditem_uri', $uri );
 
 
52
  $filter = rawurlencode( rawurldecode( $filter ) );
53
 
54
  $query = $_REQUEST['query'];
49
 
50
  // allow URL correction before sending an API request
51
  $filter = apply_filters( 'gadwp_frontenditem_uri', $uri );
52
+
53
+ // Encode URL
54
  $filter = rawurlencode( rawurldecode( $filter ) );
55
 
56
  $query = $_REQUEST['query'];
front/js/item-reports.js CHANGED
@@ -1 +1 @@
1
- "use strict";
1
+ "use strict";
front/setup.php CHANGED
@@ -70,9 +70,13 @@ if ( ! class_exists( 'GADWP_Frontend_Setup' ) ) {
70
  'dateList' => array(
71
  'today' => __( "Today", 'ga-dash' ),
72
  'yesterday' => __( "Yesterday", 'ga-dash' ),
73
- '7daysAgo' => __( "Last 7 Days", 'ga-dash' ),
74
- '30daysAgo' => __( "Last 30 Days", 'ga-dash' ),
75
- '90daysAgo' => __( "Last 90 Days", 'ga-dash' ) ),
 
 
 
 
76
  'reportList' => array(
77
  'uniquePageviews' => __( "Unique Views", 'ga-dash' ),
78
  'users' => __( "Users", 'ga-dash' ),
@@ -82,7 +86,8 @@ if ( ! class_exists( 'GADWP_Frontend_Setup' ) ) {
82
  'locations' => __( "Location", 'ga-dash' ),
83
  'referrers' => __( "Referrers", 'ga-dash' ),
84
  'searches' => __( "Searches", 'ga-dash' ),
85
- 'trafficdetails' => __( "Traffic Details", 'ga-dash' ) ),
 
86
  'i18n' => array(
87
  __( "A JavaScript Error is blocking plugin resources!", 'ga-dash' ),
88
  __( "Traffic Mediums", 'ga-dash' ),
@@ -98,9 +103,11 @@ if ( ! class_exists( 'GADWP_Frontend_Setup' ) ) {
98
  __( "Invalid response, more details in JavaScript Console (F12).", 'ga-dash' ),
99
  __( "Not enough data collected", 'ga-dash' ),
100
  __( "This report is unavailable", 'ga-dash' ),
101
- __( "report generated by", 'ga-dash' ) ),
 
102
  'colorVariations' => GADWP_Tools::variations( $this->gadwp->config->options['ga_dash_style'] ),
103
- 'region' => $region )
 
104
  );
105
  /* @formatter:on */
106
  }
70
  'dateList' => array(
71
  'today' => __( "Today", 'ga-dash' ),
72
  'yesterday' => __( "Yesterday", 'ga-dash' ),
73
+ '7daysAgo' => sprintf( __( "Last %d Days", 'ga-dash' ), 7 ),
74
+ '14daysAgo' => sprintf( __( "Last %d Days", 'ga-dash' ), 14 ),
75
+ '30daysAgo' => sprintf( __( "Last %d Days", 'ga-dash' ), 30 ),
76
+ '90daysAgo' => sprintf( __( "Last %d Days", 'ga-dash' ), 90 ),
77
+ '365daysAgo' => sprintf( _n( "%s Year", "%s Years", 1, 'ga-dash' ), __('One', 'ga-dash') ),
78
+ '1095daysAgo' => sprintf( _n( "%s Year", "%s Years", 3, 'ga-dash' ), __('Three', 'ga-dash') ),
79
+ ),
80
  'reportList' => array(
81
  'uniquePageviews' => __( "Unique Views", 'ga-dash' ),
82
  'users' => __( "Users", 'ga-dash' ),
86
  'locations' => __( "Location", 'ga-dash' ),
87
  'referrers' => __( "Referrers", 'ga-dash' ),
88
  'searches' => __( "Searches", 'ga-dash' ),
89
+ 'trafficdetails' => __( "Traffic Details", 'ga-dash' ),
90
+ ),
91
  'i18n' => array(
92
  __( "A JavaScript Error is blocking plugin resources!", 'ga-dash' ),
93
  __( "Traffic Mediums", 'ga-dash' ),
103
  __( "Invalid response, more details in JavaScript Console (F12).", 'ga-dash' ),
104
  __( "Not enough data collected", 'ga-dash' ),
105
  __( "This report is unavailable", 'ga-dash' ),
106
+ __( "report generated by", 'ga-dash' ),
107
+ ),
108
  'colorVariations' => GADWP_Tools::variations( $this->gadwp->config->options['ga_dash_style'] ),
109
+ 'region' => $region,
110
+ )
111
  );
112
  /* @formatter:on */
113
  }
front/widgets.php CHANGED
@@ -61,13 +61,13 @@ final class GADWP_Frontend_Widget extends WP_Widget {
61
  $periodtext = "";
62
  switch ( $instance['period'] ) {
63
  case '7daysAgo' :
64
- $periodtext = __( 'Last 7 Days', 'ga-dash' );
65
  break;
66
  case '14daysAgo' :
67
- $periodtext = __( 'Last 14 Days', 'ga-dash' );
68
  break;
69
  case '30daysAgo' :
70
- $periodtext = __( 'Last 30 Days', 'ga-dash' );
71
  break;
72
  default :
73
  $periodtext = "";
@@ -140,30 +140,30 @@ final class GADWP_Frontend_Widget extends WP_Widget {
140
  $anonim = ( isset( $instance['anonim'] ) ? $instance['anonim'] : 0 );
141
  /* @formatter:off */
142
  ?>
143
- <p>
144
- <label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( "Title:",'ga-dash' ); ?></label> <input class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" type="text" value="<?php echo esc_attr( $widget_title ); ?>">
145
- </p>
146
- <p>
147
- <label for="<?php echo $this->get_field_id( 'display' ); ?>"><?php _e( "Display:",'ga-dash' ); ?></label> <select id="<?php echo $this->get_field_id('display'); ?>" class="widefat" name="<?php echo $this->get_field_name( 'display' ); ?>">
148
- <option value="1" <?php selected( $display, 1 ); ?>><?php _e('Chart & Totals', 'ga-dash');?></option>
149
- <option value="2" <?php selected( $display, 2 ); ?>><?php _e('Chart', 'ga-dash');?></option>
150
- <option value="3" <?php selected( $display, 3 ); ?>><?php _e('Totals', 'ga-dash');?></option>
151
- </select>
152
- </p>
153
- <p>
154
- <label for="<?php echo $this->get_field_id( 'anonim' ); ?>"><?php _e( "Anonymize stats:",'ga-dash' ); ?></label> <input class="widefat" id="<?php echo $this->get_field_id( 'anonim' ); ?>" name="<?php echo $this->get_field_name( 'anonim' ); ?>" type="checkbox" <?php checked( $anonim, 1 ); ?> value="1">
155
- </p>
156
- <p>
157
- <label for="<?php echo $this->get_field_id( 'period' ); ?>"><?php _e( "Stats for:",'ga-dash' ); ?></label> <select id="<?php echo $this->get_field_id('period'); ?>" class="widefat" name="<?php echo $this->get_field_name( 'period' ); ?>">
158
- <option value="7daysAgo" <?php selected( $period, '7daysAgo' ); ?>><?php _e('Last 7 Days', 'ga-dash');?></option>
159
- <option value="14daysAgo" <?php selected( $period, '14daysAgo' ); ?>><?php _e('Last 14 Days', 'ga-dash');?></option>
160
- <option value="30daysAgo" <?php selected( $period, '30daysAgo' ); ?>><?php _e('Last 30 Days', 'ga-dash');?></option>
161
- </select>
162
- </p>
163
- <p>
164
- <label for="<?php echo $this->get_field_id( 'give_credits' ); ?>"><?php _e( "Give credits:",'ga-dash' ); ?></label> <input class="widefat" id="<?php echo $this->get_field_id( 'give_credits' ); ?>" name="<?php echo $this->get_field_name( 'give_credits' ); ?>" type="checkbox" <?php checked( $give_credits, 1 ); ?> value="1">
165
- </p>
166
- <?php
167
  /* @formatter:on */
168
  }
169
 
61
  $periodtext = "";
62
  switch ( $instance['period'] ) {
63
  case '7daysAgo' :
64
+ $periodtext = sprintf( __( 'Last %d Days', 'ga-dash' ), 7 );
65
  break;
66
  case '14daysAgo' :
67
+ $periodtext = sprintf( __( 'Last %d Days', 'ga-dash' ), 14 );
68
  break;
69
  case '30daysAgo' :
70
+ $periodtext = sprintf( __( 'Last %d Days', 'ga-dash' ), 30 );
71
  break;
72
  default :
73
  $periodtext = "";
140
  $anonim = ( isset( $instance['anonim'] ) ? $instance['anonim'] : 0 );
141
  /* @formatter:off */
142
  ?>
143
+ <p>
144
+ <label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( "Title:",'ga-dash' ); ?></label> <input class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" type="text" value="<?php echo esc_attr( $widget_title ); ?>">
145
+ </p>
146
+ <p>
147
+ <label for="<?php echo $this->get_field_id( 'display' ); ?>"><?php _e( "Display:",'ga-dash' ); ?></label> <select id="<?php echo $this->get_field_id('display'); ?>" class="widefat" name="<?php echo $this->get_field_name( 'display' ); ?>">
148
+ <option value="1" <?php selected( $display, 1 ); ?>><?php _e('Chart & Totals', 'ga-dash');?></option>
149
+ <option value="2" <?php selected( $display, 2 ); ?>><?php _e('Chart', 'ga-dash');?></option>
150
+ <option value="3" <?php selected( $display, 3 ); ?>><?php _e('Totals', 'ga-dash');?></option>
151
+ </select>
152
+ </p>
153
+ <p>
154
+ <label for="<?php echo $this->get_field_id( 'anonim' ); ?>"><?php _e( "Anonymize stats:",'ga-dash' ); ?></label> <input class="widefat" id="<?php echo $this->get_field_id( 'anonim' ); ?>" name="<?php echo $this->get_field_name( 'anonim' ); ?>" type="checkbox" <?php checked( $anonim, 1 ); ?> value="1">
155
+ </p>
156
+ <p>
157
+ <label for="<?php echo $this->get_field_id( 'period' ); ?>"><?php _e( "Stats for:",'ga-dash' ); ?></label> <select id="<?php echo $this->get_field_id('period'); ?>" class="widefat" name="<?php echo $this->get_field_name( 'period' ); ?>">
158
+ <option value="7daysAgo" <?php selected( $period, '7daysAgo' ); ?>><?php printf( __('Last %d Days', 'ga-dash'), 7 );?></option>
159
+ <option value="14daysAgo" <?php selected( $period, '14daysAgo' ); ?>><?php printf( __('Last %d Days', 'ga-dash'), 14 );?></option>
160
+ <option value="30daysAgo" <?php selected( $period, '30daysAgo' ); ?>><?php printf( __('Last %d Days', 'ga-dash'), 30 );?></option>
161
+ </select>
162
+ </p>
163
+ <p>
164
+ <label for="<?php echo $this->get_field_id( 'give_credits' ); ?>"><?php _e( "Give credits:",'ga-dash' ); ?></label> <input class="widefat" id="<?php echo $this->get_field_id( 'give_credits' ); ?>" name="<?php echo $this->get_field_name( 'give_credits' ); ?>" type="checkbox" <?php checked( $give_credits, 1 ); ?> value="1">
165
+ </p>
166
+ <?php
167
  /* @formatter:on */
168
  }
169
 
gadwp.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin URI: https://deconf.com
5
  * Description: Displays Google Analytics Reports and Real-Time Statistics in your Dashboard. Automatically inserts the tracking code in every page of your website.
6
  * Author: Alin Marcu
7
- * Version: 4.8
8
  * Author URI: https://deconf.com
9
  */
10
 
@@ -82,7 +82,7 @@ if ( ! class_exists( 'GADWP_Manager' ) ) {
82
 
83
  // Plugin Version
84
  if ( ! defined( 'GADWP_CURRENT_VERSION' ) ) {
85
- define( 'GADWP_CURRENT_VERSION', '4.8' );
86
  }
87
 
88
  // Plugin Path
@@ -175,7 +175,9 @@ if ( ! class_exists( 'GADWP_Manager' ) ) {
175
  * Load Backend ajax actions
176
  */
177
  include_once ( GADWP_DIR . 'admin/ajax-actions.php' );
 
178
  self::$instance->backend_actions = new GADWP_Backend_Ajax();
 
179
  }
180
 
181
  /*
4
  * Plugin URI: https://deconf.com
5
  * Description: Displays Google Analytics Reports and Real-Time Statistics in your Dashboard. Automatically inserts the tracking code in every page of your website.
6
  * Author: Alin Marcu
7
+ * Version: 4.8.1
8
  * Author URI: https://deconf.com
9
  */
10
 
82
 
83
  // Plugin Version
84
  if ( ! defined( 'GADWP_CURRENT_VERSION' ) ) {
85
+ define( 'GADWP_CURRENT_VERSION', '4.8.1' );
86
  }
87
 
88
  // Plugin Path
175
  * Load Backend ajax actions
176
  */
177
  include_once ( GADWP_DIR . 'admin/ajax-actions.php' );
178
+ include_once ( GADWP_DIR . 'admin/ajax-actions-ui.php' );
179
  self::$instance->backend_actions = new GADWP_Backend_Ajax();
180
+ new GADWP_UI_Ajax();
181
  }
182
 
183
  /*
install/install.php CHANGED
@@ -43,8 +43,6 @@ class GADWP_Install {
43
  $options['ga_tracking_code'] = '';
44
  $options['ga_enhanced_links'] = 0;
45
  $options['ga_dash_remarketing'] = 0;
46
- $options['ga_dash_default_metric'] = 'sessions';
47
- $options['ga_dash_default_dimension'] = '30daysAgo';
48
  $options['ga_dash_frontend_stats'] = 0;
49
  $options['ga_dash_network'] = 0;
50
  $options['ga_dash_adsense'] = 0;
@@ -96,8 +94,6 @@ class GADWP_Install {
96
  $options['ga_dash_frontend_keywords'] = 0;
97
  $options['ga_enhanced_links'] = 0;
98
  $options['ga_dash_remarketing'] = 0;
99
- $options['ga_dash_default_metric'] = 'sessions';
100
- $options['ga_dash_default_dimension'] = '30daysAgo';
101
  $options['ga_dash_network'] = 0;
102
  $options['ga_event_bouncerate'] = 0;
103
  $options['ga_crossdomain_tracking'] = 0;
43
  $options['ga_tracking_code'] = '';
44
  $options['ga_enhanced_links'] = 0;
45
  $options['ga_dash_remarketing'] = 0;
 
 
46
  $options['ga_dash_frontend_stats'] = 0;
47
  $options['ga_dash_network'] = 0;
48
  $options['ga_dash_adsense'] = 0;
94
  $options['ga_dash_frontend_keywords'] = 0;
95
  $options['ga_enhanced_links'] = 0;
96
  $options['ga_dash_remarketing'] = 0;
 
 
97
  $options['ga_dash_network'] = 0;
98
  $options['ga_event_bouncerate'] = 0;
99
  $options['ga_crossdomain_tracking'] = 0;
languages/ga-dash-ar.po CHANGED
@@ -3,354 +3,350 @@ msgstr ""
3
  "Project-Id-Version: Google Analytics Dashboard for WP\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-"
5
  "dashboard-for-wp\n"
6
- "POT-Creation-Date: 2015-05-21 19:46+0200\n"
7
- "PO-Revision-Date: 2015-05-21 19:46+0200\n"
8
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
9
  "Language-Team: Ahmed Majed <admin@almobdaa.com>\n"
10
  "Language: ar\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
- "X-Generator: Poedit 1.8\n"
15
- "X-Poedit-KeywordsList: _e;__\n"
16
  "X-Poedit-Basepath: .\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
  "Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
19
  "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
20
  "X-Poedit-SearchPath-0: ../.\n"
21
 
22
- #: .././admin/item-reports.php:52
23
  msgid "Analytics"
24
  msgstr ""
25
 
26
- #: .././admin/settings.php:94 .././admin/settings.php:197
27
- #: .././admin/settings.php:328 .././admin/settings.php:803
28
- #: .././admin/settings.php:1079
29
  msgid "Settings saved."
30
  msgstr ""
31
 
32
- #: .././admin/settings.php:96 .././admin/settings.php:199
33
- #: .././admin/settings.php:330 .././admin/settings.php:780
34
- #: .././admin/settings.php:790 .././admin/settings.php:799
35
- #: .././admin/settings.php:805 .././admin/settings.php:817
36
- #: .././admin/settings.php:1040 .././admin/settings.php:1065
37
- #: .././admin/settings.php:1075 .././admin/settings.php:1081
38
- #: .././admin/settings.php:1093
39
  msgid "Cheating Huh?"
40
  msgstr "تغش ها؟"
41
 
42
- #: .././admin/settings.php:100 .././admin/settings.php:203
43
- #: .././admin/settings.php:334 .././admin/settings.php:647
44
- #: .././admin/settings.php:832 .././admin/settings.php:1107
45
  #, php-format
46
  msgid "Something went wrong, check %1$s or %2$s."
47
  msgstr ""
48
 
49
- #: .././admin/settings.php:100 .././admin/settings.php:203
50
- #: .././admin/settings.php:334 .././admin/settings.php:647
51
- #: .././admin/settings.php:832 .././admin/settings.php:1107
52
- #: .././admin/setup.php:82 .././admin/setup.php:101
53
  msgid "Errors & Debug"
54
  msgstr ""
55
 
56
- #: .././admin/settings.php:100 .././admin/settings.php:203
57
- #: .././admin/settings.php:334 .././admin/settings.php:647
58
- #: .././admin/settings.php:832 .././admin/settings.php:1107
59
  msgid "authorize the plugin"
60
  msgstr "صرح بالدخول للأضافة"
61
 
62
- #: .././admin/settings.php:105
63
  msgid "Google Analytics Frontend Settings"
64
  msgstr "اعدادات الظهور الامامي لأحصائيات كوكل"
65
 
66
- #: .././admin/settings.php:115 .././admin/settings.php:218
67
  msgid "Permissions"
68
  msgstr ""
69
 
70
- #: .././admin/settings.php:118 .././admin/settings.php:221
71
  msgid "Show stats to:"
72
  msgstr ""
73
 
74
- #: .././admin/settings.php:157
75
- msgid "show page sessions and users in frontend (after each article)"
76
  msgstr ""
77
 
78
- #: .././admin/settings.php:168
79
- msgid "show page searches (after each article)"
80
- msgstr ""
81
-
82
- #: .././admin/settings.php:175 .././admin/settings.php:308
83
- #: .././admin/settings.php:605 .././admin/settings.php:952
84
- #: .././admin/settings.php:1245
85
  msgid "Save Changes"
86
  msgstr ""
87
 
88
- #: .././admin/settings.php:208
89
  msgid "Google Analytics Backend Settings"
90
  msgstr ""
91
 
92
- #: .././admin/settings.php:262
93
  msgid "enable Switch View functionality"
94
  msgstr ""
95
 
96
- #: .././admin/settings.php:273
97
  msgid "enable reports on Posts List and Pages List"
98
  msgstr ""
99
 
100
- #: .././admin/settings.php:284
101
  msgid "enable the main Dashboard Widget"
102
  msgstr ""
103
 
104
- #: .././admin/settings.php:288
105
  msgid "Real-Time Settings"
106
  msgstr "اعدادات الوقت الحقيقي"
107
 
108
- #: .././admin/settings.php:291
109
  msgid "Maximum number of pages to display on real-time tab:"
110
  msgstr "اكثر عدد صفحات يتم اظهارها في قسم الوقت الحقيقي:"
111
 
112
- #: .././admin/settings.php:296
113
  msgid "Location Settings"
114
  msgstr ""
115
 
116
- #: .././admin/settings.php:300
117
  msgid "Target Geo Map to country:"
118
  msgstr ""
119
 
120
- #: .././admin/settings.php:337
121
  msgid ""
122
  "The tracking component is disabled. You should set <strong>Tracking Options</"
123
  "strong> to <strong>Enabled</strong>"
124
  msgstr ""
125
 
126
- #: .././admin/settings.php:342
127
  msgid "Google Analytics Tracking Code"
128
  msgstr "كود تعقب احصائيات كوكل"
129
 
130
- #: .././admin/settings.php:351
131
  msgid "Basic Settings"
132
  msgstr ""
133
 
134
- #: .././admin/settings.php:352 .././admin/settings.php:417
135
  msgid "Events Tracking"
136
  msgstr "تعقب الافعال"
137
 
138
- #: .././admin/settings.php:353 .././admin/settings.php:465
139
  msgid "Custom Definitions"
140
  msgstr "تعاريف مخصصة"
141
 
142
- #: .././admin/settings.php:354 .././admin/settings.php:563
143
- #: .././admin/settings.php:1228
144
  msgid "Exclude Tracking"
145
  msgstr "لا تتبع"
146
 
147
- #: .././admin/settings.php:355
148
  msgid "Advanced Settings"
149
  msgstr ""
150
 
151
- #: .././admin/settings.php:362
152
  msgid "Tracking Settings"
153
  msgstr "اعدادات التعقب"
154
 
155
- #: .././admin/settings.php:365
156
  msgid "Tracking Options:"
157
  msgstr ""
158
 
159
- #: .././admin/settings.php:367
160
  msgid "Disabled"
161
  msgstr "تعطيل"
162
 
163
- #: .././admin/settings.php:368
164
  msgid "Enabled"
165
  msgstr "تفعيل"
166
 
167
- #: .././admin/settings.php:376 .././admin/settings.php:897
168
- #: .././admin/settings.php:919 .././admin/settings.php:1201
169
- #: .././admin/widgets.php:71
170
  msgid "View Name:"
171
  msgstr "شاهد الاسم:"
172
 
173
- #: .././admin/settings.php:376 .././admin/settings.php:919
174
  msgid "Tracking ID:"
175
  msgstr "معرف التعقب:"
176
 
177
- #: .././admin/settings.php:376 .././admin/settings.php:919
178
  msgid "Default URL:"
179
  msgstr "الرابط الرئيسي:"
180
 
181
- #: .././admin/settings.php:376 .././admin/settings.php:919
182
  msgid "Time Zone:"
183
  msgstr "المنطقة الزمنية:"
184
 
185
- #: .././admin/settings.php:381
186
  msgid "Basic Tracking"
187
  msgstr "التعقب الاساسي"
188
 
189
- #: .././admin/settings.php:384
190
  msgid "Tracking Type:"
191
  msgstr ""
192
 
193
- #: .././admin/settings.php:386
194
  msgid "Classic Analytics"
195
  msgstr "الاحصائيات الكلاسيكية"
196
 
197
- #: .././admin/settings.php:387
198
  msgid "Universal Analytics"
199
  msgstr "الاحصائيات العالمية"
200
 
201
- #: .././admin/settings.php:398
202
  msgid "anonymize IPs while tracking"
203
  msgstr ""
204
 
205
- #: .././admin/settings.php:409
206
  msgid "enable remarketing, demographics and interests reports"
207
  msgstr ""
208
 
209
- #: .././admin/settings.php:427
210
  msgid "track downloads, mailto and outbound links"
211
  msgstr ""
212
 
213
- #: .././admin/settings.php:431
214
  msgid "Downloads Regex:"
215
  msgstr "حمل التقارير"
216
 
217
- #: .././admin/settings.php:442
218
  msgid "track affiliate links matching this regex"
219
  msgstr ""
220
 
221
- #: .././admin/settings.php:446
222
  msgid "Affiliates Regex:"
223
  msgstr "روابط الداعمين:"
224
 
225
- #: .././admin/settings.php:457
226
  msgid "track fragment identifiers, hashmarks (#) in URI links"
227
  msgstr ""
228
 
229
- #: .././admin/settings.php:468
230
  msgid "Authors:"
231
  msgstr ""
232
 
233
- #: .././admin/settings.php:476
234
  msgid "Publication Year:"
235
  msgstr ""
236
 
237
- #: .././admin/settings.php:484
238
  msgid "Categories:"
239
  msgstr ""
240
 
241
- #: .././admin/settings.php:492
242
  msgid "User Type:"
243
  msgstr ""
244
 
245
- #: .././admin/settings.php:504
246
  msgid "Advanced Tracking"
247
  msgstr "تتبع متطور"
248
 
249
- #: .././admin/settings.php:507
250
  msgid "Page Speed SR:"
251
  msgstr "سرعة الصفحة:"
252
 
253
- #: .././admin/settings.php:518
254
  msgid "exclude events from bounce-rate calculation"
255
  msgstr ""
256
 
257
- #: .././admin/settings.php:529
258
  msgid "enable enhanced link attribution"
259
  msgstr ""
260
 
261
- #: .././admin/settings.php:540
262
  msgid "enable AdSense account linking"
263
  msgstr ""
264
 
265
- #: .././admin/settings.php:551
266
  msgid "enable cross domain tracking"
267
  msgstr ""
268
 
269
- #: .././admin/settings.php:555
270
  msgid "Cross Domains:"
271
  msgstr "عبر الروابط التالية:"
272
 
273
- #: .././admin/settings.php:566
274
  msgid "Exclude tracking for:"
275
  msgstr ""
276
 
277
- #: .././admin/settings.php:651
278
  msgid "Google Analytics Errors & Debugging"
279
  msgstr ""
280
 
281
- #: .././admin/settings.php:661
282
  msgid "Errors & Details"
283
  msgstr ""
284
 
285
- #: .././admin/settings.php:662
286
  msgid "Plugin Settings"
287
  msgstr ""
288
 
289
- #: .././admin/settings.php:670
290
  msgid "Last Error detected"
291
  msgstr ""
292
 
293
- #: .././admin/settings.php:676 .././admin/settings.php:689
294
  msgid "None"
295
  msgstr ""
296
 
297
- #: .././admin/settings.php:683
298
  msgid "Error Details"
299
  msgstr ""
300
 
301
- #: .././admin/settings.php:703
302
  msgid "Plugin Configuration"
303
  msgstr ""
304
 
305
- #: .././admin/settings.php:725 .././admin/settings.php:990
306
  msgid ""
307
  "Loading the required libraries. If this results in a blank screen or a fatal "
308
  "error, try this solution:"
309
  msgstr ""
310
 
311
- #: .././admin/settings.php:725
312
  msgid "Library conflicts between WordPress plugins"
313
  msgstr ""
314
 
315
- #: .././admin/settings.php:740 .././admin/settings.php:1007
316
  msgid "Plugin authorization succeeded."
317
  msgstr "تم تفعيل تصريح الاضافة بنجاح."
318
 
319
- #: .././admin/settings.php:755 .././admin/settings.php:1031
320
  msgid ""
321
  "The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
322
  "(UA-XXXXX-X). Try again, and use the red link to get your access code"
323
  msgstr ""
324
 
325
- #: .././admin/settings.php:778 .././admin/settings.php:1063
326
  msgid "Cleared Cache."
327
  msgstr "الخزن المزال."
328
 
329
- #: .././admin/settings.php:787 .././admin/settings.php:1072
330
  msgid "Token Reseted and Revoked."
331
  msgstr "الجزء المراح والمعدل."
332
 
333
- #: .././admin/settings.php:797
334
  msgid "All errors reseted."
335
  msgstr ""
336
 
337
- #: .././admin/settings.php:810 .././admin/settings.php:1086
338
  msgid "All other domains/properties were removed."
339
  msgstr "كل الروابط/والخصائص تم إزالتها."
340
 
341
- #: .././admin/settings.php:822 .././admin/settings.php:1098
342
  msgid "Google Analytics Settings"
343
  msgstr "إعدادات احصائيات كوكل"
344
 
345
- #: .././admin/settings.php:837 .././admin/settings.php:1112
346
  msgid "Use the red link (see below) to generate and get your access code!"
347
  msgstr ""
348
 
349
- #: .././admin/settings.php:848 .././admin/settings.php:1140
350
  msgid "Plugin Authorization"
351
  msgstr "تصريح الأضافة"
352
 
353
- #: .././admin/settings.php:853 .././admin/settings.php:1144
354
  #, php-format
355
  msgid ""
356
  "You should watch the %1$s and read this %2$s before proceeding to "
@@ -358,112 +354,107 @@ msgid ""
358
  "account!"
359
  msgstr ""
360
 
361
- #: .././admin/settings.php:853 .././admin/settings.php:1144
362
  msgid "video"
363
  msgstr "الڤيديو"
364
 
365
- #: .././admin/settings.php:853 .././admin/settings.php:1144
366
  msgid "tutorial"
367
  msgstr "الدرس"
368
 
369
- #: .././admin/settings.php:858 .././admin/settings.php:1151
370
  msgid "use your own API Project credentials"
371
  msgstr ""
372
 
373
- #: .././admin/settings.php:863 .././admin/settings.php:1159
374
  msgid "API Key:"
375
  msgstr "مفتاح API:"
376
 
377
- #: .././admin/settings.php:867 .././admin/settings.php:1163
378
  msgid "Client ID:"
379
  msgstr "معرف الزيون:"
380
 
381
- #: .././admin/settings.php:871 .././admin/settings.php:1167
382
  msgid "Client Secret:"
383
  msgstr "سر الزبون:"
384
 
385
- #: .././admin/settings.php:881 .././admin/settings.php:1177
386
  msgid "Clear Authorization"
387
  msgstr "أزل التصريحات"
388
 
389
- #: .././admin/settings.php:881 .././admin/settings.php:959
390
- #: .././admin/settings.php:1177 .././admin/settings.php:1254
391
  msgid "Clear Cache"
392
  msgstr "أزل الخزن"
393
 
394
- #: .././admin/settings.php:881
395
  msgid "Reset Errors"
396
  msgstr ""
397
 
398
- #: .././admin/settings.php:887 .././admin/setup.php:70 .././admin/setup.php:98
399
  msgid "General Settings"
400
  msgstr "الأعدادات العامة"
401
 
402
- #: .././admin/settings.php:890
403
  msgid "Select View:"
404
  msgstr ""
405
 
406
- #: .././admin/settings.php:901 .././admin/settings.php:1205
407
  msgid "Property not found"
408
  msgstr ""
409
 
410
- #: .././admin/settings.php:907
411
  msgid "Lock Selection"
412
  msgstr ""
413
 
414
- #: .././admin/settings.php:926
415
  msgid "Theme Color:"
416
  msgstr ""
417
 
418
- #: .././admin/settings.php:934 .././admin/settings.php:1214
419
  msgid "Automatic Updates"
420
  msgstr ""
421
 
422
- #: .././admin/settings.php:944 .././admin/settings.php:1224
423
  msgid ""
424
  "automatic updates for minor versions (security and maintenance releases only)"
425
  msgstr ""
426
 
427
- #: .././admin/settings.php:959 .././admin/settings.php:1254
428
- #: .././admin/widgets.php:42
429
  msgid "Authorize Plugin"
430
  msgstr "صرح الأضافة "
431
 
432
- #: .././admin/settings.php:1037
433
  msgid "Properties refreshed."
434
  msgstr "تم تحديث الخصائص."
435
 
436
- #: .././admin/settings.php:1122
437
  msgid "Network Setup"
438
  msgstr "اعدادات الشبكة"
439
 
440
- #: .././admin/settings.php:1132
441
  msgid "use a single Google Analytics account for the entire network"
442
  msgstr ""
443
 
444
- #: .././admin/settings.php:1177
445
  msgid "Refresh Properties"
446
  msgstr "حدث الخصائص"
447
 
448
- #: .././admin/settings.php:1183
449
  msgid "Properties/Views Settings"
450
  msgstr "اعدادات الخصائص/المشاهدة"
451
 
452
- #: .././admin/settings.php:1238
453
  msgid "exclude Super Admin tracking for the entire network"
454
  msgstr ""
455
 
456
- #: .././admin/settings.php:1285
457
  msgid "Setup Tutorial & Demo"
458
  msgstr "درس التنصيب"
459
 
460
- #: .././admin/settings.php:1293
461
- msgid "Support & Reviews"
462
- msgstr "الدعم والتقييم"
463
-
464
- #: .././admin/settings.php:1300
465
- #, php-format
466
- msgid "Plugin documentation and support on %s"
467
  msgstr ""
468
 
469
  #: .././admin/settings.php:1307
@@ -519,175 +510,210 @@ msgstr ""
519
  msgid "Web Analytics"
520
  msgstr "احصائيات الويب"
521
 
522
- #: .././admin/setup.php:67 .././admin/setup.php:95
523
  msgid "Google Analytics"
524
  msgstr "أحصائيات كوكل"
525
 
526
- #: .././admin/setup.php:73
527
  msgid "Backend Settings"
528
  msgstr "أعدادات العمل"
529
 
530
- #: .././admin/setup.php:76
531
  msgid "Frontend Settings"
532
  msgstr "اعدادات الظهور"
533
 
534
- #: .././admin/setup.php:79
535
  msgid "Tracking Code"
536
  msgstr "كود التعقب"
537
 
538
- #: .././admin/setup.php:169 .././admin/widgets.php:126
539
  msgid "Today"
540
  msgstr "اليوم"
541
 
542
- #: .././admin/setup.php:170 .././admin/widgets.php:127
543
  msgid "Yesterday"
544
  msgstr "البارحة"
545
 
546
- #: .././admin/setup.php:171 .././admin/widgets.php:128
547
- #: .././front/widgets.php:74 .././front/widgets.php:182
548
- msgid "Last 7 Days"
549
- msgstr "اخر ٧ ايام"
 
 
 
 
 
 
 
550
 
551
- #: .././admin/setup.php:172 .././admin/widgets.php:130
552
- #: .././front/widgets.php:80 .././front/widgets.php:184
553
- msgid "Last 30 Days"
554
- msgstr "اخر ٣٠ يوم"
 
 
555
 
556
- #: .././admin/setup.php:173 .././admin/widgets.php:131
557
- msgid "Last 90 Days"
558
- msgstr "أخر ٩٠ يوم"
559
 
560
- #: .././admin/setup.php:175 .././admin/setup.php:190
 
 
 
 
 
561
  msgid "Unique Views"
562
  msgstr ""
563
 
564
- #: .././admin/setup.php:176 .././admin/setup.php:191
565
- #: .././admin/widgets.php:136 .././admin/widgets.php:875
566
- #: .././tools/gapi.php:391
567
  msgid "Users"
568
  msgstr ""
569
 
570
- #: .././admin/setup.php:177 .././admin/widgets.php:137
571
  msgid "Organic"
572
  msgstr "عضوي"
573
 
574
- #: .././admin/setup.php:178 .././admin/setup.php:192
575
- #: .././admin/widgets.php:138 .././admin/widgets.php:879
576
- #: .././tools/gapi.php:394
577
  msgid "Page Views"
578
  msgstr "مشاهدات الصفحة"
579
 
580
- #: .././admin/setup.php:179 .././admin/setup.php:193
581
- #: .././admin/widgets.php:139 .././admin/widgets.php:883
582
- #: .././tools/gapi.php:397
583
  msgid "Bounce Rate"
584
  msgstr "نسبة القفز"
585
 
586
- #: .././admin/setup.php:180 .././admin/widgets.php:140
587
  msgid "Location"
588
  msgstr ""
589
 
590
- #: .././admin/setup.php:181 .././admin/widgets.php:142 .././tools/gapi.php:566
 
591
  msgid "Referrers"
592
  msgstr ""
593
 
594
- #: .././admin/setup.php:182 .././admin/widgets.php:143 .././tools/gapi.php:612
595
- #: .././tools/gapi.php:918
596
  msgid "Searches"
597
  msgstr ""
598
 
599
- #: .././admin/setup.php:183 .././admin/widgets.php:144
600
  msgid "Traffic Details"
601
  msgstr ""
602
 
603
- #: .././admin/setup.php:185 .././admin/widgets.php:510
604
- #: .././admin/widgets.php:607 .././admin/widgets.php:805
605
- #: .././admin/widgets.php:917 .././front/item-reports.php:97
606
  msgid "A JavaScript Error is blocking plugin resources!"
607
  msgstr ""
608
 
609
- #: .././admin/setup.php:186 .././admin/widgets.php:713
610
  msgid "Traffic Mediums"
611
  msgstr ""
612
 
613
- #: .././admin/setup.php:187 .././admin/widgets.php:729
614
  msgid "Visitor Type"
615
  msgstr ""
616
 
617
- #: .././admin/setup.php:188 .././admin/widgets.php:745
618
  msgid "Social Networks"
619
  msgstr ""
620
 
621
- #: .././admin/setup.php:189 .././admin/widgets.php:761
622
  msgid "Search Engines"
623
  msgstr ""
624
 
625
- #: .././admin/setup.php:194 .././admin/widgets.php:887
 
626
  msgid "Organic Search"
627
  msgstr ""
628
 
629
- #: .././admin/setup.php:195 .././admin/widgets.php:891
 
630
  msgid "Pages/Session"
631
  msgstr ""
632
 
633
- #: .././admin/setup.php:196 .././admin/widgets.php:523
634
- #: .././admin/widgets.php:541 .././admin/widgets.php:620
635
- #: .././admin/widgets.php:638 .././admin/widgets.php:657
636
- #: .././admin/widgets.php:676 .././admin/widgets.php:696
637
- #: .././admin/widgets.php:819 .././admin/widgets.php:930
638
- #: .././admin/widgets.php:949 .././front/item-reports.php:109
639
- #: .././front/item-reports.php:128
 
640
  msgid "Invalid response, more details in JavaScript Console (F12)."
641
  msgstr ""
642
 
643
- #: .././admin/setup.php:197
644
  msgid "Not enough data collected"
645
  msgstr ""
646
 
647
- #: .././admin/setup.php:198 .././admin/widgets.php:528
648
- #: .././admin/widgets.php:546 .././admin/widgets.php:625
649
- #: .././admin/widgets.php:643 .././admin/widgets.php:662
650
- #: .././admin/widgets.php:681 .././admin/widgets.php:701
651
- #: .././admin/widgets.php:824 .././admin/widgets.php:827
652
- #: .././admin/widgets.php:935 .././admin/widgets.php:954
653
- #: .././front/item-reports.php:114 .././front/item-reports.php:133
654
- #: .././front/widgets.php:110
655
  msgid "This report is unavailable"
656
  msgstr ""
657
 
658
- #: .././admin/setup.php:199
659
  msgid "report generated by"
660
  msgstr ""
661
 
662
- #: .././admin/setup.php:233
663
  msgid "Settings"
664
  msgstr "الاعدادات"
665
 
666
- #: .././admin/widgets.php:33 .././front/widgets.php:22
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
667
  msgid "Google Analytics Dashboard"
668
  msgstr "لوحة أحصائيات كوكل"
669
 
670
- #: .././admin/widgets.php:42
671
  msgid "This plugin needs an authorization:"
672
  msgstr "هذه الاضافة تحتاج الى تصريح:"
673
 
674
- #: .././admin/widgets.php:76
675
  msgid "Something went wrong while retrieving profiles list."
676
  msgstr "حدث خطأ ما اثناء استرجاع قائمة البروفايلات."
677
 
678
- #: .././admin/widgets.php:76
679
  msgid "More details"
680
  msgstr "المزيد من التفاصيل"
681
 
682
- #: .././admin/widgets.php:89 .././admin/widgets.php:100
683
  msgid "An admin should asign a default Google Analytics Profile."
684
  msgstr "المدير يجب ان يحصل على حساب احصائيات كوكل رئيسي."
685
 
686
- #: .././admin/widgets.php:89 .././admin/widgets.php:100
687
  msgid "Select Domain"
688
  msgstr "حدد النطاق"
689
 
690
- #: .././admin/widgets.php:105
691
  msgid ""
692
  "Something went wrong while retrieving property data. You need to create and "
693
  "properly configure a Google Analytics account:"
@@ -695,192 +721,196 @@ msgstr ""
695
  "حدث خطأ ما اثناء استرجاع بيانات الملكية. تحتاج الى انشاء واعداد حساب كوكل "
696
  "للأحصائيات بصورة صحيحة:"
697
 
698
- #: .././admin/widgets.php:105
699
  msgid "Find out more!"
700
  msgstr "اعرف أكثر!"
701
 
702
- #: .././admin/widgets.php:125
703
  msgid "Real-Time"
704
  msgstr "الوقت الحقيقي"
705
 
706
- #: .././admin/widgets.php:129 .././front/widgets.php:77
707
- #: .././front/widgets.php:183
708
- msgid "Last 14 Days"
709
- msgstr "أخر ١٤ يوم"
710
-
711
- #: .././admin/widgets.php:135 .././admin/widgets.php:871
712
- #: .././front/widgets.php:46 .././tools/gapi.php:406 .././tools/gapi.php:567
713
- #: .././tools/gapi.php:613 .././tools/gapi.php:676 .././tools/gapi.php:786
714
- #: .././tools/gapi.php:827 .././tools/gapi.php:919
715
  msgid "Sessions"
716
  msgstr ""
717
 
718
- #: .././admin/widgets.php:141 .././tools/gapi.php:521
719
  msgid "Pages"
720
  msgstr ""
721
 
722
- #: .././admin/widgets.php:232 .././admin/widgets.php:472
723
  msgid "REFERRAL"
724
  msgstr "المصدر"
725
 
726
- #: .././admin/widgets.php:236 .././admin/widgets.php:473
727
  msgid "ORGANIC"
728
  msgstr "عضوي"
729
 
730
- #: .././admin/widgets.php:240 .././admin/widgets.php:360
731
- #: .././admin/widgets.php:474
732
  msgid "SOCIAL"
733
  msgstr "اجتماعي"
734
 
735
- #: .././admin/widgets.php:244 .././admin/widgets.php:363
736
- #: .././admin/widgets.php:475
737
  msgid "CAMPAIGN"
738
  msgstr ""
739
 
740
- #: .././admin/widgets.php:248 .././admin/widgets.php:366
741
- #: .././admin/widgets.php:478
742
  msgid "DIRECT"
743
  msgstr "مباشر"
744
 
745
- #: .././admin/widgets.php:252 .././admin/widgets.php:479
746
  msgid "NEW"
747
  msgstr "جديد"
748
 
749
- #: .././admin/widgets.php:354
750
  msgid "REFERRALS"
751
  msgstr "المصادر"
752
 
753
- #: .././admin/widgets.php:357
754
  msgid "KEYWORDS"
755
  msgstr "الكلمات المفتاحية"
756
 
757
- #: .././front/item-reports.php:143
758
- msgid "Views vs UniqueViews"
759
- msgstr "المشاهدات ضد المشاهدات الحقيقية"
760
-
761
- #: .././front/item-reports.php:193
762
- msgid "Google Analytics Reports"
763
- msgstr ""
764
-
765
- #: .././front/widgets.php:23
766
  msgid "Will display your google analytics stats in a widget"
767
  msgstr "ستظهر احصائيات حسابك في مربع جانبي"
768
 
769
- #: .././front/widgets.php:46 .././tools/gapi.php:827
770
  msgid "trend"
771
  msgstr ""
772
 
773
- #: .././front/widgets.php:133
774
  msgid "Period:"
775
  msgstr "الفترة:"
776
 
777
- #: .././front/widgets.php:133
778
  msgid "Sessions:"
779
  msgstr ""
780
 
781
- #: .././front/widgets.php:137
782
  msgid "generated by"
783
  msgstr "اظهرت بواسطة"
784
 
785
- #: .././front/widgets.php:147
786
  msgid "Google Analytics Stats"
787
  msgstr "احصائيات كوكل"
788
 
789
- #: .././front/widgets.php:154
790
  msgid "Title:"
791
  msgstr "العنوان:"
792
 
793
- #: .././front/widgets.php:161
794
  msgid "Display:"
795
  msgstr "اظهر:"
796
 
797
- #: .././front/widgets.php:165
798
  msgid "Chart & Totals"
799
  msgstr "الاحصائيات والكل"
800
 
801
- #: .././front/widgets.php:166
802
  msgid "Chart"
803
  msgstr "الاحصائيات"
804
 
805
- #: .././front/widgets.php:167
806
  msgid "Totals"
807
  msgstr "الكل"
808
 
809
- #: .././front/widgets.php:171
810
  msgid "Anonymize stats:"
811
  msgstr ""
812
 
813
- #: .././front/widgets.php:178
814
  msgid "Stats for:"
815
  msgstr "الاحصائيات لـ:"
816
 
817
- #: .././front/widgets.php:188
818
  msgid "Give credits:"
819
  msgstr "أعطي الفضل:"
820
 
821
- #: .././gadwp.php:46 .././gadwp.php:55 .././gadwp.php:63
822
  msgid "This is not allowed, read the documentation!"
823
  msgstr ""
824
 
825
- #: .././tools/gapi.php:134
826
  msgid "Use this link to get your access code:"
827
  msgstr "أستخدم هذا الرابط للحصول على كود التعقب الخاص بك:"
828
 
829
- #: .././tools/gapi.php:134
830
  msgid "Get Access Code"
831
  msgstr "احصل على كود الدخول"
832
 
833
- #: .././tools/gapi.php:138 .././tools/gapi.php:139
834
  msgid "Use the red link to get your access code!"
835
  msgstr ""
836
 
837
- #: .././tools/gapi.php:138
838
  msgid "Access Code:"
839
  msgstr "كود الدخول:"
840
 
841
- #: .././tools/gapi.php:145
842
  msgid "Save Access Code"
843
  msgstr "أحفظ كود الدخول"
844
 
845
- #: .././tools/gapi.php:400
846
  msgid "Organic Searches"
847
  msgstr "البحث العضوي"
848
 
849
- #: .././tools/gapi.php:403
850
  msgid "Unique Page Views"
851
  msgstr ""
852
 
853
- #: .././tools/gapi.php:411
854
  msgid "Hour"
855
  msgstr "الساعة"
856
 
857
- #: .././tools/gapi.php:414 .././tools/gapi.php:826 .././tools/gapi.php:876
858
  msgid "Date"
859
  msgstr "التاريخ"
860
 
861
- #: .././tools/gapi.php:522 .././tools/gapi.php:877
862
  msgid "Views"
863
  msgstr "المشاهدات"
864
 
865
- #: .././tools/gapi.php:640
866
  msgid "Countries"
867
  msgstr ""
868
 
869
- #: .././tools/gapi.php:650
870
  msgid "Cities from"
871
  msgstr ""
872
 
873
- #: .././tools/gapi.php:722
874
  msgid "Channels"
875
  msgstr ""
876
 
877
- #: .././tools/gapi.php:785
878
  msgid "Type"
879
  msgstr "النوع"
880
 
881
- #: .././tools/gapi.php:878
882
- msgid "UniqueViews"
883
- msgstr "المشاهدات الخاصة"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
884
 
885
  #~ msgid "and/or hide all other domains"
886
  #~ msgstr "و/أو أخفي كل الروابط الأخرى"
3
  "Project-Id-Version: Google Analytics Dashboard for WP\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-"
5
  "dashboard-for-wp\n"
6
+ "POT-Creation-Date: 2015-07-05 16:05+0300\n"
7
+ "PO-Revision-Date: 2015-07-05 16:05+0300\n"
8
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
9
  "Language-Team: Ahmed Majed <admin@almobdaa.com>\n"
10
  "Language: ar\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Poedit 1.8.2\n"
15
+ "X-Poedit-KeywordsList: __;_e;_n;_x;_ex;_nx;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;esc_html_x;_n_noop;_nx_noop\n"
16
  "X-Poedit-Basepath: .\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
  "Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
19
  "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
20
  "X-Poedit-SearchPath-0: ../.\n"
21
 
22
+ #: .././admin/item-reports.php:61 .././front/item-reports.php:29
23
  msgid "Analytics"
24
  msgstr ""
25
 
26
+ #: .././admin/settings.php:89 .././admin/settings.php:184
27
+ #: .././admin/settings.php:318 .././admin/settings.php:795
28
+ #: .././admin/settings.php:1068
29
  msgid "Settings saved."
30
  msgstr ""
31
 
32
+ #: .././admin/settings.php:91 .././admin/settings.php:186
33
+ #: .././admin/settings.php:320 .././admin/settings.php:772
34
+ #: .././admin/settings.php:782 .././admin/settings.php:791
35
+ #: .././admin/settings.php:797 .././admin/settings.php:808
36
+ #: .././admin/settings.php:1029 .././admin/settings.php:1054
37
+ #: .././admin/settings.php:1064 .././admin/settings.php:1070
38
+ #: .././admin/settings.php:1081
39
  msgid "Cheating Huh?"
40
  msgstr "تغش ها؟"
41
 
42
+ #: .././admin/settings.php:95 .././admin/settings.php:190
43
+ #: .././admin/settings.php:324 .././admin/settings.php:641
44
+ #: .././admin/settings.php:823 .././admin/settings.php:1095
45
  #, php-format
46
  msgid "Something went wrong, check %1$s or %2$s."
47
  msgstr ""
48
 
49
+ #: .././admin/settings.php:95 .././admin/settings.php:190
50
+ #: .././admin/settings.php:324 .././admin/settings.php:641
51
+ #: .././admin/settings.php:823 .././admin/settings.php:1095
52
+ #: .././admin/setup.php:46 .././admin/setup.php:59
53
  msgid "Errors & Debug"
54
  msgstr ""
55
 
56
+ #: .././admin/settings.php:95 .././admin/settings.php:190
57
+ #: .././admin/settings.php:324 .././admin/settings.php:641
58
+ #: .././admin/settings.php:823 .././admin/settings.php:1095
59
  msgid "authorize the plugin"
60
  msgstr "صرح بالدخول للأضافة"
61
 
62
+ #: .././admin/settings.php:100
63
  msgid "Google Analytics Frontend Settings"
64
  msgstr "اعدادات الظهور الامامي لأحصائيات كوكل"
65
 
66
+ #: .././admin/settings.php:110 .././admin/settings.php:205
67
  msgid "Permissions"
68
  msgstr ""
69
 
70
+ #: .././admin/settings.php:113 .././admin/settings.php:208
71
  msgid "Show stats to:"
72
  msgstr ""
73
 
74
+ #: .././admin/settings.php:154
75
+ msgid "enable web page reports on frontend"
76
  msgstr ""
77
 
78
+ #: .././admin/settings.php:161 .././admin/settings.php:297
79
+ #: .././admin/settings.php:598 .././admin/settings.php:943
80
+ #: .././admin/settings.php:1232
 
 
 
 
81
  msgid "Save Changes"
82
  msgstr ""
83
 
84
+ #: .././admin/settings.php:195
85
  msgid "Google Analytics Backend Settings"
86
  msgstr ""
87
 
88
+ #: .././admin/settings.php:251
89
  msgid "enable Switch View functionality"
90
  msgstr ""
91
 
92
+ #: .././admin/settings.php:262
93
  msgid "enable reports on Posts List and Pages List"
94
  msgstr ""
95
 
96
+ #: .././admin/settings.php:273
97
  msgid "enable the main Dashboard Widget"
98
  msgstr ""
99
 
100
+ #: .././admin/settings.php:277
101
  msgid "Real-Time Settings"
102
  msgstr "اعدادات الوقت الحقيقي"
103
 
104
+ #: .././admin/settings.php:280
105
  msgid "Maximum number of pages to display on real-time tab:"
106
  msgstr "اكثر عدد صفحات يتم اظهارها في قسم الوقت الحقيقي:"
107
 
108
+ #: .././admin/settings.php:285
109
  msgid "Location Settings"
110
  msgstr ""
111
 
112
+ #: .././admin/settings.php:289
113
  msgid "Target Geo Map to country:"
114
  msgstr ""
115
 
116
+ #: .././admin/settings.php:327
117
  msgid ""
118
  "The tracking component is disabled. You should set <strong>Tracking Options</"
119
  "strong> to <strong>Enabled</strong>"
120
  msgstr ""
121
 
122
+ #: .././admin/settings.php:332
123
  msgid "Google Analytics Tracking Code"
124
  msgstr "كود تعقب احصائيات كوكل"
125
 
126
+ #: .././admin/settings.php:341
127
  msgid "Basic Settings"
128
  msgstr ""
129
 
130
+ #: .././admin/settings.php:342 .././admin/settings.php:408
131
  msgid "Events Tracking"
132
  msgstr "تعقب الافعال"
133
 
134
+ #: .././admin/settings.php:343 .././admin/settings.php:456
135
  msgid "Custom Definitions"
136
  msgstr "تعاريف مخصصة"
137
 
138
+ #: .././admin/settings.php:344 .././admin/settings.php:554
139
+ #: .././admin/settings.php:1215
140
  msgid "Exclude Tracking"
141
  msgstr "لا تتبع"
142
 
143
+ #: .././admin/settings.php:345
144
  msgid "Advanced Settings"
145
  msgstr ""
146
 
147
+ #: .././admin/settings.php:353
148
  msgid "Tracking Settings"
149
  msgstr "اعدادات التعقب"
150
 
151
+ #: .././admin/settings.php:356
152
  msgid "Tracking Options:"
153
  msgstr ""
154
 
155
+ #: .././admin/settings.php:358
156
  msgid "Disabled"
157
  msgstr "تعطيل"
158
 
159
+ #: .././admin/settings.php:359
160
  msgid "Enabled"
161
  msgstr "تفعيل"
162
 
163
+ #: .././admin/settings.php:367 .././admin/settings.php:888
164
+ #: .././admin/settings.php:910 .././admin/settings.php:1188
165
+ #: .././admin/widgets.php:61
166
  msgid "View Name:"
167
  msgstr "شاهد الاسم:"
168
 
169
+ #: .././admin/settings.php:367 .././admin/settings.php:910
170
  msgid "Tracking ID:"
171
  msgstr "معرف التعقب:"
172
 
173
+ #: .././admin/settings.php:367 .././admin/settings.php:910
174
  msgid "Default URL:"
175
  msgstr "الرابط الرئيسي:"
176
 
177
+ #: .././admin/settings.php:367 .././admin/settings.php:910
178
  msgid "Time Zone:"
179
  msgstr "المنطقة الزمنية:"
180
 
181
+ #: .././admin/settings.php:372
182
  msgid "Basic Tracking"
183
  msgstr "التعقب الاساسي"
184
 
185
+ #: .././admin/settings.php:375
186
  msgid "Tracking Type:"
187
  msgstr ""
188
 
189
+ #: .././admin/settings.php:377
190
  msgid "Classic Analytics"
191
  msgstr "الاحصائيات الكلاسيكية"
192
 
193
+ #: .././admin/settings.php:378
194
  msgid "Universal Analytics"
195
  msgstr "الاحصائيات العالمية"
196
 
197
+ #: .././admin/settings.php:389
198
  msgid "anonymize IPs while tracking"
199
  msgstr ""
200
 
201
+ #: .././admin/settings.php:400
202
  msgid "enable remarketing, demographics and interests reports"
203
  msgstr ""
204
 
205
+ #: .././admin/settings.php:418
206
  msgid "track downloads, mailto and outbound links"
207
  msgstr ""
208
 
209
+ #: .././admin/settings.php:422
210
  msgid "Downloads Regex:"
211
  msgstr "حمل التقارير"
212
 
213
+ #: .././admin/settings.php:433
214
  msgid "track affiliate links matching this regex"
215
  msgstr ""
216
 
217
+ #: .././admin/settings.php:437
218
  msgid "Affiliates Regex:"
219
  msgstr "روابط الداعمين:"
220
 
221
+ #: .././admin/settings.php:448
222
  msgid "track fragment identifiers, hashmarks (#) in URI links"
223
  msgstr ""
224
 
225
+ #: .././admin/settings.php:459
226
  msgid "Authors:"
227
  msgstr ""
228
 
229
+ #: .././admin/settings.php:467
230
  msgid "Publication Year:"
231
  msgstr ""
232
 
233
+ #: .././admin/settings.php:475
234
  msgid "Categories:"
235
  msgstr ""
236
 
237
+ #: .././admin/settings.php:483
238
  msgid "User Type:"
239
  msgstr ""
240
 
241
+ #: .././admin/settings.php:495
242
  msgid "Advanced Tracking"
243
  msgstr "تتبع متطور"
244
 
245
+ #: .././admin/settings.php:498
246
  msgid "Page Speed SR:"
247
  msgstr "سرعة الصفحة:"
248
 
249
+ #: .././admin/settings.php:509
250
  msgid "exclude events from bounce-rate calculation"
251
  msgstr ""
252
 
253
+ #: .././admin/settings.php:520
254
  msgid "enable enhanced link attribution"
255
  msgstr ""
256
 
257
+ #: .././admin/settings.php:531
258
  msgid "enable AdSense account linking"
259
  msgstr ""
260
 
261
+ #: .././admin/settings.php:542
262
  msgid "enable cross domain tracking"
263
  msgstr ""
264
 
265
+ #: .././admin/settings.php:546
266
  msgid "Cross Domains:"
267
  msgstr "عبر الروابط التالية:"
268
 
269
+ #: .././admin/settings.php:557
270
  msgid "Exclude tracking for:"
271
  msgstr ""
272
 
273
+ #: .././admin/settings.php:645
274
  msgid "Google Analytics Errors & Debugging"
275
  msgstr ""
276
 
277
+ #: .././admin/settings.php:655
278
  msgid "Errors & Details"
279
  msgstr ""
280
 
281
+ #: .././admin/settings.php:656
282
  msgid "Plugin Settings"
283
  msgstr ""
284
 
285
+ #: .././admin/settings.php:663
286
  msgid "Last Error detected"
287
  msgstr ""
288
 
289
+ #: .././admin/settings.php:669 .././admin/settings.php:682
290
  msgid "None"
291
  msgstr ""
292
 
293
+ #: .././admin/settings.php:676
294
  msgid "Error Details"
295
  msgstr ""
296
 
297
+ #: .././admin/settings.php:696
298
  msgid "Plugin Configuration"
299
  msgstr ""
300
 
301
+ #: .././admin/settings.php:717 .././admin/settings.php:980
302
  msgid ""
303
  "Loading the required libraries. If this results in a blank screen or a fatal "
304
  "error, try this solution:"
305
  msgstr ""
306
 
307
+ #: .././admin/settings.php:717
308
  msgid "Library conflicts between WordPress plugins"
309
  msgstr ""
310
 
311
+ #: .././admin/settings.php:732 .././admin/settings.php:997
312
  msgid "Plugin authorization succeeded."
313
  msgstr "تم تفعيل تصريح الاضافة بنجاح."
314
 
315
+ #: .././admin/settings.php:747 .././admin/settings.php:1020
316
  msgid ""
317
  "The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
318
  "(UA-XXXXX-X). Try again, and use the red link to get your access code"
319
  msgstr ""
320
 
321
+ #: .././admin/settings.php:770 .././admin/settings.php:1052
322
  msgid "Cleared Cache."
323
  msgstr "الخزن المزال."
324
 
325
+ #: .././admin/settings.php:779 .././admin/settings.php:1061
326
  msgid "Token Reseted and Revoked."
327
  msgstr "الجزء المراح والمعدل."
328
 
329
+ #: .././admin/settings.php:789
330
  msgid "All errors reseted."
331
  msgstr ""
332
 
333
+ #: .././admin/settings.php:802 .././admin/settings.php:1075
334
  msgid "All other domains/properties were removed."
335
  msgstr "كل الروابط/والخصائص تم إزالتها."
336
 
337
+ #: .././admin/settings.php:813 .././admin/settings.php:1086
338
  msgid "Google Analytics Settings"
339
  msgstr "إعدادات احصائيات كوكل"
340
 
341
+ #: .././admin/settings.php:828 .././admin/settings.php:1100
342
  msgid "Use the red link (see below) to generate and get your access code!"
343
  msgstr ""
344
 
345
+ #: .././admin/settings.php:839 .././admin/settings.php:1128
346
  msgid "Plugin Authorization"
347
  msgstr "تصريح الأضافة"
348
 
349
+ #: .././admin/settings.php:844 .././admin/settings.php:1132
350
  #, php-format
351
  msgid ""
352
  "You should watch the %1$s and read this %2$s before proceeding to "
354
  "account!"
355
  msgstr ""
356
 
357
+ #: .././admin/settings.php:844 .././admin/settings.php:1132
358
  msgid "video"
359
  msgstr "الڤيديو"
360
 
361
+ #: .././admin/settings.php:844 .././admin/settings.php:1132
362
  msgid "tutorial"
363
  msgstr "الدرس"
364
 
365
+ #: .././admin/settings.php:849 .././admin/settings.php:1139
366
  msgid "use your own API Project credentials"
367
  msgstr ""
368
 
369
+ #: .././admin/settings.php:854 .././admin/settings.php:1147
370
  msgid "API Key:"
371
  msgstr "مفتاح API:"
372
 
373
+ #: .././admin/settings.php:858 .././admin/settings.php:1151
374
  msgid "Client ID:"
375
  msgstr "معرف الزيون:"
376
 
377
+ #: .././admin/settings.php:862 .././admin/settings.php:1155
378
  msgid "Client Secret:"
379
  msgstr "سر الزبون:"
380
 
381
+ #: .././admin/settings.php:872 .././admin/settings.php:1165
382
  msgid "Clear Authorization"
383
  msgstr "أزل التصريحات"
384
 
385
+ #: .././admin/settings.php:872 .././admin/settings.php:950
386
+ #: .././admin/settings.php:1165 .././admin/settings.php:1241
387
  msgid "Clear Cache"
388
  msgstr "أزل الخزن"
389
 
390
+ #: .././admin/settings.php:872
391
  msgid "Reset Errors"
392
  msgstr ""
393
 
394
+ #: .././admin/settings.php:878 .././admin/setup.php:42 .././admin/setup.php:58
395
  msgid "General Settings"
396
  msgstr "الأعدادات العامة"
397
 
398
+ #: .././admin/settings.php:881
399
  msgid "Select View:"
400
  msgstr ""
401
 
402
+ #: .././admin/settings.php:892 .././admin/settings.php:1192
403
  msgid "Property not found"
404
  msgstr ""
405
 
406
+ #: .././admin/settings.php:898
407
  msgid "Lock Selection"
408
  msgstr ""
409
 
410
+ #: .././admin/settings.php:917
411
  msgid "Theme Color:"
412
  msgstr ""
413
 
414
+ #: .././admin/settings.php:925 .././admin/settings.php:1201
415
  msgid "Automatic Updates"
416
  msgstr ""
417
 
418
+ #: .././admin/settings.php:935 .././admin/settings.php:1211
419
  msgid ""
420
  "automatic updates for minor versions (security and maintenance releases only)"
421
  msgstr ""
422
 
423
+ #: .././admin/settings.php:950 .././admin/settings.php:1241
424
+ #: .././admin/widgets.php:32
425
  msgid "Authorize Plugin"
426
  msgstr "صرح الأضافة "
427
 
428
+ #: .././admin/settings.php:1026
429
  msgid "Properties refreshed."
430
  msgstr "تم تحديث الخصائص."
431
 
432
+ #: .././admin/settings.php:1110
433
  msgid "Network Setup"
434
  msgstr "اعدادات الشبكة"
435
 
436
+ #: .././admin/settings.php:1120
437
  msgid "use a single Google Analytics account for the entire network"
438
  msgstr ""
439
 
440
+ #: .././admin/settings.php:1165
441
  msgid "Refresh Properties"
442
  msgstr "حدث الخصائص"
443
 
444
+ #: .././admin/settings.php:1171
445
  msgid "Properties/Views Settings"
446
  msgstr "اعدادات الخصائص/المشاهدة"
447
 
448
+ #: .././admin/settings.php:1225
449
  msgid "exclude Super Admin tracking for the entire network"
450
  msgstr ""
451
 
452
+ #: .././admin/settings.php:1273
453
  msgid "Setup Tutorial & Demo"
454
  msgstr "درس التنصيب"
455
 
456
+ #: .././admin/settings.php:1281
457
+ msgid "Follow & Review"
 
 
 
 
 
458
  msgstr ""
459
 
460
  #: .././admin/settings.php:1307
510
  msgid "Web Analytics"
511
  msgstr "احصائيات الويب"
512
 
513
+ #: .././admin/setup.php:41 .././admin/setup.php:57
514
  msgid "Google Analytics"
515
  msgstr "أحصائيات كوكل"
516
 
517
+ #: .././admin/setup.php:43
518
  msgid "Backend Settings"
519
  msgstr "أعدادات العمل"
520
 
521
+ #: .././admin/setup.php:44
522
  msgid "Frontend Settings"
523
  msgstr "اعدادات الظهور"
524
 
525
+ #: .././admin/setup.php:45
526
  msgid "Tracking Code"
527
  msgstr "كود التعقب"
528
 
529
+ #: .././admin/setup.php:159 .././admin/widgets.php:117 .././front/setup.php:71
530
  msgid "Today"
531
  msgstr "اليوم"
532
 
533
+ #: .././admin/setup.php:160 .././admin/widgets.php:118 .././front/setup.php:72
534
  msgid "Yesterday"
535
  msgstr "البارحة"
536
 
537
+ #: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
538
+ #: .././admin/setup.php:164 .././admin/widgets.php:119
539
+ #: .././admin/widgets.php:120 .././admin/widgets.php:121
540
+ #: .././admin/widgets.php:122 .././front/setup.php:73 .././front/setup.php:74
541
+ #: .././front/setup.php:75 .././front/setup.php:76 .././front/widgets.php:64
542
+ #: .././front/widgets.php:67 .././front/widgets.php:70
543
+ #: .././front/widgets.php:158 .././front/widgets.php:159
544
+ #: .././front/widgets.php:160
545
+ #, php-format
546
+ msgid "Last %d Days"
547
+ msgstr ""
548
 
549
+ #: .././admin/setup.php:165 .././admin/setup.php:166
550
+ #: .././admin/widgets.php:123 .././admin/widgets.php:124
551
+ #: .././front/setup.php:77 .././front/setup.php:78
552
+ #, php-format
553
+ msgid "%s Year"
554
+ msgstr ""
555
 
556
+ #: .././admin/setup.php:165 .././admin/widgets.php:123 .././front/setup.php:77
557
+ msgid "One"
558
+ msgstr ""
559
 
560
+ #: .././admin/setup.php:166 .././admin/widgets.php:124 .././front/setup.php:78
561
+ msgid "Three"
562
+ msgstr ""
563
+
564
+ #: .././admin/setup.php:169 .././admin/setup.php:185 .././front/setup.php:81
565
+ #: .././front/setup.php:97
566
  msgid "Unique Views"
567
  msgstr ""
568
 
569
+ #: .././admin/setup.php:170 .././admin/setup.php:186
570
+ #: .././admin/widgets.php:130 .././admin/widgets.php:830
571
+ #: .././front/setup.php:82 .././front/setup.php:98 .././tools/gapi.php:358
572
  msgid "Users"
573
  msgstr ""
574
 
575
+ #: .././admin/setup.php:171 .././admin/widgets.php:131 .././front/setup.php:83
576
  msgid "Organic"
577
  msgstr "عضوي"
578
 
579
+ #: .././admin/setup.php:172 .././admin/setup.php:187
580
+ #: .././admin/widgets.php:132 .././admin/widgets.php:834
581
+ #: .././front/setup.php:84 .././front/setup.php:99 .././tools/gapi.php:361
582
  msgid "Page Views"
583
  msgstr "مشاهدات الصفحة"
584
 
585
+ #: .././admin/setup.php:173 .././admin/setup.php:188
586
+ #: .././admin/widgets.php:133 .././admin/widgets.php:838
587
+ #: .././front/setup.php:85 .././front/setup.php:100 .././tools/gapi.php:364
588
  msgid "Bounce Rate"
589
  msgstr "نسبة القفز"
590
 
591
+ #: .././admin/setup.php:174 .././admin/widgets.php:134 .././front/setup.php:86
592
  msgid "Location"
593
  msgstr ""
594
 
595
+ #: .././admin/setup.php:175 .././admin/widgets.php:136 .././front/setup.php:87
596
+ #: .././tools/gapi.php:503
597
  msgid "Referrers"
598
  msgstr ""
599
 
600
+ #: .././admin/setup.php:176 .././admin/widgets.php:137 .././front/setup.php:88
601
+ #: .././tools/gapi.php:536
602
  msgid "Searches"
603
  msgstr ""
604
 
605
+ #: .././admin/setup.php:177 .././admin/widgets.php:138 .././front/setup.php:89
606
  msgid "Traffic Details"
607
  msgstr ""
608
 
609
+ #: .././admin/setup.php:180 .././admin/widgets.php:505
610
+ #: .././admin/widgets.php:590 .././admin/widgets.php:757
611
+ #: .././admin/widgets.php:861 .././front/setup.php:92
612
  msgid "A JavaScript Error is blocking plugin resources!"
613
  msgstr ""
614
 
615
+ #: .././admin/setup.php:181 .././admin/widgets.php:681 .././front/setup.php:93
616
  msgid "Traffic Mediums"
617
  msgstr ""
618
 
619
+ #: .././admin/setup.php:182 .././admin/widgets.php:696 .././front/setup.php:94
620
  msgid "Visitor Type"
621
  msgstr ""
622
 
623
+ #: .././admin/setup.php:183 .././admin/widgets.php:711 .././front/setup.php:95
624
  msgid "Social Networks"
625
  msgstr ""
626
 
627
+ #: .././admin/setup.php:184 .././admin/widgets.php:726 .././front/setup.php:96
628
  msgid "Search Engines"
629
  msgstr ""
630
 
631
+ #: .././admin/setup.php:189 .././admin/widgets.php:842
632
+ #: .././front/setup.php:101
633
  msgid "Organic Search"
634
  msgstr ""
635
 
636
+ #: .././admin/setup.php:190 .././admin/widgets.php:846
637
+ #: .././front/setup.php:102
638
  msgid "Pages/Session"
639
  msgstr ""
640
 
641
+ #: .././admin/setup.php:191 .././admin/widgets.php:517
642
+ #: .././admin/widgets.php:531 .././admin/widgets.php:541
643
+ #: .././admin/widgets.php:602 .././admin/widgets.php:616
644
+ #: .././admin/widgets.php:630 .././admin/widgets.php:644
645
+ #: .././admin/widgets.php:658 .././admin/widgets.php:668
646
+ #: .././admin/widgets.php:770 .././admin/widgets.php:782
647
+ #: .././admin/widgets.php:873 .././admin/widgets.php:887
648
+ #: .././admin/widgets.php:897 .././front/setup.php:103
649
  msgid "Invalid response, more details in JavaScript Console (F12)."
650
  msgstr ""
651
 
652
+ #: .././admin/setup.php:192 .././front/setup.php:104
653
  msgid "Not enough data collected"
654
  msgstr ""
655
 
656
+ #: .././admin/setup.php:193 .././admin/widgets.php:522
657
+ #: .././admin/widgets.php:536 .././admin/widgets.php:607
658
+ #: .././admin/widgets.php:621 .././admin/widgets.php:635
659
+ #: .././admin/widgets.php:649 .././admin/widgets.php:663
660
+ #: .././admin/widgets.php:775 .././admin/widgets.php:777
661
+ #: .././admin/widgets.php:878 .././admin/widgets.php:892
662
+ #: .././front/setup.php:105 .././front/widgets.php:100
 
663
  msgid "This report is unavailable"
664
  msgstr ""
665
 
666
+ #: .././admin/setup.php:194 .././front/setup.php:106
667
  msgid "report generated by"
668
  msgstr ""
669
 
670
+ #: .././admin/setup.php:225
671
  msgid "Settings"
672
  msgstr "الاعدادات"
673
 
674
+ #: .././admin/setup.php:237
675
+ #, php-format
676
+ msgid "Google Analytics Dashboard for WP has been updated to version %s."
677
+ msgstr ""
678
+
679
+ #: .././admin/setup.php:237
680
+ #, php-format
681
+ msgid "For details, check out %1$s and %2$s."
682
+ msgstr ""
683
+
684
+ #: .././admin/setup.php:237
685
+ msgid "the documentation page"
686
+ msgstr ""
687
+
688
+ #: .././admin/setup.php:237
689
+ msgid "the plugin&#39;s settings page"
690
+ msgstr ""
691
+
692
+ #: .././admin/widgets.php:27 .././front/widgets.php:21
693
  msgid "Google Analytics Dashboard"
694
  msgstr "لوحة أحصائيات كوكل"
695
 
696
+ #: .././admin/widgets.php:32
697
  msgid "This plugin needs an authorization:"
698
  msgstr "هذه الاضافة تحتاج الى تصريح:"
699
 
700
+ #: .././admin/widgets.php:66
701
  msgid "Something went wrong while retrieving profiles list."
702
  msgstr "حدث خطأ ما اثناء استرجاع قائمة البروفايلات."
703
 
704
+ #: .././admin/widgets.php:66
705
  msgid "More details"
706
  msgstr "المزيد من التفاصيل"
707
 
708
+ #: .././admin/widgets.php:79 .././admin/widgets.php:90
709
  msgid "An admin should asign a default Google Analytics Profile."
710
  msgstr "المدير يجب ان يحصل على حساب احصائيات كوكل رئيسي."
711
 
712
+ #: .././admin/widgets.php:79 .././admin/widgets.php:90
713
  msgid "Select Domain"
714
  msgstr "حدد النطاق"
715
 
716
+ #: .././admin/widgets.php:95
717
  msgid ""
718
  "Something went wrong while retrieving property data. You need to create and "
719
  "properly configure a Google Analytics account:"
721
  "حدث خطأ ما اثناء استرجاع بيانات الملكية. تحتاج الى انشاء واعداد حساب كوكل "
722
  "للأحصائيات بصورة صحيحة:"
723
 
724
+ #: .././admin/widgets.php:95
725
  msgid "Find out more!"
726
  msgstr "اعرف أكثر!"
727
 
728
+ #: .././admin/widgets.php:116
729
  msgid "Real-Time"
730
  msgstr "الوقت الحقيقي"
731
 
732
+ #: .././admin/widgets.php:129 .././admin/widgets.php:826
733
+ #: .././front/widgets.php:36 .././tools/gapi.php:373 .././tools/gapi.php:503
734
+ #: .././tools/gapi.php:536 .././tools/gapi.php:586 .././tools/gapi.php:666
735
+ #: .././tools/gapi.php:695
 
 
 
 
 
736
  msgid "Sessions"
737
  msgstr ""
738
 
739
+ #: .././admin/widgets.php:135 .././tools/gapi.php:471
740
  msgid "Pages"
741
  msgstr ""
742
 
743
+ #: .././admin/widgets.php:236 .././admin/widgets.php:478
744
  msgid "REFERRAL"
745
  msgstr "المصدر"
746
 
747
+ #: .././admin/widgets.php:240 .././admin/widgets.php:479
748
  msgid "ORGANIC"
749
  msgstr "عضوي"
750
 
751
+ #: .././admin/widgets.php:244 .././admin/widgets.php:364
752
+ #: .././admin/widgets.php:480
753
  msgid "SOCIAL"
754
  msgstr "اجتماعي"
755
 
756
+ #: .././admin/widgets.php:248 .././admin/widgets.php:367
757
+ #: .././admin/widgets.php:481
758
  msgid "CAMPAIGN"
759
  msgstr ""
760
 
761
+ #: .././admin/widgets.php:252 .././admin/widgets.php:370
762
+ #: .././admin/widgets.php:484
763
  msgid "DIRECT"
764
  msgstr "مباشر"
765
 
766
+ #: .././admin/widgets.php:256 .././admin/widgets.php:485
767
  msgid "NEW"
768
  msgstr "جديد"
769
 
770
+ #: .././admin/widgets.php:358
771
  msgid "REFERRALS"
772
  msgstr "المصادر"
773
 
774
+ #: .././admin/widgets.php:361
775
  msgid "KEYWORDS"
776
  msgstr "الكلمات المفتاحية"
777
 
778
+ #: .././front/widgets.php:21
 
 
 
 
 
 
 
 
779
  msgid "Will display your google analytics stats in a widget"
780
  msgstr "ستظهر احصائيات حسابك في مربع جانبي"
781
 
782
+ #: .././front/widgets.php:36 .././tools/gapi.php:695
783
  msgid "trend"
784
  msgstr ""
785
 
786
+ #: .././front/widgets.php:123
787
  msgid "Period:"
788
  msgstr "الفترة:"
789
 
790
+ #: .././front/widgets.php:123
791
  msgid "Sessions:"
792
  msgstr ""
793
 
794
+ #: .././front/widgets.php:127
795
  msgid "generated by"
796
  msgstr "اظهرت بواسطة"
797
 
798
+ #: .././front/widgets.php:136
799
  msgid "Google Analytics Stats"
800
  msgstr "احصائيات كوكل"
801
 
802
+ #: .././front/widgets.php:144
803
  msgid "Title:"
804
  msgstr "العنوان:"
805
 
806
+ #: .././front/widgets.php:147
807
  msgid "Display:"
808
  msgstr "اظهر:"
809
 
810
+ #: .././front/widgets.php:148
811
  msgid "Chart & Totals"
812
  msgstr "الاحصائيات والكل"
813
 
814
+ #: .././front/widgets.php:149
815
  msgid "Chart"
816
  msgstr "الاحصائيات"
817
 
818
+ #: .././front/widgets.php:150
819
  msgid "Totals"
820
  msgstr "الكل"
821
 
822
+ #: .././front/widgets.php:154
823
  msgid "Anonymize stats:"
824
  msgstr ""
825
 
826
+ #: .././front/widgets.php:157
827
  msgid "Stats for:"
828
  msgstr "الاحصائيات لـ:"
829
 
830
+ #: .././front/widgets.php:164
831
  msgid "Give credits:"
832
  msgstr "أعطي الفضل:"
833
 
834
+ #: .././gadwp.php:46 .././gadwp.php:54 .././gadwp.php:61
835
  msgid "This is not allowed, read the documentation!"
836
  msgstr ""
837
 
838
+ #: .././tools/gapi.php:128
839
  msgid "Use this link to get your access code:"
840
  msgstr "أستخدم هذا الرابط للحصول على كود التعقب الخاص بك:"
841
 
842
+ #: .././tools/gapi.php:128
843
  msgid "Get Access Code"
844
  msgstr "احصل على كود الدخول"
845
 
846
+ #: .././tools/gapi.php:132 .././tools/gapi.php:133
847
  msgid "Use the red link to get your access code!"
848
  msgstr ""
849
 
850
+ #: .././tools/gapi.php:132
851
  msgid "Access Code:"
852
  msgstr "كود الدخول:"
853
 
854
+ #: .././tools/gapi.php:139
855
  msgid "Save Access Code"
856
  msgstr "أحفظ كود الدخول"
857
 
858
+ #: .././tools/gapi.php:367
859
  msgid "Organic Searches"
860
  msgstr "البحث العضوي"
861
 
862
+ #: .././tools/gapi.php:370
863
  msgid "Unique Page Views"
864
  msgstr ""
865
 
866
+ #: .././tools/gapi.php:378
867
  msgid "Hour"
868
  msgstr "الساعة"
869
 
870
+ #: .././tools/gapi.php:382 .././tools/gapi.php:385 .././tools/gapi.php:695
871
  msgid "Date"
872
  msgstr "التاريخ"
873
 
874
+ #: .././tools/gapi.php:471
875
  msgid "Views"
876
  msgstr "المشاهدات"
877
 
878
+ #: .././tools/gapi.php:557
879
  msgid "Countries"
880
  msgstr ""
881
 
882
+ #: .././tools/gapi.php:567
883
  msgid "Cities from"
884
  msgstr ""
885
 
886
+ #: .././tools/gapi.php:620
887
  msgid "Channels"
888
  msgstr ""
889
 
890
+ #: .././tools/gapi.php:666
891
  msgid "Type"
892
  msgstr "النوع"
893
 
894
+ #~ msgid "Last 7 Days"
895
+ #~ msgstr "اخر ٧ ايام"
896
+
897
+ #~ msgid "Last 14 Days"
898
+ #~ msgstr "أخر ١٤ يوم"
899
+
900
+ #~ msgid "Last 30 Days"
901
+ #~ msgstr "اخر ٣٠ يوم"
902
+
903
+ #~ msgid "Last 90 Days"
904
+ #~ msgstr "أخر ٩٠ يوم"
905
+
906
+ #~ msgid "Support & Reviews"
907
+ #~ msgstr "الدعم والتقييم"
908
+
909
+ #~ msgid "Views vs UniqueViews"
910
+ #~ msgstr "المشاهدات ضد المشاهدات الحقيقية"
911
+
912
+ #~ msgid "UniqueViews"
913
+ #~ msgstr "المشاهدات الخاصة"
914
 
915
  #~ msgid "and/or hide all other domains"
916
  #~ msgstr "و/أو أخفي كل الروابط الأخرى"
languages/ga-dash-cs_CZ.mo CHANGED
Binary file
languages/ga-dash-cs_CZ.po CHANGED
@@ -4,8 +4,8 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Google Analytics Dashboard for WP\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-dashboard-for-wp\n"
7
- "POT-Creation-Date: 2015-05-21 19:46+0200\n"
8
- "PO-Revision-Date: 2015-05-21 19:46+0200\n"
9
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
10
  "Language-Team: Alin Marcu\n"
11
  "Language: cs_CZ\n"
@@ -13,104 +13,100 @@ msgstr ""
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
  "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
16
- "X-Generator: Poedit 1.8\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
- "X-Poedit-KeywordsList: __;_e\n"
19
  "X-Poedit-Basepath: .\n"
20
  "X-Poedit-SearchPath-0: ../.\n"
21
 
22
- #: .././admin/item-reports.php:52
23
  msgid "Analytics"
24
  msgstr "Analýza"
25
 
26
- #: .././admin/settings.php:94 .././admin/settings.php:197 .././admin/settings.php:328
27
- #: .././admin/settings.php:803 .././admin/settings.php:1079
28
  msgid "Settings saved."
29
  msgstr "Nastavení uloženo"
30
 
31
- #: .././admin/settings.php:96 .././admin/settings.php:199 .././admin/settings.php:330
32
- #: .././admin/settings.php:780 .././admin/settings.php:790 .././admin/settings.php:799
33
- #: .././admin/settings.php:805 .././admin/settings.php:817 .././admin/settings.php:1040
34
- #: .././admin/settings.php:1065 .././admin/settings.php:1075 .././admin/settings.php:1081
35
- #: .././admin/settings.php:1093
36
  msgid "Cheating Huh?"
37
  msgstr "Podvádět jo?"
38
 
39
- #: .././admin/settings.php:100 .././admin/settings.php:203 .././admin/settings.php:334
40
- #: .././admin/settings.php:647 .././admin/settings.php:832 .././admin/settings.php:1107
41
  #, php-format
42
  msgid "Something went wrong, check %1$s or %2$s."
43
  msgstr "Něco je špatně, zkontroluj %1$s nebo %2$s."
44
 
45
- #: .././admin/settings.php:100 .././admin/settings.php:203 .././admin/settings.php:334
46
- #: .././admin/settings.php:647 .././admin/settings.php:832 .././admin/settings.php:1107
47
- #: .././admin/setup.php:82 .././admin/setup.php:101
48
  msgid "Errors & Debug"
49
  msgstr "Chyby a ladění"
50
 
51
- #: .././admin/settings.php:100 .././admin/settings.php:203 .././admin/settings.php:334
52
- #: .././admin/settings.php:647 .././admin/settings.php:832 .././admin/settings.php:1107
53
  msgid "authorize the plugin"
54
  msgstr "autorizovat modul"
55
 
56
- #: .././admin/settings.php:105
57
  msgid "Google Analytics Frontend Settings"
58
  msgstr "Nastavení Google Analytics pro veřejnou část"
59
 
60
- #: .././admin/settings.php:115 .././admin/settings.php:218
61
  msgid "Permissions"
62
  msgstr "Oprávnění"
63
 
64
- #: .././admin/settings.php:118 .././admin/settings.php:221
65
  msgid "Show stats to:"
66
  msgstr "Zobrazit statistiky pro:"
67
 
68
- #: .././admin/settings.php:157
69
- msgid "show page sessions and users in frontend (after each article)"
70
- msgstr "zobrazit stránku návštěv a uživatelů na veřejné části webu (za každým příspěvkem)"
71
-
72
- #: .././admin/settings.php:168
73
- msgid "show page searches (after each article)"
74
- msgstr "zobraz vyhledávané termíny pro danou stránku (za každým příspěvkem)"
75
 
76
- #: .././admin/settings.php:175 .././admin/settings.php:308 .././admin/settings.php:605
77
- #: .././admin/settings.php:952 .././admin/settings.php:1245
78
  msgid "Save Changes"
79
  msgstr "Uložit změny"
80
 
81
- #: .././admin/settings.php:208
82
  msgid "Google Analytics Backend Settings"
83
  msgstr "Nastavení pozadí Google Analytics"
84
 
85
- #: .././admin/settings.php:262
86
  msgid "enable Switch View functionality"
87
  msgstr "povol funkci Přepni Náhled"
88
 
89
- #: .././admin/settings.php:273
90
  msgid "enable reports on Posts List and Pages List"
91
  msgstr "povolit report na seznamu příspěvků a seznamu stránek"
92
 
93
- #: .././admin/settings.php:284
94
  msgid "enable the main Dashboard Widget"
95
  msgstr "povolit hlavní widget na nástěnce"
96
 
97
- #: .././admin/settings.php:288
98
  msgid "Real-Time Settings"
99
  msgstr "Nastavení v reálném čase"
100
 
101
- #: .././admin/settings.php:291
102
  msgid "Maximum number of pages to display on real-time tab:"
103
  msgstr "Maximální počet stránek zobrazených na záložce reálného času"
104
 
105
- #: .././admin/settings.php:296
106
  msgid "Location Settings"
107
  msgstr "Nastavení Umístění"
108
 
109
- #: .././admin/settings.php:300
110
  msgid "Target Geo Map to country:"
111
  msgstr "Cíl Geo Map k zemi"
112
 
113
- #: .././admin/settings.php:337
114
  msgid ""
115
  "The tracking component is disabled. You should set <strong>Tracking Options</strong> to "
116
  "<strong>Enabled</strong>"
@@ -118,184 +114,184 @@ msgstr ""
118
  "Komponenta sledování je zakázána. Měli byste nastavit <strong> Možnosti sledování </ strong> na "
119
  "<strong> Povoleno </ strong>"
120
 
121
- #: .././admin/settings.php:342
122
  msgid "Google Analytics Tracking Code"
123
  msgstr "Sledovací kód Google Analytics"
124
 
125
- #: .././admin/settings.php:351
126
  msgid "Basic Settings"
127
  msgstr "Základní nastavení"
128
 
129
- #: .././admin/settings.php:352 .././admin/settings.php:417
130
  msgid "Events Tracking"
131
  msgstr "Sledování událostí"
132
 
133
- #: .././admin/settings.php:353 .././admin/settings.php:465
134
  msgid "Custom Definitions"
135
  msgstr "Vlastní definice"
136
 
137
- #: .././admin/settings.php:354 .././admin/settings.php:563 .././admin/settings.php:1228
138
  msgid "Exclude Tracking"
139
  msgstr "Vyloučit ze sledování"
140
 
141
- #: .././admin/settings.php:355
142
  msgid "Advanced Settings"
143
  msgstr "Pokročilá nastavení"
144
 
145
- #: .././admin/settings.php:362
146
  msgid "Tracking Settings"
147
  msgstr "Nastavení sledování"
148
 
149
- #: .././admin/settings.php:365
150
  msgid "Tracking Options:"
151
  msgstr "Možnosti sledování"
152
 
153
- #: .././admin/settings.php:367
154
  msgid "Disabled"
155
  msgstr "Zakázat"
156
 
157
- #: .././admin/settings.php:368
158
  msgid "Enabled"
159
  msgstr "Povolit"
160
 
161
- #: .././admin/settings.php:376 .././admin/settings.php:897 .././admin/settings.php:919
162
- #: .././admin/settings.php:1201 .././admin/widgets.php:71
163
  msgid "View Name:"
164
  msgstr "Zobrazované Jméno:"
165
 
166
- #: .././admin/settings.php:376 .././admin/settings.php:919
167
  msgid "Tracking ID:"
168
  msgstr "Sledovací ID:"
169
 
170
- #: .././admin/settings.php:376 .././admin/settings.php:919
171
  msgid "Default URL:"
172
  msgstr "Zákaldní URL:"
173
 
174
- #: .././admin/settings.php:376 .././admin/settings.php:919
175
  msgid "Time Zone:"
176
  msgstr "Časová Zóna:"
177
 
178
- #: .././admin/settings.php:381
179
  msgid "Basic Tracking"
180
  msgstr "Základní sledování"
181
 
182
- #: .././admin/settings.php:384
183
  msgid "Tracking Type:"
184
  msgstr "Druh sledování"
185
 
186
- #: .././admin/settings.php:386
187
  msgid "Classic Analytics"
188
  msgstr "Klasické Analytics"
189
 
190
- #: .././admin/settings.php:387
191
  msgid "Universal Analytics"
192
  msgstr "Univerzální Analytics"
193
 
194
- #: .././admin/settings.php:398
195
  msgid "anonymize IPs while tracking"
196
  msgstr "anonymizovat IP při sledování"
197
 
198
- #: .././admin/settings.php:409
199
  msgid "enable remarketing, demographics and interests reports"
200
  msgstr "umožnit remarketing (rentabilita?), demografii a zprávy zájmů"
201
 
202
- #: .././admin/settings.php:427
203
  msgid "track downloads, mailto and outbound links"
204
  msgstr "sledovat stahování, odkazy mail to (odeslat mail) a odchozí odkazy"
205
 
206
- #: .././admin/settings.php:431
207
  msgid "Downloads Regex:"
208
  msgstr "Stažené Regex:"
209
 
210
- #: .././admin/settings.php:442
211
  msgid "track affiliate links matching this regex"
212
  msgstr "sledovat odkazy, které sedí na tento Regex"
213
 
214
- #: .././admin/settings.php:446
215
  msgid "Affiliates Regex:"
216
  msgstr "Členy Regexu"
217
 
218
- #: .././admin/settings.php:457
219
  msgid "track fragment identifiers, hashmarks (#) in URI links"
220
  msgstr "sledování identifikátorů, hashmarks (#) v URI odkazech"
221
 
222
- #: .././admin/settings.php:468
223
  msgid "Authors:"
224
  msgstr "Autoři:"
225
 
226
- #: .././admin/settings.php:476
227
  msgid "Publication Year:"
228
  msgstr "Rok Zveřejnění:"
229
 
230
- #: .././admin/settings.php:484
231
  msgid "Categories:"
232
  msgstr "Kategorie:"
233
 
234
- #: .././admin/settings.php:492
235
  msgid "User Type:"
236
  msgstr "Uživatelké typ:"
237
 
238
- #: .././admin/settings.php:504
239
  msgid "Advanced Tracking"
240
  msgstr "Pokročilé sledování"
241
 
242
- #: .././admin/settings.php:507
243
  msgid "Page Speed SR:"
244
  msgstr "Rychlost stránky SR:"
245
 
246
- #: .././admin/settings.php:518
247
  msgid "exclude events from bounce-rate calculation"
248
  msgstr "vyloučit události z výpočtů míry opuštění"
249
 
250
- #: .././admin/settings.php:529
251
  msgid "enable enhanced link attribution"
252
  msgstr "povolit vylepšné vlastnosti odkazů"
253
 
254
- #: .././admin/settings.php:540
255
  msgid "enable AdSense account linking"
256
  msgstr "povolit prolinkování účtu AdSense"
257
 
258
- #: .././admin/settings.php:551
259
  msgid "enable cross domain tracking"
260
  msgstr "povolit sledování cross domain"
261
 
262
- #: .././admin/settings.php:555
263
  msgid "Cross Domains:"
264
  msgstr "Cross Domains:"
265
 
266
- #: .././admin/settings.php:566
267
  msgid "Exclude tracking for:"
268
  msgstr "Vynechat sledování pro:"
269
 
270
- #: .././admin/settings.php:651
271
  msgid "Google Analytics Errors & Debugging"
272
  msgstr "Chyby a Ladění Google Analytics"
273
 
274
- #: .././admin/settings.php:661
275
  msgid "Errors & Details"
276
  msgstr "Chyby a popisy"
277
 
278
- #: .././admin/settings.php:662
279
  msgid "Plugin Settings"
280
  msgstr "Nastavení modulu:"
281
 
282
- #: .././admin/settings.php:670
283
  msgid "Last Error detected"
284
  msgstr "Detekovaná poslední chyba"
285
 
286
- #: .././admin/settings.php:676 .././admin/settings.php:689
287
  msgid "None"
288
  msgstr "Nic"
289
 
290
- #: .././admin/settings.php:683
291
  msgid "Error Details"
292
  msgstr "Detail chyby"
293
 
294
- #: .././admin/settings.php:703
295
  msgid "Plugin Configuration"
296
  msgstr "Nastavení modulu"
297
 
298
- #: .././admin/settings.php:725 .././admin/settings.php:990
299
  msgid ""
300
  "Loading the required libraries. If this results in a blank screen or a fatal error, try this "
301
  "solution:"
@@ -303,15 +299,15 @@ msgstr ""
303
  "Nahrávání požadovaných knihoven. Pokud to má za následek prázdnou obrazovku nebo fatální chybu, "
304
  "zkuste toto řešení:"
305
 
306
- #: .././admin/settings.php:725
307
  msgid "Library conflicts between WordPress plugins"
308
  msgstr "Knihovna koliduje mezi moduly WordPressu"
309
 
310
- #: .././admin/settings.php:740 .././admin/settings.php:1007
311
  msgid "Plugin authorization succeeded."
312
  msgstr "Modul byl autorizován."
313
 
314
- #: .././admin/settings.php:755 .././admin/settings.php:1031
315
  msgid ""
316
  "The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> (UA-XXXXX-X). Try "
317
  "again, and use the red link to get your access code"
@@ -319,35 +315,35 @@ msgstr ""
319
  "Přístupový kód <strong>NENÍ</strong> Vaše <strong>Sledovací ID</strong> (UA-XXXXX-X). Zkuste "
320
  "to znovu a použijte červený odkaz pro získání přístupového kódu."
321
 
322
- #: .././admin/settings.php:778 .././admin/settings.php:1063
323
  msgid "Cleared Cache."
324
  msgstr "Vyčištěná dočasná paměť (cache)."
325
 
326
- #: .././admin/settings.php:787 .././admin/settings.php:1072
327
  msgid "Token Reseted and Revoked."
328
  msgstr "Token Resetován a Zrušen."
329
 
330
- #: .././admin/settings.php:797
331
  msgid "All errors reseted."
332
  msgstr "Všechny chyby vymazány. (reseted)"
333
 
334
- #: .././admin/settings.php:810 .././admin/settings.php:1086
335
  msgid "All other domains/properties were removed."
336
  msgstr "Všechny ostatní domény/nastavení byly odstraněny."
337
 
338
- #: .././admin/settings.php:822 .././admin/settings.php:1098
339
  msgid "Google Analytics Settings"
340
  msgstr "Nastavení Google Analytics"
341
 
342
- #: .././admin/settings.php:837 .././admin/settings.php:1112
343
  msgid "Use the red link (see below) to generate and get your access code!"
344
  msgstr "Použijte červený odkaz níže pro vygenerování a získání Vašeho přístupového kódu!"
345
 
346
- #: .././admin/settings.php:848 .././admin/settings.php:1140
347
  msgid "Plugin Authorization"
348
  msgstr "Autorizace modulu"
349
 
350
- #: .././admin/settings.php:853 .././admin/settings.php:1144
351
  #, php-format
352
  msgid ""
353
  "You should watch the %1$s and read this %2$s before proceeding to authorization. This plugin "
@@ -356,111 +352,106 @@ msgstr ""
356
  "Měli byste shlédnout %1$s a přečíst si toto %2$s, než přikročíte k povolení. Tento modul "
357
  "vyžaduje správně nakonfigurovaný účet Google Analytics!"
358
 
359
- #: .././admin/settings.php:853 .././admin/settings.php:1144
360
  msgid "video"
361
  msgstr "video"
362
 
363
- #: .././admin/settings.php:853 .././admin/settings.php:1144
364
  msgid "tutorial"
365
  msgstr "cvičení"
366
 
367
- #: .././admin/settings.php:858 .././admin/settings.php:1151
368
  msgid "use your own API Project credentials"
369
  msgstr "použijte Vaše vlastní přístupové údaje projektového API"
370
 
371
- #: .././admin/settings.php:863 .././admin/settings.php:1159
372
  msgid "API Key:"
373
  msgstr "Klíč API:"
374
 
375
- #: .././admin/settings.php:867 .././admin/settings.php:1163
376
  msgid "Client ID:"
377
  msgstr "Klientské ID:"
378
 
379
- #: .././admin/settings.php:871 .././admin/settings.php:1167
380
  msgid "Client Secret:"
381
  msgstr "Klientský klíč:"
382
 
383
- #: .././admin/settings.php:881 .././admin/settings.php:1177
384
  msgid "Clear Authorization"
385
  msgstr "Smazat autorizaci."
386
 
387
- #: .././admin/settings.php:881 .././admin/settings.php:959 .././admin/settings.php:1177
388
- #: .././admin/settings.php:1254
389
  msgid "Clear Cache"
390
  msgstr "Smazat dočasnou paměť (cache)."
391
 
392
- #: .././admin/settings.php:881
393
  msgid "Reset Errors"
394
  msgstr "Smazat chyby"
395
 
396
- #: .././admin/settings.php:887 .././admin/setup.php:70 .././admin/setup.php:98
397
  msgid "General Settings"
398
  msgstr "Hlavní Nastavení"
399
 
400
- #: .././admin/settings.php:890
401
  msgid "Select View:"
402
  msgstr "Zvolte pohled:"
403
 
404
- #: .././admin/settings.php:901 .././admin/settings.php:1205
405
  msgid "Property not found"
406
  msgstr "Možnost nenalezena:"
407
 
408
- #: .././admin/settings.php:907
409
  msgid "Lock Selection"
410
  msgstr "Uzamknout tvolené"
411
 
412
- #: .././admin/settings.php:926
413
  msgid "Theme Color:"
414
  msgstr "Barva téma:"
415
 
416
- #: .././admin/settings.php:934 .././admin/settings.php:1214
417
  msgid "Automatic Updates"
418
  msgstr "Automatické aktualizace"
419
 
420
- #: .././admin/settings.php:944 .././admin/settings.php:1224
421
  msgid "automatic updates for minor versions (security and maintenance releases only)"
422
  msgstr "automatické aktualizace pro nedůležité aktualizace (jen bezpečnostní a údržbové)"
423
 
424
- #: .././admin/settings.php:959 .././admin/settings.php:1254 .././admin/widgets.php:42
425
  msgid "Authorize Plugin"
426
  msgstr "Autorizovat modul"
427
 
428
- #: .././admin/settings.php:1037
429
  msgid "Properties refreshed."
430
  msgstr "Možnosti obnoveny"
431
 
432
- #: .././admin/settings.php:1122
433
  msgid "Network Setup"
434
  msgstr "Nastavení sítě"
435
 
436
- #: .././admin/settings.php:1132
437
  msgid "use a single Google Analytics account for the entire network"
438
  msgstr "použít jeden účet Google Analytics pro celou síť"
439
 
440
- #: .././admin/settings.php:1177
441
  msgid "Refresh Properties"
442
  msgstr "Obnovit možnosti"
443
 
444
- #: .././admin/settings.php:1183
445
  msgid "Properties/Views Settings"
446
  msgstr "Možnosti/Zobrazení nastavení"
447
 
448
- #: .././admin/settings.php:1238
449
  msgid "exclude Super Admin tracking for the entire network"
450
  msgstr "vypnout sledování Adminů pro celou síť"
451
 
452
- #: .././admin/settings.php:1285
453
  msgid "Setup Tutorial & Demo"
454
  msgstr "Průvodce nastavení a ukázky"
455
 
456
- #: .././admin/settings.php:1293
457
- msgid "Support & Reviews"
458
- msgstr "Podpora a hodnocení"
459
-
460
- #: .././admin/settings.php:1300
461
- #, php-format
462
- msgid "Plugin documentation and support on %s"
463
- msgstr "Dokumentace modulu a podpora na %s"
464
 
465
  #: .././admin/settings.php:1307
466
  #, php-format
@@ -515,166 +506,200 @@ msgstr "Služba %s se sledováním uživatelů na úrovni IP."
515
  msgid "Web Analytics"
516
  msgstr "Web Analýza"
517
 
518
- #: .././admin/setup.php:67 .././admin/setup.php:95
519
  msgid "Google Analytics"
520
  msgstr "Google Analytics"
521
 
522
- #: .././admin/setup.php:73
523
  msgid "Backend Settings"
524
  msgstr "Nastavení Pozadí"
525
 
526
- #: .././admin/setup.php:76
527
  msgid "Frontend Settings"
528
  msgstr "Nastavení Popředí"
529
 
530
- #: .././admin/setup.php:79
531
  msgid "Tracking Code"
532
  msgstr "Sledovací kód"
533
 
534
- #: .././admin/setup.php:169 .././admin/widgets.php:126
535
  msgid "Today"
536
  msgstr "Dnes"
537
 
538
- #: .././admin/setup.php:170 .././admin/widgets.php:127
539
  msgid "Yesterday"
540
  msgstr "Včera"
541
 
542
- #: .././admin/setup.php:171 .././admin/widgets.php:128 .././front/widgets.php:74
543
- #: .././front/widgets.php:182
544
- msgid "Last 7 Days"
545
- msgstr "Posledních 7 dní"
 
 
 
 
 
 
 
 
 
 
 
546
 
547
- #: .././admin/setup.php:172 .././admin/widgets.php:130 .././front/widgets.php:80
548
- #: .././front/widgets.php:184
549
- msgid "Last 30 Days"
550
- msgstr "Posledních 30 dní"
551
 
552
- #: .././admin/setup.php:173 .././admin/widgets.php:131
553
- msgid "Last 90 Days"
554
- msgstr "Posledních 90 dní"
555
 
556
- #: .././admin/setup.php:175 .././admin/setup.php:190
 
557
  msgid "Unique Views"
558
  msgstr "Unikátní shlédnutí"
559
 
560
- #: .././admin/setup.php:176 .././admin/setup.php:191 .././admin/widgets.php:136
561
- #: .././admin/widgets.php:875 .././tools/gapi.php:391
 
562
  msgid "Users"
563
  msgstr "Uživatelé"
564
 
565
- #: .././admin/setup.php:177 .././admin/widgets.php:137
566
  msgid "Organic"
567
  msgstr "Přírodní"
568
 
569
- #: .././admin/setup.php:178 .././admin/setup.php:192 .././admin/widgets.php:138
570
- #: .././admin/widgets.php:879 .././tools/gapi.php:394
 
571
  msgid "Page Views"
572
  msgstr "Zobrazení Stránek"
573
 
574
- #: .././admin/setup.php:179 .././admin/setup.php:193 .././admin/widgets.php:139
575
- #: .././admin/widgets.php:883 .././tools/gapi.php:397
 
576
  msgid "Bounce Rate"
577
  msgstr "Míra opuštění"
578
 
579
- #: .././admin/setup.php:180 .././admin/widgets.php:140
580
  msgid "Location"
581
  msgstr "Poloha"
582
 
583
- #: .././admin/setup.php:181 .././admin/widgets.php:142 .././tools/gapi.php:566
 
584
  msgid "Referrers"
585
  msgstr "Odkazy"
586
 
587
- #: .././admin/setup.php:182 .././admin/widgets.php:143 .././tools/gapi.php:612
588
- #: .././tools/gapi.php:918
589
  msgid "Searches"
590
  msgstr "Vyhledávání"
591
 
592
- #: .././admin/setup.php:183 .././admin/widgets.php:144
593
  msgid "Traffic Details"
594
  msgstr "Detail provozu"
595
 
596
- #: .././admin/setup.php:185 .././admin/widgets.php:510 .././admin/widgets.php:607
597
- #: .././admin/widgets.php:805 .././admin/widgets.php:917 .././front/item-reports.php:97
598
  msgid "A JavaScript Error is blocking plugin resources!"
599
  msgstr "Chyva JavaScriptu blokuje zdroje modulu."
600
 
601
- #: .././admin/setup.php:186 .././admin/widgets.php:713
602
  msgid "Traffic Mediums"
603
  msgstr "Dopravní Media"
604
 
605
- #: .././admin/setup.php:187 .././admin/widgets.php:729
606
  msgid "Visitor Type"
607
  msgstr "Druh Návštěvníka"
608
 
609
- #: .././admin/setup.php:188 .././admin/widgets.php:745
610
  msgid "Social Networks"
611
  msgstr "Sociální sítě"
612
 
613
- #: .././admin/setup.php:189 .././admin/widgets.php:761
614
  msgid "Search Engines"
615
  msgstr "Vyhledávače"
616
 
617
- #: .././admin/setup.php:194 .././admin/widgets.php:887
618
  msgid "Organic Search"
619
  msgstr "Přírodní vyhledávání"
620
 
621
- #: .././admin/setup.php:195 .././admin/widgets.php:891
622
  msgid "Pages/Session"
623
  msgstr "Stránky/Návštěvy"
624
 
625
- #: .././admin/setup.php:196 .././admin/widgets.php:523 .././admin/widgets.php:541
626
- #: .././admin/widgets.php:620 .././admin/widgets.php:638 .././admin/widgets.php:657
627
- #: .././admin/widgets.php:676 .././admin/widgets.php:696 .././admin/widgets.php:819
628
- #: .././admin/widgets.php:930 .././admin/widgets.php:949 .././front/item-reports.php:109
629
- #: .././front/item-reports.php:128
 
630
  msgid "Invalid response, more details in JavaScript Console (F12)."
631
  msgstr "Neplatná odpověď, více detailů v konzoli JavaScriptu (F12)."
632
 
633
- #: .././admin/setup.php:197
634
  msgid "Not enough data collected"
635
  msgstr "Nedostatečné množství dat"
636
 
637
- #: .././admin/setup.php:198 .././admin/widgets.php:528 .././admin/widgets.php:546
638
- #: .././admin/widgets.php:625 .././admin/widgets.php:643 .././admin/widgets.php:662
639
- #: .././admin/widgets.php:681 .././admin/widgets.php:701 .././admin/widgets.php:824
640
- #: .././admin/widgets.php:827 .././admin/widgets.php:935 .././admin/widgets.php:954
641
- #: .././front/item-reports.php:114 .././front/item-reports.php:133 .././front/widgets.php:110
642
  msgid "This report is unavailable"
643
  msgstr "Toto hlášení není dostupné"
644
 
645
- #: .././admin/setup.php:199
646
  msgid "report generated by"
647
  msgstr "hlášení vytvořené s pomocí"
648
 
649
- #: .././admin/setup.php:233
650
  msgid "Settings"
651
  msgstr "Nastavení"
652
 
653
- #: .././admin/widgets.php:33 .././front/widgets.php:22
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
654
  msgid "Google Analytics Dashboard"
655
  msgstr "Nástěnka Google Analytics"
656
 
657
- #: .././admin/widgets.php:42
658
  msgid "This plugin needs an authorization:"
659
  msgstr "Tento modul potřebuje autorizovat."
660
 
661
- #: .././admin/widgets.php:76
662
  msgid "Something went wrong while retrieving profiles list."
663
  msgstr "Něco se nepovedlo při načítání seznamu profilů."
664
 
665
- #: .././admin/widgets.php:76
666
  msgid "More details"
667
  msgstr "Více detailů"
668
 
669
- #: .././admin/widgets.php:89 .././admin/widgets.php:100
670
  msgid "An admin should asign a default Google Analytics Profile."
671
  msgstr "Admin by měl přiřadit základní profil Google Analytics."
672
 
673
- #: .././admin/widgets.php:89 .././admin/widgets.php:100
674
  msgid "Select Domain"
675
  msgstr "Zvolte Doménu"
676
 
677
- #: .././admin/widgets.php:105
678
  msgid ""
679
  "Something went wrong while retrieving property data. You need to create and properly configure a "
680
  "Google Analytics account:"
@@ -682,187 +707,204 @@ msgstr ""
682
  "Něco se nepovedlo při načítání dat vlastností. Musíte vytvořil platné nastavení pro účet Google "
683
  "Analytics:"
684
 
685
- #: .././admin/widgets.php:105
686
  msgid "Find out more!"
687
  msgstr "Chcete vědět víc?"
688
 
689
- #: .././admin/widgets.php:125
690
  msgid "Real-Time"
691
  msgstr "Živě"
692
 
693
- #: .././admin/widgets.php:129 .././front/widgets.php:77 .././front/widgets.php:183
694
- msgid "Last 14 Days"
695
- msgstr "Posledních 14 dní"
696
-
697
- #: .././admin/widgets.php:135 .././admin/widgets.php:871 .././front/widgets.php:46
698
- #: .././tools/gapi.php:406 .././tools/gapi.php:567 .././tools/gapi.php:613 .././tools/gapi.php:676
699
- #: .././tools/gapi.php:786 .././tools/gapi.php:827 .././tools/gapi.php:919
700
  msgid "Sessions"
701
  msgstr "Návštěvy"
702
 
703
- #: .././admin/widgets.php:141 .././tools/gapi.php:521
704
  msgid "Pages"
705
  msgstr "Stránky"
706
 
707
- #: .././admin/widgets.php:232 .././admin/widgets.php:472
708
  msgid "REFERRAL"
709
  msgstr "POSTUPOVÁNÍ"
710
 
711
- #: .././admin/widgets.php:236 .././admin/widgets.php:473
712
  msgid "ORGANIC"
713
  msgstr "PŘÍRODNÍ"
714
 
715
- #: .././admin/widgets.php:240 .././admin/widgets.php:360 .././admin/widgets.php:474
716
  msgid "SOCIAL"
717
  msgstr "SOCIÁLNÍ"
718
 
719
- #: .././admin/widgets.php:244 .././admin/widgets.php:363 .././admin/widgets.php:475
720
  msgid "CAMPAIGN"
721
  msgstr "KAMPAŇ"
722
 
723
- #: .././admin/widgets.php:248 .././admin/widgets.php:366 .././admin/widgets.php:478
724
  msgid "DIRECT"
725
  msgstr "PŘÍMÝ"
726
 
727
- #: .././admin/widgets.php:252 .././admin/widgets.php:479
728
  msgid "NEW"
729
  msgstr "NOVÝ"
730
 
731
- #: .././admin/widgets.php:354
732
  msgid "REFERRALS"
733
  msgstr "POSTOUPENÍ"
734
 
735
- #: .././admin/widgets.php:357
736
  msgid "KEYWORDS"
737
  msgstr "KLÍČOVÁ SLOVA"
738
 
739
- #: .././front/item-reports.php:143
740
- msgid "Views vs UniqueViews"
741
- msgstr "Shlédnutí X Unikátní Shlédnutí"
742
-
743
- #: .././front/item-reports.php:193
744
- msgid "Google Analytics Reports"
745
- msgstr "Hlášení Google Analytics"
746
-
747
- #: .././front/widgets.php:23
748
  msgid "Will display your google analytics stats in a widget"
749
  msgstr "Zobrazí statistiky z Google Analytics ve widgetu"
750
 
751
- #: .././front/widgets.php:46 .././tools/gapi.php:827
752
  msgid "trend"
753
  msgstr "trend"
754
 
755
- #: .././front/widgets.php:133
756
  msgid "Period:"
757
  msgstr "Období:"
758
 
759
- #: .././front/widgets.php:133
760
  msgid "Sessions:"
761
  msgstr "Návštěvy:"
762
 
763
- #: .././front/widgets.php:137
764
  msgid "generated by"
765
  msgstr "vyrobil"
766
 
767
- #: .././front/widgets.php:147
768
  msgid "Google Analytics Stats"
769
  msgstr "Statistiky Google Analytics"
770
 
771
- #: .././front/widgets.php:154
772
  msgid "Title:"
773
  msgstr "Nadpis:"
774
 
775
- #: .././front/widgets.php:161
776
  msgid "Display:"
777
  msgstr "Zobrazení:"
778
 
779
- #: .././front/widgets.php:165
780
  msgid "Chart & Totals"
781
  msgstr "Graf a Celkové hodnoty"
782
 
783
- #: .././front/widgets.php:166
784
  msgid "Chart"
785
  msgstr "Grafy"
786
 
787
- #: .././front/widgets.php:167
788
  msgid "Totals"
789
  msgstr "Celkové hodnoty"
790
 
791
- #: .././front/widgets.php:171
792
  msgid "Anonymize stats:"
793
  msgstr "Anonimizovat statistiky:"
794
 
795
- #: .././front/widgets.php:178
796
  msgid "Stats for:"
797
  msgstr "Statistika pro:"
798
 
799
- #: .././front/widgets.php:188
800
  msgid "Give credits:"
801
  msgstr "Ukaž vydavatele:"
802
 
803
- #: .././gadwp.php:46 .././gadwp.php:55 .././gadwp.php:63
804
  msgid "This is not allowed, read the documentation!"
805
  msgstr "Toto není povoleno, přečtěte si dokumentaci."
806
 
807
- #: .././tools/gapi.php:134
808
  msgid "Use this link to get your access code:"
809
  msgstr "Použijte tento link pro získání přístupového kódu."
810
 
811
- #: .././tools/gapi.php:134
812
  msgid "Get Access Code"
813
  msgstr "Získat Přístupový Kód"
814
 
815
- #: .././tools/gapi.php:138 .././tools/gapi.php:139
816
  msgid "Use the red link to get your access code!"
817
  msgstr "Použijte červený link pro získání přístupového kódu."
818
 
819
- #: .././tools/gapi.php:138
820
  msgid "Access Code:"
821
  msgstr "Přístupový kód:"
822
 
823
- #: .././tools/gapi.php:145
824
  msgid "Save Access Code"
825
  msgstr "Uložit přístupový kód"
826
 
827
- #: .././tools/gapi.php:400
828
  msgid "Organic Searches"
829
  msgstr "Přírodní vyhledávání"
830
 
831
- #: .././tools/gapi.php:403
832
  msgid "Unique Page Views"
833
  msgstr "Unikátní zobrazení stránky"
834
 
835
- #: .././tools/gapi.php:411
836
  msgid "Hour"
837
  msgstr "Hodina"
838
 
839
- #: .././tools/gapi.php:414 .././tools/gapi.php:826 .././tools/gapi.php:876
840
  msgid "Date"
841
  msgstr "Datum"
842
 
843
- #: .././tools/gapi.php:522 .././tools/gapi.php:877
844
  msgid "Views"
845
  msgstr "Zobrazení"
846
 
847
- #: .././tools/gapi.php:640
848
  msgid "Countries"
849
  msgstr "Státy"
850
 
851
- #: .././tools/gapi.php:650
852
  msgid "Cities from"
853
  msgstr "Města z"
854
 
855
- #: .././tools/gapi.php:722
856
  msgid "Channels"
857
  msgstr "Kanály"
858
 
859
- #: .././tools/gapi.php:785
860
  msgid "Type"
861
  msgstr "Typ"
862
 
863
- #: .././tools/gapi.php:878
864
- msgid "UniqueViews"
865
- msgstr "Unikátní shlédnutí"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
866
 
867
  #~ msgid "Read %s for more information about Frontend Features and Options."
868
  #~ msgstr "Přečti si %s pro více informací o Možnostech veřejné části webu a možnostech."
4
  msgstr ""
5
  "Project-Id-Version: Google Analytics Dashboard for WP\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-dashboard-for-wp\n"
7
+ "POT-Creation-Date: 2015-07-05 16:06+0300\n"
8
+ "PO-Revision-Date: 2015-07-05 16:06+0300\n"
9
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
10
  "Language-Team: Alin Marcu\n"
11
  "Language: cs_CZ\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
  "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
16
+ "X-Generator: Poedit 1.8.2\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
+ "X-Poedit-KeywordsList: __;_e;_n;_x;_ex;_nx;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;esc_html_x;_n_noop;_nx_noop\n"
19
  "X-Poedit-Basepath: .\n"
20
  "X-Poedit-SearchPath-0: ../.\n"
21
 
22
+ #: .././admin/item-reports.php:61 .././front/item-reports.php:29
23
  msgid "Analytics"
24
  msgstr "Analýza"
25
 
26
+ #: .././admin/settings.php:89 .././admin/settings.php:184 .././admin/settings.php:318
27
+ #: .././admin/settings.php:795 .././admin/settings.php:1068
28
  msgid "Settings saved."
29
  msgstr "Nastavení uloženo"
30
 
31
+ #: .././admin/settings.php:91 .././admin/settings.php:186 .././admin/settings.php:320
32
+ #: .././admin/settings.php:772 .././admin/settings.php:782 .././admin/settings.php:791
33
+ #: .././admin/settings.php:797 .././admin/settings.php:808 .././admin/settings.php:1029
34
+ #: .././admin/settings.php:1054 .././admin/settings.php:1064 .././admin/settings.php:1070
35
+ #: .././admin/settings.php:1081
36
  msgid "Cheating Huh?"
37
  msgstr "Podvádět jo?"
38
 
39
+ #: .././admin/settings.php:95 .././admin/settings.php:190 .././admin/settings.php:324
40
+ #: .././admin/settings.php:641 .././admin/settings.php:823 .././admin/settings.php:1095
41
  #, php-format
42
  msgid "Something went wrong, check %1$s or %2$s."
43
  msgstr "Něco je špatně, zkontroluj %1$s nebo %2$s."
44
 
45
+ #: .././admin/settings.php:95 .././admin/settings.php:190 .././admin/settings.php:324
46
+ #: .././admin/settings.php:641 .././admin/settings.php:823 .././admin/settings.php:1095
47
+ #: .././admin/setup.php:46 .././admin/setup.php:59
48
  msgid "Errors & Debug"
49
  msgstr "Chyby a ladění"
50
 
51
+ #: .././admin/settings.php:95 .././admin/settings.php:190 .././admin/settings.php:324
52
+ #: .././admin/settings.php:641 .././admin/settings.php:823 .././admin/settings.php:1095
53
  msgid "authorize the plugin"
54
  msgstr "autorizovat modul"
55
 
56
+ #: .././admin/settings.php:100
57
  msgid "Google Analytics Frontend Settings"
58
  msgstr "Nastavení Google Analytics pro veřejnou část"
59
 
60
+ #: .././admin/settings.php:110 .././admin/settings.php:205
61
  msgid "Permissions"
62
  msgstr "Oprávnění"
63
 
64
+ #: .././admin/settings.php:113 .././admin/settings.php:208
65
  msgid "Show stats to:"
66
  msgstr "Zobrazit statistiky pro:"
67
 
68
+ #: .././admin/settings.php:154
69
+ msgid "enable web page reports on frontend"
70
+ msgstr ""
 
 
 
 
71
 
72
+ #: .././admin/settings.php:161 .././admin/settings.php:297 .././admin/settings.php:598
73
+ #: .././admin/settings.php:943 .././admin/settings.php:1232
74
  msgid "Save Changes"
75
  msgstr "Uložit změny"
76
 
77
+ #: .././admin/settings.php:195
78
  msgid "Google Analytics Backend Settings"
79
  msgstr "Nastavení pozadí Google Analytics"
80
 
81
+ #: .././admin/settings.php:251
82
  msgid "enable Switch View functionality"
83
  msgstr "povol funkci Přepni Náhled"
84
 
85
+ #: .././admin/settings.php:262
86
  msgid "enable reports on Posts List and Pages List"
87
  msgstr "povolit report na seznamu příspěvků a seznamu stránek"
88
 
89
+ #: .././admin/settings.php:273
90
  msgid "enable the main Dashboard Widget"
91
  msgstr "povolit hlavní widget na nástěnce"
92
 
93
+ #: .././admin/settings.php:277
94
  msgid "Real-Time Settings"
95
  msgstr "Nastavení v reálném čase"
96
 
97
+ #: .././admin/settings.php:280
98
  msgid "Maximum number of pages to display on real-time tab:"
99
  msgstr "Maximální počet stránek zobrazených na záložce reálného času"
100
 
101
+ #: .././admin/settings.php:285
102
  msgid "Location Settings"
103
  msgstr "Nastavení Umístění"
104
 
105
+ #: .././admin/settings.php:289
106
  msgid "Target Geo Map to country:"
107
  msgstr "Cíl Geo Map k zemi"
108
 
109
+ #: .././admin/settings.php:327
110
  msgid ""
111
  "The tracking component is disabled. You should set <strong>Tracking Options</strong> to "
112
  "<strong>Enabled</strong>"
114
  "Komponenta sledování je zakázána. Měli byste nastavit <strong> Možnosti sledování </ strong> na "
115
  "<strong> Povoleno </ strong>"
116
 
117
+ #: .././admin/settings.php:332
118
  msgid "Google Analytics Tracking Code"
119
  msgstr "Sledovací kód Google Analytics"
120
 
121
+ #: .././admin/settings.php:341
122
  msgid "Basic Settings"
123
  msgstr "Základní nastavení"
124
 
125
+ #: .././admin/settings.php:342 .././admin/settings.php:408
126
  msgid "Events Tracking"
127
  msgstr "Sledování událostí"
128
 
129
+ #: .././admin/settings.php:343 .././admin/settings.php:456
130
  msgid "Custom Definitions"
131
  msgstr "Vlastní definice"
132
 
133
+ #: .././admin/settings.php:344 .././admin/settings.php:554 .././admin/settings.php:1215
134
  msgid "Exclude Tracking"
135
  msgstr "Vyloučit ze sledování"
136
 
137
+ #: .././admin/settings.php:345
138
  msgid "Advanced Settings"
139
  msgstr "Pokročilá nastavení"
140
 
141
+ #: .././admin/settings.php:353
142
  msgid "Tracking Settings"
143
  msgstr "Nastavení sledování"
144
 
145
+ #: .././admin/settings.php:356
146
  msgid "Tracking Options:"
147
  msgstr "Možnosti sledování"
148
 
149
+ #: .././admin/settings.php:358
150
  msgid "Disabled"
151
  msgstr "Zakázat"
152
 
153
+ #: .././admin/settings.php:359
154
  msgid "Enabled"
155
  msgstr "Povolit"
156
 
157
+ #: .././admin/settings.php:367 .././admin/settings.php:888 .././admin/settings.php:910
158
+ #: .././admin/settings.php:1188 .././admin/widgets.php:61
159
  msgid "View Name:"
160
  msgstr "Zobrazované Jméno:"
161
 
162
+ #: .././admin/settings.php:367 .././admin/settings.php:910
163
  msgid "Tracking ID:"
164
  msgstr "Sledovací ID:"
165
 
166
+ #: .././admin/settings.php:367 .././admin/settings.php:910
167
  msgid "Default URL:"
168
  msgstr "Zákaldní URL:"
169
 
170
+ #: .././admin/settings.php:367 .././admin/settings.php:910
171
  msgid "Time Zone:"
172
  msgstr "Časová Zóna:"
173
 
174
+ #: .././admin/settings.php:372
175
  msgid "Basic Tracking"
176
  msgstr "Základní sledování"
177
 
178
+ #: .././admin/settings.php:375
179
  msgid "Tracking Type:"
180
  msgstr "Druh sledování"
181
 
182
+ #: .././admin/settings.php:377
183
  msgid "Classic Analytics"
184
  msgstr "Klasické Analytics"
185
 
186
+ #: .././admin/settings.php:378
187
  msgid "Universal Analytics"
188
  msgstr "Univerzální Analytics"
189
 
190
+ #: .././admin/settings.php:389
191
  msgid "anonymize IPs while tracking"
192
  msgstr "anonymizovat IP při sledování"
193
 
194
+ #: .././admin/settings.php:400
195
  msgid "enable remarketing, demographics and interests reports"
196
  msgstr "umožnit remarketing (rentabilita?), demografii a zprávy zájmů"
197
 
198
+ #: .././admin/settings.php:418
199
  msgid "track downloads, mailto and outbound links"
200
  msgstr "sledovat stahování, odkazy mail to (odeslat mail) a odchozí odkazy"
201
 
202
+ #: .././admin/settings.php:422
203
  msgid "Downloads Regex:"
204
  msgstr "Stažené Regex:"
205
 
206
+ #: .././admin/settings.php:433
207
  msgid "track affiliate links matching this regex"
208
  msgstr "sledovat odkazy, které sedí na tento Regex"
209
 
210
+ #: .././admin/settings.php:437
211
  msgid "Affiliates Regex:"
212
  msgstr "Členy Regexu"
213
 
214
+ #: .././admin/settings.php:448
215
  msgid "track fragment identifiers, hashmarks (#) in URI links"
216
  msgstr "sledování identifikátorů, hashmarks (#) v URI odkazech"
217
 
218
+ #: .././admin/settings.php:459
219
  msgid "Authors:"
220
  msgstr "Autoři:"
221
 
222
+ #: .././admin/settings.php:467
223
  msgid "Publication Year:"
224
  msgstr "Rok Zveřejnění:"
225
 
226
+ #: .././admin/settings.php:475
227
  msgid "Categories:"
228
  msgstr "Kategorie:"
229
 
230
+ #: .././admin/settings.php:483
231
  msgid "User Type:"
232
  msgstr "Uživatelké typ:"
233
 
234
+ #: .././admin/settings.php:495
235
  msgid "Advanced Tracking"
236
  msgstr "Pokročilé sledování"
237
 
238
+ #: .././admin/settings.php:498
239
  msgid "Page Speed SR:"
240
  msgstr "Rychlost stránky SR:"
241
 
242
+ #: .././admin/settings.php:509
243
  msgid "exclude events from bounce-rate calculation"
244
  msgstr "vyloučit události z výpočtů míry opuštění"
245
 
246
+ #: .././admin/settings.php:520
247
  msgid "enable enhanced link attribution"
248
  msgstr "povolit vylepšné vlastnosti odkazů"
249
 
250
+ #: .././admin/settings.php:531
251
  msgid "enable AdSense account linking"
252
  msgstr "povolit prolinkování účtu AdSense"
253
 
254
+ #: .././admin/settings.php:542
255
  msgid "enable cross domain tracking"
256
  msgstr "povolit sledování cross domain"
257
 
258
+ #: .././admin/settings.php:546
259
  msgid "Cross Domains:"
260
  msgstr "Cross Domains:"
261
 
262
+ #: .././admin/settings.php:557
263
  msgid "Exclude tracking for:"
264
  msgstr "Vynechat sledování pro:"
265
 
266
+ #: .././admin/settings.php:645
267
  msgid "Google Analytics Errors & Debugging"
268
  msgstr "Chyby a Ladění Google Analytics"
269
 
270
+ #: .././admin/settings.php:655
271
  msgid "Errors & Details"
272
  msgstr "Chyby a popisy"
273
 
274
+ #: .././admin/settings.php:656
275
  msgid "Plugin Settings"
276
  msgstr "Nastavení modulu:"
277
 
278
+ #: .././admin/settings.php:663
279
  msgid "Last Error detected"
280
  msgstr "Detekovaná poslední chyba"
281
 
282
+ #: .././admin/settings.php:669 .././admin/settings.php:682
283
  msgid "None"
284
  msgstr "Nic"
285
 
286
+ #: .././admin/settings.php:676
287
  msgid "Error Details"
288
  msgstr "Detail chyby"
289
 
290
+ #: .././admin/settings.php:696
291
  msgid "Plugin Configuration"
292
  msgstr "Nastavení modulu"
293
 
294
+ #: .././admin/settings.php:717 .././admin/settings.php:980
295
  msgid ""
296
  "Loading the required libraries. If this results in a blank screen or a fatal error, try this "
297
  "solution:"
299
  "Nahrávání požadovaných knihoven. Pokud to má za následek prázdnou obrazovku nebo fatální chybu, "
300
  "zkuste toto řešení:"
301
 
302
+ #: .././admin/settings.php:717
303
  msgid "Library conflicts between WordPress plugins"
304
  msgstr "Knihovna koliduje mezi moduly WordPressu"
305
 
306
+ #: .././admin/settings.php:732 .././admin/settings.php:997
307
  msgid "Plugin authorization succeeded."
308
  msgstr "Modul byl autorizován."
309
 
310
+ #: .././admin/settings.php:747 .././admin/settings.php:1020
311
  msgid ""
312
  "The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> (UA-XXXXX-X). Try "
313
  "again, and use the red link to get your access code"
315
  "Přístupový kód <strong>NENÍ</strong> Vaše <strong>Sledovací ID</strong> (UA-XXXXX-X). Zkuste "
316
  "to znovu a použijte červený odkaz pro získání přístupového kódu."
317
 
318
+ #: .././admin/settings.php:770 .././admin/settings.php:1052
319
  msgid "Cleared Cache."
320
  msgstr "Vyčištěná dočasná paměť (cache)."
321
 
322
+ #: .././admin/settings.php:779 .././admin/settings.php:1061
323
  msgid "Token Reseted and Revoked."
324
  msgstr "Token Resetován a Zrušen."
325
 
326
+ #: .././admin/settings.php:789
327
  msgid "All errors reseted."
328
  msgstr "Všechny chyby vymazány. (reseted)"
329
 
330
+ #: .././admin/settings.php:802 .././admin/settings.php:1075
331
  msgid "All other domains/properties were removed."
332
  msgstr "Všechny ostatní domény/nastavení byly odstraněny."
333
 
334
+ #: .././admin/settings.php:813 .././admin/settings.php:1086
335
  msgid "Google Analytics Settings"
336
  msgstr "Nastavení Google Analytics"
337
 
338
+ #: .././admin/settings.php:828 .././admin/settings.php:1100
339
  msgid "Use the red link (see below) to generate and get your access code!"
340
  msgstr "Použijte červený odkaz níže pro vygenerování a získání Vašeho přístupového kódu!"
341
 
342
+ #: .././admin/settings.php:839 .././admin/settings.php:1128
343
  msgid "Plugin Authorization"
344
  msgstr "Autorizace modulu"
345
 
346
+ #: .././admin/settings.php:844 .././admin/settings.php:1132
347
  #, php-format
348
  msgid ""
349
  "You should watch the %1$s and read this %2$s before proceeding to authorization. This plugin "
352
  "Měli byste shlédnout %1$s a přečíst si toto %2$s, než přikročíte k povolení. Tento modul "
353
  "vyžaduje správně nakonfigurovaný účet Google Analytics!"
354
 
355
+ #: .././admin/settings.php:844 .././admin/settings.php:1132
356
  msgid "video"
357
  msgstr "video"
358
 
359
+ #: .././admin/settings.php:844 .././admin/settings.php:1132
360
  msgid "tutorial"
361
  msgstr "cvičení"
362
 
363
+ #: .././admin/settings.php:849 .././admin/settings.php:1139
364
  msgid "use your own API Project credentials"
365
  msgstr "použijte Vaše vlastní přístupové údaje projektového API"
366
 
367
+ #: .././admin/settings.php:854 .././admin/settings.php:1147
368
  msgid "API Key:"
369
  msgstr "Klíč API:"
370
 
371
+ #: .././admin/settings.php:858 .././admin/settings.php:1151
372
  msgid "Client ID:"
373
  msgstr "Klientské ID:"
374
 
375
+ #: .././admin/settings.php:862 .././admin/settings.php:1155
376
  msgid "Client Secret:"
377
  msgstr "Klientský klíč:"
378
 
379
+ #: .././admin/settings.php:872 .././admin/settings.php:1165
380
  msgid "Clear Authorization"
381
  msgstr "Smazat autorizaci."
382
 
383
+ #: .././admin/settings.php:872 .././admin/settings.php:950 .././admin/settings.php:1165
384
+ #: .././admin/settings.php:1241
385
  msgid "Clear Cache"
386
  msgstr "Smazat dočasnou paměť (cache)."
387
 
388
+ #: .././admin/settings.php:872
389
  msgid "Reset Errors"
390
  msgstr "Smazat chyby"
391
 
392
+ #: .././admin/settings.php:878 .././admin/setup.php:42 .././admin/setup.php:58
393
  msgid "General Settings"
394
  msgstr "Hlavní Nastavení"
395
 
396
+ #: .././admin/settings.php:881
397
  msgid "Select View:"
398
  msgstr "Zvolte pohled:"
399
 
400
+ #: .././admin/settings.php:892 .././admin/settings.php:1192
401
  msgid "Property not found"
402
  msgstr "Možnost nenalezena:"
403
 
404
+ #: .././admin/settings.php:898
405
  msgid "Lock Selection"
406
  msgstr "Uzamknout tvolené"
407
 
408
+ #: .././admin/settings.php:917
409
  msgid "Theme Color:"
410
  msgstr "Barva téma:"
411
 
412
+ #: .././admin/settings.php:925 .././admin/settings.php:1201
413
  msgid "Automatic Updates"
414
  msgstr "Automatické aktualizace"
415
 
416
+ #: .././admin/settings.php:935 .././admin/settings.php:1211
417
  msgid "automatic updates for minor versions (security and maintenance releases only)"
418
  msgstr "automatické aktualizace pro nedůležité aktualizace (jen bezpečnostní a údržbové)"
419
 
420
+ #: .././admin/settings.php:950 .././admin/settings.php:1241 .././admin/widgets.php:32
421
  msgid "Authorize Plugin"
422
  msgstr "Autorizovat modul"
423
 
424
+ #: .././admin/settings.php:1026
425
  msgid "Properties refreshed."
426
  msgstr "Možnosti obnoveny"
427
 
428
+ #: .././admin/settings.php:1110
429
  msgid "Network Setup"
430
  msgstr "Nastavení sítě"
431
 
432
+ #: .././admin/settings.php:1120
433
  msgid "use a single Google Analytics account for the entire network"
434
  msgstr "použít jeden účet Google Analytics pro celou síť"
435
 
436
+ #: .././admin/settings.php:1165
437
  msgid "Refresh Properties"
438
  msgstr "Obnovit možnosti"
439
 
440
+ #: .././admin/settings.php:1171
441
  msgid "Properties/Views Settings"
442
  msgstr "Možnosti/Zobrazení nastavení"
443
 
444
+ #: .././admin/settings.php:1225
445
  msgid "exclude Super Admin tracking for the entire network"
446
  msgstr "vypnout sledování Adminů pro celou síť"
447
 
448
+ #: .././admin/settings.php:1273
449
  msgid "Setup Tutorial & Demo"
450
  msgstr "Průvodce nastavení a ukázky"
451
 
452
+ #: .././admin/settings.php:1281
453
+ msgid "Follow & Review"
454
+ msgstr ""
 
 
 
 
 
455
 
456
  #: .././admin/settings.php:1307
457
  #, php-format
506
  msgid "Web Analytics"
507
  msgstr "Web Analýza"
508
 
509
+ #: .././admin/setup.php:41 .././admin/setup.php:57
510
  msgid "Google Analytics"
511
  msgstr "Google Analytics"
512
 
513
+ #: .././admin/setup.php:43
514
  msgid "Backend Settings"
515
  msgstr "Nastavení Pozadí"
516
 
517
+ #: .././admin/setup.php:44
518
  msgid "Frontend Settings"
519
  msgstr "Nastavení Popředí"
520
 
521
+ #: .././admin/setup.php:45
522
  msgid "Tracking Code"
523
  msgstr "Sledovací kód"
524
 
525
+ #: .././admin/setup.php:159 .././admin/widgets.php:117 .././front/setup.php:71
526
  msgid "Today"
527
  msgstr "Dnes"
528
 
529
+ #: .././admin/setup.php:160 .././admin/widgets.php:118 .././front/setup.php:72
530
  msgid "Yesterday"
531
  msgstr "Včera"
532
 
533
+ #: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
534
+ #: .././admin/setup.php:164 .././admin/widgets.php:119 .././admin/widgets.php:120
535
+ #: .././admin/widgets.php:121 .././admin/widgets.php:122 .././front/setup.php:73
536
+ #: .././front/setup.php:74 .././front/setup.php:75 .././front/setup.php:76
537
+ #: .././front/widgets.php:64 .././front/widgets.php:67 .././front/widgets.php:70
538
+ #: .././front/widgets.php:158 .././front/widgets.php:159 .././front/widgets.php:160
539
+ #, php-format
540
+ msgid "Last %d Days"
541
+ msgstr "Posledních %d dní"
542
+
543
+ #: .././admin/setup.php:165 .././admin/setup.php:166 .././admin/widgets.php:123
544
+ #: .././admin/widgets.php:124 .././front/setup.php:77 .././front/setup.php:78
545
+ #, php-format
546
+ msgid "%s Year"
547
+ msgstr ""
548
 
549
+ #: .././admin/setup.php:165 .././admin/widgets.php:123 .././front/setup.php:77
550
+ msgid "One"
551
+ msgstr ""
 
552
 
553
+ #: .././admin/setup.php:166 .././admin/widgets.php:124 .././front/setup.php:78
554
+ msgid "Three"
555
+ msgstr ""
556
 
557
+ #: .././admin/setup.php:169 .././admin/setup.php:185 .././front/setup.php:81
558
+ #: .././front/setup.php:97
559
  msgid "Unique Views"
560
  msgstr "Unikátní shlédnutí"
561
 
562
+ #: .././admin/setup.php:170 .././admin/setup.php:186 .././admin/widgets.php:130
563
+ #: .././admin/widgets.php:830 .././front/setup.php:82 .././front/setup.php:98
564
+ #: .././tools/gapi.php:358
565
  msgid "Users"
566
  msgstr "Uživatelé"
567
 
568
+ #: .././admin/setup.php:171 .././admin/widgets.php:131 .././front/setup.php:83
569
  msgid "Organic"
570
  msgstr "Přírodní"
571
 
572
+ #: .././admin/setup.php:172 .././admin/setup.php:187 .././admin/widgets.php:132
573
+ #: .././admin/widgets.php:834 .././front/setup.php:84 .././front/setup.php:99
574
+ #: .././tools/gapi.php:361
575
  msgid "Page Views"
576
  msgstr "Zobrazení Stránek"
577
 
578
+ #: .././admin/setup.php:173 .././admin/setup.php:188 .././admin/widgets.php:133
579
+ #: .././admin/widgets.php:838 .././front/setup.php:85 .././front/setup.php:100
580
+ #: .././tools/gapi.php:364
581
  msgid "Bounce Rate"
582
  msgstr "Míra opuštění"
583
 
584
+ #: .././admin/setup.php:174 .././admin/widgets.php:134 .././front/setup.php:86
585
  msgid "Location"
586
  msgstr "Poloha"
587
 
588
+ #: .././admin/setup.php:175 .././admin/widgets.php:136 .././front/setup.php:87
589
+ #: .././tools/gapi.php:503
590
  msgid "Referrers"
591
  msgstr "Odkazy"
592
 
593
+ #: .././admin/setup.php:176 .././admin/widgets.php:137 .././front/setup.php:88
594
+ #: .././tools/gapi.php:536
595
  msgid "Searches"
596
  msgstr "Vyhledávání"
597
 
598
+ #: .././admin/setup.php:177 .././admin/widgets.php:138 .././front/setup.php:89
599
  msgid "Traffic Details"
600
  msgstr "Detail provozu"
601
 
602
+ #: .././admin/setup.php:180 .././admin/widgets.php:505 .././admin/widgets.php:590
603
+ #: .././admin/widgets.php:757 .././admin/widgets.php:861 .././front/setup.php:92
604
  msgid "A JavaScript Error is blocking plugin resources!"
605
  msgstr "Chyva JavaScriptu blokuje zdroje modulu."
606
 
607
+ #: .././admin/setup.php:181 .././admin/widgets.php:681 .././front/setup.php:93
608
  msgid "Traffic Mediums"
609
  msgstr "Dopravní Media"
610
 
611
+ #: .././admin/setup.php:182 .././admin/widgets.php:696 .././front/setup.php:94
612
  msgid "Visitor Type"
613
  msgstr "Druh Návštěvníka"
614
 
615
+ #: .././admin/setup.php:183 .././admin/widgets.php:711 .././front/setup.php:95
616
  msgid "Social Networks"
617
  msgstr "Sociální sítě"
618
 
619
+ #: .././admin/setup.php:184 .././admin/widgets.php:726 .././front/setup.php:96
620
  msgid "Search Engines"
621
  msgstr "Vyhledávače"
622
 
623
+ #: .././admin/setup.php:189 .././admin/widgets.php:842 .././front/setup.php:101
624
  msgid "Organic Search"
625
  msgstr "Přírodní vyhledávání"
626
 
627
+ #: .././admin/setup.php:190 .././admin/widgets.php:846 .././front/setup.php:102
628
  msgid "Pages/Session"
629
  msgstr "Stránky/Návštěvy"
630
 
631
+ #: .././admin/setup.php:191 .././admin/widgets.php:517 .././admin/widgets.php:531
632
+ #: .././admin/widgets.php:541 .././admin/widgets.php:602 .././admin/widgets.php:616
633
+ #: .././admin/widgets.php:630 .././admin/widgets.php:644 .././admin/widgets.php:658
634
+ #: .././admin/widgets.php:668 .././admin/widgets.php:770 .././admin/widgets.php:782
635
+ #: .././admin/widgets.php:873 .././admin/widgets.php:887 .././admin/widgets.php:897
636
+ #: .././front/setup.php:103
637
  msgid "Invalid response, more details in JavaScript Console (F12)."
638
  msgstr "Neplatná odpověď, více detailů v konzoli JavaScriptu (F12)."
639
 
640
+ #: .././admin/setup.php:192 .././front/setup.php:104
641
  msgid "Not enough data collected"
642
  msgstr "Nedostatečné množství dat"
643
 
644
+ #: .././admin/setup.php:193 .././admin/widgets.php:522 .././admin/widgets.php:536
645
+ #: .././admin/widgets.php:607 .././admin/widgets.php:621 .././admin/widgets.php:635
646
+ #: .././admin/widgets.php:649 .././admin/widgets.php:663 .././admin/widgets.php:775
647
+ #: .././admin/widgets.php:777 .././admin/widgets.php:878 .././admin/widgets.php:892
648
+ #: .././front/setup.php:105 .././front/widgets.php:100
649
  msgid "This report is unavailable"
650
  msgstr "Toto hlášení není dostupné"
651
 
652
+ #: .././admin/setup.php:194 .././front/setup.php:106
653
  msgid "report generated by"
654
  msgstr "hlášení vytvořené s pomocí"
655
 
656
+ #: .././admin/setup.php:225
657
  msgid "Settings"
658
  msgstr "Nastavení"
659
 
660
+ #: .././admin/setup.php:237
661
+ #, php-format
662
+ msgid "Google Analytics Dashboard for WP has been updated to version %s."
663
+ msgstr ""
664
+
665
+ #: .././admin/setup.php:237
666
+ #, php-format
667
+ msgid "For details, check out %1$s and %2$s."
668
+ msgstr ""
669
+
670
+ #: .././admin/setup.php:237
671
+ msgid "the documentation page"
672
+ msgstr ""
673
+
674
+ #: .././admin/setup.php:237
675
+ msgid "the plugin&#39;s settings page"
676
+ msgstr ""
677
+
678
+ #: .././admin/widgets.php:27 .././front/widgets.php:21
679
  msgid "Google Analytics Dashboard"
680
  msgstr "Nástěnka Google Analytics"
681
 
682
+ #: .././admin/widgets.php:32
683
  msgid "This plugin needs an authorization:"
684
  msgstr "Tento modul potřebuje autorizovat."
685
 
686
+ #: .././admin/widgets.php:66
687
  msgid "Something went wrong while retrieving profiles list."
688
  msgstr "Něco se nepovedlo při načítání seznamu profilů."
689
 
690
+ #: .././admin/widgets.php:66
691
  msgid "More details"
692
  msgstr "Více detailů"
693
 
694
+ #: .././admin/widgets.php:79 .././admin/widgets.php:90
695
  msgid "An admin should asign a default Google Analytics Profile."
696
  msgstr "Admin by měl přiřadit základní profil Google Analytics."
697
 
698
+ #: .././admin/widgets.php:79 .././admin/widgets.php:90
699
  msgid "Select Domain"
700
  msgstr "Zvolte Doménu"
701
 
702
+ #: .././admin/widgets.php:95
703
  msgid ""
704
  "Something went wrong while retrieving property data. You need to create and properly configure a "
705
  "Google Analytics account:"
707
  "Něco se nepovedlo při načítání dat vlastností. Musíte vytvořil platné nastavení pro účet Google "
708
  "Analytics:"
709
 
710
+ #: .././admin/widgets.php:95
711
  msgid "Find out more!"
712
  msgstr "Chcete vědět víc?"
713
 
714
+ #: .././admin/widgets.php:116
715
  msgid "Real-Time"
716
  msgstr "Živě"
717
 
718
+ #: .././admin/widgets.php:129 .././admin/widgets.php:826 .././front/widgets.php:36
719
+ #: .././tools/gapi.php:373 .././tools/gapi.php:503 .././tools/gapi.php:536 .././tools/gapi.php:586
720
+ #: .././tools/gapi.php:666 .././tools/gapi.php:695
 
 
 
 
721
  msgid "Sessions"
722
  msgstr "Návštěvy"
723
 
724
+ #: .././admin/widgets.php:135 .././tools/gapi.php:471
725
  msgid "Pages"
726
  msgstr "Stránky"
727
 
728
+ #: .././admin/widgets.php:236 .././admin/widgets.php:478
729
  msgid "REFERRAL"
730
  msgstr "POSTUPOVÁNÍ"
731
 
732
+ #: .././admin/widgets.php:240 .././admin/widgets.php:479
733
  msgid "ORGANIC"
734
  msgstr "PŘÍRODNÍ"
735
 
736
+ #: .././admin/widgets.php:244 .././admin/widgets.php:364 .././admin/widgets.php:480
737
  msgid "SOCIAL"
738
  msgstr "SOCIÁLNÍ"
739
 
740
+ #: .././admin/widgets.php:248 .././admin/widgets.php:367 .././admin/widgets.php:481
741
  msgid "CAMPAIGN"
742
  msgstr "KAMPAŇ"
743
 
744
+ #: .././admin/widgets.php:252 .././admin/widgets.php:370 .././admin/widgets.php:484
745
  msgid "DIRECT"
746
  msgstr "PŘÍMÝ"
747
 
748
+ #: .././admin/widgets.php:256 .././admin/widgets.php:485
749
  msgid "NEW"
750
  msgstr "NOVÝ"
751
 
752
+ #: .././admin/widgets.php:358
753
  msgid "REFERRALS"
754
  msgstr "POSTOUPENÍ"
755
 
756
+ #: .././admin/widgets.php:361
757
  msgid "KEYWORDS"
758
  msgstr "KLÍČOVÁ SLOVA"
759
 
760
+ #: .././front/widgets.php:21
 
 
 
 
 
 
 
 
761
  msgid "Will display your google analytics stats in a widget"
762
  msgstr "Zobrazí statistiky z Google Analytics ve widgetu"
763
 
764
+ #: .././front/widgets.php:36 .././tools/gapi.php:695
765
  msgid "trend"
766
  msgstr "trend"
767
 
768
+ #: .././front/widgets.php:123
769
  msgid "Period:"
770
  msgstr "Období:"
771
 
772
+ #: .././front/widgets.php:123
773
  msgid "Sessions:"
774
  msgstr "Návštěvy:"
775
 
776
+ #: .././front/widgets.php:127
777
  msgid "generated by"
778
  msgstr "vyrobil"
779
 
780
+ #: .././front/widgets.php:136
781
  msgid "Google Analytics Stats"
782
  msgstr "Statistiky Google Analytics"
783
 
784
+ #: .././front/widgets.php:144
785
  msgid "Title:"
786
  msgstr "Nadpis:"
787
 
788
+ #: .././front/widgets.php:147
789
  msgid "Display:"
790
  msgstr "Zobrazení:"
791
 
792
+ #: .././front/widgets.php:148
793
  msgid "Chart & Totals"
794
  msgstr "Graf a Celkové hodnoty"
795
 
796
+ #: .././front/widgets.php:149
797
  msgid "Chart"
798
  msgstr "Grafy"
799
 
800
+ #: .././front/widgets.php:150
801
  msgid "Totals"
802
  msgstr "Celkové hodnoty"
803
 
804
+ #: .././front/widgets.php:154
805
  msgid "Anonymize stats:"
806
  msgstr "Anonimizovat statistiky:"
807
 
808
+ #: .././front/widgets.php:157
809
  msgid "Stats for:"
810
  msgstr "Statistika pro:"
811
 
812
+ #: .././front/widgets.php:164
813
  msgid "Give credits:"
814
  msgstr "Ukaž vydavatele:"
815
 
816
+ #: .././gadwp.php:46 .././gadwp.php:54 .././gadwp.php:61
817
  msgid "This is not allowed, read the documentation!"
818
  msgstr "Toto není povoleno, přečtěte si dokumentaci."
819
 
820
+ #: .././tools/gapi.php:128
821
  msgid "Use this link to get your access code:"
822
  msgstr "Použijte tento link pro získání přístupového kódu."
823
 
824
+ #: .././tools/gapi.php:128
825
  msgid "Get Access Code"
826
  msgstr "Získat Přístupový Kód"
827
 
828
+ #: .././tools/gapi.php:132 .././tools/gapi.php:133
829
  msgid "Use the red link to get your access code!"
830
  msgstr "Použijte červený link pro získání přístupového kódu."
831
 
832
+ #: .././tools/gapi.php:132
833
  msgid "Access Code:"
834
  msgstr "Přístupový kód:"
835
 
836
+ #: .././tools/gapi.php:139
837
  msgid "Save Access Code"
838
  msgstr "Uložit přístupový kód"
839
 
840
+ #: .././tools/gapi.php:367
841
  msgid "Organic Searches"
842
  msgstr "Přírodní vyhledávání"
843
 
844
+ #: .././tools/gapi.php:370
845
  msgid "Unique Page Views"
846
  msgstr "Unikátní zobrazení stránky"
847
 
848
+ #: .././tools/gapi.php:378
849
  msgid "Hour"
850
  msgstr "Hodina"
851
 
852
+ #: .././tools/gapi.php:382 .././tools/gapi.php:385 .././tools/gapi.php:695
853
  msgid "Date"
854
  msgstr "Datum"
855
 
856
+ #: .././tools/gapi.php:471
857
  msgid "Views"
858
  msgstr "Zobrazení"
859
 
860
+ #: .././tools/gapi.php:557
861
  msgid "Countries"
862
  msgstr "Státy"
863
 
864
+ #: .././tools/gapi.php:567
865
  msgid "Cities from"
866
  msgstr "Města z"
867
 
868
+ #: .././tools/gapi.php:620
869
  msgid "Channels"
870
  msgstr "Kanály"
871
 
872
+ #: .././tools/gapi.php:666
873
  msgid "Type"
874
  msgstr "Typ"
875
 
876
+ #~ msgid "Last 7 Days"
877
+ #~ msgstr "Posledních 7 dní"
878
+
879
+ #~ msgid "Last 14 Days"
880
+ #~ msgstr "Posledních 14 dní"
881
+
882
+ #~ msgid "Last 30 Days"
883
+ #~ msgstr "Posledních 30 dní"
884
+
885
+ #~ msgid "Last 90 Days"
886
+ #~ msgstr "Posledních 90 dní"
887
+
888
+ #~ msgid "show page sessions and users in frontend (after each article)"
889
+ #~ msgstr "zobrazit stránku návštěv a uživatelů na veřejné části webu (za každým příspěvkem)"
890
+
891
+ #~ msgid "show page searches (after each article)"
892
+ #~ msgstr "zobraz vyhledávané termíny pro danou stránku (za každým příspěvkem)"
893
+
894
+ #~ msgid "Support & Reviews"
895
+ #~ msgstr "Podpora a hodnocení"
896
+
897
+ #~ msgid "Plugin documentation and support on %s"
898
+ #~ msgstr "Dokumentace modulu a podpora na %s"
899
+
900
+ #~ msgid "Views vs UniqueViews"
901
+ #~ msgstr "Shlédnutí X Unikátní Shlédnutí"
902
+
903
+ #~ msgid "Google Analytics Reports"
904
+ #~ msgstr "Hlášení Google Analytics"
905
+
906
+ #~ msgid "UniqueViews"
907
+ #~ msgstr "Unikátní shlédnutí"
908
 
909
  #~ msgid "Read %s for more information about Frontend Features and Options."
910
  #~ msgstr "Přečti si %s pro více informací o Možnostech veřejné části webu a možnostech."
languages/ga-dash-de_DE.mo CHANGED
Binary file
languages/ga-dash-de_DE.po CHANGED
@@ -3,22 +3,22 @@ msgstr ""
3
  "Project-Id-Version: Google Analytics Dashboard for WP\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-"
5
  "dashboard-for-wp\n"
6
- "POT-Creation-Date: 2015-05-25 09:06+0200\n"
7
- "PO-Revision-Date: 2015-05-25 09:07+0200\n"
8
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
9
  "Language-Team: Alin Marcu\n"
10
  "Language: de\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
- "X-Generator: Poedit 1.8\n"
15
- "X-Poedit-KeywordsList: _e;__\n"
16
  "X-Poedit-Basepath: .\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
19
  "X-Poedit-SearchPath-0: ../.\n"
20
 
21
- #: .././admin/item-reports.php:61 .././front/item-reports.php:28
22
  msgid "Analytics"
23
  msgstr "Analytics"
24
 
@@ -48,7 +48,7 @@ msgstr "Etwas ist schief gelaufen. Überprüfen Sie %1$s oder %2$s."
48
  #: .././admin/settings.php:95 .././admin/settings.php:190
49
  #: .././admin/settings.php:324 .././admin/settings.php:641
50
  #: .././admin/settings.php:823 .././admin/settings.php:1095
51
- #: .././admin/setup.php:62 .././admin/setup.php:75
52
  msgid "Errors & Debug"
53
  msgstr "Fehler & Debug"
54
 
@@ -71,8 +71,8 @@ msgid "Show stats to:"
71
  msgstr "Statistiken anzeigen für:"
72
 
73
  #: .././admin/settings.php:154
74
- msgid "show page sessions and users in frontend (after each article)"
75
- msgstr "zeige die Seiten-Sitzungen und Nutzer im Frontend (nach jedem Artikel)"
76
 
77
  #: .././admin/settings.php:161 .././admin/settings.php:297
78
  #: .././admin/settings.php:598 .././admin/settings.php:943
@@ -165,7 +165,7 @@ msgstr "Aktiviert"
165
 
166
  #: .././admin/settings.php:367 .././admin/settings.php:888
167
  #: .././admin/settings.php:910 .././admin/settings.php:1188
168
- #: .././admin/widgets.php:65
169
  msgid "View Name:"
170
  msgstr "Anzeigename:"
171
 
@@ -402,7 +402,7 @@ msgstr "Cache leeren"
402
  msgid "Reset Errors"
403
  msgstr "Fehler zurücksetzen"
404
 
405
- #: .././admin/settings.php:878 .././admin/setup.php:58 .././admin/setup.php:74
406
  msgid "General Settings"
407
  msgstr "Allgemeine Einstellungen"
408
 
@@ -434,7 +434,7 @@ msgstr ""
434
  "Wartungsaktualisierungen)"
435
 
436
  #: .././admin/settings.php:950 .././admin/settings.php:1241
437
- #: .././admin/widgets.php:36
438
  msgid "Authorize Plugin"
439
  msgstr "Plugin autorisieren"
440
 
@@ -462,243 +462,273 @@ msgstr "Frontend Einstellungen"
462
  msgid "exclude Super Admin tracking for the entire network"
463
  msgstr "den Super-Admin im gesamten Netzwerk nicht tracken"
464
 
465
- #: .././admin/settings.php:1271
466
  msgid "Setup Tutorial & Demo"
467
  msgstr "Setup Tutorial & Demo"
468
 
469
- #: .././admin/settings.php:1279
470
- msgid "Support & Reviews"
471
- msgstr "Support & Bewertungen"
472
-
473
- #: .././admin/settings.php:1286
474
- #, php-format
475
- msgid "Plugin documentation and support on %s"
476
- msgstr "Plugin-Dokumentation und Hilfe unter %s"
477
 
478
- #: .././admin/settings.php:1293
479
  #, php-format
480
  msgid "Your feedback and review are both important, %s!"
481
  msgstr "Ihre Bewertung und Rezension sind beide wichtig, %s!"
482
 
483
- #: .././admin/settings.php:1293
484
  msgid "rate this plugin"
485
  msgstr "Bewerte dieses Plugin"
486
 
487
- #: .././admin/settings.php:1299
488
  msgid "Further Reading"
489
  msgstr "Mehr erfahren"
490
 
491
- #: .././admin/settings.php:1306
492
  #, php-format
493
  msgid "%s by moving your website to HTTPS/SSL."
494
  msgstr "%s durch Umschalten der Webseite auf HTTPS/SSL."
495
 
496
- #: .././admin/settings.php:1306
497
  msgid "Improve search rankings"
498
  msgstr "Verbessern Sie Ihren Rang in den Suchergebnissen"
499
 
500
- #: .././admin/settings.php:1313
501
  #, php-format
502
  msgid "Other %s written by the same author"
503
  msgstr "Andere %s von diesem Autor"
504
 
505
- #: .././admin/settings.php:1313
506
  msgid "WordPress Plugins"
507
  msgstr "WordPress Plugins"
508
 
509
- #: .././admin/settings.php:1319
510
  msgid "Other Services"
511
  msgstr "Andere Dienste"
512
 
513
- #: .././admin/settings.php:1326
514
  #, php-format
515
  msgid "Speed up your website and plug into a whole %s"
516
  msgstr "Beschleunigen Sie Ihre Webseite und begeben Sie sich in ein %s"
517
 
518
- #: .././admin/settings.php:1326
519
  msgid "new level of site speed"
520
  msgstr "neues Level Seitenladegeschwindigkeit."
521
 
522
- #: .././admin/settings.php:1333
523
  #, php-format
524
  msgid "%s service with users tracking at IP level."
525
  msgstr "%s Service mit Nutzer-Tracking auf IP-Ebene."
526
 
527
- #: .././admin/settings.php:1333
528
  msgid "Web Analytics"
529
  msgstr "Web Analyse"
530
 
531
- #: .././admin/setup.php:57 .././admin/setup.php:73
532
  msgid "Google Analytics"
533
  msgstr "Google Analytics"
534
 
535
- #: .././admin/setup.php:59
536
  msgid "Backend Settings"
537
  msgstr "Backend Einstellungen"
538
 
539
- #: .././admin/setup.php:60
540
  msgid "Frontend Settings"
541
  msgstr "Frontend Einstellungen"
542
 
543
- #: .././admin/setup.php:61
544
  msgid "Tracking Code"
545
  msgstr "Tracking Code"
546
 
547
- #: .././admin/setup.php:147 .././admin/widgets.php:120 .././front/setup.php:71
548
  msgid "Today"
549
  msgstr "Heute"
550
 
551
- #: .././admin/setup.php:148 .././admin/widgets.php:121 .././front/setup.php:72
552
  msgid "Yesterday"
553
  msgstr "Gestern"
554
 
555
- #: .././admin/setup.php:149 .././admin/widgets.php:122 .././front/setup.php:73
556
- #: .././front/widgets.php:64 .././front/widgets.php:158
557
- msgid "Last 7 Days"
558
- msgstr "Letzte 7 Tage"
 
 
 
 
 
 
 
559
 
560
- #: .././admin/setup.php:150 .././admin/widgets.php:124 .././front/setup.php:74
561
- #: .././front/widgets.php:70 .././front/widgets.php:160
562
- msgid "Last 30 Days"
563
- msgstr "Letzte 30 Tage"
 
 
564
 
565
- #: .././admin/setup.php:151 .././admin/widgets.php:125 .././front/setup.php:75
566
- msgid "Last 90 Days"
567
- msgstr "Letzte 90 Tage"
568
 
569
- #: .././admin/setup.php:153 .././admin/setup.php:168 .././front/setup.php:77
570
- #: .././front/setup.php:92
 
 
 
 
571
  msgid "Unique Views"
572
  msgstr "Einmalige Aufrufe"
573
 
574
- #: .././admin/setup.php:154 .././admin/setup.php:169
575
- #: .././admin/widgets.php:130 .././admin/widgets.php:869
576
- #: .././front/setup.php:78 .././front/setup.php:93 .././tools/gapi.php:355
577
  msgid "Users"
578
  msgstr "Nutzer"
579
 
580
- #: .././admin/setup.php:155 .././admin/widgets.php:131 .././front/setup.php:79
581
  msgid "Organic"
582
  msgstr "Organisch"
583
 
584
- #: .././admin/setup.php:156 .././admin/setup.php:170
585
- #: .././admin/widgets.php:132 .././admin/widgets.php:873
586
- #: .././front/setup.php:80 .././front/setup.php:94 .././tools/gapi.php:358
587
  msgid "Page Views"
588
  msgstr "Seitenaufrufe"
589
 
590
- #: .././admin/setup.php:157 .././admin/setup.php:171
591
- #: .././admin/widgets.php:133 .././admin/widgets.php:877
592
- #: .././front/setup.php:81 .././front/setup.php:95 .././tools/gapi.php:361
593
  msgid "Bounce Rate"
594
  msgstr "Absprungrate"
595
 
596
- #: .././admin/setup.php:158 .././admin/widgets.php:134 .././front/setup.php:82
597
  msgid "Location"
598
  msgstr "Geografisch"
599
 
600
- #: .././admin/setup.php:159 .././admin/widgets.php:136 .././front/setup.php:83
601
- #: .././tools/gapi.php:492
602
  msgid "Referrers"
603
  msgstr "Verweise"
604
 
605
- #: .././admin/setup.php:160 .././admin/widgets.php:137 .././front/setup.php:84
606
- #: .././tools/gapi.php:525
607
  msgid "Searches"
608
  msgstr "Suchen"
609
 
610
- #: .././admin/setup.php:161 .././admin/widgets.php:138 .././front/setup.php:85
611
  msgid "Traffic Details"
612
  msgstr "Traffic Details"
613
 
614
- #: .././admin/setup.php:163 .././admin/widgets.php:504
615
- #: .././admin/widgets.php:601 .././admin/widgets.php:799
616
- #: .././admin/widgets.php:911 .././front/setup.php:87
617
  msgid "A JavaScript Error is blocking plugin resources!"
618
  msgstr "Ein JavaScript-Fehler blockiert die Plugin-Ressourcen!"
619
 
620
- #: .././admin/setup.php:164 .././admin/widgets.php:707 .././front/setup.php:88
621
  msgid "Traffic Mediums"
622
  msgstr "Medium"
623
 
624
- #: .././admin/setup.php:165 .././admin/widgets.php:723 .././front/setup.php:89
625
  msgid "Visitor Type"
626
  msgstr "Nutzertyp"
627
 
628
- #: .././admin/setup.php:166 .././admin/widgets.php:739 .././front/setup.php:90
629
  msgid "Social Networks"
630
  msgstr "soziale Netzwerke"
631
 
632
- #: .././admin/setup.php:167 .././admin/widgets.php:755 .././front/setup.php:91
633
  msgid "Search Engines"
634
  msgstr "Suchmaschinen"
635
 
636
- #: .././admin/setup.php:172 .././admin/widgets.php:881 .././front/setup.php:96
 
637
  msgid "Organic Search"
638
  msgstr "Organische Suche"
639
 
640
- #: .././admin/setup.php:173 .././admin/widgets.php:885 .././front/setup.php:97
 
641
  msgid "Pages/Session"
642
  msgstr "Seiten/Sitzung"
643
 
644
- #: .././admin/setup.php:174 .././admin/widgets.php:517
645
- #: .././admin/widgets.php:535 .././admin/widgets.php:614
646
- #: .././admin/widgets.php:632 .././admin/widgets.php:651
647
- #: .././admin/widgets.php:670 .././admin/widgets.php:690
648
- #: .././admin/widgets.php:813 .././admin/widgets.php:924
649
- #: .././admin/widgets.php:943 .././front/setup.php:98
 
 
650
  msgid "Invalid response, more details in JavaScript Console (F12)."
651
  msgstr ""
652
  "ungültige Antwort. Weitere Details finden Sie in der JavaScript-Konsole (F12)"
653
 
654
- #: .././admin/setup.php:175 .././front/setup.php:99
655
  msgid "Not enough data collected"
656
  msgstr "Nicht genug Daten vorhanden"
657
 
658
- #: .././admin/setup.php:176 .././admin/widgets.php:522
659
- #: .././admin/widgets.php:540 .././admin/widgets.php:619
660
- #: .././admin/widgets.php:637 .././admin/widgets.php:656
661
- #: .././admin/widgets.php:675 .././admin/widgets.php:695
662
- #: .././admin/widgets.php:818 .././admin/widgets.php:821
663
- #: .././admin/widgets.php:929 .././admin/widgets.php:948
664
- #: .././front/setup.php:100 .././front/widgets.php:100
665
  msgid "This report is unavailable"
666
  msgstr "Der Bericht ist nicht verfügbar"
667
 
668
- #: .././admin/setup.php:177 .././front/setup.php:101
669
  msgid "report generated by"
670
  msgstr "Bericht wurde generiert von"
671
 
672
- #: .././admin/setup.php:206
673
  msgid "Settings"
674
  msgstr "Einstellungen"
675
 
676
- #: .././admin/widgets.php:29 .././front/widgets.php:21
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
677
  msgid "Google Analytics Dashboard"
678
  msgstr "Google Analytics Dashboard"
679
 
680
- #: .././admin/widgets.php:36
681
  msgid "This plugin needs an authorization:"
682
  msgstr "Diese Plugin benötigt eine Autorisierung:"
683
 
684
- #: .././admin/widgets.php:70
685
  msgid "Something went wrong while retrieving profiles list."
686
  msgstr ""
687
  "Ein Fehler ist aufgetreten. Die Profilliste konnte nicht abgerufen werden."
688
 
689
- #: .././admin/widgets.php:70
690
  msgid "More details"
691
  msgstr "Mehr Details"
692
 
693
- #: .././admin/widgets.php:83 .././admin/widgets.php:94
694
  msgid "An admin should asign a default Google Analytics Profile."
695
  msgstr "Ein Admin sollte ein Standardprofil festlegen."
696
 
697
- #: .././admin/widgets.php:83 .././admin/widgets.php:94
698
  msgid "Select Domain"
699
  msgstr "Wähle eine Domain aus."
700
 
701
- #: .././admin/widgets.php:99
702
  msgid ""
703
  "Something went wrong while retrieving property data. You need to create and "
704
  "properly configure a Google Analytics account:"
@@ -706,62 +736,57 @@ msgstr ""
706
  "Ein Fehler ist aufgetreten. Dein Google Analytics Account muss erstellt und "
707
  "fertig konfiguriert sein:"
708
 
709
- #: .././admin/widgets.php:99
710
  msgid "Find out more!"
711
  msgstr "Erfahre mehr!"
712
 
713
- #: .././admin/widgets.php:119
714
  msgid "Real-Time"
715
  msgstr "Echtzeit"
716
 
717
- #: .././admin/widgets.php:123 .././front/widgets.php:67
718
- #: .././front/widgets.php:159
719
- msgid "Last 14 Days"
720
- msgstr "Letzte 14 Tage"
721
-
722
- #: .././admin/widgets.php:129 .././admin/widgets.php:865
723
- #: .././front/widgets.php:36 .././tools/gapi.php:370 .././tools/gapi.php:492
724
- #: .././tools/gapi.php:525 .././tools/gapi.php:575 .././tools/gapi.php:655
725
- #: .././tools/gapi.php:684
726
  msgid "Sessions"
727
  msgstr "Sitzungen"
728
 
729
- #: .././admin/widgets.php:135 .././tools/gapi.php:460
730
  msgid "Pages"
731
  msgstr "Seiten"
732
 
733
- #: .././admin/widgets.php:226 .././admin/widgets.php:466
734
  msgid "REFERRAL"
735
  msgstr "VERWEISUNG"
736
 
737
- #: .././admin/widgets.php:230 .././admin/widgets.php:467
738
  msgid "ORGANIC"
739
  msgstr "ORGANISCH"
740
 
741
- #: .././admin/widgets.php:234 .././admin/widgets.php:354
742
- #: .././admin/widgets.php:468
743
  msgid "SOCIAL"
744
  msgstr "SOZIAL"
745
 
746
- #: .././admin/widgets.php:238 .././admin/widgets.php:357
747
- #: .././admin/widgets.php:469
748
  msgid "CAMPAIGN"
749
  msgstr "KAMPANIE"
750
 
751
- #: .././admin/widgets.php:242 .././admin/widgets.php:360
752
- #: .././admin/widgets.php:472
753
  msgid "DIRECT"
754
  msgstr "DIREKT"
755
 
756
- #: .././admin/widgets.php:246 .././admin/widgets.php:473
757
  msgid "NEW"
758
  msgstr "NEUE"
759
 
760
- #: .././admin/widgets.php:348
761
  msgid "REFERRALS"
762
  msgstr "VERWEISUNGEN"
763
 
764
- #: .././admin/widgets.php:351
765
  msgid "KEYWORDS"
766
  msgstr "STICHWORTE"
767
 
@@ -769,7 +794,7 @@ msgstr "STICHWORTE"
769
  msgid "Will display your google analytics stats in a widget"
770
  msgstr "Zeigt deine Google Analytics Statistik in einem Widget an"
771
 
772
- #: .././front/widgets.php:36 .././tools/gapi.php:684
773
  msgid "trend"
774
  msgstr "Entwicklung"
775
 
@@ -825,62 +850,84 @@ msgstr "Verweise auf:"
825
  msgid "This is not allowed, read the documentation!"
826
  msgstr "Das ist nicht erlaubt! Bitte lesen Sie die Dokumentation."
827
 
828
- #: .././tools/gapi.php:125
829
  msgid "Use this link to get your access code:"
830
  msgstr "Nutze diesen Link, um deinen Zugriffscode zu erhalten:"
831
 
832
- #: .././tools/gapi.php:125
833
  msgid "Get Access Code"
834
  msgstr "Erhalte den Zugriffscode"
835
 
836
- #: .././tools/gapi.php:129 .././tools/gapi.php:130
837
  msgid "Use the red link to get your access code!"
838
  msgstr "Benutzen Sie den roten Link um Ihren Zugriffsscode zu erhalten."
839
 
840
- #: .././tools/gapi.php:129
841
  msgid "Access Code:"
842
  msgstr "Zugriffscode:"
843
 
844
- #: .././tools/gapi.php:136
845
  msgid "Save Access Code"
846
  msgstr "Zugriffscode speichern"
847
 
848
- #: .././tools/gapi.php:364
849
  msgid "Organic Searches"
850
  msgstr "Organische Suche"
851
 
852
- #: .././tools/gapi.php:367
853
  msgid "Unique Page Views"
854
  msgstr "Einmalige Seitenaufrufe"
855
 
856
- #: .././tools/gapi.php:375
857
  msgid "Hour"
858
  msgstr "Stunde"
859
 
860
- #: .././tools/gapi.php:378 .././tools/gapi.php:684
861
  msgid "Date"
862
  msgstr "Datum"
863
 
864
- #: .././tools/gapi.php:460
865
  msgid "Views"
866
  msgstr "Aufrufe"
867
 
868
- #: .././tools/gapi.php:546
869
  msgid "Countries"
870
  msgstr "Länder"
871
 
872
- #: .././tools/gapi.php:556
873
  msgid "Cities from"
874
  msgstr "Städte von"
875
 
876
- #: .././tools/gapi.php:609
877
  msgid "Channels"
878
  msgstr "Kanäle"
879
 
880
- #: .././tools/gapi.php:655
881
  msgid "Type"
882
  msgstr "Typ"
883
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
884
  #~ msgid "Read %s for more information about Frontend Features and Options."
885
  #~ msgstr ""
886
  #~ "Lesen Sie %s für weitere Informationen über die Frontend-Funktionen und -"
3
  "Project-Id-Version: Google Analytics Dashboard for WP\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-"
5
  "dashboard-for-wp\n"
6
+ "POT-Creation-Date: 2015-07-05 16:07+0300\n"
7
+ "PO-Revision-Date: 2015-07-05 16:07+0300\n"
8
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
9
  "Language-Team: Alin Marcu\n"
10
  "Language: de\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Poedit 1.8.2\n"
15
+ "X-Poedit-KeywordsList: __;_e;_n;_x;_ex;_nx;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;esc_html_x;_n_noop;_nx_noop\n"
16
  "X-Poedit-Basepath: .\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
19
  "X-Poedit-SearchPath-0: ../.\n"
20
 
21
+ #: .././admin/item-reports.php:61 .././front/item-reports.php:29
22
  msgid "Analytics"
23
  msgstr "Analytics"
24
 
48
  #: .././admin/settings.php:95 .././admin/settings.php:190
49
  #: .././admin/settings.php:324 .././admin/settings.php:641
50
  #: .././admin/settings.php:823 .././admin/settings.php:1095
51
+ #: .././admin/setup.php:46 .././admin/setup.php:59
52
  msgid "Errors & Debug"
53
  msgstr "Fehler & Debug"
54
 
71
  msgstr "Statistiken anzeigen für:"
72
 
73
  #: .././admin/settings.php:154
74
+ msgid "enable web page reports on frontend"
75
+ msgstr ""
76
 
77
  #: .././admin/settings.php:161 .././admin/settings.php:297
78
  #: .././admin/settings.php:598 .././admin/settings.php:943
165
 
166
  #: .././admin/settings.php:367 .././admin/settings.php:888
167
  #: .././admin/settings.php:910 .././admin/settings.php:1188
168
+ #: .././admin/widgets.php:61
169
  msgid "View Name:"
170
  msgstr "Anzeigename:"
171
 
402
  msgid "Reset Errors"
403
  msgstr "Fehler zurücksetzen"
404
 
405
+ #: .././admin/settings.php:878 .././admin/setup.php:42 .././admin/setup.php:58
406
  msgid "General Settings"
407
  msgstr "Allgemeine Einstellungen"
408
 
434
  "Wartungsaktualisierungen)"
435
 
436
  #: .././admin/settings.php:950 .././admin/settings.php:1241
437
+ #: .././admin/widgets.php:32
438
  msgid "Authorize Plugin"
439
  msgstr "Plugin autorisieren"
440
 
462
  msgid "exclude Super Admin tracking for the entire network"
463
  msgstr "den Super-Admin im gesamten Netzwerk nicht tracken"
464
 
465
+ #: .././admin/settings.php:1273
466
  msgid "Setup Tutorial & Demo"
467
  msgstr "Setup Tutorial & Demo"
468
 
469
+ #: .././admin/settings.php:1281
470
+ msgid "Follow & Review"
471
+ msgstr ""
 
 
 
 
 
472
 
473
+ #: .././admin/settings.php:1307
474
  #, php-format
475
  msgid "Your feedback and review are both important, %s!"
476
  msgstr "Ihre Bewertung und Rezension sind beide wichtig, %s!"
477
 
478
+ #: .././admin/settings.php:1307
479
  msgid "rate this plugin"
480
  msgstr "Bewerte dieses Plugin"
481
 
482
+ #: .././admin/settings.php:1313
483
  msgid "Further Reading"
484
  msgstr "Mehr erfahren"
485
 
486
+ #: .././admin/settings.php:1320
487
  #, php-format
488
  msgid "%s by moving your website to HTTPS/SSL."
489
  msgstr "%s durch Umschalten der Webseite auf HTTPS/SSL."
490
 
491
+ #: .././admin/settings.php:1320
492
  msgid "Improve search rankings"
493
  msgstr "Verbessern Sie Ihren Rang in den Suchergebnissen"
494
 
495
+ #: .././admin/settings.php:1327
496
  #, php-format
497
  msgid "Other %s written by the same author"
498
  msgstr "Andere %s von diesem Autor"
499
 
500
+ #: .././admin/settings.php:1327
501
  msgid "WordPress Plugins"
502
  msgstr "WordPress Plugins"
503
 
504
+ #: .././admin/settings.php:1333
505
  msgid "Other Services"
506
  msgstr "Andere Dienste"
507
 
508
+ #: .././admin/settings.php:1340
509
  #, php-format
510
  msgid "Speed up your website and plug into a whole %s"
511
  msgstr "Beschleunigen Sie Ihre Webseite und begeben Sie sich in ein %s"
512
 
513
+ #: .././admin/settings.php:1340
514
  msgid "new level of site speed"
515
  msgstr "neues Level Seitenladegeschwindigkeit."
516
 
517
+ #: .././admin/settings.php:1347
518
  #, php-format
519
  msgid "%s service with users tracking at IP level."
520
  msgstr "%s Service mit Nutzer-Tracking auf IP-Ebene."
521
 
522
+ #: .././admin/settings.php:1347
523
  msgid "Web Analytics"
524
  msgstr "Web Analyse"
525
 
526
+ #: .././admin/setup.php:41 .././admin/setup.php:57
527
  msgid "Google Analytics"
528
  msgstr "Google Analytics"
529
 
530
+ #: .././admin/setup.php:43
531
  msgid "Backend Settings"
532
  msgstr "Backend Einstellungen"
533
 
534
+ #: .././admin/setup.php:44
535
  msgid "Frontend Settings"
536
  msgstr "Frontend Einstellungen"
537
 
538
+ #: .././admin/setup.php:45
539
  msgid "Tracking Code"
540
  msgstr "Tracking Code"
541
 
542
+ #: .././admin/setup.php:159 .././admin/widgets.php:117 .././front/setup.php:71
543
  msgid "Today"
544
  msgstr "Heute"
545
 
546
+ #: .././admin/setup.php:160 .././admin/widgets.php:118 .././front/setup.php:72
547
  msgid "Yesterday"
548
  msgstr "Gestern"
549
 
550
+ #: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
551
+ #: .././admin/setup.php:164 .././admin/widgets.php:119
552
+ #: .././admin/widgets.php:120 .././admin/widgets.php:121
553
+ #: .././admin/widgets.php:122 .././front/setup.php:73 .././front/setup.php:74
554
+ #: .././front/setup.php:75 .././front/setup.php:76 .././front/widgets.php:64
555
+ #: .././front/widgets.php:67 .././front/widgets.php:70
556
+ #: .././front/widgets.php:158 .././front/widgets.php:159
557
+ #: .././front/widgets.php:160
558
+ #, php-format
559
+ msgid "Last %d Days"
560
+ msgstr "Letzte %d Tage"
561
 
562
+ #: .././admin/setup.php:165 .././admin/setup.php:166
563
+ #: .././admin/widgets.php:123 .././admin/widgets.php:124
564
+ #: .././front/setup.php:77 .././front/setup.php:78
565
+ #, php-format
566
+ msgid "%s Year"
567
+ msgstr ""
568
 
569
+ #: .././admin/setup.php:165 .././admin/widgets.php:123 .././front/setup.php:77
570
+ msgid "One"
571
+ msgstr ""
572
 
573
+ #: .././admin/setup.php:166 .././admin/widgets.php:124 .././front/setup.php:78
574
+ msgid "Three"
575
+ msgstr ""
576
+
577
+ #: .././admin/setup.php:169 .././admin/setup.php:185 .././front/setup.php:81
578
+ #: .././front/setup.php:97
579
  msgid "Unique Views"
580
  msgstr "Einmalige Aufrufe"
581
 
582
+ #: .././admin/setup.php:170 .././admin/setup.php:186
583
+ #: .././admin/widgets.php:130 .././admin/widgets.php:830
584
+ #: .././front/setup.php:82 .././front/setup.php:98 .././tools/gapi.php:358
585
  msgid "Users"
586
  msgstr "Nutzer"
587
 
588
+ #: .././admin/setup.php:171 .././admin/widgets.php:131 .././front/setup.php:83
589
  msgid "Organic"
590
  msgstr "Organisch"
591
 
592
+ #: .././admin/setup.php:172 .././admin/setup.php:187
593
+ #: .././admin/widgets.php:132 .././admin/widgets.php:834
594
+ #: .././front/setup.php:84 .././front/setup.php:99 .././tools/gapi.php:361
595
  msgid "Page Views"
596
  msgstr "Seitenaufrufe"
597
 
598
+ #: .././admin/setup.php:173 .././admin/setup.php:188
599
+ #: .././admin/widgets.php:133 .././admin/widgets.php:838
600
+ #: .././front/setup.php:85 .././front/setup.php:100 .././tools/gapi.php:364
601
  msgid "Bounce Rate"
602
  msgstr "Absprungrate"
603
 
604
+ #: .././admin/setup.php:174 .././admin/widgets.php:134 .././front/setup.php:86
605
  msgid "Location"
606
  msgstr "Geografisch"
607
 
608
+ #: .././admin/setup.php:175 .././admin/widgets.php:136 .././front/setup.php:87
609
+ #: .././tools/gapi.php:503
610
  msgid "Referrers"
611
  msgstr "Verweise"
612
 
613
+ #: .././admin/setup.php:176 .././admin/widgets.php:137 .././front/setup.php:88
614
+ #: .././tools/gapi.php:536
615
  msgid "Searches"
616
  msgstr "Suchen"
617
 
618
+ #: .././admin/setup.php:177 .././admin/widgets.php:138 .././front/setup.php:89
619
  msgid "Traffic Details"
620
  msgstr "Traffic Details"
621
 
622
+ #: .././admin/setup.php:180 .././admin/widgets.php:505
623
+ #: .././admin/widgets.php:590 .././admin/widgets.php:757
624
+ #: .././admin/widgets.php:861 .././front/setup.php:92
625
  msgid "A JavaScript Error is blocking plugin resources!"
626
  msgstr "Ein JavaScript-Fehler blockiert die Plugin-Ressourcen!"
627
 
628
+ #: .././admin/setup.php:181 .././admin/widgets.php:681 .././front/setup.php:93
629
  msgid "Traffic Mediums"
630
  msgstr "Medium"
631
 
632
+ #: .././admin/setup.php:182 .././admin/widgets.php:696 .././front/setup.php:94
633
  msgid "Visitor Type"
634
  msgstr "Nutzertyp"
635
 
636
+ #: .././admin/setup.php:183 .././admin/widgets.php:711 .././front/setup.php:95
637
  msgid "Social Networks"
638
  msgstr "soziale Netzwerke"
639
 
640
+ #: .././admin/setup.php:184 .././admin/widgets.php:726 .././front/setup.php:96
641
  msgid "Search Engines"
642
  msgstr "Suchmaschinen"
643
 
644
+ #: .././admin/setup.php:189 .././admin/widgets.php:842
645
+ #: .././front/setup.php:101
646
  msgid "Organic Search"
647
  msgstr "Organische Suche"
648
 
649
+ #: .././admin/setup.php:190 .././admin/widgets.php:846
650
+ #: .././front/setup.php:102
651
  msgid "Pages/Session"
652
  msgstr "Seiten/Sitzung"
653
 
654
+ #: .././admin/setup.php:191 .././admin/widgets.php:517
655
+ #: .././admin/widgets.php:531 .././admin/widgets.php:541
656
+ #: .././admin/widgets.php:602 .././admin/widgets.php:616
657
+ #: .././admin/widgets.php:630 .././admin/widgets.php:644
658
+ #: .././admin/widgets.php:658 .././admin/widgets.php:668
659
+ #: .././admin/widgets.php:770 .././admin/widgets.php:782
660
+ #: .././admin/widgets.php:873 .././admin/widgets.php:887
661
+ #: .././admin/widgets.php:897 .././front/setup.php:103
662
  msgid "Invalid response, more details in JavaScript Console (F12)."
663
  msgstr ""
664
  "ungültige Antwort. Weitere Details finden Sie in der JavaScript-Konsole (F12)"
665
 
666
+ #: .././admin/setup.php:192 .././front/setup.php:104
667
  msgid "Not enough data collected"
668
  msgstr "Nicht genug Daten vorhanden"
669
 
670
+ #: .././admin/setup.php:193 .././admin/widgets.php:522
671
+ #: .././admin/widgets.php:536 .././admin/widgets.php:607
672
+ #: .././admin/widgets.php:621 .././admin/widgets.php:635
673
+ #: .././admin/widgets.php:649 .././admin/widgets.php:663
674
+ #: .././admin/widgets.php:775 .././admin/widgets.php:777
675
+ #: .././admin/widgets.php:878 .././admin/widgets.php:892
676
+ #: .././front/setup.php:105 .././front/widgets.php:100
677
  msgid "This report is unavailable"
678
  msgstr "Der Bericht ist nicht verfügbar"
679
 
680
+ #: .././admin/setup.php:194 .././front/setup.php:106
681
  msgid "report generated by"
682
  msgstr "Bericht wurde generiert von"
683
 
684
+ #: .././admin/setup.php:225
685
  msgid "Settings"
686
  msgstr "Einstellungen"
687
 
688
+ #: .././admin/setup.php:237
689
+ #, php-format
690
+ msgid "Google Analytics Dashboard for WP has been updated to version %s."
691
+ msgstr ""
692
+
693
+ #: .././admin/setup.php:237
694
+ #, php-format
695
+ msgid "For details, check out %1$s and %2$s."
696
+ msgstr ""
697
+
698
+ #: .././admin/setup.php:237
699
+ msgid "the documentation page"
700
+ msgstr ""
701
+
702
+ #: .././admin/setup.php:237
703
+ msgid "the plugin&#39;s settings page"
704
+ msgstr ""
705
+
706
+ #: .././admin/widgets.php:27 .././front/widgets.php:21
707
  msgid "Google Analytics Dashboard"
708
  msgstr "Google Analytics Dashboard"
709
 
710
+ #: .././admin/widgets.php:32
711
  msgid "This plugin needs an authorization:"
712
  msgstr "Diese Plugin benötigt eine Autorisierung:"
713
 
714
+ #: .././admin/widgets.php:66
715
  msgid "Something went wrong while retrieving profiles list."
716
  msgstr ""
717
  "Ein Fehler ist aufgetreten. Die Profilliste konnte nicht abgerufen werden."
718
 
719
+ #: .././admin/widgets.php:66
720
  msgid "More details"
721
  msgstr "Mehr Details"
722
 
723
+ #: .././admin/widgets.php:79 .././admin/widgets.php:90
724
  msgid "An admin should asign a default Google Analytics Profile."
725
  msgstr "Ein Admin sollte ein Standardprofil festlegen."
726
 
727
+ #: .././admin/widgets.php:79 .././admin/widgets.php:90
728
  msgid "Select Domain"
729
  msgstr "Wähle eine Domain aus."
730
 
731
+ #: .././admin/widgets.php:95
732
  msgid ""
733
  "Something went wrong while retrieving property data. You need to create and "
734
  "properly configure a Google Analytics account:"
736
  "Ein Fehler ist aufgetreten. Dein Google Analytics Account muss erstellt und "
737
  "fertig konfiguriert sein:"
738
 
739
+ #: .././admin/widgets.php:95
740
  msgid "Find out more!"
741
  msgstr "Erfahre mehr!"
742
 
743
+ #: .././admin/widgets.php:116
744
  msgid "Real-Time"
745
  msgstr "Echtzeit"
746
 
747
+ #: .././admin/widgets.php:129 .././admin/widgets.php:826
748
+ #: .././front/widgets.php:36 .././tools/gapi.php:373 .././tools/gapi.php:503
749
+ #: .././tools/gapi.php:536 .././tools/gapi.php:586 .././tools/gapi.php:666
750
+ #: .././tools/gapi.php:695
 
 
 
 
 
751
  msgid "Sessions"
752
  msgstr "Sitzungen"
753
 
754
+ #: .././admin/widgets.php:135 .././tools/gapi.php:471
755
  msgid "Pages"
756
  msgstr "Seiten"
757
 
758
+ #: .././admin/widgets.php:236 .././admin/widgets.php:478
759
  msgid "REFERRAL"
760
  msgstr "VERWEISUNG"
761
 
762
+ #: .././admin/widgets.php:240 .././admin/widgets.php:479
763
  msgid "ORGANIC"
764
  msgstr "ORGANISCH"
765
 
766
+ #: .././admin/widgets.php:244 .././admin/widgets.php:364
767
+ #: .././admin/widgets.php:480
768
  msgid "SOCIAL"
769
  msgstr "SOZIAL"
770
 
771
+ #: .././admin/widgets.php:248 .././admin/widgets.php:367
772
+ #: .././admin/widgets.php:481
773
  msgid "CAMPAIGN"
774
  msgstr "KAMPANIE"
775
 
776
+ #: .././admin/widgets.php:252 .././admin/widgets.php:370
777
+ #: .././admin/widgets.php:484
778
  msgid "DIRECT"
779
  msgstr "DIREKT"
780
 
781
+ #: .././admin/widgets.php:256 .././admin/widgets.php:485
782
  msgid "NEW"
783
  msgstr "NEUE"
784
 
785
+ #: .././admin/widgets.php:358
786
  msgid "REFERRALS"
787
  msgstr "VERWEISUNGEN"
788
 
789
+ #: .././admin/widgets.php:361
790
  msgid "KEYWORDS"
791
  msgstr "STICHWORTE"
792
 
794
  msgid "Will display your google analytics stats in a widget"
795
  msgstr "Zeigt deine Google Analytics Statistik in einem Widget an"
796
 
797
+ #: .././front/widgets.php:36 .././tools/gapi.php:695
798
  msgid "trend"
799
  msgstr "Entwicklung"
800
 
850
  msgid "This is not allowed, read the documentation!"
851
  msgstr "Das ist nicht erlaubt! Bitte lesen Sie die Dokumentation."
852
 
853
+ #: .././tools/gapi.php:128
854
  msgid "Use this link to get your access code:"
855
  msgstr "Nutze diesen Link, um deinen Zugriffscode zu erhalten:"
856
 
857
+ #: .././tools/gapi.php:128
858
  msgid "Get Access Code"
859
  msgstr "Erhalte den Zugriffscode"
860
 
861
+ #: .././tools/gapi.php:132 .././tools/gapi.php:133
862
  msgid "Use the red link to get your access code!"
863
  msgstr "Benutzen Sie den roten Link um Ihren Zugriffsscode zu erhalten."
864
 
865
+ #: .././tools/gapi.php:132
866
  msgid "Access Code:"
867
  msgstr "Zugriffscode:"
868
 
869
+ #: .././tools/gapi.php:139
870
  msgid "Save Access Code"
871
  msgstr "Zugriffscode speichern"
872
 
873
+ #: .././tools/gapi.php:367
874
  msgid "Organic Searches"
875
  msgstr "Organische Suche"
876
 
877
+ #: .././tools/gapi.php:370
878
  msgid "Unique Page Views"
879
  msgstr "Einmalige Seitenaufrufe"
880
 
881
+ #: .././tools/gapi.php:378
882
  msgid "Hour"
883
  msgstr "Stunde"
884
 
885
+ #: .././tools/gapi.php:382 .././tools/gapi.php:385 .././tools/gapi.php:695
886
  msgid "Date"
887
  msgstr "Datum"
888
 
889
+ #: .././tools/gapi.php:471
890
  msgid "Views"
891
  msgstr "Aufrufe"
892
 
893
+ #: .././tools/gapi.php:557
894
  msgid "Countries"
895
  msgstr "Länder"
896
 
897
+ #: .././tools/gapi.php:567
898
  msgid "Cities from"
899
  msgstr "Städte von"
900
 
901
+ #: .././tools/gapi.php:620
902
  msgid "Channels"
903
  msgstr "Kanäle"
904
 
905
+ #: .././tools/gapi.php:666
906
  msgid "Type"
907
  msgstr "Typ"
908
 
909
+ #~ msgid "Last 7 Days"
910
+ #~ msgstr "Letzte 7 Tage"
911
+
912
+ #~ msgid "Last 14 Days"
913
+ #~ msgstr "Letzte 14 Tage"
914
+
915
+ #~ msgid "Last 30 Days"
916
+ #~ msgstr "Letzte 30 Tage"
917
+
918
+ #~ msgid "Last 90 Days"
919
+ #~ msgstr "Letzte 90 Tage"
920
+
921
+ #~ msgid "show page sessions and users in frontend (after each article)"
922
+ #~ msgstr ""
923
+ #~ "zeige die Seiten-Sitzungen und Nutzer im Frontend (nach jedem Artikel)"
924
+
925
+ #~ msgid "Support & Reviews"
926
+ #~ msgstr "Support & Bewertungen"
927
+
928
+ #~ msgid "Plugin documentation and support on %s"
929
+ #~ msgstr "Plugin-Dokumentation und Hilfe unter %s"
930
+
931
  #~ msgid "Read %s for more information about Frontend Features and Options."
932
  #~ msgstr ""
933
  #~ "Lesen Sie %s für weitere Informationen über die Frontend-Funktionen und -"
languages/ga-dash-es_ES.po CHANGED
@@ -3,364 +3,360 @@ msgstr ""
3
  "Project-Id-Version: Google Analytics Dashboard for WP\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-"
5
  "dashboard-for-wp\n"
6
- "POT-Creation-Date: 2015-05-21 19:46+0200\n"
7
- "PO-Revision-Date: 2015-05-21 19:46+0200\n"
8
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
9
  "Language-Team: Alin Marcu\n"
10
  "Language: es_ES\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
- "X-Generator: Poedit 1.8\n"
15
- "X-Poedit-KeywordsList: _e;__\n"
16
  "X-Poedit-Basepath: .\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
  "X-Poedit-SearchPath-0: ../.\n"
19
 
20
- #: .././admin/item-reports.php:52
21
  msgid "Analytics"
22
  msgstr ""
23
 
24
- #: .././admin/settings.php:94 .././admin/settings.php:197
25
- #: .././admin/settings.php:328 .././admin/settings.php:803
26
- #: .././admin/settings.php:1079
27
  msgid "Settings saved."
28
  msgstr ""
29
 
30
- #: .././admin/settings.php:96 .././admin/settings.php:199
31
- #: .././admin/settings.php:330 .././admin/settings.php:780
32
- #: .././admin/settings.php:790 .././admin/settings.php:799
33
- #: .././admin/settings.php:805 .././admin/settings.php:817
34
- #: .././admin/settings.php:1040 .././admin/settings.php:1065
35
- #: .././admin/settings.php:1075 .././admin/settings.php:1081
36
- #: .././admin/settings.php:1093
37
  msgid "Cheating Huh?"
38
  msgstr ""
39
 
40
- #: .././admin/settings.php:100 .././admin/settings.php:203
41
- #: .././admin/settings.php:334 .././admin/settings.php:647
42
- #: .././admin/settings.php:832 .././admin/settings.php:1107
43
  #, php-format
44
  msgid "Something went wrong, check %1$s or %2$s."
45
  msgstr ""
46
 
47
- #: .././admin/settings.php:100 .././admin/settings.php:203
48
- #: .././admin/settings.php:334 .././admin/settings.php:647
49
- #: .././admin/settings.php:832 .././admin/settings.php:1107
50
- #: .././admin/setup.php:82 .././admin/setup.php:101
51
  msgid "Errors & Debug"
52
  msgstr ""
53
 
54
- #: .././admin/settings.php:100 .././admin/settings.php:203
55
- #: .././admin/settings.php:334 .././admin/settings.php:647
56
- #: .././admin/settings.php:832 .././admin/settings.php:1107
57
  msgid "authorize the plugin"
58
  msgstr "autorizar aplicación"
59
 
60
- #: .././admin/settings.php:105
61
  msgid "Google Analytics Frontend Settings"
62
  msgstr "Configuración del frontend de Google Analytics"
63
 
64
- #: .././admin/settings.php:115 .././admin/settings.php:218
65
  msgid "Permissions"
66
  msgstr ""
67
 
68
- #: .././admin/settings.php:118 .././admin/settings.php:221
69
  msgid "Show stats to:"
70
  msgstr ""
71
 
72
- #: .././admin/settings.php:157
73
- msgid "show page sessions and users in frontend (after each article)"
74
  msgstr ""
75
 
76
- #: .././admin/settings.php:168
77
- msgid "show page searches (after each article)"
78
- msgstr ""
79
-
80
- #: .././admin/settings.php:175 .././admin/settings.php:308
81
- #: .././admin/settings.php:605 .././admin/settings.php:952
82
- #: .././admin/settings.php:1245
83
  msgid "Save Changes"
84
  msgstr ""
85
 
86
- #: .././admin/settings.php:208
87
  msgid "Google Analytics Backend Settings"
88
  msgstr ""
89
 
90
- #: .././admin/settings.php:262
91
  msgid "enable Switch View functionality"
92
  msgstr ""
93
 
94
- #: .././admin/settings.php:273
95
  msgid "enable reports on Posts List and Pages List"
96
  msgstr ""
97
 
98
- #: .././admin/settings.php:284
99
  msgid "enable the main Dashboard Widget"
100
  msgstr ""
101
 
102
- #: .././admin/settings.php:288
103
  #, fuzzy
104
  msgid "Real-Time Settings"
105
  msgstr "Configuración de la caché"
106
 
107
- #: .././admin/settings.php:291
108
  msgid "Maximum number of pages to display on real-time tab:"
109
  msgstr ""
110
 
111
- #: .././admin/settings.php:296
112
  msgid "Location Settings"
113
  msgstr ""
114
 
115
- #: .././admin/settings.php:300
116
  msgid "Target Geo Map to country:"
117
  msgstr ""
118
 
119
- #: .././admin/settings.php:337
120
  msgid ""
121
  "The tracking component is disabled. You should set <strong>Tracking Options</"
122
  "strong> to <strong>Enabled</strong>"
123
  msgstr ""
124
 
125
- #: .././admin/settings.php:342
126
  #, fuzzy
127
  msgid "Google Analytics Tracking Code"
128
  msgstr "Seguimiento de Google Analytics"
129
 
130
- #: .././admin/settings.php:351
131
  msgid "Basic Settings"
132
  msgstr ""
133
 
134
- #: .././admin/settings.php:352 .././admin/settings.php:417
135
  #, fuzzy
136
  msgid "Events Tracking"
137
  msgstr "Activar seguimiento:"
138
 
139
- #: .././admin/settings.php:353 .././admin/settings.php:465
140
  msgid "Custom Definitions"
141
  msgstr ""
142
 
143
- #: .././admin/settings.php:354 .././admin/settings.php:563
144
- #: .././admin/settings.php:1228
145
  #, fuzzy
146
  msgid "Exclude Tracking"
147
  msgstr "Activar seguimiento:"
148
 
149
- #: .././admin/settings.php:355
150
  msgid "Advanced Settings"
151
  msgstr ""
152
 
153
- #: .././admin/settings.php:362
154
  #, fuzzy
155
  msgid "Tracking Settings"
156
  msgstr "Configuración del backend"
157
 
158
- #: .././admin/settings.php:365
159
  msgid "Tracking Options:"
160
  msgstr ""
161
 
162
- #: .././admin/settings.php:367
163
  msgid "Disabled"
164
  msgstr "desactivado"
165
 
166
- #: .././admin/settings.php:368
167
  #, fuzzy
168
  msgid "Enabled"
169
  msgstr "desactivado"
170
 
171
- #: .././admin/settings.php:376 .././admin/settings.php:897
172
- #: .././admin/settings.php:919 .././admin/settings.php:1201
173
- #: .././admin/widgets.php:71
174
  msgid "View Name:"
175
  msgstr ""
176
 
177
- #: .././admin/settings.php:376 .././admin/settings.php:919
178
  #, fuzzy
179
  msgid "Tracking ID:"
180
  msgstr "Tipo de seguimiento:"
181
 
182
- #: .././admin/settings.php:376 .././admin/settings.php:919
183
  msgid "Default URL:"
184
  msgstr ""
185
 
186
- #: .././admin/settings.php:376 .././admin/settings.php:919
187
  msgid "Time Zone:"
188
  msgstr ""
189
 
190
- #: .././admin/settings.php:381
191
  #, fuzzy
192
  msgid "Basic Tracking"
193
  msgstr "Activar seguimiento:"
194
 
195
- #: .././admin/settings.php:384
196
  msgid "Tracking Type:"
197
  msgstr ""
198
 
199
- #: .././admin/settings.php:386
200
  msgid "Classic Analytics"
201
  msgstr ""
202
 
203
- #: .././admin/settings.php:387
204
  msgid "Universal Analytics"
205
  msgstr ""
206
 
207
- #: .././admin/settings.php:398
208
  msgid "anonymize IPs while tracking"
209
  msgstr ""
210
 
211
- #: .././admin/settings.php:409
212
  msgid "enable remarketing, demographics and interests reports"
213
  msgstr ""
214
 
215
- #: .././admin/settings.php:427
216
  msgid "track downloads, mailto and outbound links"
217
  msgstr ""
218
 
219
- #: .././admin/settings.php:431
220
  msgid "Downloads Regex:"
221
  msgstr ""
222
 
223
- #: .././admin/settings.php:442
224
  msgid "track affiliate links matching this regex"
225
  msgstr ""
226
 
227
- #: .././admin/settings.php:446
228
  msgid "Affiliates Regex:"
229
  msgstr ""
230
 
231
- #: .././admin/settings.php:457
232
  msgid "track fragment identifiers, hashmarks (#) in URI links"
233
  msgstr ""
234
 
235
- #: .././admin/settings.php:468
236
  msgid "Authors:"
237
  msgstr ""
238
 
239
- #: .././admin/settings.php:476
240
  msgid "Publication Year:"
241
  msgstr ""
242
 
243
- #: .././admin/settings.php:484
244
  msgid "Categories:"
245
  msgstr ""
246
 
247
- #: .././admin/settings.php:492
248
  msgid "User Type:"
249
  msgstr ""
250
 
251
- #: .././admin/settings.php:504
252
  #, fuzzy
253
  msgid "Advanced Tracking"
254
  msgstr "Activar seguimiento:"
255
 
256
- #: .././admin/settings.php:507
257
  #, fuzzy
258
  msgid "Page Speed SR:"
259
  msgstr "Páginas por visita:"
260
 
261
- #: .././admin/settings.php:518
262
  msgid "exclude events from bounce-rate calculation"
263
  msgstr ""
264
 
265
- #: .././admin/settings.php:529
266
  msgid "enable enhanced link attribution"
267
  msgstr ""
268
 
269
- #: .././admin/settings.php:540
270
  msgid "enable AdSense account linking"
271
  msgstr ""
272
 
273
- #: .././admin/settings.php:551
274
  msgid "enable cross domain tracking"
275
  msgstr ""
276
 
277
- #: .././admin/settings.php:555
278
  msgid "Cross Domains:"
279
  msgstr ""
280
 
281
- #: .././admin/settings.php:566
282
  msgid "Exclude tracking for:"
283
  msgstr ""
284
 
285
- #: .././admin/settings.php:651
286
  msgid "Google Analytics Errors & Debugging"
287
  msgstr ""
288
 
289
- #: .././admin/settings.php:661
290
  msgid "Errors & Details"
291
  msgstr ""
292
 
293
- #: .././admin/settings.php:662
294
  msgid "Plugin Settings"
295
  msgstr ""
296
 
297
- #: .././admin/settings.php:670
298
  msgid "Last Error detected"
299
  msgstr ""
300
 
301
- #: .././admin/settings.php:676 .././admin/settings.php:689
302
  msgid "None"
303
  msgstr "Ninguno"
304
 
305
- #: .././admin/settings.php:683
306
  msgid "Error Details"
307
  msgstr ""
308
 
309
- #: .././admin/settings.php:703
310
  msgid "Plugin Configuration"
311
  msgstr ""
312
 
313
- #: .././admin/settings.php:725 .././admin/settings.php:990
314
  msgid ""
315
  "Loading the required libraries. If this results in a blank screen or a fatal "
316
  "error, try this solution:"
317
  msgstr ""
318
 
319
- #: .././admin/settings.php:725
320
  msgid "Library conflicts between WordPress plugins"
321
  msgstr ""
322
 
323
- #: .././admin/settings.php:740 .././admin/settings.php:1007
324
  msgid "Plugin authorization succeeded."
325
  msgstr ""
326
 
327
- #: .././admin/settings.php:755 .././admin/settings.php:1031
328
  msgid ""
329
  "The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
330
  "(UA-XXXXX-X). Try again, and use the red link to get your access code"
331
  msgstr ""
332
 
333
- #: .././admin/settings.php:778 .././admin/settings.php:1063
334
  msgid "Cleared Cache."
335
  msgstr "Caché borrada."
336
 
337
- #: .././admin/settings.php:787 .././admin/settings.php:1072
338
  #, fuzzy
339
  msgid "Token Reseted and Revoked."
340
  msgstr "Token reseteado."
341
 
342
- #: .././admin/settings.php:797
343
  msgid "All errors reseted."
344
  msgstr ""
345
 
346
- #: .././admin/settings.php:810 .././admin/settings.php:1086
347
  msgid "All other domains/properties were removed."
348
  msgstr ""
349
 
350
- #: .././admin/settings.php:822 .././admin/settings.php:1098
351
  msgid "Google Analytics Settings"
352
  msgstr "Configuración de Google Analytics"
353
 
354
- #: .././admin/settings.php:837 .././admin/settings.php:1112
355
  msgid "Use the red link (see below) to generate and get your access code!"
356
  msgstr ""
357
 
358
- #: .././admin/settings.php:848 .././admin/settings.php:1140
359
  #, fuzzy
360
  msgid "Plugin Authorization"
361
  msgstr "Borrar autorización"
362
 
363
- #: .././admin/settings.php:853 .././admin/settings.php:1144
364
  #, php-format
365
  msgid ""
366
  "You should watch the %1$s and read this %2$s before proceeding to "
@@ -368,117 +364,111 @@ msgid ""
368
  "account!"
369
  msgstr ""
370
 
371
- #: .././admin/settings.php:853 .././admin/settings.php:1144
372
  msgid "video"
373
  msgstr ""
374
 
375
- #: .././admin/settings.php:853 .././admin/settings.php:1144
376
  #, fuzzy
377
  msgid "tutorial"
378
  msgstr "Tutorial de configuración"
379
 
380
- #: .././admin/settings.php:858 .././admin/settings.php:1151
381
  msgid "use your own API Project credentials"
382
  msgstr ""
383
 
384
- #: .././admin/settings.php:863 .././admin/settings.php:1159
385
  msgid "API Key:"
386
  msgstr "API Key:"
387
 
388
- #: .././admin/settings.php:867 .././admin/settings.php:1163
389
  msgid "Client ID:"
390
  msgstr "Client ID:"
391
 
392
- #: .././admin/settings.php:871 .././admin/settings.php:1167
393
  msgid "Client Secret:"
394
  msgstr "Client Secret:"
395
 
396
- #: .././admin/settings.php:881 .././admin/settings.php:1177
397
  msgid "Clear Authorization"
398
  msgstr "Borrar autorización"
399
 
400
- #: .././admin/settings.php:881 .././admin/settings.php:959
401
- #: .././admin/settings.php:1177 .././admin/settings.php:1254
402
  msgid "Clear Cache"
403
  msgstr "Borrar caché"
404
 
405
- #: .././admin/settings.php:881
406
  msgid "Reset Errors"
407
  msgstr ""
408
 
409
- #: .././admin/settings.php:887 .././admin/setup.php:70 .././admin/setup.php:98
410
  msgid "General Settings"
411
  msgstr "Configuración general"
412
 
413
- #: .././admin/settings.php:890
414
  msgid "Select View:"
415
  msgstr ""
416
 
417
- #: .././admin/settings.php:901 .././admin/settings.php:1205
418
  msgid "Property not found"
419
  msgstr ""
420
 
421
- #: .././admin/settings.php:907
422
  msgid "Lock Selection"
423
  msgstr ""
424
 
425
- #: .././admin/settings.php:926
426
  msgid "Theme Color:"
427
  msgstr ""
428
 
429
- #: .././admin/settings.php:934 .././admin/settings.php:1214
430
  msgid "Automatic Updates"
431
  msgstr ""
432
 
433
- #: .././admin/settings.php:944 .././admin/settings.php:1224
434
  msgid ""
435
  "automatic updates for minor versions (security and maintenance releases only)"
436
  msgstr ""
437
 
438
- #: .././admin/settings.php:959 .././admin/settings.php:1254
439
- #: .././admin/widgets.php:42
440
  #, fuzzy
441
  msgid "Authorize Plugin"
442
  msgstr "Autorizar aplicación"
443
 
444
- #: .././admin/settings.php:1037
445
  msgid "Properties refreshed."
446
  msgstr ""
447
 
448
- #: .././admin/settings.php:1122
449
  msgid "Network Setup"
450
  msgstr ""
451
 
452
- #: .././admin/settings.php:1132
453
  msgid "use a single Google Analytics account for the entire network"
454
  msgstr ""
455
 
456
- #: .././admin/settings.php:1177
457
  msgid "Refresh Properties"
458
  msgstr ""
459
 
460
- #: .././admin/settings.php:1183
461
  #, fuzzy
462
  msgid "Properties/Views Settings"
463
  msgstr "Configuración del frontend"
464
 
465
- #: .././admin/settings.php:1238
466
  msgid "exclude Super Admin tracking for the entire network"
467
  msgstr ""
468
 
469
- #: .././admin/settings.php:1285
470
  #, fuzzy
471
  msgid "Setup Tutorial & Demo"
472
  msgstr "Tutorial de configuración"
473
 
474
- #: .././admin/settings.php:1293
475
- #, fuzzy
476
- msgid "Support & Reviews"
477
- msgstr "Enlaces de soporte"
478
-
479
- #: .././admin/settings.php:1300
480
- #, php-format
481
- msgid "Plugin documentation and support on %s"
482
  msgstr ""
483
 
484
  #: .././admin/settings.php:1307
@@ -534,369 +524,409 @@ msgstr ""
534
  msgid "Web Analytics"
535
  msgstr "Analíticas web"
536
 
537
- #: .././admin/setup.php:67 .././admin/setup.php:95
538
  msgid "Google Analytics"
539
  msgstr "Google Analytics"
540
 
541
- #: .././admin/setup.php:73
542
  msgid "Backend Settings"
543
  msgstr "Configuración del backend"
544
 
545
- #: .././admin/setup.php:76
546
  msgid "Frontend Settings"
547
  msgstr "Configuración del frontend"
548
 
549
- #: .././admin/setup.php:79
550
  #, fuzzy
551
  msgid "Tracking Code"
552
  msgstr "Tipo de seguimiento:"
553
 
554
- #: .././admin/setup.php:169 .././admin/widgets.php:126
555
  msgid "Today"
556
  msgstr "Hoy"
557
 
558
- #: .././admin/setup.php:170 .././admin/widgets.php:127
559
  msgid "Yesterday"
560
  msgstr "Ayer"
561
 
562
- #: .././admin/setup.php:171 .././admin/widgets.php:128
563
- #: .././front/widgets.php:74 .././front/widgets.php:182
564
- msgid "Last 7 Days"
565
- msgstr "Últimos 7 días "
 
 
 
 
 
 
 
566
 
567
- #: .././admin/setup.php:172 .././admin/widgets.php:130
568
- #: .././front/widgets.php:80 .././front/widgets.php:184
569
- msgid "Last 30 Days"
570
- msgstr "Últimos 30 días"
 
 
571
 
572
- #: .././admin/setup.php:173 .././admin/widgets.php:131
573
- msgid "Last 90 Days"
574
- msgstr "Últimos 90 días"
575
 
576
- #: .././admin/setup.php:175 .././admin/setup.php:190
 
 
 
 
 
577
  msgid "Unique Views"
578
  msgstr ""
579
 
580
- #: .././admin/setup.php:176 .././admin/setup.php:191
581
- #: .././admin/widgets.php:136 .././admin/widgets.php:875
582
- #: .././tools/gapi.php:391
583
  msgid "Users"
584
  msgstr ""
585
 
586
- #: .././admin/setup.php:177 .././admin/widgets.php:137
587
  msgid "Organic"
588
  msgstr "Búsquedas orgánicas"
589
 
590
- #: .././admin/setup.php:178 .././admin/setup.php:192
591
- #: .././admin/widgets.php:138 .././admin/widgets.php:879
592
- #: .././tools/gapi.php:394
593
  msgid "Page Views"
594
  msgstr "Páginas vistas"
595
 
596
- #: .././admin/setup.php:179 .././admin/setup.php:193
597
- #: .././admin/widgets.php:139 .././admin/widgets.php:883
598
- #: .././tools/gapi.php:397
599
  msgid "Bounce Rate"
600
  msgstr "Porcenaje de rebote"
601
 
602
- #: .././admin/setup.php:180 .././admin/widgets.php:140
603
  msgid "Location"
604
  msgstr ""
605
 
606
- #: .././admin/setup.php:181 .././admin/widgets.php:142 .././tools/gapi.php:566
 
607
  msgid "Referrers"
608
  msgstr ""
609
 
610
- #: .././admin/setup.php:182 .././admin/widgets.php:143 .././tools/gapi.php:612
611
- #: .././tools/gapi.php:918
612
  msgid "Searches"
613
  msgstr ""
614
 
615
- #: .././admin/setup.php:183 .././admin/widgets.php:144
616
  msgid "Traffic Details"
617
  msgstr ""
618
 
619
- #: .././admin/setup.php:185 .././admin/widgets.php:510
620
- #: .././admin/widgets.php:607 .././admin/widgets.php:805
621
- #: .././admin/widgets.php:917 .././front/item-reports.php:97
622
  msgid "A JavaScript Error is blocking plugin resources!"
623
  msgstr ""
624
 
625
- #: .././admin/setup.php:186 .././admin/widgets.php:713
626
  msgid "Traffic Mediums"
627
  msgstr ""
628
 
629
- #: .././admin/setup.php:187 .././admin/widgets.php:729
630
  msgid "Visitor Type"
631
  msgstr ""
632
 
633
- #: .././admin/setup.php:188 .././admin/widgets.php:745
634
  msgid "Social Networks"
635
  msgstr ""
636
 
637
- #: .././admin/setup.php:189 .././admin/widgets.php:761
638
  msgid "Search Engines"
639
  msgstr ""
640
 
641
- #: .././admin/setup.php:194 .././admin/widgets.php:887
 
642
  msgid "Organic Search"
643
  msgstr ""
644
 
645
- #: .././admin/setup.php:195 .././admin/widgets.php:891
 
646
  msgid "Pages/Session"
647
  msgstr ""
648
 
649
- #: .././admin/setup.php:196 .././admin/widgets.php:523
650
- #: .././admin/widgets.php:541 .././admin/widgets.php:620
651
- #: .././admin/widgets.php:638 .././admin/widgets.php:657
652
- #: .././admin/widgets.php:676 .././admin/widgets.php:696
653
- #: .././admin/widgets.php:819 .././admin/widgets.php:930
654
- #: .././admin/widgets.php:949 .././front/item-reports.php:109
655
- #: .././front/item-reports.php:128
 
656
  msgid "Invalid response, more details in JavaScript Console (F12)."
657
  msgstr ""
658
 
659
- #: .././admin/setup.php:197
660
  msgid "Not enough data collected"
661
  msgstr ""
662
 
663
- #: .././admin/setup.php:198 .././admin/widgets.php:528
664
- #: .././admin/widgets.php:546 .././admin/widgets.php:625
665
- #: .././admin/widgets.php:643 .././admin/widgets.php:662
666
- #: .././admin/widgets.php:681 .././admin/widgets.php:701
667
- #: .././admin/widgets.php:824 .././admin/widgets.php:827
668
- #: .././admin/widgets.php:935 .././admin/widgets.php:954
669
- #: .././front/item-reports.php:114 .././front/item-reports.php:133
670
- #: .././front/widgets.php:110
671
  msgid "This report is unavailable"
672
  msgstr ""
673
 
674
- #: .././admin/setup.php:199
675
  msgid "report generated by"
676
  msgstr ""
677
 
678
- #: .././admin/setup.php:233
679
  msgid "Settings"
680
  msgstr "Ajustes"
681
 
682
- #: .././admin/widgets.php:33 .././front/widgets.php:22
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
683
  msgid "Google Analytics Dashboard"
684
  msgstr "Escritorio de Google Analytics"
685
 
686
- #: .././admin/widgets.php:42
687
  msgid "This plugin needs an authorization:"
688
  msgstr ""
689
 
690
- #: .././admin/widgets.php:76
691
  msgid "Something went wrong while retrieving profiles list."
692
  msgstr ""
693
 
694
- #: .././admin/widgets.php:76
695
  msgid "More details"
696
  msgstr ""
697
 
698
- #: .././admin/widgets.php:89 .././admin/widgets.php:100
699
  #, fuzzy
700
  msgid "An admin should asign a default Google Analytics Profile."
701
  msgstr "Pide a un administrador que asigne un perfil de Google Analytics"
702
 
703
- #: .././admin/widgets.php:89 .././admin/widgets.php:100
704
  #, fuzzy
705
  msgid "Select Domain"
706
  msgstr "un solo dominio"
707
 
708
- #: .././admin/widgets.php:105
709
  msgid ""
710
  "Something went wrong while retrieving property data. You need to create and "
711
  "properly configure a Google Analytics account:"
712
  msgstr ""
713
 
714
- #: .././admin/widgets.php:105
715
  msgid "Find out more!"
716
  msgstr ""
717
 
718
- #: .././admin/widgets.php:125
719
  msgid "Real-Time"
720
  msgstr "Tiempo real"
721
 
722
- #: .././admin/widgets.php:129 .././front/widgets.php:77
723
- #: .././front/widgets.php:183
724
- msgid "Last 14 Days"
725
- msgstr "Últimos 14 días"
726
-
727
- #: .././admin/widgets.php:135 .././admin/widgets.php:871
728
- #: .././front/widgets.php:46 .././tools/gapi.php:406 .././tools/gapi.php:567
729
- #: .././tools/gapi.php:613 .././tools/gapi.php:676 .././tools/gapi.php:786
730
- #: .././tools/gapi.php:827 .././tools/gapi.php:919
731
  msgid "Sessions"
732
  msgstr ""
733
 
734
- #: .././admin/widgets.php:141 .././tools/gapi.php:521
735
  msgid "Pages"
736
  msgstr ""
737
 
738
- #: .././admin/widgets.php:232 .././admin/widgets.php:472
739
  msgid "REFERRAL"
740
  msgstr "REFERENCIA"
741
 
742
- #: .././admin/widgets.php:236 .././admin/widgets.php:473
743
  msgid "ORGANIC"
744
  msgstr "ORGÁNICO"
745
 
746
- #: .././admin/widgets.php:240 .././admin/widgets.php:360
747
- #: .././admin/widgets.php:474
748
  msgid "SOCIAL"
749
  msgstr "SOCIAL"
750
 
751
- #: .././admin/widgets.php:244 .././admin/widgets.php:363
752
- #: .././admin/widgets.php:475
753
  msgid "CAMPAIGN"
754
  msgstr ""
755
 
756
- #: .././admin/widgets.php:248 .././admin/widgets.php:366
757
- #: .././admin/widgets.php:478
758
  msgid "DIRECT"
759
  msgstr "DIRECTO"
760
 
761
- #: .././admin/widgets.php:252 .././admin/widgets.php:479
762
  msgid "NEW"
763
  msgstr "NUEVO"
764
 
765
- #: .././admin/widgets.php:354
766
  msgid "REFERRALS"
767
  msgstr ""
768
 
769
- #: .././admin/widgets.php:357
770
  msgid "KEYWORDS"
771
  msgstr ""
772
 
773
- #: .././front/item-reports.php:143
774
- msgid "Views vs UniqueViews"
775
- msgstr "Visitas vs visitas únicas"
776
-
777
- #: .././front/item-reports.php:193
778
- msgid "Google Analytics Reports"
779
- msgstr ""
780
-
781
- #: .././front/widgets.php:23
782
  msgid "Will display your google analytics stats in a widget"
783
  msgstr ""
784
 
785
- #: .././front/widgets.php:46 .././tools/gapi.php:827
786
  msgid "trend"
787
  msgstr ""
788
 
789
- #: .././front/widgets.php:133
790
  msgid "Period:"
791
  msgstr ""
792
 
793
- #: .././front/widgets.php:133
794
  msgid "Sessions:"
795
  msgstr ""
796
 
797
- #: .././front/widgets.php:137
798
  msgid "generated by"
799
  msgstr ""
800
 
801
- #: .././front/widgets.php:147
802
  msgid "Google Analytics Stats"
803
  msgstr "Estadísticas de Google Analytics"
804
 
805
- #: .././front/widgets.php:154
806
  msgid "Title:"
807
  msgstr ""
808
 
809
- #: .././front/widgets.php:161
810
  msgid "Display:"
811
  msgstr ""
812
 
813
- #: .././front/widgets.php:165
814
  msgid "Chart & Totals"
815
  msgstr ""
816
 
817
- #: .././front/widgets.php:166
818
  msgid "Chart"
819
  msgstr ""
820
 
821
- #: .././front/widgets.php:167
822
  msgid "Totals"
823
  msgstr ""
824
 
825
- #: .././front/widgets.php:171
826
  msgid "Anonymize stats:"
827
  msgstr ""
828
 
829
- #: .././front/widgets.php:178
830
  msgid "Stats for:"
831
  msgstr ""
832
 
833
- #: .././front/widgets.php:188
834
  msgid "Give credits:"
835
  msgstr ""
836
 
837
- #: .././gadwp.php:46 .././gadwp.php:55 .././gadwp.php:63
838
  msgid "This is not allowed, read the documentation!"
839
  msgstr ""
840
 
841
- #: .././tools/gapi.php:134
842
  msgid "Use this link to get your access code:"
843
  msgstr ""
844
 
845
- #: .././tools/gapi.php:134
846
  msgid "Get Access Code"
847
  msgstr ""
848
 
849
- #: .././tools/gapi.php:138 .././tools/gapi.php:139
850
  msgid "Use the red link to get your access code!"
851
  msgstr ""
852
 
853
- #: .././tools/gapi.php:138
854
  msgid "Access Code:"
855
  msgstr "Código de acceso:"
856
 
857
- #: .././tools/gapi.php:145
858
  msgid "Save Access Code"
859
  msgstr ""
860
 
861
- #: .././tools/gapi.php:400
862
  msgid "Organic Searches"
863
  msgstr "Búsquedas orgánicas"
864
 
865
- #: .././tools/gapi.php:403
866
  msgid "Unique Page Views"
867
  msgstr ""
868
 
869
- #: .././tools/gapi.php:411
870
  msgid "Hour"
871
  msgstr "Hora"
872
 
873
- #: .././tools/gapi.php:414 .././tools/gapi.php:826 .././tools/gapi.php:876
874
  msgid "Date"
875
  msgstr "Fecha"
876
 
877
- #: .././tools/gapi.php:522 .././tools/gapi.php:877
878
  msgid "Views"
879
  msgstr "Vistas"
880
 
881
- #: .././tools/gapi.php:640
882
  msgid "Countries"
883
  msgstr ""
884
 
885
- #: .././tools/gapi.php:650
886
  msgid "Cities from"
887
  msgstr ""
888
 
889
- #: .././tools/gapi.php:722
890
  msgid "Channels"
891
  msgstr ""
892
 
893
- #: .././tools/gapi.php:785
894
  msgid "Type"
895
  msgstr "Tipo"
896
 
897
- #: .././tools/gapi.php:878
898
- msgid "UniqueViews"
899
- msgstr "Visitas únicas"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
900
 
901
  #, fuzzy
902
  #~ msgid " show page searches (after each article)"
3
  "Project-Id-Version: Google Analytics Dashboard for WP\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-"
5
  "dashboard-for-wp\n"
6
+ "POT-Creation-Date: 2015-07-05 16:07+0300\n"
7
+ "PO-Revision-Date: 2015-07-05 16:07+0300\n"
8
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
9
  "Language-Team: Alin Marcu\n"
10
  "Language: es_ES\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Poedit 1.8.2\n"
15
+ "X-Poedit-KeywordsList: __;_e;_n;_x;_ex;_nx;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;esc_html_x;_n_noop;_nx_noop\n"
16
  "X-Poedit-Basepath: .\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
  "X-Poedit-SearchPath-0: ../.\n"
19
 
20
+ #: .././admin/item-reports.php:61 .././front/item-reports.php:29
21
  msgid "Analytics"
22
  msgstr ""
23
 
24
+ #: .././admin/settings.php:89 .././admin/settings.php:184
25
+ #: .././admin/settings.php:318 .././admin/settings.php:795
26
+ #: .././admin/settings.php:1068
27
  msgid "Settings saved."
28
  msgstr ""
29
 
30
+ #: .././admin/settings.php:91 .././admin/settings.php:186
31
+ #: .././admin/settings.php:320 .././admin/settings.php:772
32
+ #: .././admin/settings.php:782 .././admin/settings.php:791
33
+ #: .././admin/settings.php:797 .././admin/settings.php:808
34
+ #: .././admin/settings.php:1029 .././admin/settings.php:1054
35
+ #: .././admin/settings.php:1064 .././admin/settings.php:1070
36
+ #: .././admin/settings.php:1081
37
  msgid "Cheating Huh?"
38
  msgstr ""
39
 
40
+ #: .././admin/settings.php:95 .././admin/settings.php:190
41
+ #: .././admin/settings.php:324 .././admin/settings.php:641
42
+ #: .././admin/settings.php:823 .././admin/settings.php:1095
43
  #, php-format
44
  msgid "Something went wrong, check %1$s or %2$s."
45
  msgstr ""
46
 
47
+ #: .././admin/settings.php:95 .././admin/settings.php:190
48
+ #: .././admin/settings.php:324 .././admin/settings.php:641
49
+ #: .././admin/settings.php:823 .././admin/settings.php:1095
50
+ #: .././admin/setup.php:46 .././admin/setup.php:59
51
  msgid "Errors & Debug"
52
  msgstr ""
53
 
54
+ #: .././admin/settings.php:95 .././admin/settings.php:190
55
+ #: .././admin/settings.php:324 .././admin/settings.php:641
56
+ #: .././admin/settings.php:823 .././admin/settings.php:1095
57
  msgid "authorize the plugin"
58
  msgstr "autorizar aplicación"
59
 
60
+ #: .././admin/settings.php:100
61
  msgid "Google Analytics Frontend Settings"
62
  msgstr "Configuración del frontend de Google Analytics"
63
 
64
+ #: .././admin/settings.php:110 .././admin/settings.php:205
65
  msgid "Permissions"
66
  msgstr ""
67
 
68
+ #: .././admin/settings.php:113 .././admin/settings.php:208
69
  msgid "Show stats to:"
70
  msgstr ""
71
 
72
+ #: .././admin/settings.php:154
73
+ msgid "enable web page reports on frontend"
74
  msgstr ""
75
 
76
+ #: .././admin/settings.php:161 .././admin/settings.php:297
77
+ #: .././admin/settings.php:598 .././admin/settings.php:943
78
+ #: .././admin/settings.php:1232
 
 
 
 
79
  msgid "Save Changes"
80
  msgstr ""
81
 
82
+ #: .././admin/settings.php:195
83
  msgid "Google Analytics Backend Settings"
84
  msgstr ""
85
 
86
+ #: .././admin/settings.php:251
87
  msgid "enable Switch View functionality"
88
  msgstr ""
89
 
90
+ #: .././admin/settings.php:262
91
  msgid "enable reports on Posts List and Pages List"
92
  msgstr ""
93
 
94
+ #: .././admin/settings.php:273
95
  msgid "enable the main Dashboard Widget"
96
  msgstr ""
97
 
98
+ #: .././admin/settings.php:277
99
  #, fuzzy
100
  msgid "Real-Time Settings"
101
  msgstr "Configuración de la caché"
102
 
103
+ #: .././admin/settings.php:280
104
  msgid "Maximum number of pages to display on real-time tab:"
105
  msgstr ""
106
 
107
+ #: .././admin/settings.php:285
108
  msgid "Location Settings"
109
  msgstr ""
110
 
111
+ #: .././admin/settings.php:289
112
  msgid "Target Geo Map to country:"
113
  msgstr ""
114
 
115
+ #: .././admin/settings.php:327
116
  msgid ""
117
  "The tracking component is disabled. You should set <strong>Tracking Options</"
118
  "strong> to <strong>Enabled</strong>"
119
  msgstr ""
120
 
121
+ #: .././admin/settings.php:332
122
  #, fuzzy
123
  msgid "Google Analytics Tracking Code"
124
  msgstr "Seguimiento de Google Analytics"
125
 
126
+ #: .././admin/settings.php:341
127
  msgid "Basic Settings"
128
  msgstr ""
129
 
130
+ #: .././admin/settings.php:342 .././admin/settings.php:408
131
  #, fuzzy
132
  msgid "Events Tracking"
133
  msgstr "Activar seguimiento:"
134
 
135
+ #: .././admin/settings.php:343 .././admin/settings.php:456
136
  msgid "Custom Definitions"
137
  msgstr ""
138
 
139
+ #: .././admin/settings.php:344 .././admin/settings.php:554
140
+ #: .././admin/settings.php:1215
141
  #, fuzzy
142
  msgid "Exclude Tracking"
143
  msgstr "Activar seguimiento:"
144
 
145
+ #: .././admin/settings.php:345
146
  msgid "Advanced Settings"
147
  msgstr ""
148
 
149
+ #: .././admin/settings.php:353
150
  #, fuzzy
151
  msgid "Tracking Settings"
152
  msgstr "Configuración del backend"
153
 
154
+ #: .././admin/settings.php:356
155
  msgid "Tracking Options:"
156
  msgstr ""
157
 
158
+ #: .././admin/settings.php:358
159
  msgid "Disabled"
160
  msgstr "desactivado"
161
 
162
+ #: .././admin/settings.php:359
163
  #, fuzzy
164
  msgid "Enabled"
165
  msgstr "desactivado"
166
 
167
+ #: .././admin/settings.php:367 .././admin/settings.php:888
168
+ #: .././admin/settings.php:910 .././admin/settings.php:1188
169
+ #: .././admin/widgets.php:61
170
  msgid "View Name:"
171
  msgstr ""
172
 
173
+ #: .././admin/settings.php:367 .././admin/settings.php:910
174
  #, fuzzy
175
  msgid "Tracking ID:"
176
  msgstr "Tipo de seguimiento:"
177
 
178
+ #: .././admin/settings.php:367 .././admin/settings.php:910
179
  msgid "Default URL:"
180
  msgstr ""
181
 
182
+ #: .././admin/settings.php:367 .././admin/settings.php:910
183
  msgid "Time Zone:"
184
  msgstr ""
185
 
186
+ #: .././admin/settings.php:372
187
  #, fuzzy
188
  msgid "Basic Tracking"
189
  msgstr "Activar seguimiento:"
190
 
191
+ #: .././admin/settings.php:375
192
  msgid "Tracking Type:"
193
  msgstr ""
194
 
195
+ #: .././admin/settings.php:377
196
  msgid "Classic Analytics"
197
  msgstr ""
198
 
199
+ #: .././admin/settings.php:378
200
  msgid "Universal Analytics"
201
  msgstr ""
202
 
203
+ #: .././admin/settings.php:389
204
  msgid "anonymize IPs while tracking"
205
  msgstr ""
206
 
207
+ #: .././admin/settings.php:400
208
  msgid "enable remarketing, demographics and interests reports"
209
  msgstr ""
210
 
211
+ #: .././admin/settings.php:418
212
  msgid "track downloads, mailto and outbound links"
213
  msgstr ""
214
 
215
+ #: .././admin/settings.php:422
216
  msgid "Downloads Regex:"
217
  msgstr ""
218
 
219
+ #: .././admin/settings.php:433
220
  msgid "track affiliate links matching this regex"
221
  msgstr ""
222
 
223
+ #: .././admin/settings.php:437
224
  msgid "Affiliates Regex:"
225
  msgstr ""
226
 
227
+ #: .././admin/settings.php:448
228
  msgid "track fragment identifiers, hashmarks (#) in URI links"
229
  msgstr ""
230
 
231
+ #: .././admin/settings.php:459
232
  msgid "Authors:"
233
  msgstr ""
234
 
235
+ #: .././admin/settings.php:467
236
  msgid "Publication Year:"
237
  msgstr ""
238
 
239
+ #: .././admin/settings.php:475
240
  msgid "Categories:"
241
  msgstr ""
242
 
243
+ #: .././admin/settings.php:483
244
  msgid "User Type:"
245
  msgstr ""
246
 
247
+ #: .././admin/settings.php:495
248
  #, fuzzy
249
  msgid "Advanced Tracking"
250
  msgstr "Activar seguimiento:"
251
 
252
+ #: .././admin/settings.php:498
253
  #, fuzzy
254
  msgid "Page Speed SR:"
255
  msgstr "Páginas por visita:"
256
 
257
+ #: .././admin/settings.php:509
258
  msgid "exclude events from bounce-rate calculation"
259
  msgstr ""
260
 
261
+ #: .././admin/settings.php:520
262
  msgid "enable enhanced link attribution"
263
  msgstr ""
264
 
265
+ #: .././admin/settings.php:531
266
  msgid "enable AdSense account linking"
267
  msgstr ""
268
 
269
+ #: .././admin/settings.php:542
270
  msgid "enable cross domain tracking"
271
  msgstr ""
272
 
273
+ #: .././admin/settings.php:546
274
  msgid "Cross Domains:"
275
  msgstr ""
276
 
277
+ #: .././admin/settings.php:557
278
  msgid "Exclude tracking for:"
279
  msgstr ""
280
 
281
+ #: .././admin/settings.php:645
282
  msgid "Google Analytics Errors & Debugging"
283
  msgstr ""
284
 
285
+ #: .././admin/settings.php:655
286
  msgid "Errors & Details"
287
  msgstr ""
288
 
289
+ #: .././admin/settings.php:656
290
  msgid "Plugin Settings"
291
  msgstr ""
292
 
293
+ #: .././admin/settings.php:663
294
  msgid "Last Error detected"
295
  msgstr ""
296
 
297
+ #: .././admin/settings.php:669 .././admin/settings.php:682
298
  msgid "None"
299
  msgstr "Ninguno"
300
 
301
+ #: .././admin/settings.php:676
302
  msgid "Error Details"
303
  msgstr ""
304
 
305
+ #: .././admin/settings.php:696
306
  msgid "Plugin Configuration"
307
  msgstr ""
308
 
309
+ #: .././admin/settings.php:717 .././admin/settings.php:980
310
  msgid ""
311
  "Loading the required libraries. If this results in a blank screen or a fatal "
312
  "error, try this solution:"
313
  msgstr ""
314
 
315
+ #: .././admin/settings.php:717
316
  msgid "Library conflicts between WordPress plugins"
317
  msgstr ""
318
 
319
+ #: .././admin/settings.php:732 .././admin/settings.php:997
320
  msgid "Plugin authorization succeeded."
321
  msgstr ""
322
 
323
+ #: .././admin/settings.php:747 .././admin/settings.php:1020
324
  msgid ""
325
  "The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
326
  "(UA-XXXXX-X). Try again, and use the red link to get your access code"
327
  msgstr ""
328
 
329
+ #: .././admin/settings.php:770 .././admin/settings.php:1052
330
  msgid "Cleared Cache."
331
  msgstr "Caché borrada."
332
 
333
+ #: .././admin/settings.php:779 .././admin/settings.php:1061
334
  #, fuzzy
335
  msgid "Token Reseted and Revoked."
336
  msgstr "Token reseteado."
337
 
338
+ #: .././admin/settings.php:789
339
  msgid "All errors reseted."
340
  msgstr ""
341
 
342
+ #: .././admin/settings.php:802 .././admin/settings.php:1075
343
  msgid "All other domains/properties were removed."
344
  msgstr ""
345
 
346
+ #: .././admin/settings.php:813 .././admin/settings.php:1086
347
  msgid "Google Analytics Settings"
348
  msgstr "Configuración de Google Analytics"
349
 
350
+ #: .././admin/settings.php:828 .././admin/settings.php:1100
351
  msgid "Use the red link (see below) to generate and get your access code!"
352
  msgstr ""
353
 
354
+ #: .././admin/settings.php:839 .././admin/settings.php:1128
355
  #, fuzzy
356
  msgid "Plugin Authorization"
357
  msgstr "Borrar autorización"
358
 
359
+ #: .././admin/settings.php:844 .././admin/settings.php:1132
360
  #, php-format
361
  msgid ""
362
  "You should watch the %1$s and read this %2$s before proceeding to "
364
  "account!"
365
  msgstr ""
366
 
367
+ #: .././admin/settings.php:844 .././admin/settings.php:1132
368
  msgid "video"
369
  msgstr ""
370
 
371
+ #: .././admin/settings.php:844 .././admin/settings.php:1132
372
  #, fuzzy
373
  msgid "tutorial"
374
  msgstr "Tutorial de configuración"
375
 
376
+ #: .././admin/settings.php:849 .././admin/settings.php:1139
377
  msgid "use your own API Project credentials"
378
  msgstr ""
379
 
380
+ #: .././admin/settings.php:854 .././admin/settings.php:1147
381
  msgid "API Key:"
382
  msgstr "API Key:"
383
 
384
+ #: .././admin/settings.php:858 .././admin/settings.php:1151
385
  msgid "Client ID:"
386
  msgstr "Client ID:"
387
 
388
+ #: .././admin/settings.php:862 .././admin/settings.php:1155
389
  msgid "Client Secret:"
390
  msgstr "Client Secret:"
391
 
392
+ #: .././admin/settings.php:872 .././admin/settings.php:1165
393
  msgid "Clear Authorization"
394
  msgstr "Borrar autorización"
395
 
396
+ #: .././admin/settings.php:872 .././admin/settings.php:950
397
+ #: .././admin/settings.php:1165 .././admin/settings.php:1241
398
  msgid "Clear Cache"
399
  msgstr "Borrar caché"
400
 
401
+ #: .././admin/settings.php:872
402
  msgid "Reset Errors"
403
  msgstr ""
404
 
405
+ #: .././admin/settings.php:878 .././admin/setup.php:42 .././admin/setup.php:58
406
  msgid "General Settings"
407
  msgstr "Configuración general"
408
 
409
+ #: .././admin/settings.php:881
410
  msgid "Select View:"
411
  msgstr ""
412
 
413
+ #: .././admin/settings.php:892 .././admin/settings.php:1192
414
  msgid "Property not found"
415
  msgstr ""
416
 
417
+ #: .././admin/settings.php:898
418
  msgid "Lock Selection"
419
  msgstr ""
420
 
421
+ #: .././admin/settings.php:917
422
  msgid "Theme Color:"
423
  msgstr ""
424
 
425
+ #: .././admin/settings.php:925 .././admin/settings.php:1201
426
  msgid "Automatic Updates"
427
  msgstr ""
428
 
429
+ #: .././admin/settings.php:935 .././admin/settings.php:1211
430
  msgid ""
431
  "automatic updates for minor versions (security and maintenance releases only)"
432
  msgstr ""
433
 
434
+ #: .././admin/settings.php:950 .././admin/settings.php:1241
435
+ #: .././admin/widgets.php:32
436
  #, fuzzy
437
  msgid "Authorize Plugin"
438
  msgstr "Autorizar aplicación"
439
 
440
+ #: .././admin/settings.php:1026
441
  msgid "Properties refreshed."
442
  msgstr ""
443
 
444
+ #: .././admin/settings.php:1110
445
  msgid "Network Setup"
446
  msgstr ""
447
 
448
+ #: .././admin/settings.php:1120
449
  msgid "use a single Google Analytics account for the entire network"
450
  msgstr ""
451
 
452
+ #: .././admin/settings.php:1165
453
  msgid "Refresh Properties"
454
  msgstr ""
455
 
456
+ #: .././admin/settings.php:1171
457
  #, fuzzy
458
  msgid "Properties/Views Settings"
459
  msgstr "Configuración del frontend"
460
 
461
+ #: .././admin/settings.php:1225
462
  msgid "exclude Super Admin tracking for the entire network"
463
  msgstr ""
464
 
465
+ #: .././admin/settings.php:1273
466
  #, fuzzy
467
  msgid "Setup Tutorial & Demo"
468
  msgstr "Tutorial de configuración"
469
 
470
+ #: .././admin/settings.php:1281
471
+ msgid "Follow & Review"
 
 
 
 
 
 
472
  msgstr ""
473
 
474
  #: .././admin/settings.php:1307
524
  msgid "Web Analytics"
525
  msgstr "Analíticas web"
526
 
527
+ #: .././admin/setup.php:41 .././admin/setup.php:57
528
  msgid "Google Analytics"
529
  msgstr "Google Analytics"
530
 
531
+ #: .././admin/setup.php:43
532
  msgid "Backend Settings"
533
  msgstr "Configuración del backend"
534
 
535
+ #: .././admin/setup.php:44
536
  msgid "Frontend Settings"
537
  msgstr "Configuración del frontend"
538
 
539
+ #: .././admin/setup.php:45
540
  #, fuzzy
541
  msgid "Tracking Code"
542
  msgstr "Tipo de seguimiento:"
543
 
544
+ #: .././admin/setup.php:159 .././admin/widgets.php:117 .././front/setup.php:71
545
  msgid "Today"
546
  msgstr "Hoy"
547
 
548
+ #: .././admin/setup.php:160 .././admin/widgets.php:118 .././front/setup.php:72
549
  msgid "Yesterday"
550
  msgstr "Ayer"
551
 
552
+ #: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
553
+ #: .././admin/setup.php:164 .././admin/widgets.php:119
554
+ #: .././admin/widgets.php:120 .././admin/widgets.php:121
555
+ #: .././admin/widgets.php:122 .././front/setup.php:73 .././front/setup.php:74
556
+ #: .././front/setup.php:75 .././front/setup.php:76 .././front/widgets.php:64
557
+ #: .././front/widgets.php:67 .././front/widgets.php:70
558
+ #: .././front/widgets.php:158 .././front/widgets.php:159
559
+ #: .././front/widgets.php:160
560
+ #, php-format
561
+ msgid "Last %d Days"
562
+ msgstr "Últimos %d días"
563
 
564
+ #: .././admin/setup.php:165 .././admin/setup.php:166
565
+ #: .././admin/widgets.php:123 .././admin/widgets.php:124
566
+ #: .././front/setup.php:77 .././front/setup.php:78
567
+ #, php-format
568
+ msgid "%s Year"
569
+ msgstr ""
570
 
571
+ #: .././admin/setup.php:165 .././admin/widgets.php:123 .././front/setup.php:77
572
+ msgid "One"
573
+ msgstr ""
574
 
575
+ #: .././admin/setup.php:166 .././admin/widgets.php:124 .././front/setup.php:78
576
+ msgid "Three"
577
+ msgstr ""
578
+
579
+ #: .././admin/setup.php:169 .././admin/setup.php:185 .././front/setup.php:81
580
+ #: .././front/setup.php:97
581
  msgid "Unique Views"
582
  msgstr ""
583
 
584
+ #: .././admin/setup.php:170 .././admin/setup.php:186
585
+ #: .././admin/widgets.php:130 .././admin/widgets.php:830
586
+ #: .././front/setup.php:82 .././front/setup.php:98 .././tools/gapi.php:358
587
  msgid "Users"
588
  msgstr ""
589
 
590
+ #: .././admin/setup.php:171 .././admin/widgets.php:131 .././front/setup.php:83
591
  msgid "Organic"
592
  msgstr "Búsquedas orgánicas"
593
 
594
+ #: .././admin/setup.php:172 .././admin/setup.php:187
595
+ #: .././admin/widgets.php:132 .././admin/widgets.php:834
596
+ #: .././front/setup.php:84 .././front/setup.php:99 .././tools/gapi.php:361
597
  msgid "Page Views"
598
  msgstr "Páginas vistas"
599
 
600
+ #: .././admin/setup.php:173 .././admin/setup.php:188
601
+ #: .././admin/widgets.php:133 .././admin/widgets.php:838
602
+ #: .././front/setup.php:85 .././front/setup.php:100 .././tools/gapi.php:364
603
  msgid "Bounce Rate"
604
  msgstr "Porcenaje de rebote"
605
 
606
+ #: .././admin/setup.php:174 .././admin/widgets.php:134 .././front/setup.php:86
607
  msgid "Location"
608
  msgstr ""
609
 
610
+ #: .././admin/setup.php:175 .././admin/widgets.php:136 .././front/setup.php:87
611
+ #: .././tools/gapi.php:503
612
  msgid "Referrers"
613
  msgstr ""
614
 
615
+ #: .././admin/setup.php:176 .././admin/widgets.php:137 .././front/setup.php:88
616
+ #: .././tools/gapi.php:536
617
  msgid "Searches"
618
  msgstr ""
619
 
620
+ #: .././admin/setup.php:177 .././admin/widgets.php:138 .././front/setup.php:89
621
  msgid "Traffic Details"
622
  msgstr ""
623
 
624
+ #: .././admin/setup.php:180 .././admin/widgets.php:505
625
+ #: .././admin/widgets.php:590 .././admin/widgets.php:757
626
+ #: .././admin/widgets.php:861 .././front/setup.php:92
627
  msgid "A JavaScript Error is blocking plugin resources!"
628
  msgstr ""
629
 
630
+ #: .././admin/setup.php:181 .././admin/widgets.php:681 .././front/setup.php:93
631
  msgid "Traffic Mediums"
632
  msgstr ""
633
 
634
+ #: .././admin/setup.php:182 .././admin/widgets.php:696 .././front/setup.php:94
635
  msgid "Visitor Type"
636
  msgstr ""
637
 
638
+ #: .././admin/setup.php:183 .././admin/widgets.php:711 .././front/setup.php:95
639
  msgid "Social Networks"
640
  msgstr ""
641
 
642
+ #: .././admin/setup.php:184 .././admin/widgets.php:726 .././front/setup.php:96
643
  msgid "Search Engines"
644
  msgstr ""
645
 
646
+ #: .././admin/setup.php:189 .././admin/widgets.php:842
647
+ #: .././front/setup.php:101
648
  msgid "Organic Search"
649
  msgstr ""
650
 
651
+ #: .././admin/setup.php:190 .././admin/widgets.php:846
652
+ #: .././front/setup.php:102
653
  msgid "Pages/Session"
654
  msgstr ""
655
 
656
+ #: .././admin/setup.php:191 .././admin/widgets.php:517
657
+ #: .././admin/widgets.php:531 .././admin/widgets.php:541
658
+ #: .././admin/widgets.php:602 .././admin/widgets.php:616
659
+ #: .././admin/widgets.php:630 .././admin/widgets.php:644
660
+ #: .././admin/widgets.php:658 .././admin/widgets.php:668
661
+ #: .././admin/widgets.php:770 .././admin/widgets.php:782
662
+ #: .././admin/widgets.php:873 .././admin/widgets.php:887
663
+ #: .././admin/widgets.php:897 .././front/setup.php:103
664
  msgid "Invalid response, more details in JavaScript Console (F12)."
665
  msgstr ""
666
 
667
+ #: .././admin/setup.php:192 .././front/setup.php:104
668
  msgid "Not enough data collected"
669
  msgstr ""
670
 
671
+ #: .././admin/setup.php:193 .././admin/widgets.php:522
672
+ #: .././admin/widgets.php:536 .././admin/widgets.php:607
673
+ #: .././admin/widgets.php:621 .././admin/widgets.php:635
674
+ #: .././admin/widgets.php:649 .././admin/widgets.php:663
675
+ #: .././admin/widgets.php:775 .././admin/widgets.php:777
676
+ #: .././admin/widgets.php:878 .././admin/widgets.php:892
677
+ #: .././front/setup.php:105 .././front/widgets.php:100
 
678
  msgid "This report is unavailable"
679
  msgstr ""
680
 
681
+ #: .././admin/setup.php:194 .././front/setup.php:106
682
  msgid "report generated by"
683
  msgstr ""
684
 
685
+ #: .././admin/setup.php:225
686
  msgid "Settings"
687
  msgstr "Ajustes"
688
 
689
+ #: .././admin/setup.php:237
690
+ #, php-format
691
+ msgid "Google Analytics Dashboard for WP has been updated to version %s."
692
+ msgstr ""
693
+
694
+ #: .././admin/setup.php:237
695
+ #, php-format
696
+ msgid "For details, check out %1$s and %2$s."
697
+ msgstr ""
698
+
699
+ #: .././admin/setup.php:237
700
+ msgid "the documentation page"
701
+ msgstr ""
702
+
703
+ #: .././admin/setup.php:237
704
+ msgid "the plugin&#39;s settings page"
705
+ msgstr ""
706
+
707
+ #: .././admin/widgets.php:27 .././front/widgets.php:21
708
  msgid "Google Analytics Dashboard"
709
  msgstr "Escritorio de Google Analytics"
710
 
711
+ #: .././admin/widgets.php:32
712
  msgid "This plugin needs an authorization:"
713
  msgstr ""
714
 
715
+ #: .././admin/widgets.php:66
716
  msgid "Something went wrong while retrieving profiles list."
717
  msgstr ""
718
 
719
+ #: .././admin/widgets.php:66
720
  msgid "More details"
721
  msgstr ""
722
 
723
+ #: .././admin/widgets.php:79 .././admin/widgets.php:90
724
  #, fuzzy
725
  msgid "An admin should asign a default Google Analytics Profile."
726
  msgstr "Pide a un administrador que asigne un perfil de Google Analytics"
727
 
728
+ #: .././admin/widgets.php:79 .././admin/widgets.php:90
729
  #, fuzzy
730
  msgid "Select Domain"
731
  msgstr "un solo dominio"
732
 
733
+ #: .././admin/widgets.php:95
734
  msgid ""
735
  "Something went wrong while retrieving property data. You need to create and "
736
  "properly configure a Google Analytics account:"
737
  msgstr ""
738
 
739
+ #: .././admin/widgets.php:95
740
  msgid "Find out more!"
741
  msgstr ""
742
 
743
+ #: .././admin/widgets.php:116
744
  msgid "Real-Time"
745
  msgstr "Tiempo real"
746
 
747
+ #: .././admin/widgets.php:129 .././admin/widgets.php:826
748
+ #: .././front/widgets.php:36 .././tools/gapi.php:373 .././tools/gapi.php:503
749
+ #: .././tools/gapi.php:536 .././tools/gapi.php:586 .././tools/gapi.php:666
750
+ #: .././tools/gapi.php:695
 
 
 
 
 
751
  msgid "Sessions"
752
  msgstr ""
753
 
754
+ #: .././admin/widgets.php:135 .././tools/gapi.php:471
755
  msgid "Pages"
756
  msgstr ""
757
 
758
+ #: .././admin/widgets.php:236 .././admin/widgets.php:478
759
  msgid "REFERRAL"
760
  msgstr "REFERENCIA"
761
 
762
+ #: .././admin/widgets.php:240 .././admin/widgets.php:479
763
  msgid "ORGANIC"
764
  msgstr "ORGÁNICO"
765
 
766
+ #: .././admin/widgets.php:244 .././admin/widgets.php:364
767
+ #: .././admin/widgets.php:480
768
  msgid "SOCIAL"
769
  msgstr "SOCIAL"
770
 
771
+ #: .././admin/widgets.php:248 .././admin/widgets.php:367
772
+ #: .././admin/widgets.php:481
773
  msgid "CAMPAIGN"
774
  msgstr ""
775
 
776
+ #: .././admin/widgets.php:252 .././admin/widgets.php:370
777
+ #: .././admin/widgets.php:484
778
  msgid "DIRECT"
779
  msgstr "DIRECTO"
780
 
781
+ #: .././admin/widgets.php:256 .././admin/widgets.php:485
782
  msgid "NEW"
783
  msgstr "NUEVO"
784
 
785
+ #: .././admin/widgets.php:358
786
  msgid "REFERRALS"
787
  msgstr ""
788
 
789
+ #: .././admin/widgets.php:361
790
  msgid "KEYWORDS"
791
  msgstr ""
792
 
793
+ #: .././front/widgets.php:21
 
 
 
 
 
 
 
 
794
  msgid "Will display your google analytics stats in a widget"
795
  msgstr ""
796
 
797
+ #: .././front/widgets.php:36 .././tools/gapi.php:695
798
  msgid "trend"
799
  msgstr ""
800
 
801
+ #: .././front/widgets.php:123
802
  msgid "Period:"
803
  msgstr ""
804
 
805
+ #: .././front/widgets.php:123
806
  msgid "Sessions:"
807
  msgstr ""
808
 
809
+ #: .././front/widgets.php:127
810
  msgid "generated by"
811
  msgstr ""
812
 
813
+ #: .././front/widgets.php:136
814
  msgid "Google Analytics Stats"
815
  msgstr "Estadísticas de Google Analytics"
816
 
817
+ #: .././front/widgets.php:144
818
  msgid "Title:"
819
  msgstr ""
820
 
821
+ #: .././front/widgets.php:147
822
  msgid "Display:"
823
  msgstr ""
824
 
825
+ #: .././front/widgets.php:148
826
  msgid "Chart & Totals"
827
  msgstr ""
828
 
829
+ #: .././front/widgets.php:149
830
  msgid "Chart"
831
  msgstr ""
832
 
833
+ #: .././front/widgets.php:150
834
  msgid "Totals"
835
  msgstr ""
836
 
837
+ #: .././front/widgets.php:154
838
  msgid "Anonymize stats:"
839
  msgstr ""
840
 
841
+ #: .././front/widgets.php:157
842
  msgid "Stats for:"
843
  msgstr ""
844
 
845
+ #: .././front/widgets.php:164
846
  msgid "Give credits:"
847
  msgstr ""
848
 
849
+ #: .././gadwp.php:46 .././gadwp.php:54 .././gadwp.php:61
850
  msgid "This is not allowed, read the documentation!"
851
  msgstr ""
852
 
853
+ #: .././tools/gapi.php:128
854
  msgid "Use this link to get your access code:"
855
  msgstr ""
856
 
857
+ #: .././tools/gapi.php:128
858
  msgid "Get Access Code"
859
  msgstr ""
860
 
861
+ #: .././tools/gapi.php:132 .././tools/gapi.php:133
862
  msgid "Use the red link to get your access code!"
863
  msgstr ""
864
 
865
+ #: .././tools/gapi.php:132
866
  msgid "Access Code:"
867
  msgstr "Código de acceso:"
868
 
869
+ #: .././tools/gapi.php:139
870
  msgid "Save Access Code"
871
  msgstr ""
872
 
873
+ #: .././tools/gapi.php:367
874
  msgid "Organic Searches"
875
  msgstr "Búsquedas orgánicas"
876
 
877
+ #: .././tools/gapi.php:370
878
  msgid "Unique Page Views"
879
  msgstr ""
880
 
881
+ #: .././tools/gapi.php:378
882
  msgid "Hour"
883
  msgstr "Hora"
884
 
885
+ #: .././tools/gapi.php:382 .././tools/gapi.php:385 .././tools/gapi.php:695
886
  msgid "Date"
887
  msgstr "Fecha"
888
 
889
+ #: .././tools/gapi.php:471
890
  msgid "Views"
891
  msgstr "Vistas"
892
 
893
+ #: .././tools/gapi.php:557
894
  msgid "Countries"
895
  msgstr ""
896
 
897
+ #: .././tools/gapi.php:567
898
  msgid "Cities from"
899
  msgstr ""
900
 
901
+ #: .././tools/gapi.php:620
902
  msgid "Channels"
903
  msgstr ""
904
 
905
+ #: .././tools/gapi.php:666
906
  msgid "Type"
907
  msgstr "Tipo"
908
 
909
+ #~ msgid "Last 7 Days"
910
+ #~ msgstr "Últimos 7 días "
911
+
912
+ #~ msgid "Last 14 Days"
913
+ #~ msgstr "Últimos 14 días"
914
+
915
+ #~ msgid "Last 30 Days"
916
+ #~ msgstr "Últimos 30 días"
917
+
918
+ #~ msgid "Last 90 Days"
919
+ #~ msgstr "Últimos 90 días"
920
+
921
+ #, fuzzy
922
+ #~ msgid "Support & Reviews"
923
+ #~ msgstr "Enlaces de soporte"
924
+
925
+ #~ msgid "Views vs UniqueViews"
926
+ #~ msgstr "Visitas vs visitas únicas"
927
+
928
+ #~ msgid "UniqueViews"
929
+ #~ msgstr "Visitas únicas"
930
 
931
  #, fuzzy
932
  #~ msgid " show page searches (after each article)"
languages/ga-dash-fr_FR.mo ADDED
Binary file
languages/ga-dash-fr_FR.po CHANGED
@@ -1,1161 +1,923 @@
 
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Google Analytics Dashboard for WP\n"
4
- "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-"
5
- "dashboard-for-wp\n"
6
- "POT-Creation-Date: 2015-05-21 19:46+0200\n"
7
- "PO-Revision-Date: 2015-05-21 19:46+0200\n"
8
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
9
  "Language-Team: Alin Marcu\n"
10
  "Language: fr_FR\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
- "X-Generator: Poedit 1.8\n"
15
- "X-Poedit-KeywordsList: _e;__\n"
16
- "X-Poedit-Basepath: .\n"
17
- "X-Poedit-SourceCharset: UTF-8\n"
18
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
 
 
 
19
  "X-Poedit-SearchPath-0: ../.\n"
20
 
21
- #: .././admin/item-reports.php:52
22
  msgid "Analytics"
23
- msgstr ""
24
 
25
- #: .././admin/settings.php:94 .././admin/settings.php:197
26
- #: .././admin/settings.php:328 .././admin/settings.php:803
27
- #: .././admin/settings.php:1079
28
  msgid "Settings saved."
29
- msgstr ""
30
 
31
- #: .././admin/settings.php:96 .././admin/settings.php:199
32
- #: .././admin/settings.php:330 .././admin/settings.php:780
33
- #: .././admin/settings.php:790 .././admin/settings.php:799
34
- #: .././admin/settings.php:805 .././admin/settings.php:817
35
- #: .././admin/settings.php:1040 .././admin/settings.php:1065
36
- #: .././admin/settings.php:1075 .././admin/settings.php:1081
37
- #: .././admin/settings.php:1093
38
  msgid "Cheating Huh?"
39
- msgstr "Tricher Hein?"
40
 
41
- #: .././admin/settings.php:100 .././admin/settings.php:203
42
- #: .././admin/settings.php:334 .././admin/settings.php:647
43
- #: .././admin/settings.php:832 .././admin/settings.php:1107
44
  #, php-format
45
  msgid "Something went wrong, check %1$s or %2$s."
46
- msgstr ""
47
 
48
- #: .././admin/settings.php:100 .././admin/settings.php:203
49
- #: .././admin/settings.php:334 .././admin/settings.php:647
50
- #: .././admin/settings.php:832 .././admin/settings.php:1107
51
- #: .././admin/setup.php:82 .././admin/setup.php:101
52
  msgid "Errors & Debug"
53
- msgstr ""
54
 
55
- #: .././admin/settings.php:100 .././admin/settings.php:203
56
- #: .././admin/settings.php:334 .././admin/settings.php:647
57
- #: .././admin/settings.php:832 .././admin/settings.php:1107
58
  msgid "authorize the plugin"
59
  msgstr "autoriser le plugin"
60
 
61
- #: .././admin/settings.php:105
62
  msgid "Google Analytics Frontend Settings"
63
  msgstr "Google Analytics Paramètres Frontend"
64
 
65
- #: .././admin/settings.php:115 .././admin/settings.php:218
66
  msgid "Permissions"
67
- msgstr ""
68
 
69
- #: .././admin/settings.php:118 .././admin/settings.php:221
70
  msgid "Show stats to:"
71
- msgstr ""
72
 
73
- #: .././admin/settings.php:157
74
- msgid "show page sessions and users in frontend (after each article)"
75
  msgstr ""
76
 
77
- #: .././admin/settings.php:168
78
- msgid "show page searches (after each article)"
79
- msgstr ""
80
-
81
- #: .././admin/settings.php:175 .././admin/settings.php:308
82
- #: .././admin/settings.php:605 .././admin/settings.php:952
83
- #: .././admin/settings.php:1245
84
  msgid "Save Changes"
85
- msgstr ""
86
 
87
- #: .././admin/settings.php:208
88
  msgid "Google Analytics Backend Settings"
89
- msgstr ""
90
 
91
- #: .././admin/settings.php:262
92
  msgid "enable Switch View functionality"
93
- msgstr ""
94
 
95
- #: .././admin/settings.php:273
96
  msgid "enable reports on Posts List and Pages List"
97
- msgstr ""
98
 
99
- #: .././admin/settings.php:284
100
  msgid "enable the main Dashboard Widget"
101
- msgstr ""
102
 
103
- #: .././admin/settings.php:288
104
  msgid "Real-Time Settings"
105
- msgstr "Paramètres Temps-Réel"
106
 
107
- #: .././admin/settings.php:291
108
  msgid "Maximum number of pages to display on real-time tab:"
109
- msgstr "Nombre maximum de pages à afficher sur l&#39;onglet en temps réel:"
110
 
111
- #: .././admin/settings.php:296
112
  msgid "Location Settings"
113
- msgstr ""
114
 
115
- #: .././admin/settings.php:300
116
  msgid "Target Geo Map to country:"
117
- msgstr ""
118
 
119
- #: .././admin/settings.php:337
120
  msgid ""
121
- "The tracking component is disabled. You should set <strong>Tracking Options</"
122
- "strong> to <strong>Enabled</strong>"
123
  msgstr ""
 
 
124
 
125
- #: .././admin/settings.php:342
126
  msgid "Google Analytics Tracking Code"
127
- msgstr "Google Analytics Tracking Code"
128
 
129
- #: .././admin/settings.php:351
130
  msgid "Basic Settings"
131
- msgstr ""
132
 
133
- #: .././admin/settings.php:352 .././admin/settings.php:417
134
  msgid "Events Tracking"
135
- msgstr "Suivi des événements"
136
 
137
- #: .././admin/settings.php:353 .././admin/settings.php:465
138
  msgid "Custom Definitions"
139
- msgstr ""
140
 
141
- #: .././admin/settings.php:354 .././admin/settings.php:563
142
- #: .././admin/settings.php:1228
143
  msgid "Exclude Tracking"
144
- msgstr "Exclure Tracking"
145
 
146
- #: .././admin/settings.php:355
147
  msgid "Advanced Settings"
148
- msgstr ""
149
 
150
- #: .././admin/settings.php:362
151
  msgid "Tracking Settings"
152
  msgstr "Paramètres de suivi"
153
 
154
- #: .././admin/settings.php:365
155
  msgid "Tracking Options:"
156
- msgstr ""
157
 
158
- #: .././admin/settings.php:367
159
  msgid "Disabled"
160
- msgstr "Désactive"
161
 
162
- #: .././admin/settings.php:368
163
  msgid "Enabled"
164
- msgstr "Active"
165
 
166
- #: .././admin/settings.php:376 .././admin/settings.php:897
167
- #: .././admin/settings.php:919 .././admin/settings.php:1201
168
- #: .././admin/widgets.php:71
169
  msgid "View Name:"
170
- msgstr "Nom de la vue:"
171
 
172
- #: .././admin/settings.php:376 .././admin/settings.php:919
173
  msgid "Tracking ID:"
174
- msgstr "Suivi ID:"
175
 
176
- #: .././admin/settings.php:376 .././admin/settings.php:919
177
  msgid "Default URL:"
178
- msgstr "URL par défaut:"
179
 
180
- #: .././admin/settings.php:376 .././admin/settings.php:919
181
  msgid "Time Zone:"
182
- msgstr "Fuseau horaire:"
183
 
184
- #: .././admin/settings.php:381
185
  msgid "Basic Tracking"
186
  msgstr "Suivi de base"
187
 
188
- #: .././admin/settings.php:384
189
  msgid "Tracking Type:"
190
- msgstr ""
191
 
192
- #: .././admin/settings.php:386
193
  msgid "Classic Analytics"
194
- msgstr "Analytics classiques"
195
 
196
- #: .././admin/settings.php:387
197
  msgid "Universal Analytics"
198
- msgstr "Universel Analytics"
199
 
200
- #: .././admin/settings.php:398
201
  msgid "anonymize IPs while tracking"
202
- msgstr ""
203
 
204
- #: .././admin/settings.php:409
205
  msgid "enable remarketing, demographics and interests reports"
206
- msgstr ""
207
 
208
- #: .././admin/settings.php:427
209
  msgid "track downloads, mailto and outbound links"
210
- msgstr ""
211
 
212
- #: .././admin/settings.php:431
213
- #, fuzzy
214
  msgid "Downloads Regex:"
215
- msgstr "Filtres téléchargement:"
216
 
217
- #: .././admin/settings.php:442
218
  msgid "track affiliate links matching this regex"
219
- msgstr ""
220
 
221
- #: .././admin/settings.php:446
222
  msgid "Affiliates Regex:"
223
- msgstr ""
224
 
225
- #: .././admin/settings.php:457
226
  msgid "track fragment identifiers, hashmarks (#) in URI links"
227
- msgstr ""
228
 
229
- #: .././admin/settings.php:468
230
  msgid "Authors:"
231
- msgstr ""
232
 
233
- #: .././admin/settings.php:476
234
  msgid "Publication Year:"
235
- msgstr ""
236
 
237
- #: .././admin/settings.php:484
238
  msgid "Categories:"
239
- msgstr ""
240
 
241
- #: .././admin/settings.php:492
242
  msgid "User Type:"
243
- msgstr ""
244
 
245
- #: .././admin/settings.php:504
246
- #, fuzzy
247
  msgid "Advanced Tracking"
248
- msgstr "Suivi des événements"
249
 
250
- #: .././admin/settings.php:507
251
  msgid "Page Speed SR:"
252
- msgstr "Page Speed SR:"
253
 
254
- #: .././admin/settings.php:518
255
  msgid "exclude events from bounce-rate calculation"
256
- msgstr ""
257
 
258
- #: .././admin/settings.php:529
259
  msgid "enable enhanced link attribution"
260
- msgstr ""
261
 
262
- #: .././admin/settings.php:540
263
  msgid "enable AdSense account linking"
264
- msgstr ""
265
 
266
- #: .././admin/settings.php:551
267
  msgid "enable cross domain tracking"
268
- msgstr ""
269
 
270
- #: .././admin/settings.php:555
271
  msgid "Cross Domains:"
272
  msgstr ""
273
 
274
- #: .././admin/settings.php:566
275
  msgid "Exclude tracking for:"
276
- msgstr ""
277
 
278
- #: .././admin/settings.php:651
279
  msgid "Google Analytics Errors & Debugging"
280
- msgstr ""
281
 
282
- #: .././admin/settings.php:661
283
  msgid "Errors & Details"
284
- msgstr ""
285
 
286
- #: .././admin/settings.php:662
287
  msgid "Plugin Settings"
288
- msgstr ""
289
 
290
- #: .././admin/settings.php:670
291
  msgid "Last Error detected"
292
- msgstr ""
293
 
294
- #: .././admin/settings.php:676 .././admin/settings.php:689
295
  msgid "None"
296
- msgstr ""
297
 
298
- #: .././admin/settings.php:683
299
  msgid "Error Details"
300
- msgstr ""
301
 
302
- #: .././admin/settings.php:703
303
  msgid "Plugin Configuration"
304
- msgstr ""
305
 
306
- #: .././admin/settings.php:725 .././admin/settings.php:990
307
  msgid ""
308
- "Loading the required libraries. If this results in a blank screen or a fatal "
309
- "error, try this solution:"
310
  msgstr ""
 
 
311
 
312
- #: .././admin/settings.php:725
313
  msgid "Library conflicts between WordPress plugins"
314
- msgstr ""
315
 
316
- #: .././admin/settings.php:740 .././admin/settings.php:1007
317
  msgid "Plugin authorization succeeded."
318
- msgstr "Autorisation Plugin réussi."
319
 
320
- #: .././admin/settings.php:755 .././admin/settings.php:1031
321
  msgid ""
322
- "The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
323
- "(UA-XXXXX-X). Try again, and use the red link to get your access code"
324
  msgstr ""
 
 
325
 
326
- #: .././admin/settings.php:778 .././admin/settings.php:1063
327
  msgid "Cleared Cache."
328
  msgstr "Cache effacé."
329
 
330
- #: .././admin/settings.php:787 .././admin/settings.php:1072
331
  msgid "Token Reseted and Revoked."
332
- msgstr "Jeton remis à zéro et révoqué."
333
 
334
- #: .././admin/settings.php:797
335
  msgid "All errors reseted."
336
- msgstr ""
337
 
338
- #: .././admin/settings.php:810 .././admin/settings.php:1086
339
  msgid "All other domains/properties were removed."
340
- msgstr "Tous les autres domaines/propriétés ont été retirés."
341
 
342
- #: .././admin/settings.php:822 .././admin/settings.php:1098
343
  msgid "Google Analytics Settings"
344
- msgstr "Réglages Google analytics"
345
 
346
- #: .././admin/settings.php:837 .././admin/settings.php:1112
347
  msgid "Use the red link (see below) to generate and get your access code!"
348
- msgstr ""
349
 
350
- #: .././admin/settings.php:848 .././admin/settings.php:1140
351
  msgid "Plugin Authorization"
352
- msgstr "Autorisation Plugin"
353
 
354
- #: .././admin/settings.php:853 .././admin/settings.php:1144
355
  #, php-format
356
  msgid ""
357
- "You should watch the %1$s and read this %2$s before proceeding to "
358
- "authorization. This plugin requires a properly configured Google Analytics "
359
- "account!"
360
  msgstr ""
 
 
361
 
362
- #: .././admin/settings.php:853 .././admin/settings.php:1144
363
  msgid "video"
364
- msgstr "video"
365
 
366
- #: .././admin/settings.php:853 .././admin/settings.php:1144
367
  msgid "tutorial"
368
- msgstr "Tutoriel"
369
 
370
- #: .././admin/settings.php:858 .././admin/settings.php:1151
371
  msgid "use your own API Project credentials"
372
- msgstr ""
373
 
374
- #: .././admin/settings.php:863 .././admin/settings.php:1159
375
  msgid "API Key:"
376
- msgstr "Clé API:"
377
 
378
- #: .././admin/settings.php:867 .././admin/settings.php:1163
379
  msgid "Client ID:"
380
- msgstr "Client ID:"
381
 
382
- #: .././admin/settings.php:871 .././admin/settings.php:1167
383
  msgid "Client Secret:"
384
- msgstr "Client Secret:"
385
 
386
- #: .././admin/settings.php:881 .././admin/settings.php:1177
387
  msgid "Clear Authorization"
388
- msgstr "Effacer autorisation"
389
 
390
- #: .././admin/settings.php:881 .././admin/settings.php:959
391
- #: .././admin/settings.php:1177 .././admin/settings.php:1254
392
  msgid "Clear Cache"
393
- msgstr "Effacer Cache"
394
 
395
- #: .././admin/settings.php:881
396
  msgid "Reset Errors"
397
- msgstr ""
398
 
399
- #: .././admin/settings.php:887 .././admin/setup.php:70 .././admin/setup.php:98
400
  msgid "General Settings"
401
- msgstr "Réglages Généraux"
402
 
403
- #: .././admin/settings.php:890
404
  msgid "Select View:"
405
- msgstr ""
406
 
407
- #: .././admin/settings.php:901 .././admin/settings.php:1205
408
  msgid "Property not found"
409
- msgstr ""
410
 
411
- #: .././admin/settings.php:907
412
  msgid "Lock Selection"
413
- msgstr ""
414
 
415
- #: .././admin/settings.php:926
416
  msgid "Theme Color:"
417
- msgstr ""
418
 
419
- #: .././admin/settings.php:934 .././admin/settings.php:1214
420
  msgid "Automatic Updates"
421
- msgstr ""
422
 
423
- #: .././admin/settings.php:944 .././admin/settings.php:1224
424
- msgid ""
425
- "automatic updates for minor versions (security and maintenance releases only)"
426
  msgstr ""
 
427
 
428
- #: .././admin/settings.php:959 .././admin/settings.php:1254
429
- #: .././admin/widgets.php:42
430
  msgid "Authorize Plugin"
431
- msgstr "autoriser le plugin"
432
 
433
- #: .././admin/settings.php:1037
434
  msgid "Properties refreshed."
435
  msgstr "Propriétés rafraîchies."
436
 
437
- #: .././admin/settings.php:1122
438
  msgid "Network Setup"
439
  msgstr "Configuration du réseau"
440
 
441
- #: .././admin/settings.php:1132
442
  msgid "use a single Google Analytics account for the entire network"
443
- msgstr ""
444
 
445
- #: .././admin/settings.php:1177
446
  msgid "Refresh Properties"
447
- msgstr "Propriétés Actualisées"
448
 
449
- #: .././admin/settings.php:1183
450
  msgid "Properties/Views Settings"
451
- msgstr "Propriétés/Paramètres Vues"
452
 
453
- #: .././admin/settings.php:1238
454
  msgid "exclude Super Admin tracking for the entire network"
455
- msgstr ""
456
 
457
- #: .././admin/settings.php:1285
458
  msgid "Setup Tutorial & Demo"
459
- msgstr "Configuration Tutorial et Démo"
460
-
461
- #: .././admin/settings.php:1293
462
- msgid "Support & Reviews"
463
- msgstr "Support & avis"
464
 
465
- #: .././admin/settings.php:1300
466
- #, php-format
467
- msgid "Plugin documentation and support on %s"
468
  msgstr ""
469
 
470
  #: .././admin/settings.php:1307
471
  #, php-format
472
  msgid "Your feedback and review are both important, %s!"
473
- msgstr ""
474
 
475
  #: .././admin/settings.php:1307
476
  msgid "rate this plugin"
477
- msgstr "évaluer ce plugin"
478
 
479
  #: .././admin/settings.php:1313
480
  msgid "Further Reading"
481
- msgstr "Lectures complémentaires"
482
 
483
  #: .././admin/settings.php:1320
484
  #, php-format
485
  msgid "%s by moving your website to HTTPS/SSL."
486
- msgstr ""
487
 
488
  #: .././admin/settings.php:1320
489
  msgid "Improve search rankings"
490
- msgstr ""
491
 
492
  #: .././admin/settings.php:1327
493
  #, php-format
494
  msgid "Other %s written by the same author"
495
- msgstr ""
496
 
497
  #: .././admin/settings.php:1327
498
  msgid "WordPress Plugins"
499
- msgstr "Plugin Wordpress"
500
 
501
  #: .././admin/settings.php:1333
502
  msgid "Other Services"
503
- msgstr ""
504
 
505
  #: .././admin/settings.php:1340
506
  #, php-format
507
  msgid "Speed up your website and plug into a whole %s"
508
- msgstr ""
509
 
510
  #: .././admin/settings.php:1340
511
  msgid "new level of site speed"
512
- msgstr ""
513
 
514
  #: .././admin/settings.php:1347
515
  #, php-format
516
  msgid "%s service with users tracking at IP level."
517
- msgstr ""
518
 
519
  #: .././admin/settings.php:1347
520
  msgid "Web Analytics"
521
  msgstr "Web Analytics"
522
 
523
- #: .././admin/setup.php:67 .././admin/setup.php:95
524
  msgid "Google Analytics"
525
  msgstr "Google Analytics"
526
 
527
- #: .././admin/setup.php:73
528
  msgid "Backend Settings"
529
- msgstr "Réglages B.O"
530
 
531
- #: .././admin/setup.php:76
532
  msgid "Frontend Settings"
533
- msgstr "Réglages F.O"
534
 
535
- #: .././admin/setup.php:79
536
  msgid "Tracking Code"
537
- msgstr "Code de Tracking"
538
 
539
- #: .././admin/setup.php:169 .././admin/widgets.php:126
540
  msgid "Today"
541
- msgstr "Aujourd&#39;hui"
542
 
543
- #: .././admin/setup.php:170 .././admin/widgets.php:127
544
  msgid "Yesterday"
545
  msgstr "Hier"
546
 
547
- #: .././admin/setup.php:171 .././admin/widgets.php:128
548
- #: .././front/widgets.php:74 .././front/widgets.php:182
549
- msgid "Last 7 Days"
550
- msgstr "7 Derniers Jours"
 
 
 
 
 
551
 
552
- #: .././admin/setup.php:172 .././admin/widgets.php:130
553
- #: .././front/widgets.php:80 .././front/widgets.php:184
554
- msgid "Last 30 Days"
555
- msgstr "30 Derniers Jours"
 
556
 
557
- #: .././admin/setup.php:173 .././admin/widgets.php:131
558
- msgid "Last 90 Days"
559
- msgstr "90 Derniers Jours"
560
 
561
- #: .././admin/setup.php:175 .././admin/setup.php:190
562
- msgid "Unique Views"
563
  msgstr ""
564
 
565
- #: .././admin/setup.php:176 .././admin/setup.php:191
566
- #: .././admin/widgets.php:136 .././admin/widgets.php:875
567
- #: .././tools/gapi.php:391
 
 
 
 
 
568
  msgid "Users"
569
- msgstr ""
570
 
571
- #: .././admin/setup.php:177 .././admin/widgets.php:137
572
  msgid "Organic"
573
- msgstr "Organique"
574
 
575
- #: .././admin/setup.php:178 .././admin/setup.php:192
576
- #: .././admin/widgets.php:138 .././admin/widgets.php:879
577
- #: .././tools/gapi.php:394
578
  msgid "Page Views"
579
  msgstr "Pages vues"
580
 
581
- #: .././admin/setup.php:179 .././admin/setup.php:193
582
- #: .././admin/widgets.php:139 .././admin/widgets.php:883
583
- #: .././tools/gapi.php:397
584
  msgid "Bounce Rate"
585
- msgstr "Taux de Rebond"
586
 
587
- #: .././admin/setup.php:180 .././admin/widgets.php:140
588
  msgid "Location"
589
- msgstr ""
590
 
591
- #: .././admin/setup.php:181 .././admin/widgets.php:142 .././tools/gapi.php:566
 
592
  msgid "Referrers"
593
- msgstr ""
594
 
595
- #: .././admin/setup.php:182 .././admin/widgets.php:143 .././tools/gapi.php:612
596
- #: .././tools/gapi.php:918
597
  msgid "Searches"
598
- msgstr ""
599
 
600
- #: .././admin/setup.php:183 .././admin/widgets.php:144
601
  msgid "Traffic Details"
602
- msgstr ""
603
 
604
- #: .././admin/setup.php:185 .././admin/widgets.php:510
605
- #: .././admin/widgets.php:607 .././admin/widgets.php:805
606
- #: .././admin/widgets.php:917 .././front/item-reports.php:97
607
  msgid "A JavaScript Error is blocking plugin resources!"
608
- msgstr ""
609
 
610
- #: .././admin/setup.php:186 .././admin/widgets.php:713
611
  msgid "Traffic Mediums"
612
- msgstr ""
613
 
614
- #: .././admin/setup.php:187 .././admin/widgets.php:729
615
  msgid "Visitor Type"
616
- msgstr ""
617
 
618
- #: .././admin/setup.php:188 .././admin/widgets.php:745
619
  msgid "Social Networks"
620
- msgstr ""
621
 
622
- #: .././admin/setup.php:189 .././admin/widgets.php:761
623
  msgid "Search Engines"
624
- msgstr ""
625
 
626
- #: .././admin/setup.php:194 .././admin/widgets.php:887
627
  msgid "Organic Search"
628
- msgstr ""
629
 
630
- #: .././admin/setup.php:195 .././admin/widgets.php:891
631
  msgid "Pages/Session"
632
- msgstr ""
633
-
634
- #: .././admin/setup.php:196 .././admin/widgets.php:523
635
- #: .././admin/widgets.php:541 .././admin/widgets.php:620
636
- #: .././admin/widgets.php:638 .././admin/widgets.php:657
637
- #: .././admin/widgets.php:676 .././admin/widgets.php:696
638
- #: .././admin/widgets.php:819 .././admin/widgets.php:930
639
- #: .././admin/widgets.php:949 .././front/item-reports.php:109
640
- #: .././front/item-reports.php:128
641
  msgid "Invalid response, more details in JavaScript Console (F12)."
642
- msgstr ""
643
 
644
- #: .././admin/setup.php:197
645
  msgid "Not enough data collected"
646
- msgstr ""
647
 
648
- #: .././admin/setup.php:198 .././admin/widgets.php:528
649
- #: .././admin/widgets.php:546 .././admin/widgets.php:625
650
- #: .././admin/widgets.php:643 .././admin/widgets.php:662
651
- #: .././admin/widgets.php:681 .././admin/widgets.php:701
652
- #: .././admin/widgets.php:824 .././admin/widgets.php:827
653
- #: .././admin/widgets.php:935 .././admin/widgets.php:954
654
- #: .././front/item-reports.php:114 .././front/item-reports.php:133
655
- #: .././front/widgets.php:110
656
  msgid "This report is unavailable"
657
- msgstr ""
658
 
659
- #: .././admin/setup.php:199
660
  msgid "report generated by"
661
- msgstr ""
662
 
663
- #: .././admin/setup.php:233
664
  msgid "Settings"
665
- msgstr "Réglages"
666
 
667
- #: .././admin/widgets.php:33 .././front/widgets.php:22
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
668
  msgid "Google Analytics Dashboard"
669
- msgstr "Tableau de Bord Google Analytics"
670
 
671
- #: .././admin/widgets.php:42
672
  msgid "This plugin needs an authorization:"
673
- msgstr "Ce plugin a besoin d&#39;une autorisation:"
674
 
675
- #: .././admin/widgets.php:76
676
  msgid "Something went wrong while retrieving profiles list."
677
- msgstr ""
678
- "Quelque chose s&#39;est mal passé lors de la récupération de la liste des "
679
- "profils."
680
 
681
- #: .././admin/widgets.php:76
682
  msgid "More details"
683
- msgstr "Plus de Détails"
684
 
685
- #: .././admin/widgets.php:89 .././admin/widgets.php:100
686
  msgid "An admin should asign a default Google Analytics Profile."
687
- msgstr "Un administrateur doit assigner un profil Google Analytics par défaut."
688
 
689
- #: .././admin/widgets.php:89 .././admin/widgets.php:100
690
  msgid "Select Domain"
691
- msgstr "Sélectionner un Domaine"
692
 
693
- #: .././admin/widgets.php:105
694
  msgid ""
695
- "Something went wrong while retrieving property data. You need to create and "
696
- "properly configure a Google Analytics account:"
697
  msgstr ""
698
- "Quelque chose s&#39;est mal passé lors de la récupération des données de "
699
- "propriété. Vous devez créer et configurer correctement un compte Google "
700
- "Analytics:"
701
 
702
- #: .././admin/widgets.php:105
703
  msgid "Find out more!"
704
- msgstr "En savoir plus!"
705
 
706
- #: .././admin/widgets.php:125
707
  msgid "Real-Time"
708
- msgstr "Temps-Réel"
709
 
710
- #: .././admin/widgets.php:129 .././front/widgets.php:77
711
- #: .././front/widgets.php:183
712
- msgid "Last 14 Days"
713
- msgstr "14 Derniers Jours"
714
-
715
- #: .././admin/widgets.php:135 .././admin/widgets.php:871
716
- #: .././front/widgets.php:46 .././tools/gapi.php:406 .././tools/gapi.php:567
717
- #: .././tools/gapi.php:613 .././tools/gapi.php:676 .././tools/gapi.php:786
718
- #: .././tools/gapi.php:827 .././tools/gapi.php:919
719
  msgid "Sessions"
720
- msgstr ""
721
 
722
- #: .././admin/widgets.php:141 .././tools/gapi.php:521
723
  msgid "Pages"
724
- msgstr ""
725
 
726
- #: .././admin/widgets.php:232 .././admin/widgets.php:472
727
  msgid "REFERRAL"
728
- msgstr "RENVOI"
729
 
730
- #: .././admin/widgets.php:236 .././admin/widgets.php:473
731
  msgid "ORGANIC"
732
  msgstr "ORGANIQUE"
733
 
734
- #: .././admin/widgets.php:240 .././admin/widgets.php:360
735
- #: .././admin/widgets.php:474
736
  msgid "SOCIAL"
737
  msgstr "SOCIAL"
738
 
739
- #: .././admin/widgets.php:244 .././admin/widgets.php:363
740
- #: .././admin/widgets.php:475
741
  msgid "CAMPAIGN"
742
- msgstr ""
743
 
744
- #: .././admin/widgets.php:248 .././admin/widgets.php:366
745
- #: .././admin/widgets.php:478
746
  msgid "DIRECT"
747
  msgstr "DIRECT"
748
 
749
- #: .././admin/widgets.php:252 .././admin/widgets.php:479
750
  msgid "NEW"
751
  msgstr "NOUVEAU"
752
 
753
- #: .././admin/widgets.php:354
754
  msgid "REFERRALS"
755
  msgstr "RÉFÉRENCES"
756
 
757
- #: .././admin/widgets.php:357
758
  msgid "KEYWORDS"
759
  msgstr "MOTS-CLÉS"
760
 
761
- #: .././front/item-reports.php:143
762
- msgid "Views vs UniqueViews"
763
- msgstr "Vues VS Unique Vues"
764
-
765
- #: .././front/item-reports.php:193
766
- msgid "Google Analytics Reports"
767
- msgstr ""
768
-
769
- #: .././front/widgets.php:23
770
  msgid "Will display your google analytics stats in a widget"
771
- msgstr "Affichera vos statistiques Google Analytics dans un widget"
772
 
773
- #: .././front/widgets.php:46 .././tools/gapi.php:827
774
  msgid "trend"
775
- msgstr ""
776
 
777
- #: .././front/widgets.php:133
778
  msgid "Period:"
779
- msgstr "Période:"
780
 
781
- #: .././front/widgets.php:133
782
  msgid "Sessions:"
783
- msgstr ""
784
 
785
- #: .././front/widgets.php:137
786
  msgid "generated by"
787
- msgstr "générée par"
788
 
789
- #: .././front/widgets.php:147
790
  msgid "Google Analytics Stats"
791
- msgstr "Google Analytics Statistiques"
792
 
793
- #: .././front/widgets.php:154
794
  msgid "Title:"
795
- msgstr "Titre:"
796
 
797
- #: .././front/widgets.php:161
798
  msgid "Display:"
799
- msgstr "Affichage:"
800
 
801
- #: .././front/widgets.php:165
802
  msgid "Chart & Totals"
803
- msgstr "Graphique & Totaux"
804
 
805
- #: .././front/widgets.php:166
806
  msgid "Chart"
807
- msgstr "raphique"
808
 
809
- #: .././front/widgets.php:167
810
  msgid "Totals"
811
- msgstr "Totaux"
812
 
813
- #: .././front/widgets.php:171
814
  msgid "Anonymize stats:"
815
- msgstr ""
816
 
817
- #: .././front/widgets.php:178
818
  msgid "Stats for:"
819
- msgstr "Statistiques pour:"
820
 
821
- #: .././front/widgets.php:188
822
  msgid "Give credits:"
823
- msgstr "Accorder des crédits:"
824
 
825
- #: .././gadwp.php:46 .././gadwp.php:55 .././gadwp.php:63
826
  msgid "This is not allowed, read the documentation!"
827
- msgstr ""
828
 
829
- #: .././tools/gapi.php:134
830
  msgid "Use this link to get your access code:"
831
  msgstr "Utilisez ce lien pour obtenir votre code d&#39;accès:"
832
 
833
- #: .././tools/gapi.php:134
834
  msgid "Get Access Code"
835
  msgstr "Obtenir le code d&#39;accès"
836
 
837
- #: .././tools/gapi.php:138 .././tools/gapi.php:139
838
  msgid "Use the red link to get your access code!"
839
- msgstr ""
840
 
841
- #: .././tools/gapi.php:138
842
  msgid "Access Code:"
843
- msgstr "Code d&#39;Accès:"
844
 
845
- #: .././tools/gapi.php:145
846
  msgid "Save Access Code"
847
- msgstr "Sauver le Code d&#39;Accès"
848
 
849
- #: .././tools/gapi.php:400
850
  msgid "Organic Searches"
851
- msgstr "Recherches Organique"
852
 
853
- #: .././tools/gapi.php:403
854
  msgid "Unique Page Views"
855
- msgstr ""
856
 
857
- #: .././tools/gapi.php:411
858
  msgid "Hour"
859
  msgstr "Heure"
860
 
861
- #: .././tools/gapi.php:414 .././tools/gapi.php:826 .././tools/gapi.php:876
862
  msgid "Date"
863
  msgstr "Date"
864
 
865
- #: .././tools/gapi.php:522 .././tools/gapi.php:877
866
  msgid "Views"
867
  msgstr "Vues"
868
 
869
- #: .././tools/gapi.php:640
870
  msgid "Countries"
871
- msgstr ""
872
 
873
- #: .././tools/gapi.php:650
874
  msgid "Cities from"
875
- msgstr ""
876
 
877
- #: .././tools/gapi.php:722
878
  msgid "Channels"
879
- msgstr ""
880
 
881
- #: .././tools/gapi.php:785
882
  msgid "Type"
883
  msgstr "Type"
884
 
885
- #: .././tools/gapi.php:878
886
- msgid "UniqueViews"
887
- msgstr "Unique vues"
888
-
889
- #~ msgid "and/or hide all other domains"
890
- #~ msgstr "et/ou masquer tous les autres domaines"
891
-
892
- #~ msgid "Hide Now"
893
- #~ msgstr "Cacher Maintenant"
894
-
895
- #~ msgid "about this feature"
896
- #~ msgstr "sur cette fonction"
897
-
898
- #~ msgid " show page searches (after each article)"
899
- #~ msgstr "Afficher la page de recherche (après chaque article)"
900
-
901
- #~ msgid " anonymize IPs while tracking"
902
- #~ msgstr "anonymiser IP tout en suivant"
903
-
904
- #~ msgid " enable remarketing, demographics and interests reports"
905
- #~ msgstr ""
906
- #~ "permettre remarketing, les données démographiques et les rapports d&#39;"
907
- #~ "intérêts"
908
-
909
- #~ msgid " track downloads, mailto and outbound links"
910
- #~ msgstr "téléchargement de titres, mailto et liens sortants"
911
-
912
- #, fuzzy
913
- #~ msgid " exclude events from bounce-rate calculation"
914
- #~ msgstr " exclude the event hit from bounce-rate calculation"
915
-
916
- #~ msgid " enable enhanced link attribution"
917
- #~ msgstr "permettre une meilleure liaison attribution"
918
-
919
- #~ msgid " enable AdSense account linking"
920
- #~ msgstr "Permettre la liaison avec votre compte Adsense"
921
-
922
- #~ msgid " use your own API Project credentials"
923
- #~ msgstr ""
924
- #~ "utiliser vos propres informations d&#39;identification de projets de "
925
- #~ "l&#39;API"
926
-
927
- #~ msgid " use a single Google Analytics account for the entire network"
928
- #~ msgstr ""
929
- #~ "utiliser un seul compte Google Analytics pour l&#39;ensemble du réseau"
930
-
931
- #~ msgid "disable Switch Profile/View functionality"
932
- #~ msgstr "désactiver Changer Profil/Voir fonctionnalité"
933
-
934
- #~ msgid "You should watch the"
935
- #~ msgstr "Vous devriez regarder la"
936
-
937
- #~ msgid "and read this"
938
- #~ msgstr "et lire ce"
939
-
940
- #~ msgid ""
941
- #~ "before proceeding to authorization. This plugin requires a properly "
942
- #~ "configured Google Analytics account"
943
- #~ msgstr ""
944
- #~ "avant de procéder à l&#39;autorisation. Ce plugin nécessite un compte "
945
- #~ "Google Analytics correctement configuré"
946
-
947
- #~ msgid "Your feedback and review are both important,"
948
- #~ msgstr "Vos commentaires et avis sont importants,"
949
-
950
- #~ msgid "Other"
951
- #~ msgstr "Autres"
952
-
953
- #~ msgid "written by the same author"
954
- #~ msgstr "écrit par le même auteur"
955
-
956
- #~ msgid "Google Analytics Dashboard Settings"
957
- #~ msgstr "Paramètres du tableau de bord Google Analytics"
958
-
959
- #~ msgid "A new frontend widget is available! To enable it, go to"
960
- #~ msgstr ""
961
- #~ "Un nouveau widget frontend est disponible! Pour l&#39;activer, allez dans"
962
-
963
- #~ msgid "Appearance -> Widgets"
964
- #~ msgstr "Apparence -> Widgets"
965
-
966
- #~ msgid "and look for Google Analytics Dashboard."
967
- #~ msgstr "et de chercher Google Analytics Dashboard."
968
-
969
- #~ msgid "Something went wrong, you need to"
970
- #~ msgstr "Quelque chose s&#39;est mal passé, vous devez"
971
-
972
- #~ msgid "or properly configure your"
973
- #~ msgstr "ou bien configurer votre"
974
-
975
- #~ msgid "Google Analytics account"
976
- #~ msgstr "Compte Google Analytics"
977
-
978
- #~ msgid "(find out more"
979
- #~ msgstr "(en savoir plus"
980
-
981
- #~ msgid ")"
982
- #~ msgstr ")"
983
-
984
- #~ msgid "Additional Stats & Charts"
985
- #~ msgstr "Statistiques et graphiques supplémentaires"
986
-
987
- #~ msgid "Target Geo Map to region:"
988
- #~ msgstr "Cible Géo carte de la région:"
989
-
990
- #~ msgid "and render top"
991
- #~ msgstr "et rendre haut"
992
-
993
- #~ msgid "cities (find out more"
994
- #~ msgstr "villes (en savoir plus"
995
-
996
- #~ msgid " show traffic overview"
997
- #~ msgstr "Affiche la Vue d&#39;ensemble du Traffic"
998
-
999
- #~ msgid " show top pages"
1000
- #~ msgstr "Affiche le Top pages"
1001
-
1002
- #~ msgid " show top referrers"
1003
- #~ msgstr "Affiche le Top références"
1004
-
1005
- #~ msgid " show top searches"
1006
- #~ msgstr "Affiche le Top recherches"
1007
-
1008
- #~ msgid "Dumping log data."
1009
- #~ msgstr "D&#39;exporter les données du journal."
1010
-
1011
- #~ msgid ""
1012
- #~ "Something went wrong. Please check the Debugging Data section for "
1013
- #~ "possible errors"
1014
- #~ msgstr ""
1015
- #~ "Quelque chose s&#39;est mal passé. S&#39;il vous plaît consulter la "
1016
- #~ "section Mise au point de données pour d&#39;éventuelles erreurs"
1017
-
1018
- #~ msgid "Debugging Data"
1019
- #~ msgstr "débogage des données"
1020
-
1021
- #~ msgid "Anonimize chart&#39;s stats:"
1022
- #~ msgstr "Les statistiques de Anonimize graphique:"
1023
-
1024
- #~ msgid "Top Searches"
1025
- #~ msgstr "Top Recherches"
1026
-
1027
- #~ msgid "Error Log"
1028
- #~ msgstr "Log erreurs"
1029
-
1030
- #~ msgid "Visits"
1031
- #~ msgstr "Visites"
1032
-
1033
- #~ msgid "Visitors"
1034
- #~ msgstr "Visiteurs"
1035
-
1036
- #~ msgid ""
1037
- #~ "No stats available. Please check the Debugging Data section for possible "
1038
- #~ "errors"
1039
- #~ msgstr ""
1040
- #~ "Aucune statistique n&#39;est disponible. S&#39;il vous plaît consulter la "
1041
- #~ "section Mise au point de données pour d&#39;éventuelles erreurs"
1042
-
1043
- #~ msgid "Country/City"
1044
- #~ msgstr "Pays/Ville"
1045
-
1046
- #~ msgid "Source"
1047
- #~ msgstr "source"
1048
-
1049
- #~ msgid "Traffic Sources"
1050
- #~ msgstr "Sources de traffic"
1051
-
1052
- #~ msgid "New vs. Returning"
1053
- #~ msgstr "Nouveaux VS Connus"
1054
-
1055
- #~ msgid "Top Pages"
1056
- #~ msgstr "Top Pages"
1057
-
1058
- #~ msgid "Top Referrers"
1059
- #~ msgstr "Top Références"
1060
-
1061
- #~ msgid "Visits:"
1062
- #~ msgstr "Visites:"
1063
-
1064
- #~ msgid "Visitors:"
1065
- #~ msgstr "Visiteurs:"
1066
-
1067
- #~ msgid "Page Views:"
1068
- #~ msgstr "Pages Vues:"
1069
-
1070
- #~ msgid "Bounce Rate:"
1071
- #~ msgstr "Taux de Rebond:"
1072
-
1073
- #~ msgid "Organic Search:"
1074
- #~ msgstr "Recherches Organique:"
1075
-
1076
- #~ msgid "Pages per Visit:"
1077
- #~ msgstr "Pages par visite:"
1078
-
1079
- #~ msgid ""
1080
- #~ "This is a beta feature and is only available when using my Developer Key! "
1081
- #~ "("
1082
- #~ msgstr ""
1083
- #~ "Il s&#39;agit d&#39;une fonctionnalité bêta et est disponible uniquement "
1084
- #~ "lorsque vous utilisez ma clé de développeur! ("
1085
-
1086
- #~ msgid "more about this feature"
1087
- #~ msgstr "plus sur cette fonction"
1088
-
1089
- #~ msgid "RETURN"
1090
- #~ msgstr "RETOUR"
1091
-
1092
- #~ msgid "Visits from "
1093
- #~ msgstr "Visites de"
1094
-
1095
- #~ msgid "Visits by Country"
1096
- #~ msgstr "Visites par Pays"
1097
-
1098
- #~ msgid "Traffic Overview"
1099
- #~ msgstr "Aperçu du Traffic"
1100
-
1101
- #~ msgid " show page visits and visitors in frontend (after each article)"
1102
- #~ msgstr ""
1103
- #~ "Afficher la page visites et de visiteurs en frontend (après chaque "
1104
- #~ "article)"
1105
-
1106
- #~ msgid " show Geo Map chart for visits"
1107
- #~ msgstr "montrer carte Géographique pour les visites"
1108
-
1109
- #~ msgid "You can find support on"
1110
- #~ msgstr "Vous pouvez trouver de l&#39;aide sur"
1111
 
1112
- #~ msgid "service with visitors tracking at IP level."
1113
- #~ msgstr "services auprès des visiteurs de suivi au niveau IP."
1114
 
1115
- #~ msgid "Total Visits:"
1116
- #~ msgstr "Total visits"
1117
 
1118
- #~ msgid "PHP CURL is required. Please install/enable PHP CURL!"
1119
- #~ msgstr ""
1120
- #~ "PHP CURL est nécessaire. S&#39;il vous plaît installer / activer PHP CURL!"
1121
 
1122
- #~ msgid "Options saved."
1123
- #~ msgstr "Options Sauvées"
1124
 
1125
- #~ msgid "Show stats to: "
1126
- #~ msgstr "Voir les statistiques de:"
1127
 
1128
- #~ msgid "Update Options"
1129
- #~ msgstr "Mise à jour des options"
1130
 
1131
- #~ msgid "Tracking Options: "
1132
- #~ msgstr "Suivi Options:"
1133
 
1134
- #~ msgid "Tracking Type: "
1135
- #~ msgstr "Type de suivi:"
1136
 
1137
- #, fuzzy
1138
- #~ msgid "User Type: "
1139
- #~ msgstr "Type de suivi:"
1140
 
1141
- #~ msgid "Exclude tracking for: "
1142
- #~ msgstr "Exclure tracking pour:"
1143
 
1144
- #~ msgid "Select Domain: "
1145
- #~ msgstr "Sélectionner un domaine:"
1146
 
1147
- #~ msgid "Theme Color: "
1148
- #~ msgstr "Couleur du Thème:"
1149
 
1150
- #~ msgid "&#39; trend"
1151
- #~ msgstr "&#39; tendance"
1152
 
1153
- #~ msgid "DeConf Help Center"
1154
- #~ msgstr "DeConf Centre d'aide"
1155
 
1156
- #~ msgid ""
1157
- #~ " (watch this <a href='http://deconf.com/projects/google-analytics-"
1158
- #~ "dashboard-for-wordpress/' target='_blank'>Step by step video tutorial</a>)"
1159
- #~ msgstr ""
1160
- #~ " (watch this <a href='http://deconf.com/projects/google-analytics-"
1161
- #~ "dashboard-for-wordpress/' target='_blank'>Step by step video tutorial</a>)"
1
+ # Copyright (C) 2015 Google Analytics Dashboard for WP
2
+ # This file is distributed under the same license as the Google Analytics Dashboard for WP package.
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Google Analytics Dashboard for WP\n"
6
+ "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-dashboard-for-wp\n"
7
+ "POT-Creation-Date: 2015-07-05 16:07+0300\n"
8
+ "PO-Revision-Date: 2015-07-05 16:07+0300\n"
 
9
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
10
  "Language-Team: Alin Marcu\n"
11
  "Language: fr_FR\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
 
 
 
 
15
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
16
+ "X-Generator: Poedit 1.8.2\n"
17
+ "X-Poedit-SourceCharset: UTF-8\n"
18
+ "X-Poedit-KeywordsList: __;_e;_n;_x;_ex;_nx;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;esc_html_x;_n_noop;_nx_noop\n"
19
+ "X-Poedit-Basepath: .\n"
20
  "X-Poedit-SearchPath-0: ../.\n"
21
 
22
+ #: .././admin/item-reports.php:61 .././front/item-reports.php:29
23
  msgid "Analytics"
24
+ msgstr "Analytics"
25
 
26
+ #: .././admin/settings.php:89 .././admin/settings.php:184 .././admin/settings.php:318
27
+ #: .././admin/settings.php:795 .././admin/settings.php:1068
 
28
  msgid "Settings saved."
29
+ msgstr "Paramètres enregistrés."
30
 
31
+ #: .././admin/settings.php:91 .././admin/settings.php:186 .././admin/settings.php:320
32
+ #: .././admin/settings.php:772 .././admin/settings.php:782 .././admin/settings.php:791
33
+ #: .././admin/settings.php:797 .././admin/settings.php:808 .././admin/settings.php:1029
34
+ #: .././admin/settings.php:1054 .././admin/settings.php:1064 .././admin/settings.php:1070
35
+ #: .././admin/settings.php:1081
 
 
36
  msgid "Cheating Huh?"
37
+ msgstr "Alors on triche ?"
38
 
39
+ #: .././admin/settings.php:95 .././admin/settings.php:190 .././admin/settings.php:324
40
+ #: .././admin/settings.php:641 .././admin/settings.php:823 .././admin/settings.php:1095
 
41
  #, php-format
42
  msgid "Something went wrong, check %1$s or %2$s."
43
+ msgstr "Quelque chose ne va pas, vérifier %1$s ou %2$s."
44
 
45
+ #: .././admin/settings.php:95 .././admin/settings.php:190 .././admin/settings.php:324
46
+ #: .././admin/settings.php:641 .././admin/settings.php:823 .././admin/settings.php:1095
47
+ #: .././admin/setup.php:46 .././admin/setup.php:59
 
48
  msgid "Errors & Debug"
49
+ msgstr "Erreurs et débogage"
50
 
51
+ #: .././admin/settings.php:95 .././admin/settings.php:190 .././admin/settings.php:324
52
+ #: .././admin/settings.php:641 .././admin/settings.php:823 .././admin/settings.php:1095
 
53
  msgid "authorize the plugin"
54
  msgstr "autoriser le plugin"
55
 
56
+ #: .././admin/settings.php:100
57
  msgid "Google Analytics Frontend Settings"
58
  msgstr "Google Analytics Paramètres Frontend"
59
 
60
+ #: .././admin/settings.php:110 .././admin/settings.php:205
61
  msgid "Permissions"
62
+ msgstr "Permissions"
63
 
64
+ #: .././admin/settings.php:113 .././admin/settings.php:208
65
  msgid "Show stats to:"
66
+ msgstr "Voir les statistiques de:"
67
 
68
+ #: .././admin/settings.php:154
69
+ msgid "enable web page reports on frontend"
70
  msgstr ""
71
 
72
+ #: .././admin/settings.php:161 .././admin/settings.php:297 .././admin/settings.php:598
73
+ #: .././admin/settings.php:943 .././admin/settings.php:1232
 
 
 
 
 
74
  msgid "Save Changes"
75
+ msgstr "Sauvergarder les changements"
76
 
77
+ #: .././admin/settings.php:195
78
  msgid "Google Analytics Backend Settings"
79
+ msgstr "Google Analytics Paramètres Backend"
80
 
81
+ #: .././admin/settings.php:251
82
  msgid "enable Switch View functionality"
83
+ msgstr "activer la fonctionnalité pour basculer l'affichage"
84
 
85
+ #: .././admin/settings.php:262
86
  msgid "enable reports on Posts List and Pages List"
87
+ msgstr "activer les rapports sur la liste de messages et la liste des Pages"
88
 
89
+ #: .././admin/settings.php:273
90
  msgid "enable the main Dashboard Widget"
91
+ msgstr "activez le Widget Dashboard principal"
92
 
93
+ #: .././admin/settings.php:277
94
  msgid "Real-Time Settings"
95
+ msgstr "Paramètres en temps réel"
96
 
97
+ #: .././admin/settings.php:280
98
  msgid "Maximum number of pages to display on real-time tab:"
99
+ msgstr "Nombre maximal de pages à afficher sur l'onglet en temps réel :"
100
 
101
+ #: .././admin/settings.php:285
102
  msgid "Location Settings"
103
+ msgstr "Paramètres de localisation"
104
 
105
+ #: .././admin/settings.php:289
106
  msgid "Target Geo Map to country:"
107
+ msgstr "Cibler Carte Géo par pays:"
108
 
109
+ #: .././admin/settings.php:327
110
  msgid ""
111
+ "The tracking component is disabled. You should set <strong>Tracking Options</strong> to "
112
+ "<strong>Enabled</strong>"
113
  msgstr ""
114
+ "Le composant de suivi est désactivé. Vous devez définir les <strong>Options de suivi</strong> "
115
+ "sur <strong>Activé</strong>"
116
 
117
+ #: .././admin/settings.php:332
118
  msgid "Google Analytics Tracking Code"
119
+ msgstr "Code de suivi Google Analytics"
120
 
121
+ #: .././admin/settings.php:341
122
  msgid "Basic Settings"
123
+ msgstr "Réglages de base"
124
 
125
+ #: .././admin/settings.php:342 .././admin/settings.php:408
126
  msgid "Events Tracking"
127
+ msgstr "Événements de suivi"
128
 
129
+ #: .././admin/settings.php:343 .././admin/settings.php:456
130
  msgid "Custom Definitions"
131
+ msgstr "Définitions personnalisées"
132
 
133
+ #: .././admin/settings.php:344 .././admin/settings.php:554 .././admin/settings.php:1215
 
134
  msgid "Exclude Tracking"
135
+ msgstr "Exclure le suivi"
136
 
137
+ #: .././admin/settings.php:345
138
  msgid "Advanced Settings"
139
+ msgstr "Paramètres Avancés"
140
 
141
+ #: .././admin/settings.php:353
142
  msgid "Tracking Settings"
143
  msgstr "Paramètres de suivi"
144
 
145
+ #: .././admin/settings.php:356
146
  msgid "Tracking Options:"
147
+ msgstr "Options de suivi :"
148
 
149
+ #: .././admin/settings.php:358
150
  msgid "Disabled"
151
+ msgstr "Désactivé"
152
 
153
+ #: .././admin/settings.php:359
154
  msgid "Enabled"
155
+ msgstr "Activé"
156
 
157
+ #: .././admin/settings.php:367 .././admin/settings.php:888 .././admin/settings.php:910
158
+ #: .././admin/settings.php:1188 .././admin/widgets.php:61
 
159
  msgid "View Name:"
160
+ msgstr "Voir le nom :"
161
 
162
+ #: .././admin/settings.php:367 .././admin/settings.php:910
163
  msgid "Tracking ID:"
164
+ msgstr "ID de suivi :"
165
 
166
+ #: .././admin/settings.php:367 .././admin/settings.php:910
167
  msgid "Default URL:"
168
+ msgstr "URL par défaut :"
169
 
170
+ #: .././admin/settings.php:367 .././admin/settings.php:910
171
  msgid "Time Zone:"
172
+ msgstr "Fuseau horaire :"
173
 
174
+ #: .././admin/settings.php:372
175
  msgid "Basic Tracking"
176
  msgstr "Suivi de base"
177
 
178
+ #: .././admin/settings.php:375
179
  msgid "Tracking Type:"
180
+ msgstr "Type de suivi :"
181
 
182
+ #: .././admin/settings.php:377
183
  msgid "Classic Analytics"
184
+ msgstr "Analytique classique"
185
 
186
+ #: .././admin/settings.php:378
187
  msgid "Universal Analytics"
188
+ msgstr "Universel Analytique"
189
 
190
+ #: .././admin/settings.php:389
191
  msgid "anonymize IPs while tracking"
192
+ msgstr "IP anonymes qui sont suivies"
193
 
194
+ #: .././admin/settings.php:400
195
  msgid "enable remarketing, demographics and interests reports"
196
+ msgstr "activez le remarketing, rapports de données démographiques et d'intérêts"
197
 
198
+ #: .././admin/settings.php:418
199
  msgid "track downloads, mailto and outbound links"
200
+ msgstr "suivre l'envoi d'emails, les téléchargements et les liens sortants"
201
 
202
+ #: .././admin/settings.php:422
 
203
  msgid "Downloads Regex:"
204
+ msgstr "Téléchargements Regex:"
205
 
206
+ #: .././admin/settings.php:433
207
  msgid "track affiliate links matching this regex"
208
+ msgstr "suivre les liens d&#39;affiliation pour ce regex"
209
 
210
+ #: .././admin/settings.php:437
211
  msgid "Affiliates Regex:"
212
+ msgstr "Affiliés Regex:"
213
 
214
+ #: .././admin/settings.php:448
215
  msgid "track fragment identifiers, hashmarks (#) in URI links"
216
+ msgstr "suivre les identificateurs de fragment, hashmarks (#) dans les liens d'URL"
217
 
218
+ #: .././admin/settings.php:459
219
  msgid "Authors:"
220
+ msgstr "Auteurs :"
221
 
222
+ #: .././admin/settings.php:467
223
  msgid "Publication Year:"
224
+ msgstr "Année de Publication:"
225
 
226
+ #: .././admin/settings.php:475
227
  msgid "Categories:"
228
+ msgstr "Catégories:"
229
 
230
+ #: .././admin/settings.php:483
231
  msgid "User Type:"
232
+ msgstr "Type d&#39;utilisateur:"
233
 
234
+ #: .././admin/settings.php:495
 
235
  msgid "Advanced Tracking"
236
+ msgstr "Suivi avancé"
237
 
238
+ #: .././admin/settings.php:498
239
  msgid "Page Speed SR:"
240
+ msgstr "Vitesse de page SR:"
241
 
242
+ #: .././admin/settings.php:509
243
  msgid "exclude events from bounce-rate calculation"
244
+ msgstr "exclure les événements calculé du taux de rebond"
245
 
246
+ #: .././admin/settings.php:520
247
  msgid "enable enhanced link attribution"
248
+ msgstr "activez le lien amélioré d'attribution"
249
 
250
+ #: .././admin/settings.php:531
251
  msgid "enable AdSense account linking"
252
+ msgstr "activer les liens de compte AdSense"
253
 
254
+ #: .././admin/settings.php:542
255
  msgid "enable cross domain tracking"
256
+ msgstr "activez le suivi du Cross Domains"
257
 
258
+ #: .././admin/settings.php:546
259
  msgid "Cross Domains:"
260
  msgstr ""
261
 
262
+ #: .././admin/settings.php:557
263
  msgid "Exclude tracking for:"
264
+ msgstr "Exclure le suivi pour:"
265
 
266
+ #: .././admin/settings.php:645
267
  msgid "Google Analytics Errors & Debugging"
268
+ msgstr "Erreurs & Débogage de Google Analytics"
269
 
270
+ #: .././admin/settings.php:655
271
  msgid "Errors & Details"
272
+ msgstr "Erreurs & Détails"
273
 
274
+ #: .././admin/settings.php:656
275
  msgid "Plugin Settings"
276
+ msgstr "Paramètres du Plugin"
277
 
278
+ #: .././admin/settings.php:663
279
  msgid "Last Error detected"
280
+ msgstr "Dernière erreur détectée"
281
 
282
+ #: .././admin/settings.php:669 .././admin/settings.php:682
283
  msgid "None"
284
+ msgstr "Aucun"
285
 
286
+ #: .././admin/settings.php:676
287
  msgid "Error Details"
288
+ msgstr "Détails de l'erreur"
289
 
290
+ #: .././admin/settings.php:696
291
  msgid "Plugin Configuration"
292
+ msgstr "Configuration du plugin"
293
 
294
+ #: .././admin/settings.php:717 .././admin/settings.php:980
295
  msgid ""
296
+ "Loading the required libraries. If this results in a blank screen or a fatal error, try this "
297
+ "solution:"
298
  msgstr ""
299
+ "Charger les bibliothèques requises. Si cela aboutit à un écran vide ou une erreur fatale, "
300
+ "essayez cette solution :"
301
 
302
+ #: .././admin/settings.php:717
303
  msgid "Library conflicts between WordPress plugins"
304
+ msgstr "Conflits de bibliothèque entre plugins WordPress"
305
 
306
+ #: .././admin/settings.php:732 .././admin/settings.php:997
307
  msgid "Plugin authorization succeeded."
308
+ msgstr "Autorisation de plugin a réussi."
309
 
310
+ #: .././admin/settings.php:747 .././admin/settings.php:1020
311
  msgid ""
312
+ "The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> (UA-XXXXX-X). Try "
313
+ "again, and use the red link to get your access code"
314
  msgstr ""
315
+ "Le code d'accès n'est <strong>PAS</strong> votre <strong>ID de suivi</strong> (UA-XXXXX-X). "
316
+ "Essayez à nouveau et cliquez sur le lien rouge pour obtenir votre code d'accès"
317
 
318
+ #: .././admin/settings.php:770 .././admin/settings.php:1052
319
  msgid "Cleared Cache."
320
  msgstr "Cache effacé."
321
 
322
+ #: .././admin/settings.php:779 .././admin/settings.php:1061
323
  msgid "Token Reseted and Revoked."
324
+ msgstr "Jeton réinitialisée et révoqué."
325
 
326
+ #: .././admin/settings.php:789
327
  msgid "All errors reseted."
328
+ msgstr "Toutes les erreurs sont réinitialisées."
329
 
330
+ #: .././admin/settings.php:802 .././admin/settings.php:1075
331
  msgid "All other domains/properties were removed."
332
+ msgstr "Tous les autres domaines et propriétés ont été retirées."
333
 
334
+ #: .././admin/settings.php:813 .././admin/settings.php:1086
335
  msgid "Google Analytics Settings"
336
+ msgstr "Paramètres de Google Analytics"
337
 
338
+ #: .././admin/settings.php:828 .././admin/settings.php:1100
339
  msgid "Use the red link (see below) to generate and get your access code!"
340
+ msgstr "Le lien rouge (voir ci-dessous) permet de générer et d'obtenir votre code d'accès !"
341
 
342
+ #: .././admin/settings.php:839 .././admin/settings.php:1128
343
  msgid "Plugin Authorization"
344
+ msgstr "Autorisation du plugin"
345
 
346
+ #: .././admin/settings.php:844 .././admin/settings.php:1132
347
  #, php-format
348
  msgid ""
349
+ "You should watch the %1$s and read this %2$s before proceeding to authorization. This plugin "
350
+ "requires a properly configured Google Analytics account!"
 
351
  msgstr ""
352
+ "Vous devriez regarder %1$s et lire cette %2$s avant de procéder à l'autorisation. Ce plugin "
353
+ "nécessite un compte Google Analytics correctement configuré !"
354
 
355
+ #: .././admin/settings.php:844 .././admin/settings.php:1132
356
  msgid "video"
357
+ msgstr "vidéo"
358
 
359
+ #: .././admin/settings.php:844 .././admin/settings.php:1132
360
  msgid "tutorial"
361
+ msgstr "tutoriel"
362
 
363
+ #: .././admin/settings.php:849 .././admin/settings.php:1139
364
  msgid "use your own API Project credentials"
365
+ msgstr "Utilisez vos propres informations d'identification du projet d'API"
366
 
367
+ #: .././admin/settings.php:854 .././admin/settings.php:1147
368
  msgid "API Key:"
369
+ msgstr "Clé API :"
370
 
371
+ #: .././admin/settings.php:858 .././admin/settings.php:1151
372
  msgid "Client ID:"
373
+ msgstr "ID client :"
374
 
375
+ #: .././admin/settings.php:862 .././admin/settings.php:1155
376
  msgid "Client Secret:"
377
+ msgstr "Secret client:"
378
 
379
+ #: .././admin/settings.php:872 .././admin/settings.php:1165
380
  msgid "Clear Authorization"
381
+ msgstr "Effacer l'authorisation"
382
 
383
+ #: .././admin/settings.php:872 .././admin/settings.php:950 .././admin/settings.php:1165
384
+ #: .././admin/settings.php:1241
385
  msgid "Clear Cache"
386
+ msgstr "Nettoyer le cache"
387
 
388
+ #: .././admin/settings.php:872
389
  msgid "Reset Errors"
390
+ msgstr "Réinitialisation des erreurs"
391
 
392
+ #: .././admin/settings.php:878 .././admin/setup.php:42 .././admin/setup.php:58
393
  msgid "General Settings"
394
+ msgstr "Paramètres généraux"
395
 
396
+ #: .././admin/settings.php:881
397
  msgid "Select View:"
398
+ msgstr "Sélectionnez Afficher :"
399
 
400
+ #: .././admin/settings.php:892 .././admin/settings.php:1192
401
  msgid "Property not found"
402
+ msgstr "Propriété introuvable"
403
 
404
+ #: .././admin/settings.php:898
405
  msgid "Lock Selection"
406
+ msgstr "Verrouiler la Sélection"
407
 
408
+ #: .././admin/settings.php:917
409
  msgid "Theme Color:"
410
+ msgstr "Couleur du theme:"
411
 
412
+ #: .././admin/settings.php:925 .././admin/settings.php:1201
413
  msgid "Automatic Updates"
414
+ msgstr "Mises à jour automatiques"
415
 
416
+ #: .././admin/settings.php:935 .././admin/settings.php:1211
417
+ msgid "automatic updates for minor versions (security and maintenance releases only)"
 
418
  msgstr ""
419
+ "mises à jour automatiques pour les versions mineures (sécurité et version maintenance uniquement)"
420
 
421
+ #: .././admin/settings.php:950 .././admin/settings.php:1241 .././admin/widgets.php:32
 
422
  msgid "Authorize Plugin"
423
+ msgstr "Autoriser le Plugin"
424
 
425
+ #: .././admin/settings.php:1026
426
  msgid "Properties refreshed."
427
  msgstr "Propriétés rafraîchies."
428
 
429
+ #: .././admin/settings.php:1110
430
  msgid "Network Setup"
431
  msgstr "Configuration du réseau"
432
 
433
+ #: .././admin/settings.php:1120
434
  msgid "use a single Google Analytics account for the entire network"
435
+ msgstr "utiliser un seul compte Google Analytics pour l'ensemble du réseau"
436
 
437
+ #: .././admin/settings.php:1165
438
  msgid "Refresh Properties"
439
+ msgstr "Propriétés de rafraîchissement"
440
 
441
+ #: .././admin/settings.php:1171
442
  msgid "Properties/Views Settings"
443
+ msgstr "Paramètres de propriétés/vues"
444
 
445
+ #: .././admin/settings.php:1225
446
  msgid "exclude Super Admin tracking for the entire network"
447
+ msgstr "exclure Super Admin pour l'ensemble du réseau suivi"
448
 
449
+ #: .././admin/settings.php:1273
450
  msgid "Setup Tutorial & Demo"
451
+ msgstr "Tutoriel d'installation & démo"
 
 
 
 
452
 
453
+ #: .././admin/settings.php:1281
454
+ msgid "Follow & Review"
 
455
  msgstr ""
456
 
457
  #: .././admin/settings.php:1307
458
  #, php-format
459
  msgid "Your feedback and review are both important, %s!"
460
+ msgstr "Votre avis et commentaire sont tous deux importants, %s !"
461
 
462
  #: .././admin/settings.php:1307
463
  msgid "rate this plugin"
464
+ msgstr "évaluez cette extension"
465
 
466
  #: .././admin/settings.php:1313
467
  msgid "Further Reading"
468
+ msgstr "Autres lectures"
469
 
470
  #: .././admin/settings.php:1320
471
  #, php-format
472
  msgid "%s by moving your website to HTTPS/SSL."
473
+ msgstr "%s en déplaçant votre site Web à HTTPS/SSL."
474
 
475
  #: .././admin/settings.php:1320
476
  msgid "Improve search rankings"
477
+ msgstr "Améliorer le classement de recherche"
478
 
479
  #: .././admin/settings.php:1327
480
  #, php-format
481
  msgid "Other %s written by the same author"
482
+ msgstr "Autre %s écrit par le même auteur"
483
 
484
  #: .././admin/settings.php:1327
485
  msgid "WordPress Plugins"
486
+ msgstr "Plugins Wordpress"
487
 
488
  #: .././admin/settings.php:1333
489
  msgid "Other Services"
490
+ msgstr "Autres Services"
491
 
492
  #: .././admin/settings.php:1340
493
  #, php-format
494
  msgid "Speed up your website and plug into a whole %s"
495
+ msgstr "Accélérer votre site Web et branchez ensemble %s"
496
 
497
  #: .././admin/settings.php:1340
498
  msgid "new level of site speed"
499
+ msgstr "nouveau niveau de vitesse du site"
500
 
501
  #: .././admin/settings.php:1347
502
  #, php-format
503
  msgid "%s service with users tracking at IP level."
504
+ msgstr "%s service avec les utilisateurs de suivi au niveau IP."
505
 
506
  #: .././admin/settings.php:1347
507
  msgid "Web Analytics"
508
  msgstr "Web Analytics"
509
 
510
+ #: .././admin/setup.php:41 .././admin/setup.php:57
511
  msgid "Google Analytics"
512
  msgstr "Google Analytics"
513
 
514
+ #: .././admin/setup.php:43
515
  msgid "Backend Settings"
516
+ msgstr "Paramètres du backend"
517
 
518
+ #: .././admin/setup.php:44
519
  msgid "Frontend Settings"
520
+ msgstr "Paramètres du frontend"
521
 
522
+ #: .././admin/setup.php:45
523
  msgid "Tracking Code"
524
+ msgstr "Code de suivi"
525
 
526
+ #: .././admin/setup.php:159 .././admin/widgets.php:117 .././front/setup.php:71
527
  msgid "Today"
528
+ msgstr "Aujourd'hui"
529
 
530
+ #: .././admin/setup.php:160 .././admin/widgets.php:118 .././front/setup.php:72
531
  msgid "Yesterday"
532
  msgstr "Hier"
533
 
534
+ #: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
535
+ #: .././admin/setup.php:164 .././admin/widgets.php:119 .././admin/widgets.php:120
536
+ #: .././admin/widgets.php:121 .././admin/widgets.php:122 .././front/setup.php:73
537
+ #: .././front/setup.php:74 .././front/setup.php:75 .././front/setup.php:76
538
+ #: .././front/widgets.php:64 .././front/widgets.php:67 .././front/widgets.php:70
539
+ #: .././front/widgets.php:158 .././front/widgets.php:159 .././front/widgets.php:160
540
+ #, php-format
541
+ msgid "Last %d Days"
542
+ msgstr "%d derniers jours"
543
 
544
+ #: .././admin/setup.php:165 .././admin/setup.php:166 .././admin/widgets.php:123
545
+ #: .././admin/widgets.php:124 .././front/setup.php:77 .././front/setup.php:78
546
+ #, php-format
547
+ msgid "%s Year"
548
+ msgstr ""
549
 
550
+ #: .././admin/setup.php:165 .././admin/widgets.php:123 .././front/setup.php:77
551
+ msgid "One"
552
+ msgstr ""
553
 
554
+ #: .././admin/setup.php:166 .././admin/widgets.php:124 .././front/setup.php:78
555
+ msgid "Three"
556
  msgstr ""
557
 
558
+ #: .././admin/setup.php:169 .././admin/setup.php:185 .././front/setup.php:81
559
+ #: .././front/setup.php:97
560
+ msgid "Unique Views"
561
+ msgstr "Vues unique"
562
+
563
+ #: .././admin/setup.php:170 .././admin/setup.php:186 .././admin/widgets.php:130
564
+ #: .././admin/widgets.php:830 .././front/setup.php:82 .././front/setup.php:98
565
+ #: .././tools/gapi.php:358
566
  msgid "Users"
567
+ msgstr "Utilisateurs"
568
 
569
+ #: .././admin/setup.php:171 .././admin/widgets.php:131 .././front/setup.php:83
570
  msgid "Organic"
571
+ msgstr "Organiques"
572
 
573
+ #: .././admin/setup.php:172 .././admin/setup.php:187 .././admin/widgets.php:132
574
+ #: .././admin/widgets.php:834 .././front/setup.php:84 .././front/setup.php:99
575
+ #: .././tools/gapi.php:361
576
  msgid "Page Views"
577
  msgstr "Pages vues"
578
 
579
+ #: .././admin/setup.php:173 .././admin/setup.php:188 .././admin/widgets.php:133
580
+ #: .././admin/widgets.php:838 .././front/setup.php:85 .././front/setup.php:100
581
+ #: .././tools/gapi.php:364
582
  msgid "Bounce Rate"
583
+ msgstr "Taux de rebond"
584
 
585
+ #: .././admin/setup.php:174 .././admin/widgets.php:134 .././front/setup.php:86
586
  msgid "Location"
587
+ msgstr "Lieu"
588
 
589
+ #: .././admin/setup.php:175 .././admin/widgets.php:136 .././front/setup.php:87
590
+ #: .././tools/gapi.php:503
591
  msgid "Referrers"
592
+ msgstr "Référence"
593
 
594
+ #: .././admin/setup.php:176 .././admin/widgets.php:137 .././front/setup.php:88
595
+ #: .././tools/gapi.php:536
596
  msgid "Searches"
597
+ msgstr "Recherches"
598
 
599
+ #: .././admin/setup.php:177 .././admin/widgets.php:138 .././front/setup.php:89
600
  msgid "Traffic Details"
601
+ msgstr "Détails du trafic"
602
 
603
+ #: .././admin/setup.php:180 .././admin/widgets.php:505 .././admin/widgets.php:590
604
+ #: .././admin/widgets.php:757 .././admin/widgets.php:861 .././front/setup.php:92
 
605
  msgid "A JavaScript Error is blocking plugin resources!"
606
+ msgstr "Une erreur JavaScript bloque les ressources du plugin !"
607
 
608
+ #: .././admin/setup.php:181 .././admin/widgets.php:681 .././front/setup.php:93
609
  msgid "Traffic Mediums"
610
+ msgstr "Traffic Moyen"
611
 
612
+ #: .././admin/setup.php:182 .././admin/widgets.php:696 .././front/setup.php:94
613
  msgid "Visitor Type"
614
+ msgstr "Type de visiteur"
615
 
616
+ #: .././admin/setup.php:183 .././admin/widgets.php:711 .././front/setup.php:95
617
  msgid "Social Networks"
618
+ msgstr "Réseaux Sociaux"
619
 
620
+ #: .././admin/setup.php:184 .././admin/widgets.php:726 .././front/setup.php:96
621
  msgid "Search Engines"
622
+ msgstr "Moteur de recherche"
623
 
624
+ #: .././admin/setup.php:189 .././admin/widgets.php:842 .././front/setup.php:101
625
  msgid "Organic Search"
626
+ msgstr "Recherche Organique"
627
 
628
+ #: .././admin/setup.php:190 .././admin/widgets.php:846 .././front/setup.php:102
629
  msgid "Pages/Session"
630
+ msgstr "Pages/Session"
631
+
632
+ #: .././admin/setup.php:191 .././admin/widgets.php:517 .././admin/widgets.php:531
633
+ #: .././admin/widgets.php:541 .././admin/widgets.php:602 .././admin/widgets.php:616
634
+ #: .././admin/widgets.php:630 .././admin/widgets.php:644 .././admin/widgets.php:658
635
+ #: .././admin/widgets.php:668 .././admin/widgets.php:770 .././admin/widgets.php:782
636
+ #: .././admin/widgets.php:873 .././admin/widgets.php:887 .././admin/widgets.php:897
637
+ #: .././front/setup.php:103
 
638
  msgid "Invalid response, more details in JavaScript Console (F12)."
639
+ msgstr "Réponse non valide, plus de détails dans la Console JavaScript (F12)."
640
 
641
+ #: .././admin/setup.php:192 .././front/setup.php:104
642
  msgid "Not enough data collected"
643
+ msgstr "Pas assez de données collectées"
644
 
645
+ #: .././admin/setup.php:193 .././admin/widgets.php:522 .././admin/widgets.php:536
646
+ #: .././admin/widgets.php:607 .././admin/widgets.php:621 .././admin/widgets.php:635
647
+ #: .././admin/widgets.php:649 .././admin/widgets.php:663 .././admin/widgets.php:775
648
+ #: .././admin/widgets.php:777 .././admin/widgets.php:878 .././admin/widgets.php:892
649
+ #: .././front/setup.php:105 .././front/widgets.php:100
 
 
 
650
  msgid "This report is unavailable"
651
+ msgstr "Ce rapport n'est pas disponible"
652
 
653
+ #: .././admin/setup.php:194 .././front/setup.php:106
654
  msgid "report generated by"
655
+ msgstr "rapport générée par"
656
 
657
+ #: .././admin/setup.php:225
658
  msgid "Settings"
659
+ msgstr "Paramètres"
660
 
661
+ #: .././admin/setup.php:237
662
+ #, php-format
663
+ msgid "Google Analytics Dashboard for WP has been updated to version %s."
664
+ msgstr ""
665
+
666
+ #: .././admin/setup.php:237
667
+ #, php-format
668
+ msgid "For details, check out %1$s and %2$s."
669
+ msgstr ""
670
+
671
+ #: .././admin/setup.php:237
672
+ msgid "the documentation page"
673
+ msgstr ""
674
+
675
+ #: .././admin/setup.php:237
676
+ msgid "the plugin&#39;s settings page"
677
+ msgstr ""
678
+
679
+ #: .././admin/widgets.php:27 .././front/widgets.php:21
680
  msgid "Google Analytics Dashboard"
681
+ msgstr "Tableau de bord Google Analytics "
682
 
683
+ #: .././admin/widgets.php:32
684
  msgid "This plugin needs an authorization:"
685
+ msgstr "Ce plugin a besoin d'une autorisation :"
686
 
687
+ #: .././admin/widgets.php:66
688
  msgid "Something went wrong while retrieving profiles list."
689
+ msgstr "Quelque chose s'est mal passé lors de la récupération des profils."
 
 
690
 
691
+ #: .././admin/widgets.php:66
692
  msgid "More details"
693
+ msgstr "Plus de détails"
694
 
695
+ #: .././admin/widgets.php:79 .././admin/widgets.php:90
696
  msgid "An admin should asign a default Google Analytics Profile."
697
+ msgstr "Un admin doit être assigné par défaut au profil Google Analytics."
698
 
699
+ #: .././admin/widgets.php:79 .././admin/widgets.php:90
700
  msgid "Select Domain"
701
+ msgstr "Sélectionnez le domaine"
702
 
703
+ #: .././admin/widgets.php:95
704
  msgid ""
705
+ "Something went wrong while retrieving property data. You need to create and properly configure a "
706
+ "Google Analytics account:"
707
  msgstr ""
708
+ "Quelque chose s'est mal passé lors de la récupération des données de propriété. Vous devez créer "
709
+ "et configurer un compte Google Analytics :"
 
710
 
711
+ #: .././admin/widgets.php:95
712
  msgid "Find out more!"
713
+ msgstr "Plus d'informations!"
714
 
715
+ #: .././admin/widgets.php:116
716
  msgid "Real-Time"
717
+ msgstr "Temps réel"
718
 
719
+ #: .././admin/widgets.php:129 .././admin/widgets.php:826 .././front/widgets.php:36
720
+ #: .././tools/gapi.php:373 .././tools/gapi.php:503 .././tools/gapi.php:536 .././tools/gapi.php:586
721
+ #: .././tools/gapi.php:666 .././tools/gapi.php:695
 
 
 
 
 
 
722
  msgid "Sessions"
723
+ msgstr "Sessions"
724
 
725
+ #: .././admin/widgets.php:135 .././tools/gapi.php:471
726
  msgid "Pages"
727
+ msgstr "Pages"
728
 
729
+ #: .././admin/widgets.php:236 .././admin/widgets.php:478
730
  msgid "REFERRAL"
731
+ msgstr "RÉFÉRENCE"
732
 
733
+ #: .././admin/widgets.php:240 .././admin/widgets.php:479
734
  msgid "ORGANIC"
735
  msgstr "ORGANIQUE"
736
 
737
+ #: .././admin/widgets.php:244 .././admin/widgets.php:364 .././admin/widgets.php:480
 
738
  msgid "SOCIAL"
739
  msgstr "SOCIAL"
740
 
741
+ #: .././admin/widgets.php:248 .././admin/widgets.php:367 .././admin/widgets.php:481
 
742
  msgid "CAMPAIGN"
743
+ msgstr "CAMPAGNE"
744
 
745
+ #: .././admin/widgets.php:252 .././admin/widgets.php:370 .././admin/widgets.php:484
 
746
  msgid "DIRECT"
747
  msgstr "DIRECT"
748
 
749
+ #: .././admin/widgets.php:256 .././admin/widgets.php:485
750
  msgid "NEW"
751
  msgstr "NOUVEAU"
752
 
753
+ #: .././admin/widgets.php:358
754
  msgid "REFERRALS"
755
  msgstr "RÉFÉRENCES"
756
 
757
+ #: .././admin/widgets.php:361
758
  msgid "KEYWORDS"
759
  msgstr "MOTS-CLÉS"
760
 
761
+ #: .././front/widgets.php:21
 
 
 
 
 
 
 
 
762
  msgid "Will display your google analytics stats in a widget"
763
+ msgstr "Affiche vos statistiques de Google Analytics dans un widget"
764
 
765
+ #: .././front/widgets.php:36 .././tools/gapi.php:695
766
  msgid "trend"
767
+ msgstr "tendances"
768
 
769
+ #: .././front/widgets.php:123
770
  msgid "Period:"
771
+ msgstr "Période :"
772
 
773
+ #: .././front/widgets.php:123
774
  msgid "Sessions:"
775
+ msgstr "Sessions :"
776
 
777
+ #: .././front/widgets.php:127
778
  msgid "generated by"
779
+ msgstr "Généré par"
780
 
781
+ #: .././front/widgets.php:136
782
  msgid "Google Analytics Stats"
783
+ msgstr "Stats Google Analytics"
784
 
785
+ #: .././front/widgets.php:144
786
  msgid "Title:"
787
+ msgstr "Titre :"
788
 
789
+ #: .././front/widgets.php:147
790
  msgid "Display:"
791
+ msgstr "Afficher :"
792
 
793
+ #: .././front/widgets.php:148
794
  msgid "Chart & Totals"
795
+ msgstr "Graphique & Total"
796
 
797
+ #: .././front/widgets.php:149
798
  msgid "Chart"
799
+ msgstr "Graphique"
800
 
801
+ #: .././front/widgets.php:150
802
  msgid "Totals"
803
+ msgstr "Total"
804
 
805
+ #: .././front/widgets.php:154
806
  msgid "Anonymize stats:"
807
+ msgstr "Stats anonymes :"
808
 
809
+ #: .././front/widgets.php:157
810
  msgid "Stats for:"
811
+ msgstr "Stats pour :"
812
 
813
+ #: .././front/widgets.php:164
814
  msgid "Give credits:"
815
+ msgstr "Donner des crédits :"
816
 
817
+ #: .././gadwp.php:46 .././gadwp.php:54 .././gadwp.php:61
818
  msgid "This is not allowed, read the documentation!"
819
+ msgstr "Cela ne me convient pas, lisez la documentation !"
820
 
821
+ #: .././tools/gapi.php:128
822
  msgid "Use this link to get your access code:"
823
  msgstr "Utilisez ce lien pour obtenir votre code d&#39;accès:"
824
 
825
+ #: .././tools/gapi.php:128
826
  msgid "Get Access Code"
827
  msgstr "Obtenir le code d&#39;accès"
828
 
829
+ #: .././tools/gapi.php:132 .././tools/gapi.php:133
830
  msgid "Use the red link to get your access code!"
831
+ msgstr "Utilisez le lien rouge pour obtenir votre code d&#39;accès!"
832
 
833
+ #: .././tools/gapi.php:132
834
  msgid "Access Code:"
835
+ msgstr "Code d'accès:"
836
 
837
+ #: .././tools/gapi.php:139
838
  msgid "Save Access Code"
839
+ msgstr "Sauvegarder code d&#39;accès"
840
 
841
+ #: .././tools/gapi.php:367
842
  msgid "Organic Searches"
843
+ msgstr "Recherches organiques"
844
 
845
+ #: .././tools/gapi.php:370
846
  msgid "Unique Page Views"
847
+ msgstr "Pages vues unique"
848
 
849
+ #: .././tools/gapi.php:378
850
  msgid "Hour"
851
  msgstr "Heure"
852
 
853
+ #: .././tools/gapi.php:382 .././tools/gapi.php:385 .././tools/gapi.php:695
854
  msgid "Date"
855
  msgstr "Date"
856
 
857
+ #: .././tools/gapi.php:471
858
  msgid "Views"
859
  msgstr "Vues"
860
 
861
+ #: .././tools/gapi.php:557
862
  msgid "Countries"
863
+ msgstr "Pays"
864
 
865
+ #: .././tools/gapi.php:567
866
  msgid "Cities from"
867
+ msgstr "Villes de"
868
 
869
+ #: .././tools/gapi.php:620
870
  msgid "Channels"
871
+ msgstr "Canaux"
872
 
873
+ #: .././tools/gapi.php:666
874
  msgid "Type"
875
  msgstr "Type"
876
 
877
+ #~ msgid "Last 7 Days"
878
+ #~ msgstr "7 derniers jours"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
879
 
880
+ #~ msgid "Last 30 Days"
881
+ #~ msgstr "30 derniers jours"
882
 
883
+ #~ msgid "Last 90 Days"
884
+ #~ msgstr "90 derniers jours"
885
 
886
+ #~ msgid "Last 14 Days"
887
+ #~ msgstr "14 derniers jours"
 
888
 
889
+ #~ msgid "Read %s for more information about Frontend Features and Options."
890
+ #~ msgstr "Lire %s pour plus d'informations sur les options et fonctionnalités du Frondend."
891
 
892
+ #~ msgid "this documentation page"
893
+ #~ msgstr "Cette page de documentation"
894
 
895
+ #~ msgid "show page sessions and users in frontend (after each article)"
896
+ #~ msgstr "Voir la page séances et utilisateurs en frontend (après chaque article)"
897
 
898
+ #~ msgid "show page searches (after each article)"
899
+ #~ msgstr "Voir la page recherches (après chaque article)"
900
 
901
+ #~ msgid "Read %s for more information about Backend Features and Options."
902
+ #~ msgstr "Lire %s pour plus d'informations sur les options et fonctionnalités du Backend."
903
 
904
+ #~ msgid "For more information about Tracking Options read %s."
905
+ #~ msgstr "Pour plus d'informations sur les options de suivi, lire %s."
 
906
 
907
+ #~ msgid "For errors and/or other issues check %s and related resources."
908
+ #~ msgstr "Pour les autres problèmes ou des erreurs Vérifiez %s et les ressources connexes."
909
 
910
+ #~ msgid "Support & Reviews"
911
+ #~ msgstr "Support & commentaires"
912
 
913
+ #~ msgid "Plugin documentation and support on %s"
914
+ #~ msgstr "Documentation du plugin et l'aide sur %s"
915
 
916
+ #~ msgid "Views vs UniqueViews"
917
+ #~ msgstr "Vues vs VuesUnique"
918
 
919
+ #~ msgid "Google Analytics Reports"
920
+ #~ msgstr "Rapports Google Analytics"
921
 
922
+ #~ msgid "UniqueViews"
923
+ #~ msgstr "VuesUnique"
 
 
 
 
languages/ga-dash-hu_HU.mo CHANGED
Binary file
languages/ga-dash-hu_HU.po CHANGED
@@ -3,121 +3,116 @@ msgstr ""
3
  "Project-Id-Version: Google Analytics Dashboard for WP 4.7.2\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-"
5
  "dashboard-for-wp\n"
6
- "POT-Creation-Date: 2015-05-21 19:46+0200\n"
7
- "PO-Revision-Date: 2015-05-21 19:46+0200\n"
8
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
9
  "Language-Team: I love WordPress <info@ilovewp.net>\n"
10
  "Language: hu_HU\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
- "X-Generator: Poedit 1.8\n"
15
- "X-Poedit-KeywordsList: _e;__\n"
16
  "X-Poedit-Basepath: .\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
  "X-Poedit-SearchPath-0: ../.\n"
20
 
21
- #: .././admin/item-reports.php:52
22
  msgid "Analytics"
23
  msgstr "Statisztika"
24
 
25
- #: .././admin/settings.php:94 .././admin/settings.php:197
26
- #: .././admin/settings.php:328 .././admin/settings.php:803
27
- #: .././admin/settings.php:1079
28
  msgid "Settings saved."
29
  msgstr "Beállítások mentve."
30
 
31
- #: .././admin/settings.php:96 .././admin/settings.php:199
32
- #: .././admin/settings.php:330 .././admin/settings.php:780
33
- #: .././admin/settings.php:790 .././admin/settings.php:799
34
- #: .././admin/settings.php:805 .././admin/settings.php:817
35
- #: .././admin/settings.php:1040 .././admin/settings.php:1065
36
- #: .././admin/settings.php:1075 .././admin/settings.php:1081
37
- #: .././admin/settings.php:1093
38
  msgid "Cheating Huh?"
39
  msgstr "Csalás Huh?"
40
 
41
- #: .././admin/settings.php:100 .././admin/settings.php:203
42
- #: .././admin/settings.php:334 .././admin/settings.php:647
43
- #: .././admin/settings.php:832 .././admin/settings.php:1107
44
  #, php-format
45
  msgid "Something went wrong, check %1$s or %2$s."
46
  msgstr "Valami rosszul ment, tekintse meg itt: %1$s vagy %2$s."
47
 
48
- #: .././admin/settings.php:100 .././admin/settings.php:203
49
- #: .././admin/settings.php:334 .././admin/settings.php:647
50
- #: .././admin/settings.php:832 .././admin/settings.php:1107
51
- #: .././admin/setup.php:82 .././admin/setup.php:101
52
  msgid "Errors & Debug"
53
  msgstr "Hibák és hibakeresés"
54
 
55
- #: .././admin/settings.php:100 .././admin/settings.php:203
56
- #: .././admin/settings.php:334 .././admin/settings.php:647
57
- #: .././admin/settings.php:832 .././admin/settings.php:1107
58
  msgid "authorize the plugin"
59
  msgstr "engedélyezze a bővítményt"
60
 
61
- #: .././admin/settings.php:105
62
  msgid "Google Analytics Frontend Settings"
63
  msgstr "Google Analytics weblap beállítások"
64
 
65
- #: .././admin/settings.php:115 .././admin/settings.php:218
66
  msgid "Permissions"
67
  msgstr "Jogosultságok"
68
 
69
- #: .././admin/settings.php:118 .././admin/settings.php:221
70
  msgid "Show stats to:"
71
  msgstr "Statisztikák megjelenítése:"
72
 
73
- #: .././admin/settings.php:157
74
- msgid "show page sessions and users in frontend (after each article)"
75
  msgstr ""
76
- "munkamenetek és felhasználók megjelenítése a frontenden (minden cikk után)"
77
 
78
- #: .././admin/settings.php:168
79
- msgid "show page searches (after each article)"
80
- msgstr "keresés megjelenítése (minden cikk után)"
81
-
82
- #: .././admin/settings.php:175 .././admin/settings.php:308
83
- #: .././admin/settings.php:605 .././admin/settings.php:952
84
- #: .././admin/settings.php:1245
85
  msgid "Save Changes"
86
  msgstr "Beállítások mentése"
87
 
88
- #: .././admin/settings.php:208
89
  msgid "Google Analytics Backend Settings"
90
  msgstr "Google Analytics admin beállítások"
91
 
92
- #: .././admin/settings.php:262
93
  msgid "enable Switch View functionality"
94
  msgstr "nézet átkapcsolásának engedélyezése"
95
 
96
- #: .././admin/settings.php:273
97
  msgid "enable reports on Posts List and Pages List"
98
  msgstr "jelentések engedélyezése a Bejegyzés és Oldalak lista nézetében"
99
 
100
- #: .././admin/settings.php:284
101
  msgid "enable the main Dashboard Widget"
102
  msgstr "fő vezérlőpult widget engedélyezése"
103
 
104
- #: .././admin/settings.php:288
105
  msgid "Real-Time Settings"
106
  msgstr "Valós idejű beállítások"
107
 
108
- #: .././admin/settings.php:291
109
  msgid "Maximum number of pages to display on real-time tab:"
110
  msgstr "Maximális oldalszám megjelenítése a valós idejű fülön:"
111
 
112
- #: .././admin/settings.php:296
113
  msgid "Location Settings"
114
  msgstr "Helybeállítások"
115
 
116
- #: .././admin/settings.php:300
117
  msgid "Target Geo Map to country:"
118
  msgstr "Cél földrajzi térkép (ország):"
119
 
120
- #: .././admin/settings.php:337
121
  msgid ""
122
  "The tracking component is disabled. You should set <strong>Tracking Options</"
123
  "strong> to <strong>Enabled</strong>"
@@ -125,188 +120,188 @@ msgstr ""
125
  "A követés le van tiltva. Kapcsolja át a <strong>Követési opciók</strong>-at "
126
  "<strong>Engedélyezve</strong>-re"
127
 
128
- #: .././admin/settings.php:342
129
  msgid "Google Analytics Tracking Code"
130
  msgstr "Google Analytics követőkód"
131
 
132
- #: .././admin/settings.php:351
133
  msgid "Basic Settings"
134
  msgstr "Alapbeállítások"
135
 
136
- #: .././admin/settings.php:352 .././admin/settings.php:417
137
  msgid "Events Tracking"
138
  msgstr "Események követése"
139
 
140
- #: .././admin/settings.php:353 .././admin/settings.php:465
141
  msgid "Custom Definitions"
142
  msgstr "Egyéni meghatározások"
143
 
144
- #: .././admin/settings.php:354 .././admin/settings.php:563
145
- #: .././admin/settings.php:1228
146
  msgid "Exclude Tracking"
147
  msgstr "Követés kizárás"
148
 
149
- #: .././admin/settings.php:355
150
  msgid "Advanced Settings"
151
  msgstr "Speciális beállítások"
152
 
153
- #: .././admin/settings.php:362
154
  msgid "Tracking Settings"
155
  msgstr "Követési beállítások"
156
 
157
- #: .././admin/settings.php:365
158
  msgid "Tracking Options:"
159
  msgstr "Követési opciók:"
160
 
161
- #: .././admin/settings.php:367
162
  msgid "Disabled"
163
  msgstr "Letiltva"
164
 
165
- #: .././admin/settings.php:368
166
  msgid "Enabled"
167
  msgstr "Engedélyezve"
168
 
169
- #: .././admin/settings.php:376 .././admin/settings.php:897
170
- #: .././admin/settings.php:919 .././admin/settings.php:1201
171
- #: .././admin/widgets.php:71
172
  msgid "View Name:"
173
  msgstr "Nézet neve:"
174
 
175
- #: .././admin/settings.php:376 .././admin/settings.php:919
176
  msgid "Tracking ID:"
177
  msgstr "Követési azonosító:"
178
 
179
- #: .././admin/settings.php:376 .././admin/settings.php:919
180
  msgid "Default URL:"
181
  msgstr "Alapértelmezett webcím:"
182
 
183
- #: .././admin/settings.php:376 .././admin/settings.php:919
184
  msgid "Time Zone:"
185
  msgstr "Időzóna:"
186
 
187
- #: .././admin/settings.php:381
188
  msgid "Basic Tracking"
189
  msgstr "Alapszintű követés"
190
 
191
- #: .././admin/settings.php:384
192
  msgid "Tracking Type:"
193
  msgstr "Követés típusa:"
194
 
195
- #: .././admin/settings.php:386
196
  msgid "Classic Analytics"
197
  msgstr "Klasszikus"
198
 
199
- #: .././admin/settings.php:387
200
  msgid "Universal Analytics"
201
  msgstr "Univerzális"
202
 
203
- #: .././admin/settings.php:398
204
  msgid "anonymize IPs while tracking"
205
  msgstr "IP címek anonimizálása követés közben"
206
 
207
- #: .././admin/settings.php:409
208
  msgid "enable remarketing, demographics and interests reports"
209
  msgstr ""
210
  "remarketing, demográfiai és érdeklődési területekre vonatkozó jelentések "
211
  "engedélyezése"
212
 
213
- #: .././admin/settings.php:427
214
  msgid "track downloads, mailto and outbound links"
215
  msgstr "letöltések, mailto (email) és kimenő linkek követése"
216
 
217
- #: .././admin/settings.php:431
218
  msgid "Downloads Regex:"
219
  msgstr "Letöltés regex:"
220
 
221
- #: .././admin/settings.php:442
222
  msgid "track affiliate links matching this regex"
223
  msgstr "partner linkek követése ennek a regexnek megfelelően"
224
 
225
- #: .././admin/settings.php:446
226
  msgid "Affiliates Regex:"
227
  msgstr "Partner regex:"
228
 
229
- #: .././admin/settings.php:457
230
  msgid "track fragment identifiers, hashmarks (#) in URI links"
231
  msgstr "töredékazonosítók követése, hashmark (#) az URI linkekben"
232
 
233
- #: .././admin/settings.php:468
234
  msgid "Authors:"
235
  msgstr "Szerzők:"
236
 
237
- #: .././admin/settings.php:476
238
  msgid "Publication Year:"
239
  msgstr "Megjelenés éve:"
240
 
241
- #: .././admin/settings.php:484
242
  msgid "Categories:"
243
  msgstr "Kategóriák:"
244
 
245
- #: .././admin/settings.php:492
246
  msgid "User Type:"
247
  msgstr "Felhasználó típus:"
248
 
249
- #: .././admin/settings.php:504
250
  msgid "Advanced Tracking"
251
  msgstr "Haladó követés"
252
 
253
- #: .././admin/settings.php:507
254
  msgid "Page Speed SR:"
255
  msgstr "Page Speed SR:"
256
 
257
- #: .././admin/settings.php:518
258
  msgid "exclude events from bounce-rate calculation"
259
  msgstr "események kizárása a visszafordulási arány kiszámításából"
260
 
261
- #: .././admin/settings.php:529
262
  msgid "enable enhanced link attribution"
263
  msgstr "speciális linkhozzárendelés használatának engedélyezése"
264
 
265
- #: .././admin/settings.php:540
266
  msgid "enable AdSense account linking"
267
  msgstr "AdSense fiók összekapcsolás engedélyezése"
268
 
269
- #: .././admin/settings.php:551
270
  msgid "enable cross domain tracking"
271
  msgstr "cross domain követés engedélyezése"
272
 
273
- #: .././admin/settings.php:555
274
  msgid "Cross Domains:"
275
  msgstr "Cross domainek:"
276
 
277
- #: .././admin/settings.php:566
278
  msgid "Exclude tracking for:"
279
  msgstr "Követés kizárása a következőkre:"
280
 
281
- #: .././admin/settings.php:651
282
  msgid "Google Analytics Errors & Debugging"
283
  msgstr "Google Analytics hibák és hibakeresés"
284
 
285
- #: .././admin/settings.php:661
286
  msgid "Errors & Details"
287
  msgstr "Hibák és részletek"
288
 
289
- #: .././admin/settings.php:662
290
  msgid "Plugin Settings"
291
  msgstr "Bővítmény beállítások"
292
 
293
- #: .././admin/settings.php:670
294
  msgid "Last Error detected"
295
  msgstr "Utolsó észlelt hiba"
296
 
297
- #: .././admin/settings.php:676 .././admin/settings.php:689
298
  msgid "None"
299
  msgstr "Semmi"
300
 
301
- #: .././admin/settings.php:683
302
  msgid "Error Details"
303
  msgstr "Hiba részletek"
304
 
305
- #: .././admin/settings.php:703
306
  msgid "Plugin Configuration"
307
  msgstr "Bővítmény beállítások"
308
 
309
- #: .././admin/settings.php:725 .././admin/settings.php:990
310
  msgid ""
311
  "Loading the required libraries. If this results in a blank screen or a fatal "
312
  "error, try this solution:"
@@ -314,15 +309,15 @@ msgstr ""
314
  "A szükséges könyvtárak betöltése. Ha az eredmény egy üres képernyő vagy "
315
  "végzetes hiba, próbálja ki ezt a megoldást:"
316
 
317
- #: .././admin/settings.php:725
318
  msgid "Library conflicts between WordPress plugins"
319
  msgstr "WordPress bővítmények közötti ütközés"
320
 
321
- #: .././admin/settings.php:740 .././admin/settings.php:1007
322
  msgid "Plugin authorization succeeded."
323
  msgstr "Bővítmény engedélyezése sikeres."
324
 
325
- #: .././admin/settings.php:755 .././admin/settings.php:1031
326
  msgid ""
327
  "The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
328
  "(UA-XXXXX-X). Try again, and use the red link to get your access code"
@@ -331,37 +326,37 @@ msgstr ""
331
  "strong> (UA-XXXXX-X). Próbálja újból, és használja a piros linket, hogy a "
332
  "hozzáférési kódot megkapja"
333
 
334
- #: .././admin/settings.php:778 .././admin/settings.php:1063
335
  msgid "Cleared Cache."
336
  msgstr "Cache kiürítve."
337
 
338
- #: .././admin/settings.php:787 .././admin/settings.php:1072
339
  msgid "Token Reseted and Revoked."
340
  msgstr "Token visszaállítva és visszavonva."
341
 
342
- #: .././admin/settings.php:797
343
  msgid "All errors reseted."
344
  msgstr "Összes hiba törölve."
345
 
346
- #: .././admin/settings.php:810 .././admin/settings.php:1086
347
  msgid "All other domains/properties were removed."
348
  msgstr "Összes többi domain/tulajdon eltávolításra került."
349
 
350
- #: .././admin/settings.php:822 .././admin/settings.php:1098
351
  msgid "Google Analytics Settings"
352
  msgstr "Google Analytics beállítások"
353
 
354
- #: .././admin/settings.php:837 .././admin/settings.php:1112
355
  msgid "Use the red link (see below) to generate and get your access code!"
356
  msgstr ""
357
  "Használja a piros linket (lásd alul), hogy a hozzáférési kódot legenerálja "
358
  "és megkapja!"
359
 
360
- #: .././admin/settings.php:848 .././admin/settings.php:1140
361
  msgid "Plugin Authorization"
362
  msgstr "Bővítmény engedélyezése"
363
 
364
- #: .././admin/settings.php:853 .././admin/settings.php:1144
365
  #, php-format
366
  msgid ""
367
  "You should watch the %1$s and read this %2$s before proceeding to "
@@ -372,114 +367,109 @@ msgstr ""
372
  "Ezt a bővítményt csak helyesen beállított Google Analytics fiókkal lehet "
373
  "használni!"
374
 
375
- #: .././admin/settings.php:853 .././admin/settings.php:1144
376
  msgid "video"
377
  msgstr "videót"
378
 
379
- #: .././admin/settings.php:853 .././admin/settings.php:1144
380
  msgid "tutorial"
381
  msgstr "útmutatót"
382
 
383
- #: .././admin/settings.php:858 .././admin/settings.php:1151
384
  msgid "use your own API Project credentials"
385
  msgstr "saját API Project adatainak használata"
386
 
387
- #: .././admin/settings.php:863 .././admin/settings.php:1159
388
  msgid "API Key:"
389
  msgstr "API key:"
390
 
391
- #: .././admin/settings.php:867 .././admin/settings.php:1163
392
  msgid "Client ID:"
393
  msgstr "Client ID:"
394
 
395
- #: .././admin/settings.php:871 .././admin/settings.php:1167
396
  msgid "Client Secret:"
397
  msgstr "Client Secret:"
398
 
399
- #: .././admin/settings.php:881 .././admin/settings.php:1177
400
  msgid "Clear Authorization"
401
  msgstr "Engedélyezés törlése"
402
 
403
- #: .././admin/settings.php:881 .././admin/settings.php:959
404
- #: .././admin/settings.php:1177 .././admin/settings.php:1254
405
  msgid "Clear Cache"
406
  msgstr "Cache ürítése"
407
 
408
- #: .././admin/settings.php:881
409
  msgid "Reset Errors"
410
  msgstr "Hibák törlése"
411
 
412
- #: .././admin/settings.php:887 .././admin/setup.php:70 .././admin/setup.php:98
413
  msgid "General Settings"
414
  msgstr "Általános beállítások"
415
 
416
- #: .././admin/settings.php:890
417
  msgid "Select View:"
418
  msgstr "Nézet kiválasztása:"
419
 
420
- #: .././admin/settings.php:901 .././admin/settings.php:1205
421
  msgid "Property not found"
422
  msgstr "Tulajdon nem található"
423
 
424
- #: .././admin/settings.php:907
425
  msgid "Lock Selection"
426
  msgstr "Kiválasztás zárolása"
427
 
428
- #: .././admin/settings.php:926
429
  msgid "Theme Color:"
430
  msgstr "Téma színe:"
431
 
432
- #: .././admin/settings.php:934 .././admin/settings.php:1214
433
  msgid "Automatic Updates"
434
  msgstr "Automatikus frissítések"
435
 
436
- #: .././admin/settings.php:944 .././admin/settings.php:1224
437
  msgid ""
438
  "automatic updates for minor versions (security and maintenance releases only)"
439
  msgstr ""
440
  "alverziók automatikus frissítései (csak biztonsági és karbantartási kiadások)"
441
 
442
- #: .././admin/settings.php:959 .././admin/settings.php:1254
443
- #: .././admin/widgets.php:42
444
  msgid "Authorize Plugin"
445
  msgstr "Bővítmény engedélyezése"
446
 
447
- #: .././admin/settings.php:1037
448
  msgid "Properties refreshed."
449
  msgstr "Tulajdon frissítve."
450
 
451
- #: .././admin/settings.php:1122
452
  msgid "Network Setup"
453
  msgstr "Hálózat beállítása"
454
 
455
- #: .././admin/settings.php:1132
456
  msgid "use a single Google Analytics account for the entire network"
457
  msgstr "egy Google Analytics fiókot használjon a teljes hálózaton"
458
 
459
- #: .././admin/settings.php:1177
460
  msgid "Refresh Properties"
461
  msgstr "Tulajdon frissítése"
462
 
463
- #: .././admin/settings.php:1183
464
  msgid "Properties/Views Settings"
465
  msgstr "Tulajdon/Nézet beállítások"
466
 
467
- #: .././admin/settings.php:1238
468
  msgid "exclude Super Admin tracking for the entire network"
469
  msgstr "Super Admin követésének kizárása a teljes hálózaton"
470
 
471
- #: .././admin/settings.php:1285
472
  msgid "Setup Tutorial & Demo"
473
  msgstr "Telepítési útmutató és demo"
474
 
475
- #: .././admin/settings.php:1293
476
- msgid "Support & Reviews"
477
- msgstr "Támogatás és vélemények"
478
-
479
- #: .././admin/settings.php:1300
480
- #, php-format
481
- msgid "Plugin documentation and support on %s"
482
- msgstr "Bővítmény dokumentáció és támogatás: %s"
483
 
484
  #: .././admin/settings.php:1307
485
  #, php-format
@@ -534,177 +524,212 @@ msgstr "%s szolgáltatás felhasználói nyomkövetéssel IP szinten."
534
  msgid "Web Analytics"
535
  msgstr "Web Statisztika"
536
 
537
- #: .././admin/setup.php:67 .././admin/setup.php:95
538
  msgid "Google Analytics"
539
  msgstr "Google Analytics"
540
 
541
- #: .././admin/setup.php:73
542
  msgid "Backend Settings"
543
  msgstr "Admin beállítások"
544
 
545
- #: .././admin/setup.php:76
546
  msgid "Frontend Settings"
547
  msgstr "Weblap beállítások"
548
 
549
- #: .././admin/setup.php:79
550
  msgid "Tracking Code"
551
  msgstr "Követőkód"
552
 
553
- #: .././admin/setup.php:169 .././admin/widgets.php:126
554
  msgid "Today"
555
  msgstr "Ma"
556
 
557
- #: .././admin/setup.php:170 .././admin/widgets.php:127
558
  msgid "Yesterday"
559
  msgstr "Tegnap"
560
 
561
- #: .././admin/setup.php:171 .././admin/widgets.php:128
562
- #: .././front/widgets.php:74 .././front/widgets.php:182
563
- msgid "Last 7 Days"
564
- msgstr "Elmúlt 7 nap"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
565
 
566
- #: .././admin/setup.php:172 .././admin/widgets.php:130
567
- #: .././front/widgets.php:80 .././front/widgets.php:184
568
- msgid "Last 30 Days"
569
- msgstr "Elmúlt 30 nap"
570
 
571
- #: .././admin/setup.php:173 .././admin/widgets.php:131
572
- msgid "Last 90 Days"
573
- msgstr "Elmúlt 90 nap"
574
 
575
- #: .././admin/setup.php:175 .././admin/setup.php:190
 
576
  msgid "Unique Views"
577
  msgstr "Egyedi megtekintések"
578
 
579
- #: .././admin/setup.php:176 .././admin/setup.php:191
580
- #: .././admin/widgets.php:136 .././admin/widgets.php:875
581
- #: .././tools/gapi.php:391
582
  msgid "Users"
583
  msgstr "Felhasználók"
584
 
585
- #: .././admin/setup.php:177 .././admin/widgets.php:137
586
  msgid "Organic"
587
  msgstr "Organikus"
588
 
589
- #: .././admin/setup.php:178 .././admin/setup.php:192
590
- #: .././admin/widgets.php:138 .././admin/widgets.php:879
591
- #: .././tools/gapi.php:394
592
  msgid "Page Views"
593
  msgstr "Oldal megtekintések"
594
 
595
- #: .././admin/setup.php:179 .././admin/setup.php:193
596
- #: .././admin/widgets.php:139 .././admin/widgets.php:883
597
- #: .././tools/gapi.php:397
598
  msgid "Bounce Rate"
599
  msgstr "Visszafordulási arány"
600
 
601
- #: .././admin/setup.php:180 .././admin/widgets.php:140
602
  msgid "Location"
603
  msgstr "Hely"
604
 
605
- #: .././admin/setup.php:181 .././admin/widgets.php:142 .././tools/gapi.php:566
 
606
  msgid "Referrers"
607
  msgstr "Hivatkozók"
608
 
609
- #: .././admin/setup.php:182 .././admin/widgets.php:143 .././tools/gapi.php:612
610
- #: .././tools/gapi.php:918
611
  msgid "Searches"
612
  msgstr "Keresések"
613
 
614
- #: .././admin/setup.php:183 .././admin/widgets.php:144
615
  msgid "Traffic Details"
616
  msgstr "Forgalmi adatok"
617
 
618
- #: .././admin/setup.php:185 .././admin/widgets.php:510
619
- #: .././admin/widgets.php:607 .././admin/widgets.php:805
620
- #: .././admin/widgets.php:917 .././front/item-reports.php:97
621
  msgid "A JavaScript Error is blocking plugin resources!"
622
  msgstr "Egy JavaScript hiba blokkolja a bővítmény forrásait!"
623
 
624
- #: .././admin/setup.php:186 .././admin/widgets.php:713
625
  msgid "Traffic Mediums"
626
  msgstr "Forgalmi közeg"
627
 
628
- #: .././admin/setup.php:187 .././admin/widgets.php:729
629
  msgid "Visitor Type"
630
  msgstr "Látogató típus"
631
 
632
- #: .././admin/setup.php:188 .././admin/widgets.php:745
633
  msgid "Social Networks"
634
  msgstr "Közösségi hálózatok"
635
 
636
- #: .././admin/setup.php:189 .././admin/widgets.php:761
637
  msgid "Search Engines"
638
  msgstr "Keresőmotorok"
639
 
640
- #: .././admin/setup.php:194 .././admin/widgets.php:887
 
641
  msgid "Organic Search"
642
  msgstr "Organikus keresés"
643
 
644
- #: .././admin/setup.php:195 .././admin/widgets.php:891
 
645
  msgid "Pages/Session"
646
  msgstr "Oldal / munkamenet"
647
 
648
- #: .././admin/setup.php:196 .././admin/widgets.php:523
649
- #: .././admin/widgets.php:541 .././admin/widgets.php:620
650
- #: .././admin/widgets.php:638 .././admin/widgets.php:657
651
- #: .././admin/widgets.php:676 .././admin/widgets.php:696
652
- #: .././admin/widgets.php:819 .././admin/widgets.php:930
653
- #: .././admin/widgets.php:949 .././front/item-reports.php:109
654
- #: .././front/item-reports.php:128
 
655
  msgid "Invalid response, more details in JavaScript Console (F12)."
656
  msgstr "Érvénytelen válasz, további részletek a JavaScript Konzolban (F12)."
657
 
658
- #: .././admin/setup.php:197
659
  msgid "Not enough data collected"
660
  msgstr "Nincs elegendő összegyűjtött adat"
661
 
662
- #: .././admin/setup.php:198 .././admin/widgets.php:528
663
- #: .././admin/widgets.php:546 .././admin/widgets.php:625
664
- #: .././admin/widgets.php:643 .././admin/widgets.php:662
665
- #: .././admin/widgets.php:681 .././admin/widgets.php:701
666
- #: .././admin/widgets.php:824 .././admin/widgets.php:827
667
- #: .././admin/widgets.php:935 .././admin/widgets.php:954
668
- #: .././front/item-reports.php:114 .././front/item-reports.php:133
669
- #: .././front/widgets.php:110
670
  msgid "This report is unavailable"
671
  msgstr "Ez a jelentés nem elérhető"
672
 
673
- #: .././admin/setup.php:199
674
  msgid "report generated by"
675
  msgstr "jelentést generálta"
676
 
677
- #: .././admin/setup.php:233
678
  msgid "Settings"
679
  msgstr "Beállítások"
680
 
681
- #: .././admin/widgets.php:33 .././front/widgets.php:22
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
682
  msgid "Google Analytics Dashboard"
683
  msgstr "Google Analytics vezérlőpult"
684
 
685
- #: .././admin/widgets.php:42
686
  msgid "This plugin needs an authorization:"
687
  msgstr "Ennek a bővítménynek engedélyre van szüksége:"
688
 
689
- #: .././admin/widgets.php:76
690
  msgid "Something went wrong while retrieving profiles list."
691
  msgstr "Valami rosszul ment a profil lista lekérése közben."
692
 
693
- #: .././admin/widgets.php:76
694
  msgid "More details"
695
  msgstr "További részletek"
696
 
697
- #: .././admin/widgets.php:89 .././admin/widgets.php:100
698
  msgid "An admin should asign a default Google Analytics Profile."
699
  msgstr ""
700
  "Az alapértelmezett Google Analytics profilt egy adminisztrátornak kell "
701
  "kijelölnie."
702
 
703
- #: .././admin/widgets.php:89 .././admin/widgets.php:100
704
  msgid "Select Domain"
705
  msgstr "Domain kiválasztása"
706
 
707
- #: .././admin/widgets.php:105
708
  msgid ""
709
  "Something went wrong while retrieving property data. You need to create and "
710
  "properly configure a Google Analytics account:"
@@ -712,192 +737,209 @@ msgstr ""
712
  "Valami rosszul ment a tulajdon lekérése közben. Egy jól konfigurált Google "
713
  "Analytics fiókra van szüksége:"
714
 
715
- #: .././admin/widgets.php:105
716
  msgid "Find out more!"
717
  msgstr "Tudjon meg többet!"
718
 
719
- #: .././admin/widgets.php:125
720
  msgid "Real-Time"
721
  msgstr "Valós idejű"
722
 
723
- #: .././admin/widgets.php:129 .././front/widgets.php:77
724
- #: .././front/widgets.php:183
725
- msgid "Last 14 Days"
726
- msgstr "Elmúlt 14 nap"
727
-
728
- #: .././admin/widgets.php:135 .././admin/widgets.php:871
729
- #: .././front/widgets.php:46 .././tools/gapi.php:406 .././tools/gapi.php:567
730
- #: .././tools/gapi.php:613 .././tools/gapi.php:676 .././tools/gapi.php:786
731
- #: .././tools/gapi.php:827 .././tools/gapi.php:919
732
  msgid "Sessions"
733
  msgstr "Munkamenetek"
734
 
735
- #: .././admin/widgets.php:141 .././tools/gapi.php:521
736
  msgid "Pages"
737
  msgstr "Oldalak"
738
 
739
- #: .././admin/widgets.php:232 .././admin/widgets.php:472
740
  msgid "REFERRAL"
741
  msgstr "HIVATKOZÓ"
742
 
743
- #: .././admin/widgets.php:236 .././admin/widgets.php:473
744
  msgid "ORGANIC"
745
  msgstr "ORGANIKUS"
746
 
747
- #: .././admin/widgets.php:240 .././admin/widgets.php:360
748
- #: .././admin/widgets.php:474
749
  msgid "SOCIAL"
750
  msgstr "KÖZÖSSÉGI"
751
 
752
- #: .././admin/widgets.php:244 .././admin/widgets.php:363
753
- #: .././admin/widgets.php:475
754
  msgid "CAMPAIGN"
755
  msgstr "KAMPÁNY"
756
 
757
- #: .././admin/widgets.php:248 .././admin/widgets.php:366
758
- #: .././admin/widgets.php:478
759
  msgid "DIRECT"
760
  msgstr "KÖZVETLEN"
761
 
762
- #: .././admin/widgets.php:252 .././admin/widgets.php:479
763
  msgid "NEW"
764
  msgstr "ÚJ"
765
 
766
- #: .././admin/widgets.php:354
767
  msgid "REFERRALS"
768
  msgstr "HIVATKOZÓK"
769
 
770
- #: .././admin/widgets.php:357
771
  msgid "KEYWORDS"
772
  msgstr "KULCSSZAVAK"
773
 
774
- #: .././front/item-reports.php:143
775
- msgid "Views vs UniqueViews"
776
- msgstr "Megtekintések vs egyedi megtekintések"
777
-
778
- #: .././front/item-reports.php:193
779
- msgid "Google Analytics Reports"
780
- msgstr "Google Analytics jelentések"
781
-
782
- #: .././front/widgets.php:23
783
  msgid "Will display your google analytics stats in a widget"
784
  msgstr "Megjelenik a Google Analytics statisztika egy widgetben"
785
 
786
- #: .././front/widgets.php:46 .././tools/gapi.php:827
787
  msgid "trend"
788
  msgstr "trend"
789
 
790
- #: .././front/widgets.php:133
791
  msgid "Period:"
792
  msgstr "Időszak:"
793
 
794
- #: .././front/widgets.php:133
795
  msgid "Sessions:"
796
  msgstr "Munkamenetek:"
797
 
798
- #: .././front/widgets.php:137
799
  msgid "generated by"
800
  msgstr "által generált"
801
 
802
- #: .././front/widgets.php:147
803
  msgid "Google Analytics Stats"
804
  msgstr "Google Analytics statisztika"
805
 
806
- #: .././front/widgets.php:154
807
  msgid "Title:"
808
  msgstr "Cím:"
809
 
810
- #: .././front/widgets.php:161
811
  msgid "Display:"
812
  msgstr "Megjelenés:"
813
 
814
- #: .././front/widgets.php:165
815
  msgid "Chart & Totals"
816
  msgstr "Diagram és összegzés"
817
 
818
- #: .././front/widgets.php:166
819
  msgid "Chart"
820
  msgstr "Diagram"
821
 
822
- #: .././front/widgets.php:167
823
  msgid "Totals"
824
  msgstr "Összegzés"
825
 
826
- #: .././front/widgets.php:171
827
  msgid "Anonymize stats:"
828
  msgstr "Névtelen statisztika:"
829
 
830
- #: .././front/widgets.php:178
831
  msgid "Stats for:"
832
  msgstr "Statisztika:"
833
 
834
- #: .././front/widgets.php:188
835
  msgid "Give credits:"
836
  msgstr "Köszönet:"
837
 
838
- #: .././gadwp.php:46 .././gadwp.php:55 .././gadwp.php:63
839
  msgid "This is not allowed, read the documentation!"
840
  msgstr "Ez nem engedélyezett, olvassa el a dokumentációt!"
841
 
842
- #: .././tools/gapi.php:134
843
  msgid "Use this link to get your access code:"
844
  msgstr "Használja ezt a linket, hogy a hozzáférési kódot megkapja:"
845
 
846
- #: .././tools/gapi.php:134
847
  msgid "Get Access Code"
848
  msgstr "Hozzáférési kód beszerzése"
849
 
850
- #: .././tools/gapi.php:138 .././tools/gapi.php:139
851
  msgid "Use the red link to get your access code!"
852
  msgstr "Használja a piros linket, hogy a hozzáférési kódot megkapja!"
853
 
854
- #: .././tools/gapi.php:138
855
  msgid "Access Code:"
856
  msgstr "Hozzáférési kód:"
857
 
858
- #: .././tools/gapi.php:145
859
  msgid "Save Access Code"
860
  msgstr "Hozzáférési kód mentése"
861
 
862
- #: .././tools/gapi.php:400
863
  msgid "Organic Searches"
864
  msgstr "Organikus keresés"
865
 
866
- #: .././tools/gapi.php:403
867
  msgid "Unique Page Views"
868
  msgstr "Egyedi oldalmegtekintések"
869
 
870
- #: .././tools/gapi.php:411
871
  msgid "Hour"
872
  msgstr "Óra"
873
 
874
- #: .././tools/gapi.php:414 .././tools/gapi.php:826 .././tools/gapi.php:876
875
  msgid "Date"
876
  msgstr "Dátum"
877
 
878
- #: .././tools/gapi.php:522 .././tools/gapi.php:877
879
  msgid "Views"
880
  msgstr "Megtekintések"
881
 
882
- #: .././tools/gapi.php:640
883
  msgid "Countries"
884
  msgstr "Országok"
885
 
886
- #: .././tools/gapi.php:650
887
  msgid "Cities from"
888
  msgstr "Városok"
889
 
890
- #: .././tools/gapi.php:722
891
  msgid "Channels"
892
  msgstr "Csatornák"
893
 
894
- #: .././tools/gapi.php:785
895
  msgid "Type"
896
  msgstr "Típus"
897
 
898
- #: .././tools/gapi.php:878
899
- msgid "UniqueViews"
900
- msgstr "Egyedi megtekintések"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
901
 
902
  #~ msgid "Read %s for more information about Frontend Features and Options."
903
  #~ msgstr ""
3
  "Project-Id-Version: Google Analytics Dashboard for WP 4.7.2\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-"
5
  "dashboard-for-wp\n"
6
+ "POT-Creation-Date: 2015-07-05 16:08+0300\n"
7
+ "PO-Revision-Date: 2015-07-05 16:08+0300\n"
8
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
9
  "Language-Team: I love WordPress <info@ilovewp.net>\n"
10
  "Language: hu_HU\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Poedit 1.8.2\n"
15
+ "X-Poedit-KeywordsList: __;_e;_n;_x;_ex;_nx;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;esc_html_x;_n_noop;_nx_noop\n"
16
  "X-Poedit-Basepath: .\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
  "X-Poedit-SearchPath-0: ../.\n"
20
 
21
+ #: .././admin/item-reports.php:61 .././front/item-reports.php:29
22
  msgid "Analytics"
23
  msgstr "Statisztika"
24
 
25
+ #: .././admin/settings.php:89 .././admin/settings.php:184
26
+ #: .././admin/settings.php:318 .././admin/settings.php:795
27
+ #: .././admin/settings.php:1068
28
  msgid "Settings saved."
29
  msgstr "Beállítások mentve."
30
 
31
+ #: .././admin/settings.php:91 .././admin/settings.php:186
32
+ #: .././admin/settings.php:320 .././admin/settings.php:772
33
+ #: .././admin/settings.php:782 .././admin/settings.php:791
34
+ #: .././admin/settings.php:797 .././admin/settings.php:808
35
+ #: .././admin/settings.php:1029 .././admin/settings.php:1054
36
+ #: .././admin/settings.php:1064 .././admin/settings.php:1070
37
+ #: .././admin/settings.php:1081
38
  msgid "Cheating Huh?"
39
  msgstr "Csalás Huh?"
40
 
41
+ #: .././admin/settings.php:95 .././admin/settings.php:190
42
+ #: .././admin/settings.php:324 .././admin/settings.php:641
43
+ #: .././admin/settings.php:823 .././admin/settings.php:1095
44
  #, php-format
45
  msgid "Something went wrong, check %1$s or %2$s."
46
  msgstr "Valami rosszul ment, tekintse meg itt: %1$s vagy %2$s."
47
 
48
+ #: .././admin/settings.php:95 .././admin/settings.php:190
49
+ #: .././admin/settings.php:324 .././admin/settings.php:641
50
+ #: .././admin/settings.php:823 .././admin/settings.php:1095
51
+ #: .././admin/setup.php:46 .././admin/setup.php:59
52
  msgid "Errors & Debug"
53
  msgstr "Hibák és hibakeresés"
54
 
55
+ #: .././admin/settings.php:95 .././admin/settings.php:190
56
+ #: .././admin/settings.php:324 .././admin/settings.php:641
57
+ #: .././admin/settings.php:823 .././admin/settings.php:1095
58
  msgid "authorize the plugin"
59
  msgstr "engedélyezze a bővítményt"
60
 
61
+ #: .././admin/settings.php:100
62
  msgid "Google Analytics Frontend Settings"
63
  msgstr "Google Analytics weblap beállítások"
64
 
65
+ #: .././admin/settings.php:110 .././admin/settings.php:205
66
  msgid "Permissions"
67
  msgstr "Jogosultságok"
68
 
69
+ #: .././admin/settings.php:113 .././admin/settings.php:208
70
  msgid "Show stats to:"
71
  msgstr "Statisztikák megjelenítése:"
72
 
73
+ #: .././admin/settings.php:154
74
+ msgid "enable web page reports on frontend"
75
  msgstr ""
 
76
 
77
+ #: .././admin/settings.php:161 .././admin/settings.php:297
78
+ #: .././admin/settings.php:598 .././admin/settings.php:943
79
+ #: .././admin/settings.php:1232
 
 
 
 
80
  msgid "Save Changes"
81
  msgstr "Beállítások mentése"
82
 
83
+ #: .././admin/settings.php:195
84
  msgid "Google Analytics Backend Settings"
85
  msgstr "Google Analytics admin beállítások"
86
 
87
+ #: .././admin/settings.php:251
88
  msgid "enable Switch View functionality"
89
  msgstr "nézet átkapcsolásának engedélyezése"
90
 
91
+ #: .././admin/settings.php:262
92
  msgid "enable reports on Posts List and Pages List"
93
  msgstr "jelentések engedélyezése a Bejegyzés és Oldalak lista nézetében"
94
 
95
+ #: .././admin/settings.php:273
96
  msgid "enable the main Dashboard Widget"
97
  msgstr "fő vezérlőpult widget engedélyezése"
98
 
99
+ #: .././admin/settings.php:277
100
  msgid "Real-Time Settings"
101
  msgstr "Valós idejű beállítások"
102
 
103
+ #: .././admin/settings.php:280
104
  msgid "Maximum number of pages to display on real-time tab:"
105
  msgstr "Maximális oldalszám megjelenítése a valós idejű fülön:"
106
 
107
+ #: .././admin/settings.php:285
108
  msgid "Location Settings"
109
  msgstr "Helybeállítások"
110
 
111
+ #: .././admin/settings.php:289
112
  msgid "Target Geo Map to country:"
113
  msgstr "Cél földrajzi térkép (ország):"
114
 
115
+ #: .././admin/settings.php:327
116
  msgid ""
117
  "The tracking component is disabled. You should set <strong>Tracking Options</"
118
  "strong> to <strong>Enabled</strong>"
120
  "A követés le van tiltva. Kapcsolja át a <strong>Követési opciók</strong>-at "
121
  "<strong>Engedélyezve</strong>-re"
122
 
123
+ #: .././admin/settings.php:332
124
  msgid "Google Analytics Tracking Code"
125
  msgstr "Google Analytics követőkód"
126
 
127
+ #: .././admin/settings.php:341
128
  msgid "Basic Settings"
129
  msgstr "Alapbeállítások"
130
 
131
+ #: .././admin/settings.php:342 .././admin/settings.php:408
132
  msgid "Events Tracking"
133
  msgstr "Események követése"
134
 
135
+ #: .././admin/settings.php:343 .././admin/settings.php:456
136
  msgid "Custom Definitions"
137
  msgstr "Egyéni meghatározások"
138
 
139
+ #: .././admin/settings.php:344 .././admin/settings.php:554
140
+ #: .././admin/settings.php:1215
141
  msgid "Exclude Tracking"
142
  msgstr "Követés kizárás"
143
 
144
+ #: .././admin/settings.php:345
145
  msgid "Advanced Settings"
146
  msgstr "Speciális beállítások"
147
 
148
+ #: .././admin/settings.php:353
149
  msgid "Tracking Settings"
150
  msgstr "Követési beállítások"
151
 
152
+ #: .././admin/settings.php:356
153
  msgid "Tracking Options:"
154
  msgstr "Követési opciók:"
155
 
156
+ #: .././admin/settings.php:358
157
  msgid "Disabled"
158
  msgstr "Letiltva"
159
 
160
+ #: .././admin/settings.php:359
161
  msgid "Enabled"
162
  msgstr "Engedélyezve"
163
 
164
+ #: .././admin/settings.php:367 .././admin/settings.php:888
165
+ #: .././admin/settings.php:910 .././admin/settings.php:1188
166
+ #: .././admin/widgets.php:61
167
  msgid "View Name:"
168
  msgstr "Nézet neve:"
169
 
170
+ #: .././admin/settings.php:367 .././admin/settings.php:910
171
  msgid "Tracking ID:"
172
  msgstr "Követési azonosító:"
173
 
174
+ #: .././admin/settings.php:367 .././admin/settings.php:910
175
  msgid "Default URL:"
176
  msgstr "Alapértelmezett webcím:"
177
 
178
+ #: .././admin/settings.php:367 .././admin/settings.php:910
179
  msgid "Time Zone:"
180
  msgstr "Időzóna:"
181
 
182
+ #: .././admin/settings.php:372
183
  msgid "Basic Tracking"
184
  msgstr "Alapszintű követés"
185
 
186
+ #: .././admin/settings.php:375
187
  msgid "Tracking Type:"
188
  msgstr "Követés típusa:"
189
 
190
+ #: .././admin/settings.php:377
191
  msgid "Classic Analytics"
192
  msgstr "Klasszikus"
193
 
194
+ #: .././admin/settings.php:378
195
  msgid "Universal Analytics"
196
  msgstr "Univerzális"
197
 
198
+ #: .././admin/settings.php:389
199
  msgid "anonymize IPs while tracking"
200
  msgstr "IP címek anonimizálása követés közben"
201
 
202
+ #: .././admin/settings.php:400
203
  msgid "enable remarketing, demographics and interests reports"
204
  msgstr ""
205
  "remarketing, demográfiai és érdeklődési területekre vonatkozó jelentések "
206
  "engedélyezése"
207
 
208
+ #: .././admin/settings.php:418
209
  msgid "track downloads, mailto and outbound links"
210
  msgstr "letöltések, mailto (email) és kimenő linkek követése"
211
 
212
+ #: .././admin/settings.php:422
213
  msgid "Downloads Regex:"
214
  msgstr "Letöltés regex:"
215
 
216
+ #: .././admin/settings.php:433
217
  msgid "track affiliate links matching this regex"
218
  msgstr "partner linkek követése ennek a regexnek megfelelően"
219
 
220
+ #: .././admin/settings.php:437
221
  msgid "Affiliates Regex:"
222
  msgstr "Partner regex:"
223
 
224
+ #: .././admin/settings.php:448
225
  msgid "track fragment identifiers, hashmarks (#) in URI links"
226
  msgstr "töredékazonosítók követése, hashmark (#) az URI linkekben"
227
 
228
+ #: .././admin/settings.php:459
229
  msgid "Authors:"
230
  msgstr "Szerzők:"
231
 
232
+ #: .././admin/settings.php:467
233
  msgid "Publication Year:"
234
  msgstr "Megjelenés éve:"
235
 
236
+ #: .././admin/settings.php:475
237
  msgid "Categories:"
238
  msgstr "Kategóriák:"
239
 
240
+ #: .././admin/settings.php:483
241
  msgid "User Type:"
242
  msgstr "Felhasználó típus:"
243
 
244
+ #: .././admin/settings.php:495
245
  msgid "Advanced Tracking"
246
  msgstr "Haladó követés"
247
 
248
+ #: .././admin/settings.php:498
249
  msgid "Page Speed SR:"
250
  msgstr "Page Speed SR:"
251
 
252
+ #: .././admin/settings.php:509
253
  msgid "exclude events from bounce-rate calculation"
254
  msgstr "események kizárása a visszafordulási arány kiszámításából"
255
 
256
+ #: .././admin/settings.php:520
257
  msgid "enable enhanced link attribution"
258
  msgstr "speciális linkhozzárendelés használatának engedélyezése"
259
 
260
+ #: .././admin/settings.php:531
261
  msgid "enable AdSense account linking"
262
  msgstr "AdSense fiók összekapcsolás engedélyezése"
263
 
264
+ #: .././admin/settings.php:542
265
  msgid "enable cross domain tracking"
266
  msgstr "cross domain követés engedélyezése"
267
 
268
+ #: .././admin/settings.php:546
269
  msgid "Cross Domains:"
270
  msgstr "Cross domainek:"
271
 
272
+ #: .././admin/settings.php:557
273
  msgid "Exclude tracking for:"
274
  msgstr "Követés kizárása a következőkre:"
275
 
276
+ #: .././admin/settings.php:645
277
  msgid "Google Analytics Errors & Debugging"
278
  msgstr "Google Analytics hibák és hibakeresés"
279
 
280
+ #: .././admin/settings.php:655
281
  msgid "Errors & Details"
282
  msgstr "Hibák és részletek"
283
 
284
+ #: .././admin/settings.php:656
285
  msgid "Plugin Settings"
286
  msgstr "Bővítmény beállítások"
287
 
288
+ #: .././admin/settings.php:663
289
  msgid "Last Error detected"
290
  msgstr "Utolsó észlelt hiba"
291
 
292
+ #: .././admin/settings.php:669 .././admin/settings.php:682
293
  msgid "None"
294
  msgstr "Semmi"
295
 
296
+ #: .././admin/settings.php:676
297
  msgid "Error Details"
298
  msgstr "Hiba részletek"
299
 
300
+ #: .././admin/settings.php:696
301
  msgid "Plugin Configuration"
302
  msgstr "Bővítmény beállítások"
303
 
304
+ #: .././admin/settings.php:717 .././admin/settings.php:980
305
  msgid ""
306
  "Loading the required libraries. If this results in a blank screen or a fatal "
307
  "error, try this solution:"
309
  "A szükséges könyvtárak betöltése. Ha az eredmény egy üres képernyő vagy "
310
  "végzetes hiba, próbálja ki ezt a megoldást:"
311
 
312
+ #: .././admin/settings.php:717
313
  msgid "Library conflicts between WordPress plugins"
314
  msgstr "WordPress bővítmények közötti ütközés"
315
 
316
+ #: .././admin/settings.php:732 .././admin/settings.php:997
317
  msgid "Plugin authorization succeeded."
318
  msgstr "Bővítmény engedélyezése sikeres."
319
 
320
+ #: .././admin/settings.php:747 .././admin/settings.php:1020
321
  msgid ""
322
  "The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
323
  "(UA-XXXXX-X). Try again, and use the red link to get your access code"
326
  "strong> (UA-XXXXX-X). Próbálja újból, és használja a piros linket, hogy a "
327
  "hozzáférési kódot megkapja"
328
 
329
+ #: .././admin/settings.php:770 .././admin/settings.php:1052
330
  msgid "Cleared Cache."
331
  msgstr "Cache kiürítve."
332
 
333
+ #: .././admin/settings.php:779 .././admin/settings.php:1061
334
  msgid "Token Reseted and Revoked."
335
  msgstr "Token visszaállítva és visszavonva."
336
 
337
+ #: .././admin/settings.php:789
338
  msgid "All errors reseted."
339
  msgstr "Összes hiba törölve."
340
 
341
+ #: .././admin/settings.php:802 .././admin/settings.php:1075
342
  msgid "All other domains/properties were removed."
343
  msgstr "Összes többi domain/tulajdon eltávolításra került."
344
 
345
+ #: .././admin/settings.php:813 .././admin/settings.php:1086
346
  msgid "Google Analytics Settings"
347
  msgstr "Google Analytics beállítások"
348
 
349
+ #: .././admin/settings.php:828 .././admin/settings.php:1100
350
  msgid "Use the red link (see below) to generate and get your access code!"
351
  msgstr ""
352
  "Használja a piros linket (lásd alul), hogy a hozzáférési kódot legenerálja "
353
  "és megkapja!"
354
 
355
+ #: .././admin/settings.php:839 .././admin/settings.php:1128
356
  msgid "Plugin Authorization"
357
  msgstr "Bővítmény engedélyezése"
358
 
359
+ #: .././admin/settings.php:844 .././admin/settings.php:1132
360
  #, php-format
361
  msgid ""
362
  "You should watch the %1$s and read this %2$s before proceeding to "
367
  "Ezt a bővítményt csak helyesen beállított Google Analytics fiókkal lehet "
368
  "használni!"
369
 
370
+ #: .././admin/settings.php:844 .././admin/settings.php:1132
371
  msgid "video"
372
  msgstr "videót"
373
 
374
+ #: .././admin/settings.php:844 .././admin/settings.php:1132
375
  msgid "tutorial"
376
  msgstr "útmutatót"
377
 
378
+ #: .././admin/settings.php:849 .././admin/settings.php:1139
379
  msgid "use your own API Project credentials"
380
  msgstr "saját API Project adatainak használata"
381
 
382
+ #: .././admin/settings.php:854 .././admin/settings.php:1147
383
  msgid "API Key:"
384
  msgstr "API key:"
385
 
386
+ #: .././admin/settings.php:858 .././admin/settings.php:1151
387
  msgid "Client ID:"
388
  msgstr "Client ID:"
389
 
390
+ #: .././admin/settings.php:862 .././admin/settings.php:1155
391
  msgid "Client Secret:"
392
  msgstr "Client Secret:"
393
 
394
+ #: .././admin/settings.php:872 .././admin/settings.php:1165
395
  msgid "Clear Authorization"
396
  msgstr "Engedélyezés törlése"
397
 
398
+ #: .././admin/settings.php:872 .././admin/settings.php:950
399
+ #: .././admin/settings.php:1165 .././admin/settings.php:1241
400
  msgid "Clear Cache"
401
  msgstr "Cache ürítése"
402
 
403
+ #: .././admin/settings.php:872
404
  msgid "Reset Errors"
405
  msgstr "Hibák törlése"
406
 
407
+ #: .././admin/settings.php:878 .././admin/setup.php:42 .././admin/setup.php:58
408
  msgid "General Settings"
409
  msgstr "Általános beállítások"
410
 
411
+ #: .././admin/settings.php:881
412
  msgid "Select View:"
413
  msgstr "Nézet kiválasztása:"
414
 
415
+ #: .././admin/settings.php:892 .././admin/settings.php:1192
416
  msgid "Property not found"
417
  msgstr "Tulajdon nem található"
418
 
419
+ #: .././admin/settings.php:898
420
  msgid "Lock Selection"
421
  msgstr "Kiválasztás zárolása"
422
 
423
+ #: .././admin/settings.php:917
424
  msgid "Theme Color:"
425
  msgstr "Téma színe:"
426
 
427
+ #: .././admin/settings.php:925 .././admin/settings.php:1201
428
  msgid "Automatic Updates"
429
  msgstr "Automatikus frissítések"
430
 
431
+ #: .././admin/settings.php:935 .././admin/settings.php:1211
432
  msgid ""
433
  "automatic updates for minor versions (security and maintenance releases only)"
434
  msgstr ""
435
  "alverziók automatikus frissítései (csak biztonsági és karbantartási kiadások)"
436
 
437
+ #: .././admin/settings.php:950 .././admin/settings.php:1241
438
+ #: .././admin/widgets.php:32
439
  msgid "Authorize Plugin"
440
  msgstr "Bővítmény engedélyezése"
441
 
442
+ #: .././admin/settings.php:1026
443
  msgid "Properties refreshed."
444
  msgstr "Tulajdon frissítve."
445
 
446
+ #: .././admin/settings.php:1110
447
  msgid "Network Setup"
448
  msgstr "Hálózat beállítása"
449
 
450
+ #: .././admin/settings.php:1120
451
  msgid "use a single Google Analytics account for the entire network"
452
  msgstr "egy Google Analytics fiókot használjon a teljes hálózaton"
453
 
454
+ #: .././admin/settings.php:1165
455
  msgid "Refresh Properties"
456
  msgstr "Tulajdon frissítése"
457
 
458
+ #: .././admin/settings.php:1171
459
  msgid "Properties/Views Settings"
460
  msgstr "Tulajdon/Nézet beállítások"
461
 
462
+ #: .././admin/settings.php:1225
463
  msgid "exclude Super Admin tracking for the entire network"
464
  msgstr "Super Admin követésének kizárása a teljes hálózaton"
465
 
466
+ #: .././admin/settings.php:1273
467
  msgid "Setup Tutorial & Demo"
468
  msgstr "Telepítési útmutató és demo"
469
 
470
+ #: .././admin/settings.php:1281
471
+ msgid "Follow & Review"
472
+ msgstr ""
 
 
 
 
 
473
 
474
  #: .././admin/settings.php:1307
475
  #, php-format
524
  msgid "Web Analytics"
525
  msgstr "Web Statisztika"
526
 
527
+ #: .././admin/setup.php:41 .././admin/setup.php:57
528
  msgid "Google Analytics"
529
  msgstr "Google Analytics"
530
 
531
+ #: .././admin/setup.php:43
532
  msgid "Backend Settings"
533
  msgstr "Admin beállítások"
534
 
535
+ #: .././admin/setup.php:44
536
  msgid "Frontend Settings"
537
  msgstr "Weblap beállítások"
538
 
539
+ #: .././admin/setup.php:45
540
  msgid "Tracking Code"
541
  msgstr "Követőkód"
542
 
543
+ #: .././admin/setup.php:159 .././admin/widgets.php:117 .././front/setup.php:71
544
  msgid "Today"
545
  msgstr "Ma"
546
 
547
+ #: .././admin/setup.php:160 .././admin/widgets.php:118 .././front/setup.php:72
548
  msgid "Yesterday"
549
  msgstr "Tegnap"
550
 
551
+ #: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
552
+ #: .././admin/setup.php:164 .././admin/widgets.php:119
553
+ #: .././admin/widgets.php:120 .././admin/widgets.php:121
554
+ #: .././admin/widgets.php:122 .././front/setup.php:73 .././front/setup.php:74
555
+ #: .././front/setup.php:75 .././front/setup.php:76 .././front/widgets.php:64
556
+ #: .././front/widgets.php:67 .././front/widgets.php:70
557
+ #: .././front/widgets.php:158 .././front/widgets.php:159
558
+ #: .././front/widgets.php:160
559
+ #, php-format
560
+ msgid "Last %d Days"
561
+ msgstr "Elmúlt %d nap"
562
+
563
+ #: .././admin/setup.php:165 .././admin/setup.php:166
564
+ #: .././admin/widgets.php:123 .././admin/widgets.php:124
565
+ #: .././front/setup.php:77 .././front/setup.php:78
566
+ #, php-format
567
+ msgid "%s Year"
568
+ msgstr ""
569
 
570
+ #: .././admin/setup.php:165 .././admin/widgets.php:123 .././front/setup.php:77
571
+ msgid "One"
572
+ msgstr ""
 
573
 
574
+ #: .././admin/setup.php:166 .././admin/widgets.php:124 .././front/setup.php:78
575
+ msgid "Three"
576
+ msgstr ""
577
 
578
+ #: .././admin/setup.php:169 .././admin/setup.php:185 .././front/setup.php:81
579
+ #: .././front/setup.php:97
580
  msgid "Unique Views"
581
  msgstr "Egyedi megtekintések"
582
 
583
+ #: .././admin/setup.php:170 .././admin/setup.php:186
584
+ #: .././admin/widgets.php:130 .././admin/widgets.php:830
585
+ #: .././front/setup.php:82 .././front/setup.php:98 .././tools/gapi.php:358
586
  msgid "Users"
587
  msgstr "Felhasználók"
588
 
589
+ #: .././admin/setup.php:171 .././admin/widgets.php:131 .././front/setup.php:83
590
  msgid "Organic"
591
  msgstr "Organikus"
592
 
593
+ #: .././admin/setup.php:172 .././admin/setup.php:187
594
+ #: .././admin/widgets.php:132 .././admin/widgets.php:834
595
+ #: .././front/setup.php:84 .././front/setup.php:99 .././tools/gapi.php:361
596
  msgid "Page Views"
597
  msgstr "Oldal megtekintések"
598
 
599
+ #: .././admin/setup.php:173 .././admin/setup.php:188
600
+ #: .././admin/widgets.php:133 .././admin/widgets.php:838
601
+ #: .././front/setup.php:85 .././front/setup.php:100 .././tools/gapi.php:364
602
  msgid "Bounce Rate"
603
  msgstr "Visszafordulási arány"
604
 
605
+ #: .././admin/setup.php:174 .././admin/widgets.php:134 .././front/setup.php:86
606
  msgid "Location"
607
  msgstr "Hely"
608
 
609
+ #: .././admin/setup.php:175 .././admin/widgets.php:136 .././front/setup.php:87
610
+ #: .././tools/gapi.php:503
611
  msgid "Referrers"
612
  msgstr "Hivatkozók"
613
 
614
+ #: .././admin/setup.php:176 .././admin/widgets.php:137 .././front/setup.php:88
615
+ #: .././tools/gapi.php:536
616
  msgid "Searches"
617
  msgstr "Keresések"
618
 
619
+ #: .././admin/setup.php:177 .././admin/widgets.php:138 .././front/setup.php:89
620
  msgid "Traffic Details"
621
  msgstr "Forgalmi adatok"
622
 
623
+ #: .././admin/setup.php:180 .././admin/widgets.php:505
624
+ #: .././admin/widgets.php:590 .././admin/widgets.php:757
625
+ #: .././admin/widgets.php:861 .././front/setup.php:92
626
  msgid "A JavaScript Error is blocking plugin resources!"
627
  msgstr "Egy JavaScript hiba blokkolja a bővítmény forrásait!"
628
 
629
+ #: .././admin/setup.php:181 .././admin/widgets.php:681 .././front/setup.php:93
630
  msgid "Traffic Mediums"
631
  msgstr "Forgalmi közeg"
632
 
633
+ #: .././admin/setup.php:182 .././admin/widgets.php:696 .././front/setup.php:94
634
  msgid "Visitor Type"
635
  msgstr "Látogató típus"
636
 
637
+ #: .././admin/setup.php:183 .././admin/widgets.php:711 .././front/setup.php:95
638
  msgid "Social Networks"
639
  msgstr "Közösségi hálózatok"
640
 
641
+ #: .././admin/setup.php:184 .././admin/widgets.php:726 .././front/setup.php:96
642
  msgid "Search Engines"
643
  msgstr "Keresőmotorok"
644
 
645
+ #: .././admin/setup.php:189 .././admin/widgets.php:842
646
+ #: .././front/setup.php:101
647
  msgid "Organic Search"
648
  msgstr "Organikus keresés"
649
 
650
+ #: .././admin/setup.php:190 .././admin/widgets.php:846
651
+ #: .././front/setup.php:102
652
  msgid "Pages/Session"
653
  msgstr "Oldal / munkamenet"
654
 
655
+ #: .././admin/setup.php:191 .././admin/widgets.php:517
656
+ #: .././admin/widgets.php:531 .././admin/widgets.php:541
657
+ #: .././admin/widgets.php:602 .././admin/widgets.php:616
658
+ #: .././admin/widgets.php:630 .././admin/widgets.php:644
659
+ #: .././admin/widgets.php:658 .././admin/widgets.php:668
660
+ #: .././admin/widgets.php:770 .././admin/widgets.php:782
661
+ #: .././admin/widgets.php:873 .././admin/widgets.php:887
662
+ #: .././admin/widgets.php:897 .././front/setup.php:103
663
  msgid "Invalid response, more details in JavaScript Console (F12)."
664
  msgstr "Érvénytelen válasz, további részletek a JavaScript Konzolban (F12)."
665
 
666
+ #: .././admin/setup.php:192 .././front/setup.php:104
667
  msgid "Not enough data collected"
668
  msgstr "Nincs elegendő összegyűjtött adat"
669
 
670
+ #: .././admin/setup.php:193 .././admin/widgets.php:522
671
+ #: .././admin/widgets.php:536 .././admin/widgets.php:607
672
+ #: .././admin/widgets.php:621 .././admin/widgets.php:635
673
+ #: .././admin/widgets.php:649 .././admin/widgets.php:663
674
+ #: .././admin/widgets.php:775 .././admin/widgets.php:777
675
+ #: .././admin/widgets.php:878 .././admin/widgets.php:892
676
+ #: .././front/setup.php:105 .././front/widgets.php:100
 
677
  msgid "This report is unavailable"
678
  msgstr "Ez a jelentés nem elérhető"
679
 
680
+ #: .././admin/setup.php:194 .././front/setup.php:106
681
  msgid "report generated by"
682
  msgstr "jelentést generálta"
683
 
684
+ #: .././admin/setup.php:225
685
  msgid "Settings"
686
  msgstr "Beállítások"
687
 
688
+ #: .././admin/setup.php:237
689
+ #, php-format
690
+ msgid "Google Analytics Dashboard for WP has been updated to version %s."
691
+ msgstr ""
692
+
693
+ #: .././admin/setup.php:237
694
+ #, php-format
695
+ msgid "For details, check out %1$s and %2$s."
696
+ msgstr ""
697
+
698
+ #: .././admin/setup.php:237
699
+ msgid "the documentation page"
700
+ msgstr ""
701
+
702
+ #: .././admin/setup.php:237
703
+ msgid "the plugin&#39;s settings page"
704
+ msgstr ""
705
+
706
+ #: .././admin/widgets.php:27 .././front/widgets.php:21
707
  msgid "Google Analytics Dashboard"
708
  msgstr "Google Analytics vezérlőpult"
709
 
710
+ #: .././admin/widgets.php:32
711
  msgid "This plugin needs an authorization:"
712
  msgstr "Ennek a bővítménynek engedélyre van szüksége:"
713
 
714
+ #: .././admin/widgets.php:66
715
  msgid "Something went wrong while retrieving profiles list."
716
  msgstr "Valami rosszul ment a profil lista lekérése közben."
717
 
718
+ #: .././admin/widgets.php:66
719
  msgid "More details"
720
  msgstr "További részletek"
721
 
722
+ #: .././admin/widgets.php:79 .././admin/widgets.php:90
723
  msgid "An admin should asign a default Google Analytics Profile."
724
  msgstr ""
725
  "Az alapértelmezett Google Analytics profilt egy adminisztrátornak kell "
726
  "kijelölnie."
727
 
728
+ #: .././admin/widgets.php:79 .././admin/widgets.php:90
729
  msgid "Select Domain"
730
  msgstr "Domain kiválasztása"
731
 
732
+ #: .././admin/widgets.php:95
733
  msgid ""
734
  "Something went wrong while retrieving property data. You need to create and "
735
  "properly configure a Google Analytics account:"
737
  "Valami rosszul ment a tulajdon lekérése közben. Egy jól konfigurált Google "
738
  "Analytics fiókra van szüksége:"
739
 
740
+ #: .././admin/widgets.php:95
741
  msgid "Find out more!"
742
  msgstr "Tudjon meg többet!"
743
 
744
+ #: .././admin/widgets.php:116
745
  msgid "Real-Time"
746
  msgstr "Valós idejű"
747
 
748
+ #: .././admin/widgets.php:129 .././admin/widgets.php:826
749
+ #: .././front/widgets.php:36 .././tools/gapi.php:373 .././tools/gapi.php:503
750
+ #: .././tools/gapi.php:536 .././tools/gapi.php:586 .././tools/gapi.php:666
751
+ #: .././tools/gapi.php:695
 
 
 
 
 
752
  msgid "Sessions"
753
  msgstr "Munkamenetek"
754
 
755
+ #: .././admin/widgets.php:135 .././tools/gapi.php:471
756
  msgid "Pages"
757
  msgstr "Oldalak"
758
 
759
+ #: .././admin/widgets.php:236 .././admin/widgets.php:478
760
  msgid "REFERRAL"
761
  msgstr "HIVATKOZÓ"
762
 
763
+ #: .././admin/widgets.php:240 .././admin/widgets.php:479
764
  msgid "ORGANIC"
765
  msgstr "ORGANIKUS"
766
 
767
+ #: .././admin/widgets.php:244 .././admin/widgets.php:364
768
+ #: .././admin/widgets.php:480
769
  msgid "SOCIAL"
770
  msgstr "KÖZÖSSÉGI"
771
 
772
+ #: .././admin/widgets.php:248 .././admin/widgets.php:367
773
+ #: .././admin/widgets.php:481
774
  msgid "CAMPAIGN"
775
  msgstr "KAMPÁNY"
776
 
777
+ #: .././admin/widgets.php:252 .././admin/widgets.php:370
778
+ #: .././admin/widgets.php:484
779
  msgid "DIRECT"
780
  msgstr "KÖZVETLEN"
781
 
782
+ #: .././admin/widgets.php:256 .././admin/widgets.php:485
783
  msgid "NEW"
784
  msgstr "ÚJ"
785
 
786
+ #: .././admin/widgets.php:358
787
  msgid "REFERRALS"
788
  msgstr "HIVATKOZÓK"
789
 
790
+ #: .././admin/widgets.php:361
791
  msgid "KEYWORDS"
792
  msgstr "KULCSSZAVAK"
793
 
794
+ #: .././front/widgets.php:21
 
 
 
 
 
 
 
 
795
  msgid "Will display your google analytics stats in a widget"
796
  msgstr "Megjelenik a Google Analytics statisztika egy widgetben"
797
 
798
+ #: .././front/widgets.php:36 .././tools/gapi.php:695
799
  msgid "trend"
800
  msgstr "trend"
801
 
802
+ #: .././front/widgets.php:123
803
  msgid "Period:"
804
  msgstr "Időszak:"
805
 
806
+ #: .././front/widgets.php:123
807
  msgid "Sessions:"
808
  msgstr "Munkamenetek:"
809
 
810
+ #: .././front/widgets.php:127
811
  msgid "generated by"
812
  msgstr "által generált"
813
 
814
+ #: .././front/widgets.php:136
815
  msgid "Google Analytics Stats"
816
  msgstr "Google Analytics statisztika"
817
 
818
+ #: .././front/widgets.php:144
819
  msgid "Title:"
820
  msgstr "Cím:"
821
 
822
+ #: .././front/widgets.php:147
823
  msgid "Display:"
824
  msgstr "Megjelenés:"
825
 
826
+ #: .././front/widgets.php:148
827
  msgid "Chart & Totals"
828
  msgstr "Diagram és összegzés"
829
 
830
+ #: .././front/widgets.php:149
831
  msgid "Chart"
832
  msgstr "Diagram"
833
 
834
+ #: .././front/widgets.php:150
835
  msgid "Totals"
836
  msgstr "Összegzés"
837
 
838
+ #: .././front/widgets.php:154
839
  msgid "Anonymize stats:"
840
  msgstr "Névtelen statisztika:"
841
 
842
+ #: .././front/widgets.php:157
843
  msgid "Stats for:"
844
  msgstr "Statisztika:"
845
 
846
+ #: .././front/widgets.php:164
847
  msgid "Give credits:"
848
  msgstr "Köszönet:"
849
 
850
+ #: .././gadwp.php:46 .././gadwp.php:54 .././gadwp.php:61
851
  msgid "This is not allowed, read the documentation!"
852
  msgstr "Ez nem engedélyezett, olvassa el a dokumentációt!"
853
 
854
+ #: .././tools/gapi.php:128
855
  msgid "Use this link to get your access code:"
856
  msgstr "Használja ezt a linket, hogy a hozzáférési kódot megkapja:"
857
 
858
+ #: .././tools/gapi.php:128
859
  msgid "Get Access Code"
860
  msgstr "Hozzáférési kód beszerzése"
861
 
862
+ #: .././tools/gapi.php:132 .././tools/gapi.php:133
863
  msgid "Use the red link to get your access code!"
864
  msgstr "Használja a piros linket, hogy a hozzáférési kódot megkapja!"
865
 
866
+ #: .././tools/gapi.php:132
867
  msgid "Access Code:"
868
  msgstr "Hozzáférési kód:"
869
 
870
+ #: .././tools/gapi.php:139
871
  msgid "Save Access Code"
872
  msgstr "Hozzáférési kód mentése"
873
 
874
+ #: .././tools/gapi.php:367
875
  msgid "Organic Searches"
876
  msgstr "Organikus keresés"
877
 
878
+ #: .././tools/gapi.php:370
879
  msgid "Unique Page Views"
880
  msgstr "Egyedi oldalmegtekintések"
881
 
882
+ #: .././tools/gapi.php:378
883
  msgid "Hour"
884
  msgstr "Óra"
885
 
886
+ #: .././tools/gapi.php:382 .././tools/gapi.php:385 .././tools/gapi.php:695
887
  msgid "Date"
888
  msgstr "Dátum"
889
 
890
+ #: .././tools/gapi.php:471
891
  msgid "Views"
892
  msgstr "Megtekintések"
893
 
894
+ #: .././tools/gapi.php:557
895
  msgid "Countries"
896
  msgstr "Országok"
897
 
898
+ #: .././tools/gapi.php:567
899
  msgid "Cities from"
900
  msgstr "Városok"
901
 
902
+ #: .././tools/gapi.php:620
903
  msgid "Channels"
904
  msgstr "Csatornák"
905
 
906
+ #: .././tools/gapi.php:666
907
  msgid "Type"
908
  msgstr "Típus"
909
 
910
+ #~ msgid "Last 7 Days"
911
+ #~ msgstr "Elmúlt 7 nap"
912
+
913
+ #~ msgid "Last 14 Days"
914
+ #~ msgstr "Elmúlt 14 nap"
915
+
916
+ #~ msgid "Last 30 Days"
917
+ #~ msgstr "Elmúlt 30 nap"
918
+
919
+ #~ msgid "Last 90 Days"
920
+ #~ msgstr "Elmúlt 90 nap"
921
+
922
+ #~ msgid "show page sessions and users in frontend (after each article)"
923
+ #~ msgstr ""
924
+ #~ "munkamenetek és felhasználók megjelenítése a frontenden (minden cikk után)"
925
+
926
+ #~ msgid "show page searches (after each article)"
927
+ #~ msgstr "keresés megjelenítése (minden cikk után)"
928
+
929
+ #~ msgid "Support & Reviews"
930
+ #~ msgstr "Támogatás és vélemények"
931
+
932
+ #~ msgid "Plugin documentation and support on %s"
933
+ #~ msgstr "Bővítmény dokumentáció és támogatás: %s"
934
+
935
+ #~ msgid "Views vs UniqueViews"
936
+ #~ msgstr "Megtekintések vs egyedi megtekintések"
937
+
938
+ #~ msgid "Google Analytics Reports"
939
+ #~ msgstr "Google Analytics jelentések"
940
+
941
+ #~ msgid "UniqueViews"
942
+ #~ msgstr "Egyedi megtekintések"
943
 
944
  #~ msgid "Read %s for more information about Frontend Features and Options."
945
  #~ msgstr ""
languages/ga-dash-it_IT.mo CHANGED
Binary file
languages/ga-dash-it_IT.po CHANGED
@@ -3,122 +3,116 @@ msgstr ""
3
  "Project-Id-Version: Google Analytics Dashboard for WP 4.7\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-"
5
  "dashboard-for-wp\n"
6
- "POT-Creation-Date: 2015-05-21 19:46+0200\n"
7
- "PO-Revision-Date: 2015-05-21 19:46+0200\n"
8
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
9
  "Language-Team: L.E.O.X. <leoxleox73@gmail.com>\n"
10
  "Language: it\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
- "X-Generator: Poedit 1.8\n"
15
- "X-Poedit-KeywordsList: _e;__\n"
16
  "X-Poedit-Basepath: .\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
  "X-Poedit-SearchPath-0: ../.\n"
20
 
21
- #: .././admin/item-reports.php:52
22
  msgid "Analytics"
23
  msgstr "Analytics"
24
 
25
- #: .././admin/settings.php:94 .././admin/settings.php:197
26
- #: .././admin/settings.php:328 .././admin/settings.php:803
27
- #: .././admin/settings.php:1079
28
  msgid "Settings saved."
29
  msgstr "Impostazioni salvate."
30
 
31
- #: .././admin/settings.php:96 .././admin/settings.php:199
32
- #: .././admin/settings.php:330 .././admin/settings.php:780
33
- #: .././admin/settings.php:790 .././admin/settings.php:799
34
- #: .././admin/settings.php:805 .././admin/settings.php:817
35
- #: .././admin/settings.php:1040 .././admin/settings.php:1065
36
- #: .././admin/settings.php:1075 .././admin/settings.php:1081
37
- #: .././admin/settings.php:1093
38
  msgid "Cheating Huh?"
39
  msgstr "Tentativo di frode?"
40
 
41
- #: .././admin/settings.php:100 .././admin/settings.php:203
42
- #: .././admin/settings.php:334 .././admin/settings.php:647
43
- #: .././admin/settings.php:832 .././admin/settings.php:1107
44
  #, php-format
45
  msgid "Something went wrong, check %1$s or %2$s."
46
  msgstr "Qualcosa &egrave; andato male, controlla %1$s o %2$s."
47
 
48
- #: .././admin/settings.php:100 .././admin/settings.php:203
49
- #: .././admin/settings.php:334 .././admin/settings.php:647
50
- #: .././admin/settings.php:832 .././admin/settings.php:1107
51
- #: .././admin/setup.php:82 .././admin/setup.php:101
52
  msgid "Errors & Debug"
53
  msgstr "Errori & Debug"
54
 
55
- #: .././admin/settings.php:100 .././admin/settings.php:203
56
- #: .././admin/settings.php:334 .././admin/settings.php:647
57
- #: .././admin/settings.php:832 .././admin/settings.php:1107
58
  msgid "authorize the plugin"
59
  msgstr "autorizza il plugin"
60
 
61
- #: .././admin/settings.php:105
62
  msgid "Google Analytics Frontend Settings"
63
  msgstr "Impostazioni Frontend di Google Analytics "
64
 
65
- #: .././admin/settings.php:115 .././admin/settings.php:218
66
  msgid "Permissions"
67
  msgstr "Permessi"
68
 
69
- #: .././admin/settings.php:118 .././admin/settings.php:221
70
  msgid "Show stats to:"
71
  msgstr "Mostra statistiche a:"
72
 
73
- #: .././admin/settings.php:157
74
- msgid "show page sessions and users in frontend (after each article)"
75
  msgstr ""
76
- "mostra la pagina delle sessioni e degli utenti nel frontend (dopo ogni "
77
- "articolo)"
78
 
79
- #: .././admin/settings.php:168
80
- msgid "show page searches (after each article)"
81
- msgstr "mostra la pagina delle ricerche (dopo ogni articolo)"
82
-
83
- #: .././admin/settings.php:175 .././admin/settings.php:308
84
- #: .././admin/settings.php:605 .././admin/settings.php:952
85
- #: .././admin/settings.php:1245
86
  msgid "Save Changes"
87
  msgstr "Salva le modifiche"
88
 
89
- #: .././admin/settings.php:208
90
  msgid "Google Analytics Backend Settings"
91
  msgstr "Impostazioni Backend di Google Analytics"
92
 
93
- #: .././admin/settings.php:262
94
  msgid "enable Switch View functionality"
95
  msgstr "abilita la funzionalit&agrave; Visualizza"
96
 
97
- #: .././admin/settings.php:273
98
  msgid "enable reports on Posts List and Pages List"
99
  msgstr "abilita rapporti nella lista pagine e post"
100
 
101
- #: .././admin/settings.php:284
102
  msgid "enable the main Dashboard Widget"
103
  msgstr "abilita il widget principale nella bacheca"
104
 
105
- #: .././admin/settings.php:288
106
  msgid "Real-Time Settings"
107
  msgstr "Impostazioni In tempo reale"
108
 
109
- #: .././admin/settings.php:291
110
  msgid "Maximum number of pages to display on real-time tab:"
111
  msgstr "Numero massimo di pagine da visualizzare nella scheda in tempo reale:"
112
 
113
- #: .././admin/settings.php:296
114
  msgid "Location Settings"
115
  msgstr "Impostazioni posizione geografica"
116
 
117
- #: .././admin/settings.php:300
118
  msgid "Target Geo Map to country:"
119
  msgstr "Cartina geografica per il paese:"
120
 
121
- #: .././admin/settings.php:337
122
  msgid ""
123
  "The tracking component is disabled. You should set <strong>Tracking Options</"
124
  "strong> to <strong>Enabled</strong>"
@@ -126,187 +120,187 @@ msgstr ""
126
  "Il componente di monitoraggio &egrave; disabilitato. &Egrave; necessario "
127
  "impostare il <strong>Monitoraggio</strong> su <strong>Abilitato</strong>"
128
 
129
- #: .././admin/settings.php:342
130
  msgid "Google Analytics Tracking Code"
131
  msgstr "Impostazioni Monitoraggio di Google Analytics "
132
 
133
- #: .././admin/settings.php:351
134
  msgid "Basic Settings"
135
  msgstr "Impostazioni di base"
136
 
137
- #: .././admin/settings.php:352 .././admin/settings.php:417
138
  msgid "Events Tracking"
139
  msgstr "Impostazioni eventi"
140
 
141
- #: .././admin/settings.php:353 .././admin/settings.php:465
142
  msgid "Custom Definitions"
143
  msgstr "Impostazioni definizioni personalizzate"
144
 
145
- #: .././admin/settings.php:354 .././admin/settings.php:563
146
- #: .././admin/settings.php:1228
147
  msgid "Exclude Tracking"
148
  msgstr "Escludi monitoraggio"
149
 
150
- #: .././admin/settings.php:355
151
  msgid "Advanced Settings"
152
  msgstr "Impostazioni avanzate"
153
 
154
- #: .././admin/settings.php:362
155
  msgid "Tracking Settings"
156
  msgstr "Stato del monitoraggio"
157
 
158
- #: .././admin/settings.php:365
159
  msgid "Tracking Options:"
160
  msgstr "Monitoraggio:"
161
 
162
- #: .././admin/settings.php:367
163
  msgid "Disabled"
164
  msgstr "Disabilitato"
165
 
166
- #: .././admin/settings.php:368
167
  msgid "Enabled"
168
  msgstr "Abilitato"
169
 
170
- #: .././admin/settings.php:376 .././admin/settings.php:897
171
- #: .././admin/settings.php:919 .././admin/settings.php:1201
172
- #: .././admin/widgets.php:71
173
  msgid "View Name:"
174
  msgstr "Mostra nome:"
175
 
176
- #: .././admin/settings.php:376 .././admin/settings.php:919
177
  msgid "Tracking ID:"
178
  msgstr "ID monitoraggio:"
179
 
180
- #: .././admin/settings.php:376 .././admin/settings.php:919
181
  msgid "Default URL:"
182
  msgstr "URL predefinito:"
183
 
184
- #: .././admin/settings.php:376 .././admin/settings.php:919
185
  msgid "Time Zone:"
186
  msgstr "Fuso orario:"
187
 
188
- #: .././admin/settings.php:381
189
  msgid "Basic Tracking"
190
  msgstr "Impostazioni di base"
191
 
192
- #: .././admin/settings.php:384
193
  msgid "Tracking Type:"
194
  msgstr "Tipo:"
195
 
196
- #: .././admin/settings.php:386
197
  msgid "Classic Analytics"
198
  msgstr "Classic Analytics"
199
 
200
- #: .././admin/settings.php:387
201
  msgid "Universal Analytics"
202
  msgstr "Universal Analytics"
203
 
204
- #: .././admin/settings.php:398
205
  msgid "anonymize IPs while tracking"
206
  msgstr "rendi anonimi gli indirizzi IP durante il monitoraggio"
207
 
208
- #: .././admin/settings.php:409
209
  msgid "enable remarketing, demographics and interests reports"
210
  msgstr "abilita il remarketing e i rapporti demografici e sugli interessi."
211
 
212
- #: .././admin/settings.php:427
213
  msgid "track downloads, mailto and outbound links"
214
  msgstr "monitora i download, le e-mail e i link in uscita"
215
 
216
- #: .././admin/settings.php:431
217
  msgid "Downloads Regex:"
218
  msgstr "Abbreviazioni downloads:"
219
 
220
- #: .././admin/settings.php:442
221
  msgid "track affiliate links matching this regex"
222
  msgstr "monitora i link di affiliazione corrispondenti a aquesto regex"
223
 
224
- #: .././admin/settings.php:446
225
  msgid "Affiliates Regex:"
226
  msgstr "Abbreviazioni associate:"
227
 
228
- #: .././admin/settings.php:457
229
  msgid "track fragment identifiers, hashmarks (#) in URI links"
230
  msgstr ""
231
  "monitora gli identificatori di frammento, hashmarks (#) nei collegamenti URI"
232
 
233
- #: .././admin/settings.php:468
234
  msgid "Authors:"
235
  msgstr "Autori:"
236
 
237
- #: .././admin/settings.php:476
238
  msgid "Publication Year:"
239
  msgstr "Anno di pubblicazione:"
240
 
241
- #: .././admin/settings.php:484
242
  msgid "Categories:"
243
  msgstr "Categorie:"
244
 
245
- #: .././admin/settings.php:492
246
  msgid "User Type:"
247
  msgstr "Tipo di utente:"
248
 
249
- #: .././admin/settings.php:504
250
  msgid "Advanced Tracking"
251
  msgstr "Impostazioni avanzate"
252
 
253
- #: .././admin/settings.php:507
254
  msgid "Page Speed SR:"
255
  msgstr "Page Speed Sample Rate:"
256
 
257
- #: .././admin/settings.php:518
258
  msgid "exclude events from bounce-rate calculation"
259
  msgstr "escludi gli eventi nel calcolo della frequenza di rimbalzo"
260
 
261
- #: .././admin/settings.php:529
262
  msgid "enable enhanced link attribution"
263
  msgstr "abilita l&apos;attribuzione avanzata dei link"
264
 
265
- #: .././admin/settings.php:540
266
  msgid "enable AdSense account linking"
267
  msgstr "abilita AdSense account linking"
268
 
269
- #: .././admin/settings.php:551
270
  msgid "enable cross domain tracking"
271
  msgstr "abilita il monitoraggio cross domain"
272
 
273
- #: .././admin/settings.php:555
274
  msgid "Cross Domains:"
275
  msgstr " Cross Domains:"
276
 
277
- #: .././admin/settings.php:566
278
  msgid "Exclude tracking for:"
279
  msgstr "Escludi per:"
280
 
281
- #: .././admin/settings.php:651
282
  msgid "Google Analytics Errors & Debugging"
283
  msgstr "Errori & Debugging di Google Analytics"
284
 
285
- #: .././admin/settings.php:661
286
  msgid "Errors & Details"
287
  msgstr "Errori & Dettagli"
288
 
289
- #: .././admin/settings.php:662
290
  msgid "Plugin Settings"
291
  msgstr "Impostazioni plugin"
292
 
293
- #: .././admin/settings.php:670
294
  msgid "Last Error detected"
295
  msgstr "Ultimo errore rilevato"
296
 
297
- #: .././admin/settings.php:676 .././admin/settings.php:689
298
  msgid "None"
299
  msgstr "Nessuno"
300
 
301
- #: .././admin/settings.php:683
302
  msgid "Error Details"
303
  msgstr "Dettagli errore"
304
 
305
- #: .././admin/settings.php:703
306
  msgid "Plugin Configuration"
307
  msgstr "Configurazione plugin"
308
 
309
- #: .././admin/settings.php:725 .././admin/settings.php:990
310
  msgid ""
311
  "Loading the required libraries. If this results in a blank screen or a fatal "
312
  "error, try this solution:"
@@ -314,15 +308,15 @@ msgstr ""
314
  "Caricamento delle librerie richieste. Se viene restituita una schermata "
315
  "vuota o si verifica un errore fatale, provare questa soluzione:"
316
 
317
- #: .././admin/settings.php:725
318
  msgid "Library conflicts between WordPress plugins"
319
  msgstr "Conflitti tra le librerie dei plugins di WordPress"
320
 
321
- #: .././admin/settings.php:740 .././admin/settings.php:1007
322
  msgid "Plugin authorization succeeded."
323
  msgstr "Autorizzazione plugin riuscita."
324
 
325
- #: .././admin/settings.php:755 .././admin/settings.php:1031
326
  msgid ""
327
  "The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
328
  "(UA-XXXXX-X). Try again, and use the red link to get your access code"
@@ -331,37 +325,37 @@ msgstr ""
331
  "strong> (UA-XXXXX-X). Prova di nuovo utilizzando il link rosso per ottenere "
332
  "il codice di accesso"
333
 
334
- #: .././admin/settings.php:778 .././admin/settings.php:1063
335
  msgid "Cleared Cache."
336
  msgstr "Cache eliminata."
337
 
338
- #: .././admin/settings.php:787 .././admin/settings.php:1072
339
  msgid "Token Reseted and Revoked."
340
  msgstr "Token azzerato e revocato."
341
 
342
- #: .././admin/settings.php:797
343
  msgid "All errors reseted."
344
  msgstr "Tutti gli errori azzerati."
345
 
346
- #: .././admin/settings.php:810 .././admin/settings.php:1086
347
  msgid "All other domains/properties were removed."
348
  msgstr "Tutti gli altri domini/propriet&agrave; sono stati rimossi."
349
 
350
- #: .././admin/settings.php:822 .././admin/settings.php:1098
351
  msgid "Google Analytics Settings"
352
  msgstr "Impostazioni di Google Analytics"
353
 
354
- #: .././admin/settings.php:837 .././admin/settings.php:1112
355
  msgid "Use the red link (see below) to generate and get your access code!"
356
  msgstr ""
357
  "Utilizza il link rosso (vedi sotto) per generare ed ottenere il tuo codice "
358
  "di accesso!"
359
 
360
- #: .././admin/settings.php:848 .././admin/settings.php:1140
361
  msgid "Plugin Authorization"
362
  msgstr "Autorizzazione plugin"
363
 
364
- #: .././admin/settings.php:853 .././admin/settings.php:1144
365
  #, php-format
366
  msgid ""
367
  "You should watch the %1$s and read this %2$s before proceeding to "
@@ -372,115 +366,110 @@ msgstr ""
372
  "autorizzazione. Questo plugin richiede un account di Google Analytics "
373
  "correttamente configurato!"
374
 
375
- #: .././admin/settings.php:853 .././admin/settings.php:1144
376
  msgid "video"
377
  msgstr "video"
378
 
379
- #: .././admin/settings.php:853 .././admin/settings.php:1144
380
  msgid "tutorial"
381
  msgstr "guida"
382
 
383
- #: .././admin/settings.php:858 .././admin/settings.php:1151
384
  msgid "use your own API Project credentials"
385
  msgstr "utilizza le tue credenziali API"
386
 
387
- #: .././admin/settings.php:863 .././admin/settings.php:1159
388
  msgid "API Key:"
389
  msgstr "Chiave API:"
390
 
391
- #: .././admin/settings.php:867 .././admin/settings.php:1163
392
  msgid "Client ID:"
393
  msgstr "ID Cliente:"
394
 
395
- #: .././admin/settings.php:871 .././admin/settings.php:1167
396
  msgid "Client Secret:"
397
  msgstr "Client Secret:"
398
 
399
- #: .././admin/settings.php:881 .././admin/settings.php:1177
400
  msgid "Clear Authorization"
401
  msgstr "Revoca autorizzazione"
402
 
403
- #: .././admin/settings.php:881 .././admin/settings.php:959
404
- #: .././admin/settings.php:1177 .././admin/settings.php:1254
405
  msgid "Clear Cache"
406
  msgstr "Elimina cache"
407
 
408
- #: .././admin/settings.php:881
409
  msgid "Reset Errors"
410
  msgstr "Azzera errori."
411
 
412
- #: .././admin/settings.php:887 .././admin/setup.php:70 .././admin/setup.php:98
413
  msgid "General Settings"
414
  msgstr "Impostazioni generali"
415
 
416
- #: .././admin/settings.php:890
417
  msgid "Select View:"
418
  msgstr "Seleziona vista:"
419
 
420
- #: .././admin/settings.php:901 .././admin/settings.php:1205
421
  msgid "Property not found"
422
  msgstr "Propriet&agrave; non trovata"
423
 
424
- #: .././admin/settings.php:907
425
  msgid "Lock Selection"
426
  msgstr "Blocca selezione"
427
 
428
- #: .././admin/settings.php:926
429
  msgid "Theme Color:"
430
  msgstr "Colore tema:"
431
 
432
- #: .././admin/settings.php:934 .././admin/settings.php:1214
433
  msgid "Automatic Updates"
434
  msgstr "Aggiornamenti automatici"
435
 
436
- #: .././admin/settings.php:944 .././admin/settings.php:1224
437
  msgid ""
438
  "automatic updates for minor versions (security and maintenance releases only)"
439
  msgstr ""
440
  "aggiornamenti automatici per le release minori (solo di manutenzione e "
441
  "sicurezza)"
442
 
443
- #: .././admin/settings.php:959 .././admin/settings.php:1254
444
- #: .././admin/widgets.php:42
445
  msgid "Authorize Plugin"
446
  msgstr "Autorizza plugin"
447
 
448
- #: .././admin/settings.php:1037
449
  msgid "Properties refreshed."
450
  msgstr "Propriet&agrave; aggiornate."
451
 
452
- #: .././admin/settings.php:1122
453
  msgid "Network Setup"
454
  msgstr "Configurazione della rete"
455
 
456
- #: .././admin/settings.php:1132
457
  msgid "use a single Google Analytics account for the entire network"
458
  msgstr "utilizza un unico account di Google Analytics per tutta la rete"
459
 
460
- #: .././admin/settings.php:1177
461
  msgid "Refresh Properties"
462
  msgstr "Aggiorna propriet&agrave;"
463
 
464
- #: .././admin/settings.php:1183
465
  msgid "Properties/Views Settings"
466
  msgstr "Propriet&agrave;/Mostra impostazioni"
467
 
468
- #: .././admin/settings.php:1238
469
  msgid "exclude Super Admin tracking for the entire network"
470
  msgstr "escludi il monitoraggio dell&apos;amministratore su tutta la rete"
471
 
472
- #: .././admin/settings.php:1285
473
  msgid "Setup Tutorial & Demo"
474
  msgstr "Guida all&apos;installazione & Demo"
475
 
476
- #: .././admin/settings.php:1293
477
- msgid "Support & Reviews"
478
- msgstr "Supporto & Recensioni"
479
-
480
- #: .././admin/settings.php:1300
481
- #, php-format
482
- msgid "Plugin documentation and support on %s"
483
- msgstr "Documentazione del plugin e supporto su %s"
484
 
485
  #: .././admin/settings.php:1307
486
  #, php-format
@@ -535,178 +524,213 @@ msgstr "%s servizio con tracciamento degli utenti a livello IP."
535
  msgid "Web Analytics"
536
  msgstr "Web Analytics"
537
 
538
- #: .././admin/setup.php:67 .././admin/setup.php:95
539
  msgid "Google Analytics"
540
  msgstr "Google Analytics"
541
 
542
- #: .././admin/setup.php:73
543
  msgid "Backend Settings"
544
  msgstr "Impostazioni backend"
545
 
546
- #: .././admin/setup.php:76
547
  msgid "Frontend Settings"
548
  msgstr "Impostazioni frontend"
549
 
550
- #: .././admin/setup.php:79
551
  msgid "Tracking Code"
552
  msgstr "Monitoraggio"
553
 
554
- #: .././admin/setup.php:169 .././admin/widgets.php:126
555
  msgid "Today"
556
  msgstr "Oggi"
557
 
558
- #: .././admin/setup.php:170 .././admin/widgets.php:127
559
  msgid "Yesterday"
560
  msgstr "Ieri"
561
 
562
- #: .././admin/setup.php:171 .././admin/widgets.php:128
563
- #: .././front/widgets.php:74 .././front/widgets.php:182
564
- msgid "Last 7 Days"
565
- msgstr "Ultimi 7 giorni"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
566
 
567
- #: .././admin/setup.php:172 .././admin/widgets.php:130
568
- #: .././front/widgets.php:80 .././front/widgets.php:184
569
- msgid "Last 30 Days"
570
- msgstr "Ultimi 30 giorni"
571
 
572
- #: .././admin/setup.php:173 .././admin/widgets.php:131
573
- msgid "Last 90 Days"
574
- msgstr "Ultimi 90 giorni"
575
 
576
- #: .././admin/setup.php:175 .././admin/setup.php:190
 
577
  msgid "Unique Views"
578
  msgstr "Visualizzazioni singole"
579
 
580
- #: .././admin/setup.php:176 .././admin/setup.php:191
581
- #: .././admin/widgets.php:136 .././admin/widgets.php:875
582
- #: .././tools/gapi.php:391
583
  msgid "Users"
584
  msgstr "Utenti"
585
 
586
- #: .././admin/setup.php:177 .././admin/widgets.php:137
587
  msgid "Organic"
588
  msgstr "Traffico da motorI di ricerca"
589
 
590
- #: .././admin/setup.php:178 .././admin/setup.php:192
591
- #: .././admin/widgets.php:138 .././admin/widgets.php:879
592
- #: .././tools/gapi.php:394
593
  msgid "Page Views"
594
  msgstr "Pagine viste"
595
 
596
- #: .././admin/setup.php:179 .././admin/setup.php:193
597
- #: .././admin/widgets.php:139 .././admin/widgets.php:883
598
- #: .././tools/gapi.php:397
599
  msgid "Bounce Rate"
600
  msgstr "Frequenza di rimbalzo"
601
 
602
- #: .././admin/setup.php:180 .././admin/widgets.php:140
603
  msgid "Location"
604
  msgstr "Posizione geografica"
605
 
606
- #: .././admin/setup.php:181 .././admin/widgets.php:142 .././tools/gapi.php:566
 
607
  msgid "Referrers"
608
  msgstr "Siti di origine del traffico"
609
 
610
- #: .././admin/setup.php:182 .././admin/widgets.php:143 .././tools/gapi.php:612
611
- #: .././tools/gapi.php:918
612
  msgid "Searches"
613
  msgstr "Ricerche"
614
 
615
- #: .././admin/setup.php:183 .././admin/widgets.php:144
616
  msgid "Traffic Details"
617
  msgstr "Dettagli traffico"
618
 
619
- #: .././admin/setup.php:185 .././admin/widgets.php:510
620
- #: .././admin/widgets.php:607 .././admin/widgets.php:805
621
- #: .././admin/widgets.php:917 .././front/item-reports.php:97
622
  msgid "A JavaScript Error is blocking plugin resources!"
623
  msgstr "Un errore JavaScript sta bloccando le risorse del plugin"
624
 
625
- #: .././admin/setup.php:186 .././admin/widgets.php:713
626
  msgid "Traffic Mediums"
627
  msgstr "Origine del traffico in %"
628
 
629
- #: .././admin/setup.php:187 .././admin/widgets.php:729
630
  msgid "Visitor Type"
631
  msgstr "Tipo di visitatore"
632
 
633
- #: .././admin/setup.php:188 .././admin/widgets.php:745
634
  msgid "Social Networks"
635
  msgstr "Social Networks"
636
 
637
- #: .././admin/setup.php:189 .././admin/widgets.php:761
638
  msgid "Search Engines"
639
  msgstr "Motori di ricerca"
640
 
641
- #: .././admin/setup.php:194 .././admin/widgets.php:887
 
642
  msgid "Organic Search"
643
  msgstr "Ricerca organica"
644
 
645
- #: .././admin/setup.php:195 .././admin/widgets.php:891
 
646
  msgid "Pages/Session"
647
  msgstr "Pagine per sessione"
648
 
649
- #: .././admin/setup.php:196 .././admin/widgets.php:523
650
- #: .././admin/widgets.php:541 .././admin/widgets.php:620
651
- #: .././admin/widgets.php:638 .././admin/widgets.php:657
652
- #: .././admin/widgets.php:676 .././admin/widgets.php:696
653
- #: .././admin/widgets.php:819 .././admin/widgets.php:930
654
- #: .././admin/widgets.php:949 .././front/item-reports.php:109
655
- #: .././front/item-reports.php:128
 
656
  msgid "Invalid response, more details in JavaScript Console (F12)."
657
  msgstr ""
658
  "Risposta non valida, ulteriori dettagli nella console JavaScript (F12)."
659
 
660
- #: .././admin/setup.php:197
661
  msgid "Not enough data collected"
662
  msgstr "Dati raccolti insufficienti"
663
 
664
- #: .././admin/setup.php:198 .././admin/widgets.php:528
665
- #: .././admin/widgets.php:546 .././admin/widgets.php:625
666
- #: .././admin/widgets.php:643 .././admin/widgets.php:662
667
- #: .././admin/widgets.php:681 .././admin/widgets.php:701
668
- #: .././admin/widgets.php:824 .././admin/widgets.php:827
669
- #: .././admin/widgets.php:935 .././admin/widgets.php:954
670
- #: .././front/item-reports.php:114 .././front/item-reports.php:133
671
- #: .././front/widgets.php:110
672
  msgid "This report is unavailable"
673
  msgstr "Questo rapporto non &egrave; disponibile"
674
 
675
- #: .././admin/setup.php:199
676
  msgid "report generated by"
677
  msgstr "rapporto generato da"
678
 
679
- #: .././admin/setup.php:233
680
  msgid "Settings"
681
  msgstr "Impostazioni"
682
 
683
- #: .././admin/widgets.php:33 .././front/widgets.php:22
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
684
  msgid "Google Analytics Dashboard"
685
  msgstr "Bacheca di Google Analytics"
686
 
687
- #: .././admin/widgets.php:42
688
  msgid "This plugin needs an authorization:"
689
  msgstr "Questo plugin necessita di un&#39;autorizzazione:"
690
 
691
- #: .././admin/widgets.php:76
692
  msgid "Something went wrong while retrieving profiles list."
693
  msgstr ""
694
  "Qualcosa &egrave; andato male durante il recupero della lista dei profili."
695
 
696
- #: .././admin/widgets.php:76
697
  msgid "More details"
698
  msgstr "Altri dettagli"
699
 
700
- #: .././admin/widgets.php:89 .././admin/widgets.php:100
701
  msgid "An admin should asign a default Google Analytics Profile."
702
  msgstr ""
703
  "Un amministratore deve assegnare un profilo predefinito di Google Analytics."
704
 
705
- #: .././admin/widgets.php:89 .././admin/widgets.php:100
706
  msgid "Select Domain"
707
  msgstr "Seleziona dominio"
708
 
709
- #: .././admin/widgets.php:105
710
  msgid ""
711
  "Something went wrong while retrieving property data. You need to create and "
712
  "properly configure a Google Analytics account:"
@@ -714,192 +738,210 @@ msgstr ""
714
  "Qualcosa &egrave; andato male durante il recupero dei dati. &Egrave; "
715
  "necessario creare e configurare correttamente un account di Google Analytics:"
716
 
717
- #: .././admin/widgets.php:105
718
  msgid "Find out more!"
719
  msgstr "Per saperne di pi&ugrave;!"
720
 
721
- #: .././admin/widgets.php:125
722
  msgid "Real-Time"
723
  msgstr "In tempo reale"
724
 
725
- #: .././admin/widgets.php:129 .././front/widgets.php:77
726
- #: .././front/widgets.php:183
727
- msgid "Last 14 Days"
728
- msgstr "Ultimi 14 giorni"
729
-
730
- #: .././admin/widgets.php:135 .././admin/widgets.php:871
731
- #: .././front/widgets.php:46 .././tools/gapi.php:406 .././tools/gapi.php:567
732
- #: .././tools/gapi.php:613 .././tools/gapi.php:676 .././tools/gapi.php:786
733
- #: .././tools/gapi.php:827 .././tools/gapi.php:919
734
  msgid "Sessions"
735
  msgstr "Sessioni"
736
 
737
- #: .././admin/widgets.php:141 .././tools/gapi.php:521
738
  msgid "Pages"
739
  msgstr "Pagine"
740
 
741
- #: .././admin/widgets.php:232 .././admin/widgets.php:472
742
  msgid "REFERRAL"
743
  msgstr "TRAFFICO DA SITI REFERENTI (REFERRALS)"
744
 
745
- #: .././admin/widgets.php:236 .././admin/widgets.php:473
746
  msgid "ORGANIC"
747
  msgstr "TRAFFICO DA MOTORI DI RICERCA (ORGANICO)"
748
 
749
- #: .././admin/widgets.php:240 .././admin/widgets.php:360
750
- #: .././admin/widgets.php:474
751
  msgid "SOCIAL"
752
  msgstr "TRAFFICO DAI SOCIAL NETWORK"
753
 
754
- #: .././admin/widgets.php:244 .././admin/widgets.php:363
755
- #: .././admin/widgets.php:475
756
  msgid "CAMPAIGN"
757
  msgstr "CAMPAGNA"
758
 
759
- #: .././admin/widgets.php:248 .././admin/widgets.php:366
760
- #: .././admin/widgets.php:478
761
  msgid "DIRECT"
762
  msgstr "TRAFFICO DIRETTO"
763
 
764
- #: .././admin/widgets.php:252 .././admin/widgets.php:479
765
  msgid "NEW"
766
  msgstr "VISITATORI NUOVI"
767
 
768
- #: .././admin/widgets.php:354
769
  msgid "REFERRALS"
770
  msgstr "TRAFFICO DA SITI REFERENTI (REFERRALS)"
771
 
772
- #: .././admin/widgets.php:357
773
  msgid "KEYWORDS"
774
  msgstr "KEYWORDS"
775
 
776
- #: .././front/item-reports.php:143
777
- msgid "Views vs UniqueViews"
778
- msgstr "Visualizzazioni vs Visualizzazioni singole"
779
-
780
- #: .././front/item-reports.php:193
781
- msgid "Google Analytics Reports"
782
- msgstr "Rapporti di Google Analytics"
783
-
784
- #: .././front/widgets.php:23
785
  msgid "Will display your google analytics stats in a widget"
786
  msgstr "Visualizza le statistiche di Google Analytics in un widget"
787
 
788
- #: .././front/widgets.php:46 .././tools/gapi.php:827
789
  msgid "trend"
790
  msgstr "tendenza"
791
 
792
- #: .././front/widgets.php:133
793
  msgid "Period:"
794
  msgstr "Periodo:"
795
 
796
- #: .././front/widgets.php:133
797
  msgid "Sessions:"
798
  msgstr "Sessioni:"
799
 
800
- #: .././front/widgets.php:137
801
  msgid "generated by"
802
  msgstr "generato da"
803
 
804
- #: .././front/widgets.php:147
805
  msgid "Google Analytics Stats"
806
  msgstr "Statistiche di Google Analytics"
807
 
808
- #: .././front/widgets.php:154
809
  msgid "Title:"
810
  msgstr "Titolo:"
811
 
812
- #: .././front/widgets.php:161
813
  msgid "Display:"
814
  msgstr "Mostra:"
815
 
816
- #: .././front/widgets.php:165
817
  msgid "Chart & Totals"
818
  msgstr "Grafico & Totali"
819
 
820
- #: .././front/widgets.php:166
821
  msgid "Chart"
822
  msgstr "Grafico"
823
 
824
- #: .././front/widgets.php:167
825
  msgid "Totals"
826
  msgstr "Totali"
827
 
828
- #: .././front/widgets.php:171
829
  msgid "Anonymize stats:"
830
  msgstr "Anonimizza le statistiche:"
831
 
832
- #: .././front/widgets.php:178
833
  msgid "Stats for:"
834
  msgstr "Statistiche per:"
835
 
836
- #: .././front/widgets.php:188
837
  msgid "Give credits:"
838
  msgstr "Crediti:"
839
 
840
- #: .././gadwp.php:46 .././gadwp.php:55 .././gadwp.php:63
841
  msgid "This is not allowed, read the documentation!"
842
  msgstr "Questo non &egrave; permesso, leggi la documentazione"
843
 
844
- #: .././tools/gapi.php:134
845
  msgid "Use this link to get your access code:"
846
  msgstr "Utilizza questo link per ottenere il codice di accesso:"
847
 
848
- #: .././tools/gapi.php:134
849
  msgid "Get Access Code"
850
  msgstr "Ottieni codice di accesso"
851
 
852
- #: .././tools/gapi.php:138 .././tools/gapi.php:139
853
  msgid "Use the red link to get your access code!"
854
  msgstr "Utilizza il link rosso per ottenere il tuo codice di accesso!"
855
 
856
- #: .././tools/gapi.php:138
857
  msgid "Access Code:"
858
  msgstr "Codice di accesso:"
859
 
860
- #: .././tools/gapi.php:145
861
  msgid "Save Access Code"
862
  msgstr "Salva codice di accesso"
863
 
864
- #: .././tools/gapi.php:400
865
  msgid "Organic Searches"
866
  msgstr "Ricerche organiche"
867
 
868
- #: .././tools/gapi.php:403
869
  msgid "Unique Page Views"
870
  msgstr "Visualizzazioni pagine singole"
871
 
872
- #: .././tools/gapi.php:411
873
  msgid "Hour"
874
  msgstr "Ora"
875
 
876
- #: .././tools/gapi.php:414 .././tools/gapi.php:826 .././tools/gapi.php:876
877
  msgid "Date"
878
  msgstr "Data"
879
 
880
- #: .././tools/gapi.php:522 .././tools/gapi.php:877
881
  msgid "Views"
882
  msgstr "Visualizzazioni"
883
 
884
- #: .././tools/gapi.php:640
885
  msgid "Countries"
886
  msgstr "Paesi"
887
 
888
- #: .././tools/gapi.php:650
889
  msgid "Cities from"
890
  msgstr "Paese: "
891
 
892
- #: .././tools/gapi.php:722
893
  msgid "Channels"
894
  msgstr "Canali"
895
 
896
- #: .././tools/gapi.php:785
897
  msgid "Type"
898
  msgstr "Tipo"
899
 
900
- #: .././tools/gapi.php:878
901
- msgid "UniqueViews"
902
- msgstr "Visualizzazioni uniche"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
903
 
904
  #~ msgid "Read %s for more information about Frontend Features and Options."
905
  #~ msgstr ""
3
  "Project-Id-Version: Google Analytics Dashboard for WP 4.7\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-"
5
  "dashboard-for-wp\n"
6
+ "POT-Creation-Date: 2015-07-05 16:08+0300\n"
7
+ "PO-Revision-Date: 2015-07-05 16:08+0300\n"
8
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
9
  "Language-Team: L.E.O.X. <leoxleox73@gmail.com>\n"
10
  "Language: it\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Poedit 1.8.2\n"
15
+ "X-Poedit-KeywordsList: __;_e;_n;_x;_ex;_nx;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;esc_html_x;_n_noop;_nx_noop\n"
16
  "X-Poedit-Basepath: .\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
  "X-Poedit-SearchPath-0: ../.\n"
20
 
21
+ #: .././admin/item-reports.php:61 .././front/item-reports.php:29
22
  msgid "Analytics"
23
  msgstr "Analytics"
24
 
25
+ #: .././admin/settings.php:89 .././admin/settings.php:184
26
+ #: .././admin/settings.php:318 .././admin/settings.php:795
27
+ #: .././admin/settings.php:1068
28
  msgid "Settings saved."
29
  msgstr "Impostazioni salvate."
30
 
31
+ #: .././admin/settings.php:91 .././admin/settings.php:186
32
+ #: .././admin/settings.php:320 .././admin/settings.php:772
33
+ #: .././admin/settings.php:782 .././admin/settings.php:791
34
+ #: .././admin/settings.php:797 .././admin/settings.php:808
35
+ #: .././admin/settings.php:1029 .././admin/settings.php:1054
36
+ #: .././admin/settings.php:1064 .././admin/settings.php:1070
37
+ #: .././admin/settings.php:1081
38
  msgid "Cheating Huh?"
39
  msgstr "Tentativo di frode?"
40
 
41
+ #: .././admin/settings.php:95 .././admin/settings.php:190
42
+ #: .././admin/settings.php:324 .././admin/settings.php:641
43
+ #: .././admin/settings.php:823 .././admin/settings.php:1095
44
  #, php-format
45
  msgid "Something went wrong, check %1$s or %2$s."
46
  msgstr "Qualcosa &egrave; andato male, controlla %1$s o %2$s."
47
 
48
+ #: .././admin/settings.php:95 .././admin/settings.php:190
49
+ #: .././admin/settings.php:324 .././admin/settings.php:641
50
+ #: .././admin/settings.php:823 .././admin/settings.php:1095
51
+ #: .././admin/setup.php:46 .././admin/setup.php:59
52
  msgid "Errors & Debug"
53
  msgstr "Errori & Debug"
54
 
55
+ #: .././admin/settings.php:95 .././admin/settings.php:190
56
+ #: .././admin/settings.php:324 .././admin/settings.php:641
57
+ #: .././admin/settings.php:823 .././admin/settings.php:1095
58
  msgid "authorize the plugin"
59
  msgstr "autorizza il plugin"
60
 
61
+ #: .././admin/settings.php:100
62
  msgid "Google Analytics Frontend Settings"
63
  msgstr "Impostazioni Frontend di Google Analytics "
64
 
65
+ #: .././admin/settings.php:110 .././admin/settings.php:205
66
  msgid "Permissions"
67
  msgstr "Permessi"
68
 
69
+ #: .././admin/settings.php:113 .././admin/settings.php:208
70
  msgid "Show stats to:"
71
  msgstr "Mostra statistiche a:"
72
 
73
+ #: .././admin/settings.php:154
74
+ msgid "enable web page reports on frontend"
75
  msgstr ""
 
 
76
 
77
+ #: .././admin/settings.php:161 .././admin/settings.php:297
78
+ #: .././admin/settings.php:598 .././admin/settings.php:943
79
+ #: .././admin/settings.php:1232
 
 
 
 
80
  msgid "Save Changes"
81
  msgstr "Salva le modifiche"
82
 
83
+ #: .././admin/settings.php:195
84
  msgid "Google Analytics Backend Settings"
85
  msgstr "Impostazioni Backend di Google Analytics"
86
 
87
+ #: .././admin/settings.php:251
88
  msgid "enable Switch View functionality"
89
  msgstr "abilita la funzionalit&agrave; Visualizza"
90
 
91
+ #: .././admin/settings.php:262
92
  msgid "enable reports on Posts List and Pages List"
93
  msgstr "abilita rapporti nella lista pagine e post"
94
 
95
+ #: .././admin/settings.php:273
96
  msgid "enable the main Dashboard Widget"
97
  msgstr "abilita il widget principale nella bacheca"
98
 
99
+ #: .././admin/settings.php:277
100
  msgid "Real-Time Settings"
101
  msgstr "Impostazioni In tempo reale"
102
 
103
+ #: .././admin/settings.php:280
104
  msgid "Maximum number of pages to display on real-time tab:"
105
  msgstr "Numero massimo di pagine da visualizzare nella scheda in tempo reale:"
106
 
107
+ #: .././admin/settings.php:285
108
  msgid "Location Settings"
109
  msgstr "Impostazioni posizione geografica"
110
 
111
+ #: .././admin/settings.php:289
112
  msgid "Target Geo Map to country:"
113
  msgstr "Cartina geografica per il paese:"
114
 
115
+ #: .././admin/settings.php:327
116
  msgid ""
117
  "The tracking component is disabled. You should set <strong>Tracking Options</"
118
  "strong> to <strong>Enabled</strong>"
120
  "Il componente di monitoraggio &egrave; disabilitato. &Egrave; necessario "
121
  "impostare il <strong>Monitoraggio</strong> su <strong>Abilitato</strong>"
122
 
123
+ #: .././admin/settings.php:332
124
  msgid "Google Analytics Tracking Code"
125
  msgstr "Impostazioni Monitoraggio di Google Analytics "
126
 
127
+ #: .././admin/settings.php:341
128
  msgid "Basic Settings"
129
  msgstr "Impostazioni di base"
130
 
131
+ #: .././admin/settings.php:342 .././admin/settings.php:408
132
  msgid "Events Tracking"
133
  msgstr "Impostazioni eventi"
134
 
135
+ #: .././admin/settings.php:343 .././admin/settings.php:456
136
  msgid "Custom Definitions"
137
  msgstr "Impostazioni definizioni personalizzate"
138
 
139
+ #: .././admin/settings.php:344 .././admin/settings.php:554
140
+ #: .././admin/settings.php:1215
141
  msgid "Exclude Tracking"
142
  msgstr "Escludi monitoraggio"
143
 
144
+ #: .././admin/settings.php:345
145
  msgid "Advanced Settings"
146
  msgstr "Impostazioni avanzate"
147
 
148
+ #: .././admin/settings.php:353
149
  msgid "Tracking Settings"
150
  msgstr "Stato del monitoraggio"
151
 
152
+ #: .././admin/settings.php:356
153
  msgid "Tracking Options:"
154
  msgstr "Monitoraggio:"
155
 
156
+ #: .././admin/settings.php:358
157
  msgid "Disabled"
158
  msgstr "Disabilitato"
159
 
160
+ #: .././admin/settings.php:359
161
  msgid "Enabled"
162
  msgstr "Abilitato"
163
 
164
+ #: .././admin/settings.php:367 .././admin/settings.php:888
165
+ #: .././admin/settings.php:910 .././admin/settings.php:1188
166
+ #: .././admin/widgets.php:61
167
  msgid "View Name:"
168
  msgstr "Mostra nome:"
169
 
170
+ #: .././admin/settings.php:367 .././admin/settings.php:910
171
  msgid "Tracking ID:"
172
  msgstr "ID monitoraggio:"
173
 
174
+ #: .././admin/settings.php:367 .././admin/settings.php:910
175
  msgid "Default URL:"
176
  msgstr "URL predefinito:"
177
 
178
+ #: .././admin/settings.php:367 .././admin/settings.php:910
179
  msgid "Time Zone:"
180
  msgstr "Fuso orario:"
181
 
182
+ #: .././admin/settings.php:372
183
  msgid "Basic Tracking"
184
  msgstr "Impostazioni di base"
185
 
186
+ #: .././admin/settings.php:375
187
  msgid "Tracking Type:"
188
  msgstr "Tipo:"
189
 
190
+ #: .././admin/settings.php:377
191
  msgid "Classic Analytics"
192
  msgstr "Classic Analytics"
193
 
194
+ #: .././admin/settings.php:378
195
  msgid "Universal Analytics"
196
  msgstr "Universal Analytics"
197
 
198
+ #: .././admin/settings.php:389
199
  msgid "anonymize IPs while tracking"
200
  msgstr "rendi anonimi gli indirizzi IP durante il monitoraggio"
201
 
202
+ #: .././admin/settings.php:400
203
  msgid "enable remarketing, demographics and interests reports"
204
  msgstr "abilita il remarketing e i rapporti demografici e sugli interessi."
205
 
206
+ #: .././admin/settings.php:418
207
  msgid "track downloads, mailto and outbound links"
208
  msgstr "monitora i download, le e-mail e i link in uscita"
209
 
210
+ #: .././admin/settings.php:422
211
  msgid "Downloads Regex:"
212
  msgstr "Abbreviazioni downloads:"
213
 
214
+ #: .././admin/settings.php:433
215
  msgid "track affiliate links matching this regex"
216
  msgstr "monitora i link di affiliazione corrispondenti a aquesto regex"
217
 
218
+ #: .././admin/settings.php:437
219
  msgid "Affiliates Regex:"
220
  msgstr "Abbreviazioni associate:"
221
 
222
+ #: .././admin/settings.php:448
223
  msgid "track fragment identifiers, hashmarks (#) in URI links"
224
  msgstr ""
225
  "monitora gli identificatori di frammento, hashmarks (#) nei collegamenti URI"
226
 
227
+ #: .././admin/settings.php:459
228
  msgid "Authors:"
229
  msgstr "Autori:"
230
 
231
+ #: .././admin/settings.php:467
232
  msgid "Publication Year:"
233
  msgstr "Anno di pubblicazione:"
234
 
235
+ #: .././admin/settings.php:475
236
  msgid "Categories:"
237
  msgstr "Categorie:"
238
 
239
+ #: .././admin/settings.php:483
240
  msgid "User Type:"
241
  msgstr "Tipo di utente:"
242
 
243
+ #: .././admin/settings.php:495
244
  msgid "Advanced Tracking"
245
  msgstr "Impostazioni avanzate"
246
 
247
+ #: .././admin/settings.php:498
248
  msgid "Page Speed SR:"
249
  msgstr "Page Speed Sample Rate:"
250
 
251
+ #: .././admin/settings.php:509
252
  msgid "exclude events from bounce-rate calculation"
253
  msgstr "escludi gli eventi nel calcolo della frequenza di rimbalzo"
254
 
255
+ #: .././admin/settings.php:520
256
  msgid "enable enhanced link attribution"
257
  msgstr "abilita l&apos;attribuzione avanzata dei link"
258
 
259
+ #: .././admin/settings.php:531
260
  msgid "enable AdSense account linking"
261
  msgstr "abilita AdSense account linking"
262
 
263
+ #: .././admin/settings.php:542
264
  msgid "enable cross domain tracking"
265
  msgstr "abilita il monitoraggio cross domain"
266
 
267
+ #: .././admin/settings.php:546
268
  msgid "Cross Domains:"
269
  msgstr " Cross Domains:"
270
 
271
+ #: .././admin/settings.php:557
272
  msgid "Exclude tracking for:"
273
  msgstr "Escludi per:"
274
 
275
+ #: .././admin/settings.php:645
276
  msgid "Google Analytics Errors & Debugging"
277
  msgstr "Errori & Debugging di Google Analytics"
278
 
279
+ #: .././admin/settings.php:655
280
  msgid "Errors & Details"
281
  msgstr "Errori & Dettagli"
282
 
283
+ #: .././admin/settings.php:656
284
  msgid "Plugin Settings"
285
  msgstr "Impostazioni plugin"
286
 
287
+ #: .././admin/settings.php:663
288
  msgid "Last Error detected"
289
  msgstr "Ultimo errore rilevato"
290
 
291
+ #: .././admin/settings.php:669 .././admin/settings.php:682
292
  msgid "None"
293
  msgstr "Nessuno"
294
 
295
+ #: .././admin/settings.php:676
296
  msgid "Error Details"
297
  msgstr "Dettagli errore"
298
 
299
+ #: .././admin/settings.php:696
300
  msgid "Plugin Configuration"
301
  msgstr "Configurazione plugin"
302
 
303
+ #: .././admin/settings.php:717 .././admin/settings.php:980
304
  msgid ""
305
  "Loading the required libraries. If this results in a blank screen or a fatal "
306
  "error, try this solution:"
308
  "Caricamento delle librerie richieste. Se viene restituita una schermata "
309
  "vuota o si verifica un errore fatale, provare questa soluzione:"
310
 
311
+ #: .././admin/settings.php:717
312
  msgid "Library conflicts between WordPress plugins"
313
  msgstr "Conflitti tra le librerie dei plugins di WordPress"
314
 
315
+ #: .././admin/settings.php:732 .././admin/settings.php:997
316
  msgid "Plugin authorization succeeded."
317
  msgstr "Autorizzazione plugin riuscita."
318
 
319
+ #: .././admin/settings.php:747 .././admin/settings.php:1020
320
  msgid ""
321
  "The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
322
  "(UA-XXXXX-X). Try again, and use the red link to get your access code"
325
  "strong> (UA-XXXXX-X). Prova di nuovo utilizzando il link rosso per ottenere "
326
  "il codice di accesso"
327
 
328
+ #: .././admin/settings.php:770 .././admin/settings.php:1052
329
  msgid "Cleared Cache."
330
  msgstr "Cache eliminata."
331
 
332
+ #: .././admin/settings.php:779 .././admin/settings.php:1061
333
  msgid "Token Reseted and Revoked."
334
  msgstr "Token azzerato e revocato."
335
 
336
+ #: .././admin/settings.php:789
337
  msgid "All errors reseted."
338
  msgstr "Tutti gli errori azzerati."
339
 
340
+ #: .././admin/settings.php:802 .././admin/settings.php:1075
341
  msgid "All other domains/properties were removed."
342
  msgstr "Tutti gli altri domini/propriet&agrave; sono stati rimossi."
343
 
344
+ #: .././admin/settings.php:813 .././admin/settings.php:1086
345
  msgid "Google Analytics Settings"
346
  msgstr "Impostazioni di Google Analytics"
347
 
348
+ #: .././admin/settings.php:828 .././admin/settings.php:1100
349
  msgid "Use the red link (see below) to generate and get your access code!"
350
  msgstr ""
351
  "Utilizza il link rosso (vedi sotto) per generare ed ottenere il tuo codice "
352
  "di accesso!"
353
 
354
+ #: .././admin/settings.php:839 .././admin/settings.php:1128
355
  msgid "Plugin Authorization"
356
  msgstr "Autorizzazione plugin"
357
 
358
+ #: .././admin/settings.php:844 .././admin/settings.php:1132
359
  #, php-format
360
  msgid ""
361
  "You should watch the %1$s and read this %2$s before proceeding to "
366
  "autorizzazione. Questo plugin richiede un account di Google Analytics "
367
  "correttamente configurato!"
368
 
369
+ #: .././admin/settings.php:844 .././admin/settings.php:1132
370
  msgid "video"
371
  msgstr "video"
372
 
373
+ #: .././admin/settings.php:844 .././admin/settings.php:1132
374
  msgid "tutorial"
375
  msgstr "guida"
376
 
377
+ #: .././admin/settings.php:849 .././admin/settings.php:1139
378
  msgid "use your own API Project credentials"
379
  msgstr "utilizza le tue credenziali API"
380
 
381
+ #: .././admin/settings.php:854 .././admin/settings.php:1147
382
  msgid "API Key:"
383
  msgstr "Chiave API:"
384
 
385
+ #: .././admin/settings.php:858 .././admin/settings.php:1151
386
  msgid "Client ID:"
387
  msgstr "ID Cliente:"
388
 
389
+ #: .././admin/settings.php:862 .././admin/settings.php:1155
390
  msgid "Client Secret:"
391
  msgstr "Client Secret:"
392
 
393
+ #: .././admin/settings.php:872 .././admin/settings.php:1165
394
  msgid "Clear Authorization"
395
  msgstr "Revoca autorizzazione"
396
 
397
+ #: .././admin/settings.php:872 .././admin/settings.php:950
398
+ #: .././admin/settings.php:1165 .././admin/settings.php:1241
399
  msgid "Clear Cache"
400
  msgstr "Elimina cache"
401
 
402
+ #: .././admin/settings.php:872
403
  msgid "Reset Errors"
404
  msgstr "Azzera errori."
405
 
406
+ #: .././admin/settings.php:878 .././admin/setup.php:42 .././admin/setup.php:58
407
  msgid "General Settings"
408
  msgstr "Impostazioni generali"
409
 
410
+ #: .././admin/settings.php:881
411
  msgid "Select View:"
412
  msgstr "Seleziona vista:"
413
 
414
+ #: .././admin/settings.php:892 .././admin/settings.php:1192
415
  msgid "Property not found"
416
  msgstr "Propriet&agrave; non trovata"
417
 
418
+ #: .././admin/settings.php:898
419
  msgid "Lock Selection"
420
  msgstr "Blocca selezione"
421
 
422
+ #: .././admin/settings.php:917
423
  msgid "Theme Color:"
424
  msgstr "Colore tema:"
425
 
426
+ #: .././admin/settings.php:925 .././admin/settings.php:1201
427
  msgid "Automatic Updates"
428
  msgstr "Aggiornamenti automatici"
429
 
430
+ #: .././admin/settings.php:935 .././admin/settings.php:1211
431
  msgid ""
432
  "automatic updates for minor versions (security and maintenance releases only)"
433
  msgstr ""
434
  "aggiornamenti automatici per le release minori (solo di manutenzione e "
435
  "sicurezza)"
436
 
437
+ #: .././admin/settings.php:950 .././admin/settings.php:1241
438
+ #: .././admin/widgets.php:32
439
  msgid "Authorize Plugin"
440
  msgstr "Autorizza plugin"
441
 
442
+ #: .././admin/settings.php:1026
443
  msgid "Properties refreshed."
444
  msgstr "Propriet&agrave; aggiornate."
445
 
446
+ #: .././admin/settings.php:1110
447
  msgid "Network Setup"
448
  msgstr "Configurazione della rete"
449
 
450
+ #: .././admin/settings.php:1120
451
  msgid "use a single Google Analytics account for the entire network"
452
  msgstr "utilizza un unico account di Google Analytics per tutta la rete"
453
 
454
+ #: .././admin/settings.php:1165
455
  msgid "Refresh Properties"
456
  msgstr "Aggiorna propriet&agrave;"
457
 
458
+ #: .././admin/settings.php:1171
459
  msgid "Properties/Views Settings"
460
  msgstr "Propriet&agrave;/Mostra impostazioni"
461
 
462
+ #: .././admin/settings.php:1225
463
  msgid "exclude Super Admin tracking for the entire network"
464
  msgstr "escludi il monitoraggio dell&apos;amministratore su tutta la rete"
465
 
466
+ #: .././admin/settings.php:1273
467
  msgid "Setup Tutorial & Demo"
468
  msgstr "Guida all&apos;installazione & Demo"
469
 
470
+ #: .././admin/settings.php:1281
471
+ msgid "Follow & Review"
472
+ msgstr ""
 
 
 
 
 
473
 
474
  #: .././admin/settings.php:1307
475
  #, php-format
524
  msgid "Web Analytics"
525
  msgstr "Web Analytics"
526
 
527
+ #: .././admin/setup.php:41 .././admin/setup.php:57
528
  msgid "Google Analytics"
529
  msgstr "Google Analytics"
530
 
531
+ #: .././admin/setup.php:43
532
  msgid "Backend Settings"
533
  msgstr "Impostazioni backend"
534
 
535
+ #: .././admin/setup.php:44
536
  msgid "Frontend Settings"
537
  msgstr "Impostazioni frontend"
538
 
539
+ #: .././admin/setup.php:45
540
  msgid "Tracking Code"
541
  msgstr "Monitoraggio"
542
 
543
+ #: .././admin/setup.php:159 .././admin/widgets.php:117 .././front/setup.php:71
544
  msgid "Today"
545
  msgstr "Oggi"
546
 
547
+ #: .././admin/setup.php:160 .././admin/widgets.php:118 .././front/setup.php:72
548
  msgid "Yesterday"
549
  msgstr "Ieri"
550
 
551
+ #: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
552
+ #: .././admin/setup.php:164 .././admin/widgets.php:119
553
+ #: .././admin/widgets.php:120 .././admin/widgets.php:121
554
+ #: .././admin/widgets.php:122 .././front/setup.php:73 .././front/setup.php:74
555
+ #: .././front/setup.php:75 .././front/setup.php:76 .././front/widgets.php:64
556
+ #: .././front/widgets.php:67 .././front/widgets.php:70
557
+ #: .././front/widgets.php:158 .././front/widgets.php:159
558
+ #: .././front/widgets.php:160
559
+ #, php-format
560
+ msgid "Last %d Days"
561
+ msgstr "Ultimi %d giorni"
562
+
563
+ #: .././admin/setup.php:165 .././admin/setup.php:166
564
+ #: .././admin/widgets.php:123 .././admin/widgets.php:124
565
+ #: .././front/setup.php:77 .././front/setup.php:78
566
+ #, php-format
567
+ msgid "%s Year"
568
+ msgstr ""
569
 
570
+ #: .././admin/setup.php:165 .././admin/widgets.php:123 .././front/setup.php:77
571
+ msgid "One"
572
+ msgstr ""
 
573
 
574
+ #: .././admin/setup.php:166 .././admin/widgets.php:124 .././front/setup.php:78
575
+ msgid "Three"
576
+ msgstr ""
577
 
578
+ #: .././admin/setup.php:169 .././admin/setup.php:185 .././front/setup.php:81
579
+ #: .././front/setup.php:97
580
  msgid "Unique Views"
581
  msgstr "Visualizzazioni singole"
582
 
583
+ #: .././admin/setup.php:170 .././admin/setup.php:186
584
+ #: .././admin/widgets.php:130 .././admin/widgets.php:830
585
+ #: .././front/setup.php:82 .././front/setup.php:98 .././tools/gapi.php:358
586
  msgid "Users"
587
  msgstr "Utenti"
588
 
589
+ #: .././admin/setup.php:171 .././admin/widgets.php:131 .././front/setup.php:83
590
  msgid "Organic"
591
  msgstr "Traffico da motorI di ricerca"
592
 
593
+ #: .././admin/setup.php:172 .././admin/setup.php:187
594
+ #: .././admin/widgets.php:132 .././admin/widgets.php:834
595
+ #: .././front/setup.php:84 .././front/setup.php:99 .././tools/gapi.php:361
596
  msgid "Page Views"
597
  msgstr "Pagine viste"
598
 
599
+ #: .././admin/setup.php:173 .././admin/setup.php:188
600
+ #: .././admin/widgets.php:133 .././admin/widgets.php:838
601
+ #: .././front/setup.php:85 .././front/setup.php:100 .././tools/gapi.php:364
602
  msgid "Bounce Rate"
603
  msgstr "Frequenza di rimbalzo"
604
 
605
+ #: .././admin/setup.php:174 .././admin/widgets.php:134 .././front/setup.php:86
606
  msgid "Location"
607
  msgstr "Posizione geografica"
608
 
609
+ #: .././admin/setup.php:175 .././admin/widgets.php:136 .././front/setup.php:87
610
+ #: .././tools/gapi.php:503
611
  msgid "Referrers"
612
  msgstr "Siti di origine del traffico"
613
 
614
+ #: .././admin/setup.php:176 .././admin/widgets.php:137 .././front/setup.php:88
615
+ #: .././tools/gapi.php:536
616
  msgid "Searches"
617
  msgstr "Ricerche"
618
 
619
+ #: .././admin/setup.php:177 .././admin/widgets.php:138 .././front/setup.php:89
620
  msgid "Traffic Details"
621
  msgstr "Dettagli traffico"
622
 
623
+ #: .././admin/setup.php:180 .././admin/widgets.php:505
624
+ #: .././admin/widgets.php:590 .././admin/widgets.php:757
625
+ #: .././admin/widgets.php:861 .././front/setup.php:92
626
  msgid "A JavaScript Error is blocking plugin resources!"
627
  msgstr "Un errore JavaScript sta bloccando le risorse del plugin"
628
 
629
+ #: .././admin/setup.php:181 .././admin/widgets.php:681 .././front/setup.php:93
630
  msgid "Traffic Mediums"
631
  msgstr "Origine del traffico in %"
632
 
633
+ #: .././admin/setup.php:182 .././admin/widgets.php:696 .././front/setup.php:94
634
  msgid "Visitor Type"
635
  msgstr "Tipo di visitatore"
636
 
637
+ #: .././admin/setup.php:183 .././admin/widgets.php:711 .././front/setup.php:95
638
  msgid "Social Networks"
639
  msgstr "Social Networks"
640
 
641
+ #: .././admin/setup.php:184 .././admin/widgets.php:726 .././front/setup.php:96
642
  msgid "Search Engines"
643
  msgstr "Motori di ricerca"
644
 
645
+ #: .././admin/setup.php:189 .././admin/widgets.php:842
646
+ #: .././front/setup.php:101
647
  msgid "Organic Search"
648
  msgstr "Ricerca organica"
649
 
650
+ #: .././admin/setup.php:190 .././admin/widgets.php:846
651
+ #: .././front/setup.php:102
652
  msgid "Pages/Session"
653
  msgstr "Pagine per sessione"
654
 
655
+ #: .././admin/setup.php:191 .././admin/widgets.php:517
656
+ #: .././admin/widgets.php:531 .././admin/widgets.php:541
657
+ #: .././admin/widgets.php:602 .././admin/widgets.php:616
658
+ #: .././admin/widgets.php:630 .././admin/widgets.php:644
659
+ #: .././admin/widgets.php:658 .././admin/widgets.php:668
660
+ #: .././admin/widgets.php:770 .././admin/widgets.php:782
661
+ #: .././admin/widgets.php:873 .././admin/widgets.php:887
662
+ #: .././admin/widgets.php:897 .././front/setup.php:103
663
  msgid "Invalid response, more details in JavaScript Console (F12)."
664
  msgstr ""
665
  "Risposta non valida, ulteriori dettagli nella console JavaScript (F12)."
666
 
667
+ #: .././admin/setup.php:192 .././front/setup.php:104
668
  msgid "Not enough data collected"
669
  msgstr "Dati raccolti insufficienti"
670
 
671
+ #: .././admin/setup.php:193 .././admin/widgets.php:522
672
+ #: .././admin/widgets.php:536 .././admin/widgets.php:607
673
+ #: .././admin/widgets.php:621 .././admin/widgets.php:635
674
+ #: .././admin/widgets.php:649 .././admin/widgets.php:663
675
+ #: .././admin/widgets.php:775 .././admin/widgets.php:777
676
+ #: .././admin/widgets.php:878 .././admin/widgets.php:892
677
+ #: .././front/setup.php:105 .././front/widgets.php:100
 
678
  msgid "This report is unavailable"
679
  msgstr "Questo rapporto non &egrave; disponibile"
680
 
681
+ #: .././admin/setup.php:194 .././front/setup.php:106
682
  msgid "report generated by"
683
  msgstr "rapporto generato da"
684
 
685
+ #: .././admin/setup.php:225
686
  msgid "Settings"
687
  msgstr "Impostazioni"
688
 
689
+ #: .././admin/setup.php:237
690
+ #, php-format
691
+ msgid "Google Analytics Dashboard for WP has been updated to version %s."
692
+ msgstr ""
693
+
694
+ #: .././admin/setup.php:237
695
+ #, php-format
696
+ msgid "For details, check out %1$s and %2$s."
697
+ msgstr ""
698
+
699
+ #: .././admin/setup.php:237
700
+ msgid "the documentation page"
701
+ msgstr ""
702
+
703
+ #: .././admin/setup.php:237
704
+ msgid "the plugin&#39;s settings page"
705
+ msgstr ""
706
+
707
+ #: .././admin/widgets.php:27 .././front/widgets.php:21
708
  msgid "Google Analytics Dashboard"
709
  msgstr "Bacheca di Google Analytics"
710
 
711
+ #: .././admin/widgets.php:32
712
  msgid "This plugin needs an authorization:"
713
  msgstr "Questo plugin necessita di un&#39;autorizzazione:"
714
 
715
+ #: .././admin/widgets.php:66
716
  msgid "Something went wrong while retrieving profiles list."
717
  msgstr ""
718
  "Qualcosa &egrave; andato male durante il recupero della lista dei profili."
719
 
720
+ #: .././admin/widgets.php:66
721
  msgid "More details"
722
  msgstr "Altri dettagli"
723
 
724
+ #: .././admin/widgets.php:79 .././admin/widgets.php:90
725
  msgid "An admin should asign a default Google Analytics Profile."
726
  msgstr ""
727
  "Un amministratore deve assegnare un profilo predefinito di Google Analytics."
728
 
729
+ #: .././admin/widgets.php:79 .././admin/widgets.php:90
730
  msgid "Select Domain"
731
  msgstr "Seleziona dominio"
732
 
733
+ #: .././admin/widgets.php:95
734
  msgid ""
735
  "Something went wrong while retrieving property data. You need to create and "
736
  "properly configure a Google Analytics account:"
738
  "Qualcosa &egrave; andato male durante il recupero dei dati. &Egrave; "
739
  "necessario creare e configurare correttamente un account di Google Analytics:"
740
 
741
+ #: .././admin/widgets.php:95
742
  msgid "Find out more!"
743
  msgstr "Per saperne di pi&ugrave;!"
744
 
745
+ #: .././admin/widgets.php:116
746
  msgid "Real-Time"
747
  msgstr "In tempo reale"
748
 
749
+ #: .././admin/widgets.php:129 .././admin/widgets.php:826
750
+ #: .././front/widgets.php:36 .././tools/gapi.php:373 .././tools/gapi.php:503
751
+ #: .././tools/gapi.php:536 .././tools/gapi.php:586 .././tools/gapi.php:666
752
+ #: .././tools/gapi.php:695
 
 
 
 
 
753
  msgid "Sessions"
754
  msgstr "Sessioni"
755
 
756
+ #: .././admin/widgets.php:135 .././tools/gapi.php:471
757
  msgid "Pages"
758
  msgstr "Pagine"
759
 
760
+ #: .././admin/widgets.php:236 .././admin/widgets.php:478
761
  msgid "REFERRAL"
762
  msgstr "TRAFFICO DA SITI REFERENTI (REFERRALS)"
763
 
764
+ #: .././admin/widgets.php:240 .././admin/widgets.php:479
765
  msgid "ORGANIC"
766
  msgstr "TRAFFICO DA MOTORI DI RICERCA (ORGANICO)"
767
 
768
+ #: .././admin/widgets.php:244 .././admin/widgets.php:364
769
+ #: .././admin/widgets.php:480
770
  msgid "SOCIAL"
771
  msgstr "TRAFFICO DAI SOCIAL NETWORK"
772
 
773
+ #: .././admin/widgets.php:248 .././admin/widgets.php:367
774
+ #: .././admin/widgets.php:481
775
  msgid "CAMPAIGN"
776
  msgstr "CAMPAGNA"
777
 
778
+ #: .././admin/widgets.php:252 .././admin/widgets.php:370
779
+ #: .././admin/widgets.php:484
780
  msgid "DIRECT"
781
  msgstr "TRAFFICO DIRETTO"
782
 
783
+ #: .././admin/widgets.php:256 .././admin/widgets.php:485
784
  msgid "NEW"
785
  msgstr "VISITATORI NUOVI"
786
 
787
+ #: .././admin/widgets.php:358
788
  msgid "REFERRALS"
789
  msgstr "TRAFFICO DA SITI REFERENTI (REFERRALS)"
790
 
791
+ #: .././admin/widgets.php:361
792
  msgid "KEYWORDS"
793
  msgstr "KEYWORDS"
794
 
795
+ #: .././front/widgets.php:21
 
 
 
 
 
 
 
 
796
  msgid "Will display your google analytics stats in a widget"
797
  msgstr "Visualizza le statistiche di Google Analytics in un widget"
798
 
799
+ #: .././front/widgets.php:36 .././tools/gapi.php:695
800
  msgid "trend"
801
  msgstr "tendenza"
802
 
803
+ #: .././front/widgets.php:123
804
  msgid "Period:"
805
  msgstr "Periodo:"
806
 
807
+ #: .././front/widgets.php:123
808
  msgid "Sessions:"
809
  msgstr "Sessioni:"
810
 
811
+ #: .././front/widgets.php:127
812
  msgid "generated by"
813
  msgstr "generato da"
814
 
815
+ #: .././front/widgets.php:136
816
  msgid "Google Analytics Stats"
817
  msgstr "Statistiche di Google Analytics"
818
 
819
+ #: .././front/widgets.php:144
820
  msgid "Title:"
821
  msgstr "Titolo:"
822
 
823
+ #: .././front/widgets.php:147
824
  msgid "Display:"
825
  msgstr "Mostra:"
826
 
827
+ #: .././front/widgets.php:148
828
  msgid "Chart & Totals"
829
  msgstr "Grafico & Totali"
830
 
831
+ #: .././front/widgets.php:149
832
  msgid "Chart"
833
  msgstr "Grafico"
834
 
835
+ #: .././front/widgets.php:150
836
  msgid "Totals"
837
  msgstr "Totali"
838
 
839
+ #: .././front/widgets.php:154
840
  msgid "Anonymize stats:"
841
  msgstr "Anonimizza le statistiche:"
842
 
843
+ #: .././front/widgets.php:157
844
  msgid "Stats for:"
845
  msgstr "Statistiche per:"
846
 
847
+ #: .././front/widgets.php:164
848
  msgid "Give credits:"
849
  msgstr "Crediti:"
850
 
851
+ #: .././gadwp.php:46 .././gadwp.php:54 .././gadwp.php:61
852
  msgid "This is not allowed, read the documentation!"
853
  msgstr "Questo non &egrave; permesso, leggi la documentazione"
854
 
855
+ #: .././tools/gapi.php:128
856
  msgid "Use this link to get your access code:"
857
  msgstr "Utilizza questo link per ottenere il codice di accesso:"
858
 
859
+ #: .././tools/gapi.php:128
860
  msgid "Get Access Code"
861
  msgstr "Ottieni codice di accesso"
862
 
863
+ #: .././tools/gapi.php:132 .././tools/gapi.php:133
864
  msgid "Use the red link to get your access code!"
865
  msgstr "Utilizza il link rosso per ottenere il tuo codice di accesso!"
866
 
867
+ #: .././tools/gapi.php:132
868
  msgid "Access Code:"
869
  msgstr "Codice di accesso:"
870
 
871
+ #: .././tools/gapi.php:139
872
  msgid "Save Access Code"
873
  msgstr "Salva codice di accesso"
874
 
875
+ #: .././tools/gapi.php:367
876
  msgid "Organic Searches"
877
  msgstr "Ricerche organiche"
878
 
879
+ #: .././tools/gapi.php:370
880
  msgid "Unique Page Views"
881
  msgstr "Visualizzazioni pagine singole"
882
 
883
+ #: .././tools/gapi.php:378
884
  msgid "Hour"
885
  msgstr "Ora"
886
 
887
+ #: .././tools/gapi.php:382 .././tools/gapi.php:385 .././tools/gapi.php:695
888
  msgid "Date"
889
  msgstr "Data"
890
 
891
+ #: .././tools/gapi.php:471
892
  msgid "Views"
893
  msgstr "Visualizzazioni"
894
 
895
+ #: .././tools/gapi.php:557
896
  msgid "Countries"
897
  msgstr "Paesi"
898
 
899
+ #: .././tools/gapi.php:567
900
  msgid "Cities from"
901
  msgstr "Paese: "
902
 
903
+ #: .././tools/gapi.php:620
904
  msgid "Channels"
905
  msgstr "Canali"
906
 
907
+ #: .././tools/gapi.php:666
908
  msgid "Type"
909
  msgstr "Tipo"
910
 
911
+ #~ msgid "Last 7 Days"
912
+ #~ msgstr "Ultimi 7 giorni"
913
+
914
+ #~ msgid "Last 14 Days"
915
+ #~ msgstr "Ultimi 14 giorni"
916
+
917
+ #~ msgid "Last 30 Days"
918
+ #~ msgstr "Ultimi 30 giorni"
919
+
920
+ #~ msgid "Last 90 Days"
921
+ #~ msgstr "Ultimi 90 giorni"
922
+
923
+ #~ msgid "show page sessions and users in frontend (after each article)"
924
+ #~ msgstr ""
925
+ #~ "mostra la pagina delle sessioni e degli utenti nel frontend (dopo ogni "
926
+ #~ "articolo)"
927
+
928
+ #~ msgid "show page searches (after each article)"
929
+ #~ msgstr "mostra la pagina delle ricerche (dopo ogni articolo)"
930
+
931
+ #~ msgid "Support & Reviews"
932
+ #~ msgstr "Supporto & Recensioni"
933
+
934
+ #~ msgid "Plugin documentation and support on %s"
935
+ #~ msgstr "Documentazione del plugin e supporto su %s"
936
+
937
+ #~ msgid "Views vs UniqueViews"
938
+ #~ msgstr "Visualizzazioni vs Visualizzazioni singole"
939
+
940
+ #~ msgid "Google Analytics Reports"
941
+ #~ msgstr "Rapporti di Google Analytics"
942
+
943
+ #~ msgid "UniqueViews"
944
+ #~ msgstr "Visualizzazioni uniche"
945
 
946
  #~ msgid "Read %s for more information about Frontend Features and Options."
947
  #~ msgstr ""
languages/ga-dash-ja.mo CHANGED
Binary file
languages/ga-dash-ja.po CHANGED
@@ -3,305 +3,301 @@ msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-"
5
  "dashboard-for-wp\n"
6
- "POT-Creation-Date: 2015-05-21 19:47+0200\n"
7
- "PO-Revision-Date: 2015-05-21 19:47+0200\n"
8
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
9
  "Language-Team: heysister721 <tk197709141545@gmail.com>\n"
10
  "Language: ja\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
- "X-Generator: Poedit 1.8\n"
15
- "X-Poedit-KeywordsList: _e;__\n"
16
  "X-Poedit-Basepath: .\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
19
  "X-Poedit-SearchPath-0: ../.\n"
20
 
21
- #: .././admin/item-reports.php:52
22
  msgid "Analytics"
23
  msgstr "アナリティクス"
24
 
25
- #: .././admin/settings.php:94 .././admin/settings.php:197
26
- #: .././admin/settings.php:328 .././admin/settings.php:803
27
- #: .././admin/settings.php:1079
28
  msgid "Settings saved."
29
  msgstr "設定を保存しました。"
30
 
31
- #: .././admin/settings.php:96 .././admin/settings.php:199
32
- #: .././admin/settings.php:330 .././admin/settings.php:780
33
- #: .././admin/settings.php:790 .././admin/settings.php:799
34
- #: .././admin/settings.php:805 .././admin/settings.php:817
35
- #: .././admin/settings.php:1040 .././admin/settings.php:1065
36
- #: .././admin/settings.php:1075 .././admin/settings.php:1081
37
- #: .././admin/settings.php:1093
38
  msgid "Cheating Huh?"
39
  msgstr "修正しますか?"
40
 
41
- #: .././admin/settings.php:100 .././admin/settings.php:203
42
- #: .././admin/settings.php:334 .././admin/settings.php:647
43
- #: .././admin/settings.php:832 .././admin/settings.php:1107
44
  #, php-format
45
  msgid "Something went wrong, check %1$s or %2$s."
46
  msgstr "問題が発生しました。%2$sするか、%1$sを確認してください。"
47
 
48
- #: .././admin/settings.php:100 .././admin/settings.php:203
49
- #: .././admin/settings.php:334 .././admin/settings.php:647
50
- #: .././admin/settings.php:832 .././admin/settings.php:1107
51
- #: .././admin/setup.php:82 .././admin/setup.php:101
52
  msgid "Errors & Debug"
53
  msgstr "エラー&デバッグ"
54
 
55
- #: .././admin/settings.php:100 .././admin/settings.php:203
56
- #: .././admin/settings.php:334 .././admin/settings.php:647
57
- #: .././admin/settings.php:832 .././admin/settings.php:1107
58
  msgid "authorize the plugin"
59
  msgstr "プラグインを認可"
60
 
61
- #: .././admin/settings.php:105
62
  msgid "Google Analytics Frontend Settings"
63
  msgstr "Google アナリティクス フロントエンド設定"
64
 
65
- #: .././admin/settings.php:115 .././admin/settings.php:218
66
  msgid "Permissions"
67
  msgstr "権限"
68
 
69
- #: .././admin/settings.php:118 .././admin/settings.php:221
70
  msgid "Show stats to:"
71
  msgstr "統計を表示:"
72
 
73
- #: .././admin/settings.php:157
74
- msgid "show page sessions and users in frontend (after each article)"
75
  msgstr ""
76
 
77
- #: .././admin/settings.php:168
78
- msgid "show page searches (after each article)"
79
- msgstr ""
80
-
81
- #: .././admin/settings.php:175 .././admin/settings.php:308
82
- #: .././admin/settings.php:605 .././admin/settings.php:952
83
- #: .././admin/settings.php:1245
84
  msgid "Save Changes"
85
  msgstr "変更を保存"
86
 
87
- #: .././admin/settings.php:208
88
  msgid "Google Analytics Backend Settings"
89
  msgstr "Google アナリティクス バックエンド設定"
90
 
91
- #: .././admin/settings.php:262
92
  msgid "enable Switch View functionality"
93
  msgstr ""
94
 
95
- #: .././admin/settings.php:273
96
  msgid "enable reports on Posts List and Pages List"
97
  msgstr "投稿及びページ一覧でのレポートの表示を有効化"
98
 
99
- #: .././admin/settings.php:284
100
  msgid "enable the main Dashboard Widget"
101
  msgstr "ダッシュボードのウィジェットを有効化"
102
 
103
- #: .././admin/settings.php:288
104
  msgid "Real-Time Settings"
105
  msgstr "リアルタイム設定"
106
 
107
- #: .././admin/settings.php:291
108
  msgid "Maximum number of pages to display on real-time tab:"
109
  msgstr "リアルタイムのタブに表示するページの最大数:"
110
 
111
- #: .././admin/settings.php:296
112
  msgid "Location Settings"
113
  msgstr "地域設定"
114
 
115
- #: .././admin/settings.php:300
116
  msgid "Target Geo Map to country:"
117
  msgstr "対象国を地図に指定:"
118
 
119
- #: .././admin/settings.php:337
120
  msgid ""
121
  "The tracking component is disabled. You should set <strong>Tracking Options</"
122
  "strong> to <strong>Enabled</strong>"
123
  msgstr ""
124
 
125
- #: .././admin/settings.php:342
126
  msgid "Google Analytics Tracking Code"
127
  msgstr "Google Analytics トラッキングコード"
128
 
129
- #: .././admin/settings.php:351
130
  msgid "Basic Settings"
131
  msgstr "基本設定"
132
 
133
- #: .././admin/settings.php:352 .././admin/settings.php:417
134
  msgid "Events Tracking"
135
  msgstr "追跡イベント"
136
 
137
- #: .././admin/settings.php:353 .././admin/settings.php:465
138
  msgid "Custom Definitions"
139
  msgstr "カスタム定義"
140
 
141
- #: .././admin/settings.php:354 .././admin/settings.php:563
142
- #: .././admin/settings.php:1228
143
  msgid "Exclude Tracking"
144
  msgstr "追跡を除外する"
145
 
146
- #: .././admin/settings.php:355
147
  msgid "Advanced Settings"
148
  msgstr "拡張設定"
149
 
150
- #: .././admin/settings.php:362
151
  msgid "Tracking Settings"
152
  msgstr "トラッキング設定"
153
 
154
- #: .././admin/settings.php:365
155
  msgid "Tracking Options:"
156
  msgstr "オプションのトラッキング:"
157
 
158
- #: .././admin/settings.php:367
159
  msgid "Disabled"
160
  msgstr "無効"
161
 
162
- #: .././admin/settings.php:368
163
  msgid "Enabled"
164
  msgstr "有効"
165
 
166
- #: .././admin/settings.php:376 .././admin/settings.php:897
167
- #: .././admin/settings.php:919 .././admin/settings.php:1201
168
- #: .././admin/widgets.php:71
169
  msgid "View Name:"
170
  msgstr "ビュー名:"
171
 
172
- #: .././admin/settings.php:376 .././admin/settings.php:919
173
  msgid "Tracking ID:"
174
  msgstr "トラッキング ID:"
175
 
176
- #: .././admin/settings.php:376 .././admin/settings.php:919
177
  msgid "Default URL:"
178
  msgstr "デフォルトのURL:"
179
 
180
- #: .././admin/settings.php:376 .././admin/settings.php:919
181
  msgid "Time Zone:"
182
  msgstr "タイムゾーン:"
183
 
184
- #: .././admin/settings.php:381
185
  msgid "Basic Tracking"
186
  msgstr "基本的なトラッキング"
187
 
188
- #: .././admin/settings.php:384
189
  msgid "Tracking Type:"
190
  msgstr "トラッキングの種類:"
191
 
192
- #: .././admin/settings.php:386
193
  msgid "Classic Analytics"
194
  msgstr "クラシックアナリティクス"
195
 
196
- #: .././admin/settings.php:387
197
  msgid "Universal Analytics"
198
  msgstr "ユニバーサルアナリティクス"
199
 
200
- #: .././admin/settings.php:398
201
  msgid "anonymize IPs while tracking"
202
  msgstr ""
203
 
204
- #: .././admin/settings.php:409
205
  msgid "enable remarketing, demographics and interests reports"
206
  msgstr ""
207
 
208
- #: .././admin/settings.php:427
209
  msgid "track downloads, mailto and outbound links"
210
  msgstr ""
211
 
212
- #: .././admin/settings.php:431
213
  msgid "Downloads Regex:"
214
  msgstr "ダウンロードの正規表現:"
215
 
216
- #: .././admin/settings.php:442
217
  msgid "track affiliate links matching this regex"
218
  msgstr ""
219
 
220
- #: .././admin/settings.php:446
221
  msgid "Affiliates Regex:"
222
  msgstr "アフィリエイトの正規表現:"
223
 
224
- #: .././admin/settings.php:457
225
  msgid "track fragment identifiers, hashmarks (#) in URI links"
226
  msgstr ""
227
 
228
- #: .././admin/settings.php:468
229
  msgid "Authors:"
230
  msgstr "作者:"
231
 
232
- #: .././admin/settings.php:476
233
  msgid "Publication Year:"
234
  msgstr "発行年:"
235
 
236
- #: .././admin/settings.php:484
237
  msgid "Categories:"
238
  msgstr "カテゴリー:"
239
 
240
- #: .././admin/settings.php:492
241
  msgid "User Type:"
242
  msgstr "ユーザータイプ:"
243
 
244
- #: .././admin/settings.php:504
245
  msgid "Advanced Tracking"
246
  msgstr "高度なトラッキング"
247
 
248
- #: .././admin/settings.php:507
249
  msgid "Page Speed SR:"
250
  msgstr "ページスピードSR:"
251
 
252
- #: .././admin/settings.php:518
253
  msgid "exclude events from bounce-rate calculation"
254
  msgstr ""
255
 
256
- #: .././admin/settings.php:529
257
  msgid "enable enhanced link attribution"
258
  msgstr ""
259
 
260
- #: .././admin/settings.php:540
261
  msgid "enable AdSense account linking"
262
  msgstr ""
263
 
264
- #: .././admin/settings.php:551
265
  msgid "enable cross domain tracking"
266
  msgstr ""
267
 
268
- #: .././admin/settings.php:555
269
  msgid "Cross Domains:"
270
  msgstr "クロスドメイン:"
271
 
272
- #: .././admin/settings.php:566
273
  msgid "Exclude tracking for:"
274
  msgstr "トラッキング対象外:"
275
 
276
- #: .././admin/settings.php:651
277
  msgid "Google Analytics Errors & Debugging"
278
  msgstr "Google Analyticsのエラーとデバッグ"
279
 
280
- #: .././admin/settings.php:661
281
  msgid "Errors & Details"
282
  msgstr "エラーとデバッグ"
283
 
284
- #: .././admin/settings.php:662
285
  msgid "Plugin Settings"
286
  msgstr "プラグイン設定"
287
 
288
- #: .././admin/settings.php:670
289
  msgid "Last Error detected"
290
  msgstr "エラーを検出"
291
 
292
- #: .././admin/settings.php:676 .././admin/settings.php:689
293
  msgid "None"
294
  msgstr "なし"
295
 
296
- #: .././admin/settings.php:683
297
  msgid "Error Details"
298
  msgstr "エラーの詳細"
299
 
300
- #: .././admin/settings.php:703
301
  msgid "Plugin Configuration"
302
  msgstr "プラグインの設定"
303
 
304
- #: .././admin/settings.php:725 .././admin/settings.php:990
305
  msgid ""
306
  "Loading the required libraries. If this results in a blank screen or a fatal "
307
  "error, try this solution:"
@@ -309,15 +305,15 @@ msgstr ""
309
  "必要なライブラリをロードしています。空白の画面または致命的なエラーが発生した"
310
  "場合は、このソリューションを試してみてください:"
311
 
312
- #: .././admin/settings.php:725
313
  msgid "Library conflicts between WordPress plugins"
314
  msgstr ""
315
 
316
- #: .././admin/settings.php:740 .././admin/settings.php:1007
317
  msgid "Plugin authorization succeeded."
318
  msgstr "プラグインの認可が成功しました。"
319
 
320
- #: .././admin/settings.php:755 .././admin/settings.php:1031
321
  msgid ""
322
  "The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
323
  "(UA-XXXXX-X). Try again, and use the red link to get your access code"
@@ -326,35 +322,35 @@ msgstr ""
326
  "りません</strong>。アクセスコードを取得するためには赤いリンクを使用して、再度"
327
  "実行してください。"
328
 
329
- #: .././admin/settings.php:778 .././admin/settings.php:1063
330
  msgid "Cleared Cache."
331
  msgstr "キャッシュをクリアしました。"
332
 
333
- #: .././admin/settings.php:787 .././admin/settings.php:1072
334
  msgid "Token Reseted and Revoked."
335
  msgstr "トークンをリセットし失効させました。"
336
 
337
- #: .././admin/settings.php:797
338
  msgid "All errors reseted."
339
  msgstr "全てのエラーをリセットしました。"
340
 
341
- #: .././admin/settings.php:810 .././admin/settings.php:1086
342
  msgid "All other domains/properties were removed."
343
  msgstr "全ての他のドメイン/プロパティが削除されました。"
344
 
345
- #: .././admin/settings.php:822 .././admin/settings.php:1098
346
  msgid "Google Analytics Settings"
347
  msgstr "Google アナリティクスの設定"
348
 
349
- #: .././admin/settings.php:837 .././admin/settings.php:1112
350
  msgid "Use the red link (see below) to generate and get your access code!"
351
  msgstr "アクセスコードを取得するには、赤リンク(下記参照)を使用してください!"
352
 
353
- #: .././admin/settings.php:848 .././admin/settings.php:1140
354
  msgid "Plugin Authorization"
355
  msgstr "プラグインを認可"
356
 
357
- #: .././admin/settings.php:853 .././admin/settings.php:1144
358
  #, php-format
359
  msgid ""
360
  "You should watch the %1$s and read this %2$s before proceeding to "
@@ -364,113 +360,108 @@ msgstr ""
364
  "プラグインを認可する前に%1$sを視聴し、%2$sを一読ください。 このプラグインを利"
365
  "用するにはGoogle アナリティクスのアカウントの適切な設定が必要です。"
366
 
367
- #: .././admin/settings.php:853 .././admin/settings.php:1144
368
  msgid "video"
369
  msgstr "動画"
370
 
371
- #: .././admin/settings.php:853 .././admin/settings.php:1144
372
  msgid "tutorial"
373
  msgstr "チュートリアル"
374
 
375
- #: .././admin/settings.php:858 .././admin/settings.php:1151
376
  msgid "use your own API Project credentials"
377
  msgstr ""
378
 
379
- #: .././admin/settings.php:863 .././admin/settings.php:1159
380
  msgid "API Key:"
381
  msgstr "API キー:"
382
 
383
- #: .././admin/settings.php:867 .././admin/settings.php:1163
384
  msgid "Client ID:"
385
  msgstr "クライアント ID:"
386
 
387
- #: .././admin/settings.php:871 .././admin/settings.php:1167
388
  msgid "Client Secret:"
389
  msgstr "クライアント Secret:"
390
 
391
- #: .././admin/settings.php:881 .././admin/settings.php:1177
392
  msgid "Clear Authorization"
393
  msgstr "認可のクリア"
394
 
395
- #: .././admin/settings.php:881 .././admin/settings.php:959
396
- #: .././admin/settings.php:1177 .././admin/settings.php:1254
397
  msgid "Clear Cache"
398
  msgstr "キャッシュを消去"
399
 
400
- #: .././admin/settings.php:881
401
  msgid "Reset Errors"
402
  msgstr "エラーをリセット"
403
 
404
- #: .././admin/settings.php:887 .././admin/setup.php:70 .././admin/setup.php:98
405
  msgid "General Settings"
406
  msgstr "一般設定"
407
 
408
- #: .././admin/settings.php:890
409
  msgid "Select View:"
410
  msgstr ""
411
 
412
- #: .././admin/settings.php:901 .././admin/settings.php:1205
413
  msgid "Property not found"
414
  msgstr "プロパティが見つかりません"
415
 
416
- #: .././admin/settings.php:907
417
  msgid "Lock Selection"
418
  msgstr ""
419
 
420
- #: .././admin/settings.php:926
421
  msgid "Theme Color:"
422
  msgstr "テーマカラー:"
423
 
424
- #: .././admin/settings.php:934 .././admin/settings.php:1214
425
  msgid "Automatic Updates"
426
  msgstr "自動アップデート"
427
 
428
- #: .././admin/settings.php:944 .././admin/settings.php:1224
429
  msgid ""
430
  "automatic updates for minor versions (security and maintenance releases only)"
431
  msgstr ""
432
  "マイナーバージョンの自動アップデート(セキュリティ&メンテナンスリリースのみ)"
433
 
434
- #: .././admin/settings.php:959 .././admin/settings.php:1254
435
- #: .././admin/widgets.php:42
436
  msgid "Authorize Plugin"
437
  msgstr "プラグインを認可"
438
 
439
- #: .././admin/settings.php:1037
440
  msgid "Properties refreshed."
441
  msgstr "プロパティを更新しました。"
442
 
443
- #: .././admin/settings.php:1122
444
  msgid "Network Setup"
445
  msgstr "ネットワーク設定"
446
 
447
- #: .././admin/settings.php:1132
448
  msgid "use a single Google Analytics account for the entire network"
449
  msgstr ""
450
 
451
- #: .././admin/settings.php:1177
452
  msgid "Refresh Properties"
453
  msgstr "プロパティを最新の情報に更新"
454
 
455
- #: .././admin/settings.php:1183
456
  msgid "Properties/Views Settings"
457
  msgstr "プロパティ/ビューの設定"
458
 
459
- #: .././admin/settings.php:1238
460
  msgid "exclude Super Admin tracking for the entire network"
461
  msgstr ""
462
 
463
- #: .././admin/settings.php:1285
464
  msgid "Setup Tutorial & Demo"
465
  msgstr "セットアップ:チュートリアル&デモ"
466
 
467
- #: .././admin/settings.php:1293
468
- msgid "Support & Reviews"
469
- msgstr "サポート&レビュー"
470
-
471
- #: .././admin/settings.php:1300
472
- #, php-format
473
- msgid "Plugin documentation and support on %s"
474
  msgstr ""
475
 
476
  #: .././admin/settings.php:1307
@@ -526,179 +517,214 @@ msgstr "IPレベルでのユーザートラッキングのできる%s。"
526
  msgid "Web Analytics"
527
  msgstr "ウェブ解析"
528
 
529
- #: .././admin/setup.php:67 .././admin/setup.php:95
530
  msgid "Google Analytics"
531
  msgstr "Google アナリティクス"
532
 
533
- #: .././admin/setup.php:73
534
  msgid "Backend Settings"
535
  msgstr "バックエンド設定"
536
 
537
- #: .././admin/setup.php:76
538
  msgid "Frontend Settings"
539
  msgstr "フロントエンド設定"
540
 
541
- #: .././admin/setup.php:79
542
  msgid "Tracking Code"
543
  msgstr "トラッキングコード"
544
 
545
- #: .././admin/setup.php:169 .././admin/widgets.php:126
546
  msgid "Today"
547
  msgstr "今日"
548
 
549
- #: .././admin/setup.php:170 .././admin/widgets.php:127
550
  msgid "Yesterday"
551
  msgstr "昨日"
552
 
553
- #: .././admin/setup.php:171 .././admin/widgets.php:128
554
- #: .././front/widgets.php:74 .././front/widgets.php:182
555
- msgid "Last 7 Days"
556
- msgstr "1週間"
 
 
 
 
 
 
 
557
 
558
- #: .././admin/setup.php:172 .././admin/widgets.php:130
559
- #: .././front/widgets.php:80 .././front/widgets.php:184
560
- msgid "Last 30 Days"
561
- msgstr "30日間"
 
 
562
 
563
- #: .././admin/setup.php:173 .././admin/widgets.php:131
564
- msgid "Last 90 Days"
565
- msgstr "90日間"
566
 
567
- #: .././admin/setup.php:175 .././admin/setup.php:190
 
 
 
 
 
568
  msgid "Unique Views"
569
  msgstr "ユニークPV"
570
 
571
- #: .././admin/setup.php:176 .././admin/setup.php:191
572
- #: .././admin/widgets.php:136 .././admin/widgets.php:875
573
- #: .././tools/gapi.php:391
574
  msgid "Users"
575
  msgstr "ユーザー"
576
 
577
- #: .././admin/setup.php:177 .././admin/widgets.php:137
578
  msgid "Organic"
579
  msgstr "オーガニック検索"
580
 
581
- #: .././admin/setup.php:178 .././admin/setup.php:192
582
- #: .././admin/widgets.php:138 .././admin/widgets.php:879
583
- #: .././tools/gapi.php:394
584
  msgid "Page Views"
585
  msgstr "PV"
586
 
587
- #: .././admin/setup.php:179 .././admin/setup.php:193
588
- #: .././admin/widgets.php:139 .././admin/widgets.php:883
589
- #: .././tools/gapi.php:397
590
  msgid "Bounce Rate"
591
  msgstr "直帰率"
592
 
593
- #: .././admin/setup.php:180 .././admin/widgets.php:140
594
  msgid "Location"
595
  msgstr "地域"
596
 
597
- #: .././admin/setup.php:181 .././admin/widgets.php:142 .././tools/gapi.php:566
 
598
  msgid "Referrers"
599
  msgstr "リファラー"
600
 
601
- #: .././admin/setup.php:182 .././admin/widgets.php:143 .././tools/gapi.php:612
602
- #: .././tools/gapi.php:918
603
  msgid "Searches"
604
  msgstr "検索結果"
605
 
606
- #: .././admin/setup.php:183 .././admin/widgets.php:144
607
  msgid "Traffic Details"
608
  msgstr "トラフィック詳細"
609
 
610
- #: .././admin/setup.php:185 .././admin/widgets.php:510
611
- #: .././admin/widgets.php:607 .././admin/widgets.php:805
612
- #: .././admin/widgets.php:917 .././front/item-reports.php:97
613
  msgid "A JavaScript Error is blocking plugin resources!"
614
  msgstr ""
615
  "JavaScriptのエラーが、プラグインのリソースをブロックしている可能性がありま"
616
  "す。"
617
 
618
- #: .././admin/setup.php:186 .././admin/widgets.php:713
619
  msgid "Traffic Mediums"
620
  msgstr "トラフィック平均"
621
 
622
- #: .././admin/setup.php:187 .././admin/widgets.php:729
623
  msgid "Visitor Type"
624
  msgstr "訪問者"
625
 
626
- #: .././admin/setup.php:188 .././admin/widgets.php:745
627
  msgid "Social Networks"
628
  msgstr "SNS"
629
 
630
- #: .././admin/setup.php:189 .././admin/widgets.php:761
631
  msgid "Search Engines"
632
  msgstr "検索エンジン"
633
 
634
- #: .././admin/setup.php:194 .././admin/widgets.php:887
 
635
  msgid "Organic Search"
636
  msgstr "オーガニック検索"
637
 
638
- #: .././admin/setup.php:195 .././admin/widgets.php:891
 
639
  msgid "Pages/Session"
640
  msgstr "ページ/セッション"
641
 
642
- #: .././admin/setup.php:196 .././admin/widgets.php:523
643
- #: .././admin/widgets.php:541 .././admin/widgets.php:620
644
- #: .././admin/widgets.php:638 .././admin/widgets.php:657
645
- #: .././admin/widgets.php:676 .././admin/widgets.php:696
646
- #: .././admin/widgets.php:819 .././admin/widgets.php:930
647
- #: .././admin/widgets.php:949 .././front/item-reports.php:109
648
- #: .././front/item-reports.php:128
 
649
  msgid "Invalid response, more details in JavaScript Console (F12)."
650
  msgstr ""
651
  "応答がありません。JavaScriptコンソールでの詳細(F12)をご確認ください。"
652
 
653
- #: .././admin/setup.php:197
654
  msgid "Not enough data collected"
655
  msgstr "充分なデータがありません"
656
 
657
- #: .././admin/setup.php:198 .././admin/widgets.php:528
658
- #: .././admin/widgets.php:546 .././admin/widgets.php:625
659
- #: .././admin/widgets.php:643 .././admin/widgets.php:662
660
- #: .././admin/widgets.php:681 .././admin/widgets.php:701
661
- #: .././admin/widgets.php:824 .././admin/widgets.php:827
662
- #: .././admin/widgets.php:935 .././admin/widgets.php:954
663
- #: .././front/item-reports.php:114 .././front/item-reports.php:133
664
- #: .././front/widgets.php:110
665
  msgid "This report is unavailable"
666
  msgstr "このレポートは使用できません。"
667
 
668
- #: .././admin/setup.php:199
669
  msgid "report generated by"
670
  msgstr "report generated by"
671
 
672
- #: .././admin/setup.php:233
673
  msgid "Settings"
674
  msgstr "設定"
675
 
676
- #: .././admin/widgets.php:33 .././front/widgets.php:22
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
677
  msgid "Google Analytics Dashboard"
678
  msgstr "Google アナリティクス ダッシュボード"
679
 
680
- #: .././admin/widgets.php:42
681
  msgid "This plugin needs an authorization:"
682
  msgstr "このプラグインは認可する必要があります:"
683
 
684
- #: .././admin/widgets.php:76
685
  msgid "Something went wrong while retrieving profiles list."
686
  msgstr "プロファイルリストの取得中に問題が発生しました。"
687
 
688
- #: .././admin/widgets.php:76
689
  msgid "More details"
690
  msgstr "詳細"
691
 
692
- #: .././admin/widgets.php:89 .././admin/widgets.php:100
693
  msgid "An admin should asign a default Google Analytics Profile."
694
  msgstr ""
695
  "管理者は、デフォルトのGoogle Analyticsのプロファイルをasign必要があります。"
696
 
697
- #: .././admin/widgets.php:89 .././admin/widgets.php:100
698
  msgid "Select Domain"
699
  msgstr "ドメインを選択"
700
 
701
- #: .././admin/widgets.php:105
702
  msgid ""
703
  "Something went wrong while retrieving property data. You need to create and "
704
  "properly configure a Google Analytics account:"
@@ -706,192 +732,196 @@ msgstr ""
706
  "プロパティデータを取得中に問題が発生しました。適切にGoogle Analyticsアカウン"
707
  "トを設定する必要があります:"
708
 
709
- #: .././admin/widgets.php:105
710
  msgid "Find out more!"
711
  msgstr "詳細はこちら"
712
 
713
- #: .././admin/widgets.php:125
714
  msgid "Real-Time"
715
  msgstr "リアルタイム"
716
 
717
- #: .././admin/widgets.php:129 .././front/widgets.php:77
718
- #: .././front/widgets.php:183
719
- msgid "Last 14 Days"
720
- msgstr "2週間"
721
-
722
- #: .././admin/widgets.php:135 .././admin/widgets.php:871
723
- #: .././front/widgets.php:46 .././tools/gapi.php:406 .././tools/gapi.php:567
724
- #: .././tools/gapi.php:613 .././tools/gapi.php:676 .././tools/gapi.php:786
725
- #: .././tools/gapi.php:827 .././tools/gapi.php:919
726
  msgid "Sessions"
727
  msgstr "セッション"
728
 
729
- #: .././admin/widgets.php:141 .././tools/gapi.php:521
730
  msgid "Pages"
731
  msgstr "ページ"
732
 
733
- #: .././admin/widgets.php:232 .././admin/widgets.php:472
734
  msgid "REFERRAL"
735
  msgstr "リファラー"
736
 
737
- #: .././admin/widgets.php:236 .././admin/widgets.php:473
738
  msgid "ORGANIC"
739
  msgstr "キーワード検索"
740
 
741
- #: .././admin/widgets.php:240 .././admin/widgets.php:360
742
- #: .././admin/widgets.php:474
743
  msgid "SOCIAL"
744
  msgstr "ソーシャル"
745
 
746
- #: .././admin/widgets.php:244 .././admin/widgets.php:363
747
- #: .././admin/widgets.php:475
748
  msgid "CAMPAIGN"
749
  msgstr "キャンペーン"
750
 
751
- #: .././admin/widgets.php:248 .././admin/widgets.php:366
752
- #: .././admin/widgets.php:478
753
  msgid "DIRECT"
754
  msgstr "直リンク"
755
 
756
- #: .././admin/widgets.php:252 .././admin/widgets.php:479
757
  msgid "NEW"
758
  msgstr "NEW"
759
 
760
- #: .././admin/widgets.php:354
761
  msgid "REFERRALS"
762
  msgstr "リファラー"
763
 
764
- #: .././admin/widgets.php:357
765
  msgid "KEYWORDS"
766
  msgstr "キーワード"
767
 
768
- #: .././front/item-reports.php:143
769
- msgid "Views vs UniqueViews"
770
- msgstr ""
771
-
772
- #: .././front/item-reports.php:193
773
- msgid "Google Analytics Reports"
774
- msgstr "Google アナリティクスのレポート"
775
-
776
- #: .././front/widgets.php:23
777
  msgid "Will display your google analytics stats in a widget"
778
  msgstr "ウィジェットでのGoogleアナリティクスの統計を表示します"
779
 
780
- #: .././front/widgets.php:46 .././tools/gapi.php:827
781
  msgid "trend"
782
  msgstr "トレンド"
783
 
784
- #: .././front/widgets.php:133
785
  msgid "Period:"
786
  msgstr "期間:"
787
 
788
- #: .././front/widgets.php:133
789
  msgid "Sessions:"
790
  msgstr "セッション:"
791
 
792
- #: .././front/widgets.php:137
793
  msgid "generated by"
794
  msgstr "generated by"
795
 
796
- #: .././front/widgets.php:147
797
  msgid "Google Analytics Stats"
798
  msgstr "Google アナリティクスの統計"
799
 
800
- #: .././front/widgets.php:154
801
  msgid "Title:"
802
  msgstr "タイトル:"
803
 
804
- #: .././front/widgets.php:161
805
  msgid "Display:"
806
  msgstr "表示:"
807
 
808
- #: .././front/widgets.php:165
809
  msgid "Chart & Totals"
810
  msgstr "チャート&合計"
811
 
812
- #: .././front/widgets.php:166
813
  msgid "Chart"
814
  msgstr "チャート"
815
 
816
- #: .././front/widgets.php:167
817
  msgid "Totals"
818
  msgstr "合計"
819
 
820
- #: .././front/widgets.php:171
821
  msgid "Anonymize stats:"
822
  msgstr "匿名の統計:"
823
 
824
- #: .././front/widgets.php:178
825
  msgid "Stats for:"
826
  msgstr "統計:"
827
 
828
- #: .././front/widgets.php:188
829
  msgid "Give credits:"
830
  msgstr "クレジットを表示:"
831
 
832
- #: .././gadwp.php:46 .././gadwp.php:55 .././gadwp.php:63
833
  msgid "This is not allowed, read the documentation!"
834
  msgstr ""
835
 
836
- #: .././tools/gapi.php:134
837
  msgid "Use this link to get your access code:"
838
  msgstr "このリンクを使用して、アクセスコードを取得してください:"
839
 
840
- #: .././tools/gapi.php:134
841
  msgid "Get Access Code"
842
  msgstr "アクセスコードを取得"
843
 
844
- #: .././tools/gapi.php:138 .././tools/gapi.php:139
845
  msgid "Use the red link to get your access code!"
846
  msgstr "アクセスコードを取得するために赤いリンクを使用してください。"
847
 
848
- #: .././tools/gapi.php:138
849
  msgid "Access Code:"
850
  msgstr "アクセスコード:"
851
 
852
- #: .././tools/gapi.php:145
853
  msgid "Save Access Code"
854
  msgstr "アクセスコードを保存"
855
 
856
- #: .././tools/gapi.php:400
857
  msgid "Organic Searches"
858
  msgstr ""
859
 
860
- #: .././tools/gapi.php:403
861
  msgid "Unique Page Views"
862
  msgstr "ユニークPV"
863
 
864
- #: .././tools/gapi.php:411
865
  msgid "Hour"
866
  msgstr "時"
867
 
868
- #: .././tools/gapi.php:414 .././tools/gapi.php:826 .././tools/gapi.php:876
869
  msgid "Date"
870
  msgstr "日"
871
 
872
- #: .././tools/gapi.php:522 .././tools/gapi.php:877
873
  msgid "Views"
874
  msgstr "PV"
875
 
876
- #: .././tools/gapi.php:640
877
  msgid "Countries"
878
  msgstr "各国"
879
 
880
- #: .././tools/gapi.php:650
881
  msgid "Cities from"
882
  msgstr "都市"
883
 
884
- #: .././tools/gapi.php:722
885
  msgid "Channels"
886
  msgstr "経路"
887
 
888
- #: .././tools/gapi.php:785
889
  msgid "Type"
890
  msgstr "タイプ"
891
 
892
- #: .././tools/gapi.php:878
893
- msgid "UniqueViews"
894
- msgstr "ユニークPV"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
895
 
896
  #~ msgid "this documentation page"
897
  #~ msgstr "プラグインのドキュメントページ"
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-"
5
  "dashboard-for-wp\n"
6
+ "POT-Creation-Date: 2015-07-05 16:08+0300\n"
7
+ "PO-Revision-Date: 2015-07-05 16:08+0300\n"
8
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
9
  "Language-Team: heysister721 <tk197709141545@gmail.com>\n"
10
  "Language: ja\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Poedit 1.8.2\n"
15
+ "X-Poedit-KeywordsList: __;_e;_n;_x;_ex;_nx;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;esc_html_x;_n_noop;_nx_noop\n"
16
  "X-Poedit-Basepath: .\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
19
  "X-Poedit-SearchPath-0: ../.\n"
20
 
21
+ #: .././admin/item-reports.php:61 .././front/item-reports.php:29
22
  msgid "Analytics"
23
  msgstr "アナリティクス"
24
 
25
+ #: .././admin/settings.php:89 .././admin/settings.php:184
26
+ #: .././admin/settings.php:318 .././admin/settings.php:795
27
+ #: .././admin/settings.php:1068
28
  msgid "Settings saved."
29
  msgstr "設定を保存しました。"
30
 
31
+ #: .././admin/settings.php:91 .././admin/settings.php:186
32
+ #: .././admin/settings.php:320 .././admin/settings.php:772
33
+ #: .././admin/settings.php:782 .././admin/settings.php:791
34
+ #: .././admin/settings.php:797 .././admin/settings.php:808
35
+ #: .././admin/settings.php:1029 .././admin/settings.php:1054
36
+ #: .././admin/settings.php:1064 .././admin/settings.php:1070
37
+ #: .././admin/settings.php:1081
38
  msgid "Cheating Huh?"
39
  msgstr "修正しますか?"
40
 
41
+ #: .././admin/settings.php:95 .././admin/settings.php:190
42
+ #: .././admin/settings.php:324 .././admin/settings.php:641
43
+ #: .././admin/settings.php:823 .././admin/settings.php:1095
44
  #, php-format
45
  msgid "Something went wrong, check %1$s or %2$s."
46
  msgstr "問題が発生しました。%2$sするか、%1$sを確認してください。"
47
 
48
+ #: .././admin/settings.php:95 .././admin/settings.php:190
49
+ #: .././admin/settings.php:324 .././admin/settings.php:641
50
+ #: .././admin/settings.php:823 .././admin/settings.php:1095
51
+ #: .././admin/setup.php:46 .././admin/setup.php:59
52
  msgid "Errors & Debug"
53
  msgstr "エラー&デバッグ"
54
 
55
+ #: .././admin/settings.php:95 .././admin/settings.php:190
56
+ #: .././admin/settings.php:324 .././admin/settings.php:641
57
+ #: .././admin/settings.php:823 .././admin/settings.php:1095
58
  msgid "authorize the plugin"
59
  msgstr "プラグインを認可"
60
 
61
+ #: .././admin/settings.php:100
62
  msgid "Google Analytics Frontend Settings"
63
  msgstr "Google アナリティクス フロントエンド設定"
64
 
65
+ #: .././admin/settings.php:110 .././admin/settings.php:205
66
  msgid "Permissions"
67
  msgstr "権限"
68
 
69
+ #: .././admin/settings.php:113 .././admin/settings.php:208
70
  msgid "Show stats to:"
71
  msgstr "統計を表示:"
72
 
73
+ #: .././admin/settings.php:154
74
+ msgid "enable web page reports on frontend"
75
  msgstr ""
76
 
77
+ #: .././admin/settings.php:161 .././admin/settings.php:297
78
+ #: .././admin/settings.php:598 .././admin/settings.php:943
79
+ #: .././admin/settings.php:1232
 
 
 
 
80
  msgid "Save Changes"
81
  msgstr "変更を保存"
82
 
83
+ #: .././admin/settings.php:195
84
  msgid "Google Analytics Backend Settings"
85
  msgstr "Google アナリティクス バックエンド設定"
86
 
87
+ #: .././admin/settings.php:251
88
  msgid "enable Switch View functionality"
89
  msgstr ""
90
 
91
+ #: .././admin/settings.php:262
92
  msgid "enable reports on Posts List and Pages List"
93
  msgstr "投稿及びページ一覧でのレポートの表示を有効化"
94
 
95
+ #: .././admin/settings.php:273
96
  msgid "enable the main Dashboard Widget"
97
  msgstr "ダッシュボードのウィジェットを有効化"
98
 
99
+ #: .././admin/settings.php:277
100
  msgid "Real-Time Settings"
101
  msgstr "リアルタイム設定"
102
 
103
+ #: .././admin/settings.php:280
104
  msgid "Maximum number of pages to display on real-time tab:"
105
  msgstr "リアルタイムのタブに表示するページの最大数:"
106
 
107
+ #: .././admin/settings.php:285
108
  msgid "Location Settings"
109
  msgstr "地域設定"
110
 
111
+ #: .././admin/settings.php:289
112
  msgid "Target Geo Map to country:"
113
  msgstr "対象国を地図に指定:"
114
 
115
+ #: .././admin/settings.php:327
116
  msgid ""
117
  "The tracking component is disabled. You should set <strong>Tracking Options</"
118
  "strong> to <strong>Enabled</strong>"
119
  msgstr ""
120
 
121
+ #: .././admin/settings.php:332
122
  msgid "Google Analytics Tracking Code"
123
  msgstr "Google Analytics トラッキングコード"
124
 
125
+ #: .././admin/settings.php:341
126
  msgid "Basic Settings"
127
  msgstr "基本設定"
128
 
129
+ #: .././admin/settings.php:342 .././admin/settings.php:408
130
  msgid "Events Tracking"
131
  msgstr "追跡イベント"
132
 
133
+ #: .././admin/settings.php:343 .././admin/settings.php:456
134
  msgid "Custom Definitions"
135
  msgstr "カスタム定義"
136
 
137
+ #: .././admin/settings.php:344 .././admin/settings.php:554
138
+ #: .././admin/settings.php:1215
139
  msgid "Exclude Tracking"
140
  msgstr "追跡を除外する"
141
 
142
+ #: .././admin/settings.php:345
143
  msgid "Advanced Settings"
144
  msgstr "拡張設定"
145
 
146
+ #: .././admin/settings.php:353
147
  msgid "Tracking Settings"
148
  msgstr "トラッキング設定"
149
 
150
+ #: .././admin/settings.php:356
151
  msgid "Tracking Options:"
152
  msgstr "オプションのトラッキング:"
153
 
154
+ #: .././admin/settings.php:358
155
  msgid "Disabled"
156
  msgstr "無効"
157
 
158
+ #: .././admin/settings.php:359
159
  msgid "Enabled"
160
  msgstr "有効"
161
 
162
+ #: .././admin/settings.php:367 .././admin/settings.php:888
163
+ #: .././admin/settings.php:910 .././admin/settings.php:1188
164
+ #: .././admin/widgets.php:61
165
  msgid "View Name:"
166
  msgstr "ビュー名:"
167
 
168
+ #: .././admin/settings.php:367 .././admin/settings.php:910
169
  msgid "Tracking ID:"
170
  msgstr "トラッキング ID:"
171
 
172
+ #: .././admin/settings.php:367 .././admin/settings.php:910
173
  msgid "Default URL:"
174
  msgstr "デフォルトのURL:"
175
 
176
+ #: .././admin/settings.php:367 .././admin/settings.php:910
177
  msgid "Time Zone:"
178
  msgstr "タイムゾーン:"
179
 
180
+ #: .././admin/settings.php:372
181
  msgid "Basic Tracking"
182
  msgstr "基本的なトラッキング"
183
 
184
+ #: .././admin/settings.php:375
185
  msgid "Tracking Type:"
186
  msgstr "トラッキングの種類:"
187
 
188
+ #: .././admin/settings.php:377
189
  msgid "Classic Analytics"
190
  msgstr "クラシックアナリティクス"
191
 
192
+ #: .././admin/settings.php:378
193
  msgid "Universal Analytics"
194
  msgstr "ユニバーサルアナリティクス"
195
 
196
+ #: .././admin/settings.php:389
197
  msgid "anonymize IPs while tracking"
198
  msgstr ""
199
 
200
+ #: .././admin/settings.php:400
201
  msgid "enable remarketing, demographics and interests reports"
202
  msgstr ""
203
 
204
+ #: .././admin/settings.php:418
205
  msgid "track downloads, mailto and outbound links"
206
  msgstr ""
207
 
208
+ #: .././admin/settings.php:422
209
  msgid "Downloads Regex:"
210
  msgstr "ダウンロードの正規表現:"
211
 
212
+ #: .././admin/settings.php:433
213
  msgid "track affiliate links matching this regex"
214
  msgstr ""
215
 
216
+ #: .././admin/settings.php:437
217
  msgid "Affiliates Regex:"
218
  msgstr "アフィリエイトの正規表現:"
219
 
220
+ #: .././admin/settings.php:448
221
  msgid "track fragment identifiers, hashmarks (#) in URI links"
222
  msgstr ""
223
 
224
+ #: .././admin/settings.php:459
225
  msgid "Authors:"
226
  msgstr "作者:"
227
 
228
+ #: .././admin/settings.php:467
229
  msgid "Publication Year:"
230
  msgstr "発行年:"
231
 
232
+ #: .././admin/settings.php:475
233
  msgid "Categories:"
234
  msgstr "カテゴリー:"
235
 
236
+ #: .././admin/settings.php:483
237
  msgid "User Type:"
238
  msgstr "ユーザータイプ:"
239
 
240
+ #: .././admin/settings.php:495
241
  msgid "Advanced Tracking"
242
  msgstr "高度なトラッキング"
243
 
244
+ #: .././admin/settings.php:498
245
  msgid "Page Speed SR:"
246
  msgstr "ページスピードSR:"
247
 
248
+ #: .././admin/settings.php:509
249
  msgid "exclude events from bounce-rate calculation"
250
  msgstr ""
251
 
252
+ #: .././admin/settings.php:520
253
  msgid "enable enhanced link attribution"
254
  msgstr ""
255
 
256
+ #: .././admin/settings.php:531
257
  msgid "enable AdSense account linking"
258
  msgstr ""
259
 
260
+ #: .././admin/settings.php:542
261
  msgid "enable cross domain tracking"
262
  msgstr ""
263
 
264
+ #: .././admin/settings.php:546
265
  msgid "Cross Domains:"
266
  msgstr "クロスドメイン:"
267
 
268
+ #: .././admin/settings.php:557
269
  msgid "Exclude tracking for:"
270
  msgstr "トラッキング対象外:"
271
 
272
+ #: .././admin/settings.php:645
273
  msgid "Google Analytics Errors & Debugging"
274
  msgstr "Google Analyticsのエラーとデバッグ"
275
 
276
+ #: .././admin/settings.php:655
277
  msgid "Errors & Details"
278
  msgstr "エラーとデバッグ"
279
 
280
+ #: .././admin/settings.php:656
281
  msgid "Plugin Settings"
282
  msgstr "プラグイン設定"
283
 
284
+ #: .././admin/settings.php:663
285
  msgid "Last Error detected"
286
  msgstr "エラーを検出"
287
 
288
+ #: .././admin/settings.php:669 .././admin/settings.php:682
289
  msgid "None"
290
  msgstr "なし"
291
 
292
+ #: .././admin/settings.php:676
293
  msgid "Error Details"
294
  msgstr "エラーの詳細"
295
 
296
+ #: .././admin/settings.php:696
297
  msgid "Plugin Configuration"
298
  msgstr "プラグインの設定"
299
 
300
+ #: .././admin/settings.php:717 .././admin/settings.php:980
301
  msgid ""
302
  "Loading the required libraries. If this results in a blank screen or a fatal "
303
  "error, try this solution:"
305
  "必要なライブラリをロードしています。空白の画面または致命的なエラーが発生した"
306
  "場合は、このソリューションを試してみてください:"
307
 
308
+ #: .././admin/settings.php:717
309
  msgid "Library conflicts between WordPress plugins"
310
  msgstr ""
311
 
312
+ #: .././admin/settings.php:732 .././admin/settings.php:997
313
  msgid "Plugin authorization succeeded."
314
  msgstr "プラグインの認可が成功しました。"
315
 
316
+ #: .././admin/settings.php:747 .././admin/settings.php:1020
317
  msgid ""
318
  "The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
319
  "(UA-XXXXX-X). Try again, and use the red link to get your access code"
322
  "りません</strong>。アクセスコードを取得するためには赤いリンクを使用して、再度"
323
  "実行してください。"
324
 
325
+ #: .././admin/settings.php:770 .././admin/settings.php:1052
326
  msgid "Cleared Cache."
327
  msgstr "キャッシュをクリアしました。"
328
 
329
+ #: .././admin/settings.php:779 .././admin/settings.php:1061
330
  msgid "Token Reseted and Revoked."
331
  msgstr "トークンをリセットし失効させました。"
332
 
333
+ #: .././admin/settings.php:789
334
  msgid "All errors reseted."
335
  msgstr "全てのエラーをリセットしました。"
336
 
337
+ #: .././admin/settings.php:802 .././admin/settings.php:1075
338
  msgid "All other domains/properties were removed."
339
  msgstr "全ての他のドメイン/プロパティが削除されました。"
340
 
341
+ #: .././admin/settings.php:813 .././admin/settings.php:1086
342
  msgid "Google Analytics Settings"
343
  msgstr "Google アナリティクスの設定"
344
 
345
+ #: .././admin/settings.php:828 .././admin/settings.php:1100
346
  msgid "Use the red link (see below) to generate and get your access code!"
347
  msgstr "アクセスコードを取得するには、赤リンク(下記参照)を使用してください!"
348
 
349
+ #: .././admin/settings.php:839 .././admin/settings.php:1128
350
  msgid "Plugin Authorization"
351
  msgstr "プラグインを認可"
352
 
353
+ #: .././admin/settings.php:844 .././admin/settings.php:1132
354
  #, php-format
355
  msgid ""
356
  "You should watch the %1$s and read this %2$s before proceeding to "
360
  "プラグインを認可する前に%1$sを視聴し、%2$sを一読ください。 このプラグインを利"
361
  "用するにはGoogle アナリティクスのアカウントの適切な設定が必要です。"
362
 
363
+ #: .././admin/settings.php:844 .././admin/settings.php:1132
364
  msgid "video"
365
  msgstr "動画"
366
 
367
+ #: .././admin/settings.php:844 .././admin/settings.php:1132
368
  msgid "tutorial"
369
  msgstr "チュートリアル"
370
 
371
+ #: .././admin/settings.php:849 .././admin/settings.php:1139
372
  msgid "use your own API Project credentials"
373
  msgstr ""
374
 
375
+ #: .././admin/settings.php:854 .././admin/settings.php:1147
376
  msgid "API Key:"
377
  msgstr "API キー:"
378
 
379
+ #: .././admin/settings.php:858 .././admin/settings.php:1151
380
  msgid "Client ID:"
381
  msgstr "クライアント ID:"
382
 
383
+ #: .././admin/settings.php:862 .././admin/settings.php:1155
384
  msgid "Client Secret:"
385
  msgstr "クライアント Secret:"
386
 
387
+ #: .././admin/settings.php:872 .././admin/settings.php:1165
388
  msgid "Clear Authorization"
389
  msgstr "認可のクリア"
390
 
391
+ #: .././admin/settings.php:872 .././admin/settings.php:950
392
+ #: .././admin/settings.php:1165 .././admin/settings.php:1241
393
  msgid "Clear Cache"
394
  msgstr "キャッシュを消去"
395
 
396
+ #: .././admin/settings.php:872
397
  msgid "Reset Errors"
398
  msgstr "エラーをリセット"
399
 
400
+ #: .././admin/settings.php:878 .././admin/setup.php:42 .././admin/setup.php:58
401
  msgid "General Settings"
402
  msgstr "一般設定"
403
 
404
+ #: .././admin/settings.php:881
405
  msgid "Select View:"
406
  msgstr ""
407
 
408
+ #: .././admin/settings.php:892 .././admin/settings.php:1192
409
  msgid "Property not found"
410
  msgstr "プロパティが見つかりません"
411
 
412
+ #: .././admin/settings.php:898
413
  msgid "Lock Selection"
414
  msgstr ""
415
 
416
+ #: .././admin/settings.php:917
417
  msgid "Theme Color:"
418
  msgstr "テーマカラー:"
419
 
420
+ #: .././admin/settings.php:925 .././admin/settings.php:1201
421
  msgid "Automatic Updates"
422
  msgstr "自動アップデート"
423
 
424
+ #: .././admin/settings.php:935 .././admin/settings.php:1211
425
  msgid ""
426
  "automatic updates for minor versions (security and maintenance releases only)"
427
  msgstr ""
428
  "マイナーバージョンの自動アップデート(セキュリティ&メンテナンスリリースのみ)"
429
 
430
+ #: .././admin/settings.php:950 .././admin/settings.php:1241
431
+ #: .././admin/widgets.php:32
432
  msgid "Authorize Plugin"
433
  msgstr "プラグインを認可"
434
 
435
+ #: .././admin/settings.php:1026
436
  msgid "Properties refreshed."
437
  msgstr "プロパティを更新しました。"
438
 
439
+ #: .././admin/settings.php:1110
440
  msgid "Network Setup"
441
  msgstr "ネットワーク設定"
442
 
443
+ #: .././admin/settings.php:1120
444
  msgid "use a single Google Analytics account for the entire network"
445
  msgstr ""
446
 
447
+ #: .././admin/settings.php:1165
448
  msgid "Refresh Properties"
449
  msgstr "プロパティを最新の情報に更新"
450
 
451
+ #: .././admin/settings.php:1171
452
  msgid "Properties/Views Settings"
453
  msgstr "プロパティ/ビューの設定"
454
 
455
+ #: .././admin/settings.php:1225
456
  msgid "exclude Super Admin tracking for the entire network"
457
  msgstr ""
458
 
459
+ #: .././admin/settings.php:1273
460
  msgid "Setup Tutorial & Demo"
461
  msgstr "セットアップ:チュートリアル&デモ"
462
 
463
+ #: .././admin/settings.php:1281
464
+ msgid "Follow & Review"
 
 
 
 
 
465
  msgstr ""
466
 
467
  #: .././admin/settings.php:1307
517
  msgid "Web Analytics"
518
  msgstr "ウェブ解析"
519
 
520
+ #: .././admin/setup.php:41 .././admin/setup.php:57
521
  msgid "Google Analytics"
522
  msgstr "Google アナリティクス"
523
 
524
+ #: .././admin/setup.php:43
525
  msgid "Backend Settings"
526
  msgstr "バックエンド設定"
527
 
528
+ #: .././admin/setup.php:44
529
  msgid "Frontend Settings"
530
  msgstr "フロントエンド設定"
531
 
532
+ #: .././admin/setup.php:45
533
  msgid "Tracking Code"
534
  msgstr "トラッキングコード"
535
 
536
+ #: .././admin/setup.php:159 .././admin/widgets.php:117 .././front/setup.php:71
537
  msgid "Today"
538
  msgstr "今日"
539
 
540
+ #: .././admin/setup.php:160 .././admin/widgets.php:118 .././front/setup.php:72
541
  msgid "Yesterday"
542
  msgstr "昨日"
543
 
544
+ #: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
545
+ #: .././admin/setup.php:164 .././admin/widgets.php:119
546
+ #: .././admin/widgets.php:120 .././admin/widgets.php:121
547
+ #: .././admin/widgets.php:122 .././front/setup.php:73 .././front/setup.php:74
548
+ #: .././front/setup.php:75 .././front/setup.php:76 .././front/widgets.php:64
549
+ #: .././front/widgets.php:67 .././front/widgets.php:70
550
+ #: .././front/widgets.php:158 .././front/widgets.php:159
551
+ #: .././front/widgets.php:160
552
+ #, php-format
553
+ msgid "Last %d Days"
554
+ msgstr "%d日間"
555
 
556
+ #: .././admin/setup.php:165 .././admin/setup.php:166
557
+ #: .././admin/widgets.php:123 .././admin/widgets.php:124
558
+ #: .././front/setup.php:77 .././front/setup.php:78
559
+ #, php-format
560
+ msgid "%s Year"
561
+ msgstr ""
562
 
563
+ #: .././admin/setup.php:165 .././admin/widgets.php:123 .././front/setup.php:77
564
+ msgid "One"
565
+ msgstr ""
566
 
567
+ #: .././admin/setup.php:166 .././admin/widgets.php:124 .././front/setup.php:78
568
+ msgid "Three"
569
+ msgstr ""
570
+
571
+ #: .././admin/setup.php:169 .././admin/setup.php:185 .././front/setup.php:81
572
+ #: .././front/setup.php:97
573
  msgid "Unique Views"
574
  msgstr "ユニークPV"
575
 
576
+ #: .././admin/setup.php:170 .././admin/setup.php:186
577
+ #: .././admin/widgets.php:130 .././admin/widgets.php:830
578
+ #: .././front/setup.php:82 .././front/setup.php:98 .././tools/gapi.php:358
579
  msgid "Users"
580
  msgstr "ユーザー"
581
 
582
+ #: .././admin/setup.php:171 .././admin/widgets.php:131 .././front/setup.php:83
583
  msgid "Organic"
584
  msgstr "オーガニック検索"
585
 
586
+ #: .././admin/setup.php:172 .././admin/setup.php:187
587
+ #: .././admin/widgets.php:132 .././admin/widgets.php:834
588
+ #: .././front/setup.php:84 .././front/setup.php:99 .././tools/gapi.php:361
589
  msgid "Page Views"
590
  msgstr "PV"
591
 
592
+ #: .././admin/setup.php:173 .././admin/setup.php:188
593
+ #: .././admin/widgets.php:133 .././admin/widgets.php:838
594
+ #: .././front/setup.php:85 .././front/setup.php:100 .././tools/gapi.php:364
595
  msgid "Bounce Rate"
596
  msgstr "直帰率"
597
 
598
+ #: .././admin/setup.php:174 .././admin/widgets.php:134 .././front/setup.php:86
599
  msgid "Location"
600
  msgstr "地域"
601
 
602
+ #: .././admin/setup.php:175 .././admin/widgets.php:136 .././front/setup.php:87
603
+ #: .././tools/gapi.php:503
604
  msgid "Referrers"
605
  msgstr "リファラー"
606
 
607
+ #: .././admin/setup.php:176 .././admin/widgets.php:137 .././front/setup.php:88
608
+ #: .././tools/gapi.php:536
609
  msgid "Searches"
610
  msgstr "検索結果"
611
 
612
+ #: .././admin/setup.php:177 .././admin/widgets.php:138 .././front/setup.php:89
613
  msgid "Traffic Details"
614
  msgstr "トラフィック詳細"
615
 
616
+ #: .././admin/setup.php:180 .././admin/widgets.php:505
617
+ #: .././admin/widgets.php:590 .././admin/widgets.php:757
618
+ #: .././admin/widgets.php:861 .././front/setup.php:92
619
  msgid "A JavaScript Error is blocking plugin resources!"
620
  msgstr ""
621
  "JavaScriptのエラーが、プラグインのリソースをブロックしている可能性がありま"
622
  "す。"
623
 
624
+ #: .././admin/setup.php:181 .././admin/widgets.php:681 .././front/setup.php:93
625
  msgid "Traffic Mediums"
626
  msgstr "トラフィック平均"
627
 
628
+ #: .././admin/setup.php:182 .././admin/widgets.php:696 .././front/setup.php:94
629
  msgid "Visitor Type"
630
  msgstr "訪問者"
631
 
632
+ #: .././admin/setup.php:183 .././admin/widgets.php:711 .././front/setup.php:95
633
  msgid "Social Networks"
634
  msgstr "SNS"
635
 
636
+ #: .././admin/setup.php:184 .././admin/widgets.php:726 .././front/setup.php:96
637
  msgid "Search Engines"
638
  msgstr "検索エンジン"
639
 
640
+ #: .././admin/setup.php:189 .././admin/widgets.php:842
641
+ #: .././front/setup.php:101
642
  msgid "Organic Search"
643
  msgstr "オーガニック検索"
644
 
645
+ #: .././admin/setup.php:190 .././admin/widgets.php:846
646
+ #: .././front/setup.php:102
647
  msgid "Pages/Session"
648
  msgstr "ページ/セッション"
649
 
650
+ #: .././admin/setup.php:191 .././admin/widgets.php:517
651
+ #: .././admin/widgets.php:531 .././admin/widgets.php:541
652
+ #: .././admin/widgets.php:602 .././admin/widgets.php:616
653
+ #: .././admin/widgets.php:630 .././admin/widgets.php:644
654
+ #: .././admin/widgets.php:658 .././admin/widgets.php:668
655
+ #: .././admin/widgets.php:770 .././admin/widgets.php:782
656
+ #: .././admin/widgets.php:873 .././admin/widgets.php:887
657
+ #: .././admin/widgets.php:897 .././front/setup.php:103
658
  msgid "Invalid response, more details in JavaScript Console (F12)."
659
  msgstr ""
660
  "応答がありません。JavaScriptコンソールでの詳細(F12)をご確認ください。"
661
 
662
+ #: .././admin/setup.php:192 .././front/setup.php:104
663
  msgid "Not enough data collected"
664
  msgstr "充分なデータがありません"
665
 
666
+ #: .././admin/setup.php:193 .././admin/widgets.php:522
667
+ #: .././admin/widgets.php:536 .././admin/widgets.php:607
668
+ #: .././admin/widgets.php:621 .././admin/widgets.php:635
669
+ #: .././admin/widgets.php:649 .././admin/widgets.php:663
670
+ #: .././admin/widgets.php:775 .././admin/widgets.php:777
671
+ #: .././admin/widgets.php:878 .././admin/widgets.php:892
672
+ #: .././front/setup.php:105 .././front/widgets.php:100
 
673
  msgid "This report is unavailable"
674
  msgstr "このレポートは使用できません。"
675
 
676
+ #: .././admin/setup.php:194 .././front/setup.php:106
677
  msgid "report generated by"
678
  msgstr "report generated by"
679
 
680
+ #: .././admin/setup.php:225
681
  msgid "Settings"
682
  msgstr "設定"
683
 
684
+ #: .././admin/setup.php:237
685
+ #, php-format
686
+ msgid "Google Analytics Dashboard for WP has been updated to version %s."
687
+ msgstr ""
688
+
689
+ #: .././admin/setup.php:237
690
+ #, php-format
691
+ msgid "For details, check out %1$s and %2$s."
692
+ msgstr ""
693
+
694
+ #: .././admin/setup.php:237
695
+ msgid "the documentation page"
696
+ msgstr ""
697
+
698
+ #: .././admin/setup.php:237
699
+ msgid "the plugin&#39;s settings page"
700
+ msgstr ""
701
+
702
+ #: .././admin/widgets.php:27 .././front/widgets.php:21
703
  msgid "Google Analytics Dashboard"
704
  msgstr "Google アナリティクス ダッシュボード"
705
 
706
+ #: .././admin/widgets.php:32
707
  msgid "This plugin needs an authorization:"
708
  msgstr "このプラグインは認可する必要があります:"
709
 
710
+ #: .././admin/widgets.php:66
711
  msgid "Something went wrong while retrieving profiles list."
712
  msgstr "プロファイルリストの取得中に問題が発生しました。"
713
 
714
+ #: .././admin/widgets.php:66
715
  msgid "More details"
716
  msgstr "詳細"
717
 
718
+ #: .././admin/widgets.php:79 .././admin/widgets.php:90
719
  msgid "An admin should asign a default Google Analytics Profile."
720
  msgstr ""
721
  "管理者は、デフォルトのGoogle Analyticsのプロファイルをasign必要があります。"
722
 
723
+ #: .././admin/widgets.php:79 .././admin/widgets.php:90
724
  msgid "Select Domain"
725
  msgstr "ドメインを選択"
726
 
727
+ #: .././admin/widgets.php:95
728
  msgid ""
729
  "Something went wrong while retrieving property data. You need to create and "
730
  "properly configure a Google Analytics account:"
732
  "プロパティデータを取得中に問題が発生しました。適切にGoogle Analyticsアカウン"
733
  "トを設定する必要があります:"
734
 
735
+ #: .././admin/widgets.php:95
736
  msgid "Find out more!"
737
  msgstr "詳細はこちら"
738
 
739
+ #: .././admin/widgets.php:116
740
  msgid "Real-Time"
741
  msgstr "リアルタイム"
742
 
743
+ #: .././admin/widgets.php:129 .././admin/widgets.php:826
744
+ #: .././front/widgets.php:36 .././tools/gapi.php:373 .././tools/gapi.php:503
745
+ #: .././tools/gapi.php:536 .././tools/gapi.php:586 .././tools/gapi.php:666
746
+ #: .././tools/gapi.php:695
 
 
 
 
 
747
  msgid "Sessions"
748
  msgstr "セッション"
749
 
750
+ #: .././admin/widgets.php:135 .././tools/gapi.php:471
751
  msgid "Pages"
752
  msgstr "ページ"
753
 
754
+ #: .././admin/widgets.php:236 .././admin/widgets.php:478
755
  msgid "REFERRAL"
756
  msgstr "リファラー"
757
 
758
+ #: .././admin/widgets.php:240 .././admin/widgets.php:479
759
  msgid "ORGANIC"
760
  msgstr "キーワード検索"
761
 
762
+ #: .././admin/widgets.php:244 .././admin/widgets.php:364
763
+ #: .././admin/widgets.php:480
764
  msgid "SOCIAL"
765
  msgstr "ソーシャル"
766
 
767
+ #: .././admin/widgets.php:248 .././admin/widgets.php:367
768
+ #: .././admin/widgets.php:481
769
  msgid "CAMPAIGN"
770
  msgstr "キャンペーン"
771
 
772
+ #: .././admin/widgets.php:252 .././admin/widgets.php:370
773
+ #: .././admin/widgets.php:484
774
  msgid "DIRECT"
775
  msgstr "直リンク"
776
 
777
+ #: .././admin/widgets.php:256 .././admin/widgets.php:485
778
  msgid "NEW"
779
  msgstr "NEW"
780
 
781
+ #: .././admin/widgets.php:358
782
  msgid "REFERRALS"
783
  msgstr "リファラー"
784
 
785
+ #: .././admin/widgets.php:361
786
  msgid "KEYWORDS"
787
  msgstr "キーワード"
788
 
789
+ #: .././front/widgets.php:21
 
 
 
 
 
 
 
 
790
  msgid "Will display your google analytics stats in a widget"
791
  msgstr "ウィジェットでのGoogleアナリティクスの統計を表示します"
792
 
793
+ #: .././front/widgets.php:36 .././tools/gapi.php:695
794
  msgid "trend"
795
  msgstr "トレンド"
796
 
797
+ #: .././front/widgets.php:123
798
  msgid "Period:"
799
  msgstr "期間:"
800
 
801
+ #: .././front/widgets.php:123
802
  msgid "Sessions:"
803
  msgstr "セッション:"
804
 
805
+ #: .././front/widgets.php:127
806
  msgid "generated by"
807
  msgstr "generated by"
808
 
809
+ #: .././front/widgets.php:136
810
  msgid "Google Analytics Stats"
811
  msgstr "Google アナリティクスの統計"
812
 
813
+ #: .././front/widgets.php:144
814
  msgid "Title:"
815
  msgstr "タイトル:"
816
 
817
+ #: .././front/widgets.php:147
818
  msgid "Display:"
819
  msgstr "表示:"
820
 
821
+ #: .././front/widgets.php:148
822
  msgid "Chart & Totals"
823
  msgstr "チャート&合計"
824
 
825
+ #: .././front/widgets.php:149
826
  msgid "Chart"
827
  msgstr "チャート"
828
 
829
+ #: .././front/widgets.php:150
830
  msgid "Totals"
831
  msgstr "合計"
832
 
833
+ #: .././front/widgets.php:154
834
  msgid "Anonymize stats:"
835
  msgstr "匿名の統計:"
836
 
837
+ #: .././front/widgets.php:157
838
  msgid "Stats for:"
839
  msgstr "統計:"
840
 
841
+ #: .././front/widgets.php:164
842
  msgid "Give credits:"
843
  msgstr "クレジットを表示:"
844
 
845
+ #: .././gadwp.php:46 .././gadwp.php:54 .././gadwp.php:61
846
  msgid "This is not allowed, read the documentation!"
847
  msgstr ""
848
 
849
+ #: .././tools/gapi.php:128
850
  msgid "Use this link to get your access code:"
851
  msgstr "このリンクを使用して、アクセスコードを取得してください:"
852
 
853
+ #: .././tools/gapi.php:128
854
  msgid "Get Access Code"
855
  msgstr "アクセスコードを取得"
856
 
857
+ #: .././tools/gapi.php:132 .././tools/gapi.php:133
858
  msgid "Use the red link to get your access code!"
859
  msgstr "アクセスコードを取得するために赤いリンクを使用してください。"
860
 
861
+ #: .././tools/gapi.php:132
862
  msgid "Access Code:"
863
  msgstr "アクセスコード:"
864
 
865
+ #: .././tools/gapi.php:139
866
  msgid "Save Access Code"
867
  msgstr "アクセスコードを保存"
868
 
869
+ #: .././tools/gapi.php:367
870
  msgid "Organic Searches"
871
  msgstr ""
872
 
873
+ #: .././tools/gapi.php:370
874
  msgid "Unique Page Views"
875
  msgstr "ユニークPV"
876
 
877
+ #: .././tools/gapi.php:378
878
  msgid "Hour"
879
  msgstr "時"
880
 
881
+ #: .././tools/gapi.php:382 .././tools/gapi.php:385 .././tools/gapi.php:695
882
  msgid "Date"
883
  msgstr "日"
884
 
885
+ #: .././tools/gapi.php:471
886
  msgid "Views"
887
  msgstr "PV"
888
 
889
+ #: .././tools/gapi.php:557
890
  msgid "Countries"
891
  msgstr "各国"
892
 
893
+ #: .././tools/gapi.php:567
894
  msgid "Cities from"
895
  msgstr "都市"
896
 
897
+ #: .././tools/gapi.php:620
898
  msgid "Channels"
899
  msgstr "経路"
900
 
901
+ #: .././tools/gapi.php:666
902
  msgid "Type"
903
  msgstr "タイプ"
904
 
905
+ #~ msgid "Last 7 Days"
906
+ #~ msgstr "1週間"
907
+
908
+ #~ msgid "Last 30 Days"
909
+ #~ msgstr "30日間"
910
+
911
+ #~ msgid "Last 90 Days"
912
+ #~ msgstr "90日間"
913
+
914
+ #~ msgid "Last 14 Days"
915
+ #~ msgstr "2週間"
916
+
917
+ #~ msgid "Support & Reviews"
918
+ #~ msgstr "サポート&レビュー"
919
+
920
+ #~ msgid "Google Analytics Reports"
921
+ #~ msgstr "Google アナリティクスのレポート"
922
+
923
+ #~ msgid "UniqueViews"
924
+ #~ msgstr "ユニークPV"
925
 
926
  #~ msgid "this documentation page"
927
  #~ msgstr "プラグインのドキュメントページ"
languages/ga-dash-nl_NL.mo CHANGED
Binary file
languages/ga-dash-nl_NL.po CHANGED
@@ -3,135 +3,116 @@ msgstr ""
3
  "Project-Id-Version: Google Analytics Dashboard for WP\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-"
5
  "dashboard-for-wp\n"
6
- "POT-Creation-Date: 2015-04-27 19:26+0200\n"
7
- "PO-Revision-Date: 2015-05-23 14:45+0100\n"
8
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
9
  "Language-Team: Willem-Jan Meerkerk <info@bs-webdevelopment.nl>\n"
10
  "Language: nl_NL\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
- "X-Generator: Poedit 1.8\n"
15
- "X-Poedit-KeywordsList: _e;__\n"
16
  "X-Poedit-Basepath: .\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
  "X-Poedit-SearchPath-0: ../.\n"
20
 
21
- #: .././admin/item-reports.php:67
22
  msgid "Analytics"
23
  msgstr "Analytics"
24
 
25
- #: .././admin/settings.php:94 .././admin/settings.php:202
26
- #: .././admin/settings.php:338 .././admin/settings.php:820
27
- #: .././admin/settings.php:1089
28
  msgid "Settings saved."
29
  msgstr "Instellingen opgeslagen."
30
 
31
- #: .././admin/settings.php:96 .././admin/settings.php:204
32
- #: .././admin/settings.php:340 .././admin/settings.php:797
33
- #: .././admin/settings.php:807 .././admin/settings.php:816
34
- #: .././admin/settings.php:822 .././admin/settings.php:834
35
- #: .././admin/settings.php:1050 .././admin/settings.php:1075
36
- #: .././admin/settings.php:1085 .././admin/settings.php:1091
37
- #: .././admin/settings.php:1103
38
  msgid "Cheating Huh?"
39
  msgstr "Cheating Huh?"
40
 
41
- #: .././admin/settings.php:100 .././admin/settings.php:208
42
- #: .././admin/settings.php:344 .././admin/settings.php:659
43
- #: .././admin/settings.php:848 .././admin/settings.php:1116
44
  #, php-format
45
  msgid "Something went wrong, check %1$s or %2$s."
46
  msgstr "Er ging iets mis, bekijk %1$s of %2$s."
47
 
48
- #: .././admin/settings.php:100 .././admin/settings.php:208
49
- #: .././admin/settings.php:344 .././admin/settings.php:659
50
- #: .././admin/settings.php:848 .././admin/settings.php:1116
51
- #: .././admin/setup.php:96 .././admin/setup.php:119
52
  msgid "Errors & Debug"
53
  msgstr "Fouten & debug"
54
 
55
- #: .././admin/settings.php:100 .././admin/settings.php:208
56
- #: .././admin/settings.php:344 .././admin/settings.php:659
57
- #: .././admin/settings.php:848 .././admin/settings.php:1116
58
  msgid "authorize the plugin"
59
  msgstr "autoriseer de plugin"
60
 
61
- #: .././admin/settings.php:105
62
  msgid "Google Analytics Frontend Settings"
63
  msgstr "Google Analytics frontend instellingen"
64
 
65
- #: .././admin/settings.php:116
66
- #, php-format
67
- msgid "Read %s for more information about Frontend Features and Options."
68
- msgstr "Lees %s voor meer informatie over frontend mogelijkheden en opties."
69
-
70
- #: .././admin/settings.php:116 .././admin/settings.php:224
71
- #: .././admin/settings.php:369 .././admin/settings.php:682
72
- msgid "this documentation page"
73
- msgstr "deze documentatie pagina"
74
-
75
- #: .././admin/settings.php:120 .././admin/settings.php:228
76
  msgid "Permissions"
77
  msgstr "Rechten"
78
 
79
- #: .././admin/settings.php:123 .././admin/settings.php:231
80
  msgid "Show stats to:"
81
  msgstr "Toon statistieken aan:"
82
 
83
- #: .././admin/settings.php:162
84
- msgid "show page sessions and users in frontend (after each article)"
85
- msgstr "toon pagina sessies en gebruikers in frontend (na elk artikel)"
86
-
87
- #: .././admin/settings.php:173
88
- msgid "show page searches (after each article)"
89
- msgstr "toon zoekopdrachten naar pagina (na elk artikel)"
90
 
91
- #: .././admin/settings.php:180 .././admin/settings.php:318
92
- #: .././admin/settings.php:617 .././admin/settings.php:965
93
- #: .././admin/settings.php:1253
94
  msgid "Save Changes"
95
  msgstr "Wijzigingen opslaan"
96
 
97
- #: .././admin/settings.php:213
98
  msgid "Google Analytics Backend Settings"
99
  msgstr "Google Analytics backend instellingen"
100
 
101
- #: .././admin/settings.php:224
102
- #, php-format
103
- msgid "Read %s for more information about Backend Features and Options."
104
- msgstr "Lees %s voor meer informatie over backend mogelijkheden en opties."
105
-
106
- #: .././admin/settings.php:272
107
  msgid "enable Switch View functionality"
108
  msgstr "inschakelen meerdere weergaven"
109
 
110
- #: .././admin/settings.php:283
111
  msgid "enable reports on Posts List and Pages List"
112
  msgstr "inschakelen van rapporten in berichten en pagina's lijsten"
113
 
114
- #: .././admin/settings.php:294
115
  msgid "enable the main Dashboard Widget"
116
  msgstr "inschakelen van de dashboard widget"
117
 
118
- #: .././admin/settings.php:298
119
  msgid "Real-Time Settings"
120
  msgstr "Realtime instellingen"
121
 
122
- #: .././admin/settings.php:301
123
  msgid "Maximum number of pages to display on real-time tab:"
124
  msgstr "Maximaal aantal pagina's om weer te geven op de realtime tab:"
125
 
126
- #: .././admin/settings.php:306
127
  msgid "Location Settings"
128
  msgstr "Locatie instellingen"
129
 
130
- #: .././admin/settings.php:310
131
  msgid "Target Geo Map to country:"
132
  msgstr "Inzoomen kaart naar het volgende land:"
133
 
134
- #: .././admin/settings.php:347
135
  msgid ""
136
  "The tracking component is disabled. You should set <strong>Tracking Options</"
137
  "strong> to <strong>Enabled</strong>"
@@ -139,196 +120,186 @@ msgstr ""
139
  "Tracking is op dit moment uitgeschakeld. Ga naar <strong>Tracking "
140
  "instellingen</strong> en kies daar <strong>Ingeschakeld</strong>"
141
 
142
- #: .././admin/settings.php:352
143
  msgid "Google Analytics Tracking Code"
144
  msgstr "Google Analytics trackingcode"
145
 
146
- #: .././admin/settings.php:361
147
  msgid "Basic Settings"
148
  msgstr "Basis instellingen"
149
 
150
- #: .././admin/settings.php:362 .././admin/settings.php:429
151
  msgid "Events Tracking"
152
  msgstr "Gebeurtenis tracking"
153
 
154
- #: .././admin/settings.php:363 .././admin/settings.php:477
155
  msgid "Custom Definitions"
156
  msgstr "Aangepaste definities"
157
 
158
- #: .././admin/settings.php:364 .././admin/settings.php:575
159
- #: .././admin/settings.php:1236
160
  msgid "Exclude Tracking"
161
  msgstr "Tracking uitsluiten"
162
 
163
- #: .././admin/settings.php:365
164
  msgid "Advanced Settings"
165
  msgstr "Geavanceerde instellingen"
166
 
167
- #: .././admin/settings.php:369
168
- #, php-format
169
- msgid "For more information about Tracking Options read %s."
170
- msgstr "Voor meer informatie over tracking opties, lees %s."
171
-
172
- #: .././admin/settings.php:374
173
  msgid "Tracking Settings"
174
  msgstr "Tracking instellingen"
175
 
176
- #: .././admin/settings.php:377
177
  msgid "Tracking Options:"
178
  msgstr "Tracking:"
179
 
180
- #: .././admin/settings.php:379
181
  msgid "Disabled"
182
  msgstr "Uitgeschakeld"
183
 
184
- #: .././admin/settings.php:380
185
  msgid "Enabled"
186
  msgstr "Ingeschakeld"
187
 
188
- #: .././admin/settings.php:388 .././admin/settings.php:912
189
- #: .././admin/settings.php:933 .././admin/settings.php:1209
190
- #: .././admin/widgets.php:71
191
  msgid "View Name:"
192
  msgstr "Weergavenaam:"
193
 
194
- #: .././admin/settings.php:388 .././admin/settings.php:933
195
  msgid "Tracking ID:"
196
  msgstr "Tracking ID:"
197
 
198
- #: .././admin/settings.php:388 .././admin/settings.php:933
199
  msgid "Default URL:"
200
  msgstr "Standaard URL:"
201
 
202
- #: .././admin/settings.php:388 .././admin/settings.php:933
203
  msgid "Time Zone:"
204
  msgstr "Tijdzone:"
205
 
206
- #: .././admin/settings.php:393
207
  msgid "Basic Tracking"
208
  msgstr "Basis tracking"
209
 
210
- #: .././admin/settings.php:396
211
  msgid "Tracking Type:"
212
  msgstr "Tracking type:"
213
 
214
- #: .././admin/settings.php:398
215
  msgid "Classic Analytics"
216
  msgstr "Classic Analytics"
217
 
218
- #: .././admin/settings.php:399
219
  msgid "Universal Analytics"
220
  msgstr "Universal Analytics"
221
 
222
- #: .././admin/settings.php:410
223
  msgid "anonymize IPs while tracking"
224
  msgstr "maak IP-adressen anoniem bij het tracken"
225
 
226
- #: .././admin/settings.php:421
227
  msgid "enable remarketing, demographics and interests reports"
228
  msgstr "inschakelen van remarketing, demographics en interests reports"
229
 
230
- #: .././admin/settings.php:439
231
  msgid "track downloads, mailto and outbound links"
232
  msgstr "track downloads, mailto en uitgaande links"
233
 
234
- #: .././admin/settings.php:443
235
  msgid "Downloads Regex:"
236
  msgstr "Downloads regex:"
237
 
238
- #: .././admin/settings.php:454
239
  msgid "track affiliate links matching this regex"
240
  msgstr "track affiliate links met de volgende regex"
241
 
242
- #: .././admin/settings.php:458
243
  msgid "Affiliates Regex:"
244
  msgstr "Affiliate regex:"
245
 
246
- #: .././admin/settings.php:469
247
  msgid "track fragment identifiers, hashmarks (#) in URI links"
248
  msgstr "track fragment identifiers, hashmarks (#) in URI links"
249
 
250
- #: .././admin/settings.php:480
251
  msgid "Authors:"
252
  msgstr "Auteurs:"
253
 
254
- #: .././admin/settings.php:488
255
  msgid "Publication Year:"
256
  msgstr "Publicatie jaar:"
257
 
258
- #: .././admin/settings.php:496
259
  msgid "Categories:"
260
  msgstr "Categorieën:"
261
 
262
- #: .././admin/settings.php:504
263
  msgid "User Type:"
264
  msgstr "Type gebruiker:"
265
 
266
- #: .././admin/settings.php:516
267
  msgid "Advanced Tracking"
268
  msgstr "Geavanceerde tracking"
269
 
270
- #: .././admin/settings.php:519
271
  msgid "Page Speed SR:"
272
  msgstr "Pagina-snelheid sample rate:"
273
 
274
- #: .././admin/settings.php:530
275
  msgid "exclude events from bounce-rate calculation"
276
  msgstr "uitsluiten van gebeurtenissen bij het berekenen van de bounce-rate"
277
 
278
- #: .././admin/settings.php:541
279
  msgid "enable enhanced link attribution"
280
  msgstr "inschakelen van uitgebreide linktoeschrijving"
281
 
282
- #: .././admin/settings.php:552
283
  msgid "enable AdSense account linking"
284
  msgstr "inschakelen van AdSende account linking"
285
 
286
- #: .././admin/settings.php:563
287
  msgid "enable cross domain tracking"
288
  msgstr "inschakelen van cross-domein tracking"
289
 
290
- #: .././admin/settings.php:567
291
  msgid "Cross Domains:"
292
  msgstr "Cross-domeinen:"
293
 
294
- #: .././admin/settings.php:578
295
  msgid "Exclude tracking for:"
296
  msgstr "Tracking uitschakelen voor:"
297
 
298
- #: .././admin/settings.php:663
299
  msgid "Google Analytics Errors & Debugging"
300
  msgstr "Google Analytics fouten & debug"
301
 
302
- #: .././admin/settings.php:673
303
  msgid "Errors & Details"
304
  msgstr "Fouten & details"
305
 
306
- #: .././admin/settings.php:674
307
  msgid "Plugin Settings"
308
  msgstr "Plugin instellingen"
309
 
310
- #: .././admin/settings.php:682
311
- #, php-format
312
- msgid "For errors and/or other issues check %s and related resources."
313
- msgstr "Voor fouten of andere problemen, bekijk %s en gerelateerde bronnen."
314
-
315
- #: .././admin/settings.php:687
316
  msgid "Last Error detected"
317
  msgstr "Laatste gedetecteerde fout"
318
 
319
- #: .././admin/settings.php:693 .././admin/settings.php:706
320
  msgid "None"
321
  msgstr "geen"
322
 
323
- #: .././admin/settings.php:700
324
  msgid "Error Details"
325
  msgstr "Fout details"
326
 
327
- #: .././admin/settings.php:720
328
  msgid "Plugin Configuration"
329
  msgstr "Plugin configuratie"
330
 
331
- #: .././admin/settings.php:742 .././admin/settings.php:1000
332
  msgid ""
333
  "Loading the required libraries. If this results in a blank screen or a fatal "
334
  "error, try this solution:"
@@ -336,15 +307,15 @@ msgstr ""
336
  "Laden van de vereiste libraries. Als dit in een leeg scherm of fatale fout "
337
  "resulteert, probeer deze oplossing:"
338
 
339
- #: .././admin/settings.php:742
340
  msgid "Library conflicts between WordPress plugins"
341
  msgstr "Library conflict tussen Wordpress plugins"
342
 
343
- #: .././admin/settings.php:757 .././admin/settings.php:1017
344
  msgid "Plugin authorization succeeded."
345
  msgstr "Plugin autorisatie succesvol ingesteld."
346
 
347
- #: .././admin/settings.php:772 .././admin/settings.php:1041
348
  msgid ""
349
  "The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
350
  "(UA-XXXXX-X). Try again, and use the red link to get your access code"
@@ -353,37 +324,37 @@ msgstr ""
353
  "(UA-XXXXX-X). Probeer opnieuw, gebruik de rode link voor het verkrijgen van "
354
  "de toegangscode."
355
 
356
- #: .././admin/settings.php:795 .././admin/settings.php:1073
357
  msgid "Cleared Cache."
358
  msgstr "Cache leeggemaakt."
359
 
360
- #: .././admin/settings.php:804 .././admin/settings.php:1082
361
  msgid "Token Reseted and Revoked."
362
  msgstr "Token gereset en ingetrokken."
363
 
364
- #: .././admin/settings.php:814
365
  msgid "All errors reseted."
366
  msgstr "Alle fouten gereset."
367
 
368
- #: .././admin/settings.php:827 .././admin/settings.php:1096
369
  msgid "All other domains/properties were removed."
370
  msgstr "Alle andere domeinen/properties zijn verwijderd."
371
 
372
- #: .././admin/settings.php:839 .././admin/settings.php:1108
373
  msgid "Google Analytics Settings"
374
  msgstr "Google Analytics instellingen"
375
 
376
- #: .././admin/settings.php:853 .././admin/settings.php:1121
377
  msgid "Use the red link (see below) to generate and get your access code!"
378
  msgstr ""
379
  "Gebruik de rode link (zie hieronder) voor het genereren en verkrijgen van de "
380
  "toegangscode!"
381
 
382
- #: .././admin/settings.php:864 .././admin/settings.php:1149
383
  msgid "Plugin Authorization"
384
  msgstr "Plugin authorisatie"
385
 
386
- #: .././admin/settings.php:869 .././admin/settings.php:1153
387
  #, php-format
388
  msgid ""
389
  "You should watch the %1$s and read this %2$s before proceeding to "
@@ -393,340 +364,369 @@ msgstr ""
393
  "Bekijk de %1$s en lees de %2$s voor het instellen van de autorisatie. Deze "
394
  "plugin heeft een goed ingesteld Google Analytics account nodig."
395
 
396
- #: .././admin/settings.php:869 .././admin/settings.php:1153
397
  msgid "video"
398
  msgstr "video"
399
 
400
- #: .././admin/settings.php:869 .././admin/settings.php:1153
401
  msgid "tutorial"
402
  msgstr "tutorial"
403
 
404
- #: .././admin/settings.php:874 .././admin/settings.php:1160
405
  msgid "use your own API Project credentials"
406
  msgstr "gebruik aangepaste API Project credentials"
407
 
408
- #: .././admin/settings.php:878 .././admin/settings.php:1167
409
  msgid "API Key:"
410
  msgstr "API Key:"
411
 
412
- #: .././admin/settings.php:882 .././admin/settings.php:1171
413
  msgid "Client ID:"
414
  msgstr "Client ID:"
415
 
416
- #: .././admin/settings.php:886 .././admin/settings.php:1175
417
  msgid "Client Secret:"
418
  msgstr "Client Secret:"
419
 
420
- #: .././admin/settings.php:896 .././admin/settings.php:1185
421
  msgid "Clear Authorization"
422
  msgstr "Autorisatie verwijderen"
423
 
424
- #: .././admin/settings.php:896 .././admin/settings.php:971
425
- #: .././admin/settings.php:1185 .././admin/settings.php:1260
426
  msgid "Clear Cache"
427
  msgstr "Cache leegmaken"
428
 
429
- #: .././admin/settings.php:896
430
  msgid "Reset Errors"
431
  msgstr "Fouten resetten"
432
 
433
- #: .././admin/settings.php:902 .././admin/setup.php:80
434
- #: .././admin/setup.php:115
435
  msgid "General Settings"
436
  msgstr "Algemene instellingen"
437
 
438
- #: .././admin/settings.php:905
439
  msgid "Select View:"
440
  msgstr "Kies weergave:"
441
 
442
- #: .././admin/settings.php:916 .././admin/settings.php:1213
443
  msgid "Property not found"
444
  msgstr "Property niet gevonden"
445
 
446
- #: .././admin/settings.php:921
447
  msgid "Lock Selection"
448
  msgstr "Selectie vergrendelen"
449
 
450
- #: .././admin/settings.php:939
451
  msgid "Theme Color:"
452
  msgstr "Thema kleur:"
453
 
454
- #: .././admin/settings.php:947 .././admin/settings.php:1222
455
  msgid "Automatic Updates"
456
  msgstr "Automatische updates"
457
 
458
- #: .././admin/settings.php:957 .././admin/settings.php:1232
459
  msgid ""
460
  "automatic updates for minor versions (security and maintenance releases only)"
461
  msgstr ""
462
  "automatische updates voor minor versies (alleen beveiliging- en "
463
  "onderhoudreleases)"
464
 
465
- #: .././admin/settings.php:971 .././admin/settings.php:1260
466
- #: .././admin/widgets.php:42
467
  msgid "Authorize Plugin"
468
  msgstr "Plugin autoriseren"
469
 
470
- #: .././admin/settings.php:1047
471
  msgid "Properties refreshed."
472
  msgstr "Properties zijn vernieuwd."
473
 
474
- #: .././admin/settings.php:1131
475
  msgid "Network Setup"
476
  msgstr "Netwerk setup"
477
 
478
- #: .././admin/settings.php:1141
479
  msgid "use a single Google Analytics account for the entire network"
480
  msgstr "gebruik één Google Analytics account voor het hele netwerk"
481
 
482
- #: .././admin/settings.php:1185
483
  msgid "Refresh Properties"
484
  msgstr "Properties vernieuwen"
485
 
486
- #: .././admin/settings.php:1191
487
  msgid "Properties/Views Settings"
488
  msgstr "Properties/weergaven instellingen"
489
 
490
- #: .././admin/settings.php:1246
491
  msgid "exclude Super Admin tracking for the entire network"
492
  msgstr "uitsluiten van Super Admin tracking voor het hele netwerk"
493
 
494
- #: .././admin/settings.php:1291
495
  msgid "Setup Tutorial & Demo"
496
  msgstr "Setup tutorial & demo"
497
 
498
- #: .././admin/settings.php:1299
499
- msgid "Support & Reviews"
500
- msgstr "Support & reviews"
501
-
502
- #: .././admin/settings.php:1306
503
- #, php-format
504
- msgid "Plugin documentation and support on %s"
505
- msgstr "Plugin documentatie en support op %s"
506
 
507
- #: .././admin/settings.php:1313
508
  #, php-format
509
  msgid "Your feedback and review are both important, %s!"
510
  msgstr "Uw feedback en review zijn beide belangrijk, %s!"
511
 
512
- #: .././admin/settings.php:1313
513
  msgid "rate this plugin"
514
  msgstr "waardeer deze plugin"
515
 
516
- #: .././admin/settings.php:1319
517
  msgid "Further Reading"
518
  msgstr "Meer informatie"
519
 
520
- #: .././admin/settings.php:1326
521
  #, php-format
522
  msgid "%s by moving your website to HTTPS/SSL."
523
  msgstr "%s door het verplaatsen van uw website naar HTTPS/SSL."
524
 
525
- #: .././admin/settings.php:1326
526
  msgid "Improve search rankings"
527
  msgstr "Verbeteren van zoek-rankings"
528
 
529
- #: .././admin/settings.php:1333
530
  #, php-format
531
  msgid "Other %s written by the same author"
532
  msgstr "Andere %s gemaakt door dezelfde auteur"
533
 
534
- #: .././admin/settings.php:1333
535
  msgid "WordPress Plugins"
536
  msgstr "Wordpress plugins"
537
 
538
- #: .././admin/settings.php:1339
539
  msgid "Other Services"
540
  msgstr "Andere services"
541
 
542
- #: .././admin/settings.php:1346
543
  #, php-format
544
  msgid "Speed up your website and plug into a whole %s"
545
  msgstr "Versnel uw website en voeg een %s"
546
 
547
- #: .././admin/settings.php:1346
548
  msgid "new level of site speed"
549
  msgstr "nieuw level van snelheid toe"
550
 
551
- #: .././admin/settings.php:1353
552
  #, php-format
553
  msgid "%s service with users tracking at IP level."
554
  msgstr "%s service met gebruikers-tracking op IP niveau."
555
 
556
- #: .././admin/settings.php:1353
557
  msgid "Web Analytics"
558
  msgstr "Web Analytics"
559
 
560
- #: .././admin/setup.php:76 .././admin/setup.php:111
561
  msgid "Google Analytics"
562
  msgstr "Google Analytics"
563
 
564
- #: .././admin/setup.php:84
565
  msgid "Backend Settings"
566
  msgstr "Backend instellingen"
567
 
568
- #: .././admin/setup.php:88
569
  msgid "Frontend Settings"
570
  msgstr "Frontend instellingen"
571
 
572
- #: .././admin/setup.php:92
573
  msgid "Tracking Code"
574
  msgstr "Trackingcode"
575
 
576
- #: .././admin/setup.php:195 .././admin/widgets.php:126
577
  msgid "Today"
578
  msgstr "Vandaag"
579
 
580
- #: .././admin/setup.php:196 .././admin/widgets.php:127
581
  msgid "Yesterday"
582
  msgstr "Gisteren"
583
 
584
- #: .././admin/setup.php:197 .././admin/widgets.php:128
585
- #: .././front/widgets.php:74 .././front/widgets.php:182
586
- msgid "Last 7 Days"
587
- msgstr "Afgelopen 7 dagen"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
588
 
589
- #: .././admin/setup.php:198 .././admin/widgets.php:130
590
- #: .././front/widgets.php:80 .././front/widgets.php:184
591
- msgid "Last 30 Days"
592
- msgstr "Afgelopen 30 dagen"
593
 
594
- #: .././admin/setup.php:199 .././admin/widgets.php:131
595
- msgid "Last 90 Days"
596
- msgstr "Afgelopen 90 dagen"
597
 
598
- #: .././admin/setup.php:202 .././admin/setup.php:218
 
599
  msgid "Unique Views"
600
  msgstr "Unieke weergaven"
601
 
602
- #: .././admin/setup.php:203 .././admin/setup.php:219
603
- #: .././admin/widgets.php:136 .././admin/widgets.php:875
604
- #: .././tools/gapi.php:391
605
  msgid "Users"
606
  msgstr "Bezoekers"
607
 
608
- #: .././admin/setup.php:204 .././admin/widgets.php:137
609
  msgid "Organic"
610
  msgstr "Via zoekmachines"
611
 
612
- #: .././admin/setup.php:205 .././admin/setup.php:220
613
- #: .././admin/widgets.php:138 .././admin/widgets.php:879
614
- #: .././tools/gapi.php:394
615
  msgid "Page Views"
616
  msgstr "Paginaweergaven"
617
 
618
- #: .././admin/setup.php:206 .././admin/setup.php:221
619
- #: .././admin/widgets.php:139 .././admin/widgets.php:883
620
- #: .././tools/gapi.php:397
621
  msgid "Bounce Rate"
622
  msgstr "Bouncepercentage"
623
 
624
- #: .././admin/setup.php:207 .././admin/widgets.php:140
625
  msgid "Location"
626
  msgstr "Locaties"
627
 
628
- #: .././admin/setup.php:208 .././admin/widgets.php:142 .././tools/gapi.php:566
 
629
  msgid "Referrers"
630
  msgstr "Beste verwijzingen"
631
 
632
- #: .././admin/setup.php:209 .././admin/widgets.php:143 .././tools/gapi.php:612
633
- #: .././tools/gapi.php:922
634
  msgid "Searches"
635
  msgstr "Beste zoekopdrachten"
636
 
637
- #: .././admin/setup.php:210 .././admin/widgets.php:144
638
  msgid "Traffic Details"
639
  msgstr "Verkeer"
640
 
641
- #: .././admin/setup.php:213 .././admin/widgets.php:510
642
- #: .././admin/widgets.php:607 .././admin/widgets.php:805
643
- #: .././admin/widgets.php:917 .././front/item-reports.php:94
644
  msgid "A JavaScript Error is blocking plugin resources!"
645
  msgstr "Een Javascript fout blokkeert plugin bestanden!"
646
 
647
- #: .././admin/setup.php:214 .././admin/widgets.php:713
648
  msgid "Traffic Mediums"
649
  msgstr "Verkeersbronnen"
650
 
651
- #: .././admin/setup.php:215 .././admin/widgets.php:729
652
  msgid "Visitor Type"
653
  msgstr "Nieuw vs. terugkerend"
654
 
655
- #: .././admin/setup.php:216 .././admin/widgets.php:745
656
  msgid "Social Networks"
657
  msgstr "Sociale netwerken"
658
 
659
- #: .././admin/setup.php:217 .././admin/widgets.php:761
660
  msgid "Search Engines"
661
  msgstr "Zoekmachines"
662
 
663
- #: .././admin/setup.php:222 .././admin/widgets.php:887
 
664
  msgid "Organic Search"
665
  msgstr "Zoekopdrachten"
666
 
667
- #: .././admin/setup.php:223 .././admin/widgets.php:891
 
668
  msgid "Pages/Session"
669
  msgstr "Pagina's/bezoek"
670
 
671
- #: .././admin/setup.php:224 .././admin/widgets.php:523
672
- #: .././admin/widgets.php:541 .././admin/widgets.php:620
673
- #: .././admin/widgets.php:638 .././admin/widgets.php:657
674
- #: .././admin/widgets.php:676 .././admin/widgets.php:696
675
- #: .././admin/widgets.php:819 .././admin/widgets.php:930
676
- #: .././admin/widgets.php:949 .././front/item-reports.php:106
677
- #: .././front/item-reports.php:125
 
678
  msgid "Invalid response, more details in JavaScript Console (F12)."
679
  msgstr "Ongeldige response, zie voor meer details de Javascript console (F12)"
680
 
681
- #: .././admin/setup.php:225
682
  msgid "Not enough data collected"
683
  msgstr "Niet voldoende data verzameld"
684
 
685
- #: .././admin/setup.php:226 .././admin/widgets.php:528
686
- #: .././admin/widgets.php:546 .././admin/widgets.php:625
687
- #: .././admin/widgets.php:643 .././admin/widgets.php:662
688
- #: .././admin/widgets.php:681 .././admin/widgets.php:701
689
- #: .././admin/widgets.php:824 .././admin/widgets.php:827
690
- #: .././admin/widgets.php:935 .././admin/widgets.php:954
691
- #: .././front/item-reports.php:111 .././front/item-reports.php:130
692
- #: .././front/widgets.php:110
693
  msgid "This report is unavailable"
694
  msgstr "Dit rapport is niet beschikbaar"
695
 
696
- #: .././admin/setup.php:227
697
  msgid "report generated by"
698
  msgstr "rapport gegenereerd door"
699
 
700
- #: .././admin/setup.php:267
701
  msgid "Settings"
702
  msgstr "Instellingen"
703
 
704
- #: .././admin/widgets.php:33 .././front/widgets.php:22
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
705
  msgid "Google Analytics Dashboard"
706
  msgstr "Bezoekersstatistieken"
707
 
708
- #: .././admin/widgets.php:42
709
  msgid "This plugin needs an authorization:"
710
  msgstr "Deze plugin heeft autorisatie nodig:"
711
 
712
- #: .././admin/widgets.php:76
713
  msgid "Something went wrong while retrieving profiles list."
714
  msgstr "Er ging iets mis met het ophalen van de profielen."
715
 
716
- #: .././admin/widgets.php:76
717
  msgid "More details"
718
  msgstr "Meer details"
719
 
720
- #: .././admin/widgets.php:89 .././admin/widgets.php:100
721
  msgid "An admin should asign a default Google Analytics Profile."
722
  msgstr ""
723
  "Een administrator moet een standaard Google Analytics profiel instellen"
724
 
725
- #: .././admin/widgets.php:89 .././admin/widgets.php:100
726
  msgid "Select Domain"
727
  msgstr "Kies een domein"
728
 
729
- #: .././admin/widgets.php:105
730
  msgid ""
731
  "Something went wrong while retrieving property data. You need to create and "
732
  "properly configure a Google Analytics account:"
@@ -734,192 +734,223 @@ msgstr ""
734
  "Er ging iets mis met het ophalen van de property data. Creëer eerst een "
735
  "Google Analytics account en stel deze correct in:"
736
 
737
- #: .././admin/widgets.php:105
738
  msgid "Find out more!"
739
  msgstr "Lees meer..."
740
 
741
- #: .././admin/widgets.php:125
742
  msgid "Real-Time"
743
  msgstr "Realtime"
744
 
745
- #: .././admin/widgets.php:129 .././front/widgets.php:77
746
- #: .././front/widgets.php:183
747
- msgid "Last 14 Days"
748
- msgstr "Afgelopen 14 dagen"
749
-
750
- #: .././admin/widgets.php:135 .././admin/widgets.php:871
751
- #: .././front/widgets.php:46 .././tools/gapi.php:406 .././tools/gapi.php:567
752
- #: .././tools/gapi.php:613 .././tools/gapi.php:676 .././tools/gapi.php:786
753
- #: .././tools/gapi.php:827 .././tools/gapi.php:923
754
  msgid "Sessions"
755
  msgstr "Bezoeken"
756
 
757
- #: .././admin/widgets.php:141 .././tools/gapi.php:521
758
  msgid "Pages"
759
  msgstr "Meest bezochte pagina's"
760
 
761
- #: .././admin/widgets.php:232 .././admin/widgets.php:472
762
  msgid "REFERRAL"
763
  msgstr "Verwijzend"
764
 
765
- #: .././admin/widgets.php:236 .././admin/widgets.php:473
766
  msgid "ORGANIC"
767
  msgstr "Zoekmachines"
768
 
769
- #: .././admin/widgets.php:240 .././admin/widgets.php:360
770
- #: .././admin/widgets.php:474
771
  msgid "SOCIAL"
772
  msgstr "Sociale media"
773
 
774
- #: .././admin/widgets.php:244 .././admin/widgets.php:363
775
- #: .././admin/widgets.php:475
776
  msgid "CAMPAIGN"
777
  msgstr "Campagne"
778
 
779
- #: .././admin/widgets.php:248 .././admin/widgets.php:366
780
- #: .././admin/widgets.php:478
781
  msgid "DIRECT"
782
  msgstr "Direct"
783
 
784
- #: .././admin/widgets.php:252 .././admin/widgets.php:479
785
  msgid "NEW"
786
  msgstr "Nieuw"
787
 
788
- #: .././admin/widgets.php:354
789
  msgid "REFERRALS"
790
  msgstr "Verwijzingen"
791
 
792
- #: .././admin/widgets.php:357
793
  msgid "KEYWORDS"
794
  msgstr "Zoekwoorden"
795
 
796
- #: .././front/item-reports.php:140
797
- msgid "Views vs UniqueViews"
798
- msgstr "Weergaven vs Unieke weergaven"
799
-
800
- #: .././front/item-reports.php:190
801
- msgid "Google Analytics Reports"
802
- msgstr "Google Analytics rapport"
803
-
804
- #: .././front/widgets.php:23
805
  msgid "Will display your google analytics stats in a widget"
806
  msgstr "Toont de Google Analytics statistieken in een widget"
807
 
808
- #: .././front/widgets.php:46 .././tools/gapi.php:827
809
  msgid "trend"
810
  msgstr "trend"
811
 
812
- #: .././front/widgets.php:133
813
  msgid "Period:"
814
  msgstr "Periode:"
815
 
816
- #: .././front/widgets.php:133
817
  msgid "Sessions:"
818
  msgstr "Sessies:"
819
 
820
- #: .././front/widgets.php:137
821
  msgid "generated by"
822
  msgstr "gegenereerd door"
823
 
824
- #: .././front/widgets.php:147
825
  msgid "Google Analytics Stats"
826
  msgstr "Google Analytics statistieken"
827
 
828
- #: .././front/widgets.php:154
829
  msgid "Title:"
830
  msgstr "Titel:"
831
 
832
- #: .././front/widgets.php:161
833
  msgid "Display:"
834
  msgstr "Weergave"
835
 
836
- #: .././front/widgets.php:165
837
  msgid "Chart & Totals"
838
  msgstr "Grafiek & totaal aantallen"
839
 
840
- #: .././front/widgets.php:166
841
  msgid "Chart"
842
  msgstr "Grafiek"
843
 
844
- #: .././front/widgets.php:167
845
  msgid "Totals"
846
  msgstr "Totaal aantallen"
847
 
848
- #: .././front/widgets.php:171
849
  msgid "Anonymize stats:"
850
  msgstr "Maak statistieken anoniem:"
851
 
852
- #: .././front/widgets.php:178
853
  msgid "Stats for:"
854
  msgstr "Statistieken voor:"
855
 
856
- #: .././front/widgets.php:188
857
  msgid "Give credits:"
858
  msgstr "Toon credits:"
859
 
860
- #: .././gadwp.php:46 .././gadwp.php:55 .././gadwp.php:63
861
  msgid "This is not allowed, read the documentation!"
862
  msgstr "Dit is niet toegestaan, lees de documentatie!"
863
 
864
- #: .././tools/gapi.php:134
865
  msgid "Use this link to get your access code:"
866
  msgstr "Gebruik deze link voor het verkrijgen van de toegangscode:"
867
 
868
- #: .././tools/gapi.php:134
869
  msgid "Get Access Code"
870
  msgstr "Toegangscode ophalen"
871
 
872
- #: .././tools/gapi.php:138 .././tools/gapi.php:139
873
  msgid "Use the red link to get your access code!"
874
  msgstr "Gebruik de rode link om de toegangscode op te halen!"
875
 
876
- #: .././tools/gapi.php:138
877
  msgid "Access Code:"
878
  msgstr "Toegangscode:"
879
 
880
- #: .././tools/gapi.php:145
881
  msgid "Save Access Code"
882
  msgstr "Toegangscode opslaan"
883
 
884
- #: .././tools/gapi.php:400
885
  msgid "Organic Searches"
886
  msgstr "Zoekopdrachten"
887
 
888
- #: .././tools/gapi.php:403
889
  msgid "Unique Page Views"
890
  msgstr "Unieke paginaweergaven"
891
 
892
- #: .././tools/gapi.php:411
893
  msgid "Hour"
894
  msgstr "Uur"
895
 
896
- #: .././tools/gapi.php:414 .././tools/gapi.php:826 .././tools/gapi.php:878
897
  msgid "Date"
898
  msgstr "Datum"
899
 
900
- #: .././tools/gapi.php:522 .././tools/gapi.php:879
901
  msgid "Views"
902
  msgstr "Weergaven"
903
 
904
- #: .././tools/gapi.php:640
905
  msgid "Countries"
906
  msgstr "Landen"
907
 
908
- #: .././tools/gapi.php:650
909
  msgid "Cities from"
910
  msgstr "Steden uit"
911
 
912
- #: .././tools/gapi.php:722
913
  msgid "Channels"
914
  msgstr "Kanalen"
915
 
916
- #: .././tools/gapi.php:785
917
  msgid "Type"
918
  msgstr "Type"
919
 
920
- #: .././tools/gapi.php:880
921
- msgid "UniqueViews"
922
- msgstr "Unieke weergaven"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
923
 
924
  #~ msgid "Top Searches"
925
  #~ msgstr "Beste zoekopdrachten"
3
  "Project-Id-Version: Google Analytics Dashboard for WP\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-"
5
  "dashboard-for-wp\n"
6
+ "POT-Creation-Date: 2015-07-05 16:08+0300\n"
7
+ "PO-Revision-Date: 2015-07-05 16:08+0300\n"
8
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
9
  "Language-Team: Willem-Jan Meerkerk <info@bs-webdevelopment.nl>\n"
10
  "Language: nl_NL\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Poedit 1.8.2\n"
15
+ "X-Poedit-KeywordsList: __;_e;_n;_x;_ex;_nx;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;esc_html_x;_n_noop;_nx_noop\n"
16
  "X-Poedit-Basepath: .\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
  "X-Poedit-SearchPath-0: ../.\n"
20
 
21
+ #: .././admin/item-reports.php:61 .././front/item-reports.php:29
22
  msgid "Analytics"
23
  msgstr "Analytics"
24
 
25
+ #: .././admin/settings.php:89 .././admin/settings.php:184
26
+ #: .././admin/settings.php:318 .././admin/settings.php:795
27
+ #: .././admin/settings.php:1068
28
  msgid "Settings saved."
29
  msgstr "Instellingen opgeslagen."
30
 
31
+ #: .././admin/settings.php:91 .././admin/settings.php:186
32
+ #: .././admin/settings.php:320 .././admin/settings.php:772
33
+ #: .././admin/settings.php:782 .././admin/settings.php:791
34
+ #: .././admin/settings.php:797 .././admin/settings.php:808
35
+ #: .././admin/settings.php:1029 .././admin/settings.php:1054
36
+ #: .././admin/settings.php:1064 .././admin/settings.php:1070
37
+ #: .././admin/settings.php:1081
38
  msgid "Cheating Huh?"
39
  msgstr "Cheating Huh?"
40
 
41
+ #: .././admin/settings.php:95 .././admin/settings.php:190
42
+ #: .././admin/settings.php:324 .././admin/settings.php:641
43
+ #: .././admin/settings.php:823 .././admin/settings.php:1095
44
  #, php-format
45
  msgid "Something went wrong, check %1$s or %2$s."
46
  msgstr "Er ging iets mis, bekijk %1$s of %2$s."
47
 
48
+ #: .././admin/settings.php:95 .././admin/settings.php:190
49
+ #: .././admin/settings.php:324 .././admin/settings.php:641
50
+ #: .././admin/settings.php:823 .././admin/settings.php:1095
51
+ #: .././admin/setup.php:46 .././admin/setup.php:59
52
  msgid "Errors & Debug"
53
  msgstr "Fouten & debug"
54
 
55
+ #: .././admin/settings.php:95 .././admin/settings.php:190
56
+ #: .././admin/settings.php:324 .././admin/settings.php:641
57
+ #: .././admin/settings.php:823 .././admin/settings.php:1095
58
  msgid "authorize the plugin"
59
  msgstr "autoriseer de plugin"
60
 
61
+ #: .././admin/settings.php:100
62
  msgid "Google Analytics Frontend Settings"
63
  msgstr "Google Analytics frontend instellingen"
64
 
65
+ #: .././admin/settings.php:110 .././admin/settings.php:205
 
 
 
 
 
 
 
 
 
 
66
  msgid "Permissions"
67
  msgstr "Rechten"
68
 
69
+ #: .././admin/settings.php:113 .././admin/settings.php:208
70
  msgid "Show stats to:"
71
  msgstr "Toon statistieken aan:"
72
 
73
+ #: .././admin/settings.php:154
74
+ msgid "enable web page reports on frontend"
75
+ msgstr ""
 
 
 
 
76
 
77
+ #: .././admin/settings.php:161 .././admin/settings.php:297
78
+ #: .././admin/settings.php:598 .././admin/settings.php:943
79
+ #: .././admin/settings.php:1232
80
  msgid "Save Changes"
81
  msgstr "Wijzigingen opslaan"
82
 
83
+ #: .././admin/settings.php:195
84
  msgid "Google Analytics Backend Settings"
85
  msgstr "Google Analytics backend instellingen"
86
 
87
+ #: .././admin/settings.php:251
 
 
 
 
 
88
  msgid "enable Switch View functionality"
89
  msgstr "inschakelen meerdere weergaven"
90
 
91
+ #: .././admin/settings.php:262
92
  msgid "enable reports on Posts List and Pages List"
93
  msgstr "inschakelen van rapporten in berichten en pagina's lijsten"
94
 
95
+ #: .././admin/settings.php:273
96
  msgid "enable the main Dashboard Widget"
97
  msgstr "inschakelen van de dashboard widget"
98
 
99
+ #: .././admin/settings.php:277
100
  msgid "Real-Time Settings"
101
  msgstr "Realtime instellingen"
102
 
103
+ #: .././admin/settings.php:280
104
  msgid "Maximum number of pages to display on real-time tab:"
105
  msgstr "Maximaal aantal pagina's om weer te geven op de realtime tab:"
106
 
107
+ #: .././admin/settings.php:285
108
  msgid "Location Settings"
109
  msgstr "Locatie instellingen"
110
 
111
+ #: .././admin/settings.php:289
112
  msgid "Target Geo Map to country:"
113
  msgstr "Inzoomen kaart naar het volgende land:"
114
 
115
+ #: .././admin/settings.php:327
116
  msgid ""
117
  "The tracking component is disabled. You should set <strong>Tracking Options</"
118
  "strong> to <strong>Enabled</strong>"
120
  "Tracking is op dit moment uitgeschakeld. Ga naar <strong>Tracking "
121
  "instellingen</strong> en kies daar <strong>Ingeschakeld</strong>"
122
 
123
+ #: .././admin/settings.php:332
124
  msgid "Google Analytics Tracking Code"
125
  msgstr "Google Analytics trackingcode"
126
 
127
+ #: .././admin/settings.php:341
128
  msgid "Basic Settings"
129
  msgstr "Basis instellingen"
130
 
131
+ #: .././admin/settings.php:342 .././admin/settings.php:408
132
  msgid "Events Tracking"
133
  msgstr "Gebeurtenis tracking"
134
 
135
+ #: .././admin/settings.php:343 .././admin/settings.php:456
136
  msgid "Custom Definitions"
137
  msgstr "Aangepaste definities"
138
 
139
+ #: .././admin/settings.php:344 .././admin/settings.php:554
140
+ #: .././admin/settings.php:1215
141
  msgid "Exclude Tracking"
142
  msgstr "Tracking uitsluiten"
143
 
144
+ #: .././admin/settings.php:345
145
  msgid "Advanced Settings"
146
  msgstr "Geavanceerde instellingen"
147
 
148
+ #: .././admin/settings.php:353
 
 
 
 
 
149
  msgid "Tracking Settings"
150
  msgstr "Tracking instellingen"
151
 
152
+ #: .././admin/settings.php:356
153
  msgid "Tracking Options:"
154
  msgstr "Tracking:"
155
 
156
+ #: .././admin/settings.php:358
157
  msgid "Disabled"
158
  msgstr "Uitgeschakeld"
159
 
160
+ #: .././admin/settings.php:359
161
  msgid "Enabled"
162
  msgstr "Ingeschakeld"
163
 
164
+ #: .././admin/settings.php:367 .././admin/settings.php:888
165
+ #: .././admin/settings.php:910 .././admin/settings.php:1188
166
+ #: .././admin/widgets.php:61
167
  msgid "View Name:"
168
  msgstr "Weergavenaam:"
169
 
170
+ #: .././admin/settings.php:367 .././admin/settings.php:910
171
  msgid "Tracking ID:"
172
  msgstr "Tracking ID:"
173
 
174
+ #: .././admin/settings.php:367 .././admin/settings.php:910
175
  msgid "Default URL:"
176
  msgstr "Standaard URL:"
177
 
178
+ #: .././admin/settings.php:367 .././admin/settings.php:910
179
  msgid "Time Zone:"
180
  msgstr "Tijdzone:"
181
 
182
+ #: .././admin/settings.php:372
183
  msgid "Basic Tracking"
184
  msgstr "Basis tracking"
185
 
186
+ #: .././admin/settings.php:375
187
  msgid "Tracking Type:"
188
  msgstr "Tracking type:"
189
 
190
+ #: .././admin/settings.php:377
191
  msgid "Classic Analytics"
192
  msgstr "Classic Analytics"
193
 
194
+ #: .././admin/settings.php:378
195
  msgid "Universal Analytics"
196
  msgstr "Universal Analytics"
197
 
198
+ #: .././admin/settings.php:389
199
  msgid "anonymize IPs while tracking"
200
  msgstr "maak IP-adressen anoniem bij het tracken"
201
 
202
+ #: .././admin/settings.php:400
203
  msgid "enable remarketing, demographics and interests reports"
204
  msgstr "inschakelen van remarketing, demographics en interests reports"
205
 
206
+ #: .././admin/settings.php:418
207
  msgid "track downloads, mailto and outbound links"
208
  msgstr "track downloads, mailto en uitgaande links"
209
 
210
+ #: .././admin/settings.php:422
211
  msgid "Downloads Regex:"
212
  msgstr "Downloads regex:"
213
 
214
+ #: .././admin/settings.php:433
215
  msgid "track affiliate links matching this regex"
216
  msgstr "track affiliate links met de volgende regex"
217
 
218
+ #: .././admin/settings.php:437
219
  msgid "Affiliates Regex:"
220
  msgstr "Affiliate regex:"
221
 
222
+ #: .././admin/settings.php:448
223
  msgid "track fragment identifiers, hashmarks (#) in URI links"
224
  msgstr "track fragment identifiers, hashmarks (#) in URI links"
225
 
226
+ #: .././admin/settings.php:459
227
  msgid "Authors:"
228
  msgstr "Auteurs:"
229
 
230
+ #: .././admin/settings.php:467
231
  msgid "Publication Year:"
232
  msgstr "Publicatie jaar:"
233
 
234
+ #: .././admin/settings.php:475
235
  msgid "Categories:"
236
  msgstr "Categorieën:"
237
 
238
+ #: .././admin/settings.php:483
239
  msgid "User Type:"
240
  msgstr "Type gebruiker:"
241
 
242
+ #: .././admin/settings.php:495
243
  msgid "Advanced Tracking"
244
  msgstr "Geavanceerde tracking"
245
 
246
+ #: .././admin/settings.php:498
247
  msgid "Page Speed SR:"
248
  msgstr "Pagina-snelheid sample rate:"
249
 
250
+ #: .././admin/settings.php:509
251
  msgid "exclude events from bounce-rate calculation"
252
  msgstr "uitsluiten van gebeurtenissen bij het berekenen van de bounce-rate"
253
 
254
+ #: .././admin/settings.php:520
255
  msgid "enable enhanced link attribution"
256
  msgstr "inschakelen van uitgebreide linktoeschrijving"
257
 
258
+ #: .././admin/settings.php:531
259
  msgid "enable AdSense account linking"
260
  msgstr "inschakelen van AdSende account linking"
261
 
262
+ #: .././admin/settings.php:542
263
  msgid "enable cross domain tracking"
264
  msgstr "inschakelen van cross-domein tracking"
265
 
266
+ #: .././admin/settings.php:546
267
  msgid "Cross Domains:"
268
  msgstr "Cross-domeinen:"
269
 
270
+ #: .././admin/settings.php:557
271
  msgid "Exclude tracking for:"
272
  msgstr "Tracking uitschakelen voor:"
273
 
274
+ #: .././admin/settings.php:645
275
  msgid "Google Analytics Errors & Debugging"
276
  msgstr "Google Analytics fouten & debug"
277
 
278
+ #: .././admin/settings.php:655
279
  msgid "Errors & Details"
280
  msgstr "Fouten & details"
281
 
282
+ #: .././admin/settings.php:656
283
  msgid "Plugin Settings"
284
  msgstr "Plugin instellingen"
285
 
286
+ #: .././admin/settings.php:663
 
 
 
 
 
287
  msgid "Last Error detected"
288
  msgstr "Laatste gedetecteerde fout"
289
 
290
+ #: .././admin/settings.php:669 .././admin/settings.php:682
291
  msgid "None"
292
  msgstr "geen"
293
 
294
+ #: .././admin/settings.php:676
295
  msgid "Error Details"
296
  msgstr "Fout details"
297
 
298
+ #: .././admin/settings.php:696
299
  msgid "Plugin Configuration"
300
  msgstr "Plugin configuratie"
301
 
302
+ #: .././admin/settings.php:717 .././admin/settings.php:980
303
  msgid ""
304
  "Loading the required libraries. If this results in a blank screen or a fatal "
305
  "error, try this solution:"
307
  "Laden van de vereiste libraries. Als dit in een leeg scherm of fatale fout "
308
  "resulteert, probeer deze oplossing:"
309
 
310
+ #: .././admin/settings.php:717
311
  msgid "Library conflicts between WordPress plugins"
312
  msgstr "Library conflict tussen Wordpress plugins"
313
 
314
+ #: .././admin/settings.php:732 .././admin/settings.php:997
315
  msgid "Plugin authorization succeeded."
316
  msgstr "Plugin autorisatie succesvol ingesteld."
317
 
318
+ #: .././admin/settings.php:747 .././admin/settings.php:1020
319
  msgid ""
320
  "The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
321
  "(UA-XXXXX-X). Try again, and use the red link to get your access code"
324
  "(UA-XXXXX-X). Probeer opnieuw, gebruik de rode link voor het verkrijgen van "
325
  "de toegangscode."
326
 
327
+ #: .././admin/settings.php:770 .././admin/settings.php:1052
328
  msgid "Cleared Cache."
329
  msgstr "Cache leeggemaakt."
330
 
331
+ #: .././admin/settings.php:779 .././admin/settings.php:1061
332
  msgid "Token Reseted and Revoked."
333
  msgstr "Token gereset en ingetrokken."
334
 
335
+ #: .././admin/settings.php:789
336
  msgid "All errors reseted."
337
  msgstr "Alle fouten gereset."
338
 
339
+ #: .././admin/settings.php:802 .././admin/settings.php:1075
340
  msgid "All other domains/properties were removed."
341
  msgstr "Alle andere domeinen/properties zijn verwijderd."
342
 
343
+ #: .././admin/settings.php:813 .././admin/settings.php:1086
344
  msgid "Google Analytics Settings"
345
  msgstr "Google Analytics instellingen"
346
 
347
+ #: .././admin/settings.php:828 .././admin/settings.php:1100
348
  msgid "Use the red link (see below) to generate and get your access code!"
349
  msgstr ""
350
  "Gebruik de rode link (zie hieronder) voor het genereren en verkrijgen van de "
351
  "toegangscode!"
352
 
353
+ #: .././admin/settings.php:839 .././admin/settings.php:1128
354
  msgid "Plugin Authorization"
355
  msgstr "Plugin authorisatie"
356
 
357
+ #: .././admin/settings.php:844 .././admin/settings.php:1132
358
  #, php-format
359
  msgid ""
360
  "You should watch the %1$s and read this %2$s before proceeding to "
364
  "Bekijk de %1$s en lees de %2$s voor het instellen van de autorisatie. Deze "
365
  "plugin heeft een goed ingesteld Google Analytics account nodig."
366
 
367
+ #: .././admin/settings.php:844 .././admin/settings.php:1132
368
  msgid "video"
369
  msgstr "video"
370
 
371
+ #: .././admin/settings.php:844 .././admin/settings.php:1132
372
  msgid "tutorial"
373
  msgstr "tutorial"
374
 
375
+ #: .././admin/settings.php:849 .././admin/settings.php:1139
376
  msgid "use your own API Project credentials"
377
  msgstr "gebruik aangepaste API Project credentials"
378
 
379
+ #: .././admin/settings.php:854 .././admin/settings.php:1147
380
  msgid "API Key:"
381
  msgstr "API Key:"
382
 
383
+ #: .././admin/settings.php:858 .././admin/settings.php:1151
384
  msgid "Client ID:"
385
  msgstr "Client ID:"
386
 
387
+ #: .././admin/settings.php:862 .././admin/settings.php:1155
388
  msgid "Client Secret:"
389
  msgstr "Client Secret:"
390
 
391
+ #: .././admin/settings.php:872 .././admin/settings.php:1165
392
  msgid "Clear Authorization"
393
  msgstr "Autorisatie verwijderen"
394
 
395
+ #: .././admin/settings.php:872 .././admin/settings.php:950
396
+ #: .././admin/settings.php:1165 .././admin/settings.php:1241
397
  msgid "Clear Cache"
398
  msgstr "Cache leegmaken"
399
 
400
+ #: .././admin/settings.php:872
401
  msgid "Reset Errors"
402
  msgstr "Fouten resetten"
403
 
404
+ #: .././admin/settings.php:878 .././admin/setup.php:42 .././admin/setup.php:58
 
405
  msgid "General Settings"
406
  msgstr "Algemene instellingen"
407
 
408
+ #: .././admin/settings.php:881
409
  msgid "Select View:"
410
  msgstr "Kies weergave:"
411
 
412
+ #: .././admin/settings.php:892 .././admin/settings.php:1192
413
  msgid "Property not found"
414
  msgstr "Property niet gevonden"
415
 
416
+ #: .././admin/settings.php:898
417
  msgid "Lock Selection"
418
  msgstr "Selectie vergrendelen"
419
 
420
+ #: .././admin/settings.php:917
421
  msgid "Theme Color:"
422
  msgstr "Thema kleur:"
423
 
424
+ #: .././admin/settings.php:925 .././admin/settings.php:1201
425
  msgid "Automatic Updates"
426
  msgstr "Automatische updates"
427
 
428
+ #: .././admin/settings.php:935 .././admin/settings.php:1211
429
  msgid ""
430
  "automatic updates for minor versions (security and maintenance releases only)"
431
  msgstr ""
432
  "automatische updates voor minor versies (alleen beveiliging- en "
433
  "onderhoudreleases)"
434
 
435
+ #: .././admin/settings.php:950 .././admin/settings.php:1241
436
+ #: .././admin/widgets.php:32
437
  msgid "Authorize Plugin"
438
  msgstr "Plugin autoriseren"
439
 
440
+ #: .././admin/settings.php:1026
441
  msgid "Properties refreshed."
442
  msgstr "Properties zijn vernieuwd."
443
 
444
+ #: .././admin/settings.php:1110
445
  msgid "Network Setup"
446
  msgstr "Netwerk setup"
447
 
448
+ #: .././admin/settings.php:1120
449
  msgid "use a single Google Analytics account for the entire network"
450
  msgstr "gebruik één Google Analytics account voor het hele netwerk"
451
 
452
+ #: .././admin/settings.php:1165
453
  msgid "Refresh Properties"
454
  msgstr "Properties vernieuwen"
455
 
456
+ #: .././admin/settings.php:1171
457
  msgid "Properties/Views Settings"
458
  msgstr "Properties/weergaven instellingen"
459
 
460
+ #: .././admin/settings.php:1225
461
  msgid "exclude Super Admin tracking for the entire network"
462
  msgstr "uitsluiten van Super Admin tracking voor het hele netwerk"
463
 
464
+ #: .././admin/settings.php:1273
465
  msgid "Setup Tutorial & Demo"
466
  msgstr "Setup tutorial & demo"
467
 
468
+ #: .././admin/settings.php:1281
469
+ msgid "Follow & Review"
470
+ msgstr ""
 
 
 
 
 
471
 
472
+ #: .././admin/settings.php:1307
473
  #, php-format
474
  msgid "Your feedback and review are both important, %s!"
475
  msgstr "Uw feedback en review zijn beide belangrijk, %s!"
476
 
477
+ #: .././admin/settings.php:1307
478
  msgid "rate this plugin"
479
  msgstr "waardeer deze plugin"
480
 
481
+ #: .././admin/settings.php:1313
482
  msgid "Further Reading"
483
  msgstr "Meer informatie"
484
 
485
+ #: .././admin/settings.php:1320
486
  #, php-format
487
  msgid "%s by moving your website to HTTPS/SSL."
488
  msgstr "%s door het verplaatsen van uw website naar HTTPS/SSL."
489
 
490
+ #: .././admin/settings.php:1320
491
  msgid "Improve search rankings"
492
  msgstr "Verbeteren van zoek-rankings"
493
 
494
+ #: .././admin/settings.php:1327
495
  #, php-format
496
  msgid "Other %s written by the same author"
497
  msgstr "Andere %s gemaakt door dezelfde auteur"
498
 
499
+ #: .././admin/settings.php:1327
500
  msgid "WordPress Plugins"
501
  msgstr "Wordpress plugins"
502
 
503
+ #: .././admin/settings.php:1333
504
  msgid "Other Services"
505
  msgstr "Andere services"
506
 
507
+ #: .././admin/settings.php:1340
508
  #, php-format
509
  msgid "Speed up your website and plug into a whole %s"
510
  msgstr "Versnel uw website en voeg een %s"
511
 
512
+ #: .././admin/settings.php:1340
513
  msgid "new level of site speed"
514
  msgstr "nieuw level van snelheid toe"
515
 
516
+ #: .././admin/settings.php:1347
517
  #, php-format
518
  msgid "%s service with users tracking at IP level."
519
  msgstr "%s service met gebruikers-tracking op IP niveau."
520
 
521
+ #: .././admin/settings.php:1347
522
  msgid "Web Analytics"
523
  msgstr "Web Analytics"
524
 
525
+ #: .././admin/setup.php:41 .././admin/setup.php:57
526
  msgid "Google Analytics"
527
  msgstr "Google Analytics"
528
 
529
+ #: .././admin/setup.php:43
530
  msgid "Backend Settings"
531
  msgstr "Backend instellingen"
532
 
533
+ #: .././admin/setup.php:44
534
  msgid "Frontend Settings"
535
  msgstr "Frontend instellingen"
536
 
537
+ #: .././admin/setup.php:45
538
  msgid "Tracking Code"
539
  msgstr "Trackingcode"
540
 
541
+ #: .././admin/setup.php:159 .././admin/widgets.php:117 .././front/setup.php:71
542
  msgid "Today"
543
  msgstr "Vandaag"
544
 
545
+ #: .././admin/setup.php:160 .././admin/widgets.php:118 .././front/setup.php:72
546
  msgid "Yesterday"
547
  msgstr "Gisteren"
548
 
549
+ #: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
550
+ #: .././admin/setup.php:164 .././admin/widgets.php:119
551
+ #: .././admin/widgets.php:120 .././admin/widgets.php:121
552
+ #: .././admin/widgets.php:122 .././front/setup.php:73 .././front/setup.php:74
553
+ #: .././front/setup.php:75 .././front/setup.php:76 .././front/widgets.php:64
554
+ #: .././front/widgets.php:67 .././front/widgets.php:70
555
+ #: .././front/widgets.php:158 .././front/widgets.php:159
556
+ #: .././front/widgets.php:160
557
+ #, php-format
558
+ msgid "Last %d Days"
559
+ msgstr "Afgelopen %d dagen"
560
+
561
+ #: .././admin/setup.php:165 .././admin/setup.php:166
562
+ #: .././admin/widgets.php:123 .././admin/widgets.php:124
563
+ #: .././front/setup.php:77 .././front/setup.php:78
564
+ #, php-format
565
+ msgid "%s Year"
566
+ msgstr ""
567
 
568
+ #: .././admin/setup.php:165 .././admin/widgets.php:123 .././front/setup.php:77
569
+ msgid "One"
570
+ msgstr ""
 
571
 
572
+ #: .././admin/setup.php:166 .././admin/widgets.php:124 .././front/setup.php:78
573
+ msgid "Three"
574
+ msgstr ""
575
 
576
+ #: .././admin/setup.php:169 .././admin/setup.php:185 .././front/setup.php:81
577
+ #: .././front/setup.php:97
578
  msgid "Unique Views"
579
  msgstr "Unieke weergaven"
580
 
581
+ #: .././admin/setup.php:170 .././admin/setup.php:186
582
+ #: .././admin/widgets.php:130 .././admin/widgets.php:830
583
+ #: .././front/setup.php:82 .././front/setup.php:98 .././tools/gapi.php:358
584
  msgid "Users"
585
  msgstr "Bezoekers"
586
 
587
+ #: .././admin/setup.php:171 .././admin/widgets.php:131 .././front/setup.php:83
588
  msgid "Organic"
589
  msgstr "Via zoekmachines"
590
 
591
+ #: .././admin/setup.php:172 .././admin/setup.php:187
592
+ #: .././admin/widgets.php:132 .././admin/widgets.php:834
593
+ #: .././front/setup.php:84 .././front/setup.php:99 .././tools/gapi.php:361
594
  msgid "Page Views"
595
  msgstr "Paginaweergaven"
596
 
597
+ #: .././admin/setup.php:173 .././admin/setup.php:188
598
+ #: .././admin/widgets.php:133 .././admin/widgets.php:838
599
+ #: .././front/setup.php:85 .././front/setup.php:100 .././tools/gapi.php:364
600
  msgid "Bounce Rate"
601
  msgstr "Bouncepercentage"
602
 
603
+ #: .././admin/setup.php:174 .././admin/widgets.php:134 .././front/setup.php:86
604
  msgid "Location"
605
  msgstr "Locaties"
606
 
607
+ #: .././admin/setup.php:175 .././admin/widgets.php:136 .././front/setup.php:87
608
+ #: .././tools/gapi.php:503
609
  msgid "Referrers"
610
  msgstr "Beste verwijzingen"
611
 
612
+ #: .././admin/setup.php:176 .././admin/widgets.php:137 .././front/setup.php:88
613
+ #: .././tools/gapi.php:536
614
  msgid "Searches"
615
  msgstr "Beste zoekopdrachten"
616
 
617
+ #: .././admin/setup.php:177 .././admin/widgets.php:138 .././front/setup.php:89
618
  msgid "Traffic Details"
619
  msgstr "Verkeer"
620
 
621
+ #: .././admin/setup.php:180 .././admin/widgets.php:505
622
+ #: .././admin/widgets.php:590 .././admin/widgets.php:757
623
+ #: .././admin/widgets.php:861 .././front/setup.php:92
624
  msgid "A JavaScript Error is blocking plugin resources!"
625
  msgstr "Een Javascript fout blokkeert plugin bestanden!"
626
 
627
+ #: .././admin/setup.php:181 .././admin/widgets.php:681 .././front/setup.php:93
628
  msgid "Traffic Mediums"
629
  msgstr "Verkeersbronnen"
630
 
631
+ #: .././admin/setup.php:182 .././admin/widgets.php:696 .././front/setup.php:94
632
  msgid "Visitor Type"
633
  msgstr "Nieuw vs. terugkerend"
634
 
635
+ #: .././admin/setup.php:183 .././admin/widgets.php:711 .././front/setup.php:95
636
  msgid "Social Networks"
637
  msgstr "Sociale netwerken"
638
 
639
+ #: .././admin/setup.php:184 .././admin/widgets.php:726 .././front/setup.php:96
640
  msgid "Search Engines"
641
  msgstr "Zoekmachines"
642
 
643
+ #: .././admin/setup.php:189 .././admin/widgets.php:842
644
+ #: .././front/setup.php:101
645
  msgid "Organic Search"
646
  msgstr "Zoekopdrachten"
647
 
648
+ #: .././admin/setup.php:190 .././admin/widgets.php:846
649
+ #: .././front/setup.php:102
650
  msgid "Pages/Session"
651
  msgstr "Pagina's/bezoek"
652
 
653
+ #: .././admin/setup.php:191 .././admin/widgets.php:517
654
+ #: .././admin/widgets.php:531 .././admin/widgets.php:541
655
+ #: .././admin/widgets.php:602 .././admin/widgets.php:616
656
+ #: .././admin/widgets.php:630 .././admin/widgets.php:644
657
+ #: .././admin/widgets.php:658 .././admin/widgets.php:668
658
+ #: .././admin/widgets.php:770 .././admin/widgets.php:782
659
+ #: .././admin/widgets.php:873 .././admin/widgets.php:887
660
+ #: .././admin/widgets.php:897 .././front/setup.php:103
661
  msgid "Invalid response, more details in JavaScript Console (F12)."
662
  msgstr "Ongeldige response, zie voor meer details de Javascript console (F12)"
663
 
664
+ #: .././admin/setup.php:192 .././front/setup.php:104
665
  msgid "Not enough data collected"
666
  msgstr "Niet voldoende data verzameld"
667
 
668
+ #: .././admin/setup.php:193 .././admin/widgets.php:522
669
+ #: .././admin/widgets.php:536 .././admin/widgets.php:607
670
+ #: .././admin/widgets.php:621 .././admin/widgets.php:635
671
+ #: .././admin/widgets.php:649 .././admin/widgets.php:663
672
+ #: .././admin/widgets.php:775 .././admin/widgets.php:777
673
+ #: .././admin/widgets.php:878 .././admin/widgets.php:892
674
+ #: .././front/setup.php:105 .././front/widgets.php:100
 
675
  msgid "This report is unavailable"
676
  msgstr "Dit rapport is niet beschikbaar"
677
 
678
+ #: .././admin/setup.php:194 .././front/setup.php:106
679
  msgid "report generated by"
680
  msgstr "rapport gegenereerd door"
681
 
682
+ #: .././admin/setup.php:225
683
  msgid "Settings"
684
  msgstr "Instellingen"
685
 
686
+ #: .././admin/setup.php:237
687
+ #, php-format
688
+ msgid "Google Analytics Dashboard for WP has been updated to version %s."
689
+ msgstr ""
690
+
691
+ #: .././admin/setup.php:237
692
+ #, php-format
693
+ msgid "For details, check out %1$s and %2$s."
694
+ msgstr ""
695
+
696
+ #: .././admin/setup.php:237
697
+ msgid "the documentation page"
698
+ msgstr ""
699
+
700
+ #: .././admin/setup.php:237
701
+ msgid "the plugin&#39;s settings page"
702
+ msgstr ""
703
+
704
+ #: .././admin/widgets.php:27 .././front/widgets.php:21
705
  msgid "Google Analytics Dashboard"
706
  msgstr "Bezoekersstatistieken"
707
 
708
+ #: .././admin/widgets.php:32
709
  msgid "This plugin needs an authorization:"
710
  msgstr "Deze plugin heeft autorisatie nodig:"
711
 
712
+ #: .././admin/widgets.php:66
713
  msgid "Something went wrong while retrieving profiles list."
714
  msgstr "Er ging iets mis met het ophalen van de profielen."
715
 
716
+ #: .././admin/widgets.php:66
717
  msgid "More details"
718
  msgstr "Meer details"
719
 
720
+ #: .././admin/widgets.php:79 .././admin/widgets.php:90
721
  msgid "An admin should asign a default Google Analytics Profile."
722
  msgstr ""
723
  "Een administrator moet een standaard Google Analytics profiel instellen"
724
 
725
+ #: .././admin/widgets.php:79 .././admin/widgets.php:90
726
  msgid "Select Domain"
727
  msgstr "Kies een domein"
728
 
729
+ #: .././admin/widgets.php:95
730
  msgid ""
731
  "Something went wrong while retrieving property data. You need to create and "
732
  "properly configure a Google Analytics account:"
734
  "Er ging iets mis met het ophalen van de property data. Creëer eerst een "
735
  "Google Analytics account en stel deze correct in:"
736
 
737
+ #: .././admin/widgets.php:95
738
  msgid "Find out more!"
739
  msgstr "Lees meer..."
740
 
741
+ #: .././admin/widgets.php:116
742
  msgid "Real-Time"
743
  msgstr "Realtime"
744
 
745
+ #: .././admin/widgets.php:129 .././admin/widgets.php:826
746
+ #: .././front/widgets.php:36 .././tools/gapi.php:373 .././tools/gapi.php:503
747
+ #: .././tools/gapi.php:536 .././tools/gapi.php:586 .././tools/gapi.php:666
748
+ #: .././tools/gapi.php:695
 
 
 
 
 
749
  msgid "Sessions"
750
  msgstr "Bezoeken"
751
 
752
+ #: .././admin/widgets.php:135 .././tools/gapi.php:471
753
  msgid "Pages"
754
  msgstr "Meest bezochte pagina's"
755
 
756
+ #: .././admin/widgets.php:236 .././admin/widgets.php:478
757
  msgid "REFERRAL"
758
  msgstr "Verwijzend"
759
 
760
+ #: .././admin/widgets.php:240 .././admin/widgets.php:479
761
  msgid "ORGANIC"
762
  msgstr "Zoekmachines"
763
 
764
+ #: .././admin/widgets.php:244 .././admin/widgets.php:364
765
+ #: .././admin/widgets.php:480
766
  msgid "SOCIAL"
767
  msgstr "Sociale media"
768
 
769
+ #: .././admin/widgets.php:248 .././admin/widgets.php:367
770
+ #: .././admin/widgets.php:481
771
  msgid "CAMPAIGN"
772
  msgstr "Campagne"
773
 
774
+ #: .././admin/widgets.php:252 .././admin/widgets.php:370
775
+ #: .././admin/widgets.php:484
776
  msgid "DIRECT"
777
  msgstr "Direct"
778
 
779
+ #: .././admin/widgets.php:256 .././admin/widgets.php:485
780
  msgid "NEW"
781
  msgstr "Nieuw"
782
 
783
+ #: .././admin/widgets.php:358
784
  msgid "REFERRALS"
785
  msgstr "Verwijzingen"
786
 
787
+ #: .././admin/widgets.php:361
788
  msgid "KEYWORDS"
789
  msgstr "Zoekwoorden"
790
 
791
+ #: .././front/widgets.php:21
 
 
 
 
 
 
 
 
792
  msgid "Will display your google analytics stats in a widget"
793
  msgstr "Toont de Google Analytics statistieken in een widget"
794
 
795
+ #: .././front/widgets.php:36 .././tools/gapi.php:695
796
  msgid "trend"
797
  msgstr "trend"
798
 
799
+ #: .././front/widgets.php:123
800
  msgid "Period:"
801
  msgstr "Periode:"
802
 
803
+ #: .././front/widgets.php:123
804
  msgid "Sessions:"
805
  msgstr "Sessies:"
806
 
807
+ #: .././front/widgets.php:127
808
  msgid "generated by"
809
  msgstr "gegenereerd door"
810
 
811
+ #: .././front/widgets.php:136
812
  msgid "Google Analytics Stats"
813
  msgstr "Google Analytics statistieken"
814
 
815
+ #: .././front/widgets.php:144
816
  msgid "Title:"
817
  msgstr "Titel:"
818
 
819
+ #: .././front/widgets.php:147
820
  msgid "Display:"
821
  msgstr "Weergave"
822
 
823
+ #: .././front/widgets.php:148
824
  msgid "Chart & Totals"
825
  msgstr "Grafiek & totaal aantallen"
826
 
827
+ #: .././front/widgets.php:149
828
  msgid "Chart"
829
  msgstr "Grafiek"
830
 
831
+ #: .././front/widgets.php:150
832
  msgid "Totals"
833
  msgstr "Totaal aantallen"
834
 
835
+ #: .././front/widgets.php:154
836
  msgid "Anonymize stats:"
837
  msgstr "Maak statistieken anoniem:"
838
 
839
+ #: .././front/widgets.php:157
840
  msgid "Stats for:"
841
  msgstr "Statistieken voor:"
842
 
843
+ #: .././front/widgets.php:164
844
  msgid "Give credits:"
845
  msgstr "Toon credits:"
846
 
847
+ #: .././gadwp.php:46 .././gadwp.php:54 .././gadwp.php:61
848
  msgid "This is not allowed, read the documentation!"
849
  msgstr "Dit is niet toegestaan, lees de documentatie!"
850
 
851
+ #: .././tools/gapi.php:128
852
  msgid "Use this link to get your access code:"
853
  msgstr "Gebruik deze link voor het verkrijgen van de toegangscode:"
854
 
855
+ #: .././tools/gapi.php:128
856
  msgid "Get Access Code"
857
  msgstr "Toegangscode ophalen"
858
 
859
+ #: .././tools/gapi.php:132 .././tools/gapi.php:133
860
  msgid "Use the red link to get your access code!"
861
  msgstr "Gebruik de rode link om de toegangscode op te halen!"
862
 
863
+ #: .././tools/gapi.php:132
864
  msgid "Access Code:"
865
  msgstr "Toegangscode:"
866
 
867
+ #: .././tools/gapi.php:139
868
  msgid "Save Access Code"
869
  msgstr "Toegangscode opslaan"
870
 
871
+ #: .././tools/gapi.php:367
872
  msgid "Organic Searches"
873
  msgstr "Zoekopdrachten"
874
 
875
+ #: .././tools/gapi.php:370
876
  msgid "Unique Page Views"
877
  msgstr "Unieke paginaweergaven"
878
 
879
+ #: .././tools/gapi.php:378
880
  msgid "Hour"
881
  msgstr "Uur"
882
 
883
+ #: .././tools/gapi.php:382 .././tools/gapi.php:385 .././tools/gapi.php:695
884
  msgid "Date"
885
  msgstr "Datum"
886
 
887
+ #: .././tools/gapi.php:471
888
  msgid "Views"
889
  msgstr "Weergaven"
890
 
891
+ #: .././tools/gapi.php:557
892
  msgid "Countries"
893
  msgstr "Landen"
894
 
895
+ #: .././tools/gapi.php:567
896
  msgid "Cities from"
897
  msgstr "Steden uit"
898
 
899
+ #: .././tools/gapi.php:620
900
  msgid "Channels"
901
  msgstr "Kanalen"
902
 
903
+ #: .././tools/gapi.php:666
904
  msgid "Type"
905
  msgstr "Type"
906
 
907
+ #~ msgid "Last 7 Days"
908
+ #~ msgstr "Afgelopen 7 dagen"
909
+
910
+ #~ msgid "Last 30 Days"
911
+ #~ msgstr "Afgelopen 30 dagen"
912
+
913
+ #~ msgid "Last 90 Days"
914
+ #~ msgstr "Afgelopen 90 dagen"
915
+
916
+ #~ msgid "Last 14 Days"
917
+ #~ msgstr "Afgelopen 14 dagen"
918
+
919
+ #~ msgid "Read %s for more information about Frontend Features and Options."
920
+ #~ msgstr "Lees %s voor meer informatie over frontend mogelijkheden en opties."
921
+
922
+ #~ msgid "this documentation page"
923
+ #~ msgstr "deze documentatie pagina"
924
+
925
+ #~ msgid "show page sessions and users in frontend (after each article)"
926
+ #~ msgstr "toon pagina sessies en gebruikers in frontend (na elk artikel)"
927
+
928
+ #~ msgid "show page searches (after each article)"
929
+ #~ msgstr "toon zoekopdrachten naar pagina (na elk artikel)"
930
+
931
+ #~ msgid "Read %s for more information about Backend Features and Options."
932
+ #~ msgstr "Lees %s voor meer informatie over backend mogelijkheden en opties."
933
+
934
+ #~ msgid "For more information about Tracking Options read %s."
935
+ #~ msgstr "Voor meer informatie over tracking opties, lees %s."
936
+
937
+ #~ msgid "For errors and/or other issues check %s and related resources."
938
+ #~ msgstr "Voor fouten of andere problemen, bekijk %s en gerelateerde bronnen."
939
+
940
+ #~ msgid "Support & Reviews"
941
+ #~ msgstr "Support & reviews"
942
+
943
+ #~ msgid "Plugin documentation and support on %s"
944
+ #~ msgstr "Plugin documentatie en support op %s"
945
+
946
+ #~ msgid "Views vs UniqueViews"
947
+ #~ msgstr "Weergaven vs Unieke weergaven"
948
+
949
+ #~ msgid "Google Analytics Reports"
950
+ #~ msgstr "Google Analytics rapport"
951
+
952
+ #~ msgid "UniqueViews"
953
+ #~ msgstr "Unieke weergaven"
954
 
955
  #~ msgid "Top Searches"
956
  #~ msgstr "Beste zoekopdrachten"
languages/ga-dash-pl_PL.po CHANGED
@@ -1,356 +1,352 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Google Analytics Dashboard for WP\n"
4
- "POT-Creation-Date: 2015-05-21 19:47+0200\n"
5
- "PO-Revision-Date: 2015-05-21 19:47+0200\n"
6
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
7
  "Language-Team: Alin Marcu\n"
8
  "Language: pl\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.8\n"
13
- "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: .\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
  "X-Poedit-SearchPath-0: ../.\n"
18
 
19
- #: .././admin/item-reports.php:52
20
  msgid "Analytics"
21
  msgstr ""
22
 
23
- #: .././admin/settings.php:94 .././admin/settings.php:197
24
- #: .././admin/settings.php:328 .././admin/settings.php:803
25
- #: .././admin/settings.php:1079
26
  msgid "Settings saved."
27
  msgstr ""
28
 
29
- #: .././admin/settings.php:96 .././admin/settings.php:199
30
- #: .././admin/settings.php:330 .././admin/settings.php:780
31
- #: .././admin/settings.php:790 .././admin/settings.php:799
32
- #: .././admin/settings.php:805 .././admin/settings.php:817
33
- #: .././admin/settings.php:1040 .././admin/settings.php:1065
34
- #: .././admin/settings.php:1075 .././admin/settings.php:1081
35
- #: .././admin/settings.php:1093
36
  msgid "Cheating Huh?"
37
  msgstr "Oszukujemy, co?"
38
 
39
- #: .././admin/settings.php:100 .././admin/settings.php:203
40
- #: .././admin/settings.php:334 .././admin/settings.php:647
41
- #: .././admin/settings.php:832 .././admin/settings.php:1107
42
  #, php-format
43
  msgid "Something went wrong, check %1$s or %2$s."
44
  msgstr ""
45
 
46
- #: .././admin/settings.php:100 .././admin/settings.php:203
47
- #: .././admin/settings.php:334 .././admin/settings.php:647
48
- #: .././admin/settings.php:832 .././admin/settings.php:1107
49
- #: .././admin/setup.php:82 .././admin/setup.php:101
50
  msgid "Errors & Debug"
51
  msgstr ""
52
 
53
- #: .././admin/settings.php:100 .././admin/settings.php:203
54
- #: .././admin/settings.php:334 .././admin/settings.php:647
55
- #: .././admin/settings.php:832 .././admin/settings.php:1107
56
  msgid "authorize the plugin"
57
  msgstr "autoryzować wtyczkę"
58
 
59
- #: .././admin/settings.php:105
60
  msgid "Google Analytics Frontend Settings"
61
  msgstr "Ustawienia Frontendu Google Analytics"
62
 
63
- #: .././admin/settings.php:115 .././admin/settings.php:218
64
  msgid "Permissions"
65
  msgstr ""
66
 
67
- #: .././admin/settings.php:118 .././admin/settings.php:221
68
  msgid "Show stats to:"
69
  msgstr ""
70
 
71
- #: .././admin/settings.php:157
72
- msgid "show page sessions and users in frontend (after each article)"
73
  msgstr ""
74
 
75
- #: .././admin/settings.php:168
76
- msgid "show page searches (after each article)"
77
- msgstr ""
78
-
79
- #: .././admin/settings.php:175 .././admin/settings.php:308
80
- #: .././admin/settings.php:605 .././admin/settings.php:952
81
- #: .././admin/settings.php:1245
82
  msgid "Save Changes"
83
  msgstr ""
84
 
85
- #: .././admin/settings.php:208
86
  msgid "Google Analytics Backend Settings"
87
  msgstr ""
88
 
89
- #: .././admin/settings.php:262
90
  msgid "enable Switch View functionality"
91
  msgstr ""
92
 
93
- #: .././admin/settings.php:273
94
  msgid "enable reports on Posts List and Pages List"
95
  msgstr ""
96
 
97
- #: .././admin/settings.php:284
98
  msgid "enable the main Dashboard Widget"
99
  msgstr ""
100
 
101
- #: .././admin/settings.php:288
102
  msgid "Real-Time Settings"
103
  msgstr "Ustawienia Czasu Rzeczywistego"
104
 
105
- #: .././admin/settings.php:291
106
  msgid "Maximum number of pages to display on real-time tab:"
107
  msgstr "Maksymalna liczba stron wyświetlanych na karcie Czas Rzeczywisty:"
108
 
109
- #: .././admin/settings.php:296
110
  msgid "Location Settings"
111
  msgstr ""
112
 
113
- #: .././admin/settings.php:300
114
  msgid "Target Geo Map to country:"
115
  msgstr ""
116
 
117
- #: .././admin/settings.php:337
118
  msgid ""
119
  "The tracking component is disabled. You should set <strong>Tracking Options</"
120
  "strong> to <strong>Enabled</strong>"
121
  msgstr ""
122
 
123
- #: .././admin/settings.php:342
124
  msgid "Google Analytics Tracking Code"
125
  msgstr "Kod Śledzenia Google Analytics"
126
 
127
- #: .././admin/settings.php:351
128
  msgid "Basic Settings"
129
  msgstr ""
130
 
131
- #: .././admin/settings.php:352 .././admin/settings.php:417
132
  msgid "Events Tracking"
133
  msgstr "Śledzenie Zdarzeń"
134
 
135
- #: .././admin/settings.php:353 .././admin/settings.php:465
136
  msgid "Custom Definitions"
137
  msgstr ""
138
 
139
- #: .././admin/settings.php:354 .././admin/settings.php:563
140
- #: .././admin/settings.php:1228
141
  msgid "Exclude Tracking"
142
  msgstr "Wyklucz Śledzenie"
143
 
144
- #: .././admin/settings.php:355
145
  msgid "Advanced Settings"
146
  msgstr ""
147
 
148
- #: .././admin/settings.php:362
149
  msgid "Tracking Settings"
150
  msgstr "Ustawienia Śledzenia"
151
 
152
- #: .././admin/settings.php:365
153
  msgid "Tracking Options:"
154
  msgstr ""
155
 
156
- #: .././admin/settings.php:367
157
  msgid "Disabled"
158
  msgstr "Wyłączone"
159
 
160
- #: .././admin/settings.php:368
161
  msgid "Enabled"
162
  msgstr "Włączone"
163
 
164
- #: .././admin/settings.php:376 .././admin/settings.php:897
165
- #: .././admin/settings.php:919 .././admin/settings.php:1201
166
- #: .././admin/widgets.php:71
167
  msgid "View Name:"
168
  msgstr "Nazwa widoku:"
169
 
170
- #: .././admin/settings.php:376 .././admin/settings.php:919
171
  msgid "Tracking ID:"
172
  msgstr "Tracking ID:"
173
 
174
- #: .././admin/settings.php:376 .././admin/settings.php:919
175
  msgid "Default URL:"
176
  msgstr "Domyślny URL:"
177
 
178
- #: .././admin/settings.php:376 .././admin/settings.php:919
179
  msgid "Time Zone:"
180
  msgstr "Strefa Czasowa:"
181
 
182
- #: .././admin/settings.php:381
183
  #, fuzzy
184
  msgid "Basic Tracking"
185
  msgstr "Śledzenie Zdarzeń"
186
 
187
- #: .././admin/settings.php:384
188
  msgid "Tracking Type:"
189
  msgstr ""
190
 
191
- #: .././admin/settings.php:386
192
  msgid "Classic Analytics"
193
  msgstr "Klasyczne Analytics"
194
 
195
- #: .././admin/settings.php:387
196
  msgid "Universal Analytics"
197
  msgstr "Uniwerslane Analytics"
198
 
199
- #: .././admin/settings.php:398
200
  msgid "anonymize IPs while tracking"
201
  msgstr ""
202
 
203
- #: .././admin/settings.php:409
204
  msgid "enable remarketing, demographics and interests reports"
205
  msgstr ""
206
 
207
- #: .././admin/settings.php:427
208
  msgid "track downloads, mailto and outbound links"
209
  msgstr ""
210
 
211
- #: .././admin/settings.php:431
212
  #, fuzzy
213
  msgid "Downloads Regex:"
214
  msgstr "Filtry Pobierania:"
215
 
216
- #: .././admin/settings.php:442
217
  msgid "track affiliate links matching this regex"
218
  msgstr ""
219
 
220
- #: .././admin/settings.php:446
221
  msgid "Affiliates Regex:"
222
  msgstr ""
223
 
224
- #: .././admin/settings.php:457
225
  msgid "track fragment identifiers, hashmarks (#) in URI links"
226
  msgstr ""
227
 
228
- #: .././admin/settings.php:468
229
  msgid "Authors:"
230
  msgstr ""
231
 
232
- #: .././admin/settings.php:476
233
  msgid "Publication Year:"
234
  msgstr ""
235
 
236
- #: .././admin/settings.php:484
237
  msgid "Categories:"
238
  msgstr ""
239
 
240
- #: .././admin/settings.php:492
241
  msgid "User Type:"
242
  msgstr ""
243
 
244
- #: .././admin/settings.php:504
245
  #, fuzzy
246
  msgid "Advanced Tracking"
247
  msgstr "Śledzenie Zdarzeń"
248
 
249
- #: .././admin/settings.php:507
250
  msgid "Page Speed SR:"
251
  msgstr "Page Speed SR:"
252
 
253
- #: .././admin/settings.php:518
254
  msgid "exclude events from bounce-rate calculation"
255
  msgstr ""
256
 
257
- #: .././admin/settings.php:529
258
  msgid "enable enhanced link attribution"
259
  msgstr ""
260
 
261
- #: .././admin/settings.php:540
262
  msgid "enable AdSense account linking"
263
  msgstr ""
264
 
265
- #: .././admin/settings.php:551
266
  msgid "enable cross domain tracking"
267
  msgstr ""
268
 
269
- #: .././admin/settings.php:555
270
  msgid "Cross Domains:"
271
  msgstr ""
272
 
273
- #: .././admin/settings.php:566
274
  msgid "Exclude tracking for:"
275
  msgstr ""
276
 
277
- #: .././admin/settings.php:651
278
  msgid "Google Analytics Errors & Debugging"
279
  msgstr ""
280
 
281
- #: .././admin/settings.php:661
282
  msgid "Errors & Details"
283
  msgstr ""
284
 
285
- #: .././admin/settings.php:662
286
  msgid "Plugin Settings"
287
  msgstr ""
288
 
289
- #: .././admin/settings.php:670
290
  msgid "Last Error detected"
291
  msgstr ""
292
 
293
- #: .././admin/settings.php:676 .././admin/settings.php:689
294
  msgid "None"
295
  msgstr ""
296
 
297
- #: .././admin/settings.php:683
298
  msgid "Error Details"
299
  msgstr ""
300
 
301
- #: .././admin/settings.php:703
302
  msgid "Plugin Configuration"
303
  msgstr ""
304
 
305
- #: .././admin/settings.php:725 .././admin/settings.php:990
306
  msgid ""
307
  "Loading the required libraries. If this results in a blank screen or a fatal "
308
  "error, try this solution:"
309
  msgstr ""
310
 
311
- #: .././admin/settings.php:725
312
  msgid "Library conflicts between WordPress plugins"
313
  msgstr ""
314
 
315
- #: .././admin/settings.php:740 .././admin/settings.php:1007
316
  msgid "Plugin authorization succeeded."
317
  msgstr "Autoryzacja wtyczki pomyślna."
318
 
319
- #: .././admin/settings.php:755 .././admin/settings.php:1031
320
  msgid ""
321
  "The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
322
  "(UA-XXXXX-X). Try again, and use the red link to get your access code"
323
  msgstr ""
324
 
325
- #: .././admin/settings.php:778 .././admin/settings.php:1063
326
  msgid "Cleared Cache."
327
  msgstr "Cache wyczyszczony."
328
 
329
- #: .././admin/settings.php:787 .././admin/settings.php:1072
330
  msgid "Token Reseted and Revoked."
331
  msgstr "Token wyczyszczony i wycofany."
332
 
333
- #: .././admin/settings.php:797
334
  msgid "All errors reseted."
335
  msgstr ""
336
 
337
- #: .././admin/settings.php:810 .././admin/settings.php:1086
338
  msgid "All other domains/properties were removed."
339
  msgstr "Wszystkie inne domeny/właściwości zostały usunięte."
340
 
341
- #: .././admin/settings.php:822 .././admin/settings.php:1098
342
  msgid "Google Analytics Settings"
343
  msgstr "Ustawienia Google Analytics"
344
 
345
- #: .././admin/settings.php:837 .././admin/settings.php:1112
346
  msgid "Use the red link (see below) to generate and get your access code!"
347
  msgstr ""
348
 
349
- #: .././admin/settings.php:848 .././admin/settings.php:1140
350
  msgid "Plugin Authorization"
351
  msgstr "Autoryzacja Wtyczki"
352
 
353
- #: .././admin/settings.php:853 .././admin/settings.php:1144
354
  #, php-format
355
  msgid ""
356
  "You should watch the %1$s and read this %2$s before proceeding to "
@@ -358,112 +354,107 @@ msgid ""
358
  "account!"
359
  msgstr ""
360
 
361
- #: .././admin/settings.php:853 .././admin/settings.php:1144
362
  msgid "video"
363
  msgstr "film"
364
 
365
- #: .././admin/settings.php:853 .././admin/settings.php:1144
366
  msgid "tutorial"
367
  msgstr "tutorial"
368
 
369
- #: .././admin/settings.php:858 .././admin/settings.php:1151
370
  msgid "use your own API Project credentials"
371
  msgstr ""
372
 
373
- #: .././admin/settings.php:863 .././admin/settings.php:1159
374
  msgid "API Key:"
375
  msgstr "Klucz API:"
376
 
377
- #: .././admin/settings.php:867 .././admin/settings.php:1163
378
  msgid "Client ID:"
379
  msgstr "ID Klienta:"
380
 
381
- #: .././admin/settings.php:871 .././admin/settings.php:1167
382
  msgid "Client Secret:"
383
  msgstr "Hasło Klienta:"
384
 
385
- #: .././admin/settings.php:881 .././admin/settings.php:1177
386
  msgid "Clear Authorization"
387
  msgstr "Czyść Autoryzację"
388
 
389
- #: .././admin/settings.php:881 .././admin/settings.php:959
390
- #: .././admin/settings.php:1177 .././admin/settings.php:1254
391
  msgid "Clear Cache"
392
  msgstr "Czyść Cache"
393
 
394
- #: .././admin/settings.php:881
395
  msgid "Reset Errors"
396
  msgstr ""
397
 
398
- #: .././admin/settings.php:887 .././admin/setup.php:70 .././admin/setup.php:98
399
  msgid "General Settings"
400
  msgstr "Ustawienia główne"
401
 
402
- #: .././admin/settings.php:890
403
  msgid "Select View:"
404
  msgstr ""
405
 
406
- #: .././admin/settings.php:901 .././admin/settings.php:1205
407
  msgid "Property not found"
408
  msgstr ""
409
 
410
- #: .././admin/settings.php:907
411
  msgid "Lock Selection"
412
  msgstr ""
413
 
414
- #: .././admin/settings.php:926
415
  msgid "Theme Color:"
416
  msgstr ""
417
 
418
- #: .././admin/settings.php:934 .././admin/settings.php:1214
419
  msgid "Automatic Updates"
420
  msgstr ""
421
 
422
- #: .././admin/settings.php:944 .././admin/settings.php:1224
423
  msgid ""
424
  "automatic updates for minor versions (security and maintenance releases only)"
425
  msgstr ""
426
 
427
- #: .././admin/settings.php:959 .././admin/settings.php:1254
428
- #: .././admin/widgets.php:42
429
  msgid "Authorize Plugin"
430
  msgstr "Autoryzuj wtyczkę"
431
 
432
- #: .././admin/settings.php:1037
433
  msgid "Properties refreshed."
434
  msgstr "Właściwości Odświeżone"
435
 
436
- #: .././admin/settings.php:1122
437
  msgid "Network Setup"
438
  msgstr "Ustawienia Sieci"
439
 
440
- #: .././admin/settings.php:1132
441
  msgid "use a single Google Analytics account for the entire network"
442
  msgstr ""
443
 
444
- #: .././admin/settings.php:1177
445
  msgid "Refresh Properties"
446
  msgstr "Odśwież Właściwości"
447
 
448
- #: .././admin/settings.php:1183
449
  msgid "Properties/Views Settings"
450
  msgstr "Ustawienia Właściwości /Widoków"
451
 
452
- #: .././admin/settings.php:1238
453
  msgid "exclude Super Admin tracking for the entire network"
454
  msgstr ""
455
 
456
- #: .././admin/settings.php:1285
457
  msgid "Setup Tutorial & Demo"
458
  msgstr "Ustaw Tutorial & Demo"
459
 
460
- #: .././admin/settings.php:1293
461
- msgid "Support & Reviews"
462
- msgstr "Wsparcie techniczne & Recenzje"
463
-
464
- #: .././admin/settings.php:1300
465
- #, php-format
466
- msgid "Plugin documentation and support on %s"
467
  msgstr ""
468
 
469
  #: .././admin/settings.php:1307
@@ -519,175 +510,210 @@ msgstr ""
519
  msgid "Web Analytics"
520
  msgstr "Web Analytics"
521
 
522
- #: .././admin/setup.php:67 .././admin/setup.php:95
523
  msgid "Google Analytics"
524
  msgstr "Google Analytics"
525
 
526
- #: .././admin/setup.php:73
527
  msgid "Backend Settings"
528
  msgstr "Ustawienia backendu"
529
 
530
- #: .././admin/setup.php:76
531
  msgid "Frontend Settings"
532
  msgstr "Ustawienia Frontendu"
533
 
534
- #: .././admin/setup.php:79
535
  msgid "Tracking Code"
536
  msgstr "Kod śledzenia"
537
 
538
- #: .././admin/setup.php:169 .././admin/widgets.php:126
539
  msgid "Today"
540
  msgstr "Dzisiaj"
541
 
542
- #: .././admin/setup.php:170 .././admin/widgets.php:127
543
  msgid "Yesterday"
544
  msgstr "Wczoraj"
545
 
546
- #: .././admin/setup.php:171 .././admin/widgets.php:128
547
- #: .././front/widgets.php:74 .././front/widgets.php:182
548
- msgid "Last 7 Days"
549
- msgstr "Ostatnie 7 dni"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
550
 
551
- #: .././admin/setup.php:172 .././admin/widgets.php:130
552
- #: .././front/widgets.php:80 .././front/widgets.php:184
553
- msgid "Last 30 Days"
554
- msgstr "Ostatnie 30 dni"
555
 
556
- #: .././admin/setup.php:173 .././admin/widgets.php:131
557
- msgid "Last 90 Days"
558
- msgstr "Ostatnie 90 dni"
559
 
560
- #: .././admin/setup.php:175 .././admin/setup.php:190
 
561
  msgid "Unique Views"
562
  msgstr ""
563
 
564
- #: .././admin/setup.php:176 .././admin/setup.php:191
565
- #: .././admin/widgets.php:136 .././admin/widgets.php:875
566
- #: .././tools/gapi.php:391
567
  msgid "Users"
568
  msgstr ""
569
 
570
- #: .././admin/setup.php:177 .././admin/widgets.php:137
571
  msgid "Organic"
572
  msgstr "Organiczne"
573
 
574
- #: .././admin/setup.php:178 .././admin/setup.php:192
575
- #: .././admin/widgets.php:138 .././admin/widgets.php:879
576
- #: .././tools/gapi.php:394
577
  msgid "Page Views"
578
  msgstr "Wyświetleń strony"
579
 
580
- #: .././admin/setup.php:179 .././admin/setup.php:193
581
- #: .././admin/widgets.php:139 .././admin/widgets.php:883
582
- #: .././tools/gapi.php:397
583
  msgid "Bounce Rate"
584
  msgstr "Współczynnik odrzuceń"
585
 
586
- #: .././admin/setup.php:180 .././admin/widgets.php:140
587
  msgid "Location"
588
  msgstr ""
589
 
590
- #: .././admin/setup.php:181 .././admin/widgets.php:142 .././tools/gapi.php:566
 
591
  msgid "Referrers"
592
  msgstr ""
593
 
594
- #: .././admin/setup.php:182 .././admin/widgets.php:143 .././tools/gapi.php:612
595
- #: .././tools/gapi.php:918
596
  msgid "Searches"
597
  msgstr ""
598
 
599
- #: .././admin/setup.php:183 .././admin/widgets.php:144
600
  msgid "Traffic Details"
601
  msgstr ""
602
 
603
- #: .././admin/setup.php:185 .././admin/widgets.php:510
604
- #: .././admin/widgets.php:607 .././admin/widgets.php:805
605
- #: .././admin/widgets.php:917 .././front/item-reports.php:97
606
  msgid "A JavaScript Error is blocking plugin resources!"
607
  msgstr ""
608
 
609
- #: .././admin/setup.php:186 .././admin/widgets.php:713
610
  msgid "Traffic Mediums"
611
  msgstr ""
612
 
613
- #: .././admin/setup.php:187 .././admin/widgets.php:729
614
  msgid "Visitor Type"
615
  msgstr ""
616
 
617
- #: .././admin/setup.php:188 .././admin/widgets.php:745
618
  msgid "Social Networks"
619
  msgstr ""
620
 
621
- #: .././admin/setup.php:189 .././admin/widgets.php:761
622
  msgid "Search Engines"
623
  msgstr ""
624
 
625
- #: .././admin/setup.php:194 .././admin/widgets.php:887
 
626
  msgid "Organic Search"
627
  msgstr ""
628
 
629
- #: .././admin/setup.php:195 .././admin/widgets.php:891
 
630
  msgid "Pages/Session"
631
  msgstr ""
632
 
633
- #: .././admin/setup.php:196 .././admin/widgets.php:523
634
- #: .././admin/widgets.php:541 .././admin/widgets.php:620
635
- #: .././admin/widgets.php:638 .././admin/widgets.php:657
636
- #: .././admin/widgets.php:676 .././admin/widgets.php:696
637
- #: .././admin/widgets.php:819 .././admin/widgets.php:930
638
- #: .././admin/widgets.php:949 .././front/item-reports.php:109
639
- #: .././front/item-reports.php:128
 
640
  msgid "Invalid response, more details in JavaScript Console (F12)."
641
  msgstr ""
642
 
643
- #: .././admin/setup.php:197
644
  msgid "Not enough data collected"
645
  msgstr ""
646
 
647
- #: .././admin/setup.php:198 .././admin/widgets.php:528
648
- #: .././admin/widgets.php:546 .././admin/widgets.php:625
649
- #: .././admin/widgets.php:643 .././admin/widgets.php:662
650
- #: .././admin/widgets.php:681 .././admin/widgets.php:701
651
- #: .././admin/widgets.php:824 .././admin/widgets.php:827
652
- #: .././admin/widgets.php:935 .././admin/widgets.php:954
653
- #: .././front/item-reports.php:114 .././front/item-reports.php:133
654
- #: .././front/widgets.php:110
655
  msgid "This report is unavailable"
656
  msgstr ""
657
 
658
- #: .././admin/setup.php:199
659
  msgid "report generated by"
660
  msgstr ""
661
 
662
- #: .././admin/setup.php:233
663
  msgid "Settings"
664
  msgstr "Ustawienia"
665
 
666
- #: .././admin/widgets.php:33 .././front/widgets.php:22
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
667
  msgid "Google Analytics Dashboard"
668
  msgstr "Pulpit Google Analytics"
669
 
670
- #: .././admin/widgets.php:42
671
  msgid "This plugin needs an authorization:"
672
  msgstr "Ta wtyczka wymaga autoryzacji:"
673
 
674
- #: .././admin/widgets.php:76
675
  msgid "Something went wrong while retrieving profiles list."
676
  msgstr "Coś poszło nie tak podczas pobierania listy profili."
677
 
678
- #: .././admin/widgets.php:76
679
  msgid "More details"
680
  msgstr "Więcej szczegółów"
681
 
682
- #: .././admin/widgets.php:89 .././admin/widgets.php:100
683
  msgid "An admin should asign a default Google Analytics Profile."
684
  msgstr "Administrator poiwnien ustawić domyślny profil Google Analytics."
685
 
686
- #: .././admin/widgets.php:89 .././admin/widgets.php:100
687
  msgid "Select Domain"
688
  msgstr "Wybierz domenę"
689
 
690
- #: .././admin/widgets.php:105
691
  msgid ""
692
  "Something went wrong while retrieving property data. You need to create and "
693
  "properly configure a Google Analytics account:"
@@ -695,192 +721,196 @@ msgstr ""
695
  "Coś poszło nie tak podczas pobierania danych. Musisz stworzyc i odpowiednio "
696
  "skonfigurować konto Google Analytics:"
697
 
698
- #: .././admin/widgets.php:105
699
  msgid "Find out more!"
700
  msgstr "Dowiedz sie więcej!"
701
 
702
- #: .././admin/widgets.php:125
703
  msgid "Real-Time"
704
  msgstr "Czas rzeczywisty"
705
 
706
- #: .././admin/widgets.php:129 .././front/widgets.php:77
707
- #: .././front/widgets.php:183
708
- msgid "Last 14 Days"
709
- msgstr "Ostatnie 14 dni"
710
-
711
- #: .././admin/widgets.php:135 .././admin/widgets.php:871
712
- #: .././front/widgets.php:46 .././tools/gapi.php:406 .././tools/gapi.php:567
713
- #: .././tools/gapi.php:613 .././tools/gapi.php:676 .././tools/gapi.php:786
714
- #: .././tools/gapi.php:827 .././tools/gapi.php:919
715
  msgid "Sessions"
716
  msgstr ""
717
 
718
- #: .././admin/widgets.php:141 .././tools/gapi.php:521
719
  msgid "Pages"
720
  msgstr ""
721
 
722
- #: .././admin/widgets.php:232 .././admin/widgets.php:472
723
  msgid "REFERRAL"
724
  msgstr "REFERUJĄCY"
725
 
726
- #: .././admin/widgets.php:236 .././admin/widgets.php:473
727
  msgid "ORGANIC"
728
  msgstr "ORGANICZNE"
729
 
730
- #: .././admin/widgets.php:240 .././admin/widgets.php:360
731
- #: .././admin/widgets.php:474
732
  msgid "SOCIAL"
733
  msgstr "SPOŁECZNE"
734
 
735
- #: .././admin/widgets.php:244 .././admin/widgets.php:363
736
- #: .././admin/widgets.php:475
737
  msgid "CAMPAIGN"
738
  msgstr ""
739
 
740
- #: .././admin/widgets.php:248 .././admin/widgets.php:366
741
- #: .././admin/widgets.php:478
742
  msgid "DIRECT"
743
  msgstr "BEZPOŚREDNIE"
744
 
745
- #: .././admin/widgets.php:252 .././admin/widgets.php:479
746
  msgid "NEW"
747
  msgstr "NOWE"
748
 
749
- #: .././admin/widgets.php:354
750
  msgid "REFERRALS"
751
  msgstr "REFERUJĄCY"
752
 
753
- #: .././admin/widgets.php:357
754
  msgid "KEYWORDS"
755
  msgstr "SŁOWA KLUCZOWE"
756
 
757
- #: .././front/item-reports.php:143
758
- msgid "Views vs UniqueViews"
759
- msgstr "Odsłon vs Odsłon Unikalnych"
760
-
761
- #: .././front/item-reports.php:193
762
- msgid "Google Analytics Reports"
763
- msgstr ""
764
-
765
- #: .././front/widgets.php:23
766
  msgid "Will display your google analytics stats in a widget"
767
  msgstr "Wyświetli twoje statystyki Google Analytics na widgecie"
768
 
769
- #: .././front/widgets.php:46 .././tools/gapi.php:827
770
  msgid "trend"
771
  msgstr ""
772
 
773
- #: .././front/widgets.php:133
774
  msgid "Period:"
775
  msgstr "Okres:"
776
 
777
- #: .././front/widgets.php:133
778
  msgid "Sessions:"
779
  msgstr ""
780
 
781
- #: .././front/widgets.php:137
782
  msgid "generated by"
783
  msgstr "wygenerowane przez"
784
 
785
- #: .././front/widgets.php:147
786
  msgid "Google Analytics Stats"
787
  msgstr "Statystyki Google Analytics"
788
 
789
- #: .././front/widgets.php:154
790
  msgid "Title:"
791
  msgstr "Tytuł:"
792
 
793
- #: .././front/widgets.php:161
794
  msgid "Display:"
795
  msgstr "Wyświetlenie:"
796
 
797
- #: .././front/widgets.php:165
798
  msgid "Chart & Totals"
799
  msgstr "Wykres & Podsumowania"
800
 
801
- #: .././front/widgets.php:166
802
  msgid "Chart"
803
  msgstr "Wykres"
804
 
805
- #: .././front/widgets.php:167
806
  msgid "Totals"
807
  msgstr "Podsumowania"
808
 
809
- #: .././front/widgets.php:171
810
  msgid "Anonymize stats:"
811
  msgstr ""
812
 
813
- #: .././front/widgets.php:178
814
  msgid "Stats for:"
815
  msgstr "Statystyki dla:"
816
 
817
- #: .././front/widgets.php:188
818
  msgid "Give credits:"
819
  msgstr "Podziękuj:"
820
 
821
- #: .././gadwp.php:46 .././gadwp.php:55 .././gadwp.php:63
822
  msgid "This is not allowed, read the documentation!"
823
  msgstr ""
824
 
825
- #: .././tools/gapi.php:134
826
  msgid "Use this link to get your access code:"
827
  msgstr "Użyj tego linku, aby uzyskać kod dostępu:"
828
 
829
- #: .././tools/gapi.php:134
830
  msgid "Get Access Code"
831
  msgstr "Zdobądź Kod Dostępu"
832
 
833
- #: .././tools/gapi.php:138 .././tools/gapi.php:139
834
  msgid "Use the red link to get your access code!"
835
  msgstr ""
836
 
837
- #: .././tools/gapi.php:138
838
  msgid "Access Code:"
839
  msgstr "Kod Dostępu:"
840
 
841
- #: .././tools/gapi.php:145
842
  msgid "Save Access Code"
843
  msgstr "Zapisz Kod Dostępu"
844
 
845
- #: .././tools/gapi.php:400
846
  msgid "Organic Searches"
847
  msgstr "Wyszukiwania organiczne"
848
 
849
- #: .././tools/gapi.php:403
850
  msgid "Unique Page Views"
851
  msgstr ""
852
 
853
- #: .././tools/gapi.php:411
854
  msgid "Hour"
855
  msgstr "Godzina"
856
 
857
- #: .././tools/gapi.php:414 .././tools/gapi.php:826 .././tools/gapi.php:876
858
  msgid "Date"
859
  msgstr "Data"
860
 
861
- #: .././tools/gapi.php:522 .././tools/gapi.php:877
862
  msgid "Views"
863
  msgstr "Odsłon"
864
 
865
- #: .././tools/gapi.php:640
866
  msgid "Countries"
867
  msgstr ""
868
 
869
- #: .././tools/gapi.php:650
870
  msgid "Cities from"
871
  msgstr ""
872
 
873
- #: .././tools/gapi.php:722
874
  msgid "Channels"
875
  msgstr ""
876
 
877
- #: .././tools/gapi.php:785
878
  msgid "Type"
879
  msgstr "Typ"
880
 
881
- #: .././tools/gapi.php:878
882
- msgid "UniqueViews"
883
- msgstr "Odsłon Unikalnych"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
884
 
885
  #~ msgid "and/or hide all other domains"
886
  #~ msgstr "i/lub ukryj wszystkie inne domeny"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Google Analytics Dashboard for WP\n"
4
+ "POT-Creation-Date: 2015-07-05 16:09+0300\n"
5
+ "PO-Revision-Date: 2015-07-05 16:09+0300\n"
6
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
7
  "Language-Team: Alin Marcu\n"
8
  "Language: pl\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.8.2\n"
13
+ "X-Poedit-KeywordsList: __;_e;_n;_x;_ex;_nx;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;esc_html_x;_n_noop;_nx_noop\n"
14
  "X-Poedit-Basepath: .\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
  "X-Poedit-SearchPath-0: ../.\n"
18
 
19
+ #: .././admin/item-reports.php:61 .././front/item-reports.php:29
20
  msgid "Analytics"
21
  msgstr ""
22
 
23
+ #: .././admin/settings.php:89 .././admin/settings.php:184
24
+ #: .././admin/settings.php:318 .././admin/settings.php:795
25
+ #: .././admin/settings.php:1068
26
  msgid "Settings saved."
27
  msgstr ""
28
 
29
+ #: .././admin/settings.php:91 .././admin/settings.php:186
30
+ #: .././admin/settings.php:320 .././admin/settings.php:772
31
+ #: .././admin/settings.php:782 .././admin/settings.php:791
32
+ #: .././admin/settings.php:797 .././admin/settings.php:808
33
+ #: .././admin/settings.php:1029 .././admin/settings.php:1054
34
+ #: .././admin/settings.php:1064 .././admin/settings.php:1070
35
+ #: .././admin/settings.php:1081
36
  msgid "Cheating Huh?"
37
  msgstr "Oszukujemy, co?"
38
 
39
+ #: .././admin/settings.php:95 .././admin/settings.php:190
40
+ #: .././admin/settings.php:324 .././admin/settings.php:641
41
+ #: .././admin/settings.php:823 .././admin/settings.php:1095
42
  #, php-format
43
  msgid "Something went wrong, check %1$s or %2$s."
44
  msgstr ""
45
 
46
+ #: .././admin/settings.php:95 .././admin/settings.php:190
47
+ #: .././admin/settings.php:324 .././admin/settings.php:641
48
+ #: .././admin/settings.php:823 .././admin/settings.php:1095
49
+ #: .././admin/setup.php:46 .././admin/setup.php:59
50
  msgid "Errors & Debug"
51
  msgstr ""
52
 
53
+ #: .././admin/settings.php:95 .././admin/settings.php:190
54
+ #: .././admin/settings.php:324 .././admin/settings.php:641
55
+ #: .././admin/settings.php:823 .././admin/settings.php:1095
56
  msgid "authorize the plugin"
57
  msgstr "autoryzować wtyczkę"
58
 
59
+ #: .././admin/settings.php:100
60
  msgid "Google Analytics Frontend Settings"
61
  msgstr "Ustawienia Frontendu Google Analytics"
62
 
63
+ #: .././admin/settings.php:110 .././admin/settings.php:205
64
  msgid "Permissions"
65
  msgstr ""
66
 
67
+ #: .././admin/settings.php:113 .././admin/settings.php:208
68
  msgid "Show stats to:"
69
  msgstr ""
70
 
71
+ #: .././admin/settings.php:154
72
+ msgid "enable web page reports on frontend"
73
  msgstr ""
74
 
75
+ #: .././admin/settings.php:161 .././admin/settings.php:297
76
+ #: .././admin/settings.php:598 .././admin/settings.php:943
77
+ #: .././admin/settings.php:1232
 
 
 
 
78
  msgid "Save Changes"
79
  msgstr ""
80
 
81
+ #: .././admin/settings.php:195
82
  msgid "Google Analytics Backend Settings"
83
  msgstr ""
84
 
85
+ #: .././admin/settings.php:251
86
  msgid "enable Switch View functionality"
87
  msgstr ""
88
 
89
+ #: .././admin/settings.php:262
90
  msgid "enable reports on Posts List and Pages List"
91
  msgstr ""
92
 
93
+ #: .././admin/settings.php:273
94
  msgid "enable the main Dashboard Widget"
95
  msgstr ""
96
 
97
+ #: .././admin/settings.php:277
98
  msgid "Real-Time Settings"
99
  msgstr "Ustawienia Czasu Rzeczywistego"
100
 
101
+ #: .././admin/settings.php:280
102
  msgid "Maximum number of pages to display on real-time tab:"
103
  msgstr "Maksymalna liczba stron wyświetlanych na karcie Czas Rzeczywisty:"
104
 
105
+ #: .././admin/settings.php:285
106
  msgid "Location Settings"
107
  msgstr ""
108
 
109
+ #: .././admin/settings.php:289
110
  msgid "Target Geo Map to country:"
111
  msgstr ""
112
 
113
+ #: .././admin/settings.php:327
114
  msgid ""
115
  "The tracking component is disabled. You should set <strong>Tracking Options</"
116
  "strong> to <strong>Enabled</strong>"
117
  msgstr ""
118
 
119
+ #: .././admin/settings.php:332
120
  msgid "Google Analytics Tracking Code"
121
  msgstr "Kod Śledzenia Google Analytics"
122
 
123
+ #: .././admin/settings.php:341
124
  msgid "Basic Settings"
125
  msgstr ""
126
 
127
+ #: .././admin/settings.php:342 .././admin/settings.php:408
128
  msgid "Events Tracking"
129
  msgstr "Śledzenie Zdarzeń"
130
 
131
+ #: .././admin/settings.php:343 .././admin/settings.php:456
132
  msgid "Custom Definitions"
133
  msgstr ""
134
 
135
+ #: .././admin/settings.php:344 .././admin/settings.php:554
136
+ #: .././admin/settings.php:1215
137
  msgid "Exclude Tracking"
138
  msgstr "Wyklucz Śledzenie"
139
 
140
+ #: .././admin/settings.php:345
141
  msgid "Advanced Settings"
142
  msgstr ""
143
 
144
+ #: .././admin/settings.php:353
145
  msgid "Tracking Settings"
146
  msgstr "Ustawienia Śledzenia"
147
 
148
+ #: .././admin/settings.php:356
149
  msgid "Tracking Options:"
150
  msgstr ""
151
 
152
+ #: .././admin/settings.php:358
153
  msgid "Disabled"
154
  msgstr "Wyłączone"
155
 
156
+ #: .././admin/settings.php:359
157
  msgid "Enabled"
158
  msgstr "Włączone"
159
 
160
+ #: .././admin/settings.php:367 .././admin/settings.php:888
161
+ #: .././admin/settings.php:910 .././admin/settings.php:1188
162
+ #: .././admin/widgets.php:61
163
  msgid "View Name:"
164
  msgstr "Nazwa widoku:"
165
 
166
+ #: .././admin/settings.php:367 .././admin/settings.php:910
167
  msgid "Tracking ID:"
168
  msgstr "Tracking ID:"
169
 
170
+ #: .././admin/settings.php:367 .././admin/settings.php:910
171
  msgid "Default URL:"
172
  msgstr "Domyślny URL:"
173
 
174
+ #: .././admin/settings.php:367 .././admin/settings.php:910
175
  msgid "Time Zone:"
176
  msgstr "Strefa Czasowa:"
177
 
178
+ #: .././admin/settings.php:372
179
  #, fuzzy
180
  msgid "Basic Tracking"
181
  msgstr "Śledzenie Zdarzeń"
182
 
183
+ #: .././admin/settings.php:375
184
  msgid "Tracking Type:"
185
  msgstr ""
186
 
187
+ #: .././admin/settings.php:377
188
  msgid "Classic Analytics"
189
  msgstr "Klasyczne Analytics"
190
 
191
+ #: .././admin/settings.php:378
192
  msgid "Universal Analytics"
193
  msgstr "Uniwerslane Analytics"
194
 
195
+ #: .././admin/settings.php:389
196
  msgid "anonymize IPs while tracking"
197
  msgstr ""
198
 
199
+ #: .././admin/settings.php:400
200
  msgid "enable remarketing, demographics and interests reports"
201
  msgstr ""
202
 
203
+ #: .././admin/settings.php:418
204
  msgid "track downloads, mailto and outbound links"
205
  msgstr ""
206
 
207
+ #: .././admin/settings.php:422
208
  #, fuzzy
209
  msgid "Downloads Regex:"
210
  msgstr "Filtry Pobierania:"
211
 
212
+ #: .././admin/settings.php:433
213
  msgid "track affiliate links matching this regex"
214
  msgstr ""
215
 
216
+ #: .././admin/settings.php:437
217
  msgid "Affiliates Regex:"
218
  msgstr ""
219
 
220
+ #: .././admin/settings.php:448
221
  msgid "track fragment identifiers, hashmarks (#) in URI links"
222
  msgstr ""
223
 
224
+ #: .././admin/settings.php:459
225
  msgid "Authors:"
226
  msgstr ""
227
 
228
+ #: .././admin/settings.php:467
229
  msgid "Publication Year:"
230
  msgstr ""
231
 
232
+ #: .././admin/settings.php:475
233
  msgid "Categories:"
234
  msgstr ""
235
 
236
+ #: .././admin/settings.php:483
237
  msgid "User Type:"
238
  msgstr ""
239
 
240
+ #: .././admin/settings.php:495
241
  #, fuzzy
242
  msgid "Advanced Tracking"
243
  msgstr "Śledzenie Zdarzeń"
244
 
245
+ #: .././admin/settings.php:498
246
  msgid "Page Speed SR:"
247
  msgstr "Page Speed SR:"
248
 
249
+ #: .././admin/settings.php:509
250
  msgid "exclude events from bounce-rate calculation"
251
  msgstr ""
252
 
253
+ #: .././admin/settings.php:520
254
  msgid "enable enhanced link attribution"
255
  msgstr ""
256
 
257
+ #: .././admin/settings.php:531
258
  msgid "enable AdSense account linking"
259
  msgstr ""
260
 
261
+ #: .././admin/settings.php:542
262
  msgid "enable cross domain tracking"
263
  msgstr ""
264
 
265
+ #: .././admin/settings.php:546
266
  msgid "Cross Domains:"
267
  msgstr ""
268
 
269
+ #: .././admin/settings.php:557
270
  msgid "Exclude tracking for:"
271
  msgstr ""
272
 
273
+ #: .././admin/settings.php:645
274
  msgid "Google Analytics Errors & Debugging"
275
  msgstr ""
276
 
277
+ #: .././admin/settings.php:655
278
  msgid "Errors & Details"
279
  msgstr ""
280
 
281
+ #: .././admin/settings.php:656
282
  msgid "Plugin Settings"
283
  msgstr ""
284
 
285
+ #: .././admin/settings.php:663
286
  msgid "Last Error detected"
287
  msgstr ""
288
 
289
+ #: .././admin/settings.php:669 .././admin/settings.php:682
290
  msgid "None"
291
  msgstr ""
292
 
293
+ #: .././admin/settings.php:676
294
  msgid "Error Details"
295
  msgstr ""
296
 
297
+ #: .././admin/settings.php:696
298
  msgid "Plugin Configuration"
299
  msgstr ""
300
 
301
+ #: .././admin/settings.php:717 .././admin/settings.php:980
302
  msgid ""
303
  "Loading the required libraries. If this results in a blank screen or a fatal "
304
  "error, try this solution:"
305
  msgstr ""
306
 
307
+ #: .././admin/settings.php:717
308
  msgid "Library conflicts between WordPress plugins"
309
  msgstr ""
310
 
311
+ #: .././admin/settings.php:732 .././admin/settings.php:997
312
  msgid "Plugin authorization succeeded."
313
  msgstr "Autoryzacja wtyczki pomyślna."
314
 
315
+ #: .././admin/settings.php:747 .././admin/settings.php:1020
316
  msgid ""
317
  "The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
318
  "(UA-XXXXX-X). Try again, and use the red link to get your access code"
319
  msgstr ""
320
 
321
+ #: .././admin/settings.php:770 .././admin/settings.php:1052
322
  msgid "Cleared Cache."
323
  msgstr "Cache wyczyszczony."
324
 
325
+ #: .././admin/settings.php:779 .././admin/settings.php:1061
326
  msgid "Token Reseted and Revoked."
327
  msgstr "Token wyczyszczony i wycofany."
328
 
329
+ #: .././admin/settings.php:789
330
  msgid "All errors reseted."
331
  msgstr ""
332
 
333
+ #: .././admin/settings.php:802 .././admin/settings.php:1075
334
  msgid "All other domains/properties were removed."
335
  msgstr "Wszystkie inne domeny/właściwości zostały usunięte."
336
 
337
+ #: .././admin/settings.php:813 .././admin/settings.php:1086
338
  msgid "Google Analytics Settings"
339
  msgstr "Ustawienia Google Analytics"
340
 
341
+ #: .././admin/settings.php:828 .././admin/settings.php:1100
342
  msgid "Use the red link (see below) to generate and get your access code!"
343
  msgstr ""
344
 
345
+ #: .././admin/settings.php:839 .././admin/settings.php:1128
346
  msgid "Plugin Authorization"
347
  msgstr "Autoryzacja Wtyczki"
348
 
349
+ #: .././admin/settings.php:844 .././admin/settings.php:1132
350
  #, php-format
351
  msgid ""
352
  "You should watch the %1$s and read this %2$s before proceeding to "
354
  "account!"
355
  msgstr ""
356
 
357
+ #: .././admin/settings.php:844 .././admin/settings.php:1132
358
  msgid "video"
359
  msgstr "film"
360
 
361
+ #: .././admin/settings.php:844 .././admin/settings.php:1132
362
  msgid "tutorial"
363
  msgstr "tutorial"
364
 
365
+ #: .././admin/settings.php:849 .././admin/settings.php:1139
366
  msgid "use your own API Project credentials"
367
  msgstr ""
368
 
369
+ #: .././admin/settings.php:854 .././admin/settings.php:1147
370
  msgid "API Key:"
371
  msgstr "Klucz API:"
372
 
373
+ #: .././admin/settings.php:858 .././admin/settings.php:1151
374
  msgid "Client ID:"
375
  msgstr "ID Klienta:"
376
 
377
+ #: .././admin/settings.php:862 .././admin/settings.php:1155
378
  msgid "Client Secret:"
379
  msgstr "Hasło Klienta:"
380
 
381
+ #: .././admin/settings.php:872 .././admin/settings.php:1165
382
  msgid "Clear Authorization"
383
  msgstr "Czyść Autoryzację"
384
 
385
+ #: .././admin/settings.php:872 .././admin/settings.php:950
386
+ #: .././admin/settings.php:1165 .././admin/settings.php:1241
387
  msgid "Clear Cache"
388
  msgstr "Czyść Cache"
389
 
390
+ #: .././admin/settings.php:872
391
  msgid "Reset Errors"
392
  msgstr ""
393
 
394
+ #: .././admin/settings.php:878 .././admin/setup.php:42 .././admin/setup.php:58
395
  msgid "General Settings"
396
  msgstr "Ustawienia główne"
397
 
398
+ #: .././admin/settings.php:881
399
  msgid "Select View:"
400
  msgstr ""
401
 
402
+ #: .././admin/settings.php:892 .././admin/settings.php:1192
403
  msgid "Property not found"
404
  msgstr ""
405
 
406
+ #: .././admin/settings.php:898
407
  msgid "Lock Selection"
408
  msgstr ""
409
 
410
+ #: .././admin/settings.php:917
411
  msgid "Theme Color:"
412
  msgstr ""
413
 
414
+ #: .././admin/settings.php:925 .././admin/settings.php:1201
415
  msgid "Automatic Updates"
416
  msgstr ""
417
 
418
+ #: .././admin/settings.php:935 .././admin/settings.php:1211
419
  msgid ""
420
  "automatic updates for minor versions (security and maintenance releases only)"
421
  msgstr ""
422
 
423
+ #: .././admin/settings.php:950 .././admin/settings.php:1241
424
+ #: .././admin/widgets.php:32
425
  msgid "Authorize Plugin"
426
  msgstr "Autoryzuj wtyczkę"
427
 
428
+ #: .././admin/settings.php:1026
429
  msgid "Properties refreshed."
430
  msgstr "Właściwości Odświeżone"
431
 
432
+ #: .././admin/settings.php:1110
433
  msgid "Network Setup"
434
  msgstr "Ustawienia Sieci"
435
 
436
+ #: .././admin/settings.php:1120
437
  msgid "use a single Google Analytics account for the entire network"
438
  msgstr ""
439
 
440
+ #: .././admin/settings.php:1165
441
  msgid "Refresh Properties"
442
  msgstr "Odśwież Właściwości"
443
 
444
+ #: .././admin/settings.php:1171
445
  msgid "Properties/Views Settings"
446
  msgstr "Ustawienia Właściwości /Widoków"
447
 
448
+ #: .././admin/settings.php:1225
449
  msgid "exclude Super Admin tracking for the entire network"
450
  msgstr ""
451
 
452
+ #: .././admin/settings.php:1273
453
  msgid "Setup Tutorial & Demo"
454
  msgstr "Ustaw Tutorial & Demo"
455
 
456
+ #: .././admin/settings.php:1281
457
+ msgid "Follow & Review"
 
 
 
 
 
458
  msgstr ""
459
 
460
  #: .././admin/settings.php:1307
510
  msgid "Web Analytics"
511
  msgstr "Web Analytics"
512
 
513
+ #: .././admin/setup.php:41 .././admin/setup.php:57
514
  msgid "Google Analytics"
515
  msgstr "Google Analytics"
516
 
517
+ #: .././admin/setup.php:43
518
  msgid "Backend Settings"
519
  msgstr "Ustawienia backendu"
520
 
521
+ #: .././admin/setup.php:44
522
  msgid "Frontend Settings"
523
  msgstr "Ustawienia Frontendu"
524
 
525
+ #: .././admin/setup.php:45
526
  msgid "Tracking Code"
527
  msgstr "Kod śledzenia"
528
 
529
+ #: .././admin/setup.php:159 .././admin/widgets.php:117 .././front/setup.php:71
530
  msgid "Today"
531
  msgstr "Dzisiaj"
532
 
533
+ #: .././admin/setup.php:160 .././admin/widgets.php:118 .././front/setup.php:72
534
  msgid "Yesterday"
535
  msgstr "Wczoraj"
536
 
537
+ #: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
538
+ #: .././admin/setup.php:164 .././admin/widgets.php:119
539
+ #: .././admin/widgets.php:120 .././admin/widgets.php:121
540
+ #: .././admin/widgets.php:122 .././front/setup.php:73 .././front/setup.php:74
541
+ #: .././front/setup.php:75 .././front/setup.php:76 .././front/widgets.php:64
542
+ #: .././front/widgets.php:67 .././front/widgets.php:70
543
+ #: .././front/widgets.php:158 .././front/widgets.php:159
544
+ #: .././front/widgets.php:160
545
+ #, php-format
546
+ msgid "Last %d Days"
547
+ msgstr "Ostatnie %d dni"
548
+
549
+ #: .././admin/setup.php:165 .././admin/setup.php:166
550
+ #: .././admin/widgets.php:123 .././admin/widgets.php:124
551
+ #: .././front/setup.php:77 .././front/setup.php:78
552
+ #, php-format
553
+ msgid "%s Year"
554
+ msgstr ""
555
 
556
+ #: .././admin/setup.php:165 .././admin/widgets.php:123 .././front/setup.php:77
557
+ msgid "One"
558
+ msgstr ""
 
559
 
560
+ #: .././admin/setup.php:166 .././admin/widgets.php:124 .././front/setup.php:78
561
+ msgid "Three"
562
+ msgstr ""
563
 
564
+ #: .././admin/setup.php:169 .././admin/setup.php:185 .././front/setup.php:81
565
+ #: .././front/setup.php:97
566
  msgid "Unique Views"
567
  msgstr ""
568
 
569
+ #: .././admin/setup.php:170 .././admin/setup.php:186
570
+ #: .././admin/widgets.php:130 .././admin/widgets.php:830
571
+ #: .././front/setup.php:82 .././front/setup.php:98 .././tools/gapi.php:358
572
  msgid "Users"
573
  msgstr ""
574
 
575
+ #: .././admin/setup.php:171 .././admin/widgets.php:131 .././front/setup.php:83
576
  msgid "Organic"
577
  msgstr "Organiczne"
578
 
579
+ #: .././admin/setup.php:172 .././admin/setup.php:187
580
+ #: .././admin/widgets.php:132 .././admin/widgets.php:834
581
+ #: .././front/setup.php:84 .././front/setup.php:99 .././tools/gapi.php:361
582
  msgid "Page Views"
583
  msgstr "Wyświetleń strony"
584
 
585
+ #: .././admin/setup.php:173 .././admin/setup.php:188
586
+ #: .././admin/widgets.php:133 .././admin/widgets.php:838
587
+ #: .././front/setup.php:85 .././front/setup.php:100 .././tools/gapi.php:364
588
  msgid "Bounce Rate"
589
  msgstr "Współczynnik odrzuceń"
590
 
591
+ #: .././admin/setup.php:174 .././admin/widgets.php:134 .././front/setup.php:86
592
  msgid "Location"
593
  msgstr ""
594
 
595
+ #: .././admin/setup.php:175 .././admin/widgets.php:136 .././front/setup.php:87
596
+ #: .././tools/gapi.php:503
597
  msgid "Referrers"
598
  msgstr ""
599
 
600
+ #: .././admin/setup.php:176 .././admin/widgets.php:137 .././front/setup.php:88
601
+ #: .././tools/gapi.php:536
602
  msgid "Searches"
603
  msgstr ""
604
 
605
+ #: .././admin/setup.php:177 .././admin/widgets.php:138 .././front/setup.php:89
606
  msgid "Traffic Details"
607
  msgstr ""
608
 
609
+ #: .././admin/setup.php:180 .././admin/widgets.php:505
610
+ #: .././admin/widgets.php:590 .././admin/widgets.php:757
611
+ #: .././admin/widgets.php:861 .././front/setup.php:92
612
  msgid "A JavaScript Error is blocking plugin resources!"
613
  msgstr ""
614
 
615
+ #: .././admin/setup.php:181 .././admin/widgets.php:681 .././front/setup.php:93
616
  msgid "Traffic Mediums"
617
  msgstr ""
618
 
619
+ #: .././admin/setup.php:182 .././admin/widgets.php:696 .././front/setup.php:94
620
  msgid "Visitor Type"
621
  msgstr ""
622
 
623
+ #: .././admin/setup.php:183 .././admin/widgets.php:711 .././front/setup.php:95
624
  msgid "Social Networks"
625
  msgstr ""
626
 
627
+ #: .././admin/setup.php:184 .././admin/widgets.php:726 .././front/setup.php:96
628
  msgid "Search Engines"
629
  msgstr ""
630
 
631
+ #: .././admin/setup.php:189 .././admin/widgets.php:842
632
+ #: .././front/setup.php:101
633
  msgid "Organic Search"
634
  msgstr ""
635
 
636
+ #: .././admin/setup.php:190 .././admin/widgets.php:846
637
+ #: .././front/setup.php:102
638
  msgid "Pages/Session"
639
  msgstr ""
640
 
641
+ #: .././admin/setup.php:191 .././admin/widgets.php:517
642
+ #: .././admin/widgets.php:531 .././admin/widgets.php:541
643
+ #: .././admin/widgets.php:602 .././admin/widgets.php:616
644
+ #: .././admin/widgets.php:630 .././admin/widgets.php:644
645
+ #: .././admin/widgets.php:658 .././admin/widgets.php:668
646
+ #: .././admin/widgets.php:770 .././admin/widgets.php:782
647
+ #: .././admin/widgets.php:873 .././admin/widgets.php:887
648
+ #: .././admin/widgets.php:897 .././front/setup.php:103
649
  msgid "Invalid response, more details in JavaScript Console (F12)."
650
  msgstr ""
651
 
652
+ #: .././admin/setup.php:192 .././front/setup.php:104
653
  msgid "Not enough data collected"
654
  msgstr ""
655
 
656
+ #: .././admin/setup.php:193 .././admin/widgets.php:522
657
+ #: .././admin/widgets.php:536 .././admin/widgets.php:607
658
+ #: .././admin/widgets.php:621 .././admin/widgets.php:635
659
+ #: .././admin/widgets.php:649 .././admin/widgets.php:663
660
+ #: .././admin/widgets.php:775 .././admin/widgets.php:777
661
+ #: .././admin/widgets.php:878 .././admin/widgets.php:892
662
+ #: .././front/setup.php:105 .././front/widgets.php:100
 
663
  msgid "This report is unavailable"
664
  msgstr ""
665
 
666
+ #: .././admin/setup.php:194 .././front/setup.php:106
667
  msgid "report generated by"
668
  msgstr ""
669
 
670
+ #: .././admin/setup.php:225
671
  msgid "Settings"
672
  msgstr "Ustawienia"
673
 
674
+ #: .././admin/setup.php:237
675
+ #, php-format
676
+ msgid "Google Analytics Dashboard for WP has been updated to version %s."
677
+ msgstr ""
678
+
679
+ #: .././admin/setup.php:237
680
+ #, php-format
681
+ msgid "For details, check out %1$s and %2$s."
682
+ msgstr ""
683
+
684
+ #: .././admin/setup.php:237
685
+ msgid "the documentation page"
686
+ msgstr ""
687
+
688
+ #: .././admin/setup.php:237
689
+ msgid "the plugin&#39;s settings page"
690
+ msgstr ""
691
+
692
+ #: .././admin/widgets.php:27 .././front/widgets.php:21
693
  msgid "Google Analytics Dashboard"
694
  msgstr "Pulpit Google Analytics"
695
 
696
+ #: .././admin/widgets.php:32
697
  msgid "This plugin needs an authorization:"
698
  msgstr "Ta wtyczka wymaga autoryzacji:"
699
 
700
+ #: .././admin/widgets.php:66
701
  msgid "Something went wrong while retrieving profiles list."
702
  msgstr "Coś poszło nie tak podczas pobierania listy profili."
703
 
704
+ #: .././admin/widgets.php:66
705
  msgid "More details"
706
  msgstr "Więcej szczegółów"
707
 
708
+ #: .././admin/widgets.php:79 .././admin/widgets.php:90
709
  msgid "An admin should asign a default Google Analytics Profile."
710
  msgstr "Administrator poiwnien ustawić domyślny profil Google Analytics."
711
 
712
+ #: .././admin/widgets.php:79 .././admin/widgets.php:90
713
  msgid "Select Domain"
714
  msgstr "Wybierz domenę"
715
 
716
+ #: .././admin/widgets.php:95
717
  msgid ""
718
  "Something went wrong while retrieving property data. You need to create and "
719
  "properly configure a Google Analytics account:"
721
  "Coś poszło nie tak podczas pobierania danych. Musisz stworzyc i odpowiednio "
722
  "skonfigurować konto Google Analytics:"
723
 
724
+ #: .././admin/widgets.php:95
725
  msgid "Find out more!"
726
  msgstr "Dowiedz sie więcej!"
727
 
728
+ #: .././admin/widgets.php:116
729
  msgid "Real-Time"
730
  msgstr "Czas rzeczywisty"
731
 
732
+ #: .././admin/widgets.php:129 .././admin/widgets.php:826
733
+ #: .././front/widgets.php:36 .././tools/gapi.php:373 .././tools/gapi.php:503
734
+ #: .././tools/gapi.php:536 .././tools/gapi.php:586 .././tools/gapi.php:666
735
+ #: .././tools/gapi.php:695
 
 
 
 
 
736
  msgid "Sessions"
737
  msgstr ""
738
 
739
+ #: .././admin/widgets.php:135 .././tools/gapi.php:471
740
  msgid "Pages"
741
  msgstr ""
742
 
743
+ #: .././admin/widgets.php:236 .././admin/widgets.php:478
744
  msgid "REFERRAL"
745
  msgstr "REFERUJĄCY"
746
 
747
+ #: .././admin/widgets.php:240 .././admin/widgets.php:479
748
  msgid "ORGANIC"
749
  msgstr "ORGANICZNE"
750
 
751
+ #: .././admin/widgets.php:244 .././admin/widgets.php:364
752
+ #: .././admin/widgets.php:480
753
  msgid "SOCIAL"
754
  msgstr "SPOŁECZNE"
755
 
756
+ #: .././admin/widgets.php:248 .././admin/widgets.php:367
757
+ #: .././admin/widgets.php:481
758
  msgid "CAMPAIGN"
759
  msgstr ""
760
 
761
+ #: .././admin/widgets.php:252 .././admin/widgets.php:370
762
+ #: .././admin/widgets.php:484
763
  msgid "DIRECT"
764
  msgstr "BEZPOŚREDNIE"
765
 
766
+ #: .././admin/widgets.php:256 .././admin/widgets.php:485
767
  msgid "NEW"
768
  msgstr "NOWE"
769
 
770
+ #: .././admin/widgets.php:358
771
  msgid "REFERRALS"
772
  msgstr "REFERUJĄCY"
773
 
774
+ #: .././admin/widgets.php:361
775
  msgid "KEYWORDS"
776
  msgstr "SŁOWA KLUCZOWE"
777
 
778
+ #: .././front/widgets.php:21
 
 
 
 
 
 
 
 
779
  msgid "Will display your google analytics stats in a widget"
780
  msgstr "Wyświetli twoje statystyki Google Analytics na widgecie"
781
 
782
+ #: .././front/widgets.php:36 .././tools/gapi.php:695
783
  msgid "trend"
784
  msgstr ""
785
 
786
+ #: .././front/widgets.php:123
787
  msgid "Period:"
788
  msgstr "Okres:"
789
 
790
+ #: .././front/widgets.php:123
791
  msgid "Sessions:"
792
  msgstr ""
793
 
794
+ #: .././front/widgets.php:127
795
  msgid "generated by"
796
  msgstr "wygenerowane przez"
797
 
798
+ #: .././front/widgets.php:136
799
  msgid "Google Analytics Stats"
800
  msgstr "Statystyki Google Analytics"
801
 
802
+ #: .././front/widgets.php:144
803
  msgid "Title:"
804
  msgstr "Tytuł:"
805
 
806
+ #: .././front/widgets.php:147
807
  msgid "Display:"
808
  msgstr "Wyświetlenie:"
809
 
810
+ #: .././front/widgets.php:148
811
  msgid "Chart & Totals"
812
  msgstr "Wykres & Podsumowania"
813
 
814
+ #: .././front/widgets.php:149
815
  msgid "Chart"
816
  msgstr "Wykres"
817
 
818
+ #: .././front/widgets.php:150
819
  msgid "Totals"
820
  msgstr "Podsumowania"
821
 
822
+ #: .././front/widgets.php:154
823
  msgid "Anonymize stats:"
824
  msgstr ""
825
 
826
+ #: .././front/widgets.php:157
827
  msgid "Stats for:"
828
  msgstr "Statystyki dla:"
829
 
830
+ #: .././front/widgets.php:164
831
  msgid "Give credits:"
832
  msgstr "Podziękuj:"
833
 
834
+ #: .././gadwp.php:46 .././gadwp.php:54 .././gadwp.php:61
835
  msgid "This is not allowed, read the documentation!"
836
  msgstr ""
837
 
838
+ #: .././tools/gapi.php:128
839
  msgid "Use this link to get your access code:"
840
  msgstr "Użyj tego linku, aby uzyskać kod dostępu:"
841
 
842
+ #: .././tools/gapi.php:128
843
  msgid "Get Access Code"
844
  msgstr "Zdobądź Kod Dostępu"
845
 
846
+ #: .././tools/gapi.php:132 .././tools/gapi.php:133
847
  msgid "Use the red link to get your access code!"
848
  msgstr ""
849
 
850
+ #: .././tools/gapi.php:132
851
  msgid "Access Code:"
852
  msgstr "Kod Dostępu:"
853
 
854
+ #: .././tools/gapi.php:139
855
  msgid "Save Access Code"
856
  msgstr "Zapisz Kod Dostępu"
857
 
858
+ #: .././tools/gapi.php:367
859
  msgid "Organic Searches"
860
  msgstr "Wyszukiwania organiczne"
861
 
862
+ #: .././tools/gapi.php:370
863
  msgid "Unique Page Views"
864
  msgstr ""
865
 
866
+ #: .././tools/gapi.php:378
867
  msgid "Hour"
868
  msgstr "Godzina"
869
 
870
+ #: .././tools/gapi.php:382 .././tools/gapi.php:385 .././tools/gapi.php:695
871
  msgid "Date"
872
  msgstr "Data"
873
 
874
+ #: .././tools/gapi.php:471
875
  msgid "Views"
876
  msgstr "Odsłon"
877
 
878
+ #: .././tools/gapi.php:557
879
  msgid "Countries"
880
  msgstr ""
881
 
882
+ #: .././tools/gapi.php:567
883
  msgid "Cities from"
884
  msgstr ""
885
 
886
+ #: .././tools/gapi.php:620
887
  msgid "Channels"
888
  msgstr ""
889
 
890
+ #: .././tools/gapi.php:666
891
  msgid "Type"
892
  msgstr "Typ"
893
 
894
+ #~ msgid "Last 7 Days"
895
+ #~ msgstr "Ostatnie 7 dni"
896
+
897
+ #~ msgid "Last 30 Days"
898
+ #~ msgstr "Ostatnie 30 dni"
899
+
900
+ #~ msgid "Last 90 Days"
901
+ #~ msgstr "Ostatnie 90 dni"
902
+
903
+ #~ msgid "Last 14 Days"
904
+ #~ msgstr "Ostatnie 14 dni"
905
+
906
+ #~ msgid "Support & Reviews"
907
+ #~ msgstr "Wsparcie techniczne & Recenzje"
908
+
909
+ #~ msgid "Views vs UniqueViews"
910
+ #~ msgstr "Odsłon vs Odsłon Unikalnych"
911
+
912
+ #~ msgid "UniqueViews"
913
+ #~ msgstr "Odsłon Unikalnych"
914
 
915
  #~ msgid "and/or hide all other domains"
916
  #~ msgstr "i/lub ukryj wszystkie inne domeny"
languages/ga-dash-pt_BR.mo CHANGED
Binary file
languages/ga-dash-pt_BR.po CHANGED
@@ -3,120 +3,116 @@ msgstr ""
3
  "Project-Id-Version: Google Analytics Dashboard for WP 4.6\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-"
5
  "dashboard-for-wp\n"
6
- "POT-Creation-Date: 2015-05-21 19:47+0200\n"
7
- "PO-Revision-Date: 2015-05-21 19:47+0200\n"
8
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
9
  "Language-Team: Treedbox.com <treedbox@gmail.com>\n"
10
  "Language: pt_BR\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
- "X-Generator: Poedit 1.8\n"
15
- "X-Poedit-KeywordsList: _e;__\n"
16
  "X-Poedit-Basepath: .\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
19
  "X-Poedit-SearchPath-0: ../.\n"
20
 
21
- #: .././admin/item-reports.php:52
22
  msgid "Analytics"
23
  msgstr "Analytics"
24
 
25
- #: .././admin/settings.php:94 .././admin/settings.php:197
26
- #: .././admin/settings.php:328 .././admin/settings.php:803
27
- #: .././admin/settings.php:1079
28
  msgid "Settings saved."
29
  msgstr "Definições Salvas"
30
 
31
- #: .././admin/settings.php:96 .././admin/settings.php:199
32
- #: .././admin/settings.php:330 .././admin/settings.php:780
33
- #: .././admin/settings.php:790 .././admin/settings.php:799
34
- #: .././admin/settings.php:805 .././admin/settings.php:817
35
- #: .././admin/settings.php:1040 .././admin/settings.php:1065
36
- #: .././admin/settings.php:1075 .././admin/settings.php:1081
37
- #: .././admin/settings.php:1093
38
  msgid "Cheating Huh?"
39
  msgstr "A Curiosidade Matou o Gato :F"
40
 
41
- #: .././admin/settings.php:100 .././admin/settings.php:203
42
- #: .././admin/settings.php:334 .././admin/settings.php:647
43
- #: .././admin/settings.php:832 .././admin/settings.php:1107
44
  #, php-format
45
  msgid "Something went wrong, check %1$s or %2$s."
46
  msgstr "Algo deu errado, verifique %1$s ou %2$s."
47
 
48
- #: .././admin/settings.php:100 .././admin/settings.php:203
49
- #: .././admin/settings.php:334 .././admin/settings.php:647
50
- #: .././admin/settings.php:832 .././admin/settings.php:1107
51
- #: .././admin/setup.php:82 .././admin/setup.php:101
52
  msgid "Errors & Debug"
53
  msgstr "Erros & Depuração"
54
 
55
- #: .././admin/settings.php:100 .././admin/settings.php:203
56
- #: .././admin/settings.php:334 .././admin/settings.php:647
57
- #: .././admin/settings.php:832 .././admin/settings.php:1107
58
  msgid "authorize the plugin"
59
  msgstr "Autorize o Plugin"
60
 
61
- #: .././admin/settings.php:105
62
  msgid "Google Analytics Frontend Settings"
63
  msgstr "Configurações Externas do Google Analytics"
64
 
65
- #: .././admin/settings.php:115 .././admin/settings.php:218
66
  msgid "Permissions"
67
  msgstr "Permissões"
68
 
69
- #: .././admin/settings.php:118 .././admin/settings.php:221
70
  msgid "Show stats to:"
71
  msgstr "Mostrar Status de:"
72
 
73
- #: .././admin/settings.php:157
74
- msgid "show page sessions and users in frontend (after each article)"
75
- msgstr "mostrar sessões de página e usuários no Site (após cada artigo)"
76
-
77
- #: .././admin/settings.php:168
78
- msgid "show page searches (after each article)"
79
- msgstr "Mostram pesquisas da página (após cada artigo)"
80
 
81
- #: .././admin/settings.php:175 .././admin/settings.php:308
82
- #: .././admin/settings.php:605 .././admin/settings.php:952
83
- #: .././admin/settings.php:1245
84
  msgid "Save Changes"
85
  msgstr "Salvar Mudanças"
86
 
87
- #: .././admin/settings.php:208
88
  msgid "Google Analytics Backend Settings"
89
  msgstr "Configurações de back-end do Google Analytics"
90
 
91
- #: .././admin/settings.php:262
92
  msgid "enable Switch View functionality"
93
  msgstr ""
94
 
95
- #: .././admin/settings.php:273
96
  msgid "enable reports on Posts List and Pages List"
97
  msgstr "habilitar relatórios nas listas de Posts e Páginas"
98
 
99
- #: .././admin/settings.php:284
100
  msgid "enable the main Dashboard Widget"
101
  msgstr "habilitar Widget no Painel principal"
102
 
103
- #: .././admin/settings.php:288
104
  msgid "Real-Time Settings"
105
  msgstr "Definições de Tempo Real"
106
 
107
- #: .././admin/settings.php:291
108
  msgid "Maximum number of pages to display on real-time tab:"
109
  msgstr "Número máximo de páginas para mostrar na guia Tempo Real:"
110
 
111
- #: .././admin/settings.php:296
112
  msgid "Location Settings"
113
  msgstr "Configurações de Localização"
114
 
115
- #: .././admin/settings.php:300
116
  msgid "Target Geo Map to country:"
117
  msgstr "Mapa Geográfico alvo para o país:"
118
 
119
- #: .././admin/settings.php:337
120
  msgid ""
121
  "The tracking component is disabled. You should set <strong>Tracking Options</"
122
  "strong> to <strong>Enabled</strong>"
@@ -124,186 +120,186 @@ msgstr ""
124
  "O componente de rastreamento está desativado. Você deve acesar "
125
  "<strong>Opções de Rastreio</strong> para <strong>Habilitar</strong>"
126
 
127
- #: .././admin/settings.php:342
128
  msgid "Google Analytics Tracking Code"
129
  msgstr "Código de rastreamento do Google Analytics"
130
 
131
- #: .././admin/settings.php:351
132
  msgid "Basic Settings"
133
  msgstr "Configurações básicas"
134
 
135
- #: .././admin/settings.php:352 .././admin/settings.php:417
136
  msgid "Events Tracking"
137
  msgstr "Eventos de rastreamento"
138
 
139
- #: .././admin/settings.php:353 .././admin/settings.php:465
140
  msgid "Custom Definitions"
141
  msgstr "Definições personalizadas"
142
 
143
- #: .././admin/settings.php:354 .././admin/settings.php:563
144
- #: .././admin/settings.php:1228
145
  msgid "Exclude Tracking"
146
  msgstr "Excluir Rastreamento"
147
 
148
- #: .././admin/settings.php:355
149
  msgid "Advanced Settings"
150
  msgstr "Configurações avançadas"
151
 
152
- #: .././admin/settings.php:362
153
  msgid "Tracking Settings"
154
  msgstr "Configurações de rastreamento"
155
 
156
- #: .././admin/settings.php:365
157
  msgid "Tracking Options:"
158
  msgstr "Opções de Rastreio"
159
 
160
- #: .././admin/settings.php:367
161
  msgid "Disabled"
162
  msgstr "Desabilitar"
163
 
164
- #: .././admin/settings.php:368
165
  msgid "Enabled"
166
  msgstr "Habilitar"
167
 
168
- #: .././admin/settings.php:376 .././admin/settings.php:897
169
- #: .././admin/settings.php:919 .././admin/settings.php:1201
170
- #: .././admin/widgets.php:71
171
  msgid "View Name:"
172
  msgstr "Ver Nome:"
173
 
174
- #: .././admin/settings.php:376 .././admin/settings.php:919
175
  msgid "Tracking ID:"
176
  msgstr "ID de rastreamento:"
177
 
178
- #: .././admin/settings.php:376 .././admin/settings.php:919
179
  msgid "Default URL:"
180
  msgstr "URL Padrão:"
181
 
182
- #: .././admin/settings.php:376 .././admin/settings.php:919
183
  msgid "Time Zone:"
184
  msgstr "Fuso horário:"
185
 
186
- #: .././admin/settings.php:381
187
  msgid "Basic Tracking"
188
  msgstr "Rastreamento Básico"
189
 
190
- #: .././admin/settings.php:384
191
  msgid "Tracking Type:"
192
  msgstr "Tipo de Rastreio"
193
 
194
- #: .././admin/settings.php:386
195
  msgid "Classic Analytics"
196
  msgstr "Analytics clássico"
197
 
198
- #: .././admin/settings.php:387
199
  msgid "Universal Analytics"
200
  msgstr "Analytics Universal"
201
 
202
- #: .././admin/settings.php:398
203
  msgid "anonymize IPs while tracking"
204
  msgstr "IPs anônimos ao rastreamento"
205
 
206
- #: .././admin/settings.php:409
207
  msgid "enable remarketing, demographics and interests reports"
208
  msgstr "permitir recolocação, demográficas e relatórios de interesses"
209
 
210
- #: .././admin/settings.php:427
211
  msgid "track downloads, mailto and outbound links"
212
  msgstr "Rastrear Downloads, encaminhamentos para e-mail e links de saída"
213
 
214
- #: .././admin/settings.php:431
215
  msgid "Downloads Regex:"
216
  msgstr "Expressões Regulares de Download:"
217
 
218
- #: .././admin/settings.php:442
219
  msgid "track affiliate links matching this regex"
220
  msgstr "Rastrear Links de Afiliados que coincidem com esta expressão regular"
221
 
222
- #: .././admin/settings.php:446
223
  msgid "Affiliates Regex:"
224
  msgstr "Expressão Regular Afiliada:"
225
 
226
- #: .././admin/settings.php:457
227
  msgid "track fragment identifiers, hashmarks (#) in URI links"
228
  msgstr "rastrear identificadores de fragmento, hash (#) nos links"
229
 
230
- #: .././admin/settings.php:468
231
  msgid "Authors:"
232
  msgstr "Autores:"
233
 
234
- #: .././admin/settings.php:476
235
  msgid "Publication Year:"
236
  msgstr "Ano de Publicação:"
237
 
238
- #: .././admin/settings.php:484
239
  msgid "Categories:"
240
  msgstr "Categorias:"
241
 
242
- #: .././admin/settings.php:492
243
  msgid "User Type:"
244
  msgstr "Tipo de Usuário:"
245
 
246
- #: .././admin/settings.php:504
247
  msgid "Advanced Tracking"
248
  msgstr "Rastreio Avançado"
249
 
250
- #: .././admin/settings.php:507
251
  msgid "Page Speed SR:"
252
  msgstr "Velocidade de Página SR:"
253
 
254
- #: .././admin/settings.php:518
255
  msgid "exclude events from bounce-rate calculation"
256
  msgstr "Excluir eventos de cálculo de taxa de rejeição"
257
 
258
- #: .././admin/settings.php:529
259
  msgid "enable enhanced link attribution"
260
  msgstr "permitir atribuição de link aprimorada"
261
 
262
- #: .././admin/settings.php:540
263
  msgid "enable AdSense account linking"
264
  msgstr "habilitar link da conta do AdSense"
265
 
266
- #: .././admin/settings.php:551
267
  msgid "enable cross domain tracking"
268
  msgstr "habilitar Rastreio de domínio cruzado"
269
 
270
- #: .././admin/settings.php:555
271
  msgid "Cross Domains:"
272
  msgstr "Domínio Cruzado:"
273
 
274
- #: .././admin/settings.php:566
275
  msgid "Exclude tracking for:"
276
  msgstr "Excluir Rastreio para:"
277
 
278
- #: .././admin/settings.php:651
279
  msgid "Google Analytics Errors & Debugging"
280
  msgstr "Erros & Depuração do Google Analytics"
281
 
282
- #: .././admin/settings.php:661
283
  msgid "Errors & Details"
284
  msgstr "Erros & Detalhes"
285
 
286
- #: .././admin/settings.php:662
287
  msgid "Plugin Settings"
288
  msgstr "Configurações do Plugin"
289
 
290
- #: .././admin/settings.php:670
291
  msgid "Last Error detected"
292
  msgstr "Último erro detectado"
293
 
294
- #: .././admin/settings.php:676 .././admin/settings.php:689
295
  msgid "None"
296
  msgstr "Nenhum"
297
 
298
- #: .././admin/settings.php:683
299
  msgid "Error Details"
300
  msgstr "Detalhes do Erro"
301
 
302
- #: .././admin/settings.php:703
303
  msgid "Plugin Configuration"
304
  msgstr "Configuração do Plugin"
305
 
306
- #: .././admin/settings.php:725 .././admin/settings.php:990
307
  msgid ""
308
  "Loading the required libraries. If this results in a blank screen or a fatal "
309
  "error, try this solution:"
@@ -311,15 +307,15 @@ msgstr ""
311
  "Carregando as bibliotecas necessárias. Se isso resulta em uma tela em branco "
312
  "ou um erro fatal, tente esta solução:"
313
 
314
- #: .././admin/settings.php:725
315
  msgid "Library conflicts between WordPress plugins"
316
  msgstr "Conflito de Bibliotecas entre Plugins do Wordpress"
317
 
318
- #: .././admin/settings.php:740 .././admin/settings.php:1007
319
  msgid "Plugin authorization succeeded."
320
  msgstr "Plugin autorizado com sucesso."
321
 
322
- #: .././admin/settings.php:755 .././admin/settings.php:1031
323
  msgid ""
324
  "The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
325
  "(UA-XXXXX-X). Try again, and use the red link to get your access code"
@@ -328,35 +324,35 @@ msgstr ""
328
  "</ strong> (UA-XXXXX-X). Tente de novo, e use o link vermelho para obter o "
329
  "seu código de acesso"
330
 
331
- #: .././admin/settings.php:778 .././admin/settings.php:1063
332
  msgid "Cleared Cache."
333
  msgstr "Cache Limpo."
334
 
335
- #: .././admin/settings.php:787 .././admin/settings.php:1072
336
  msgid "Token Reseted and Revoked."
337
  msgstr "Token redefinido e revogado"
338
 
339
- #: .././admin/settings.php:797
340
  msgid "All errors reseted."
341
  msgstr "Todos erros reiniciados"
342
 
343
- #: .././admin/settings.php:810 .././admin/settings.php:1086
344
  msgid "All other domains/properties were removed."
345
  msgstr "Todos os outros domínios/propriedades foram removidas."
346
 
347
- #: .././admin/settings.php:822 .././admin/settings.php:1098
348
  msgid "Google Analytics Settings"
349
  msgstr "Configurações do Google Analytics"
350
 
351
- #: .././admin/settings.php:837 .././admin/settings.php:1112
352
  msgid "Use the red link (see below) to generate and get your access code!"
353
  msgstr "Use o link vermelho (abaixo) para gerar e pegar seu código de acesso."
354
 
355
- #: .././admin/settings.php:848 .././admin/settings.php:1140
356
  msgid "Plugin Authorization"
357
  msgstr "Autorização do Plugin"
358
 
359
- #: .././admin/settings.php:853 .././admin/settings.php:1144
360
  #, php-format
361
  msgid ""
362
  "You should watch the %1$s and read this %2$s before proceeding to "
@@ -367,115 +363,110 @@ msgstr ""
367
  "autorização. Este plugin requer uma conta no Google Analytics corretamente "
368
  "configurada!"
369
 
370
- #: .././admin/settings.php:853 .././admin/settings.php:1144
371
  msgid "video"
372
  msgstr "vídeo"
373
 
374
- #: .././admin/settings.php:853 .././admin/settings.php:1144
375
  msgid "tutorial"
376
  msgstr "tutorial"
377
 
378
- #: .././admin/settings.php:858 .././admin/settings.php:1151
379
  msgid "use your own API Project credentials"
380
  msgstr "usar suas próprias credenciais da API do projeto"
381
 
382
- #: .././admin/settings.php:863 .././admin/settings.php:1159
383
  msgid "API Key:"
384
  msgstr "Chave API:"
385
 
386
- #: .././admin/settings.php:867 .././admin/settings.php:1163
387
  msgid "Client ID:"
388
  msgstr "ID do cliente:"
389
 
390
- #: .././admin/settings.php:871 .././admin/settings.php:1167
391
  msgid "Client Secret:"
392
  msgstr "Cliente Secreto:"
393
 
394
- #: .././admin/settings.php:881 .././admin/settings.php:1177
395
  msgid "Clear Authorization"
396
  msgstr "Limpar Autorização"
397
 
398
- #: .././admin/settings.php:881 .././admin/settings.php:959
399
- #: .././admin/settings.php:1177 .././admin/settings.php:1254
400
  msgid "Clear Cache"
401
  msgstr "Limpar Cache"
402
 
403
- #: .././admin/settings.php:881
404
  msgid "Reset Errors"
405
  msgstr "Reiniciar Erros"
406
 
407
- #: .././admin/settings.php:887 .././admin/setup.php:70 .././admin/setup.php:98
408
  msgid "General Settings"
409
  msgstr "Configurações Gerais"
410
 
411
- #: .././admin/settings.php:890
412
  msgid "Select View:"
413
  msgstr ""
414
 
415
- #: .././admin/settings.php:901 .././admin/settings.php:1205
416
  msgid "Property not found"
417
  msgstr "Propriedade não econtrada"
418
 
419
- #: .././admin/settings.php:907
420
  msgid "Lock Selection"
421
  msgstr ""
422
 
423
- #: .././admin/settings.php:926
424
  msgid "Theme Color:"
425
  msgstr "Cor do Tema:"
426
 
427
- #: .././admin/settings.php:934 .././admin/settings.php:1214
428
  msgid "Automatic Updates"
429
  msgstr "Atualizações Automáticas"
430
 
431
- #: .././admin/settings.php:944 .././admin/settings.php:1224
432
  msgid ""
433
  "automatic updates for minor versions (security and maintenance releases only)"
434
  msgstr ""
435
  "atualizações automáticas para versões menores (Só correções de Segurança e "
436
  "de Manutenção)"
437
 
438
- #: .././admin/settings.php:959 .././admin/settings.php:1254
439
- #: .././admin/widgets.php:42
440
  msgid "Authorize Plugin"
441
  msgstr "Autorize o Plugin"
442
 
443
- #: .././admin/settings.php:1037
444
  msgid "Properties refreshed."
445
  msgstr "Propriedades Atualizadas"
446
 
447
- #: .././admin/settings.php:1122
448
  msgid "Network Setup"
449
  msgstr "Configuração de Rede"
450
 
451
- #: .././admin/settings.php:1132
452
  msgid "use a single Google Analytics account for the entire network"
453
  msgstr "Use uma única conta do Google Analytics para toda a Rede"
454
 
455
- #: .././admin/settings.php:1177
456
  msgid "Refresh Properties"
457
  msgstr "Atualizar Propriedades"
458
 
459
- #: .././admin/settings.php:1183
460
  msgid "Properties/Views Settings"
461
  msgstr "Propriedades/Ver Definições"
462
 
463
- #: .././admin/settings.php:1238
464
  msgid "exclude Super Admin tracking for the entire network"
465
  msgstr "Excluir rastreamento do Super Administrador para toda a rede"
466
 
467
- #: .././admin/settings.php:1285
468
  msgid "Setup Tutorial & Demo"
469
  msgstr "Tutorial de Instalação e demonstrações"
470
 
471
- #: .././admin/settings.php:1293
472
- msgid "Support & Reviews"
473
- msgstr "Suporte e Revisões"
474
-
475
- #: .././admin/settings.php:1300
476
- #, php-format
477
- msgid "Plugin documentation and support on %s"
478
- msgstr "Documentação e Suporte do Plugin em %s"
479
 
480
  #: .././admin/settings.php:1307
481
  #, php-format
@@ -530,175 +521,210 @@ msgstr "%s serviços com rastreamento de usuário a nível de ip."
530
  msgid "Web Analytics"
531
  msgstr "Web Analytics"
532
 
533
- #: .././admin/setup.php:67 .././admin/setup.php:95
534
  msgid "Google Analytics"
535
  msgstr "Google Analytics"
536
 
537
- #: .././admin/setup.php:73
538
  msgid "Backend Settings"
539
  msgstr "Configurações Internas"
540
 
541
- #: .././admin/setup.php:76
542
  msgid "Frontend Settings"
543
  msgstr "Configurações Externas"
544
 
545
- #: .././admin/setup.php:79
546
  msgid "Tracking Code"
547
  msgstr "Código de Rastreio"
548
 
549
- #: .././admin/setup.php:169 .././admin/widgets.php:126
550
  msgid "Today"
551
  msgstr "Hoje"
552
 
553
- #: .././admin/setup.php:170 .././admin/widgets.php:127
554
  msgid "Yesterday"
555
  msgstr "Ontem"
556
 
557
- #: .././admin/setup.php:171 .././admin/widgets.php:128
558
- #: .././front/widgets.php:74 .././front/widgets.php:182
559
- msgid "Last 7 Days"
560
- msgstr "Últimos 7 dias"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
561
 
562
- #: .././admin/setup.php:172 .././admin/widgets.php:130
563
- #: .././front/widgets.php:80 .././front/widgets.php:184
564
- msgid "Last 30 Days"
565
- msgstr "Últimos 30 dias"
566
 
567
- #: .././admin/setup.php:173 .././admin/widgets.php:131
568
- msgid "Last 90 Days"
569
- msgstr "Últimos 90 dias"
570
 
571
- #: .././admin/setup.php:175 .././admin/setup.php:190
 
572
  msgid "Unique Views"
573
  msgstr "Visão Única"
574
 
575
- #: .././admin/setup.php:176 .././admin/setup.php:191
576
- #: .././admin/widgets.php:136 .././admin/widgets.php:875
577
- #: .././tools/gapi.php:391
578
  msgid "Users"
579
  msgstr "Usuários"
580
 
581
- #: .././admin/setup.php:177 .././admin/widgets.php:137
582
  msgid "Organic"
583
  msgstr "Orgânica"
584
 
585
- #: .././admin/setup.php:178 .././admin/setup.php:192
586
- #: .././admin/widgets.php:138 .././admin/widgets.php:879
587
- #: .././tools/gapi.php:394
588
  msgid "Page Views"
589
  msgstr "Visualizações de Páginas"
590
 
591
- #: .././admin/setup.php:179 .././admin/setup.php:193
592
- #: .././admin/widgets.php:139 .././admin/widgets.php:883
593
- #: .././tools/gapi.php:397
594
  msgid "Bounce Rate"
595
  msgstr "Taxa de Rejeição"
596
 
597
- #: .././admin/setup.php:180 .././admin/widgets.php:140
598
  msgid "Location"
599
  msgstr "Localização"
600
 
601
- #: .././admin/setup.php:181 .././admin/widgets.php:142 .././tools/gapi.php:566
 
602
  msgid "Referrers"
603
  msgstr "Referências"
604
 
605
- #: .././admin/setup.php:182 .././admin/widgets.php:143 .././tools/gapi.php:612
606
- #: .././tools/gapi.php:918
607
  msgid "Searches"
608
  msgstr "Pesquisas"
609
 
610
- #: .././admin/setup.php:183 .././admin/widgets.php:144
611
  msgid "Traffic Details"
612
  msgstr "Detalhe do Tráfego"
613
 
614
- #: .././admin/setup.php:185 .././admin/widgets.php:510
615
- #: .././admin/widgets.php:607 .././admin/widgets.php:805
616
- #: .././admin/widgets.php:917 .././front/item-reports.php:97
617
  msgid "A JavaScript Error is blocking plugin resources!"
618
  msgstr "Um JavaScript está bloqueando os recursos do plugin!"
619
 
620
- #: .././admin/setup.php:186 .././admin/widgets.php:713
621
  msgid "Traffic Mediums"
622
  msgstr "Média de Tráfego"
623
 
624
- #: .././admin/setup.php:187 .././admin/widgets.php:729
625
  msgid "Visitor Type"
626
  msgstr "Tipo de Visitantes"
627
 
628
- #: .././admin/setup.php:188 .././admin/widgets.php:745
629
  msgid "Social Networks"
630
  msgstr "Rede Social"
631
 
632
- #: .././admin/setup.php:189 .././admin/widgets.php:761
633
  msgid "Search Engines"
634
  msgstr "Mecanismos de Busca"
635
 
636
- #: .././admin/setup.php:194 .././admin/widgets.php:887
 
637
  msgid "Organic Search"
638
  msgstr "Pesquisa Orgânica"
639
 
640
- #: .././admin/setup.php:195 .././admin/widgets.php:891
 
641
  msgid "Pages/Session"
642
  msgstr "Página/Sessão"
643
 
644
- #: .././admin/setup.php:196 .././admin/widgets.php:523
645
- #: .././admin/widgets.php:541 .././admin/widgets.php:620
646
- #: .././admin/widgets.php:638 .././admin/widgets.php:657
647
- #: .././admin/widgets.php:676 .././admin/widgets.php:696
648
- #: .././admin/widgets.php:819 .././admin/widgets.php:930
649
- #: .././admin/widgets.php:949 .././front/item-reports.php:109
650
- #: .././front/item-reports.php:128
 
651
  msgid "Invalid response, more details in JavaScript Console (F12)."
652
  msgstr "Resposta inválida, mais detalhes no JavaScript Console (F12)."
653
 
654
- #: .././admin/setup.php:197
655
  msgid "Not enough data collected"
656
  msgstr "Dados coletados insuficientes"
657
 
658
- #: .././admin/setup.php:198 .././admin/widgets.php:528
659
- #: .././admin/widgets.php:546 .././admin/widgets.php:625
660
- #: .././admin/widgets.php:643 .././admin/widgets.php:662
661
- #: .././admin/widgets.php:681 .././admin/widgets.php:701
662
- #: .././admin/widgets.php:824 .././admin/widgets.php:827
663
- #: .././admin/widgets.php:935 .././admin/widgets.php:954
664
- #: .././front/item-reports.php:114 .././front/item-reports.php:133
665
- #: .././front/widgets.php:110
666
  msgid "This report is unavailable"
667
  msgstr "Este Relatório não está disponível"
668
 
669
- #: .././admin/setup.php:199
670
  msgid "report generated by"
671
  msgstr "Relatório gerado por"
672
 
673
- #: .././admin/setup.php:233
674
  msgid "Settings"
675
  msgstr "Configurações"
676
 
677
- #: .././admin/widgets.php:33 .././front/widgets.php:22
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
678
  msgid "Google Analytics Dashboard"
679
  msgstr "Painel do Google Analytics"
680
 
681
- #: .././admin/widgets.php:42
682
  msgid "This plugin needs an authorization:"
683
  msgstr "Este Plugin precisa de uma autorização:"
684
 
685
- #: .././admin/widgets.php:76
686
  msgid "Something went wrong while retrieving profiles list."
687
  msgstr "Algo deu errado durante a recuperação da lista de perfis."
688
 
689
- #: .././admin/widgets.php:76
690
  msgid "More details"
691
  msgstr "Mais detalhes"
692
 
693
- #: .././admin/widgets.php:89 .././admin/widgets.php:100
694
  msgid "An admin should asign a default Google Analytics Profile."
695
  msgstr "Um administrador deve atribuir um Perfil Google Analytics padrão."
696
 
697
- #: .././admin/widgets.php:89 .././admin/widgets.php:100
698
  msgid "Select Domain"
699
  msgstr "Selecionar Domínio"
700
 
701
- #: .././admin/widgets.php:105
702
  msgid ""
703
  "Something went wrong while retrieving property data. You need to create and "
704
  "properly configure a Google Analytics account:"
@@ -706,192 +732,208 @@ msgstr ""
706
  "Algo deu errado ao recuperar os dados da propriedade. Você precisa criar e "
707
  "configurar corretamente uma conta do Google Analytics:"
708
 
709
- #: .././admin/widgets.php:105
710
  msgid "Find out more!"
711
  msgstr "Saber mais!"
712
 
713
- #: .././admin/widgets.php:125
714
  msgid "Real-Time"
715
  msgstr "Tempo Real"
716
 
717
- #: .././admin/widgets.php:129 .././front/widgets.php:77
718
- #: .././front/widgets.php:183
719
- msgid "Last 14 Days"
720
- msgstr "Últimos 14 dias"
721
-
722
- #: .././admin/widgets.php:135 .././admin/widgets.php:871
723
- #: .././front/widgets.php:46 .././tools/gapi.php:406 .././tools/gapi.php:567
724
- #: .././tools/gapi.php:613 .././tools/gapi.php:676 .././tools/gapi.php:786
725
- #: .././tools/gapi.php:827 .././tools/gapi.php:919
726
  msgid "Sessions"
727
  msgstr "Sessão"
728
 
729
- #: .././admin/widgets.php:141 .././tools/gapi.php:521
730
  msgid "Pages"
731
  msgstr "Páginas"
732
 
733
- #: .././admin/widgets.php:232 .././admin/widgets.php:472
734
  msgid "REFERRAL"
735
  msgstr "REFERÊNCIA"
736
 
737
- #: .././admin/widgets.php:236 .././admin/widgets.php:473
738
  msgid "ORGANIC"
739
  msgstr "ORGÂNICO"
740
 
741
- #: .././admin/widgets.php:240 .././admin/widgets.php:360
742
- #: .././admin/widgets.php:474
743
  msgid "SOCIAL"
744
  msgstr "SOCIAL"
745
 
746
- #: .././admin/widgets.php:244 .././admin/widgets.php:363
747
- #: .././admin/widgets.php:475
748
  msgid "CAMPAIGN"
749
  msgstr "CAMPANHA"
750
 
751
- #: .././admin/widgets.php:248 .././admin/widgets.php:366
752
- #: .././admin/widgets.php:478
753
  msgid "DIRECT"
754
  msgstr "DIRETO"
755
 
756
- #: .././admin/widgets.php:252 .././admin/widgets.php:479
757
  msgid "NEW"
758
  msgstr "NOVO"
759
 
760
- #: .././admin/widgets.php:354
761
  msgid "REFERRALS"
762
  msgstr "REFERÊNCIAS"
763
 
764
- #: .././admin/widgets.php:357
765
  msgid "KEYWORDS"
766
  msgstr "PALAVRAS-CHAVE"
767
 
768
- #: .././front/item-reports.php:143
769
- msgid "Views vs UniqueViews"
770
- msgstr "Visualizações x Visualização única"
771
-
772
- #: .././front/item-reports.php:193
773
- msgid "Google Analytics Reports"
774
- msgstr "Relatórios do Google Analytics"
775
-
776
- #: .././front/widgets.php:23
777
  msgid "Will display your google analytics stats in a widget"
778
  msgstr "Exibirá suas estatísticas google analytics em um Widget"
779
 
780
- #: .././front/widgets.php:46 .././tools/gapi.php:827
781
  msgid "trend"
782
  msgstr "Tendência"
783
 
784
- #: .././front/widgets.php:133
785
  msgid "Period:"
786
  msgstr "período:"
787
 
788
- #: .././front/widgets.php:133
789
  msgid "Sessions:"
790
  msgstr "Sessões:"
791
 
792
- #: .././front/widgets.php:137
793
  msgid "generated by"
794
  msgstr "gerado por"
795
 
796
- #: .././front/widgets.php:147
797
  msgid "Google Analytics Stats"
798
  msgstr "Estatísticas do Google Analytics"
799
 
800
- #: .././front/widgets.php:154
801
  msgid "Title:"
802
  msgstr "Título:"
803
 
804
- #: .././front/widgets.php:161
805
  msgid "Display:"
806
  msgstr "Exibir:"
807
 
808
- #: .././front/widgets.php:165
809
  msgid "Chart & Totals"
810
  msgstr "Gráfico e Totais"
811
 
812
- #: .././front/widgets.php:166
813
  msgid "Chart"
814
  msgstr "Gráfico"
815
 
816
- #: .././front/widgets.php:167
817
  msgid "Totals"
818
  msgstr "Totais"
819
 
820
- #: .././front/widgets.php:171
821
  msgid "Anonymize stats:"
822
  msgstr "Anonimizar estatísticas:"
823
 
824
- #: .././front/widgets.php:178
825
  msgid "Stats for:"
826
  msgstr "Estatísticas para:"
827
 
828
- #: .././front/widgets.php:188
829
  msgid "Give credits:"
830
  msgstr "Créditos para:"
831
 
832
- #: .././gadwp.php:46 .././gadwp.php:55 .././gadwp.php:63
833
  msgid "This is not allowed, read the documentation!"
834
  msgstr "Isso não é permitido, leia a documentação!"
835
 
836
- #: .././tools/gapi.php:134
837
  msgid "Use this link to get your access code:"
838
  msgstr "Use este link para obter o seu código de acesso:"
839
 
840
- #: .././tools/gapi.php:134
841
  msgid "Get Access Code"
842
  msgstr "Obter Código de Acesso"
843
 
844
- #: .././tools/gapi.php:138 .././tools/gapi.php:139
845
  msgid "Use the red link to get your access code!"
846
  msgstr "Use o link vermelho para pegar seu código de acesso!"
847
 
848
- #: .././tools/gapi.php:138
849
  msgid "Access Code:"
850
  msgstr "Código de acesso:"
851
 
852
- #: .././tools/gapi.php:145
853
  msgid "Save Access Code"
854
  msgstr "Salvar Código de Acesso"
855
 
856
- #: .././tools/gapi.php:400
857
  msgid "Organic Searches"
858
  msgstr "Pesquisas Ôrganicas"
859
 
860
- #: .././tools/gapi.php:403
861
  msgid "Unique Page Views"
862
  msgstr "Visualização única de página"
863
 
864
- #: .././tools/gapi.php:411
865
  msgid "Hour"
866
  msgstr "Hora"
867
 
868
- #: .././tools/gapi.php:414 .././tools/gapi.php:826 .././tools/gapi.php:876
869
  msgid "Date"
870
  msgstr "Dia"
871
 
872
- #: .././tools/gapi.php:522 .././tools/gapi.php:877
873
  msgid "Views"
874
  msgstr "Visualizações"
875
 
876
- #: .././tools/gapi.php:640
877
  msgid "Countries"
878
  msgstr "Países"
879
 
880
- #: .././tools/gapi.php:650
881
  msgid "Cities from"
882
  msgstr "das Cidades"
883
 
884
- #: .././tools/gapi.php:722
885
  msgid "Channels"
886
  msgstr "Canal"
887
 
888
- #: .././tools/gapi.php:785
889
  msgid "Type"
890
  msgstr "Tipo"
891
 
892
- #: .././tools/gapi.php:878
893
- msgid "UniqueViews"
894
- msgstr "Visualização Única "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
895
 
896
  #~ msgid "Read %s for more information about Frontend Features and Options."
897
  #~ msgstr ""
3
  "Project-Id-Version: Google Analytics Dashboard for WP 4.6\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-"
5
  "dashboard-for-wp\n"
6
+ "POT-Creation-Date: 2015-07-05 16:09+0300\n"
7
+ "PO-Revision-Date: 2015-07-05 16:09+0300\n"
8
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
9
  "Language-Team: Treedbox.com <treedbox@gmail.com>\n"
10
  "Language: pt_BR\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Poedit 1.8.2\n"
15
+ "X-Poedit-KeywordsList: __;_e;_n;_x;_ex;_nx;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;esc_html_x;_n_noop;_nx_noop\n"
16
  "X-Poedit-Basepath: .\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
19
  "X-Poedit-SearchPath-0: ../.\n"
20
 
21
+ #: .././admin/item-reports.php:61 .././front/item-reports.php:29
22
  msgid "Analytics"
23
  msgstr "Analytics"
24
 
25
+ #: .././admin/settings.php:89 .././admin/settings.php:184
26
+ #: .././admin/settings.php:318 .././admin/settings.php:795
27
+ #: .././admin/settings.php:1068
28
  msgid "Settings saved."
29
  msgstr "Definições Salvas"
30
 
31
+ #: .././admin/settings.php:91 .././admin/settings.php:186
32
+ #: .././admin/settings.php:320 .././admin/settings.php:772
33
+ #: .././admin/settings.php:782 .././admin/settings.php:791
34
+ #: .././admin/settings.php:797 .././admin/settings.php:808
35
+ #: .././admin/settings.php:1029 .././admin/settings.php:1054
36
+ #: .././admin/settings.php:1064 .././admin/settings.php:1070
37
+ #: .././admin/settings.php:1081
38
  msgid "Cheating Huh?"
39
  msgstr "A Curiosidade Matou o Gato :F"
40
 
41
+ #: .././admin/settings.php:95 .././admin/settings.php:190
42
+ #: .././admin/settings.php:324 .././admin/settings.php:641
43
+ #: .././admin/settings.php:823 .././admin/settings.php:1095
44
  #, php-format
45
  msgid "Something went wrong, check %1$s or %2$s."
46
  msgstr "Algo deu errado, verifique %1$s ou %2$s."
47
 
48
+ #: .././admin/settings.php:95 .././admin/settings.php:190
49
+ #: .././admin/settings.php:324 .././admin/settings.php:641
50
+ #: .././admin/settings.php:823 .././admin/settings.php:1095
51
+ #: .././admin/setup.php:46 .././admin/setup.php:59
52
  msgid "Errors & Debug"
53
  msgstr "Erros & Depuração"
54
 
55
+ #: .././admin/settings.php:95 .././admin/settings.php:190
56
+ #: .././admin/settings.php:324 .././admin/settings.php:641
57
+ #: .././admin/settings.php:823 .././admin/settings.php:1095
58
  msgid "authorize the plugin"
59
  msgstr "Autorize o Plugin"
60
 
61
+ #: .././admin/settings.php:100
62
  msgid "Google Analytics Frontend Settings"
63
  msgstr "Configurações Externas do Google Analytics"
64
 
65
+ #: .././admin/settings.php:110 .././admin/settings.php:205
66
  msgid "Permissions"
67
  msgstr "Permissões"
68
 
69
+ #: .././admin/settings.php:113 .././admin/settings.php:208
70
  msgid "Show stats to:"
71
  msgstr "Mostrar Status de:"
72
 
73
+ #: .././admin/settings.php:154
74
+ msgid "enable web page reports on frontend"
75
+ msgstr ""
 
 
 
 
76
 
77
+ #: .././admin/settings.php:161 .././admin/settings.php:297
78
+ #: .././admin/settings.php:598 .././admin/settings.php:943
79
+ #: .././admin/settings.php:1232
80
  msgid "Save Changes"
81
  msgstr "Salvar Mudanças"
82
 
83
+ #: .././admin/settings.php:195
84
  msgid "Google Analytics Backend Settings"
85
  msgstr "Configurações de back-end do Google Analytics"
86
 
87
+ #: .././admin/settings.php:251
88
  msgid "enable Switch View functionality"
89
  msgstr ""
90
 
91
+ #: .././admin/settings.php:262
92
  msgid "enable reports on Posts List and Pages List"
93
  msgstr "habilitar relatórios nas listas de Posts e Páginas"
94
 
95
+ #: .././admin/settings.php:273
96
  msgid "enable the main Dashboard Widget"
97
  msgstr "habilitar Widget no Painel principal"
98
 
99
+ #: .././admin/settings.php:277
100
  msgid "Real-Time Settings"
101
  msgstr "Definições de Tempo Real"
102
 
103
+ #: .././admin/settings.php:280
104
  msgid "Maximum number of pages to display on real-time tab:"
105
  msgstr "Número máximo de páginas para mostrar na guia Tempo Real:"
106
 
107
+ #: .././admin/settings.php:285
108
  msgid "Location Settings"
109
  msgstr "Configurações de Localização"
110
 
111
+ #: .././admin/settings.php:289
112
  msgid "Target Geo Map to country:"
113
  msgstr "Mapa Geográfico alvo para o país:"
114
 
115
+ #: .././admin/settings.php:327
116
  msgid ""
117
  "The tracking component is disabled. You should set <strong>Tracking Options</"
118
  "strong> to <strong>Enabled</strong>"
120
  "O componente de rastreamento está desativado. Você deve acesar "
121
  "<strong>Opções de Rastreio</strong> para <strong>Habilitar</strong>"
122
 
123
+ #: .././admin/settings.php:332
124
  msgid "Google Analytics Tracking Code"
125
  msgstr "Código de rastreamento do Google Analytics"
126
 
127
+ #: .././admin/settings.php:341
128
  msgid "Basic Settings"
129
  msgstr "Configurações básicas"
130
 
131
+ #: .././admin/settings.php:342 .././admin/settings.php:408
132
  msgid "Events Tracking"
133
  msgstr "Eventos de rastreamento"
134
 
135
+ #: .././admin/settings.php:343 .././admin/settings.php:456
136
  msgid "Custom Definitions"
137
  msgstr "Definições personalizadas"
138
 
139
+ #: .././admin/settings.php:344 .././admin/settings.php:554
140
+ #: .././admin/settings.php:1215
141
  msgid "Exclude Tracking"
142
  msgstr "Excluir Rastreamento"
143
 
144
+ #: .././admin/settings.php:345
145
  msgid "Advanced Settings"
146
  msgstr "Configurações avançadas"
147
 
148
+ #: .././admin/settings.php:353
149
  msgid "Tracking Settings"
150
  msgstr "Configurações de rastreamento"
151
 
152
+ #: .././admin/settings.php:356
153
  msgid "Tracking Options:"
154
  msgstr "Opções de Rastreio"
155
 
156
+ #: .././admin/settings.php:358
157
  msgid "Disabled"
158
  msgstr "Desabilitar"
159
 
160
+ #: .././admin/settings.php:359
161
  msgid "Enabled"
162
  msgstr "Habilitar"
163
 
164
+ #: .././admin/settings.php:367 .././admin/settings.php:888
165
+ #: .././admin/settings.php:910 .././admin/settings.php:1188
166
+ #: .././admin/widgets.php:61
167
  msgid "View Name:"
168
  msgstr "Ver Nome:"
169
 
170
+ #: .././admin/settings.php:367 .././admin/settings.php:910
171
  msgid "Tracking ID:"
172
  msgstr "ID de rastreamento:"
173
 
174
+ #: .././admin/settings.php:367 .././admin/settings.php:910
175
  msgid "Default URL:"
176
  msgstr "URL Padrão:"
177
 
178
+ #: .././admin/settings.php:367 .././admin/settings.php:910
179
  msgid "Time Zone:"
180
  msgstr "Fuso horário:"
181
 
182
+ #: .././admin/settings.php:372
183
  msgid "Basic Tracking"
184
  msgstr "Rastreamento Básico"
185
 
186
+ #: .././admin/settings.php:375
187
  msgid "Tracking Type:"
188
  msgstr "Tipo de Rastreio"
189
 
190
+ #: .././admin/settings.php:377
191
  msgid "Classic Analytics"
192
  msgstr "Analytics clássico"
193
 
194
+ #: .././admin/settings.php:378
195
  msgid "Universal Analytics"
196
  msgstr "Analytics Universal"
197
 
198
+ #: .././admin/settings.php:389
199
  msgid "anonymize IPs while tracking"
200
  msgstr "IPs anônimos ao rastreamento"
201
 
202
+ #: .././admin/settings.php:400
203
  msgid "enable remarketing, demographics and interests reports"
204
  msgstr "permitir recolocação, demográficas e relatórios de interesses"
205
 
206
+ #: .././admin/settings.php:418
207
  msgid "track downloads, mailto and outbound links"
208
  msgstr "Rastrear Downloads, encaminhamentos para e-mail e links de saída"
209
 
210
+ #: .././admin/settings.php:422
211
  msgid "Downloads Regex:"
212
  msgstr "Expressões Regulares de Download:"
213
 
214
+ #: .././admin/settings.php:433
215
  msgid "track affiliate links matching this regex"
216
  msgstr "Rastrear Links de Afiliados que coincidem com esta expressão regular"
217
 
218
+ #: .././admin/settings.php:437
219
  msgid "Affiliates Regex:"
220
  msgstr "Expressão Regular Afiliada:"
221
 
222
+ #: .././admin/settings.php:448
223
  msgid "track fragment identifiers, hashmarks (#) in URI links"
224
  msgstr "rastrear identificadores de fragmento, hash (#) nos links"
225
 
226
+ #: .././admin/settings.php:459
227
  msgid "Authors:"
228
  msgstr "Autores:"
229
 
230
+ #: .././admin/settings.php:467
231
  msgid "Publication Year:"
232
  msgstr "Ano de Publicação:"
233
 
234
+ #: .././admin/settings.php:475
235
  msgid "Categories:"
236
  msgstr "Categorias:"
237
 
238
+ #: .././admin/settings.php:483
239
  msgid "User Type:"
240
  msgstr "Tipo de Usuário:"
241
 
242
+ #: .././admin/settings.php:495
243
  msgid "Advanced Tracking"
244
  msgstr "Rastreio Avançado"
245
 
246
+ #: .././admin/settings.php:498
247
  msgid "Page Speed SR:"
248
  msgstr "Velocidade de Página SR:"
249
 
250
+ #: .././admin/settings.php:509
251
  msgid "exclude events from bounce-rate calculation"
252
  msgstr "Excluir eventos de cálculo de taxa de rejeição"
253
 
254
+ #: .././admin/settings.php:520
255
  msgid "enable enhanced link attribution"
256
  msgstr "permitir atribuição de link aprimorada"
257
 
258
+ #: .././admin/settings.php:531
259
  msgid "enable AdSense account linking"
260
  msgstr "habilitar link da conta do AdSense"
261
 
262
+ #: .././admin/settings.php:542
263
  msgid "enable cross domain tracking"
264
  msgstr "habilitar Rastreio de domínio cruzado"
265
 
266
+ #: .././admin/settings.php:546
267
  msgid "Cross Domains:"
268
  msgstr "Domínio Cruzado:"
269
 
270
+ #: .././admin/settings.php:557
271
  msgid "Exclude tracking for:"
272
  msgstr "Excluir Rastreio para:"
273
 
274
+ #: .././admin/settings.php:645
275
  msgid "Google Analytics Errors & Debugging"
276
  msgstr "Erros & Depuração do Google Analytics"
277
 
278
+ #: .././admin/settings.php:655
279
  msgid "Errors & Details"
280
  msgstr "Erros & Detalhes"
281
 
282
+ #: .././admin/settings.php:656
283
  msgid "Plugin Settings"
284
  msgstr "Configurações do Plugin"
285
 
286
+ #: .././admin/settings.php:663
287
  msgid "Last Error detected"
288
  msgstr "Último erro detectado"
289
 
290
+ #: .././admin/settings.php:669 .././admin/settings.php:682
291
  msgid "None"
292
  msgstr "Nenhum"
293
 
294
+ #: .././admin/settings.php:676
295
  msgid "Error Details"
296
  msgstr "Detalhes do Erro"
297
 
298
+ #: .././admin/settings.php:696
299
  msgid "Plugin Configuration"
300
  msgstr "Configuração do Plugin"
301
 
302
+ #: .././admin/settings.php:717 .././admin/settings.php:980
303
  msgid ""
304
  "Loading the required libraries. If this results in a blank screen or a fatal "
305
  "error, try this solution:"
307
  "Carregando as bibliotecas necessárias. Se isso resulta em uma tela em branco "
308
  "ou um erro fatal, tente esta solução:"
309
 
310
+ #: .././admin/settings.php:717
311
  msgid "Library conflicts between WordPress plugins"
312
  msgstr "Conflito de Bibliotecas entre Plugins do Wordpress"
313
 
314
+ #: .././admin/settings.php:732 .././admin/settings.php:997
315
  msgid "Plugin authorization succeeded."
316
  msgstr "Plugin autorizado com sucesso."
317
 
318
+ #: .././admin/settings.php:747 .././admin/settings.php:1020
319
  msgid ""
320
  "The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
321
  "(UA-XXXXX-X). Try again, and use the red link to get your access code"
324
  "</ strong> (UA-XXXXX-X). Tente de novo, e use o link vermelho para obter o "
325
  "seu código de acesso"
326
 
327
+ #: .././admin/settings.php:770 .././admin/settings.php:1052
328
  msgid "Cleared Cache."
329
  msgstr "Cache Limpo."
330
 
331
+ #: .././admin/settings.php:779 .././admin/settings.php:1061
332
  msgid "Token Reseted and Revoked."
333
  msgstr "Token redefinido e revogado"
334
 
335
+ #: .././admin/settings.php:789
336
  msgid "All errors reseted."
337
  msgstr "Todos erros reiniciados"
338
 
339
+ #: .././admin/settings.php:802 .././admin/settings.php:1075
340
  msgid "All other domains/properties were removed."
341
  msgstr "Todos os outros domínios/propriedades foram removidas."
342
 
343
+ #: .././admin/settings.php:813 .././admin/settings.php:1086
344
  msgid "Google Analytics Settings"
345
  msgstr "Configurações do Google Analytics"
346
 
347
+ #: .././admin/settings.php:828 .././admin/settings.php:1100
348
  msgid "Use the red link (see below) to generate and get your access code!"
349
  msgstr "Use o link vermelho (abaixo) para gerar e pegar seu código de acesso."
350
 
351
+ #: .././admin/settings.php:839 .././admin/settings.php:1128
352
  msgid "Plugin Authorization"
353
  msgstr "Autorização do Plugin"
354
 
355
+ #: .././admin/settings.php:844 .././admin/settings.php:1132
356
  #, php-format
357
  msgid ""
358
  "You should watch the %1$s and read this %2$s before proceeding to "
363
  "autorização. Este plugin requer uma conta no Google Analytics corretamente "
364
  "configurada!"
365
 
366
+ #: .././admin/settings.php:844 .././admin/settings.php:1132
367
  msgid "video"
368
  msgstr "vídeo"
369
 
370
+ #: .././admin/settings.php:844 .././admin/settings.php:1132
371
  msgid "tutorial"
372
  msgstr "tutorial"
373
 
374
+ #: .././admin/settings.php:849 .././admin/settings.php:1139
375
  msgid "use your own API Project credentials"
376
  msgstr "usar suas próprias credenciais da API do projeto"
377
 
378
+ #: .././admin/settings.php:854 .././admin/settings.php:1147
379
  msgid "API Key:"
380
  msgstr "Chave API:"
381
 
382
+ #: .././admin/settings.php:858 .././admin/settings.php:1151
383
  msgid "Client ID:"
384
  msgstr "ID do cliente:"
385
 
386
+ #: .././admin/settings.php:862 .././admin/settings.php:1155
387
  msgid "Client Secret:"
388
  msgstr "Cliente Secreto:"
389
 
390
+ #: .././admin/settings.php:872 .././admin/settings.php:1165
391
  msgid "Clear Authorization"
392
  msgstr "Limpar Autorização"
393
 
394
+ #: .././admin/settings.php:872 .././admin/settings.php:950
395
+ #: .././admin/settings.php:1165 .././admin/settings.php:1241
396
  msgid "Clear Cache"
397
  msgstr "Limpar Cache"
398
 
399
+ #: .././admin/settings.php:872
400
  msgid "Reset Errors"
401
  msgstr "Reiniciar Erros"
402
 
403
+ #: .././admin/settings.php:878 .././admin/setup.php:42 .././admin/setup.php:58
404
  msgid "General Settings"
405
  msgstr "Configurações Gerais"
406
 
407
+ #: .././admin/settings.php:881
408
  msgid "Select View:"
409
  msgstr ""
410
 
411
+ #: .././admin/settings.php:892 .././admin/settings.php:1192
412
  msgid "Property not found"
413
  msgstr "Propriedade não econtrada"
414
 
415
+ #: .././admin/settings.php:898
416
  msgid "Lock Selection"
417
  msgstr ""
418
 
419
+ #: .././admin/settings.php:917
420
  msgid "Theme Color:"
421
  msgstr "Cor do Tema:"
422
 
423
+ #: .././admin/settings.php:925 .././admin/settings.php:1201
424
  msgid "Automatic Updates"
425
  msgstr "Atualizações Automáticas"
426
 
427
+ #: .././admin/settings.php:935 .././admin/settings.php:1211
428
  msgid ""
429
  "automatic updates for minor versions (security and maintenance releases only)"
430
  msgstr ""
431
  "atualizações automáticas para versões menores (Só correções de Segurança e "
432
  "de Manutenção)"
433
 
434
+ #: .././admin/settings.php:950 .././admin/settings.php:1241
435
+ #: .././admin/widgets.php:32
436
  msgid "Authorize Plugin"
437
  msgstr "Autorize o Plugin"
438
 
439
+ #: .././admin/settings.php:1026
440
  msgid "Properties refreshed."
441
  msgstr "Propriedades Atualizadas"
442
 
443
+ #: .././admin/settings.php:1110
444
  msgid "Network Setup"
445
  msgstr "Configuração de Rede"
446
 
447
+ #: .././admin/settings.php:1120
448
  msgid "use a single Google Analytics account for the entire network"
449
  msgstr "Use uma única conta do Google Analytics para toda a Rede"
450
 
451
+ #: .././admin/settings.php:1165
452
  msgid "Refresh Properties"
453
  msgstr "Atualizar Propriedades"
454
 
455
+ #: .././admin/settings.php:1171
456
  msgid "Properties/Views Settings"
457
  msgstr "Propriedades/Ver Definições"
458
 
459
+ #: .././admin/settings.php:1225
460
  msgid "exclude Super Admin tracking for the entire network"
461
  msgstr "Excluir rastreamento do Super Administrador para toda a rede"
462
 
463
+ #: .././admin/settings.php:1273
464
  msgid "Setup Tutorial & Demo"
465
  msgstr "Tutorial de Instalação e demonstrações"
466
 
467
+ #: .././admin/settings.php:1281
468
+ msgid "Follow & Review"
469
+ msgstr ""
 
 
 
 
 
470
 
471
  #: .././admin/settings.php:1307
472
  #, php-format
521
  msgid "Web Analytics"
522
  msgstr "Web Analytics"
523
 
524
+ #: .././admin/setup.php:41 .././admin/setup.php:57
525
  msgid "Google Analytics"
526
  msgstr "Google Analytics"
527
 
528
+ #: .././admin/setup.php:43
529
  msgid "Backend Settings"
530
  msgstr "Configurações Internas"
531
 
532
+ #: .././admin/setup.php:44
533
  msgid "Frontend Settings"
534
  msgstr "Configurações Externas"
535
 
536
+ #: .././admin/setup.php:45
537
  msgid "Tracking Code"
538
  msgstr "Código de Rastreio"
539
 
540
+ #: .././admin/setup.php:159 .././admin/widgets.php:117 .././front/setup.php:71
541
  msgid "Today"
542
  msgstr "Hoje"
543
 
544
+ #: .././admin/setup.php:160 .././admin/widgets.php:118 .././front/setup.php:72
545
  msgid "Yesterday"
546
  msgstr "Ontem"
547
 
548
+ #: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
549
+ #: .././admin/setup.php:164 .././admin/widgets.php:119
550
+ #: .././admin/widgets.php:120 .././admin/widgets.php:121
551
+ #: .././admin/widgets.php:122 .././front/setup.php:73 .././front/setup.php:74
552
+ #: .././front/setup.php:75 .././front/setup.php:76 .././front/widgets.php:64
553
+ #: .././front/widgets.php:67 .././front/widgets.php:70
554
+ #: .././front/widgets.php:158 .././front/widgets.php:159
555
+ #: .././front/widgets.php:160
556
+ #, php-format
557
+ msgid "Last %d Days"
558
+ msgstr "Últimos %d dias"
559
+
560
+ #: .././admin/setup.php:165 .././admin/setup.php:166
561
+ #: .././admin/widgets.php:123 .././admin/widgets.php:124
562
+ #: .././front/setup.php:77 .././front/setup.php:78
563
+ #, php-format
564
+ msgid "%s Year"
565
+ msgstr ""
566
 
567
+ #: .././admin/setup.php:165 .././admin/widgets.php:123 .././front/setup.php:77
568
+ msgid "One"
569
+ msgstr ""
 
570
 
571
+ #: .././admin/setup.php:166 .././admin/widgets.php:124 .././front/setup.php:78
572
+ msgid "Three"
573
+ msgstr ""
574
 
575
+ #: .././admin/setup.php:169 .././admin/setup.php:185 .././front/setup.php:81
576
+ #: .././front/setup.php:97
577
  msgid "Unique Views"
578
  msgstr "Visão Única"
579
 
580
+ #: .././admin/setup.php:170 .././admin/setup.php:186
581
+ #: .././admin/widgets.php:130 .././admin/widgets.php:830
582
+ #: .././front/setup.php:82 .././front/setup.php:98 .././tools/gapi.php:358
583
  msgid "Users"
584
  msgstr "Usuários"
585
 
586
+ #: .././admin/setup.php:171 .././admin/widgets.php:131 .././front/setup.php:83
587
  msgid "Organic"
588
  msgstr "Orgânica"
589
 
590
+ #: .././admin/setup.php:172 .././admin/setup.php:187
591
+ #: .././admin/widgets.php:132 .././admin/widgets.php:834
592
+ #: .././front/setup.php:84 .././front/setup.php:99 .././tools/gapi.php:361
593
  msgid "Page Views"
594
  msgstr "Visualizações de Páginas"
595
 
596
+ #: .././admin/setup.php:173 .././admin/setup.php:188
597
+ #: .././admin/widgets.php:133 .././admin/widgets.php:838
598
+ #: .././front/setup.php:85 .././front/setup.php:100 .././tools/gapi.php:364
599
  msgid "Bounce Rate"
600
  msgstr "Taxa de Rejeição"
601
 
602
+ #: .././admin/setup.php:174 .././admin/widgets.php:134 .././front/setup.php:86
603
  msgid "Location"
604
  msgstr "Localização"
605
 
606
+ #: .././admin/setup.php:175 .././admin/widgets.php:136 .././front/setup.php:87
607
+ #: .././tools/gapi.php:503
608
  msgid "Referrers"
609
  msgstr "Referências"
610
 
611
+ #: .././admin/setup.php:176 .././admin/widgets.php:137 .././front/setup.php:88
612
+ #: .././tools/gapi.php:536
613
  msgid "Searches"
614
  msgstr "Pesquisas"
615
 
616
+ #: .././admin/setup.php:177 .././admin/widgets.php:138 .././front/setup.php:89
617
  msgid "Traffic Details"
618
  msgstr "Detalhe do Tráfego"
619
 
620
+ #: .././admin/setup.php:180 .././admin/widgets.php:505
621
+ #: .././admin/widgets.php:590 .././admin/widgets.php:757
622
+ #: .././admin/widgets.php:861 .././front/setup.php:92
623
  msgid "A JavaScript Error is blocking plugin resources!"
624
  msgstr "Um JavaScript está bloqueando os recursos do plugin!"
625
 
626
+ #: .././admin/setup.php:181 .././admin/widgets.php:681 .././front/setup.php:93
627
  msgid "Traffic Mediums"
628
  msgstr "Média de Tráfego"
629
 
630
+ #: .././admin/setup.php:182 .././admin/widgets.php:696 .././front/setup.php:94
631
  msgid "Visitor Type"
632
  msgstr "Tipo de Visitantes"
633
 
634
+ #: .././admin/setup.php:183 .././admin/widgets.php:711 .././front/setup.php:95
635
  msgid "Social Networks"
636
  msgstr "Rede Social"
637
 
638
+ #: .././admin/setup.php:184 .././admin/widgets.php:726 .././front/setup.php:96
639
  msgid "Search Engines"
640
  msgstr "Mecanismos de Busca"
641
 
642
+ #: .././admin/setup.php:189 .././admin/widgets.php:842
643
+ #: .././front/setup.php:101
644
  msgid "Organic Search"
645
  msgstr "Pesquisa Orgânica"
646
 
647
+ #: .././admin/setup.php:190 .././admin/widgets.php:846
648
+ #: .././front/setup.php:102
649
  msgid "Pages/Session"
650
  msgstr "Página/Sessão"
651
 
652
+ #: .././admin/setup.php:191 .././admin/widgets.php:517
653
+ #: .././admin/widgets.php:531 .././admin/widgets.php:541
654
+ #: .././admin/widgets.php:602 .././admin/widgets.php:616
655
+ #: .././admin/widgets.php:630 .././admin/widgets.php:644
656
+ #: .././admin/widgets.php:658 .././admin/widgets.php:668
657
+ #: .././admin/widgets.php:770 .././admin/widgets.php:782
658
+ #: .././admin/widgets.php:873 .././admin/widgets.php:887
659
+ #: .././admin/widgets.php:897 .././front/setup.php:103
660
  msgid "Invalid response, more details in JavaScript Console (F12)."
661
  msgstr "Resposta inválida, mais detalhes no JavaScript Console (F12)."
662
 
663
+ #: .././admin/setup.php:192 .././front/setup.php:104
664
  msgid "Not enough data collected"
665
  msgstr "Dados coletados insuficientes"
666
 
667
+ #: .././admin/setup.php:193 .././admin/widgets.php:522
668
+ #: .././admin/widgets.php:536 .././admin/widgets.php:607
669
+ #: .././admin/widgets.php:621 .././admin/widgets.php:635
670
+ #: .././admin/widgets.php:649 .././admin/widgets.php:663
671
+ #: .././admin/widgets.php:775 .././admin/widgets.php:777
672
+ #: .././admin/widgets.php:878 .././admin/widgets.php:892
673
+ #: .././front/setup.php:105 .././front/widgets.php:100
 
674
  msgid "This report is unavailable"
675
  msgstr "Este Relatório não está disponível"
676
 
677
+ #: .././admin/setup.php:194 .././front/setup.php:106
678
  msgid "report generated by"
679
  msgstr "Relatório gerado por"
680
 
681
+ #: .././admin/setup.php:225
682
  msgid "Settings"
683
  msgstr "Configurações"
684
 
685
+ #: .././admin/setup.php:237
686
+ #, php-format
687
+ msgid "Google Analytics Dashboard for WP has been updated to version %s."
688
+ msgstr ""
689
+
690
+ #: .././admin/setup.php:237
691
+ #, php-format
692
+ msgid "For details, check out %1$s and %2$s."
693
+ msgstr ""
694
+
695
+ #: .././admin/setup.php:237
696
+ msgid "the documentation page"
697
+ msgstr ""
698
+
699
+ #: .././admin/setup.php:237
700
+ msgid "the plugin&#39;s settings page"
701
+ msgstr ""
702
+
703
+ #: .././admin/widgets.php:27 .././front/widgets.php:21
704
  msgid "Google Analytics Dashboard"
705
  msgstr "Painel do Google Analytics"
706
 
707
+ #: .././admin/widgets.php:32
708
  msgid "This plugin needs an authorization:"
709
  msgstr "Este Plugin precisa de uma autorização:"
710
 
711
+ #: .././admin/widgets.php:66
712
  msgid "Something went wrong while retrieving profiles list."
713
  msgstr "Algo deu errado durante a recuperação da lista de perfis."
714
 
715
+ #: .././admin/widgets.php:66
716
  msgid "More details"
717
  msgstr "Mais detalhes"
718
 
719
+ #: .././admin/widgets.php:79 .././admin/widgets.php:90
720
  msgid "An admin should asign a default Google Analytics Profile."
721
  msgstr "Um administrador deve atribuir um Perfil Google Analytics padrão."
722
 
723
+ #: .././admin/widgets.php:79 .././admin/widgets.php:90
724
  msgid "Select Domain"
725
  msgstr "Selecionar Domínio"
726
 
727
+ #: .././admin/widgets.php:95
728
  msgid ""
729
  "Something went wrong while retrieving property data. You need to create and "
730
  "properly configure a Google Analytics account:"
732
  "Algo deu errado ao recuperar os dados da propriedade. Você precisa criar e "
733
  "configurar corretamente uma conta do Google Analytics:"
734
 
735
+ #: .././admin/widgets.php:95
736
  msgid "Find out more!"
737
  msgstr "Saber mais!"
738
 
739
+ #: .././admin/widgets.php:116
740
  msgid "Real-Time"
741
  msgstr "Tempo Real"
742
 
743
+ #: .././admin/widgets.php:129 .././admin/widgets.php:826
744
+ #: .././front/widgets.php:36 .././tools/gapi.php:373 .././tools/gapi.php:503
745
+ #: .././tools/gapi.php:536 .././tools/gapi.php:586 .././tools/gapi.php:666
746
+ #: .././tools/gapi.php:695
 
 
 
 
 
747
  msgid "Sessions"
748
  msgstr "Sessão"
749
 
750
+ #: .././admin/widgets.php:135 .././tools/gapi.php:471
751
  msgid "Pages"
752
  msgstr "Páginas"
753
 
754
+ #: .././admin/widgets.php:236 .././admin/widgets.php:478
755
  msgid "REFERRAL"
756
  msgstr "REFERÊNCIA"
757
 
758
+ #: .././admin/widgets.php:240 .././admin/widgets.php:479
759
  msgid "ORGANIC"
760
  msgstr "ORGÂNICO"
761
 
762
+ #: .././admin/widgets.php:244 .././admin/widgets.php:364
763
+ #: .././admin/widgets.php:480
764
  msgid "SOCIAL"
765
  msgstr "SOCIAL"
766
 
767
+ #: .././admin/widgets.php:248 .././admin/widgets.php:367
768
+ #: .././admin/widgets.php:481
769
  msgid "CAMPAIGN"
770
  msgstr "CAMPANHA"
771
 
772
+ #: .././admin/widgets.php:252 .././admin/widgets.php:370
773
+ #: .././admin/widgets.php:484
774
  msgid "DIRECT"
775
  msgstr "DIRETO"
776
 
777
+ #: .././admin/widgets.php:256 .././admin/widgets.php:485
778
  msgid "NEW"
779
  msgstr "NOVO"
780
 
781
+ #: .././admin/widgets.php:358
782
  msgid "REFERRALS"
783
  msgstr "REFERÊNCIAS"
784
 
785
+ #: .././admin/widgets.php:361
786
  msgid "KEYWORDS"
787
  msgstr "PALAVRAS-CHAVE"
788
 
789
+ #: .././front/widgets.php:21
 
 
 
 
 
 
 
 
790
  msgid "Will display your google analytics stats in a widget"
791
  msgstr "Exibirá suas estatísticas google analytics em um Widget"
792
 
793
+ #: .././front/widgets.php:36 .././tools/gapi.php:695
794
  msgid "trend"
795
  msgstr "Tendência"
796
 
797
+ #: .././front/widgets.php:123
798
  msgid "Period:"
799
  msgstr "período:"
800
 
801
+ #: .././front/widgets.php:123
802
  msgid "Sessions:"
803
  msgstr "Sessões:"
804
 
805
+ #: .././front/widgets.php:127
806
  msgid "generated by"
807
  msgstr "gerado por"
808
 
809
+ #: .././front/widgets.php:136
810
  msgid "Google Analytics Stats"
811
  msgstr "Estatísticas do Google Analytics"
812
 
813
+ #: .././front/widgets.php:144
814
  msgid "Title:"
815
  msgstr "Título:"
816
 
817
+ #: .././front/widgets.php:147
818
  msgid "Display:"
819
  msgstr "Exibir:"
820
 
821
+ #: .././front/widgets.php:148
822
  msgid "Chart & Totals"
823
  msgstr "Gráfico e Totais"
824
 
825
+ #: .././front/widgets.php:149
826
  msgid "Chart"
827
  msgstr "Gráfico"
828
 
829
+ #: .././front/widgets.php:150
830
  msgid "Totals"
831
  msgstr "Totais"
832
 
833
+ #: .././front/widgets.php:154
834
  msgid "Anonymize stats:"
835
  msgstr "Anonimizar estatísticas:"
836
 
837
+ #: .././front/widgets.php:157
838
  msgid "Stats for:"
839
  msgstr "Estatísticas para:"
840
 
841
+ #: .././front/widgets.php:164
842
  msgid "Give credits:"
843
  msgstr "Créditos para:"
844
 
845
+ #: .././gadwp.php:46 .././gadwp.php:54 .././gadwp.php:61
846
  msgid "This is not allowed, read the documentation!"
847
  msgstr "Isso não é permitido, leia a documentação!"
848
 
849
+ #: .././tools/gapi.php:128
850
  msgid "Use this link to get your access code:"
851
  msgstr "Use este link para obter o seu código de acesso:"
852
 
853
+ #: .././tools/gapi.php:128
854
  msgid "Get Access Code"
855
  msgstr "Obter Código de Acesso"
856
 
857
+ #: .././tools/gapi.php:132 .././tools/gapi.php:133
858
  msgid "Use the red link to get your access code!"
859
  msgstr "Use o link vermelho para pegar seu código de acesso!"
860
 
861
+ #: .././tools/gapi.php:132
862
  msgid "Access Code:"
863
  msgstr "Código de acesso:"
864
 
865
+ #: .././tools/gapi.php:139
866
  msgid "Save Access Code"
867
  msgstr "Salvar Código de Acesso"
868
 
869
+ #: .././tools/gapi.php:367
870
  msgid "Organic Searches"
871
  msgstr "Pesquisas Ôrganicas"
872
 
873
+ #: .././tools/gapi.php:370
874
  msgid "Unique Page Views"
875
  msgstr "Visualização única de página"
876
 
877
+ #: .././tools/gapi.php:378
878
  msgid "Hour"
879
  msgstr "Hora"
880
 
881
+ #: .././tools/gapi.php:382 .././tools/gapi.php:385 .././tools/gapi.php:695
882
  msgid "Date"
883
  msgstr "Dia"
884
 
885
+ #: .././tools/gapi.php:471
886
  msgid "Views"
887
  msgstr "Visualizações"
888
 
889
+ #: .././tools/gapi.php:557
890
  msgid "Countries"
891
  msgstr "Países"
892
 
893
+ #: .././tools/gapi.php:567
894
  msgid "Cities from"
895
  msgstr "das Cidades"
896
 
897
+ #: .././tools/gapi.php:620
898
  msgid "Channels"
899
  msgstr "Canal"
900
 
901
+ #: .././tools/gapi.php:666
902
  msgid "Type"
903
  msgstr "Tipo"
904
 
905
+ #~ msgid "Last 7 Days"
906
+ #~ msgstr "Últimos 7 dias"
907
+
908
+ #~ msgid "Last 30 Days"
909
+ #~ msgstr "Últimos 30 dias"
910
+
911
+ #~ msgid "Last 90 Days"
912
+ #~ msgstr "Últimos 90 dias"
913
+
914
+ #~ msgid "Last 14 Days"
915
+ #~ msgstr "Últimos 14 dias"
916
+
917
+ #~ msgid "show page sessions and users in frontend (after each article)"
918
+ #~ msgstr "mostrar sessões de página e usuários no Site (após cada artigo)"
919
+
920
+ #~ msgid "show page searches (after each article)"
921
+ #~ msgstr "Mostram pesquisas da página (após cada artigo)"
922
+
923
+ #~ msgid "Support & Reviews"
924
+ #~ msgstr "Suporte e Revisões"
925
+
926
+ #~ msgid "Plugin documentation and support on %s"
927
+ #~ msgstr "Documentação e Suporte do Plugin em %s"
928
+
929
+ #~ msgid "Views vs UniqueViews"
930
+ #~ msgstr "Visualizações x Visualização única"
931
+
932
+ #~ msgid "Google Analytics Reports"
933
+ #~ msgstr "Relatórios do Google Analytics"
934
+
935
+ #~ msgid "UniqueViews"
936
+ #~ msgstr "Visualização Única "
937
 
938
  #~ msgid "Read %s for more information about Frontend Features and Options."
939
  #~ msgstr ""
languages/ga-dash-ro_RO.mo CHANGED
Binary file
languages/ga-dash-ro_RO.po CHANGED
@@ -3,126 +3,119 @@ msgstr ""
3
  "Project-Id-Version: Google Analytics Dashboard for WP\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-"
5
  "dashboard-for-wp\n"
6
- "POT-Creation-Date: 2015-05-21 19:47+0200\n"
7
- "PO-Revision-Date: 2015-05-21 19:47+0200\n"
8
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
9
  "Language-Team: Nicolae Sfetcu\n"
10
  "Language: ro\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
- "Plural-Forms: nplurals=3; plural=(n==1 ? 0 :(((n%100>19)||(( n%100==0)&&(n!"
15
- "=0)))? 2 : 1));\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
- "X-Generator: Poedit 1.8\n"
18
- "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
19
- "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
20
- "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
21
- "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
22
- "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
23
  "X-Poedit-Basepath: .\n"
24
  "X-Loco-Target-Locale: ro_RO\n"
25
  "X-Poedit-SearchPath-0: ../.\n"
26
 
27
- #: .././admin/item-reports.php:52
28
  msgid "Analytics"
29
  msgstr "Analytics"
30
 
31
- #: .././admin/settings.php:94 .././admin/settings.php:197
32
- #: .././admin/settings.php:328 .././admin/settings.php:803
33
- #: .././admin/settings.php:1079
34
  msgid "Settings saved."
35
  msgstr "Setări salvate."
36
 
37
- #: .././admin/settings.php:96 .././admin/settings.php:199
38
- #: .././admin/settings.php:330 .././admin/settings.php:780
39
- #: .././admin/settings.php:790 .././admin/settings.php:799
40
- #: .././admin/settings.php:805 .././admin/settings.php:817
41
- #: .././admin/settings.php:1040 .././admin/settings.php:1065
42
- #: .././admin/settings.php:1075 .././admin/settings.php:1081
43
- #: .././admin/settings.php:1093
44
  msgid "Cheating Huh?"
45
  msgstr "Hei, trișezi?"
46
 
47
- #: .././admin/settings.php:100 .././admin/settings.php:203
48
- #: .././admin/settings.php:334 .././admin/settings.php:647
49
- #: .././admin/settings.php:832 .././admin/settings.php:1107
50
  #, php-format
51
  msgid "Something went wrong, check %1$s or %2$s."
52
  msgstr "Ceva nu e în regulă, verifică %1$s sau %2$s"
53
 
54
- #: .././admin/settings.php:100 .././admin/settings.php:203
55
- #: .././admin/settings.php:334 .././admin/settings.php:647
56
- #: .././admin/settings.php:832 .././admin/settings.php:1107
57
- #: .././admin/setup.php:82 .././admin/setup.php:101
58
  msgid "Errors & Debug"
59
  msgstr "Erori și depanare"
60
 
61
- #: .././admin/settings.php:100 .././admin/settings.php:203
62
- #: .././admin/settings.php:334 .././admin/settings.php:647
63
- #: .././admin/settings.php:832 .././admin/settings.php:1107
64
  msgid "authorize the plugin"
65
  msgstr "autorizează modulul"
66
 
67
- #: .././admin/settings.php:105
68
  msgid "Google Analytics Frontend Settings"
69
  msgstr "Setările pentru fața Google Analytics"
70
 
71
- #: .././admin/settings.php:115 .././admin/settings.php:218
72
  msgid "Permissions"
73
  msgstr "Permisiuni"
74
 
75
- #: .././admin/settings.php:118 .././admin/settings.php:221
76
  msgid "Show stats to:"
77
  msgstr "Arată statistici la:"
78
 
79
- #: .././admin/settings.php:157
80
- msgid "show page sessions and users in frontend (after each article)"
81
- msgstr "arată sesiunile paginii și utilizatorii în față (după fiecare articol)"
82
 
83
- #: .././admin/settings.php:168
84
- msgid "show page searches (after each article)"
85
- msgstr "arată căutările paginii (după fiecare articol)"
86
-
87
- #: .././admin/settings.php:175 .././admin/settings.php:308
88
- #: .././admin/settings.php:605 .././admin/settings.php:952
89
- #: .././admin/settings.php:1245
90
  msgid "Save Changes"
91
  msgstr "Salvează modificările"
92
 
93
- #: .././admin/settings.php:208
94
  msgid "Google Analytics Backend Settings"
95
  msgstr "Setările din spate pentru Google Analytics"
96
 
97
- #: .././admin/settings.php:262
98
  msgid "enable Switch View functionality"
99
  msgstr "activează funcționalitatea de Comutare a afișării"
100
 
101
- #: .././admin/settings.php:273
102
  msgid "enable reports on Posts List and Pages List"
103
  msgstr "activează rapoartele în Listă articole și în Listă pagini"
104
 
105
- #: .././admin/settings.php:284
106
  msgid "enable the main Dashboard Widget"
107
  msgstr "activează piesa principală din Panoul de control"
108
 
109
- #: .././admin/settings.php:288
110
  msgid "Real-Time Settings"
111
  msgstr "Setări de timp-real"
112
 
113
- #: .././admin/settings.php:291
114
  msgid "Maximum number of pages to display on real-time tab:"
115
  msgstr "Numărul maxim de pagini afișate pe fila de timp-real:"
116
 
117
- #: .././admin/settings.php:296
118
  msgid "Location Settings"
119
  msgstr "Setări locație"
120
 
121
- #: .././admin/settings.php:300
122
  msgid "Target Geo Map to country:"
123
  msgstr "Centrează Geo Map pe țara:"
124
 
125
- #: .././admin/settings.php:337
126
  msgid ""
127
  "The tracking component is disabled. You should set <strong>Tracking Options</"
128
  "strong> to <strong>Enabled</strong>"
@@ -130,186 +123,186 @@ msgstr ""
130
  "Componenta de urmărire este dezactivată. Trebuie să setezi <strong>Activat</"
131
  "strong> la <strong>Opțiunile de urmărire</strong>"
132
 
133
- #: .././admin/settings.php:342
134
  msgid "Google Analytics Tracking Code"
135
  msgstr "Cod de urmărire Google Analytics"
136
 
137
- #: .././admin/settings.php:351
138
  msgid "Basic Settings"
139
  msgstr "Setări de bază"
140
 
141
- #: .././admin/settings.php:352 .././admin/settings.php:417
142
  msgid "Events Tracking"
143
  msgstr "Urmărire evenimente"
144
 
145
- #: .././admin/settings.php:353 .././admin/settings.php:465
146
  msgid "Custom Definitions"
147
  msgstr "Definiții personalizate"
148
 
149
- #: .././admin/settings.php:354 .././admin/settings.php:563
150
- #: .././admin/settings.php:1228
151
  msgid "Exclude Tracking"
152
  msgstr "Exclude urmărirea"
153
 
154
- #: .././admin/settings.php:355
155
  msgid "Advanced Settings"
156
  msgstr "Setări avansate"
157
 
158
- #: .././admin/settings.php:362
159
  msgid "Tracking Settings"
160
  msgstr "Setări urmărire"
161
 
162
- #: .././admin/settings.php:365
163
  msgid "Tracking Options:"
164
  msgstr "Opțiuni urmărire:"
165
 
166
- #: .././admin/settings.php:367
167
  msgid "Disabled"
168
  msgstr "Dezactivat"
169
 
170
- #: .././admin/settings.php:368
171
  msgid "Enabled"
172
  msgstr "Activat"
173
 
174
- #: .././admin/settings.php:376 .././admin/settings.php:897
175
- #: .././admin/settings.php:919 .././admin/settings.php:1201
176
- #: .././admin/widgets.php:71
177
  msgid "View Name:"
178
  msgstr "Nume afișare:"
179
 
180
- #: .././admin/settings.php:376 .././admin/settings.php:919
181
  msgid "Tracking ID:"
182
  msgstr "ID urmărire:"
183
 
184
- #: .././admin/settings.php:376 .././admin/settings.php:919
185
  msgid "Default URL:"
186
  msgstr "URL implicit:"
187
 
188
- #: .././admin/settings.php:376 .././admin/settings.php:919
189
  msgid "Time Zone:"
190
  msgstr "Fus orar:"
191
 
192
- #: .././admin/settings.php:381
193
  msgid "Basic Tracking"
194
  msgstr "Urmărire de bază"
195
 
196
- #: .././admin/settings.php:384
197
  msgid "Tracking Type:"
198
  msgstr "Tip urmărire:"
199
 
200
- #: .././admin/settings.php:386
201
  msgid "Classic Analytics"
202
  msgstr "Analytics clasic"
203
 
204
- #: .././admin/settings.php:387
205
  msgid "Universal Analytics"
206
  msgstr "Analytics universal"
207
 
208
- #: .././admin/settings.php:398
209
  msgid "anonymize IPs while tracking"
210
  msgstr "anonimizează IP-urile pe perioada urmăririi"
211
 
212
- #: .././admin/settings.php:409
213
  msgid "enable remarketing, demographics and interests reports"
214
  msgstr "activează rapoartele de re-marketing, demografice și de interese"
215
 
216
- #: .././admin/settings.php:427
217
  msgid "track downloads, mailto and outbound links"
218
  msgstr "urmărire descărcări și legături de email sau în afară"
219
 
220
- #: .././admin/settings.php:431
221
  msgid "Downloads Regex:"
222
  msgstr "Regex descărcări:"
223
 
224
- #: .././admin/settings.php:442
225
  msgid "track affiliate links matching this regex"
226
  msgstr "urmărire legături afiliate potrivit acestei regex"
227
 
228
- #: .././admin/settings.php:446
229
  msgid "Affiliates Regex:"
230
  msgstr "Regex afiliați:"
231
 
232
- #: .././admin/settings.php:457
233
  msgid "track fragment identifiers, hashmarks (#) in URI links"
234
  msgstr "urmărire identificatori de fragmente, marcaje-diez (#) în legături URI"
235
 
236
- #: .././admin/settings.php:468
237
  msgid "Authors:"
238
  msgstr "Autori:"
239
 
240
- #: .././admin/settings.php:476
241
  msgid "Publication Year:"
242
  msgstr "An publicare:"
243
 
244
- #: .././admin/settings.php:484
245
  msgid "Categories:"
246
  msgstr "Categorii:"
247
 
248
- #: .././admin/settings.php:492
249
  msgid "User Type:"
250
  msgstr "Tip utilizator:"
251
 
252
- #: .././admin/settings.php:504
253
  msgid "Advanced Tracking"
254
  msgstr "Urmărire avansată"
255
 
256
- #: .././admin/settings.php:507
257
  msgid "Page Speed SR:"
258
  msgstr "SR viteză pagină:"
259
 
260
- #: .././admin/settings.php:518
261
  msgid "exclude events from bounce-rate calculation"
262
  msgstr "exclude evenimente din calculul ratei de respingere"
263
 
264
- #: .././admin/settings.php:529
265
  msgid "enable enhanced link attribution"
266
  msgstr "activează atribuirea îmbunătățită a legăturilor"
267
 
268
- #: .././admin/settings.php:540
269
  msgid "enable AdSense account linking"
270
  msgstr "activează legătura cu contul AdSense"
271
 
272
- #: .././admin/settings.php:551
273
  msgid "enable cross domain tracking"
274
  msgstr "activează urmărire domenii încrucișate"
275
 
276
- #: .././admin/settings.php:555
277
  msgid "Cross Domains:"
278
  msgstr "Domenii încrucișate:"
279
 
280
- #: .././admin/settings.php:566
281
  msgid "Exclude tracking for:"
282
  msgstr "Exclude urmărirea pentru:"
283
 
284
- #: .././admin/settings.php:651
285
  msgid "Google Analytics Errors & Debugging"
286
  msgstr "Erori și depanare Google Analytics"
287
 
288
- #: .././admin/settings.php:661
289
  msgid "Errors & Details"
290
  msgstr "Erori și detalii"
291
 
292
- #: .././admin/settings.php:662
293
  msgid "Plugin Settings"
294
  msgstr "Setări modul"
295
 
296
- #: .././admin/settings.php:670
297
  msgid "Last Error detected"
298
  msgstr "Ultima eroare detectată"
299
 
300
- #: .././admin/settings.php:676 .././admin/settings.php:689
301
  msgid "None"
302
  msgstr "Niciunul"
303
 
304
- #: .././admin/settings.php:683
305
  msgid "Error Details"
306
  msgstr "Detalii eroare"
307
 
308
- #: .././admin/settings.php:703
309
  msgid "Plugin Configuration"
310
  msgstr "Configurare modul"
311
 
312
- #: .././admin/settings.php:725 .././admin/settings.php:990
313
  msgid ""
314
  "Loading the required libraries. If this results in a blank screen or a fatal "
315
  "error, try this solution:"
@@ -317,15 +310,15 @@ msgstr ""
317
  "Încărcare biblioteci necesare. Dacă apare un ecran alb sau o eroare fatală, "
318
  "încearcă această soluție:"
319
 
320
- #: .././admin/settings.php:725
321
  msgid "Library conflicts between WordPress plugins"
322
  msgstr "Conflicte de bibliotecă între module WordPress"
323
 
324
- #: .././admin/settings.php:740 .././admin/settings.php:1007
325
  msgid "Plugin authorization succeeded."
326
  msgstr "Autorizarea modulului a reușit."
327
 
328
- #: .././admin/settings.php:755 .././admin/settings.php:1031
329
  msgid ""
330
  "The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
331
  "(UA-XXXXX-X). Try again, and use the red link to get your access code"
@@ -334,37 +327,37 @@ msgstr ""
334
  "strong> (UA-XXXXX-X). Încearcă din nou, și folosește legătura cu roșu pentru "
335
  "a obține codul tău de acces"
336
 
337
- #: .././admin/settings.php:778 .././admin/settings.php:1063
338
  msgid "Cleared Cache."
339
  msgstr "Cache golit."
340
 
341
- #: .././admin/settings.php:787 .././admin/settings.php:1072
342
  msgid "Token Reseted and Revoked."
343
  msgstr "Jeton resetat și revocat."
344
 
345
- #: .././admin/settings.php:797
346
  msgid "All errors reseted."
347
  msgstr "Toate erorile resetate."
348
 
349
- #: .././admin/settings.php:810 .././admin/settings.php:1086
350
  msgid "All other domains/properties were removed."
351
  msgstr "Toate celelalte domenii/proprietăți au fost înlăturate."
352
 
353
- #: .././admin/settings.php:822 .././admin/settings.php:1098
354
  msgid "Google Analytics Settings"
355
  msgstr "Setări Google Analytics"
356
 
357
- #: .././admin/settings.php:837 .././admin/settings.php:1112
358
  msgid "Use the red link (see below) to generate and get your access code!"
359
  msgstr ""
360
  "Folosește legătura cu roșu (vezi mai jos) pentru a genera și obține codul "
361
  "tău de acces!"
362
 
363
- #: .././admin/settings.php:848 .././admin/settings.php:1140
364
  msgid "Plugin Authorization"
365
  msgstr "Autorizare modul"
366
 
367
- #: .././admin/settings.php:853 .././admin/settings.php:1144
368
  #, php-format
369
  msgid ""
370
  "You should watch the %1$s and read this %2$s before proceeding to "
@@ -374,114 +367,109 @@ msgstr ""
374
  "Trebuie să te uiți la %1$s și să citești acest %2$s înainte de a continua cu "
375
  "autorizarea. Acest modul necesită un cont Google Analytics configurat corect!"
376
 
377
- #: .././admin/settings.php:853 .././admin/settings.php:1144
378
  msgid "video"
379
  msgstr "video"
380
 
381
- #: .././admin/settings.php:853 .././admin/settings.php:1144
382
  msgid "tutorial"
383
  msgstr "tutorial"
384
 
385
- #: .././admin/settings.php:858 .././admin/settings.php:1151
386
  msgid "use your own API Project credentials"
387
  msgstr "folosește-ți propriile credențiale de proiect API"
388
 
389
- #: .././admin/settings.php:863 .././admin/settings.php:1159
390
  msgid "API Key:"
391
  msgstr "Cheie API:"
392
 
393
- #: .././admin/settings.php:867 .././admin/settings.php:1163
394
  msgid "Client ID:"
395
  msgstr "ID client:"
396
 
397
- #: .././admin/settings.php:871 .././admin/settings.php:1167
398
  msgid "Client Secret:"
399
  msgstr "Secret client:"
400
 
401
- #: .././admin/settings.php:881 .././admin/settings.php:1177
402
  msgid "Clear Authorization"
403
  msgstr "Șterge autorizarea"
404
 
405
- #: .././admin/settings.php:881 .././admin/settings.php:959
406
- #: .././admin/settings.php:1177 .././admin/settings.php:1254
407
  msgid "Clear Cache"
408
  msgstr "Golește cache"
409
 
410
- #: .././admin/settings.php:881
411
  msgid "Reset Errors"
412
  msgstr "Resetează erori"
413
 
414
- #: .././admin/settings.php:887 .././admin/setup.php:70 .././admin/setup.php:98
415
  msgid "General Settings"
416
  msgstr "Setări generale"
417
 
418
- #: .././admin/settings.php:890
419
  msgid "Select View:"
420
  msgstr "Selectare afișare:"
421
 
422
- #: .././admin/settings.php:901 .././admin/settings.php:1205
423
  msgid "Property not found"
424
  msgstr "Proprietate negăsită"
425
 
426
- #: .././admin/settings.php:907
427
  msgid "Lock Selection"
428
  msgstr "Blocare selecție"
429
 
430
- #: .././admin/settings.php:926
431
  msgid "Theme Color:"
432
  msgstr "Culoare temă:"
433
 
434
- #: .././admin/settings.php:934 .././admin/settings.php:1214
435
  msgid "Automatic Updates"
436
  msgstr "Actualizări automate"
437
 
438
- #: .././admin/settings.php:944 .././admin/settings.php:1224
439
  msgid ""
440
  "automatic updates for minor versions (security and maintenance releases only)"
441
  msgstr ""
442
  "actualizări automate pentru versiuni minore (doar securitate și întreținere)"
443
 
444
- #: .././admin/settings.php:959 .././admin/settings.php:1254
445
- #: .././admin/widgets.php:42
446
  msgid "Authorize Plugin"
447
  msgstr "Autorizează modul"
448
 
449
- #: .././admin/settings.php:1037
450
  msgid "Properties refreshed."
451
  msgstr "Proprietăți actualizate."
452
 
453
- #: .././admin/settings.php:1122
454
  msgid "Network Setup"
455
  msgstr "Configurarea rețelei"
456
 
457
- #: .././admin/settings.php:1132
458
  msgid "use a single Google Analytics account for the entire network"
459
  msgstr "folosește un singur cont Google Analytics pentru întreaga rețea"
460
 
461
- #: .././admin/settings.php:1177
462
  msgid "Refresh Properties"
463
  msgstr "Actualizează proprietățile"
464
 
465
- #: .././admin/settings.php:1183
466
  msgid "Properties/Views Settings"
467
  msgstr "Setări proprietăți/afișări"
468
 
469
- #: .././admin/settings.php:1238
470
  msgid "exclude Super Admin tracking for the entire network"
471
  msgstr "exclude urmărirea Super Admin pentru întreaga rețea"
472
 
473
- #: .././admin/settings.php:1285
474
  msgid "Setup Tutorial & Demo"
475
  msgstr "Tutorial și demo configurare"
476
 
477
- #: .././admin/settings.php:1293
478
- msgid "Support & Reviews"
479
- msgstr "Suport și recenzii"
480
-
481
- #: .././admin/settings.php:1300
482
- #, php-format
483
- msgid "Plugin documentation and support on %s"
484
- msgstr "Documentație și suport modul pe %s"
485
 
486
  #: .././admin/settings.php:1307
487
  #, php-format
@@ -536,176 +524,214 @@ msgstr "%s serviciu de urmărire a utilizatorilor la nivel IP."
536
  msgid "Web Analytics"
537
  msgstr "Analitice web"
538
 
539
- #: .././admin/setup.php:67 .././admin/setup.php:95
540
  msgid "Google Analytics"
541
  msgstr "Google Analytics"
542
 
543
- #: .././admin/setup.php:73
544
  msgid "Backend Settings"
545
  msgstr "Setări în spate"
546
 
547
- #: .././admin/setup.php:76
548
  msgid "Frontend Settings"
549
  msgstr "Setări în față"
550
 
551
- #: .././admin/setup.php:79
552
  msgid "Tracking Code"
553
  msgstr "Cod urmărire"
554
 
555
- #: .././admin/setup.php:169 .././admin/widgets.php:126
556
  msgid "Today"
557
  msgstr "Azi"
558
 
559
- #: .././admin/setup.php:170 .././admin/widgets.php:127
560
  msgid "Yesterday"
561
  msgstr "Ieri"
562
 
563
- #: .././admin/setup.php:171 .././admin/widgets.php:128
564
- #: .././front/widgets.php:74 .././front/widgets.php:182
565
- msgid "Last 7 Days"
566
- msgstr "Ultimele 7 zile"
567
-
568
- #: .././admin/setup.php:172 .././admin/widgets.php:130
569
- #: .././front/widgets.php:80 .././front/widgets.php:184
570
- msgid "Last 30 Days"
571
- msgstr "Ultimele 30 zile"
572
-
573
- #: .././admin/setup.php:173 .././admin/widgets.php:131
574
- msgid "Last 90 Days"
575
- msgstr "Ultimele 90 zile"
576
 
577
- #: .././admin/setup.php:175 .././admin/setup.php:190
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
578
  msgid "Unique Views"
579
  msgstr "Afișări unice"
580
 
581
- #: .././admin/setup.php:176 .././admin/setup.php:191
582
- #: .././admin/widgets.php:136 .././admin/widgets.php:875
583
- #: .././tools/gapi.php:391
584
  msgid "Users"
585
  msgstr "Utilizatori"
586
 
587
- #: .././admin/setup.php:177 .././admin/widgets.php:137
588
  msgid "Organic"
589
  msgstr "Organic"
590
 
591
- #: .././admin/setup.php:178 .././admin/setup.php:192
592
- #: .././admin/widgets.php:138 .././admin/widgets.php:879
593
- #: .././tools/gapi.php:394
594
  msgid "Page Views"
595
  msgstr "Afișări pagină"
596
 
597
- #: .././admin/setup.php:179 .././admin/setup.php:193
598
- #: .././admin/widgets.php:139 .././admin/widgets.php:883
599
- #: .././tools/gapi.php:397
600
  msgid "Bounce Rate"
601
  msgstr "Rata de respingere"
602
 
603
- #: .././admin/setup.php:180 .././admin/widgets.php:140
604
  msgid "Location"
605
  msgstr "Locație"
606
 
607
- #: .././admin/setup.php:181 .././admin/widgets.php:142 .././tools/gapi.php:566
 
608
  msgid "Referrers"
609
  msgstr "Referenți"
610
 
611
- #: .././admin/setup.php:182 .././admin/widgets.php:143 .././tools/gapi.php:612
612
- #: .././tools/gapi.php:918
613
  msgid "Searches"
614
  msgstr "Căutări"
615
 
616
- #: .././admin/setup.php:183 .././admin/widgets.php:144
617
  msgid "Traffic Details"
618
  msgstr "Detalii trafic"
619
 
620
- #: .././admin/setup.php:185 .././admin/widgets.php:510
621
- #: .././admin/widgets.php:607 .././admin/widgets.php:805
622
- #: .././admin/widgets.php:917 .././front/item-reports.php:97
623
  msgid "A JavaScript Error is blocking plugin resources!"
624
  msgstr "O eroare JavaScript blochează resursele modulului!"
625
 
626
- #: .././admin/setup.php:186 .././admin/widgets.php:713
627
  msgid "Traffic Mediums"
628
  msgstr "Medii trafic"
629
 
630
- #: .././admin/setup.php:187 .././admin/widgets.php:729
631
  msgid "Visitor Type"
632
  msgstr "Tip vizitator"
633
 
634
- #: .././admin/setup.php:188 .././admin/widgets.php:745
635
  msgid "Social Networks"
636
  msgstr "Rețele sociale"
637
 
638
- #: .././admin/setup.php:189 .././admin/widgets.php:761
639
  msgid "Search Engines"
640
  msgstr "Motoare de căutare"
641
 
642
- #: .././admin/setup.php:194 .././admin/widgets.php:887
 
643
  msgid "Organic Search"
644
  msgstr "Căutare organică"
645
 
646
- #: .././admin/setup.php:195 .././admin/widgets.php:891
 
647
  msgid "Pages/Session"
648
  msgstr "Pagini/Sesiune"
649
 
650
- #: .././admin/setup.php:196 .././admin/widgets.php:523
651
- #: .././admin/widgets.php:541 .././admin/widgets.php:620
652
- #: .././admin/widgets.php:638 .././admin/widgets.php:657
653
- #: .././admin/widgets.php:676 .././admin/widgets.php:696
654
- #: .././admin/widgets.php:819 .././admin/widgets.php:930
655
- #: .././admin/widgets.php:949 .././front/item-reports.php:109
656
- #: .././front/item-reports.php:128
 
657
  msgid "Invalid response, more details in JavaScript Console (F12)."
658
  msgstr "Răspuns invalid, mai multe detalii în consola JavaScript (F12)."
659
 
660
- #: .././admin/setup.php:197
661
  msgid "Not enough data collected"
662
  msgstr "Insuficiente date colectate"
663
 
664
- #: .././admin/setup.php:198 .././admin/widgets.php:528
665
- #: .././admin/widgets.php:546 .././admin/widgets.php:625
666
- #: .././admin/widgets.php:643 .././admin/widgets.php:662
667
- #: .././admin/widgets.php:681 .././admin/widgets.php:701
668
- #: .././admin/widgets.php:824 .././admin/widgets.php:827
669
- #: .././admin/widgets.php:935 .././admin/widgets.php:954
670
- #: .././front/item-reports.php:114 .././front/item-reports.php:133
671
- #: .././front/widgets.php:110
672
  msgid "This report is unavailable"
673
  msgstr "Acest raport nu este disponibil"
674
 
675
- #: .././admin/setup.php:199
676
  msgid "report generated by"
677
  msgstr "raport generat de"
678
 
679
- #: .././admin/setup.php:233
680
  msgid "Settings"
681
  msgstr "Setări"
682
 
683
- #: .././admin/widgets.php:33 .././front/widgets.php:22
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
684
  msgid "Google Analytics Dashboard"
685
  msgstr "Panou control Google Analytics"
686
 
687
- #: .././admin/widgets.php:42
688
  msgid "This plugin needs an authorization:"
689
  msgstr "Acest modul are nevoie de o autorizare:"
690
 
691
- #: .././admin/widgets.php:76
692
  msgid "Something went wrong while retrieving profiles list."
693
  msgstr "Ceva nu a mers bine în timpul recuperării listei cu profile."
694
 
695
- #: .././admin/widgets.php:76
696
  msgid "More details"
697
  msgstr "Mai multe detalii"
698
 
699
- #: .././admin/widgets.php:89 .././admin/widgets.php:100
700
  msgid "An admin should asign a default Google Analytics Profile."
701
  msgstr ""
702
  "Un administrator trebuie să atribuie un profil Google Analytics implicit."
703
 
704
- #: .././admin/widgets.php:89 .././admin/widgets.php:100
705
  msgid "Select Domain"
706
  msgstr "Selectează domeniu"
707
 
708
- #: .././admin/widgets.php:105
709
  msgid ""
710
  "Something went wrong while retrieving property data. You need to create and "
711
  "properly configure a Google Analytics account:"
@@ -713,192 +739,224 @@ msgstr ""
713
  "Ceva nu a mers bine în timpul recuperării datelor proprietății. Trebuie să "
714
  "creezi și să configurezi corect un cont Google Analytics:"
715
 
716
- #: .././admin/widgets.php:105
717
  msgid "Find out more!"
718
  msgstr "Află mai multe!"
719
 
720
- #: .././admin/widgets.php:125
721
  msgid "Real-Time"
722
  msgstr "Timp-real"
723
 
724
- #: .././admin/widgets.php:129 .././front/widgets.php:77
725
- #: .././front/widgets.php:183
726
- msgid "Last 14 Days"
727
- msgstr "Ultimele 14 zile"
728
-
729
- #: .././admin/widgets.php:135 .././admin/widgets.php:871
730
- #: .././front/widgets.php:46 .././tools/gapi.php:406 .././tools/gapi.php:567
731
- #: .././tools/gapi.php:613 .././tools/gapi.php:676 .././tools/gapi.php:786
732
- #: .././tools/gapi.php:827 .././tools/gapi.php:919
733
  msgid "Sessions"
734
  msgstr "Sesiuni"
735
 
736
- #: .././admin/widgets.php:141 .././tools/gapi.php:521
737
  msgid "Pages"
738
  msgstr "Pagini"
739
 
740
- #: .././admin/widgets.php:232 .././admin/widgets.php:472
741
  msgid "REFERRAL"
742
  msgstr "REFERIRE"
743
 
744
- #: .././admin/widgets.php:236 .././admin/widgets.php:473
745
  msgid "ORGANIC"
746
  msgstr "ORGANIC"
747
 
748
- #: .././admin/widgets.php:240 .././admin/widgets.php:360
749
- #: .././admin/widgets.php:474
750
  msgid "SOCIAL"
751
  msgstr "SOCIAL"
752
 
753
- #: .././admin/widgets.php:244 .././admin/widgets.php:363
754
- #: .././admin/widgets.php:475
755
  msgid "CAMPAIGN"
756
  msgstr "CAMPANIE"
757
 
758
- #: .././admin/widgets.php:248 .././admin/widgets.php:366
759
- #: .././admin/widgets.php:478
760
  msgid "DIRECT"
761
  msgstr "DIRECT"
762
 
763
- #: .././admin/widgets.php:252 .././admin/widgets.php:479
764
  msgid "NEW"
765
  msgstr "NOU"
766
 
767
- #: .././admin/widgets.php:354
768
  msgid "REFERRALS"
769
  msgstr "REFERIRI"
770
 
771
- #: .././admin/widgets.php:357
772
  msgid "KEYWORDS"
773
  msgstr "CUVINTE"
774
 
775
- #: .././front/item-reports.php:143
776
- msgid "Views vs UniqueViews"
777
- msgstr "Afișări vs Afișări unice"
778
-
779
- #: .././front/item-reports.php:193
780
- msgid "Google Analytics Reports"
781
- msgstr "Rapoarte Google Analytics"
782
-
783
- #: .././front/widgets.php:23
784
  msgid "Will display your google analytics stats in a widget"
785
  msgstr "Va afișa statisticile tale Google Analytics într-o piesă"
786
 
787
- #: .././front/widgets.php:46 .././tools/gapi.php:827
788
  msgid "trend"
789
  msgstr "tendință"
790
 
791
- #: .././front/widgets.php:133
792
  msgid "Period:"
793
  msgstr "Perioada:"
794
 
795
- #: .././front/widgets.php:133
796
  msgid "Sessions:"
797
  msgstr "Sesiuni"
798
 
799
- #: .././front/widgets.php:137
800
  msgid "generated by"
801
  msgstr "generate de"
802
 
803
- #: .././front/widgets.php:147
804
  msgid "Google Analytics Stats"
805
  msgstr "Statistici Google Analytics"
806
 
807
- #: .././front/widgets.php:154
808
  msgid "Title:"
809
  msgstr "Titlu:"
810
 
811
- #: .././front/widgets.php:161
812
  msgid "Display:"
813
  msgstr "Afișare:"
814
 
815
- #: .././front/widgets.php:165
816
  msgid "Chart & Totals"
817
  msgstr "Grafic și total"
818
 
819
- #: .././front/widgets.php:166
820
  msgid "Chart"
821
  msgstr "Grafic"
822
 
823
- #: .././front/widgets.php:167
824
  msgid "Totals"
825
  msgstr "Totale"
826
 
827
- #: .././front/widgets.php:171
828
  msgid "Anonymize stats:"
829
  msgstr "Anonimizează statistici:"
830
 
831
- #: .././front/widgets.php:178
832
  msgid "Stats for:"
833
  msgstr "Statistici pentru:"
834
 
835
- #: .././front/widgets.php:188
836
  msgid "Give credits:"
837
  msgstr "Acordă credit:"
838
 
839
- #: .././gadwp.php:46 .././gadwp.php:55 .././gadwp.php:63
840
  msgid "This is not allowed, read the documentation!"
841
  msgstr "Nu este permis, citește documentația!"
842
 
843
- #: .././tools/gapi.php:134
844
  msgid "Use this link to get your access code:"
845
  msgstr "Folosește această legătură pentru a obține codul tău de acces:"
846
 
847
- #: .././tools/gapi.php:134
848
  msgid "Get Access Code"
849
  msgstr "Obține codul de acces"
850
 
851
- #: .././tools/gapi.php:138 .././tools/gapi.php:139
852
  msgid "Use the red link to get your access code!"
853
  msgstr "Folosește legătura cu roșu pentru a obține codul tău de acces!"
854
 
855
- #: .././tools/gapi.php:138
856
  msgid "Access Code:"
857
  msgstr "Cod de acces:"
858
 
859
- #: .././tools/gapi.php:145
860
  msgid "Save Access Code"
861
  msgstr "Salvează codul de acces"
862
 
863
- #: .././tools/gapi.php:400
864
  msgid "Organic Searches"
865
  msgstr "Căutări organice"
866
 
867
- #: .././tools/gapi.php:403
868
  msgid "Unique Page Views"
869
  msgstr "Afișări unice de pagină"
870
 
871
- #: .././tools/gapi.php:411
872
  msgid "Hour"
873
  msgstr "Oră"
874
 
875
- #: .././tools/gapi.php:414 .././tools/gapi.php:826 .././tools/gapi.php:876
876
  msgid "Date"
877
  msgstr "Dată"
878
 
879
- #: .././tools/gapi.php:522 .././tools/gapi.php:877
880
  msgid "Views"
881
  msgstr "Afișări"
882
 
883
- #: .././tools/gapi.php:640
884
  msgid "Countries"
885
  msgstr "Țări"
886
 
887
- #: .././tools/gapi.php:650
888
  msgid "Cities from"
889
  msgstr "Orașe din"
890
 
891
- #: .././tools/gapi.php:722
892
  msgid "Channels"
893
  msgstr "Canale"
894
 
895
- #: .././tools/gapi.php:785
896
  msgid "Type"
897
  msgstr "Tip"
898
 
899
- #: .././tools/gapi.php:878
900
- msgid "UniqueViews"
901
- msgstr "Afișări unice"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
902
 
903
  #~ msgid "Read %s for more information about Frontend Features and Options."
904
  #~ msgstr ""
3
  "Project-Id-Version: Google Analytics Dashboard for WP\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-"
5
  "dashboard-for-wp\n"
6
+ "POT-Creation-Date: 2015-07-05 16:02+0300\n"
7
+ "PO-Revision-Date: 2015-07-05 16:16+0300\n"
8
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
9
  "Language-Team: Nicolae Sfetcu\n"
10
  "Language: ro\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
+ "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?"
15
+ "2:1));\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
+ "X-Generator: Poedit 1.8.2\n"
18
+ "X-Poedit-KeywordsList: __;_e;_n;_x;_ex;_nx;esc_attr__;esc_attr_e;esc_attr_x;"
19
+ "esc_html__;esc_html_e;esc_html_x;_n_noop;_nx_noop\n"
 
 
 
20
  "X-Poedit-Basepath: .\n"
21
  "X-Loco-Target-Locale: ro_RO\n"
22
  "X-Poedit-SearchPath-0: ../.\n"
23
 
24
+ #: .././admin/item-reports.php:61 .././front/item-reports.php:29
25
  msgid "Analytics"
26
  msgstr "Analytics"
27
 
28
+ #: .././admin/settings.php:89 .././admin/settings.php:184
29
+ #: .././admin/settings.php:318 .././admin/settings.php:795
30
+ #: .././admin/settings.php:1068
31
  msgid "Settings saved."
32
  msgstr "Setări salvate."
33
 
34
+ #: .././admin/settings.php:91 .././admin/settings.php:186
35
+ #: .././admin/settings.php:320 .././admin/settings.php:772
36
+ #: .././admin/settings.php:782 .././admin/settings.php:791
37
+ #: .././admin/settings.php:797 .././admin/settings.php:808
38
+ #: .././admin/settings.php:1029 .././admin/settings.php:1054
39
+ #: .././admin/settings.php:1064 .././admin/settings.php:1070
40
+ #: .././admin/settings.php:1081
41
  msgid "Cheating Huh?"
42
  msgstr "Hei, trișezi?"
43
 
44
+ #: .././admin/settings.php:95 .././admin/settings.php:190
45
+ #: .././admin/settings.php:324 .././admin/settings.php:641
46
+ #: .././admin/settings.php:823 .././admin/settings.php:1095
47
  #, php-format
48
  msgid "Something went wrong, check %1$s or %2$s."
49
  msgstr "Ceva nu e în regulă, verifică %1$s sau %2$s"
50
 
51
+ #: .././admin/settings.php:95 .././admin/settings.php:190
52
+ #: .././admin/settings.php:324 .././admin/settings.php:641
53
+ #: .././admin/settings.php:823 .././admin/settings.php:1095
54
+ #: .././admin/setup.php:46 .././admin/setup.php:59
55
  msgid "Errors & Debug"
56
  msgstr "Erori și depanare"
57
 
58
+ #: .././admin/settings.php:95 .././admin/settings.php:190
59
+ #: .././admin/settings.php:324 .././admin/settings.php:641
60
+ #: .././admin/settings.php:823 .././admin/settings.php:1095
61
  msgid "authorize the plugin"
62
  msgstr "autorizează modulul"
63
 
64
+ #: .././admin/settings.php:100
65
  msgid "Google Analytics Frontend Settings"
66
  msgstr "Setările pentru fața Google Analytics"
67
 
68
+ #: .././admin/settings.php:110 .././admin/settings.php:205
69
  msgid "Permissions"
70
  msgstr "Permisiuni"
71
 
72
+ #: .././admin/settings.php:113 .././admin/settings.php:208
73
  msgid "Show stats to:"
74
  msgstr "Arată statistici la:"
75
 
76
+ #: .././admin/settings.php:154
77
+ msgid "enable web page reports on frontend"
78
+ msgstr "activează rapoarte pentru paginile din față"
79
 
80
+ #: .././admin/settings.php:161 .././admin/settings.php:297
81
+ #: .././admin/settings.php:598 .././admin/settings.php:943
82
+ #: .././admin/settings.php:1232
 
 
 
 
83
  msgid "Save Changes"
84
  msgstr "Salvează modificările"
85
 
86
+ #: .././admin/settings.php:195
87
  msgid "Google Analytics Backend Settings"
88
  msgstr "Setările din spate pentru Google Analytics"
89
 
90
+ #: .././admin/settings.php:251
91
  msgid "enable Switch View functionality"
92
  msgstr "activează funcționalitatea de Comutare a afișării"
93
 
94
+ #: .././admin/settings.php:262
95
  msgid "enable reports on Posts List and Pages List"
96
  msgstr "activează rapoartele în Listă articole și în Listă pagini"
97
 
98
+ #: .././admin/settings.php:273
99
  msgid "enable the main Dashboard Widget"
100
  msgstr "activează piesa principală din Panoul de control"
101
 
102
+ #: .././admin/settings.php:277
103
  msgid "Real-Time Settings"
104
  msgstr "Setări de timp-real"
105
 
106
+ #: .././admin/settings.php:280
107
  msgid "Maximum number of pages to display on real-time tab:"
108
  msgstr "Numărul maxim de pagini afișate pe fila de timp-real:"
109
 
110
+ #: .././admin/settings.php:285
111
  msgid "Location Settings"
112
  msgstr "Setări locație"
113
 
114
+ #: .././admin/settings.php:289
115
  msgid "Target Geo Map to country:"
116
  msgstr "Centrează Geo Map pe țara:"
117
 
118
+ #: .././admin/settings.php:327
119
  msgid ""
120
  "The tracking component is disabled. You should set <strong>Tracking Options</"
121
  "strong> to <strong>Enabled</strong>"
123
  "Componenta de urmărire este dezactivată. Trebuie să setezi <strong>Activat</"
124
  "strong> la <strong>Opțiunile de urmărire</strong>"
125
 
126
+ #: .././admin/settings.php:332
127
  msgid "Google Analytics Tracking Code"
128
  msgstr "Cod de urmărire Google Analytics"
129
 
130
+ #: .././admin/settings.php:341
131
  msgid "Basic Settings"
132
  msgstr "Setări de bază"
133
 
134
+ #: .././admin/settings.php:342 .././admin/settings.php:408
135
  msgid "Events Tracking"
136
  msgstr "Urmărire evenimente"
137
 
138
+ #: .././admin/settings.php:343 .././admin/settings.php:456
139
  msgid "Custom Definitions"
140
  msgstr "Definiții personalizate"
141
 
142
+ #: .././admin/settings.php:344 .././admin/settings.php:554
143
+ #: .././admin/settings.php:1215
144
  msgid "Exclude Tracking"
145
  msgstr "Exclude urmărirea"
146
 
147
+ #: .././admin/settings.php:345
148
  msgid "Advanced Settings"
149
  msgstr "Setări avansate"
150
 
151
+ #: .././admin/settings.php:353
152
  msgid "Tracking Settings"
153
  msgstr "Setări urmărire"
154
 
155
+ #: .././admin/settings.php:356
156
  msgid "Tracking Options:"
157
  msgstr "Opțiuni urmărire:"
158
 
159
+ #: .././admin/settings.php:358
160
  msgid "Disabled"
161
  msgstr "Dezactivat"
162
 
163
+ #: .././admin/settings.php:359
164
  msgid "Enabled"
165
  msgstr "Activat"
166
 
167
+ #: .././admin/settings.php:367 .././admin/settings.php:888
168
+ #: .././admin/settings.php:910 .././admin/settings.php:1188
169
+ #: .././admin/widgets.php:61
170
  msgid "View Name:"
171
  msgstr "Nume afișare:"
172
 
173
+ #: .././admin/settings.php:367 .././admin/settings.php:910
174
  msgid "Tracking ID:"
175
  msgstr "ID urmărire:"
176
 
177
+ #: .././admin/settings.php:367 .././admin/settings.php:910
178
  msgid "Default URL:"
179
  msgstr "URL implicit:"
180
 
181
+ #: .././admin/settings.php:367 .././admin/settings.php:910
182
  msgid "Time Zone:"
183
  msgstr "Fus orar:"
184
 
185
+ #: .././admin/settings.php:372
186
  msgid "Basic Tracking"
187
  msgstr "Urmărire de bază"
188
 
189
+ #: .././admin/settings.php:375
190
  msgid "Tracking Type:"
191
  msgstr "Tip urmărire:"
192
 
193
+ #: .././admin/settings.php:377
194
  msgid "Classic Analytics"
195
  msgstr "Analytics clasic"
196
 
197
+ #: .././admin/settings.php:378
198
  msgid "Universal Analytics"
199
  msgstr "Analytics universal"
200
 
201
+ #: .././admin/settings.php:389
202
  msgid "anonymize IPs while tracking"
203
  msgstr "anonimizează IP-urile pe perioada urmăririi"
204
 
205
+ #: .././admin/settings.php:400
206
  msgid "enable remarketing, demographics and interests reports"
207
  msgstr "activează rapoartele de re-marketing, demografice și de interese"
208
 
209
+ #: .././admin/settings.php:418
210
  msgid "track downloads, mailto and outbound links"
211
  msgstr "urmărire descărcări și legături de email sau în afară"
212
 
213
+ #: .././admin/settings.php:422
214
  msgid "Downloads Regex:"
215
  msgstr "Regex descărcări:"
216
 
217
+ #: .././admin/settings.php:433
218
  msgid "track affiliate links matching this regex"
219
  msgstr "urmărire legături afiliate potrivit acestei regex"
220
 
221
+ #: .././admin/settings.php:437
222
  msgid "Affiliates Regex:"
223
  msgstr "Regex afiliați:"
224
 
225
+ #: .././admin/settings.php:448
226
  msgid "track fragment identifiers, hashmarks (#) in URI links"
227
  msgstr "urmărire identificatori de fragmente, marcaje-diez (#) în legături URI"
228
 
229
+ #: .././admin/settings.php:459
230
  msgid "Authors:"
231
  msgstr "Autori:"
232
 
233
+ #: .././admin/settings.php:467
234
  msgid "Publication Year:"
235
  msgstr "An publicare:"
236
 
237
+ #: .././admin/settings.php:475
238
  msgid "Categories:"
239
  msgstr "Categorii:"
240
 
241
+ #: .././admin/settings.php:483
242
  msgid "User Type:"
243
  msgstr "Tip utilizator:"
244
 
245
+ #: .././admin/settings.php:495
246
  msgid "Advanced Tracking"
247
  msgstr "Urmărire avansată"
248
 
249
+ #: .././admin/settings.php:498
250
  msgid "Page Speed SR:"
251
  msgstr "SR viteză pagină:"
252
 
253
+ #: .././admin/settings.php:509
254
  msgid "exclude events from bounce-rate calculation"
255
  msgstr "exclude evenimente din calculul ratei de respingere"
256
 
257
+ #: .././admin/settings.php:520
258
  msgid "enable enhanced link attribution"
259
  msgstr "activează atribuirea îmbunătățită a legăturilor"
260
 
261
+ #: .././admin/settings.php:531
262
  msgid "enable AdSense account linking"
263
  msgstr "activează legătura cu contul AdSense"
264
 
265
+ #: .././admin/settings.php:542
266
  msgid "enable cross domain tracking"
267
  msgstr "activează urmărire domenii încrucișate"
268
 
269
+ #: .././admin/settings.php:546
270
  msgid "Cross Domains:"
271
  msgstr "Domenii încrucișate:"
272
 
273
+ #: .././admin/settings.php:557
274
  msgid "Exclude tracking for:"
275
  msgstr "Exclude urmărirea pentru:"
276
 
277
+ #: .././admin/settings.php:645
278
  msgid "Google Analytics Errors & Debugging"
279
  msgstr "Erori și depanare Google Analytics"
280
 
281
+ #: .././admin/settings.php:655
282
  msgid "Errors & Details"
283
  msgstr "Erori și detalii"
284
 
285
+ #: .././admin/settings.php:656
286
  msgid "Plugin Settings"
287
  msgstr "Setări modul"
288
 
289
+ #: .././admin/settings.php:663
290
  msgid "Last Error detected"
291
  msgstr "Ultima eroare detectată"
292
 
293
+ #: .././admin/settings.php:669 .././admin/settings.php:682
294
  msgid "None"
295
  msgstr "Niciunul"
296
 
297
+ #: .././admin/settings.php:676
298
  msgid "Error Details"
299
  msgstr "Detalii eroare"
300
 
301
+ #: .././admin/settings.php:696
302
  msgid "Plugin Configuration"
303
  msgstr "Configurare modul"
304
 
305
+ #: .././admin/settings.php:717 .././admin/settings.php:980
306
  msgid ""
307
  "Loading the required libraries. If this results in a blank screen or a fatal "
308
  "error, try this solution:"
310
  "Încărcare biblioteci necesare. Dacă apare un ecran alb sau o eroare fatală, "
311
  "încearcă această soluție:"
312
 
313
+ #: .././admin/settings.php:717
314
  msgid "Library conflicts between WordPress plugins"
315
  msgstr "Conflicte de bibliotecă între module WordPress"
316
 
317
+ #: .././admin/settings.php:732 .././admin/settings.php:997
318
  msgid "Plugin authorization succeeded."
319
  msgstr "Autorizarea modulului a reușit."
320
 
321
+ #: .././admin/settings.php:747 .././admin/settings.php:1020
322
  msgid ""
323
  "The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
324
  "(UA-XXXXX-X). Try again, and use the red link to get your access code"
327
  "strong> (UA-XXXXX-X). Încearcă din nou, și folosește legătura cu roșu pentru "
328
  "a obține codul tău de acces"
329
 
330
+ #: .././admin/settings.php:770 .././admin/settings.php:1052
331
  msgid "Cleared Cache."
332
  msgstr "Cache golit."
333
 
334
+ #: .././admin/settings.php:779 .././admin/settings.php:1061
335
  msgid "Token Reseted and Revoked."
336
  msgstr "Jeton resetat și revocat."
337
 
338
+ #: .././admin/settings.php:789
339
  msgid "All errors reseted."
340
  msgstr "Toate erorile resetate."
341
 
342
+ #: .././admin/settings.php:802 .././admin/settings.php:1075
343
  msgid "All other domains/properties were removed."
344
  msgstr "Toate celelalte domenii/proprietăți au fost înlăturate."
345
 
346
+ #: .././admin/settings.php:813 .././admin/settings.php:1086
347
  msgid "Google Analytics Settings"
348
  msgstr "Setări Google Analytics"
349
 
350
+ #: .././admin/settings.php:828 .././admin/settings.php:1100
351
  msgid "Use the red link (see below) to generate and get your access code!"
352
  msgstr ""
353
  "Folosește legătura cu roșu (vezi mai jos) pentru a genera și obține codul "
354
  "tău de acces!"
355
 
356
+ #: .././admin/settings.php:839 .././admin/settings.php:1128
357
  msgid "Plugin Authorization"
358
  msgstr "Autorizare modul"
359
 
360
+ #: .././admin/settings.php:844 .././admin/settings.php:1132
361
  #, php-format
362
  msgid ""
363
  "You should watch the %1$s and read this %2$s before proceeding to "
367
  "Trebuie să te uiți la %1$s și să citești acest %2$s înainte de a continua cu "
368
  "autorizarea. Acest modul necesită un cont Google Analytics configurat corect!"
369
 
370
+ #: .././admin/settings.php:844 .././admin/settings.php:1132
371
  msgid "video"
372
  msgstr "video"
373
 
374
+ #: .././admin/settings.php:844 .././admin/settings.php:1132
375
  msgid "tutorial"
376
  msgstr "tutorial"
377
 
378
+ #: .././admin/settings.php:849 .././admin/settings.php:1139
379
  msgid "use your own API Project credentials"
380
  msgstr "folosește-ți propriile credențiale de proiect API"
381
 
382
+ #: .././admin/settings.php:854 .././admin/settings.php:1147
383
  msgid "API Key:"
384
  msgstr "Cheie API:"
385
 
386
+ #: .././admin/settings.php:858 .././admin/settings.php:1151
387
  msgid "Client ID:"
388
  msgstr "ID client:"
389
 
390
+ #: .././admin/settings.php:862 .././admin/settings.php:1155
391
  msgid "Client Secret:"
392
  msgstr "Secret client:"
393
 
394
+ #: .././admin/settings.php:872 .././admin/settings.php:1165
395
  msgid "Clear Authorization"
396
  msgstr "Șterge autorizarea"
397
 
398
+ #: .././admin/settings.php:872 .././admin/settings.php:950
399
+ #: .././admin/settings.php:1165 .././admin/settings.php:1241
400
  msgid "Clear Cache"
401
  msgstr "Golește cache"
402
 
403
+ #: .././admin/settings.php:872
404
  msgid "Reset Errors"
405
  msgstr "Resetează erori"
406
 
407
+ #: .././admin/settings.php:878 .././admin/setup.php:42 .././admin/setup.php:58
408
  msgid "General Settings"
409
  msgstr "Setări generale"
410
 
411
+ #: .././admin/settings.php:881
412
  msgid "Select View:"
413
  msgstr "Selectare afișare:"
414
 
415
+ #: .././admin/settings.php:892 .././admin/settings.php:1192
416
  msgid "Property not found"
417
  msgstr "Proprietate negăsită"
418
 
419
+ #: .././admin/settings.php:898
420
  msgid "Lock Selection"
421
  msgstr "Blocare selecție"
422
 
423
+ #: .././admin/settings.php:917
424
  msgid "Theme Color:"
425
  msgstr "Culoare temă:"
426
 
427
+ #: .././admin/settings.php:925 .././admin/settings.php:1201
428
  msgid "Automatic Updates"
429
  msgstr "Actualizări automate"
430
 
431
+ #: .././admin/settings.php:935 .././admin/settings.php:1211
432
  msgid ""
433
  "automatic updates for minor versions (security and maintenance releases only)"
434
  msgstr ""
435
  "actualizări automate pentru versiuni minore (doar securitate și întreținere)"
436
 
437
+ #: .././admin/settings.php:950 .././admin/settings.php:1241
438
+ #: .././admin/widgets.php:32
439
  msgid "Authorize Plugin"
440
  msgstr "Autorizează modul"
441
 
442
+ #: .././admin/settings.php:1026
443
  msgid "Properties refreshed."
444
  msgstr "Proprietăți actualizate."
445
 
446
+ #: .././admin/settings.php:1110
447
  msgid "Network Setup"
448
  msgstr "Configurarea rețelei"
449
 
450
+ #: .././admin/settings.php:1120
451
  msgid "use a single Google Analytics account for the entire network"
452
  msgstr "folosește un singur cont Google Analytics pentru întreaga rețea"
453
 
454
+ #: .././admin/settings.php:1165
455
  msgid "Refresh Properties"
456
  msgstr "Actualizează proprietățile"
457
 
458
+ #: .././admin/settings.php:1171
459
  msgid "Properties/Views Settings"
460
  msgstr "Setări proprietăți/afișări"
461
 
462
+ #: .././admin/settings.php:1225
463
  msgid "exclude Super Admin tracking for the entire network"
464
  msgstr "exclude urmărirea Super Admin pentru întreaga rețea"
465
 
466
+ #: .././admin/settings.php:1273
467
  msgid "Setup Tutorial & Demo"
468
  msgstr "Tutorial și demo configurare"
469
 
470
+ #: .././admin/settings.php:1281
471
+ msgid "Follow & Review"
472
+ msgstr "Urmărește și Evaluează"
 
 
 
 
 
473
 
474
  #: .././admin/settings.php:1307
475
  #, php-format
524
  msgid "Web Analytics"
525
  msgstr "Analitice web"
526
 
527
+ #: .././admin/setup.php:41 .././admin/setup.php:57
528
  msgid "Google Analytics"
529
  msgstr "Google Analytics"
530
 
531
+ #: .././admin/setup.php:43
532
  msgid "Backend Settings"
533
  msgstr "Setări în spate"
534
 
535
+ #: .././admin/setup.php:44
536
  msgid "Frontend Settings"
537
  msgstr "Setări în față"
538
 
539
+ #: .././admin/setup.php:45
540
  msgid "Tracking Code"
541
  msgstr "Cod urmărire"
542
 
543
+ #: .././admin/setup.php:159 .././admin/widgets.php:117 .././front/setup.php:71
544
  msgid "Today"
545
  msgstr "Azi"
546
 
547
+ #: .././admin/setup.php:160 .././admin/widgets.php:118 .././front/setup.php:72
548
  msgid "Yesterday"
549
  msgstr "Ieri"
550
 
551
+ #: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
552
+ #: .././admin/setup.php:164 .././admin/widgets.php:119
553
+ #: .././admin/widgets.php:120 .././admin/widgets.php:121
554
+ #: .././admin/widgets.php:122 .././front/setup.php:73 .././front/setup.php:74
555
+ #: .././front/setup.php:75 .././front/setup.php:76 .././front/widgets.php:64
556
+ #: .././front/widgets.php:67 .././front/widgets.php:70
557
+ #: .././front/widgets.php:158 .././front/widgets.php:159
558
+ #: .././front/widgets.php:160
559
+ #, php-format
560
+ msgid "Last %d Days"
561
+ msgstr "Ultimele %d zile"
 
 
562
 
563
+ #: .././admin/setup.php:165 .././admin/setup.php:166
564
+ #: .././admin/widgets.php:123 .././admin/widgets.php:124
565
+ #: .././front/setup.php:77 .././front/setup.php:78
566
+ #, php-format
567
+ msgid "%s Year"
568
+ msgid_plural "%s Years"
569
+ msgstr[0] "%s an"
570
+ msgstr[1] "%s ani"
571
+ msgstr[2] "%s de ani"
572
+
573
+ #: .././admin/setup.php:165 .././admin/widgets.php:123 .././front/setup.php:77
574
+ msgid "One"
575
+ msgstr "Un"
576
+
577
+ #: .././admin/setup.php:166 .././admin/widgets.php:124 .././front/setup.php:78
578
+ msgid "Three"
579
+ msgstr "Trei"
580
+
581
+ #: .././admin/setup.php:169 .././admin/setup.php:185 .././front/setup.php:81
582
+ #: .././front/setup.php:97
583
  msgid "Unique Views"
584
  msgstr "Afișări unice"
585
 
586
+ #: .././admin/setup.php:170 .././admin/setup.php:186
587
+ #: .././admin/widgets.php:130 .././admin/widgets.php:830
588
+ #: .././front/setup.php:82 .././front/setup.php:98 .././tools/gapi.php:358
589
  msgid "Users"
590
  msgstr "Utilizatori"
591
 
592
+ #: .././admin/setup.php:171 .././admin/widgets.php:131 .././front/setup.php:83
593
  msgid "Organic"
594
  msgstr "Organic"
595
 
596
+ #: .././admin/setup.php:172 .././admin/setup.php:187
597
+ #: .././admin/widgets.php:132 .././admin/widgets.php:834
598
+ #: .././front/setup.php:84 .././front/setup.php:99 .././tools/gapi.php:361
599
  msgid "Page Views"
600
  msgstr "Afișări pagină"
601
 
602
+ #: .././admin/setup.php:173 .././admin/setup.php:188
603
+ #: .././admin/widgets.php:133 .././admin/widgets.php:838
604
+ #: .././front/setup.php:85 .././front/setup.php:100 .././tools/gapi.php:364
605
  msgid "Bounce Rate"
606
  msgstr "Rata de respingere"
607
 
608
+ #: .././admin/setup.php:174 .././admin/widgets.php:134 .././front/setup.php:86
609
  msgid "Location"
610
  msgstr "Locație"
611
 
612
+ #: .././admin/setup.php:175 .././admin/widgets.php:136 .././front/setup.php:87
613
+ #: .././tools/gapi.php:503
614
  msgid "Referrers"
615
  msgstr "Referenți"
616
 
617
+ #: .././admin/setup.php:176 .././admin/widgets.php:137 .././front/setup.php:88
618
+ #: .././tools/gapi.php:536
619
  msgid "Searches"
620
  msgstr "Căutări"
621
 
622
+ #: .././admin/setup.php:177 .././admin/widgets.php:138 .././front/setup.php:89
623
  msgid "Traffic Details"
624
  msgstr "Detalii trafic"
625
 
626
+ #: .././admin/setup.php:180 .././admin/widgets.php:505
627
+ #: .././admin/widgets.php:590 .././admin/widgets.php:757
628
+ #: .././admin/widgets.php:861 .././front/setup.php:92
629
  msgid "A JavaScript Error is blocking plugin resources!"
630
  msgstr "O eroare JavaScript blochează resursele modulului!"
631
 
632
+ #: .././admin/setup.php:181 .././admin/widgets.php:681 .././front/setup.php:93
633
  msgid "Traffic Mediums"
634
  msgstr "Medii trafic"
635
 
636
+ #: .././admin/setup.php:182 .././admin/widgets.php:696 .././front/setup.php:94
637
  msgid "Visitor Type"
638
  msgstr "Tip vizitator"
639
 
640
+ #: .././admin/setup.php:183 .././admin/widgets.php:711 .././front/setup.php:95
641
  msgid "Social Networks"
642
  msgstr "Rețele sociale"
643
 
644
+ #: .././admin/setup.php:184 .././admin/widgets.php:726 .././front/setup.php:96
645
  msgid "Search Engines"
646
  msgstr "Motoare de căutare"
647
 
648
+ #: .././admin/setup.php:189 .././admin/widgets.php:842
649
+ #: .././front/setup.php:101
650
  msgid "Organic Search"
651
  msgstr "Căutare organică"
652
 
653
+ #: .././admin/setup.php:190 .././admin/widgets.php:846
654
+ #: .././front/setup.php:102
655
  msgid "Pages/Session"
656
  msgstr "Pagini/Sesiune"
657
 
658
+ #: .././admin/setup.php:191 .././admin/widgets.php:517
659
+ #: .././admin/widgets.php:531 .././admin/widgets.php:541
660
+ #: .././admin/widgets.php:602 .././admin/widgets.php:616
661
+ #: .././admin/widgets.php:630 .././admin/widgets.php:644
662
+ #: .././admin/widgets.php:658 .././admin/widgets.php:668
663
+ #: .././admin/widgets.php:770 .././admin/widgets.php:782
664
+ #: .././admin/widgets.php:873 .././admin/widgets.php:887
665
+ #: .././admin/widgets.php:897 .././front/setup.php:103
666
  msgid "Invalid response, more details in JavaScript Console (F12)."
667
  msgstr "Răspuns invalid, mai multe detalii în consola JavaScript (F12)."
668
 
669
+ #: .././admin/setup.php:192 .././front/setup.php:104
670
  msgid "Not enough data collected"
671
  msgstr "Insuficiente date colectate"
672
 
673
+ #: .././admin/setup.php:193 .././admin/widgets.php:522
674
+ #: .././admin/widgets.php:536 .././admin/widgets.php:607
675
+ #: .././admin/widgets.php:621 .././admin/widgets.php:635
676
+ #: .././admin/widgets.php:649 .././admin/widgets.php:663
677
+ #: .././admin/widgets.php:775 .././admin/widgets.php:777
678
+ #: .././admin/widgets.php:878 .././admin/widgets.php:892
679
+ #: .././front/setup.php:105 .././front/widgets.php:100
 
680
  msgid "This report is unavailable"
681
  msgstr "Acest raport nu este disponibil"
682
 
683
+ #: .././admin/setup.php:194 .././front/setup.php:106
684
  msgid "report generated by"
685
  msgstr "raport generat de"
686
 
687
+ #: .././admin/setup.php:225
688
  msgid "Settings"
689
  msgstr "Setări"
690
 
691
+ #: .././admin/setup.php:237
692
+ #, php-format
693
+ msgid "Google Analytics Dashboard for WP has been updated to version %s."
694
+ msgstr "Google Analytics Dashboard for WP a fost actualizat la versiunea %s."
695
+
696
+ #: .././admin/setup.php:237
697
+ #, php-format
698
+ msgid "For details, check out %1$s and %2$s."
699
+ msgstr "Pentru mai multe detalii, verifică %1$s și %2$s."
700
+
701
+ #: .././admin/setup.php:237
702
+ msgid "the documentation page"
703
+ msgstr "pagina cu documentația"
704
+
705
+ #: .././admin/setup.php:237
706
+ msgid "the plugin&#39;s settings page"
707
+ msgstr "pagina de configurare a modulului"
708
+
709
+ #: .././admin/widgets.php:27 .././front/widgets.php:21
710
  msgid "Google Analytics Dashboard"
711
  msgstr "Panou control Google Analytics"
712
 
713
+ #: .././admin/widgets.php:32
714
  msgid "This plugin needs an authorization:"
715
  msgstr "Acest modul are nevoie de o autorizare:"
716
 
717
+ #: .././admin/widgets.php:66
718
  msgid "Something went wrong while retrieving profiles list."
719
  msgstr "Ceva nu a mers bine în timpul recuperării listei cu profile."
720
 
721
+ #: .././admin/widgets.php:66
722
  msgid "More details"
723
  msgstr "Mai multe detalii"
724
 
725
+ #: .././admin/widgets.php:79 .././admin/widgets.php:90
726
  msgid "An admin should asign a default Google Analytics Profile."
727
  msgstr ""
728
  "Un administrator trebuie să atribuie un profil Google Analytics implicit."
729
 
730
+ #: .././admin/widgets.php:79 .././admin/widgets.php:90
731
  msgid "Select Domain"
732
  msgstr "Selectează domeniu"
733
 
734
+ #: .././admin/widgets.php:95
735
  msgid ""
736
  "Something went wrong while retrieving property data. You need to create and "
737
  "properly configure a Google Analytics account:"
739
  "Ceva nu a mers bine în timpul recuperării datelor proprietății. Trebuie să "
740
  "creezi și să configurezi corect un cont Google Analytics:"
741
 
742
+ #: .././admin/widgets.php:95
743
  msgid "Find out more!"
744
  msgstr "Află mai multe!"
745
 
746
+ #: .././admin/widgets.php:116
747
  msgid "Real-Time"
748
  msgstr "Timp-real"
749
 
750
+ #: .././admin/widgets.php:129 .././admin/widgets.php:826
751
+ #: .././front/widgets.php:36 .././tools/gapi.php:373 .././tools/gapi.php:503
752
+ #: .././tools/gapi.php:536 .././tools/gapi.php:586 .././tools/gapi.php:666
753
+ #: .././tools/gapi.php:695
 
 
 
 
 
754
  msgid "Sessions"
755
  msgstr "Sesiuni"
756
 
757
+ #: .././admin/widgets.php:135 .././tools/gapi.php:471
758
  msgid "Pages"
759
  msgstr "Pagini"
760
 
761
+ #: .././admin/widgets.php:236 .././admin/widgets.php:478
762
  msgid "REFERRAL"
763
  msgstr "REFERIRE"
764
 
765
+ #: .././admin/widgets.php:240 .././admin/widgets.php:479
766
  msgid "ORGANIC"
767
  msgstr "ORGANIC"
768
 
769
+ #: .././admin/widgets.php:244 .././admin/widgets.php:364
770
+ #: .././admin/widgets.php:480
771
  msgid "SOCIAL"
772
  msgstr "SOCIAL"
773
 
774
+ #: .././admin/widgets.php:248 .././admin/widgets.php:367
775
+ #: .././admin/widgets.php:481
776
  msgid "CAMPAIGN"
777
  msgstr "CAMPANIE"
778
 
779
+ #: .././admin/widgets.php:252 .././admin/widgets.php:370
780
+ #: .././admin/widgets.php:484
781
  msgid "DIRECT"
782
  msgstr "DIRECT"
783
 
784
+ #: .././admin/widgets.php:256 .././admin/widgets.php:485
785
  msgid "NEW"
786
  msgstr "NOU"
787
 
788
+ #: .././admin/widgets.php:358
789
  msgid "REFERRALS"
790
  msgstr "REFERIRI"
791
 
792
+ #: .././admin/widgets.php:361
793
  msgid "KEYWORDS"
794
  msgstr "CUVINTE"
795
 
796
+ #: .././front/widgets.php:21
 
 
 
 
 
 
 
 
797
  msgid "Will display your google analytics stats in a widget"
798
  msgstr "Va afișa statisticile tale Google Analytics într-o piesă"
799
 
800
+ #: .././front/widgets.php:36 .././tools/gapi.php:695
801
  msgid "trend"
802
  msgstr "tendință"
803
 
804
+ #: .././front/widgets.php:123
805
  msgid "Period:"
806
  msgstr "Perioada:"
807
 
808
+ #: .././front/widgets.php:123
809
  msgid "Sessions:"
810
  msgstr "Sesiuni"
811
 
812
+ #: .././front/widgets.php:127
813
  msgid "generated by"
814
  msgstr "generate de"
815
 
816
+ #: .././front/widgets.php:136
817
  msgid "Google Analytics Stats"
818
  msgstr "Statistici Google Analytics"
819
 
820
+ #: .././front/widgets.php:144
821
  msgid "Title:"
822
  msgstr "Titlu:"
823
 
824
+ #: .././front/widgets.php:147
825
  msgid "Display:"
826
  msgstr "Afișare:"
827
 
828
+ #: .././front/widgets.php:148
829
  msgid "Chart & Totals"
830
  msgstr "Grafic și total"
831
 
832
+ #: .././front/widgets.php:149
833
  msgid "Chart"
834
  msgstr "Grafic"
835
 
836
+ #: .././front/widgets.php:150
837
  msgid "Totals"
838
  msgstr "Totale"
839
 
840
+ #: .././front/widgets.php:154
841
  msgid "Anonymize stats:"
842
  msgstr "Anonimizează statistici:"
843
 
844
+ #: .././front/widgets.php:157
845
  msgid "Stats for:"
846
  msgstr "Statistici pentru:"
847
 
848
+ #: .././front/widgets.php:164
849
  msgid "Give credits:"
850
  msgstr "Acordă credit:"
851
 
852
+ #: .././gadwp.php:46 .././gadwp.php:54 .././gadwp.php:61
853
  msgid "This is not allowed, read the documentation!"
854
  msgstr "Nu este permis, citește documentația!"
855
 
856
+ #: .././tools/gapi.php:128
857
  msgid "Use this link to get your access code:"
858
  msgstr "Folosește această legătură pentru a obține codul tău de acces:"
859
 
860
+ #: .././tools/gapi.php:128
861
  msgid "Get Access Code"
862
  msgstr "Obține codul de acces"
863
 
864
+ #: .././tools/gapi.php:132 .././tools/gapi.php:133
865
  msgid "Use the red link to get your access code!"
866
  msgstr "Folosește legătura cu roșu pentru a obține codul tău de acces!"
867
 
868
+ #: .././tools/gapi.php:132
869
  msgid "Access Code:"
870
  msgstr "Cod de acces:"
871
 
872
+ #: .././tools/gapi.php:139
873
  msgid "Save Access Code"
874
  msgstr "Salvează codul de acces"
875
 
876
+ #: .././tools/gapi.php:367
877
  msgid "Organic Searches"
878
  msgstr "Căutări organice"
879
 
880
+ #: .././tools/gapi.php:370
881
  msgid "Unique Page Views"
882
  msgstr "Afișări unice de pagină"
883
 
884
+ #: .././tools/gapi.php:378
885
  msgid "Hour"
886
  msgstr "Oră"
887
 
888
+ #: .././tools/gapi.php:382 .././tools/gapi.php:385 .././tools/gapi.php:695
889
  msgid "Date"
890
  msgstr "Dată"
891
 
892
+ #: .././tools/gapi.php:471
893
  msgid "Views"
894
  msgstr "Afișări"
895
 
896
+ #: .././tools/gapi.php:557
897
  msgid "Countries"
898
  msgstr "Țări"
899
 
900
+ #: .././tools/gapi.php:567
901
  msgid "Cities from"
902
  msgstr "Orașe din"
903
 
904
+ #: .././tools/gapi.php:620
905
  msgid "Channels"
906
  msgstr "Canale"
907
 
908
+ #: .././tools/gapi.php:666
909
  msgid "Type"
910
  msgstr "Tip"
911
 
912
+ #~ msgid "Last 7 Days"
913
+ #~ msgstr "Ultimele 7 zile"
914
+
915
+ #~ msgid "Last 30 Days"
916
+ #~ msgstr "Ultimele 30 zile"
917
+
918
+ #~ msgid "Last 90 Days"
919
+ #~ msgstr "Ultimele 90 zile"
920
+
921
+ #~ msgid "Last 14 Days"
922
+ #~ msgstr "Ultimele 14 zile"
923
+
924
+ #~ msgid "Google Analytics Dashboard for WP has been updated to version"
925
+ #~ msgstr "Google Analytics Dashboard for WP a fost actualizat la versiunea"
926
+
927
+ #~ msgid "For details, check out the"
928
+ #~ msgstr "Pentru mai multe detalii verifică"
929
+
930
+ #~ msgid "documentation page"
931
+ #~ msgstr "pagina cu documentația"
932
+
933
+ #~ msgid "and the"
934
+ #~ msgstr "și"
935
+
936
+ #~ msgid "plugin&#39;s settings page"
937
+ #~ msgstr "pagina de configurare a modulului"
938
+
939
+ #~ msgid "show page sessions and users in frontend (after each article)"
940
+ #~ msgstr ""
941
+ #~ "arată sesiunile paginii și utilizatorii în față (după fiecare articol)"
942
+
943
+ #~ msgid "show page searches (after each article)"
944
+ #~ msgstr "arată căutările paginii (după fiecare articol)"
945
+
946
+ #~ msgid "Support & Reviews"
947
+ #~ msgstr "Suport și recenzii"
948
+
949
+ #~ msgid "Plugin documentation and support on %s"
950
+ #~ msgstr "Documentație și suport modul pe %s"
951
+
952
+ #~ msgid "Views vs UniqueViews"
953
+ #~ msgstr "Afișări vs Afișări unice"
954
+
955
+ #~ msgid "Google Analytics Reports"
956
+ #~ msgstr "Rapoarte Google Analytics"
957
+
958
+ #~ msgid "UniqueViews"
959
+ #~ msgstr "Afișări unice"
960
 
961
  #~ msgid "Read %s for more information about Frontend Features and Options."
962
  #~ msgstr ""
languages/ga-dash-ru_RU.mo CHANGED
Binary file
languages/ga-dash-ru_RU.po CHANGED
@@ -4,8 +4,8 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Google Analytics Dashboard for WP\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-dashboard-for-wp\n"
7
- "POT-Creation-Date: 2015-05-21 19:47+0200\n"
8
- "PO-Revision-Date: 2015-05-21 19:47+0200\n"
9
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
10
  "Language-Team: SebWeo.com\n"
11
  "Language: ru_RU\n"
@@ -14,104 +14,101 @@ msgstr ""
14
  "Content-Transfer-Encoding: 8bit\n"
15
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n"
16
  "%100>=20) ? 1 : 2);\n"
17
- "X-Generator: Poedit 1.8\n"
18
  "X-Poedit-SourceCharset: UTF-8\n"
19
- "X-Poedit-KeywordsList: __;_e\n"
 
20
  "X-Poedit-Basepath: .\n"
21
  "X-Poedit-SearchPath-0: ../.\n"
22
 
23
- #: .././admin/item-reports.php:52
24
  msgid "Analytics"
25
  msgstr "Аналитика"
26
 
27
- #: .././admin/settings.php:94 .././admin/settings.php:197 .././admin/settings.php:328
28
- #: .././admin/settings.php:803 .././admin/settings.php:1079
29
  msgid "Settings saved."
30
  msgstr "Настройки сохранены."
31
 
32
- #: .././admin/settings.php:96 .././admin/settings.php:199 .././admin/settings.php:330
33
- #: .././admin/settings.php:780 .././admin/settings.php:790 .././admin/settings.php:799
34
- #: .././admin/settings.php:805 .././admin/settings.php:817 .././admin/settings.php:1040
35
- #: .././admin/settings.php:1065 .././admin/settings.php:1075 .././admin/settings.php:1081
36
- #: .././admin/settings.php:1093
37
  msgid "Cheating Huh?"
38
  msgstr "Читерство?"
39
 
40
- #: .././admin/settings.php:100 .././admin/settings.php:203 .././admin/settings.php:334
41
- #: .././admin/settings.php:647 .././admin/settings.php:832 .././admin/settings.php:1107
42
  #, php-format
43
  msgid "Something went wrong, check %1$s or %2$s."
44
  msgstr "Что-то пошло не так, проверьте %1$s или %2$s."
45
 
46
- #: .././admin/settings.php:100 .././admin/settings.php:203 .././admin/settings.php:334
47
- #: .././admin/settings.php:647 .././admin/settings.php:832 .././admin/settings.php:1107
48
- #: .././admin/setup.php:82 .././admin/setup.php:101
49
  msgid "Errors & Debug"
50
  msgstr "Ошибки и отладка"
51
 
52
- #: .././admin/settings.php:100 .././admin/settings.php:203 .././admin/settings.php:334
53
- #: .././admin/settings.php:647 .././admin/settings.php:832 .././admin/settings.php:1107
54
  msgid "authorize the plugin"
55
  msgstr "авторизация плагина"
56
 
57
- #: .././admin/settings.php:105
58
  msgid "Google Analytics Frontend Settings"
59
  msgstr "Настройки фронтэнда Google Analytics"
60
 
61
- #: .././admin/settings.php:115 .././admin/settings.php:218
62
  msgid "Permissions"
63
  msgstr "Разрешение"
64
 
65
- #: .././admin/settings.php:118 .././admin/settings.php:221
66
  msgid "Show stats to:"
67
  msgstr "Показать статистику для:"
68
 
69
- #: .././admin/settings.php:157
70
- msgid "show page sessions and users in frontend (after each article)"
71
- msgstr "Показывать сессии страницы и пользователей в интерфейсе (после каждой статьи)"
72
-
73
- #: .././admin/settings.php:168
74
- msgid "show page searches (after each article)"
75
- msgstr "показать поиски страниц (после каждой статьи)"
76
 
77
- #: .././admin/settings.php:175 .././admin/settings.php:308 .././admin/settings.php:605
78
- #: .././admin/settings.php:952 .././admin/settings.php:1245
79
  msgid "Save Changes"
80
  msgstr "Сохранить изменения"
81
 
82
- #: .././admin/settings.php:208
83
  msgid "Google Analytics Backend Settings"
84
  msgstr "Настройки бекэнда Google Analytics"
85
 
86
- #: .././admin/settings.php:262
87
  msgid "enable Switch View functionality"
88
  msgstr "включить функциональность Сменить вид"
89
 
90
- #: .././admin/settings.php:273
91
  msgid "enable reports on Posts List and Pages List"
92
  msgstr "включить отчеты о сообщениях в списке постов и страниц"
93
 
94
- #: .././admin/settings.php:284
95
  msgid "enable the main Dashboard Widget"
96
  msgstr "включить основной виджет в Консоли"
97
 
98
- #: .././admin/settings.php:288
99
  msgid "Real-Time Settings"
100
  msgstr "Настройки Реального режима"
101
 
102
- #: .././admin/settings.php:291
103
  msgid "Maximum number of pages to display on real-time tab:"
104
  msgstr "Максимальное количество страниц для отображения на вкладке в режиме реального времени:"
105
 
106
- #: .././admin/settings.php:296
107
  msgid "Location Settings"
108
  msgstr "Настройки локации"
109
 
110
- #: .././admin/settings.php:300
111
  msgid "Target Geo Map to country:"
112
  msgstr "Целевая Geo-карта для страны:"
113
 
114
- #: .././admin/settings.php:337
115
  msgid ""
116
  "The tracking component is disabled. You should set <strong>Tracking Options</strong> to "
117
  "<strong>Enabled</strong>"
@@ -119,184 +116,184 @@ msgstr ""
119
  "Компонент отслеживания отключен. Вы должны установить <strong>Опции трекинга</strong> на "
120
  "<strong>Включено</strong>"
121
 
122
- #: .././admin/settings.php:342
123
  msgid "Google Analytics Tracking Code"
124
  msgstr "трекинг-код Google Analytics"
125
 
126
- #: .././admin/settings.php:351
127
  msgid "Basic Settings"
128
  msgstr "Базовые настройки"
129
 
130
- #: .././admin/settings.php:352 .././admin/settings.php:417
131
  msgid "Events Tracking"
132
  msgstr "Отслеживание событий"
133
 
134
- #: .././admin/settings.php:353 .././admin/settings.php:465
135
  msgid "Custom Definitions"
136
  msgstr "Пользовательские Определения"
137
 
138
- #: .././admin/settings.php:354 .././admin/settings.php:563 .././admin/settings.php:1228
139
  msgid "Exclude Tracking"
140
  msgstr "Исключить отслеживание"
141
 
142
- #: .././admin/settings.php:355
143
  msgid "Advanced Settings"
144
  msgstr "Расширенные настройки"
145
 
146
- #: .././admin/settings.php:362
147
  msgid "Tracking Settings"
148
  msgstr "Настройки отслеживания"
149
 
150
- #: .././admin/settings.php:365
151
  msgid "Tracking Options:"
152
  msgstr "Опции отслеживания:"
153
 
154
- #: .././admin/settings.php:367
155
  msgid "Disabled"
156
  msgstr "Выключено"
157
 
158
- #: .././admin/settings.php:368
159
  msgid "Enabled"
160
  msgstr "Включено"
161
 
162
- #: .././admin/settings.php:376 .././admin/settings.php:897 .././admin/settings.php:919
163
- #: .././admin/settings.php:1201 .././admin/widgets.php:71
164
  msgid "View Name:"
165
  msgstr "Вид имени:"
166
 
167
- #: .././admin/settings.php:376 .././admin/settings.php:919
168
  msgid "Tracking ID:"
169
  msgstr "ID отслеживания"
170
 
171
- #: .././admin/settings.php:376 .././admin/settings.php:919
172
  msgid "Default URL:"
173
  msgstr "URL по умолчанию:"
174
 
175
- #: .././admin/settings.php:376 .././admin/settings.php:919
176
  msgid "Time Zone:"
177
  msgstr "Временная зона:"
178
 
179
- #: .././admin/settings.php:381
180
  msgid "Basic Tracking"
181
  msgstr "Базовое отслеживание"
182
 
183
- #: .././admin/settings.php:384
184
  msgid "Tracking Type:"
185
  msgstr "Тип отслеживания:"
186
 
187
- #: .././admin/settings.php:386
188
  msgid "Classic Analytics"
189
  msgstr "Классическая аналитика"
190
 
191
- #: .././admin/settings.php:387
192
  msgid "Universal Analytics"
193
  msgstr "Универсальная аналитика"
194
 
195
- #: .././admin/settings.php:398
196
  msgid "anonymize IPs while tracking"
197
  msgstr "скрывать IP при отслеживании"
198
 
199
- #: .././admin/settings.php:409
200
  msgid "enable remarketing, demographics and interests reports"
201
  msgstr "включить ремаркетинг, отчеты по демографии и интересам"
202
 
203
- #: .././admin/settings.php:427
204
  msgid "track downloads, mailto and outbound links"
205
  msgstr "отслеживать загрузки, mailto и исходящие ссылки"
206
 
207
- #: .././admin/settings.php:431
208
  msgid "Downloads Regex:"
209
  msgstr "Загрузки Regex:"
210
 
211
- #: .././admin/settings.php:442
212
  msgid "track affiliate links matching this regex"
213
  msgstr "отслеживать партнерские ссылки, соответствующие этому регулярному выражению"
214
 
215
- #: .././admin/settings.php:446
216
  msgid "Affiliates Regex:"
217
  msgstr "Аффилиаты:"
218
 
219
- #: .././admin/settings.php:457
220
  msgid "track fragment identifiers, hashmarks (#) in URI links"
221
  msgstr "отслеживать идентификаторы фрагментов, хештеги (#) в URI ссылках"
222
 
223
- #: .././admin/settings.php:468
224
  msgid "Authors:"
225
  msgstr "Авторы:"
226
 
227
- #: .././admin/settings.php:476
228
  msgid "Publication Year:"
229
  msgstr "Год публикации:"
230
 
231
- #: .././admin/settings.php:484
232
  msgid "Categories:"
233
  msgstr "Категории:"
234
 
235
- #: .././admin/settings.php:492
236
  msgid "User Type:"
237
  msgstr "Тип пользователя:"
238
 
239
- #: .././admin/settings.php:504
240
  msgid "Advanced Tracking"
241
  msgstr "Расширенное отслеживание"
242
 
243
- #: .././admin/settings.php:507
244
  msgid "Page Speed SR:"
245
  msgstr "SR скорости страницы:"
246
 
247
- #: .././admin/settings.php:518
248
  msgid "exclude events from bounce-rate calculation"
249
  msgstr "исключить показатель отказов из расчета"
250
 
251
- #: .././admin/settings.php:529
252
  msgid "enable enhanced link attribution"
253
  msgstr "включить повышенную атрибуцию ссылок"
254
 
255
- #: .././admin/settings.php:540
256
  msgid "enable AdSense account linking"
257
  msgstr "включить связывание учетной записи AdSense"
258
 
259
- #: .././admin/settings.php:551
260
  msgid "enable cross domain tracking"
261
  msgstr "включить отслеживание поддоменов"
262
 
263
- #: .././admin/settings.php:555
264
  msgid "Cross Domains:"
265
  msgstr "Поддомены:"
266
 
267
- #: .././admin/settings.php:566
268
  msgid "Exclude tracking for:"
269
  msgstr "Исключить отслеживание для:"
270
 
271
- #: .././admin/settings.php:651
272
  msgid "Google Analytics Errors & Debugging"
273
  msgstr "Ошибки и отладка Google Analytics"
274
 
275
- #: .././admin/settings.php:661
276
  msgid "Errors & Details"
277
  msgstr "Ошибки и Детали"
278
 
279
- #: .././admin/settings.php:662
280
  msgid "Plugin Settings"
281
  msgstr "Настройки плагина"
282
 
283
- #: .././admin/settings.php:670
284
  msgid "Last Error detected"
285
  msgstr "Последняя обнаруженная ошибка"
286
 
287
- #: .././admin/settings.php:676 .././admin/settings.php:689
288
  msgid "None"
289
  msgstr "Нет"
290
 
291
- #: .././admin/settings.php:683
292
  msgid "Error Details"
293
  msgstr "Детали ошибки"
294
 
295
- #: .././admin/settings.php:703
296
  msgid "Plugin Configuration"
297
  msgstr "Конфигурация плагина"
298
 
299
- #: .././admin/settings.php:725 .././admin/settings.php:990
300
  msgid ""
301
  "Loading the required libraries. If this results in a blank screen or a fatal error, try this "
302
  "solution:"
@@ -304,15 +301,15 @@ msgstr ""
304
  "Загрузка необходимых библиотек. Если это приводит к пустому экрану или фатальной ошибке, "
305
  "попробуйте это решение:"
306
 
307
- #: .././admin/settings.php:725
308
  msgid "Library conflicts between WordPress plugins"
309
  msgstr "Библиотека конфликтов между WordPress плагинами"
310
 
311
- #: .././admin/settings.php:740 .././admin/settings.php:1007
312
  msgid "Plugin authorization succeeded."
313
  msgstr "Авторизация плагин успешна."
314
 
315
- #: .././admin/settings.php:755 .././admin/settings.php:1031
316
  msgid ""
317
  "The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> (UA-XXXXX-X). Try "
318
  "again, and use the red link to get your access code"
@@ -320,35 +317,35 @@ msgstr ""
320
  "Код доступа <strong>НЕ</strong> ваш <strong>ID отслеживания</strong> (UA-XXXXX-X). Попробуйте "
321
  "еще раз, и используйте красную ссылку, чтобы получить код доступа"
322
 
323
- #: .././admin/settings.php:778 .././admin/settings.php:1063
324
  msgid "Cleared Cache."
325
  msgstr "Кеш почищен."
326
 
327
- #: .././admin/settings.php:787 .././admin/settings.php:1072
328
  msgid "Token Reseted and Revoked."
329
  msgstr "Маркер сброшен и отменен."
330
 
331
- #: .././admin/settings.php:797
332
  msgid "All errors reseted."
333
  msgstr "Все ошибки сброшены."
334
 
335
- #: .././admin/settings.php:810 .././admin/settings.php:1086
336
  msgid "All other domains/properties were removed."
337
  msgstr "Все остальные домены/свойства были удалены."
338
 
339
- #: .././admin/settings.php:822 .././admin/settings.php:1098
340
  msgid "Google Analytics Settings"
341
  msgstr "Настройки Google Analytics"
342
 
343
- #: .././admin/settings.php:837 .././admin/settings.php:1112
344
  msgid "Use the red link (see below) to generate and get your access code!"
345
  msgstr "Используйте красную ссылку (см ниже), чтобы генерировать и получить код доступа!"
346
 
347
- #: .././admin/settings.php:848 .././admin/settings.php:1140
348
  msgid "Plugin Authorization"
349
  msgstr "Авторизация плагина"
350
 
351
- #: .././admin/settings.php:853 .././admin/settings.php:1144
352
  #, php-format
353
  msgid ""
354
  "You should watch the %1$s and read this %2$s before proceeding to authorization. This plugin "
@@ -357,113 +354,108 @@ msgstr ""
357
  "Вы должны смотреть %1$s и читать это %2$s, прежде чем приступить к авторизации. Этот плагин "
358
  "требует правильно настроенного аккаунта Google Analytics!"
359
 
360
- #: .././admin/settings.php:853 .././admin/settings.php:1144
361
  msgid "video"
362
  msgstr "видео"
363
 
364
- #: .././admin/settings.php:853 .././admin/settings.php:1144
365
  msgid "tutorial"
366
  msgstr "мануал"
367
 
368
- #: .././admin/settings.php:858 .././admin/settings.php:1151
369
  msgid "use your own API Project credentials"
370
  msgstr "используйте свои собственные полномочия по API проекта"
371
 
372
- #: .././admin/settings.php:863 .././admin/settings.php:1159
373
  msgid "API Key:"
374
  msgstr "ключ API:"
375
 
376
- #: .././admin/settings.php:867 .././admin/settings.php:1163
377
  msgid "Client ID:"
378
  msgstr "ID клиента:"
379
 
380
- #: .././admin/settings.php:871 .././admin/settings.php:1167
381
  msgid "Client Secret:"
382
  msgstr "Секретный код клиента:"
383
 
384
- #: .././admin/settings.php:881 .././admin/settings.php:1177
385
  msgid "Clear Authorization"
386
  msgstr "Очистить авторизацию"
387
 
388
- #: .././admin/settings.php:881 .././admin/settings.php:959 .././admin/settings.php:1177
389
- #: .././admin/settings.php:1254
390
  msgid "Clear Cache"
391
  msgstr "Очистить кеш"
392
 
393
- #: .././admin/settings.php:881
394
  msgid "Reset Errors"
395
  msgstr "Сбросить ошибки"
396
 
397
- #: .././admin/settings.php:887 .././admin/setup.php:70 .././admin/setup.php:98
398
  msgid "General Settings"
399
  msgstr "Общие настройки"
400
 
401
- #: .././admin/settings.php:890
402
  msgid "Select View:"
403
  msgstr "Выбрать вид:"
404
 
405
- #: .././admin/settings.php:901 .././admin/settings.php:1205
406
  msgid "Property not found"
407
  msgstr "Свойство не найдено"
408
 
409
- #: .././admin/settings.php:907
410
  msgid "Lock Selection"
411
  msgstr "Блокировать Выбор"
412
 
413
- #: .././admin/settings.php:926
414
  msgid "Theme Color:"
415
  msgstr "Цвет темы:"
416
 
417
- #: .././admin/settings.php:934 .././admin/settings.php:1214
418
  msgid "Automatic Updates"
419
  msgstr "Автоматические обновления"
420
 
421
- #: .././admin/settings.php:944 .././admin/settings.php:1224
422
  msgid "automatic updates for minor versions (security and maintenance releases only)"
423
  msgstr ""
424
  "автоматические обновления для ранних версий (только релизы безопасности и техническое "
425
  "обслуживание)"
426
 
427
- #: .././admin/settings.php:959 .././admin/settings.php:1254 .././admin/widgets.php:42
428
  msgid "Authorize Plugin"
429
  msgstr "Авторизация плагина"
430
 
431
- #: .././admin/settings.php:1037
432
  msgid "Properties refreshed."
433
  msgstr "Свойства обновлены."
434
 
435
- #: .././admin/settings.php:1122
436
  msgid "Network Setup"
437
  msgstr "Настройка сети"
438
 
439
- #: .././admin/settings.php:1132
440
  msgid "use a single Google Analytics account for the entire network"
441
  msgstr "использовать одну учетную запись Google Analytics для всей сети"
442
 
443
- #: .././admin/settings.php:1177
444
  msgid "Refresh Properties"
445
  msgstr "Обновить свойства"
446
 
447
- #: .././admin/settings.php:1183
448
  msgid "Properties/Views Settings"
449
  msgstr "Настройки Свойства/Вид"
450
 
451
- #: .././admin/settings.php:1238
452
  msgid "exclude Super Admin tracking for the entire network"
453
  msgstr "исключить отслеживание Супер Админ для всей сети"
454
 
455
- #: .././admin/settings.php:1285
456
  msgid "Setup Tutorial & Demo"
457
  msgstr "Мануал и Демо настройки"
458
 
459
- #: .././admin/settings.php:1293
460
- msgid "Support & Reviews"
461
- msgstr "Поддержка и Отзывы"
462
-
463
- #: .././admin/settings.php:1300
464
- #, php-format
465
- msgid "Plugin documentation and support on %s"
466
- msgstr "Документации и поддержка плагина на %s"
467
 
468
  #: .././admin/settings.php:1307
469
  #, php-format
@@ -518,166 +510,200 @@ msgstr "%s услуги с пользовательским отслеживан
518
  msgid "Web Analytics"
519
  msgstr "Web аналитика"
520
 
521
- #: .././admin/setup.php:67 .././admin/setup.php:95
522
  msgid "Google Analytics"
523
  msgstr "Google аналитика"
524
 
525
- #: .././admin/setup.php:73
526
  msgid "Backend Settings"
527
  msgstr "Настройки бекэнда"
528
 
529
- #: .././admin/setup.php:76
530
  msgid "Frontend Settings"
531
  msgstr "Настройки фронтэнда"
532
 
533
- #: .././admin/setup.php:79
534
  msgid "Tracking Code"
535
  msgstr "Код отслеживания"
536
 
537
- #: .././admin/setup.php:169 .././admin/widgets.php:126
538
  msgid "Today"
539
  msgstr "Сегодня"
540
 
541
- #: .././admin/setup.php:170 .././admin/widgets.php:127
542
  msgid "Yesterday"
543
  msgstr "Вчера"
544
 
545
- #: .././admin/setup.php:171 .././admin/widgets.php:128 .././front/widgets.php:74
546
- #: .././front/widgets.php:182
547
- msgid "Last 7 Days"
548
- msgstr "Последние 7 дней"
 
 
 
 
 
 
 
 
 
 
 
549
 
550
- #: .././admin/setup.php:172 .././admin/widgets.php:130 .././front/widgets.php:80
551
- #: .././front/widgets.php:184
552
- msgid "Last 30 Days"
553
- msgstr "Последние 30 дней"
554
 
555
- #: .././admin/setup.php:173 .././admin/widgets.php:131
556
- msgid "Last 90 Days"
557
- msgstr "Последние 90 дней"
558
 
559
- #: .././admin/setup.php:175 .././admin/setup.php:190
 
560
  msgid "Unique Views"
561
  msgstr "Уникальные просмотры"
562
 
563
- #: .././admin/setup.php:176 .././admin/setup.php:191 .././admin/widgets.php:136
564
- #: .././admin/widgets.php:875 .././tools/gapi.php:391
 
565
  msgid "Users"
566
  msgstr "Пользователи"
567
 
568
- #: .././admin/setup.php:177 .././admin/widgets.php:137
569
  msgid "Organic"
570
  msgstr "Органический"
571
 
572
- #: .././admin/setup.php:178 .././admin/setup.php:192 .././admin/widgets.php:138
573
- #: .././admin/widgets.php:879 .././tools/gapi.php:394
 
574
  msgid "Page Views"
575
  msgstr "Просмотры страницы"
576
 
577
- #: .././admin/setup.php:179 .././admin/setup.php:193 .././admin/widgets.php:139
578
- #: .././admin/widgets.php:883 .././tools/gapi.php:397
 
579
  msgid "Bounce Rate"
580
  msgstr "Показатель отказов"
581
 
582
- #: .././admin/setup.php:180 .././admin/widgets.php:140
583
  msgid "Location"
584
  msgstr "Расположение"
585
 
586
- #: .././admin/setup.php:181 .././admin/widgets.php:142 .././tools/gapi.php:566
 
587
  msgid "Referrers"
588
  msgstr "Реферальные"
589
 
590
- #: .././admin/setup.php:182 .././admin/widgets.php:143 .././tools/gapi.php:612
591
- #: .././tools/gapi.php:918
592
  msgid "Searches"
593
  msgstr "Поисковые"
594
 
595
- #: .././admin/setup.php:183 .././admin/widgets.php:144
596
  msgid "Traffic Details"
597
  msgstr "Детали трафика"
598
 
599
- #: .././admin/setup.php:185 .././admin/widgets.php:510 .././admin/widgets.php:607
600
- #: .././admin/widgets.php:805 .././admin/widgets.php:917 .././front/item-reports.php:97
601
  msgid "A JavaScript Error is blocking plugin resources!"
602
  msgstr "Ошибки JavaScript блокируют ресурсы плагина!"
603
 
604
- #: .././admin/setup.php:186 .././admin/widgets.php:713
605
  msgid "Traffic Mediums"
606
  msgstr "Среднее по трафику"
607
 
608
- #: .././admin/setup.php:187 .././admin/widgets.php:729
609
  msgid "Visitor Type"
610
  msgstr "Тип посетителей"
611
 
612
- #: .././admin/setup.php:188 .././admin/widgets.php:745
613
  msgid "Social Networks"
614
  msgstr "Социальные сети"
615
 
616
- #: .././admin/setup.php:189 .././admin/widgets.php:761
617
  msgid "Search Engines"
618
  msgstr "Поисковые системы"
619
 
620
- #: .././admin/setup.php:194 .././admin/widgets.php:887
621
  msgid "Organic Search"
622
  msgstr "Органический поиск"
623
 
624
- #: .././admin/setup.php:195 .././admin/widgets.php:891
625
  msgid "Pages/Session"
626
  msgstr "Страниц/Сессию"
627
 
628
- #: .././admin/setup.php:196 .././admin/widgets.php:523 .././admin/widgets.php:541
629
- #: .././admin/widgets.php:620 .././admin/widgets.php:638 .././admin/widgets.php:657
630
- #: .././admin/widgets.php:676 .././admin/widgets.php:696 .././admin/widgets.php:819
631
- #: .././admin/widgets.php:930 .././admin/widgets.php:949 .././front/item-reports.php:109
632
- #: .././front/item-reports.php:128
 
633
  msgid "Invalid response, more details in JavaScript Console (F12)."
634
  msgstr "Неверный ответ, подробнее в консоли JavaScript (F12)."
635
 
636
- #: .././admin/setup.php:197
637
  msgid "Not enough data collected"
638
  msgstr "Недостаточно данных собрано"
639
 
640
- #: .././admin/setup.php:198 .././admin/widgets.php:528 .././admin/widgets.php:546
641
- #: .././admin/widgets.php:625 .././admin/widgets.php:643 .././admin/widgets.php:662
642
- #: .././admin/widgets.php:681 .././admin/widgets.php:701 .././admin/widgets.php:824
643
- #: .././admin/widgets.php:827 .././admin/widgets.php:935 .././admin/widgets.php:954
644
- #: .././front/item-reports.php:114 .././front/item-reports.php:133 .././front/widgets.php:110
645
  msgid "This report is unavailable"
646
  msgstr "Этот отчет недоступен"
647
 
648
- #: .././admin/setup.php:199
649
  msgid "report generated by"
650
  msgstr "Отчет сгенерирован"
651
 
652
- #: .././admin/setup.php:233
653
  msgid "Settings"
654
  msgstr "Настройки"
655
 
656
- #: .././admin/widgets.php:33 .././front/widgets.php:22
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
657
  msgid "Google Analytics Dashboard"
658
  msgstr "Консоль Google Analytics"
659
 
660
- #: .././admin/widgets.php:42
661
  msgid "This plugin needs an authorization:"
662
  msgstr "Этому плагину необходима авторизация:"
663
 
664
- #: .././admin/widgets.php:76
665
  msgid "Something went wrong while retrieving profiles list."
666
  msgstr "Что-то пошло не так во время получения списка профилей."
667
 
668
- #: .././admin/widgets.php:76
669
  msgid "More details"
670
  msgstr "Больше деталей"
671
 
672
- #: .././admin/widgets.php:89 .././admin/widgets.php:100
673
  msgid "An admin should asign a default Google Analytics Profile."
674
  msgstr "Админ должен быть подписан на профиль Google Analytics по умолчанию."
675
 
676
- #: .././admin/widgets.php:89 .././admin/widgets.php:100
677
  msgid "Select Domain"
678
  msgstr "Выбрать домен"
679
 
680
- #: .././admin/widgets.php:105
681
  msgid ""
682
  "Something went wrong while retrieving property data. You need to create and properly configure a "
683
  "Google Analytics account:"
@@ -685,187 +711,204 @@ msgstr ""
685
  "Что-то пошло не так во время извлечения данных. Вам нужно создать и должным образом настроить "
686
  "учетную запись Google Analytics:"
687
 
688
- #: .././admin/widgets.php:105
689
  msgid "Find out more!"
690
  msgstr "Узнать больше!"
691
 
692
- #: .././admin/widgets.php:125
693
  msgid "Real-Time"
694
  msgstr "В реальном времени"
695
 
696
- #: .././admin/widgets.php:129 .././front/widgets.php:77 .././front/widgets.php:183
697
- msgid "Last 14 Days"
698
- msgstr "Последние 14 дней"
699
-
700
- #: .././admin/widgets.php:135 .././admin/widgets.php:871 .././front/widgets.php:46
701
- #: .././tools/gapi.php:406 .././tools/gapi.php:567 .././tools/gapi.php:613 .././tools/gapi.php:676
702
- #: .././tools/gapi.php:786 .././tools/gapi.php:827 .././tools/gapi.php:919
703
  msgid "Sessions"
704
  msgstr "Сессии"
705
 
706
- #: .././admin/widgets.php:141 .././tools/gapi.php:521
707
  msgid "Pages"
708
  msgstr "Страницы"
709
 
710
- #: .././admin/widgets.php:232 .././admin/widgets.php:472
711
  msgid "REFERRAL"
712
  msgstr "РЕФЕРАЛЬНЫЙ"
713
 
714
- #: .././admin/widgets.php:236 .././admin/widgets.php:473
715
  msgid "ORGANIC"
716
  msgstr "ОРГАНИЧЕСКИЙ"
717
 
718
- #: .././admin/widgets.php:240 .././admin/widgets.php:360 .././admin/widgets.php:474
719
  msgid "SOCIAL"
720
  msgstr "СОЦИАЛЬНЫЙ"
721
 
722
- #: .././admin/widgets.php:244 .././admin/widgets.php:363 .././admin/widgets.php:475
723
  msgid "CAMPAIGN"
724
  msgstr "КАМПАНИЯ"
725
 
726
- #: .././admin/widgets.php:248 .././admin/widgets.php:366 .././admin/widgets.php:478
727
  msgid "DIRECT"
728
  msgstr "ПРЯМОЙ"
729
 
730
- #: .././admin/widgets.php:252 .././admin/widgets.php:479
731
  msgid "NEW"
732
  msgstr "НОВЫЙ"
733
 
734
- #: .././admin/widgets.php:354
735
  msgid "REFERRALS"
736
  msgstr "РЕФЕРАЛЫ"
737
 
738
- #: .././admin/widgets.php:357
739
  msgid "KEYWORDS"
740
  msgstr "КЛЮЧЕВЫЕ СЛОВА"
741
 
742
- #: .././front/item-reports.php:143
743
- msgid "Views vs UniqueViews"
744
- msgstr "Просмотры против Уникальные просмотры"
745
-
746
- #: .././front/item-reports.php:193
747
- msgid "Google Analytics Reports"
748
- msgstr "Отчеты Google Analytics"
749
-
750
- #: .././front/widgets.php:23
751
  msgid "Will display your google analytics stats in a widget"
752
  msgstr "Покажет вашу статистику Google Analytics в виджете"
753
 
754
- #: .././front/widgets.php:46 .././tools/gapi.php:827
755
  msgid "trend"
756
  msgstr "тренд"
757
 
758
- #: .././front/widgets.php:133
759
  msgid "Period:"
760
  msgstr "Период:"
761
 
762
- #: .././front/widgets.php:133
763
  msgid "Sessions:"
764
  msgstr "Сессии:"
765
 
766
- #: .././front/widgets.php:137
767
  msgid "generated by"
768
  msgstr "сгенерировано"
769
 
770
- #: .././front/widgets.php:147
771
  msgid "Google Analytics Stats"
772
  msgstr "Статистика Google Analytics"
773
 
774
- #: .././front/widgets.php:154
775
  msgid "Title:"
776
  msgstr "Заголовок:"
777
 
778
- #: .././front/widgets.php:161
779
  msgid "Display:"
780
  msgstr "Отображение:"
781
 
782
- #: .././front/widgets.php:165
783
  msgid "Chart & Totals"
784
  msgstr "График и Всего"
785
 
786
- #: .././front/widgets.php:166
787
  msgid "Chart"
788
  msgstr "График"
789
 
790
- #: .././front/widgets.php:167
791
  msgid "Totals"
792
  msgstr "Всего"
793
 
794
- #: .././front/widgets.php:171
795
  msgid "Anonymize stats:"
796
  msgstr "Анонимная статистика:"
797
 
798
- #: .././front/widgets.php:178
799
  msgid "Stats for:"
800
  msgstr "Статистика для:"
801
 
802
- #: .././front/widgets.php:188
803
  msgid "Give credits:"
804
  msgstr "Оцените:"
805
 
806
- #: .././gadwp.php:46 .././gadwp.php:55 .././gadwp.php:63
807
  msgid "This is not allowed, read the documentation!"
808
  msgstr "Это не допускается, прочитайте документацию!"
809
 
810
- #: .././tools/gapi.php:134
811
  msgid "Use this link to get your access code:"
812
  msgstr "Используйте эту ссылку, чтобы получить код доступа:"
813
 
814
- #: .././tools/gapi.php:134
815
  msgid "Get Access Code"
816
  msgstr "Получить код доступа"
817
 
818
- #: .././tools/gapi.php:138 .././tools/gapi.php:139
819
  msgid "Use the red link to get your access code!"
820
  msgstr "Используйте красную ссылку, чтобы получить код доступа!"
821
 
822
- #: .././tools/gapi.php:138
823
  msgid "Access Code:"
824
  msgstr "Код доступа:"
825
 
826
- #: .././tools/gapi.php:145
827
  msgid "Save Access Code"
828
  msgstr "Сохранить код доступа"
829
 
830
- #: .././tools/gapi.php:400
831
  msgid "Organic Searches"
832
  msgstr "Органические запросы поиска"
833
 
834
- #: .././tools/gapi.php:403
835
  msgid "Unique Page Views"
836
  msgstr "Уникальные просмотры страниц"
837
 
838
- #: .././tools/gapi.php:411
839
  msgid "Hour"
840
  msgstr "Час"
841
 
842
- #: .././tools/gapi.php:414 .././tools/gapi.php:826 .././tools/gapi.php:876
843
  msgid "Date"
844
  msgstr "Дата"
845
 
846
- #: .././tools/gapi.php:522 .././tools/gapi.php:877
847
  msgid "Views"
848
  msgstr "Просмотры"
849
 
850
- #: .././tools/gapi.php:640
851
  msgid "Countries"
852
  msgstr "Страны"
853
 
854
- #: .././tools/gapi.php:650
855
  msgid "Cities from"
856
  msgstr "Из городов"
857
 
858
- #: .././tools/gapi.php:722
859
  msgid "Channels"
860
  msgstr "Каналы"
861
 
862
- #: .././tools/gapi.php:785
863
  msgid "Type"
864
  msgstr "Тип"
865
 
866
- #: .././tools/gapi.php:878
867
- msgid "UniqueViews"
868
- msgstr "Уникальные просмотры"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
869
 
870
  #~ msgid "Read %s for more information about Frontend Features and Options."
871
  #~ msgstr "Читайте %s для дополнительной информации об особенностях и опциях."
4
  msgstr ""
5
  "Project-Id-Version: Google Analytics Dashboard for WP\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-dashboard-for-wp\n"
7
+ "POT-Creation-Date: 2015-07-05 16:16+0300\n"
8
+ "PO-Revision-Date: 2015-07-05 16:16+0300\n"
9
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
10
  "Language-Team: SebWeo.com\n"
11
  "Language: ru_RU\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n"
16
  "%100>=20) ? 1 : 2);\n"
17
+ "X-Generator: Poedit 1.8.2\n"
18
  "X-Poedit-SourceCharset: UTF-8\n"
19
+ "X-Poedit-KeywordsList: __;_e;_n;_x;_ex;_nx;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;"
20
+ "esc_html_e;esc_html_x;_n_noop;_nx_noop\n"
21
  "X-Poedit-Basepath: .\n"
22
  "X-Poedit-SearchPath-0: ../.\n"
23
 
24
+ #: .././admin/item-reports.php:61 .././front/item-reports.php:29
25
  msgid "Analytics"
26
  msgstr "Аналитика"
27
 
28
+ #: .././admin/settings.php:89 .././admin/settings.php:184 .././admin/settings.php:318
29
+ #: .././admin/settings.php:795 .././admin/settings.php:1068
30
  msgid "Settings saved."
31
  msgstr "Настройки сохранены."
32
 
33
+ #: .././admin/settings.php:91 .././admin/settings.php:186 .././admin/settings.php:320
34
+ #: .././admin/settings.php:772 .././admin/settings.php:782 .././admin/settings.php:791
35
+ #: .././admin/settings.php:797 .././admin/settings.php:808 .././admin/settings.php:1029
36
+ #: .././admin/settings.php:1054 .././admin/settings.php:1064 .././admin/settings.php:1070
37
+ #: .././admin/settings.php:1081
38
  msgid "Cheating Huh?"
39
  msgstr "Читерство?"
40
 
41
+ #: .././admin/settings.php:95 .././admin/settings.php:190 .././admin/settings.php:324
42
+ #: .././admin/settings.php:641 .././admin/settings.php:823 .././admin/settings.php:1095
43
  #, php-format
44
  msgid "Something went wrong, check %1$s or %2$s."
45
  msgstr "Что-то пошло не так, проверьте %1$s или %2$s."
46
 
47
+ #: .././admin/settings.php:95 .././admin/settings.php:190 .././admin/settings.php:324
48
+ #: .././admin/settings.php:641 .././admin/settings.php:823 .././admin/settings.php:1095
49
+ #: .././admin/setup.php:46 .././admin/setup.php:59
50
  msgid "Errors & Debug"
51
  msgstr "Ошибки и отладка"
52
 
53
+ #: .././admin/settings.php:95 .././admin/settings.php:190 .././admin/settings.php:324
54
+ #: .././admin/settings.php:641 .././admin/settings.php:823 .././admin/settings.php:1095
55
  msgid "authorize the plugin"
56
  msgstr "авторизация плагина"
57
 
58
+ #: .././admin/settings.php:100
59
  msgid "Google Analytics Frontend Settings"
60
  msgstr "Настройки фронтэнда Google Analytics"
61
 
62
+ #: .././admin/settings.php:110 .././admin/settings.php:205
63
  msgid "Permissions"
64
  msgstr "Разрешение"
65
 
66
+ #: .././admin/settings.php:113 .././admin/settings.php:208
67
  msgid "Show stats to:"
68
  msgstr "Показать статистику для:"
69
 
70
+ #: .././admin/settings.php:154
71
+ msgid "enable web page reports on frontend"
72
+ msgstr ""
 
 
 
 
73
 
74
+ #: .././admin/settings.php:161 .././admin/settings.php:297 .././admin/settings.php:598
75
+ #: .././admin/settings.php:943 .././admin/settings.php:1232
76
  msgid "Save Changes"
77
  msgstr "Сохранить изменения"
78
 
79
+ #: .././admin/settings.php:195
80
  msgid "Google Analytics Backend Settings"
81
  msgstr "Настройки бекэнда Google Analytics"
82
 
83
+ #: .././admin/settings.php:251
84
  msgid "enable Switch View functionality"
85
  msgstr "включить функциональность Сменить вид"
86
 
87
+ #: .././admin/settings.php:262
88
  msgid "enable reports on Posts List and Pages List"
89
  msgstr "включить отчеты о сообщениях в списке постов и страниц"
90
 
91
+ #: .././admin/settings.php:273
92
  msgid "enable the main Dashboard Widget"
93
  msgstr "включить основной виджет в Консоли"
94
 
95
+ #: .././admin/settings.php:277
96
  msgid "Real-Time Settings"
97
  msgstr "Настройки Реального режима"
98
 
99
+ #: .././admin/settings.php:280
100
  msgid "Maximum number of pages to display on real-time tab:"
101
  msgstr "Максимальное количество страниц для отображения на вкладке в режиме реального времени:"
102
 
103
+ #: .././admin/settings.php:285
104
  msgid "Location Settings"
105
  msgstr "Настройки локации"
106
 
107
+ #: .././admin/settings.php:289
108
  msgid "Target Geo Map to country:"
109
  msgstr "Целевая Geo-карта для страны:"
110
 
111
+ #: .././admin/settings.php:327
112
  msgid ""
113
  "The tracking component is disabled. You should set <strong>Tracking Options</strong> to "
114
  "<strong>Enabled</strong>"
116
  "Компонент отслеживания отключен. Вы должны установить <strong>Опции трекинга</strong> на "
117
  "<strong>Включено</strong>"
118
 
119
+ #: .././admin/settings.php:332
120
  msgid "Google Analytics Tracking Code"
121
  msgstr "трекинг-код Google Analytics"
122
 
123
+ #: .././admin/settings.php:341
124
  msgid "Basic Settings"
125
  msgstr "Базовые настройки"
126
 
127
+ #: .././admin/settings.php:342 .././admin/settings.php:408
128
  msgid "Events Tracking"
129
  msgstr "Отслеживание событий"
130
 
131
+ #: .././admin/settings.php:343 .././admin/settings.php:456
132
  msgid "Custom Definitions"
133
  msgstr "Пользовательские Определения"
134
 
135
+ #: .././admin/settings.php:344 .././admin/settings.php:554 .././admin/settings.php:1215
136
  msgid "Exclude Tracking"
137
  msgstr "Исключить отслеживание"
138
 
139
+ #: .././admin/settings.php:345
140
  msgid "Advanced Settings"
141
  msgstr "Расширенные настройки"
142
 
143
+ #: .././admin/settings.php:353
144
  msgid "Tracking Settings"
145
  msgstr "Настройки отслеживания"
146
 
147
+ #: .././admin/settings.php:356
148
  msgid "Tracking Options:"
149
  msgstr "Опции отслеживания:"
150
 
151
+ #: .././admin/settings.php:358
152
  msgid "Disabled"
153
  msgstr "Выключено"
154
 
155
+ #: .././admin/settings.php:359
156
  msgid "Enabled"
157
  msgstr "Включено"
158
 
159
+ #: .././admin/settings.php:367 .././admin/settings.php:888 .././admin/settings.php:910
160
+ #: .././admin/settings.php:1188 .././admin/widgets.php:61
161
  msgid "View Name:"
162
  msgstr "Вид имени:"
163
 
164
+ #: .././admin/settings.php:367 .././admin/settings.php:910
165
  msgid "Tracking ID:"
166
  msgstr "ID отслеживания"
167
 
168
+ #: .././admin/settings.php:367 .././admin/settings.php:910
169
  msgid "Default URL:"
170
  msgstr "URL по умолчанию:"
171
 
172
+ #: .././admin/settings.php:367 .././admin/settings.php:910
173
  msgid "Time Zone:"
174
  msgstr "Временная зона:"
175
 
176
+ #: .././admin/settings.php:372
177
  msgid "Basic Tracking"
178
  msgstr "Базовое отслеживание"
179
 
180
+ #: .././admin/settings.php:375
181
  msgid "Tracking Type:"
182
  msgstr "Тип отслеживания:"
183
 
184
+ #: .././admin/settings.php:377
185
  msgid "Classic Analytics"
186
  msgstr "Классическая аналитика"
187
 
188
+ #: .././admin/settings.php:378
189
  msgid "Universal Analytics"
190
  msgstr "Универсальная аналитика"
191
 
192
+ #: .././admin/settings.php:389
193
  msgid "anonymize IPs while tracking"
194
  msgstr "скрывать IP при отслеживании"
195
 
196
+ #: .././admin/settings.php:400
197
  msgid "enable remarketing, demographics and interests reports"
198
  msgstr "включить ремаркетинг, отчеты по демографии и интересам"
199
 
200
+ #: .././admin/settings.php:418
201
  msgid "track downloads, mailto and outbound links"
202
  msgstr "отслеживать загрузки, mailto и исходящие ссылки"
203
 
204
+ #: .././admin/settings.php:422
205
  msgid "Downloads Regex:"
206
  msgstr "Загрузки Regex:"
207
 
208
+ #: .././admin/settings.php:433
209
  msgid "track affiliate links matching this regex"
210
  msgstr "отслеживать партнерские ссылки, соответствующие этому регулярному выражению"
211
 
212
+ #: .././admin/settings.php:437
213
  msgid "Affiliates Regex:"
214
  msgstr "Аффилиаты:"
215
 
216
+ #: .././admin/settings.php:448
217
  msgid "track fragment identifiers, hashmarks (#) in URI links"
218
  msgstr "отслеживать идентификаторы фрагментов, хештеги (#) в URI ссылках"
219
 
220
+ #: .././admin/settings.php:459
221
  msgid "Authors:"
222
  msgstr "Авторы:"
223
 
224
+ #: .././admin/settings.php:467
225
  msgid "Publication Year:"
226
  msgstr "Год публикации:"
227
 
228
+ #: .././admin/settings.php:475
229
  msgid "Categories:"
230
  msgstr "Категории:"
231
 
232
+ #: .././admin/settings.php:483
233
  msgid "User Type:"
234
  msgstr "Тип пользователя:"
235
 
236
+ #: .././admin/settings.php:495
237
  msgid "Advanced Tracking"
238
  msgstr "Расширенное отслеживание"
239
 
240
+ #: .././admin/settings.php:498
241
  msgid "Page Speed SR:"
242
  msgstr "SR скорости страницы:"
243
 
244
+ #: .././admin/settings.php:509
245
  msgid "exclude events from bounce-rate calculation"
246
  msgstr "исключить показатель отказов из расчета"
247
 
248
+ #: .././admin/settings.php:520
249
  msgid "enable enhanced link attribution"
250
  msgstr "включить повышенную атрибуцию ссылок"
251
 
252
+ #: .././admin/settings.php:531
253
  msgid "enable AdSense account linking"
254
  msgstr "включить связывание учетной записи AdSense"
255
 
256
+ #: .././admin/settings.php:542
257
  msgid "enable cross domain tracking"
258
  msgstr "включить отслеживание поддоменов"
259
 
260
+ #: .././admin/settings.php:546
261
  msgid "Cross Domains:"
262
  msgstr "Поддомены:"
263
 
264
+ #: .././admin/settings.php:557
265
  msgid "Exclude tracking for:"
266
  msgstr "Исключить отслеживание для:"
267
 
268
+ #: .././admin/settings.php:645
269
  msgid "Google Analytics Errors & Debugging"
270
  msgstr "Ошибки и отладка Google Analytics"
271
 
272
+ #: .././admin/settings.php:655
273
  msgid "Errors & Details"
274
  msgstr "Ошибки и Детали"
275
 
276
+ #: .././admin/settings.php:656
277
  msgid "Plugin Settings"
278
  msgstr "Настройки плагина"
279
 
280
+ #: .././admin/settings.php:663
281
  msgid "Last Error detected"
282
  msgstr "Последняя обнаруженная ошибка"
283
 
284
+ #: .././admin/settings.php:669 .././admin/settings.php:682
285
  msgid "None"
286
  msgstr "Нет"
287
 
288
+ #: .././admin/settings.php:676
289
  msgid "Error Details"
290
  msgstr "Детали ошибки"
291
 
292
+ #: .././admin/settings.php:696
293
  msgid "Plugin Configuration"
294
  msgstr "Конфигурация плагина"
295
 
296
+ #: .././admin/settings.php:717 .././admin/settings.php:980
297
  msgid ""
298
  "Loading the required libraries. If this results in a blank screen or a fatal error, try this "
299
  "solution:"
301
  "Загрузка необходимых библиотек. Если это приводит к пустому экрану или фатальной ошибке, "
302
  "попробуйте это решение:"
303
 
304
+ #: .././admin/settings.php:717
305
  msgid "Library conflicts between WordPress plugins"
306
  msgstr "Библиотека конфликтов между WordPress плагинами"
307
 
308
+ #: .././admin/settings.php:732 .././admin/settings.php:997
309
  msgid "Plugin authorization succeeded."
310
  msgstr "Авторизация плагин успешна."
311
 
312
+ #: .././admin/settings.php:747 .././admin/settings.php:1020
313
  msgid ""
314
  "The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> (UA-XXXXX-X). Try "
315
  "again, and use the red link to get your access code"
317
  "Код доступа <strong>НЕ</strong> ваш <strong>ID отслеживания</strong> (UA-XXXXX-X). Попробуйте "
318
  "еще раз, и используйте красную ссылку, чтобы получить код доступа"
319
 
320
+ #: .././admin/settings.php:770 .././admin/settings.php:1052
321
  msgid "Cleared Cache."
322
  msgstr "Кеш почищен."
323
 
324
+ #: .././admin/settings.php:779 .././admin/settings.php:1061
325
  msgid "Token Reseted and Revoked."
326
  msgstr "Маркер сброшен и отменен."
327
 
328
+ #: .././admin/settings.php:789
329
  msgid "All errors reseted."
330
  msgstr "Все ошибки сброшены."
331
 
332
+ #: .././admin/settings.php:802 .././admin/settings.php:1075
333
  msgid "All other domains/properties were removed."
334
  msgstr "Все остальные домены/свойства были удалены."
335
 
336
+ #: .././admin/settings.php:813 .././admin/settings.php:1086
337
  msgid "Google Analytics Settings"
338
  msgstr "Настройки Google Analytics"
339
 
340
+ #: .././admin/settings.php:828 .././admin/settings.php:1100
341
  msgid "Use the red link (see below) to generate and get your access code!"
342
  msgstr "Используйте красную ссылку (см ниже), чтобы генерировать и получить код доступа!"
343
 
344
+ #: .././admin/settings.php:839 .././admin/settings.php:1128
345
  msgid "Plugin Authorization"
346
  msgstr "Авторизация плагина"
347
 
348
+ #: .././admin/settings.php:844 .././admin/settings.php:1132
349
  #, php-format
350
  msgid ""
351
  "You should watch the %1$s and read this %2$s before proceeding to authorization. This plugin "
354
  "Вы должны смотреть %1$s и читать это %2$s, прежде чем приступить к авторизации. Этот плагин "
355
  "требует правильно настроенного аккаунта Google Analytics!"
356
 
357
+ #: .././admin/settings.php:844 .././admin/settings.php:1132
358
  msgid "video"
359
  msgstr "видео"
360
 
361
+ #: .././admin/settings.php:844 .././admin/settings.php:1132
362
  msgid "tutorial"
363
  msgstr "мануал"
364
 
365
+ #: .././admin/settings.php:849 .././admin/settings.php:1139
366
  msgid "use your own API Project credentials"
367
  msgstr "используйте свои собственные полномочия по API проекта"
368
 
369
+ #: .././admin/settings.php:854 .././admin/settings.php:1147
370
  msgid "API Key:"
371
  msgstr "ключ API:"
372
 
373
+ #: .././admin/settings.php:858 .././admin/settings.php:1151
374
  msgid "Client ID:"
375
  msgstr "ID клиента:"
376
 
377
+ #: .././admin/settings.php:862 .././admin/settings.php:1155
378
  msgid "Client Secret:"
379
  msgstr "Секретный код клиента:"
380
 
381
+ #: .././admin/settings.php:872 .././admin/settings.php:1165
382
  msgid "Clear Authorization"
383
  msgstr "Очистить авторизацию"
384
 
385
+ #: .././admin/settings.php:872 .././admin/settings.php:950 .././admin/settings.php:1165
386
+ #: .././admin/settings.php:1241
387
  msgid "Clear Cache"
388
  msgstr "Очистить кеш"
389
 
390
+ #: .././admin/settings.php:872
391
  msgid "Reset Errors"
392
  msgstr "Сбросить ошибки"
393
 
394
+ #: .././admin/settings.php:878 .././admin/setup.php:42 .././admin/setup.php:58
395
  msgid "General Settings"
396
  msgstr "Общие настройки"
397
 
398
+ #: .././admin/settings.php:881
399
  msgid "Select View:"
400
  msgstr "Выбрать вид:"
401
 
402
+ #: .././admin/settings.php:892 .././admin/settings.php:1192
403
  msgid "Property not found"
404
  msgstr "Свойство не найдено"
405
 
406
+ #: .././admin/settings.php:898
407
  msgid "Lock Selection"
408
  msgstr "Блокировать Выбор"
409
 
410
+ #: .././admin/settings.php:917
411
  msgid "Theme Color:"
412
  msgstr "Цвет темы:"
413
 
414
+ #: .././admin/settings.php:925 .././admin/settings.php:1201
415
  msgid "Automatic Updates"
416
  msgstr "Автоматические обновления"
417
 
418
+ #: .././admin/settings.php:935 .././admin/settings.php:1211
419
  msgid "automatic updates for minor versions (security and maintenance releases only)"
420
  msgstr ""
421
  "автоматические обновления для ранних версий (только релизы безопасности и техническое "
422
  "обслуживание)"
423
 
424
+ #: .././admin/settings.php:950 .././admin/settings.php:1241 .././admin/widgets.php:32
425
  msgid "Authorize Plugin"
426
  msgstr "Авторизация плагина"
427
 
428
+ #: .././admin/settings.php:1026
429
  msgid "Properties refreshed."
430
  msgstr "Свойства обновлены."
431
 
432
+ #: .././admin/settings.php:1110
433
  msgid "Network Setup"
434
  msgstr "Настройка сети"
435
 
436
+ #: .././admin/settings.php:1120
437
  msgid "use a single Google Analytics account for the entire network"
438
  msgstr "использовать одну учетную запись Google Analytics для всей сети"
439
 
440
+ #: .././admin/settings.php:1165
441
  msgid "Refresh Properties"
442
  msgstr "Обновить свойства"
443
 
444
+ #: .././admin/settings.php:1171
445
  msgid "Properties/Views Settings"
446
  msgstr "Настройки Свойства/Вид"
447
 
448
+ #: .././admin/settings.php:1225
449
  msgid "exclude Super Admin tracking for the entire network"
450
  msgstr "исключить отслеживание Супер Админ для всей сети"
451
 
452
+ #: .././admin/settings.php:1273
453
  msgid "Setup Tutorial & Demo"
454
  msgstr "Мануал и Демо настройки"
455
 
456
+ #: .././admin/settings.php:1281
457
+ msgid "Follow & Review"
458
+ msgstr ""
 
 
 
 
 
459
 
460
  #: .././admin/settings.php:1307
461
  #, php-format
510
  msgid "Web Analytics"
511
  msgstr "Web аналитика"
512
 
513
+ #: .././admin/setup.php:41 .././admin/setup.php:57
514
  msgid "Google Analytics"
515
  msgstr "Google аналитика"
516
 
517
+ #: .././admin/setup.php:43
518
  msgid "Backend Settings"
519
  msgstr "Настройки бекэнда"
520
 
521
+ #: .././admin/setup.php:44
522
  msgid "Frontend Settings"
523
  msgstr "Настройки фронтэнда"
524
 
525
+ #: .././admin/setup.php:45
526
  msgid "Tracking Code"
527
  msgstr "Код отслеживания"
528
 
529
+ #: .././admin/setup.php:159 .././admin/widgets.php:117 .././front/setup.php:71
530
  msgid "Today"
531
  msgstr "Сегодня"
532
 
533
+ #: .././admin/setup.php:160 .././admin/widgets.php:118 .././front/setup.php:72
534
  msgid "Yesterday"
535
  msgstr "Вчера"
536
 
537
+ #: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
538
+ #: .././admin/setup.php:164 .././admin/widgets.php:119 .././admin/widgets.php:120
539
+ #: .././admin/widgets.php:121 .././admin/widgets.php:122 .././front/setup.php:73
540
+ #: .././front/setup.php:74 .././front/setup.php:75 .././front/setup.php:76
541
+ #: .././front/widgets.php:64 .././front/widgets.php:67 .././front/widgets.php:70
542
+ #: .././front/widgets.php:158 .././front/widgets.php:159 .././front/widgets.php:160
543
+ #, php-format
544
+ msgid "Last %d Days"
545
+ msgstr "Последние %d дней"
546
+
547
+ #: .././admin/setup.php:165 .././admin/setup.php:166 .././admin/widgets.php:123
548
+ #: .././admin/widgets.php:124 .././front/setup.php:77 .././front/setup.php:78
549
+ #, php-format
550
+ msgid "%s Year"
551
+ msgstr ""
552
 
553
+ #: .././admin/setup.php:165 .././admin/widgets.php:123 .././front/setup.php:77
554
+ msgid "One"
555
+ msgstr ""
 
556
 
557
+ #: .././admin/setup.php:166 .././admin/widgets.php:124 .././front/setup.php:78
558
+ msgid "Three"
559
+ msgstr ""
560
 
561
+ #: .././admin/setup.php:169 .././admin/setup.php:185 .././front/setup.php:81
562
+ #: .././front/setup.php:97
563
  msgid "Unique Views"
564
  msgstr "Уникальные просмотры"
565
 
566
+ #: .././admin/setup.php:170 .././admin/setup.php:186 .././admin/widgets.php:130
567
+ #: .././admin/widgets.php:830 .././front/setup.php:82 .././front/setup.php:98
568
+ #: .././tools/gapi.php:358
569
  msgid "Users"
570
  msgstr "Пользователи"
571
 
572
+ #: .././admin/setup.php:171 .././admin/widgets.php:131 .././front/setup.php:83
573
  msgid "Organic"
574
  msgstr "Органический"
575
 
576
+ #: .././admin/setup.php:172 .././admin/setup.php:187 .././admin/widgets.php:132
577
+ #: .././admin/widgets.php:834 .././front/setup.php:84 .././front/setup.php:99
578
+ #: .././tools/gapi.php:361
579
  msgid "Page Views"
580
  msgstr "Просмотры страницы"
581
 
582
+ #: .././admin/setup.php:173 .././admin/setup.php:188 .././admin/widgets.php:133
583
+ #: .././admin/widgets.php:838 .././front/setup.php:85 .././front/setup.php:100
584
+ #: .././tools/gapi.php:364
585
  msgid "Bounce Rate"
586
  msgstr "Показатель отказов"
587
 
588
+ #: .././admin/setup.php:174 .././admin/widgets.php:134 .././front/setup.php:86
589
  msgid "Location"
590
  msgstr "Расположение"
591
 
592
+ #: .././admin/setup.php:175 .././admin/widgets.php:136 .././front/setup.php:87
593
+ #: .././tools/gapi.php:503
594
  msgid "Referrers"
595
  msgstr "Реферальные"
596
 
597
+ #: .././admin/setup.php:176 .././admin/widgets.php:137 .././front/setup.php:88
598
+ #: .././tools/gapi.php:536
599
  msgid "Searches"
600
  msgstr "Поисковые"
601
 
602
+ #: .././admin/setup.php:177 .././admin/widgets.php:138 .././front/setup.php:89
603
  msgid "Traffic Details"
604
  msgstr "Детали трафика"
605
 
606
+ #: .././admin/setup.php:180 .././admin/widgets.php:505 .././admin/widgets.php:590
607
+ #: .././admin/widgets.php:757 .././admin/widgets.php:861 .././front/setup.php:92
608
  msgid "A JavaScript Error is blocking plugin resources!"
609
  msgstr "Ошибки JavaScript блокируют ресурсы плагина!"
610
 
611
+ #: .././admin/setup.php:181 .././admin/widgets.php:681 .././front/setup.php:93
612
  msgid "Traffic Mediums"
613
  msgstr "Среднее по трафику"
614
 
615
+ #: .././admin/setup.php:182 .././admin/widgets.php:696 .././front/setup.php:94
616
  msgid "Visitor Type"
617
  msgstr "Тип посетителей"
618
 
619
+ #: .././admin/setup.php:183 .././admin/widgets.php:711 .././front/setup.php:95
620
  msgid "Social Networks"
621
  msgstr "Социальные сети"
622
 
623
+ #: .././admin/setup.php:184 .././admin/widgets.php:726 .././front/setup.php:96
624
  msgid "Search Engines"
625
  msgstr "Поисковые системы"
626
 
627
+ #: .././admin/setup.php:189 .././admin/widgets.php:842 .././front/setup.php:101
628
  msgid "Organic Search"
629
  msgstr "Органический поиск"
630
 
631
+ #: .././admin/setup.php:190 .././admin/widgets.php:846 .././front/setup.php:102
632
  msgid "Pages/Session"
633
  msgstr "Страниц/Сессию"
634
 
635
+ #: .././admin/setup.php:191 .././admin/widgets.php:517 .././admin/widgets.php:531
636
+ #: .././admin/widgets.php:541 .././admin/widgets.php:602 .././admin/widgets.php:616
637
+ #: .././admin/widgets.php:630 .././admin/widgets.php:644 .././admin/widgets.php:658
638
+ #: .././admin/widgets.php:668 .././admin/widgets.php:770 .././admin/widgets.php:782
639
+ #: .././admin/widgets.php:873 .././admin/widgets.php:887 .././admin/widgets.php:897
640
+ #: .././front/setup.php:103
641
  msgid "Invalid response, more details in JavaScript Console (F12)."
642
  msgstr "Неверный ответ, подробнее в консоли JavaScript (F12)."
643
 
644
+ #: .././admin/setup.php:192 .././front/setup.php:104
645
  msgid "Not enough data collected"
646
  msgstr "Недостаточно данных собрано"
647
 
648
+ #: .././admin/setup.php:193 .././admin/widgets.php:522 .././admin/widgets.php:536
649
+ #: .././admin/widgets.php:607 .././admin/widgets.php:621 .././admin/widgets.php:635
650
+ #: .././admin/widgets.php:649 .././admin/widgets.php:663 .././admin/widgets.php:775
651
+ #: .././admin/widgets.php:777 .././admin/widgets.php:878 .././admin/widgets.php:892
652
+ #: .././front/setup.php:105 .././front/widgets.php:100
653
  msgid "This report is unavailable"
654
  msgstr "Этот отчет недоступен"
655
 
656
+ #: .././admin/setup.php:194 .././front/setup.php:106
657
  msgid "report generated by"
658
  msgstr "Отчет сгенерирован"
659
 
660
+ #: .././admin/setup.php:225
661
  msgid "Settings"
662
  msgstr "Настройки"
663
 
664
+ #: .././admin/setup.php:237
665
+ #, php-format
666
+ msgid "Google Analytics Dashboard for WP has been updated to version %s."
667
+ msgstr ""
668
+
669
+ #: .././admin/setup.php:237
670
+ #, php-format
671
+ msgid "For details, check out %1$s and %2$s."
672
+ msgstr ""
673
+
674
+ #: .././admin/setup.php:237
675
+ msgid "the documentation page"
676
+ msgstr ""
677
+
678
+ #: .././admin/setup.php:237
679
+ msgid "the plugin&#39;s settings page"
680
+ msgstr ""
681
+
682
+ #: .././admin/widgets.php:27 .././front/widgets.php:21
683
  msgid "Google Analytics Dashboard"
684
  msgstr "Консоль Google Analytics"
685
 
686
+ #: .././admin/widgets.php:32
687
  msgid "This plugin needs an authorization:"
688
  msgstr "Этому плагину необходима авторизация:"
689
 
690
+ #: .././admin/widgets.php:66
691
  msgid "Something went wrong while retrieving profiles list."
692
  msgstr "Что-то пошло не так во время получения списка профилей."
693
 
694
+ #: .././admin/widgets.php:66
695
  msgid "More details"
696
  msgstr "Больше деталей"
697
 
698
+ #: .././admin/widgets.php:79 .././admin/widgets.php:90
699
  msgid "An admin should asign a default Google Analytics Profile."
700
  msgstr "Админ должен быть подписан на профиль Google Analytics по умолчанию."
701
 
702
+ #: .././admin/widgets.php:79 .././admin/widgets.php:90
703
  msgid "Select Domain"
704
  msgstr "Выбрать домен"
705
 
706
+ #: .././admin/widgets.php:95
707
  msgid ""
708
  "Something went wrong while retrieving property data. You need to create and properly configure a "
709
  "Google Analytics account:"
711
  "Что-то пошло не так во время извлечения данных. Вам нужно создать и должным образом настроить "
712
  "учетную запись Google Analytics:"
713
 
714
+ #: .././admin/widgets.php:95
715
  msgid "Find out more!"
716
  msgstr "Узнать больше!"
717
 
718
+ #: .././admin/widgets.php:116
719
  msgid "Real-Time"
720
  msgstr "В реальном времени"
721
 
722
+ #: .././admin/widgets.php:129 .././admin/widgets.php:826 .././front/widgets.php:36
723
+ #: .././tools/gapi.php:373 .././tools/gapi.php:503 .././tools/gapi.php:536 .././tools/gapi.php:586
724
+ #: .././tools/gapi.php:666 .././tools/gapi.php:695
 
 
 
 
725
  msgid "Sessions"
726
  msgstr "Сессии"
727
 
728
+ #: .././admin/widgets.php:135 .././tools/gapi.php:471
729
  msgid "Pages"
730
  msgstr "Страницы"
731
 
732
+ #: .././admin/widgets.php:236 .././admin/widgets.php:478
733
  msgid "REFERRAL"
734
  msgstr "РЕФЕРАЛЬНЫЙ"
735
 
736
+ #: .././admin/widgets.php:240 .././admin/widgets.php:479
737
  msgid "ORGANIC"
738
  msgstr "ОРГАНИЧЕСКИЙ"
739
 
740
+ #: .././admin/widgets.php:244 .././admin/widgets.php:364 .././admin/widgets.php:480
741
  msgid "SOCIAL"
742
  msgstr "СОЦИАЛЬНЫЙ"
743
 
744
+ #: .././admin/widgets.php:248 .././admin/widgets.php:367 .././admin/widgets.php:481
745
  msgid "CAMPAIGN"
746
  msgstr "КАМПАНИЯ"
747
 
748
+ #: .././admin/widgets.php:252 .././admin/widgets.php:370 .././admin/widgets.php:484
749
  msgid "DIRECT"
750
  msgstr "ПРЯМОЙ"
751
 
752
+ #: .././admin/widgets.php:256 .././admin/widgets.php:485
753
  msgid "NEW"
754
  msgstr "НОВЫЙ"
755
 
756
+ #: .././admin/widgets.php:358
757
  msgid "REFERRALS"
758
  msgstr "РЕФЕРАЛЫ"
759
 
760
+ #: .././admin/widgets.php:361
761
  msgid "KEYWORDS"
762
  msgstr "КЛЮЧЕВЫЕ СЛОВА"
763
 
764
+ #: .././front/widgets.php:21
 
 
 
 
 
 
 
 
765
  msgid "Will display your google analytics stats in a widget"
766
  msgstr "Покажет вашу статистику Google Analytics в виджете"
767
 
768
+ #: .././front/widgets.php:36 .././tools/gapi.php:695
769
  msgid "trend"
770
  msgstr "тренд"
771
 
772
+ #: .././front/widgets.php:123
773
  msgid "Period:"
774
  msgstr "Период:"
775
 
776
+ #: .././front/widgets.php:123
777
  msgid "Sessions:"
778
  msgstr "Сессии:"
779
 
780
+ #: .././front/widgets.php:127
781
  msgid "generated by"
782
  msgstr "сгенерировано"
783
 
784
+ #: .././front/widgets.php:136
785
  msgid "Google Analytics Stats"
786
  msgstr "Статистика Google Analytics"
787
 
788
+ #: .././front/widgets.php:144
789
  msgid "Title:"
790
  msgstr "Заголовок:"
791
 
792
+ #: .././front/widgets.php:147
793
  msgid "Display:"
794
  msgstr "Отображение:"
795
 
796
+ #: .././front/widgets.php:148
797
  msgid "Chart & Totals"
798
  msgstr "График и Всего"
799
 
800
+ #: .././front/widgets.php:149
801
  msgid "Chart"
802
  msgstr "График"
803
 
804
+ #: .././front/widgets.php:150
805
  msgid "Totals"
806
  msgstr "Всего"
807
 
808
+ #: .././front/widgets.php:154
809
  msgid "Anonymize stats:"
810
  msgstr "Анонимная статистика:"
811
 
812
+ #: .././front/widgets.php:157
813
  msgid "Stats for:"
814
  msgstr "Статистика для:"
815
 
816
+ #: .././front/widgets.php:164
817
  msgid "Give credits:"
818
  msgstr "Оцените:"
819
 
820
+ #: .././gadwp.php:46 .././gadwp.php:54 .././gadwp.php:61
821
  msgid "This is not allowed, read the documentation!"
822
  msgstr "Это не допускается, прочитайте документацию!"
823
 
824
+ #: .././tools/gapi.php:128
825
  msgid "Use this link to get your access code:"
826
  msgstr "Используйте эту ссылку, чтобы получить код доступа:"
827
 
828
+ #: .././tools/gapi.php:128
829
  msgid "Get Access Code"
830
  msgstr "Получить код доступа"
831
 
832
+ #: .././tools/gapi.php:132 .././tools/gapi.php:133
833
  msgid "Use the red link to get your access code!"
834
  msgstr "Используйте красную ссылку, чтобы получить код доступа!"
835
 
836
+ #: .././tools/gapi.php:132
837
  msgid "Access Code:"
838
  msgstr "Код доступа:"
839
 
840
+ #: .././tools/gapi.php:139
841
  msgid "Save Access Code"
842
  msgstr "Сохранить код доступа"
843
 
844
+ #: .././tools/gapi.php:367
845
  msgid "Organic Searches"
846
  msgstr "Органические запросы поиска"
847
 
848
+ #: .././tools/gapi.php:370
849
  msgid "Unique Page Views"
850
  msgstr "Уникальные просмотры страниц"
851
 
852
+ #: .././tools/gapi.php:378
853
  msgid "Hour"
854
  msgstr "Час"
855
 
856
+ #: .././tools/gapi.php:382 .././tools/gapi.php:385 .././tools/gapi.php:695
857
  msgid "Date"
858
  msgstr "Дата"
859
 
860
+ #: .././tools/gapi.php:471
861
  msgid "Views"
862
  msgstr "Просмотры"
863
 
864
+ #: .././tools/gapi.php:557
865
  msgid "Countries"
866
  msgstr "Страны"
867
 
868
+ #: .././tools/gapi.php:567
869
  msgid "Cities from"
870
  msgstr "Из городов"
871
 
872
+ #: .././tools/gapi.php:620
873
  msgid "Channels"
874
  msgstr "Каналы"
875
 
876
+ #: .././tools/gapi.php:666
877
  msgid "Type"
878
  msgstr "Тип"
879
 
880
+ #~ msgid "Last 7 Days"
881
+ #~ msgstr "Последние 7 дней"
882
+
883
+ #~ msgid "Last 30 Days"
884
+ #~ msgstr "Последние 30 дней"
885
+
886
+ #~ msgid "Last 90 Days"
887
+ #~ msgstr "Последние 90 дней"
888
+
889
+ #~ msgid "Last 14 Days"
890
+ #~ msgstr "Последние 14 дней"
891
+
892
+ #~ msgid "show page sessions and users in frontend (after each article)"
893
+ #~ msgstr "Показывать сессии страницы и пользователей в интерфейсе (после каждой статьи)"
894
+
895
+ #~ msgid "show page searches (after each article)"
896
+ #~ msgstr "показать поиски страниц (после каждой статьи)"
897
+
898
+ #~ msgid "Support & Reviews"
899
+ #~ msgstr "Поддержка и Отзывы"
900
+
901
+ #~ msgid "Plugin documentation and support on %s"
902
+ #~ msgstr "Документации и поддержка плагина на %s"
903
+
904
+ #~ msgid "Views vs UniqueViews"
905
+ #~ msgstr "Просмотры против Уникальные просмотры"
906
+
907
+ #~ msgid "Google Analytics Reports"
908
+ #~ msgstr "Отчеты Google Analytics"
909
+
910
+ #~ msgid "UniqueViews"
911
+ #~ msgstr "Уникальные просмотры"
912
 
913
  #~ msgid "Read %s for more information about Frontend Features and Options."
914
  #~ msgstr "Читайте %s для дополнительной информации об особенностях и опциях."
languages/ga-dash.pot CHANGED
@@ -1,10 +1,11 @@
1
  # Copyright (C) 2015 Google Analytics Dashboard for WP
2
  # This file is distributed under the same license as the Google Analytics Dashboard for WP package.
 
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Google Analytics Dashboard for WP\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-dashboard-for-wp\n"
7
- "POT-Creation-Date: 2015-04-27 19:26+0200\n"
8
  "PO-Revision-Date: 2015-04-27 19:26+0200\n"
9
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
10
  "Language-Team: Alin Marcu\n"
@@ -13,868 +14,852 @@ msgstr ""
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
- "X-Generator: Poedit 1.7.6\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
- "X-Poedit-KeywordsList: __;_e\n"
19
  "X-Poedit-Basepath: .\n"
20
  "X-Poedit-SearchPath-0: ../.\n"
21
 
22
- #: .././admin/item-reports.php:67
23
  msgid "Analytics"
24
  msgstr ""
25
 
26
- #: .././admin/settings.php:94 .././admin/settings.php:202 .././admin/settings.php:338
27
- #: .././admin/settings.php:820 .././admin/settings.php:1089
28
  msgid "Settings saved."
29
  msgstr ""
30
 
31
- #: .././admin/settings.php:96 .././admin/settings.php:204 .././admin/settings.php:340
32
- #: .././admin/settings.php:797 .././admin/settings.php:807 .././admin/settings.php:816
33
- #: .././admin/settings.php:822 .././admin/settings.php:834 .././admin/settings.php:1050
34
- #: .././admin/settings.php:1075 .././admin/settings.php:1085 .././admin/settings.php:1091
35
- #: .././admin/settings.php:1103
36
  msgid "Cheating Huh?"
37
  msgstr ""
38
 
39
- #: .././admin/settings.php:100 .././admin/settings.php:208 .././admin/settings.php:344
40
- #: .././admin/settings.php:659 .././admin/settings.php:848 .././admin/settings.php:1116
41
  #, php-format
42
  msgid "Something went wrong, check %1$s or %2$s."
43
  msgstr ""
44
 
45
- #: .././admin/settings.php:100 .././admin/settings.php:208 .././admin/settings.php:344
46
- #: .././admin/settings.php:659 .././admin/settings.php:848 .././admin/settings.php:1116
47
- #: .././admin/setup.php:96 .././admin/setup.php:119
48
  msgid "Errors & Debug"
49
  msgstr ""
50
 
51
- #: .././admin/settings.php:100 .././admin/settings.php:208 .././admin/settings.php:344
52
- #: .././admin/settings.php:659 .././admin/settings.php:848 .././admin/settings.php:1116
53
  msgid "authorize the plugin"
54
  msgstr ""
55
 
56
- #: .././admin/settings.php:105
57
  msgid "Google Analytics Frontend Settings"
58
  msgstr ""
59
 
60
- #: .././admin/settings.php:116
61
- #, php-format
62
- msgid "Read %s for more information about Frontend Features and Options."
63
- msgstr ""
64
-
65
- #: .././admin/settings.php:116 .././admin/settings.php:224 .././admin/settings.php:369
66
- #: .././admin/settings.php:682
67
- msgid "this documentation page"
68
- msgstr ""
69
-
70
- #: .././admin/settings.php:120 .././admin/settings.php:228
71
  msgid "Permissions"
72
  msgstr ""
73
 
74
- #: .././admin/settings.php:123 .././admin/settings.php:231
75
  msgid "Show stats to:"
76
  msgstr ""
77
 
78
- #: .././admin/settings.php:162
79
- msgid "show page sessions and users in frontend (after each article)"
80
- msgstr ""
81
-
82
- #: .././admin/settings.php:173
83
- msgid "show page searches (after each article)"
84
  msgstr ""
85
 
86
- #: .././admin/settings.php:180 .././admin/settings.php:318 .././admin/settings.php:617
87
- #: .././admin/settings.php:965 .././admin/settings.php:1253
88
  msgid "Save Changes"
89
  msgstr ""
90
 
91
- #: .././admin/settings.php:213
92
  msgid "Google Analytics Backend Settings"
93
  msgstr ""
94
 
95
- #: .././admin/settings.php:224
96
- #, php-format
97
- msgid "Read %s for more information about Backend Features and Options."
98
- msgstr ""
99
-
100
- #: .././admin/settings.php:272
101
  msgid "enable Switch View functionality"
102
  msgstr ""
103
 
104
- #: .././admin/settings.php:283
105
  msgid "enable reports on Posts List and Pages List"
106
  msgstr ""
107
 
108
- #: .././admin/settings.php:294
109
  msgid "enable the main Dashboard Widget"
110
  msgstr ""
111
 
112
- #: .././admin/settings.php:298
113
  msgid "Real-Time Settings"
114
  msgstr ""
115
 
116
- #: .././admin/settings.php:301
117
  msgid "Maximum number of pages to display on real-time tab:"
118
  msgstr ""
119
 
120
- #: .././admin/settings.php:306
121
  msgid "Location Settings"
122
  msgstr ""
123
 
124
- #: .././admin/settings.php:310
125
  msgid "Target Geo Map to country:"
126
  msgstr ""
127
 
128
- #: .././admin/settings.php:347
129
  msgid ""
130
  "The tracking component is disabled. You should set <strong>Tracking Options</strong> to "
131
  "<strong>Enabled</strong>"
132
  msgstr ""
133
 
134
- #: .././admin/settings.php:352
135
  msgid "Google Analytics Tracking Code"
136
  msgstr ""
137
 
138
- #: .././admin/settings.php:361
139
  msgid "Basic Settings"
140
  msgstr ""
141
 
142
- #: .././admin/settings.php:362 .././admin/settings.php:429
143
  msgid "Events Tracking"
144
  msgstr ""
145
 
146
- #: .././admin/settings.php:363 .././admin/settings.php:477
147
  msgid "Custom Definitions"
148
  msgstr ""
149
 
150
- #: .././admin/settings.php:364 .././admin/settings.php:575 .././admin/settings.php:1236
151
  msgid "Exclude Tracking"
152
  msgstr ""
153
 
154
- #: .././admin/settings.php:365
155
  msgid "Advanced Settings"
156
  msgstr ""
157
 
158
- #: .././admin/settings.php:369
159
- #, php-format
160
- msgid "For more information about Tracking Options read %s."
161
- msgstr ""
162
-
163
- #: .././admin/settings.php:374
164
  msgid "Tracking Settings"
165
  msgstr ""
166
 
167
- #: .././admin/settings.php:377
168
  msgid "Tracking Options:"
169
  msgstr ""
170
 
171
- #: .././admin/settings.php:379
172
  msgid "Disabled"
173
  msgstr ""
174
 
175
- #: .././admin/settings.php:380
176
  msgid "Enabled"
177
  msgstr ""
178
 
179
- #: .././admin/settings.php:388 .././admin/settings.php:912 .././admin/settings.php:933
180
- #: .././admin/settings.php:1209 .././admin/widgets.php:71
181
  msgid "View Name:"
182
  msgstr ""
183
 
184
- #: .././admin/settings.php:388 .././admin/settings.php:933
185
  msgid "Tracking ID:"
186
  msgstr ""
187
 
188
- #: .././admin/settings.php:388 .././admin/settings.php:933
189
  msgid "Default URL:"
190
  msgstr ""
191
 
192
- #: .././admin/settings.php:388 .././admin/settings.php:933
193
  msgid "Time Zone:"
194
  msgstr ""
195
 
196
- #: .././admin/settings.php:393
197
  msgid "Basic Tracking"
198
  msgstr ""
199
 
200
- #: .././admin/settings.php:396
201
  msgid "Tracking Type:"
202
  msgstr ""
203
 
204
- #: .././admin/settings.php:398
205
  msgid "Classic Analytics"
206
  msgstr ""
207
 
208
- #: .././admin/settings.php:399
209
  msgid "Universal Analytics"
210
  msgstr ""
211
 
212
- #: .././admin/settings.php:410
213
  msgid "anonymize IPs while tracking"
214
  msgstr ""
215
 
216
- #: .././admin/settings.php:421
217
  msgid "enable remarketing, demographics and interests reports"
218
  msgstr ""
219
 
220
- #: .././admin/settings.php:439
221
  msgid "track downloads, mailto and outbound links"
222
  msgstr ""
223
 
224
- #: .././admin/settings.php:443
225
  msgid "Downloads Regex:"
226
  msgstr ""
227
 
228
- #: .././admin/settings.php:454
229
  msgid "track affiliate links matching this regex"
230
  msgstr ""
231
 
232
- #: .././admin/settings.php:458
233
  msgid "Affiliates Regex:"
234
  msgstr ""
235
 
236
- #: .././admin/settings.php:469
237
  msgid "track fragment identifiers, hashmarks (#) in URI links"
238
  msgstr ""
239
 
240
- #: .././admin/settings.php:480
241
  msgid "Authors:"
242
  msgstr ""
243
 
244
- #: .././admin/settings.php:488
245
  msgid "Publication Year:"
246
  msgstr ""
247
 
248
- #: .././admin/settings.php:496
249
  msgid "Categories:"
250
  msgstr ""
251
 
252
- #: .././admin/settings.php:504
253
  msgid "User Type:"
254
  msgstr ""
255
 
256
- #: .././admin/settings.php:516
257
  msgid "Advanced Tracking"
258
  msgstr ""
259
 
260
- #: .././admin/settings.php:519
261
  msgid "Page Speed SR:"
262
  msgstr ""
263
 
264
- #: .././admin/settings.php:530
265
  msgid "exclude events from bounce-rate calculation"
266
  msgstr ""
267
 
268
- #: .././admin/settings.php:541
269
  msgid "enable enhanced link attribution"
270
  msgstr ""
271
 
272
- #: .././admin/settings.php:552
273
  msgid "enable AdSense account linking"
274
  msgstr ""
275
 
276
- #: .././admin/settings.php:563
277
  msgid "enable cross domain tracking"
278
  msgstr ""
279
 
280
- #: .././admin/settings.php:567
281
  msgid "Cross Domains:"
282
  msgstr ""
283
 
284
- #: .././admin/settings.php:578
285
  msgid "Exclude tracking for:"
286
  msgstr ""
287
 
288
- #: .././admin/settings.php:663
289
  msgid "Google Analytics Errors & Debugging"
290
  msgstr ""
291
 
292
- #: .././admin/settings.php:673
293
  msgid "Errors & Details"
294
  msgstr ""
295
 
296
- #: .././admin/settings.php:674
297
  msgid "Plugin Settings"
298
  msgstr ""
299
 
300
- #: .././admin/settings.php:682
301
- #, php-format
302
- msgid "For errors and/or other issues check %s and related resources."
303
- msgstr ""
304
-
305
- #: .././admin/settings.php:687
306
  msgid "Last Error detected"
307
  msgstr ""
308
 
309
- #: .././admin/settings.php:693 .././admin/settings.php:706
310
  msgid "None"
311
  msgstr ""
312
 
313
- #: .././admin/settings.php:700
314
  msgid "Error Details"
315
  msgstr ""
316
 
317
- #: .././admin/settings.php:720
318
  msgid "Plugin Configuration"
319
  msgstr ""
320
 
321
- #: .././admin/settings.php:742 .././admin/settings.php:1000
322
  msgid ""
323
  "Loading the required libraries. If this results in a blank screen or a fatal error, try this "
324
  "solution:"
325
  msgstr ""
326
 
327
- #: .././admin/settings.php:742
328
  msgid "Library conflicts between WordPress plugins"
329
  msgstr ""
330
 
331
- #: .././admin/settings.php:757 .././admin/settings.php:1017
332
  msgid "Plugin authorization succeeded."
333
  msgstr ""
334
 
335
- #: .././admin/settings.php:772 .././admin/settings.php:1041
336
  msgid ""
337
  "The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> (UA-XXXXX-X). Try "
338
  "again, and use the red link to get your access code"
339
  msgstr ""
340
 
341
- #: .././admin/settings.php:795 .././admin/settings.php:1073
342
  msgid "Cleared Cache."
343
  msgstr ""
344
 
345
- #: .././admin/settings.php:804 .././admin/settings.php:1082
346
  msgid "Token Reseted and Revoked."
347
  msgstr ""
348
 
349
- #: .././admin/settings.php:814
350
  msgid "All errors reseted."
351
  msgstr ""
352
 
353
- #: .././admin/settings.php:827 .././admin/settings.php:1096
354
  msgid "All other domains/properties were removed."
355
  msgstr ""
356
 
357
- #: .././admin/settings.php:839 .././admin/settings.php:1108
358
  msgid "Google Analytics Settings"
359
  msgstr ""
360
 
361
- #: .././admin/settings.php:853 .././admin/settings.php:1121
362
  msgid "Use the red link (see below) to generate and get your access code!"
363
  msgstr ""
364
 
365
- #: .././admin/settings.php:864 .././admin/settings.php:1149
366
  msgid "Plugin Authorization"
367
  msgstr ""
368
 
369
- #: .././admin/settings.php:869 .././admin/settings.php:1153
370
  #, php-format
371
  msgid ""
372
  "You should watch the %1$s and read this %2$s before proceeding to authorization. This plugin "
373
  "requires a properly configured Google Analytics account!"
374
  msgstr ""
375
 
376
- #: .././admin/settings.php:869 .././admin/settings.php:1153
377
  msgid "video"
378
  msgstr ""
379
 
380
- #: .././admin/settings.php:869 .././admin/settings.php:1153
381
  msgid "tutorial"
382
  msgstr ""
383
 
384
- #: .././admin/settings.php:874 .././admin/settings.php:1160
385
  msgid "use your own API Project credentials"
386
  msgstr ""
387
 
388
- #: .././admin/settings.php:878 .././admin/settings.php:1167
389
  msgid "API Key:"
390
  msgstr ""
391
 
392
- #: .././admin/settings.php:882 .././admin/settings.php:1171
393
  msgid "Client ID:"
394
  msgstr ""
395
 
396
- #: .././admin/settings.php:886 .././admin/settings.php:1175
397
  msgid "Client Secret:"
398
  msgstr ""
399
 
400
- #: .././admin/settings.php:896 .././admin/settings.php:1185
401
  msgid "Clear Authorization"
402
  msgstr ""
403
 
404
- #: .././admin/settings.php:896 .././admin/settings.php:971 .././admin/settings.php:1185
405
- #: .././admin/settings.php:1260
406
  msgid "Clear Cache"
407
  msgstr ""
408
 
409
- #: .././admin/settings.php:896
410
  msgid "Reset Errors"
411
  msgstr ""
412
 
413
- #: .././admin/settings.php:902 .././admin/setup.php:80 .././admin/setup.php:115
414
  msgid "General Settings"
415
  msgstr ""
416
 
417
- #: .././admin/settings.php:905
418
  msgid "Select View:"
419
  msgstr ""
420
 
421
- #: .././admin/settings.php:916 .././admin/settings.php:1213
422
  msgid "Property not found"
423
  msgstr ""
424
 
425
- #: .././admin/settings.php:921
426
  msgid "Lock Selection"
427
  msgstr ""
428
 
429
- #: .././admin/settings.php:939
430
  msgid "Theme Color:"
431
  msgstr ""
432
 
433
- #: .././admin/settings.php:947 .././admin/settings.php:1222
434
  msgid "Automatic Updates"
435
  msgstr ""
436
 
437
- #: .././admin/settings.php:957 .././admin/settings.php:1232
438
  msgid "automatic updates for minor versions (security and maintenance releases only)"
439
  msgstr ""
440
 
441
- #: .././admin/settings.php:971 .././admin/settings.php:1260 .././admin/widgets.php:42
442
  msgid "Authorize Plugin"
443
  msgstr ""
444
 
445
- #: .././admin/settings.php:1047
446
  msgid "Properties refreshed."
447
  msgstr ""
448
 
449
- #: .././admin/settings.php:1131
450
  msgid "Network Setup"
451
  msgstr ""
452
 
453
- #: .././admin/settings.php:1141
454
  msgid "use a single Google Analytics account for the entire network"
455
  msgstr ""
456
 
457
- #: .././admin/settings.php:1185
458
  msgid "Refresh Properties"
459
  msgstr ""
460
 
461
- #: .././admin/settings.php:1191
462
  msgid "Properties/Views Settings"
463
  msgstr ""
464
 
465
- #: .././admin/settings.php:1246
466
  msgid "exclude Super Admin tracking for the entire network"
467
  msgstr ""
468
 
469
- #: .././admin/settings.php:1291
470
  msgid "Setup Tutorial & Demo"
471
  msgstr ""
472
 
473
- #: .././admin/settings.php:1299
474
- msgid "Support & Reviews"
475
- msgstr ""
476
-
477
- #: .././admin/settings.php:1306
478
- #, php-format
479
- msgid "Plugin documentation and support on %s"
480
  msgstr ""
481
 
482
- #: .././admin/settings.php:1313
483
  #, php-format
484
  msgid "Your feedback and review are both important, %s!"
485
  msgstr ""
486
 
487
- #: .././admin/settings.php:1313
488
  msgid "rate this plugin"
489
  msgstr ""
490
 
491
- #: .././admin/settings.php:1319
492
  msgid "Further Reading"
493
  msgstr ""
494
 
495
- #: .././admin/settings.php:1326
496
  #, php-format
497
  msgid "%s by moving your website to HTTPS/SSL."
498
  msgstr ""
499
 
500
- #: .././admin/settings.php:1326
501
  msgid "Improve search rankings"
502
  msgstr ""
503
 
504
- #: .././admin/settings.php:1333
505
  #, php-format
506
  msgid "Other %s written by the same author"
507
  msgstr ""
508
 
509
- #: .././admin/settings.php:1333
510
  msgid "WordPress Plugins"
511
  msgstr ""
512
 
513
- #: .././admin/settings.php:1339
514
  msgid "Other Services"
515
  msgstr ""
516
 
517
- #: .././admin/settings.php:1346
518
  #, php-format
519
  msgid "Speed up your website and plug into a whole %s"
520
  msgstr ""
521
 
522
- #: .././admin/settings.php:1346
523
  msgid "new level of site speed"
524
  msgstr ""
525
 
526
- #: .././admin/settings.php:1353
527
  #, php-format
528
  msgid "%s service with users tracking at IP level."
529
  msgstr ""
530
 
531
- #: .././admin/settings.php:1353
532
  msgid "Web Analytics"
533
  msgstr ""
534
 
535
- #: .././admin/setup.php:76 .././admin/setup.php:111
536
  msgid "Google Analytics"
537
  msgstr ""
538
 
539
- #: .././admin/setup.php:84
540
  msgid "Backend Settings"
541
  msgstr ""
542
 
543
- #: .././admin/setup.php:88
544
  msgid "Frontend Settings"
545
  msgstr ""
546
 
547
- #: .././admin/setup.php:92
548
  msgid "Tracking Code"
549
  msgstr ""
550
 
551
- #: .././admin/setup.php:195 .././admin/widgets.php:126
552
  msgid "Today"
553
  msgstr ""
554
 
555
- #: .././admin/setup.php:196 .././admin/widgets.php:127
556
  msgid "Yesterday"
557
  msgstr ""
558
 
559
- #: .././admin/setup.php:197 .././admin/widgets.php:128 .././front/widgets.php:74
560
- #: .././front/widgets.php:182
561
- msgid "Last 7 Days"
 
 
 
 
 
 
 
 
 
 
 
562
  msgstr ""
563
 
564
- #: .././admin/setup.php:198 .././admin/widgets.php:130 .././front/widgets.php:80
565
- #: .././front/widgets.php:184
566
- msgid "Last 30 Days"
567
  msgstr ""
568
 
569
- #: .././admin/setup.php:199 .././admin/widgets.php:131
570
- msgid "Last 90 Days"
571
  msgstr ""
572
 
573
- #: .././admin/setup.php:202 .././admin/setup.php:218
 
574
  msgid "Unique Views"
575
  msgstr ""
576
 
577
- #: .././admin/setup.php:203 .././admin/setup.php:219 .././admin/widgets.php:136
578
- #: .././admin/widgets.php:875 .././tools/gapi.php:391
 
579
  msgid "Users"
580
  msgstr ""
581
 
582
- #: .././admin/setup.php:204 .././admin/widgets.php:137
583
  msgid "Organic"
584
  msgstr ""
585
 
586
- #: .././admin/setup.php:205 .././admin/setup.php:220 .././admin/widgets.php:138
587
- #: .././admin/widgets.php:879 .././tools/gapi.php:394
 
588
  msgid "Page Views"
589
  msgstr ""
590
 
591
- #: .././admin/setup.php:206 .././admin/setup.php:221 .././admin/widgets.php:139
592
- #: .././admin/widgets.php:883 .././tools/gapi.php:397
 
593
  msgid "Bounce Rate"
594
  msgstr ""
595
 
596
- #: .././admin/setup.php:207 .././admin/widgets.php:140
597
  msgid "Location"
598
  msgstr ""
599
 
600
- #: .././admin/setup.php:208 .././admin/widgets.php:142 .././tools/gapi.php:566
 
601
  msgid "Referrers"
602
  msgstr ""
603
 
604
- #: .././admin/setup.php:209 .././admin/widgets.php:143 .././tools/gapi.php:612
605
- #: .././tools/gapi.php:922
606
  msgid "Searches"
607
  msgstr ""
608
 
609
- #: .././admin/setup.php:210 .././admin/widgets.php:144
610
  msgid "Traffic Details"
611
  msgstr ""
612
 
613
- #: .././admin/setup.php:213 .././admin/widgets.php:510 .././admin/widgets.php:607
614
- #: .././admin/widgets.php:805 .././admin/widgets.php:917 .././front/item-reports.php:94
615
  msgid "A JavaScript Error is blocking plugin resources!"
616
  msgstr ""
617
 
618
- #: .././admin/setup.php:214 .././admin/widgets.php:713
619
  msgid "Traffic Mediums"
620
  msgstr ""
621
 
622
- #: .././admin/setup.php:215 .././admin/widgets.php:729
623
  msgid "Visitor Type"
624
  msgstr ""
625
 
626
- #: .././admin/setup.php:216 .././admin/widgets.php:745
627
  msgid "Social Networks"
628
  msgstr ""
629
 
630
- #: .././admin/setup.php:217 .././admin/widgets.php:761
631
  msgid "Search Engines"
632
  msgstr ""
633
 
634
- #: .././admin/setup.php:222 .././admin/widgets.php:887
635
  msgid "Organic Search"
636
  msgstr ""
637
 
638
- #: .././admin/setup.php:223 .././admin/widgets.php:891
639
  msgid "Pages/Session"
640
  msgstr ""
641
 
642
- #: .././admin/setup.php:224 .././admin/widgets.php:523 .././admin/widgets.php:541
643
- #: .././admin/widgets.php:620 .././admin/widgets.php:638 .././admin/widgets.php:657
644
- #: .././admin/widgets.php:676 .././admin/widgets.php:696 .././admin/widgets.php:819
645
- #: .././admin/widgets.php:930 .././admin/widgets.php:949 .././front/item-reports.php:106
646
- #: .././front/item-reports.php:125
 
647
  msgid "Invalid response, more details in JavaScript Console (F12)."
648
  msgstr ""
649
 
650
- #: .././admin/setup.php:225
651
  msgid "Not enough data collected"
652
  msgstr ""
653
 
654
- #: .././admin/setup.php:226 .././admin/widgets.php:528 .././admin/widgets.php:546
655
- #: .././admin/widgets.php:625 .././admin/widgets.php:643 .././admin/widgets.php:662
656
- #: .././admin/widgets.php:681 .././admin/widgets.php:701 .././admin/widgets.php:824
657
- #: .././admin/widgets.php:827 .././admin/widgets.php:935 .././admin/widgets.php:954
658
- #: .././front/item-reports.php:111 .././front/item-reports.php:130 .././front/widgets.php:110
659
  msgid "This report is unavailable"
660
  msgstr ""
661
 
662
- #: .././admin/setup.php:227
663
  msgid "report generated by"
664
  msgstr ""
665
 
666
- #: .././admin/setup.php:267
667
  msgid "Settings"
668
  msgstr ""
669
 
670
- #: .././admin/widgets.php:33 .././front/widgets.php:22
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
671
  msgid "Google Analytics Dashboard"
672
  msgstr ""
673
 
674
- #: .././admin/widgets.php:42
675
  msgid "This plugin needs an authorization:"
676
  msgstr ""
677
 
678
- #: .././admin/widgets.php:76
679
  msgid "Something went wrong while retrieving profiles list."
680
  msgstr ""
681
 
682
- #: .././admin/widgets.php:76
683
  msgid "More details"
684
  msgstr ""
685
 
686
- #: .././admin/widgets.php:89 .././admin/widgets.php:100
687
  msgid "An admin should asign a default Google Analytics Profile."
688
  msgstr ""
689
 
690
- #: .././admin/widgets.php:89 .././admin/widgets.php:100
691
  msgid "Select Domain"
692
  msgstr ""
693
 
694
- #: .././admin/widgets.php:105
695
  msgid ""
696
  "Something went wrong while retrieving property data. You need to create and properly configure a "
697
  "Google Analytics account:"
698
  msgstr ""
699
 
700
- #: .././admin/widgets.php:105
701
  msgid "Find out more!"
702
  msgstr ""
703
 
704
- #: .././admin/widgets.php:125
705
  msgid "Real-Time"
706
  msgstr ""
707
 
708
- #: .././admin/widgets.php:129 .././front/widgets.php:77 .././front/widgets.php:183
709
- msgid "Last 14 Days"
710
- msgstr ""
711
-
712
- #: .././admin/widgets.php:135 .././admin/widgets.php:871 .././front/widgets.php:46
713
- #: .././tools/gapi.php:406 .././tools/gapi.php:567 .././tools/gapi.php:613 .././tools/gapi.php:676
714
- #: .././tools/gapi.php:786 .././tools/gapi.php:827 .././tools/gapi.php:923
715
  msgid "Sessions"
716
  msgstr ""
717
 
718
- #: .././admin/widgets.php:141 .././tools/gapi.php:521
719
  msgid "Pages"
720
  msgstr ""
721
 
722
- #: .././admin/widgets.php:232 .././admin/widgets.php:472
723
  msgid "REFERRAL"
724
  msgstr ""
725
 
726
- #: .././admin/widgets.php:236 .././admin/widgets.php:473
727
  msgid "ORGANIC"
728
  msgstr ""
729
 
730
- #: .././admin/widgets.php:240 .././admin/widgets.php:360 .././admin/widgets.php:474
731
  msgid "SOCIAL"
732
  msgstr ""
733
 
734
- #: .././admin/widgets.php:244 .././admin/widgets.php:363 .././admin/widgets.php:475
735
  msgid "CAMPAIGN"
736
  msgstr ""
737
 
738
- #: .././admin/widgets.php:248 .././admin/widgets.php:366 .././admin/widgets.php:478
739
  msgid "DIRECT"
740
  msgstr ""
741
 
742
- #: .././admin/widgets.php:252 .././admin/widgets.php:479
743
  msgid "NEW"
744
  msgstr ""
745
 
746
- #: .././admin/widgets.php:354
747
  msgid "REFERRALS"
748
  msgstr ""
749
 
750
- #: .././admin/widgets.php:357
751
  msgid "KEYWORDS"
752
  msgstr ""
753
 
754
- #: .././front/item-reports.php:140
755
- msgid "Views vs UniqueViews"
756
- msgstr ""
757
-
758
- #: .././front/item-reports.php:190
759
- msgid "Google Analytics Reports"
760
- msgstr ""
761
-
762
- #: .././front/widgets.php:23
763
  msgid "Will display your google analytics stats in a widget"
764
  msgstr ""
765
 
766
- #: .././front/widgets.php:46 .././tools/gapi.php:827
767
  msgid "trend"
768
  msgstr ""
769
 
770
- #: .././front/widgets.php:133
771
  msgid "Period:"
772
  msgstr ""
773
 
774
- #: .././front/widgets.php:133
775
  msgid "Sessions:"
776
  msgstr ""
777
 
778
- #: .././front/widgets.php:137
779
  msgid "generated by"
780
  msgstr ""
781
 
782
- #: .././front/widgets.php:147
783
  msgid "Google Analytics Stats"
784
  msgstr ""
785
 
786
- #: .././front/widgets.php:154
787
  msgid "Title:"
788
  msgstr ""
789
 
790
- #: .././front/widgets.php:161
791
  msgid "Display:"
792
  msgstr ""
793
 
794
- #: .././front/widgets.php:165
795
  msgid "Chart & Totals"
796
  msgstr ""
797
 
798
- #: .././front/widgets.php:166
799
  msgid "Chart"
800
  msgstr ""
801
 
802
- #: .././front/widgets.php:167
803
  msgid "Totals"
804
  msgstr ""
805
 
806
- #: .././front/widgets.php:171
807
  msgid "Anonymize stats:"
808
  msgstr ""
809
 
810
- #: .././front/widgets.php:178
811
  msgid "Stats for:"
812
  msgstr ""
813
 
814
- #: .././front/widgets.php:188
815
  msgid "Give credits:"
816
  msgstr ""
817
 
818
- #: .././gadwp.php:46 .././gadwp.php:55 .././gadwp.php:63
819
  msgid "This is not allowed, read the documentation!"
820
  msgstr ""
821
 
822
- #: .././tools/gapi.php:134
823
  msgid "Use this link to get your access code:"
824
  msgstr ""
825
 
826
- #: .././tools/gapi.php:134
827
  msgid "Get Access Code"
828
  msgstr ""
829
 
830
- #: .././tools/gapi.php:138 .././tools/gapi.php:139
831
  msgid "Use the red link to get your access code!"
832
  msgstr ""
833
 
834
- #: .././tools/gapi.php:138
835
  msgid "Access Code:"
836
  msgstr ""
837
 
838
- #: .././tools/gapi.php:145
839
  msgid "Save Access Code"
840
  msgstr ""
841
 
842
- #: .././tools/gapi.php:400
843
  msgid "Organic Searches"
844
  msgstr ""
845
 
846
- #: .././tools/gapi.php:403
847
  msgid "Unique Page Views"
848
  msgstr ""
849
 
850
- #: .././tools/gapi.php:411
851
  msgid "Hour"
852
  msgstr ""
853
 
854
- #: .././tools/gapi.php:414 .././tools/gapi.php:826 .././tools/gapi.php:878
855
  msgid "Date"
856
  msgstr ""
857
 
858
- #: .././tools/gapi.php:522 .././tools/gapi.php:879
859
  msgid "Views"
860
  msgstr ""
861
 
862
- #: .././tools/gapi.php:640
863
  msgid "Countries"
864
  msgstr ""
865
 
866
- #: .././tools/gapi.php:650
867
  msgid "Cities from"
868
  msgstr ""
869
 
870
- #: .././tools/gapi.php:722
871
  msgid "Channels"
872
  msgstr ""
873
 
874
- #: .././tools/gapi.php:785
875
  msgid "Type"
876
  msgstr ""
877
-
878
- #: .././tools/gapi.php:880
879
- msgid "UniqueViews"
880
- msgstr ""
1
  # Copyright (C) 2015 Google Analytics Dashboard for WP
2
  # This file is distributed under the same license as the Google Analytics Dashboard for WP package.
3
+ #, fuzzy
4
  msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Google Analytics Dashboard for WP\n"
7
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-dashboard-for-wp\n"
8
+ "POT-Creation-Date: 2015-07-05 16:11+0300\n"
9
  "PO-Revision-Date: 2015-04-27 19:26+0200\n"
10
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
11
  "Language-Team: Alin Marcu\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
+ "X-Generator: Poedit 1.8.2\n"
18
  "X-Poedit-SourceCharset: UTF-8\n"
19
+ "X-Poedit-KeywordsList: __;_e;_n;_x;_ex;_nx;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;esc_html_x;_n_noop;_nx_noop\n"
20
  "X-Poedit-Basepath: .\n"
21
  "X-Poedit-SearchPath-0: ../.\n"
22
 
23
+ #: .././admin/item-reports.php:61 .././front/item-reports.php:29
24
  msgid "Analytics"
25
  msgstr ""
26
 
27
+ #: .././admin/settings.php:89 .././admin/settings.php:184 .././admin/settings.php:318
28
+ #: .././admin/settings.php:795 .././admin/settings.php:1068
29
  msgid "Settings saved."
30
  msgstr ""
31
 
32
+ #: .././admin/settings.php:91 .././admin/settings.php:186 .././admin/settings.php:320
33
+ #: .././admin/settings.php:772 .././admin/settings.php:782 .././admin/settings.php:791
34
+ #: .././admin/settings.php:797 .././admin/settings.php:808 .././admin/settings.php:1029
35
+ #: .././admin/settings.php:1054 .././admin/settings.php:1064 .././admin/settings.php:1070
36
+ #: .././admin/settings.php:1081
37
  msgid "Cheating Huh?"
38
  msgstr ""
39
 
40
+ #: .././admin/settings.php:95 .././admin/settings.php:190 .././admin/settings.php:324
41
+ #: .././admin/settings.php:641 .././admin/settings.php:823 .././admin/settings.php:1095
42
  #, php-format
43
  msgid "Something went wrong, check %1$s or %2$s."
44
  msgstr ""
45
 
46
+ #: .././admin/settings.php:95 .././admin/settings.php:190 .././admin/settings.php:324
47
+ #: .././admin/settings.php:641 .././admin/settings.php:823 .././admin/settings.php:1095
48
+ #: .././admin/setup.php:46 .././admin/setup.php:59
49
  msgid "Errors & Debug"
50
  msgstr ""
51
 
52
+ #: .././admin/settings.php:95 .././admin/settings.php:190 .././admin/settings.php:324
53
+ #: .././admin/settings.php:641 .././admin/settings.php:823 .././admin/settings.php:1095
54
  msgid "authorize the plugin"
55
  msgstr ""
56
 
57
+ #: .././admin/settings.php:100
58
  msgid "Google Analytics Frontend Settings"
59
  msgstr ""
60
 
61
+ #: .././admin/settings.php:110 .././admin/settings.php:205
 
 
 
 
 
 
 
 
 
 
62
  msgid "Permissions"
63
  msgstr ""
64
 
65
+ #: .././admin/settings.php:113 .././admin/settings.php:208
66
  msgid "Show stats to:"
67
  msgstr ""
68
 
69
+ #: .././admin/settings.php:154
70
+ msgid "enable web page reports on frontend"
 
 
 
 
71
  msgstr ""
72
 
73
+ #: .././admin/settings.php:161 .././admin/settings.php:297 .././admin/settings.php:598
74
+ #: .././admin/settings.php:943 .././admin/settings.php:1232
75
  msgid "Save Changes"
76
  msgstr ""
77
 
78
+ #: .././admin/settings.php:195
79
  msgid "Google Analytics Backend Settings"
80
  msgstr ""
81
 
82
+ #: .././admin/settings.php:251
 
 
 
 
 
83
  msgid "enable Switch View functionality"
84
  msgstr ""
85
 
86
+ #: .././admin/settings.php:262
87
  msgid "enable reports on Posts List and Pages List"
88
  msgstr ""
89
 
90
+ #: .././admin/settings.php:273
91
  msgid "enable the main Dashboard Widget"
92
  msgstr ""
93
 
94
+ #: .././admin/settings.php:277
95
  msgid "Real-Time Settings"
96
  msgstr ""
97
 
98
+ #: .././admin/settings.php:280
99
  msgid "Maximum number of pages to display on real-time tab:"
100
  msgstr ""
101
 
102
+ #: .././admin/settings.php:285
103
  msgid "Location Settings"
104
  msgstr ""
105
 
106
+ #: .././admin/settings.php:289
107
  msgid "Target Geo Map to country:"
108
  msgstr ""
109
 
110
+ #: .././admin/settings.php:327
111
  msgid ""
112
  "The tracking component is disabled. You should set <strong>Tracking Options</strong> to "
113
  "<strong>Enabled</strong>"
114
  msgstr ""
115
 
116
+ #: .././admin/settings.php:332
117
  msgid "Google Analytics Tracking Code"
118
  msgstr ""
119
 
120
+ #: .././admin/settings.php:341
121
  msgid "Basic Settings"
122
  msgstr ""
123
 
124
+ #: .././admin/settings.php:342 .././admin/settings.php:408
125
  msgid "Events Tracking"
126
  msgstr ""
127
 
128
+ #: .././admin/settings.php:343 .././admin/settings.php:456
129
  msgid "Custom Definitions"
130
  msgstr ""
131
 
132
+ #: .././admin/settings.php:344 .././admin/settings.php:554 .././admin/settings.php:1215
133
  msgid "Exclude Tracking"
134
  msgstr ""
135
 
136
+ #: .././admin/settings.php:345
137
  msgid "Advanced Settings"
138
  msgstr ""
139
 
140
+ #: .././admin/settings.php:353
 
 
 
 
 
141
  msgid "Tracking Settings"
142
  msgstr ""
143
 
144
+ #: .././admin/settings.php:356
145
  msgid "Tracking Options:"
146
  msgstr ""
147
 
148
+ #: .././admin/settings.php:358
149
  msgid "Disabled"
150
  msgstr ""
151
 
152
+ #: .././admin/settings.php:359
153
  msgid "Enabled"
154
  msgstr ""
155
 
156
+ #: .././admin/settings.php:367 .././admin/settings.php:888 .././admin/settings.php:910
157
+ #: .././admin/settings.php:1188 .././admin/widgets.php:61
158
  msgid "View Name:"
159
  msgstr ""
160
 
161
+ #: .././admin/settings.php:367 .././admin/settings.php:910
162
  msgid "Tracking ID:"
163
  msgstr ""
164
 
165
+ #: .././admin/settings.php:367 .././admin/settings.php:910
166
  msgid "Default URL:"
167
  msgstr ""
168
 
169
+ #: .././admin/settings.php:367 .././admin/settings.php:910
170
  msgid "Time Zone:"
171
  msgstr ""
172
 
173
+ #: .././admin/settings.php:372
174
  msgid "Basic Tracking"
175
  msgstr ""
176
 
177
+ #: .././admin/settings.php:375
178
  msgid "Tracking Type:"
179
  msgstr ""
180
 
181
+ #: .././admin/settings.php:377
182
  msgid "Classic Analytics"
183
  msgstr ""
184
 
185
+ #: .././admin/settings.php:378
186
  msgid "Universal Analytics"
187
  msgstr ""
188
 
189
+ #: .././admin/settings.php:389
190
  msgid "anonymize IPs while tracking"
191
  msgstr ""
192
 
193
+ #: .././admin/settings.php:400
194
  msgid "enable remarketing, demographics and interests reports"
195
  msgstr ""
196
 
197
+ #: .././admin/settings.php:418
198
  msgid "track downloads, mailto and outbound links"
199
  msgstr ""
200
 
201
+ #: .././admin/settings.php:422
202
  msgid "Downloads Regex:"
203
  msgstr ""
204
 
205
+ #: .././admin/settings.php:433
206
  msgid "track affiliate links matching this regex"
207
  msgstr ""
208
 
209
+ #: .././admin/settings.php:437
210
  msgid "Affiliates Regex:"
211
  msgstr ""
212
 
213
+ #: .././admin/settings.php:448
214
  msgid "track fragment identifiers, hashmarks (#) in URI links"
215
  msgstr ""
216
 
217
+ #: .././admin/settings.php:459
218
  msgid "Authors:"
219
  msgstr ""
220
 
221
+ #: .././admin/settings.php:467
222
  msgid "Publication Year:"
223
  msgstr ""
224
 
225
+ #: .././admin/settings.php:475
226
  msgid "Categories:"
227
  msgstr ""
228
 
229
+ #: .././admin/settings.php:483
230
  msgid "User Type:"
231
  msgstr ""
232
 
233
+ #: .././admin/settings.php:495
234
  msgid "Advanced Tracking"
235
  msgstr ""
236
 
237
+ #: .././admin/settings.php:498
238
  msgid "Page Speed SR:"
239
  msgstr ""
240
 
241
+ #: .././admin/settings.php:509
242
  msgid "exclude events from bounce-rate calculation"
243
  msgstr ""
244
 
245
+ #: .././admin/settings.php:520
246
  msgid "enable enhanced link attribution"
247
  msgstr ""
248
 
249
+ #: .././admin/settings.php:531
250
  msgid "enable AdSense account linking"
251
  msgstr ""
252
 
253
+ #: .././admin/settings.php:542
254
  msgid "enable cross domain tracking"
255
  msgstr ""
256
 
257
+ #: .././admin/settings.php:546
258
  msgid "Cross Domains:"
259
  msgstr ""
260
 
261
+ #: .././admin/settings.php:557
262
  msgid "Exclude tracking for:"
263
  msgstr ""
264
 
265
+ #: .././admin/settings.php:645
266
  msgid "Google Analytics Errors & Debugging"
267
  msgstr ""
268
 
269
+ #: .././admin/settings.php:655
270
  msgid "Errors & Details"
271
  msgstr ""
272
 
273
+ #: .././admin/settings.php:656
274
  msgid "Plugin Settings"
275
  msgstr ""
276
 
277
+ #: .././admin/settings.php:663
 
 
 
 
 
278
  msgid "Last Error detected"
279
  msgstr ""
280
 
281
+ #: .././admin/settings.php:669 .././admin/settings.php:682
282
  msgid "None"
283
  msgstr ""
284
 
285
+ #: .././admin/settings.php:676
286
  msgid "Error Details"
287
  msgstr ""
288
 
289
+ #: .././admin/settings.php:696
290
  msgid "Plugin Configuration"
291
  msgstr ""
292
 
293
+ #: .././admin/settings.php:717 .././admin/settings.php:980
294
  msgid ""
295
  "Loading the required libraries. If this results in a blank screen or a fatal error, try this "
296
  "solution:"
297
  msgstr ""
298
 
299
+ #: .././admin/settings.php:717
300
  msgid "Library conflicts between WordPress plugins"
301
  msgstr ""
302
 
303
+ #: .././admin/settings.php:732 .././admin/settings.php:997
304
  msgid "Plugin authorization succeeded."
305
  msgstr ""
306
 
307
+ #: .././admin/settings.php:747 .././admin/settings.php:1020
308
  msgid ""
309
  "The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> (UA-XXXXX-X). Try "
310
  "again, and use the red link to get your access code"
311
  msgstr ""
312
 
313
+ #: .././admin/settings.php:770 .././admin/settings.php:1052
314
  msgid "Cleared Cache."
315
  msgstr ""
316
 
317
+ #: .././admin/settings.php:779 .././admin/settings.php:1061
318
  msgid "Token Reseted and Revoked."
319
  msgstr ""
320
 
321
+ #: .././admin/settings.php:789
322
  msgid "All errors reseted."
323
  msgstr ""
324
 
325
+ #: .././admin/settings.php:802 .././admin/settings.php:1075
326
  msgid "All other domains/properties were removed."
327
  msgstr ""
328
 
329
+ #: .././admin/settings.php:813 .././admin/settings.php:1086
330
  msgid "Google Analytics Settings"
331
  msgstr ""
332
 
333
+ #: .././admin/settings.php:828 .././admin/settings.php:1100
334
  msgid "Use the red link (see below) to generate and get your access code!"
335
  msgstr ""
336
 
337
+ #: .././admin/settings.php:839 .././admin/settings.php:1128
338
  msgid "Plugin Authorization"
339
  msgstr ""
340
 
341
+ #: .././admin/settings.php:844 .././admin/settings.php:1132
342
  #, php-format
343
  msgid ""
344
  "You should watch the %1$s and read this %2$s before proceeding to authorization. This plugin "
345
  "requires a properly configured Google Analytics account!"
346
  msgstr ""
347
 
348
+ #: .././admin/settings.php:844 .././admin/settings.php:1132
349
  msgid "video"
350
  msgstr ""
351
 
352
+ #: .././admin/settings.php:844 .././admin/settings.php:1132
353
  msgid "tutorial"
354
  msgstr ""
355
 
356
+ #: .././admin/settings.php:849 .././admin/settings.php:1139
357
  msgid "use your own API Project credentials"
358
  msgstr ""
359
 
360
+ #: .././admin/settings.php:854 .././admin/settings.php:1147
361
  msgid "API Key:"
362
  msgstr ""
363
 
364
+ #: .././admin/settings.php:858 .././admin/settings.php:1151
365
  msgid "Client ID:"
366
  msgstr ""
367
 
368
+ #: .././admin/settings.php:862 .././admin/settings.php:1155
369
  msgid "Client Secret:"
370
  msgstr ""
371
 
372
+ #: .././admin/settings.php:872 .././admin/settings.php:1165
373
  msgid "Clear Authorization"
374
  msgstr ""
375
 
376
+ #: .././admin/settings.php:872 .././admin/settings.php:950 .././admin/settings.php:1165
377
+ #: .././admin/settings.php:1241
378
  msgid "Clear Cache"
379
  msgstr ""
380
 
381
+ #: .././admin/settings.php:872
382
  msgid "Reset Errors"
383
  msgstr ""
384
 
385
+ #: .././admin/settings.php:878 .././admin/setup.php:42 .././admin/setup.php:58
386
  msgid "General Settings"
387
  msgstr ""
388
 
389
+ #: .././admin/settings.php:881
390
  msgid "Select View:"
391
  msgstr ""
392
 
393
+ #: .././admin/settings.php:892 .././admin/settings.php:1192
394
  msgid "Property not found"
395
  msgstr ""
396
 
397
+ #: .././admin/settings.php:898
398
  msgid "Lock Selection"
399
  msgstr ""
400
 
401
+ #: .././admin/settings.php:917
402
  msgid "Theme Color:"
403
  msgstr ""
404
 
405
+ #: .././admin/settings.php:925 .././admin/settings.php:1201
406
  msgid "Automatic Updates"
407
  msgstr ""
408
 
409
+ #: .././admin/settings.php:935 .././admin/settings.php:1211
410
  msgid "automatic updates for minor versions (security and maintenance releases only)"
411
  msgstr ""
412
 
413
+ #: .././admin/settings.php:950 .././admin/settings.php:1241 .././admin/widgets.php:32
414
  msgid "Authorize Plugin"
415
  msgstr ""
416
 
417
+ #: .././admin/settings.php:1026
418
  msgid "Properties refreshed."
419
  msgstr ""
420
 
421
+ #: .././admin/settings.php:1110
422
  msgid "Network Setup"
423
  msgstr ""
424
 
425
+ #: .././admin/settings.php:1120
426
  msgid "use a single Google Analytics account for the entire network"
427
  msgstr ""
428
 
429
+ #: .././admin/settings.php:1165
430
  msgid "Refresh Properties"
431
  msgstr ""
432
 
433
+ #: .././admin/settings.php:1171
434
  msgid "Properties/Views Settings"
435
  msgstr ""
436
 
437
+ #: .././admin/settings.php:1225
438
  msgid "exclude Super Admin tracking for the entire network"
439
  msgstr ""
440
 
441
+ #: .././admin/settings.php:1273
442
  msgid "Setup Tutorial & Demo"
443
  msgstr ""
444
 
445
+ #: .././admin/settings.php:1281
446
+ msgid "Follow & Review"
 
 
 
 
 
447
  msgstr ""
448
 
449
+ #: .././admin/settings.php:1307
450
  #, php-format
451
  msgid "Your feedback and review are both important, %s!"
452
  msgstr ""
453
 
454
+ #: .././admin/settings.php:1307
455
  msgid "rate this plugin"
456
  msgstr ""
457
 
458
+ #: .././admin/settings.php:1313
459
  msgid "Further Reading"
460
  msgstr ""
461
 
462
+ #: .././admin/settings.php:1320
463
  #, php-format
464
  msgid "%s by moving your website to HTTPS/SSL."
465
  msgstr ""
466
 
467
+ #: .././admin/settings.php:1320
468
  msgid "Improve search rankings"
469
  msgstr ""
470
 
471
+ #: .././admin/settings.php:1327
472
  #, php-format
473
  msgid "Other %s written by the same author"
474
  msgstr ""
475
 
476
+ #: .././admin/settings.php:1327
477
  msgid "WordPress Plugins"
478
  msgstr ""
479
 
480
+ #: .././admin/settings.php:1333
481
  msgid "Other Services"
482
  msgstr ""
483
 
484
+ #: .././admin/settings.php:1340
485
  #, php-format
486
  msgid "Speed up your website and plug into a whole %s"
487
  msgstr ""
488
 
489
+ #: .././admin/settings.php:1340
490
  msgid "new level of site speed"
491
  msgstr ""
492
 
493
+ #: .././admin/settings.php:1347
494
  #, php-format
495
  msgid "%s service with users tracking at IP level."
496
  msgstr ""
497
 
498
+ #: .././admin/settings.php:1347
499
  msgid "Web Analytics"
500
  msgstr ""
501
 
502
+ #: .././admin/setup.php:41 .././admin/setup.php:57
503
  msgid "Google Analytics"
504
  msgstr ""
505
 
506
+ #: .././admin/setup.php:43
507
  msgid "Backend Settings"
508
  msgstr ""
509
 
510
+ #: .././admin/setup.php:44
511
  msgid "Frontend Settings"
512
  msgstr ""
513
 
514
+ #: .././admin/setup.php:45
515
  msgid "Tracking Code"
516
  msgstr ""
517
 
518
+ #: .././admin/setup.php:159 .././admin/widgets.php:117 .././front/setup.php:71
519
  msgid "Today"
520
  msgstr ""
521
 
522
+ #: .././admin/setup.php:160 .././admin/widgets.php:118 .././front/setup.php:72
523
  msgid "Yesterday"
524
  msgstr ""
525
 
526
+ #: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
527
+ #: .././admin/setup.php:164 .././admin/widgets.php:119 .././admin/widgets.php:120
528
+ #: .././admin/widgets.php:121 .././admin/widgets.php:122 .././front/setup.php:73
529
+ #: .././front/setup.php:74 .././front/setup.php:75 .././front/setup.php:76
530
+ #: .././front/widgets.php:64 .././front/widgets.php:67 .././front/widgets.php:70
531
+ #: .././front/widgets.php:158 .././front/widgets.php:159 .././front/widgets.php:160
532
+ #, php-format
533
+ msgid "Last %d Days"
534
+ msgstr ""
535
+
536
+ #: .././admin/setup.php:165 .././admin/setup.php:166 .././admin/widgets.php:123
537
+ #: .././admin/widgets.php:124 .././front/setup.php:77 .././front/setup.php:78
538
+ #, php-format
539
+ msgid "%s Year"
540
  msgstr ""
541
 
542
+ #: .././admin/setup.php:165 .././admin/widgets.php:123 .././front/setup.php:77
543
+ msgid "One"
 
544
  msgstr ""
545
 
546
+ #: .././admin/setup.php:166 .././admin/widgets.php:124 .././front/setup.php:78
547
+ msgid "Three"
548
  msgstr ""
549
 
550
+ #: .././admin/setup.php:169 .././admin/setup.php:185 .././front/setup.php:81
551
+ #: .././front/setup.php:97
552
  msgid "Unique Views"
553
  msgstr ""
554
 
555
+ #: .././admin/setup.php:170 .././admin/setup.php:186 .././admin/widgets.php:130
556
+ #: .././admin/widgets.php:830 .././front/setup.php:82 .././front/setup.php:98
557
+ #: .././tools/gapi.php:358
558
  msgid "Users"
559
  msgstr ""
560
 
561
+ #: .././admin/setup.php:171 .././admin/widgets.php:131 .././front/setup.php:83
562
  msgid "Organic"
563
  msgstr ""
564
 
565
+ #: .././admin/setup.php:172 .././admin/setup.php:187 .././admin/widgets.php:132
566
+ #: .././admin/widgets.php:834 .././front/setup.php:84 .././front/setup.php:99
567
+ #: .././tools/gapi.php:361
568
  msgid "Page Views"
569
  msgstr ""
570
 
571
+ #: .././admin/setup.php:173 .././admin/setup.php:188 .././admin/widgets.php:133
572
+ #: .././admin/widgets.php:838 .././front/setup.php:85 .././front/setup.php:100
573
+ #: .././tools/gapi.php:364
574
  msgid "Bounce Rate"
575
  msgstr ""
576
 
577
+ #: .././admin/setup.php:174 .././admin/widgets.php:134 .././front/setup.php:86
578
  msgid "Location"
579
  msgstr ""
580
 
581
+ #: .././admin/setup.php:175 .././admin/widgets.php:136 .././front/setup.php:87
582
+ #: .././tools/gapi.php:503
583
  msgid "Referrers"
584
  msgstr ""
585
 
586
+ #: .././admin/setup.php:176 .././admin/widgets.php:137 .././front/setup.php:88
587
+ #: .././tools/gapi.php:536
588
  msgid "Searches"
589
  msgstr ""
590
 
591
+ #: .././admin/setup.php:177 .././admin/widgets.php:138 .././front/setup.php:89
592
  msgid "Traffic Details"
593
  msgstr ""
594
 
595
+ #: .././admin/setup.php:180 .././admin/widgets.php:505 .././admin/widgets.php:590
596
+ #: .././admin/widgets.php:757 .././admin/widgets.php:861 .././front/setup.php:92
597
  msgid "A JavaScript Error is blocking plugin resources!"
598
  msgstr ""
599
 
600
+ #: .././admin/setup.php:181 .././admin/widgets.php:681 .././front/setup.php:93
601
  msgid "Traffic Mediums"
602
  msgstr ""
603
 
604
+ #: .././admin/setup.php:182 .././admin/widgets.php:696 .././front/setup.php:94
605
  msgid "Visitor Type"
606
  msgstr ""
607
 
608
+ #: .././admin/setup.php:183 .././admin/widgets.php:711 .././front/setup.php:95
609
  msgid "Social Networks"
610
  msgstr ""
611
 
612
+ #: .././admin/setup.php:184 .././admin/widgets.php:726 .././front/setup.php:96
613
  msgid "Search Engines"
614
  msgstr ""
615
 
616
+ #: .././admin/setup.php:189 .././admin/widgets.php:842 .././front/setup.php:101
617
  msgid "Organic Search"
618
  msgstr ""
619
 
620
+ #: .././admin/setup.php:190 .././admin/widgets.php:846 .././front/setup.php:102
621
  msgid "Pages/Session"
622
  msgstr ""
623
 
624
+ #: .././admin/setup.php:191 .././admin/widgets.php:517 .././admin/widgets.php:531
625
+ #: .././admin/widgets.php:541 .././admin/widgets.php:602 .././admin/widgets.php:616
626
+ #: .././admin/widgets.php:630 .././admin/widgets.php:644 .././admin/widgets.php:658
627
+ #: .././admin/widgets.php:668 .././admin/widgets.php:770 .././admin/widgets.php:782
628
+ #: .././admin/widgets.php:873 .././admin/widgets.php:887 .././admin/widgets.php:897
629
+ #: .././front/setup.php:103
630
  msgid "Invalid response, more details in JavaScript Console (F12)."
631
  msgstr ""
632
 
633
+ #: .././admin/setup.php:192 .././front/setup.php:104
634
  msgid "Not enough data collected"
635
  msgstr ""
636
 
637
+ #: .././admin/setup.php:193 .././admin/widgets.php:522 .././admin/widgets.php:536
638
+ #: .././admin/widgets.php:607 .././admin/widgets.php:621 .././admin/widgets.php:635
639
+ #: .././admin/widgets.php:649 .././admin/widgets.php:663 .././admin/widgets.php:775
640
+ #: .././admin/widgets.php:777 .././admin/widgets.php:878 .././admin/widgets.php:892
641
+ #: .././front/setup.php:105 .././front/widgets.php:100
642
  msgid "This report is unavailable"
643
  msgstr ""
644
 
645
+ #: .././admin/setup.php:194 .././front/setup.php:106
646
  msgid "report generated by"
647
  msgstr ""
648
 
649
+ #: .././admin/setup.php:225
650
  msgid "Settings"
651
  msgstr ""
652
 
653
+ #: .././admin/setup.php:237
654
+ #, php-format
655
+ msgid "Google Analytics Dashboard for WP has been updated to version %s."
656
+ msgstr ""
657
+
658
+ #: .././admin/setup.php:237
659
+ #, php-format
660
+ msgid "For details, check out %1$s and %2$s."
661
+ msgstr ""
662
+
663
+ #: .././admin/setup.php:237
664
+ msgid "the documentation page"
665
+ msgstr ""
666
+
667
+ #: .././admin/setup.php:237
668
+ msgid "the plugin&#39;s settings page"
669
+ msgstr ""
670
+
671
+ #: .././admin/widgets.php:27 .././front/widgets.php:21
672
  msgid "Google Analytics Dashboard"
673
  msgstr ""
674
 
675
+ #: .././admin/widgets.php:32
676
  msgid "This plugin needs an authorization:"
677
  msgstr ""
678
 
679
+ #: .././admin/widgets.php:66
680
  msgid "Something went wrong while retrieving profiles list."
681
  msgstr ""
682
 
683
+ #: .././admin/widgets.php:66
684
  msgid "More details"
685
  msgstr ""
686
 
687
+ #: .././admin/widgets.php:79 .././admin/widgets.php:90
688
  msgid "An admin should asign a default Google Analytics Profile."
689
  msgstr ""
690
 
691
+ #: .././admin/widgets.php:79 .././admin/widgets.php:90
692
  msgid "Select Domain"
693
  msgstr ""
694
 
695
+ #: .././admin/widgets.php:95
696
  msgid ""
697
  "Something went wrong while retrieving property data. You need to create and properly configure a "
698
  "Google Analytics account:"
699
  msgstr ""
700
 
701
+ #: .././admin/widgets.php:95
702
  msgid "Find out more!"
703
  msgstr ""
704
 
705
+ #: .././admin/widgets.php:116
706
  msgid "Real-Time"
707
  msgstr ""
708
 
709
+ #: .././admin/widgets.php:129 .././admin/widgets.php:826 .././front/widgets.php:36
710
+ #: .././tools/gapi.php:373 .././tools/gapi.php:503 .././tools/gapi.php:536 .././tools/gapi.php:586
711
+ #: .././tools/gapi.php:666 .././tools/gapi.php:695
 
 
 
 
712
  msgid "Sessions"
713
  msgstr ""
714
 
715
+ #: .././admin/widgets.php:135 .././tools/gapi.php:471
716
  msgid "Pages"
717
  msgstr ""
718
 
719
+ #: .././admin/widgets.php:236 .././admin/widgets.php:478
720
  msgid "REFERRAL"
721
  msgstr ""
722
 
723
+ #: .././admin/widgets.php:240 .././admin/widgets.php:479
724
  msgid "ORGANIC"
725
  msgstr ""
726
 
727
+ #: .././admin/widgets.php:244 .././admin/widgets.php:364 .././admin/widgets.php:480
728
  msgid "SOCIAL"
729
  msgstr ""
730
 
731
+ #: .././admin/widgets.php:248 .././admin/widgets.php:367 .././admin/widgets.php:481
732
  msgid "CAMPAIGN"
733
  msgstr ""
734
 
735
+ #: .././admin/widgets.php:252 .././admin/widgets.php:370 .././admin/widgets.php:484
736
  msgid "DIRECT"
737
  msgstr ""
738
 
739
+ #: .././admin/widgets.php:256 .././admin/widgets.php:485
740
  msgid "NEW"
741
  msgstr ""
742
 
743
+ #: .././admin/widgets.php:358
744
  msgid "REFERRALS"
745
  msgstr ""
746
 
747
+ #: .././admin/widgets.php:361
748
  msgid "KEYWORDS"
749
  msgstr ""
750
 
751
+ #: .././front/widgets.php:21
 
 
 
 
 
 
 
 
752
  msgid "Will display your google analytics stats in a widget"
753
  msgstr ""
754
 
755
+ #: .././front/widgets.php:36 .././tools/gapi.php:695
756
  msgid "trend"
757
  msgstr ""
758
 
759
+ #: .././front/widgets.php:123
760
  msgid "Period:"
761
  msgstr ""
762
 
763
+ #: .././front/widgets.php:123
764
  msgid "Sessions:"
765
  msgstr ""
766
 
767
+ #: .././front/widgets.php:127
768
  msgid "generated by"
769
  msgstr ""
770
 
771
+ #: .././front/widgets.php:136
772
  msgid "Google Analytics Stats"
773
  msgstr ""
774
 
775
+ #: .././front/widgets.php:144
776
  msgid "Title:"
777
  msgstr ""
778
 
779
+ #: .././front/widgets.php:147
780
  msgid "Display:"
781
  msgstr ""
782
 
783
+ #: .././front/widgets.php:148
784
  msgid "Chart & Totals"
785
  msgstr ""
786
 
787
+ #: .././front/widgets.php:149
788
  msgid "Chart"
789
  msgstr ""
790
 
791
+ #: .././front/widgets.php:150
792
  msgid "Totals"
793
  msgstr ""
794
 
795
+ #: .././front/widgets.php:154
796
  msgid "Anonymize stats:"
797
  msgstr ""
798
 
799
+ #: .././front/widgets.php:157
800
  msgid "Stats for:"
801
  msgstr ""
802
 
803
+ #: .././front/widgets.php:164
804
  msgid "Give credits:"
805
  msgstr ""
806
 
807
+ #: .././gadwp.php:46 .././gadwp.php:54 .././gadwp.php:61
808
  msgid "This is not allowed, read the documentation!"
809
  msgstr ""
810
 
811
+ #: .././tools/gapi.php:128
812
  msgid "Use this link to get your access code:"
813
  msgstr ""
814
 
815
+ #: .././tools/gapi.php:128
816
  msgid "Get Access Code"
817
  msgstr ""
818
 
819
+ #: .././tools/gapi.php:132 .././tools/gapi.php:133
820
  msgid "Use the red link to get your access code!"
821
  msgstr ""
822
 
823
+ #: .././tools/gapi.php:132
824
  msgid "Access Code:"
825
  msgstr ""
826
 
827
+ #: .././tools/gapi.php:139
828
  msgid "Save Access Code"
829
  msgstr ""
830
 
831
+ #: .././tools/gapi.php:367
832
  msgid "Organic Searches"
833
  msgstr ""
834
 
835
+ #: .././tools/gapi.php:370
836
  msgid "Unique Page Views"
837
  msgstr ""
838
 
839
+ #: .././tools/gapi.php:378
840
  msgid "Hour"
841
  msgstr ""
842
 
843
+ #: .././tools/gapi.php:382 .././tools/gapi.php:385 .././tools/gapi.php:695
844
  msgid "Date"
845
  msgstr ""
846
 
847
+ #: .././tools/gapi.php:471
848
  msgid "Views"
849
  msgstr ""
850
 
851
+ #: .././tools/gapi.php:557
852
  msgid "Countries"
853
  msgstr ""
854
 
855
+ #: .././tools/gapi.php:567
856
  msgid "Cities from"
857
  msgstr ""
858
 
859
+ #: .././tools/gapi.php:620
860
  msgid "Channels"
861
  msgstr ""
862
 
863
+ #: .././tools/gapi.php:666
864
  msgid "Type"
865
  msgstr ""
 
 
 
 
readme.txt CHANGED
@@ -1,95 +1,96 @@
1
  === Google Analytics Dashboard for WP ===
2
  Contributors: deconf
3
  Donate link: https://deconf.com/donate/
4
- Tags: google,analytics,google analytics,dashboard,analytics dashboard,google analytics dashboard,google analytics plugin,google analytics widget,tracking,realtime,wpmu,multisite,gadwp
5
  Requires at least: 3.5
6
  Tested up to: 4.2.2
7
- Stable tag: 4.8
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
11
- Displays Google Analytics reports and real-time statistics in your WordPress Dashboard. Inserts the latest Google Analytics tracking code in every page of your site.
12
 
13
  == Description ==
14
- This Google Analytics for WordPress plugin enables you to track your site using the latest Google Analytics tracking code and allows you to view the analytics reports in your
15
- WordPress install.
16
 
17
- In addition to a set of general reports, in-depth Page reports and in-depth Post reports allow further segmentation of your analytics data, providing performance details for each post or page from your website.
18
 
19
- The tracking code is fully customizable through options and hooks, allows you to collect data using custom dimensions and enables you to track downloads, outbound links, affiliate links, and fragment identifiers.
20
 
21
  = Google Analytics Real-Time =
22
 
23
- Google Analytics reports, in real-time, on your dashboard screen:
24
 
25
- - displays the total number of visitors in real-time
26
- - real-time reports about your acquisition channels
27
- - per page real-time reports with traffic sources details
28
 
29
  = Google Analytics Reports =
30
 
31
- The analytics reports you need, in your dashboard, in your All Posts and All Pages screens, and on site's frontend:
32
-
33
- - you can access all websites statistics in a single widget (websites within same Google Account)
34
- - option to choose a default color for your charts, graphs and maps
35
- - visitors by pages, referrers and searches reports
36
- - location reports, displaying visitors by country on a Geo Map and in a table chart
37
- - local websites and business have an option to display cities, instead of countries, on a regional map and in a table chart
38
- - traffic overview reports with details about acquisition channels, social networks, search engines, traffic mediums and visitor type
39
- - per post or page Google Analytics reports in All Posts and All Pages screens
40
- - option to display Google Analytics reports on frontend; available for each web page
41
- - frontend widget with website's analytics stats and analytics report anonymization feature
42
- - option to share your backend and frontend Google Analytics reports with specified user roles
43
- - options to disable certain Google Analytics reports from backend or frontend
44
-
45
- = Google Analytics Tracking =
46
-
47
- Install the Google Analytics tracking code in less than a minute and customize it as you wish:
48
-
49
- - enable/disable the Google Analytics tracking code
50
- - switch between Universal Google Analytics and Classic Google Analytics tracking methods
51
- - supports analytics.js tracking for compatibility with Universal Google Analytics web property
52
- - supports ga.js tracking for compatibility with Classic Google Analytics web property
53
- - automatically generates and inserts the Google Analytics tracking code
54
- - IP address anonymization feature
55
- - enhanced link attribution feature
56
- - remarketing, demographics and interests tracking
57
- - Google AdSense account linking
58
- - page speed sampling rate customization
59
- - track events feature: track downloads, emails and outbound links with Google Analytics
60
- - exclude tracking based on user roles
61
- - option to exclude event tracking from bounce-rate calculation
62
- - multiple domains / cross domain tracking
63
- - action hook for code customization
64
- - track authors, publication year, categories and user engagement using Google Analytics custom dimensions
65
- - affiliate links tracking using Google Analytics events
66
- - track fragment identifiers, hash marks (#) in URI links
67
-
68
- = WodrPress Multisite features =
69
-
70
- * option to choose between three working modes:
71
- * <em>Mode 1:</em> network activated while allowing each site administrator to authorize the plugin using a different Google Analytics account
72
- * <em>Mode 2:</em> network activated while authorizing an entire WordPress Network using a single Google Analytics account. You'll be able to assign a property/view to each site, from your Network Admin screen
73
- * <em>Mode 3:</em> network deactivated allowing each site owner to activate and authorize the plugin
74
- * option to exclude Super Admins from tracking
 
 
75
 
76
  > <strong>Google Analytics Dashboard for WP on GitHub</strong><br>
77
- > You can submit pull requests, feature requests or bugs on [Google Analytics Dashboard for WP](https://github.com/deconf/Google-Analytics-Dashboard-for-WP) repository.
78
 
79
- = Further reading and info =
80
 
81
  * Homepage of [Google Analytics Dashboard](https://deconf.com/google-analytics-dashboard-wordpress/) for WordPress
82
  * Other [WordPress Plugins](https://deconf.com/wordpress/) by same author
83
- * You can also find this plugin on [Google Analytics | Partners](https://www.google.com/analytics/partners/company/5127525902581760/gadp/5629499534213120/app/5707702298738688/listing/5639274879778816) Gallery
84
 
85
  == Installation ==
86
 
87
- 1. Upload the full directory into your wp-content/plugins directory.
88
- 2. Activate the plugin at the plugin administration page.
89
- 3. Open the plugin configuration page, which is located under "Google Analytics" menu (optionally enter your API Key, Client Secret and Client ID).
90
- 4. Authorize the plugin using the 'Authorize Plugin' button.
91
- 5. Go back to the plugin configuration page, which is located under "Google Analytics" menu to update/set your settings.
92
- 6. Use Google Analytics Tracking options to configure/enable/disable tracking.
93
 
94
  == Frequently Asked Questions ==
95
 
@@ -99,7 +100,7 @@ No, once the plugin is authorized and a default domain is selected the Google An
99
 
100
  = Some settings are missing in the video tutorial =
101
 
102
- We are constantly improving our plugin, sometimes the video tutorial may be a little outdated.
103
 
104
  = How can I make suggest a new feature, contribute or report a bug? =
105
 
@@ -111,19 +112,19 @@ For documentation, tutorials, FAQ and videos check out: [Google Analytics Dashbo
111
 
112
  == Screenshots ==
113
 
114
- 1. Google Analytics Dashboard Blue Color
115
- 2. Google Analytics Dashboard Real-Time
116
- 3. Google Analytics Dashboard reports per Posts/Pages
117
- 4. Google Analytics Dashboard Geo Map
118
- 5. Google Analytics Dashboard Top Pages, Top Referrers and Top Searches
119
- 6. Google Analytics Dashboard Traffic Overview
120
- 7. Google Analytics Dashboard statistics per page on Frontend
121
- 8. Google Analytics Dashboard cities on region map
122
- 9. Google Analytics Dashboard Widget
123
 
124
  == License ==
125
 
126
- This plugin it's released under the GPLv2, you can use it free of charge on your personal or commercial website.
127
 
128
  == Changelog ==
129
 
@@ -137,7 +138,7 @@ This plugin it's released under the GPLv2, you can use it free of charge on your
137
  - Enhancement: display an admin notice after manual and automatic updates
138
  - Enhancement: small I18N tweaks and POT file update
139
  - Enhancement: introducing last 14 days range in items reports
140
- - Enhancement: introducing last 365 days range for all reports
141
  - Enhancement: set the last selected report and date range as default for subsequent requests
142
 
143
  = 4.8 =
@@ -146,7 +147,7 @@ This plugin it's released under the GPLv2, you can use it free of charge on your
146
  - Enhancement: JavaScript code cleanup and optimization
147
  - Enhancement: memory usage optimization
148
  - Enhancement: small assets fixes, UX improvements, props by [Adrian Pop](https://github.com/adipop)
149
- - Enhancement: introducing reports for all frontend web pages (new feature)
150
  - Enhancement: gadwp_frontenditem_uri filter to allow URI corrections for frontend item reports
151
  - Bug Fix: avoid double encoding of UTF-8 URIs
152
  - Bug Fix: 100% number formatting issue on bounce rate report
@@ -176,14 +177,14 @@ This plugin it's released under the GPLv2, you can use it free of charge on your
176
  - Enhancement: Italian translation updated
177
  - Bug Fix: use url-encoding for API filters to avoid generating invalid parameters
178
  - Bug Fix: cache reports for pages and posts with queries in URI
179
- - Bug Fix: avoid double encoding while doing API requests
180
 
181
  = 4.7 =
182
  - Enhancement: Dutch translation updated
183
  - Enhancement: using wp_get_current_user() to check users' roles
184
  - Enhancement: fit longer titles in backend item reports widget
185
- - Enhancement: disable the drop-down select list while a single View is available
186
- - Bug Fix: views missing on huge analytics accounts
187
  - Bug Fix: unable to add new widgets on frontend
188
 
189
  = 4.6 =
@@ -191,7 +192,7 @@ This plugin it's released under the GPLv2, you can use it free of charge on your
191
  - Enhancement: Japanese translation updated
192
  - Enhancement: Portuguese (Brazil) translation updated
193
  - Enhancement: introducing a manager class to keep track of all instances and their references
194
- - Enhancement: push the tracking code at the end of head section
195
  - Enhancement: better support for remove_action and wp_dequeue_script
196
  - Enhancement: Ajax calls optimization
197
  - Bug Fix: loading bar issues while not all frontend features are enabled
@@ -203,15 +204,15 @@ This plugin it's released under the GPLv2, you can use it free of charge on your
203
  - Bug Fix: color picker and settings page tabs not working when per posts/pages reports are disabled
204
 
205
  = 4.5.1 =
206
- - Bug Fix: analytics icons get added to all custom columns
207
  - Bug Fix: unable to switch tabs in plugin options for some languages
208
 
209
  = 4.5 =
210
  - Requirements: WordPress 3.5 and above
211
  - Enhancement: automatic updates for minor versions (security and maintenance releases)
212
  - Enhancement: improvements while enqueuing styles & scripts
213
- - Enhancement: reports per post in Post List (new feature)
214
- - Enhancement: reports per page in Page List (new feature)
215
  - Enhancement: gadwp_backenditem_uri allows URI corrections for backend item reports
216
  - Enhancement: option to enable/disable the custom dashboard widget
217
  - Enhancement: Japanese translation
@@ -219,21 +220,21 @@ This plugin it's released under the GPLv2, you can use it free of charge on your
219
  - Enhancement: Portuguese (Brazil) translation
220
  - Enhancement: UI improvements, props by [Paal Joachim Romdahl](https://github.com/paaljoachim)
221
  - Bug Fix: Arabic translation not loading properly
222
- - Bug Fix: initialize time-shift for all API calls
223
- - Bug Fix: include GAPI only when a API call is made
224
  - Bug Fix: keep the percentage numeric while anonymizing data
225
  - Bug Fix: add PHP 5.3 as a requirement when forcing IPv4
226
  - Bug Fix: typo fix, props by [Andrew Minion](https://github.com/macbookandrew)
227
 
228
  = 4.4.7 =
229
  - Bug Fix: fatal error in plugin settings screen, under certain circumstances
230
- - Bug Fix: fix refresh interval for backend stats
231
 
232
  = 4.4.6 =
233
  - Bug Fix: maintain compatibility with WordPress 3.0+
234
 
235
  = 4.4.5 =
236
- - Enhancement: GAPI requests optimization
237
  - Enhancement: server responses improvements
238
  - Enhancement: filter data through query options
239
  - Bug Fix: additional checks before displaying an error
@@ -247,16 +248,16 @@ This plugin it's released under the GPLv2, you can use it free of charge on your
247
  - Bug Fix: PHP notices fix for some requests
248
  - Bug Fix: PHP notices fix when calling ob_clean on an empty buffer
249
  - Bug Fix: frontend stats not responsive
250
- - Enhancement: handle some additional API errors
251
  - Enhancement: set totals to zero when anonymize stats is enabled
252
  - Enhancement: auto-cleanup removed; all transients have static identifiers now
253
  - Enhancement: dump error details to JavaScript Console and throw an alert on invalid responses
254
  - Enhancement: Italian translation
255
 
256
  = 4.4.3 =
257
- - Enhancement: further optimization on queries
258
  - Enhancement: less error prone while running JavaScript
259
- - Enhancement: GAPI errors handling improvement
260
  - Enhancement: added GADWP_IP_VERSION constant to force a particular Internet Protocol version when needed
261
  - Enhancement: run the clean-up method only in settings screen
262
  - Enhancement: added tabs to Tracking Code page
@@ -291,12 +292,12 @@ This plugin it's released under the GPLv2, you can use it free of charge on your
291
  - Enhancement: asynchronous reports loading and speed improvements
292
  - Enhancement: code optimization for all frontend and backend features
293
  - Enhancement: finished the error standardization process; easier debugging
294
- - Enhancement: GAPI library update
295
 
296
  = 4.3.11 =
297
  - Bug Fix: improvements on QPS management
298
  - Bug Fix: fall-back to world map when a wrong country code is entered
299
- - Bug Fix: removed double transient call on successful authorization
300
  - Bug Fix: PHP warning when authorizing without a Google Analytics account
301
  - Bug Fix: switch back to initial blog after completing an error clean up in multisite mode
302
  - Enhancement: clear all errors on version change
@@ -307,13 +308,13 @@ This plugin it's released under the GPLv2, you can use it free of charge on your
307
  = 4.3.10 =
308
  - Bug Fix: removed the PHP debugging log for frontend queries
309
  - Enhancement: adding library conflict notice in General Settings
310
- - Enhancement: better handling of API errors
311
- - Enhancement: added an error when user enters the Tracking ID instead of an access code
312
  - Enhancement: improved error reporting for frontend stats and widgets
313
 
314
  = 4.3.9 =
315
  - Enhancement: marking classes as final
316
- - Enhancement: re-design the frontend widget
317
  - Enhancement: responsive design for frontend widget
318
  - Enhancement: responsive design for page reports
319
  - Enhancement: error codes standardization
@@ -368,7 +369,7 @@ This plugin it's released under the GPLv2, you can use it free of charge on your
368
  - Enhancement: added plugin version to debugging data
369
 
370
  = v4.3.2 =
371
- - Bug Fix: fixes for multisite with a single Google Account
372
  - Bug Fix: notice while displaying searches report
373
  - Bug Fix: downloads regex update
374
  - Bug Fix: always exclude outbound links from bounce-rate calculation
@@ -376,12 +377,12 @@ This plugin it's released under the GPLv2, you can use it free of charge on your
376
  - Enhancement: adjust page speed sample rate
377
  - Enhancement: exclude event tracking from bounce-rate calculation for downloads and mailto
378
  - Enhancement: reset downloads filters to default when empty
379
- - deprecate: classic analytics
380
 
381
  = v4.3.1 =
382
  - Bug Fix: link on top referrers list not working
383
  - allowing today as default stats
384
- - Bug Fix: profiles refresh issue
385
  - Enhancement: remove table borders on frontend widget
386
  - Bug Fix: multiple fixes for network mode
387
  - updated GAPI libarry
@@ -390,7 +391,7 @@ This plugin it's released under the GPLv2, you can use it free of charge on your
390
  - tracking code update
391
 
392
  = v4.3 =
393
- - responsive Google Charts
394
  - single authorization for multisite
395
  - Bug Fix: SERVER_ADDR PHP notice
396
  - Bug Fix: notices on admin dashboard
@@ -402,7 +403,7 @@ This plugin it's released under the GPLv2, you can use it free of charge on your
402
  = v4.2.21 =
403
  - added hungarian translation
404
  - added italian translation
405
- - Bug Fix: escaping characters in google charts
406
  - new filter on frontend widget
407
  - cache timeout adjustments
408
  - description update
@@ -411,7 +412,7 @@ This plugin it's released under the GPLv2, you can use it free of charge on your
411
 
412
  = v4.2.20 =
413
  - Bug Fix: russian country map is not working
414
- - Bug Fix: only administrator can see stats while using a cache plugin
415
  - Bug Fix: division by zero on frontend widget
416
  - added german translation
417
  - added spanish translation
@@ -419,8 +420,8 @@ This plugin it's released under the GPLv2, you can use it free of charge on your
419
  = v4.2.19 =
420
  - added portuguese translation
421
  - frontend widget CSS fix
422
- - added remarketing, demographics and interests tracking support
423
- - universal analytics is now the default tracking method
424
  - CSS fix for dashboard widgets
425
 
426
  = v4.2.18 =
@@ -429,7 +430,7 @@ This plugin it's released under the GPLv2, you can use it free of charge on your
429
  - removed debugging log file
430
  - permissions fix for WPMU
431
  - URI fix for frontend filters (top pages and top searches)
432
- - exclude frontend stats in preview mode
433
  - updated download filters
434
  - by default administrators are not excluded from tracking
435
  - bugfix for refresh_profiles() method
@@ -441,16 +442,16 @@ This plugin it's released under the GPLv2, you can use it free of charge on your
441
  - properly nonce verification
442
 
443
  = v4.2.15 =
444
- - force token reset procedure when failing to authenticate
445
  - deleting refresh token transient on uninstall
446
- - trying to catch all possible exceptions in gapi
447
  - no token reset on network connection errors
448
  - fixed screen options bug
449
  - added capability to select each role for access levels and exclude tracking
450
  - added links to top pages table
451
  - added links to top referrers table
452
  - added option to display Chart&Totals/Chart/Totals to frontend widget
453
- - retrieving realtime analytics with wp ajax
454
  - switching to default jquery-ui-tooltip wordpress library
455
  - fixed settings link not displayed in plugins page
456
 
@@ -463,10 +464,10 @@ This plugin it's released under the GPLv2, you can use it free of charge on your
463
  - bugfix for I18n
464
  - implemented a basic debugging log
465
  - CURL required error messages
466
- - option to hide all other properties/views from Select Domain list
467
  - added periodical _transient_timeout cleanup
468
  - fixed bug in property refresh method
469
- - disable hide option when none or a single property is available
470
  - better handling errors when a user authorizes without actually having a Google Analytics account
471
  - fixed bug in token revoke method
472
  - fixed bug in token refresh method
@@ -482,15 +483,15 @@ This plugin it's released under the GPLv2, you can use it free of charge on your
482
  - no more queries if there is no token
483
 
484
  = v4.2.11 =
485
- - added support for enhanced link attribution
486
- - bugfix on classic tracking code
487
 
488
  = v4.2.10 =
489
  - using predefined color for pie charts
490
 
491
  = v4.2.9b =
492
  - refresh token handles additional uncaught exceptions
493
- - partially resolved conflicts with other analytics plugins
494
 
495
  = v4.2.8b =
496
  - checkboxes replaced with switch on/off buttons
@@ -508,7 +509,7 @@ This plugin it's released under the GPLv2, you can use it free of charge on your
508
  - google analytics api token refresh bugfix
509
 
510
  = v4.2.5 =
511
- - corrected wrong analytics stats reporting
512
 
513
  = v4.2.4 =
514
  - css fixes
@@ -523,7 +524,7 @@ This plugin it's released under the GPLv2, you can use it free of charge on your
523
  - small fixes and update
524
 
525
  = v4.2.1 =
526
- - fixed Domain and Subdomains tracking code for Universal Analytics
527
 
528
  = v4.2 =
529
  - added google analytics real-time support
@@ -534,48 +535,48 @@ This plugin it's released under the GPLv2, you can use it free of charge on your
534
  - added cursor:pointer property to class .gabutton
535
 
536
  = v4.1.4 =
537
- - added access level option to Additional Backend Settings section
538
- - added access level option to Additional Frontend Settings section
539
  - new feature for Geo Map allowing local websites to display cities, instead of countries, on a regional map
540
  - fixed colors for Geo Chart containing world visits by country
541
 
542
  = v4.1.3 =
543
  - solved WooCommerce conflict using .note class
544
- - added traffic exclusion based on user level access
545
 
546
  = v4.1.1 =
547
  - added missing files
548
  - other minor fixes
549
 
550
  = v4.1 =
551
- - added event tracking feature: track downloads, track emails, track outbound links
552
  - remove trailing comma for IE8 compatibility
553
 
554
  = v4.0.4 =
555
- - a better way to retrieve domains and subdomains from profiles
556
  - remove escaping slashes generating errors on table display
557
 
558
  = v4.0.3 =
559
- - improvements on tracking code
560
  - redundant variable for default domain name
561
  - fix for "cannot redeclare class URI_Template_Parser" error
562
  - added Settings to plugins page
563
- - modified Google Profiles timeouts
564
 
565
  = v4.0.2 =
566
  - minimize Google Analytics API requests
567
  - new warnings available on Admin Option Page
568
  - avoid any unnecessary profile list update
569
- - avoid errors output for regular users while adding the tracking code
570
 
571
  = v4.0.1 =
572
  - fixed some 'Undefined index' notices
573
- - cache fix to decrease number of API requests
574
 
575
  = v4.0 =
576
 
577
  * simplified authorization process for beginners
578
- * advanced users can use their own API Project
579
 
580
  = v3.5.3 =
581
 
@@ -583,7 +584,7 @@ This plugin it's released under the GPLv2, you can use it free of charge on your
583
 
584
  = v3.5.2 =
585
 
586
- * some small javascript fixes for google tracking code
587
 
588
  = v3.5.1 =
589
 
@@ -592,11 +593,11 @@ This plugin it's released under the GPLv2, you can use it free of charge on your
592
  = v3.5 =
593
 
594
  * small bug fix for multiple TLD domains tracking and domain with subdomains tracking
595
- * added universal analytics support (you can track visits using analytics.js or using ga.js)
596
 
597
  = v3.4.1 =
598
 
599
- * switch to domain names instead of profile names on select lists
600
  * added is_front_page() check to avoid problems in Woocommerce
601
 
602
  = v3.4 =
@@ -608,7 +609,7 @@ This plugin it's released under the GPLv2, you can use it free of charge on your
608
 
609
  = v3.3.3 =
610
 
611
- * a better way to determine temp dir for google api cache
612
 
613
  = v3.3.3 =
614
 
@@ -643,9 +644,9 @@ This plugin it's released under the GPLv2, you can use it free of charge on your
643
  = v2.0 =
644
 
645
  * added light theme
646
- * added top pages tab
647
- * added top searches tab
648
- * added top referrers tab
649
  * added display settings
650
 
651
  = v1.6 =
1
  === Google Analytics Dashboard for WP ===
2
  Contributors: deconf
3
  Donate link: https://deconf.com/donate/
4
+ Tags: google,analytics,google analytics,dashboard,analytics dashboard,google analytics dashboard,google analytics plugin,google analytics widget,tracking,universal analytics,realtime,multisite,gadwp
5
  Requires at least: 3.5
6
  Tested up to: 4.2.2
7
+ Stable tag: 4.8.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
11
+ Displays Google Analytics reports in your WordPress Dashboard. Inserts the latest Google Analytics tracking code in your pages.
12
 
13
  == Description ==
14
+ This Google Analytics for WordPress plugin enables you to track your site using the latest Google Analytics tracking code and allows you to view key Google Analytics reports in your WordPress install.
 
15
 
16
+ In addition to a set of general Google Analytics reports, in-depth Page reports and in-depth Post reports allow further segmentation of your analytics data, providing performance details for each post or page from your website.
17
 
18
+ The Google Analytics tracking code is fully customizable through options and hooks, allowing advanced data collection using custom dimensions and events.
19
 
20
  = Google Analytics Real-Time =
21
 
22
+ Google Analytics reports, in real-time, in your dashboard screen:
23
 
24
+ - Real-time number of visitors
25
+ - Real-time acquisition channels
26
+ - Real-time traffic sources details
27
 
28
  = Google Analytics Reports =
29
 
30
+ The Google Analytics reports you need, on your dashboard, in your All Posts and All Pages screens, and on site's frontend:
31
+
32
+ - Sessions, organic searches, page views, bounce rate analytics reports
33
+ - Locations, pages, referrers, keywords analytics reports
34
+ - Traffic channels, social networks, traffic mediums, search engines analytics reports
35
+ - User access control over analytics reports
36
+
37
+ = Google Analytics Basic Tracking =
38
+
39
+ Installs the latest Google Analytics tracking code and allows full code customization:
40
+
41
+ - Switch between Universal Google Analytics and Classic Google Analytics code
42
+ - IP address anonymization
43
+ - Enhanced link attribution
44
+ - Remarketing, demographics and interests tracking
45
+ - Google AdSense linking
46
+ - Page Speed sampling rate control
47
+ - Cross domain tracking
48
+ - Exclude user roles from tracking
49
+
50
+ = Google Analytics Event Tracking =
51
+
52
+ Google Analytics Dashboard for WP enables you to easily track events like:
53
+
54
+ - Downloads
55
+ - Emails
56
+ - Outbound links
57
+ - Affiliate links
58
+ - Fragment identifiers
59
+
60
+ = Google Analytics Custom Dimensions =
61
+
62
+ With Google Analytics Dashboard for WP you can use custom dimensions to track:
63
+
64
+ - Authors
65
+ - Publication year
66
+ - Categories
67
+ - User engagement
68
+
69
+ = Google Analytics Dashboard for WP on Multisite =
70
+
71
+ This plugin is fully compatible with multisite network installs, allowing three setup modes:
72
+
73
+ - Mode 1: network activated using multiple Google Analytics accounts
74
+ - Mode 2: network activated using a single Google Analytics account
75
+ - Mode 3: network deactivated using multiple Google Analytics accounts
76
 
77
  > <strong>Google Analytics Dashboard for WP on GitHub</strong><br>
78
+ > You can submit feature requests or bugs on [Google Analytics Dashboard for WP](https://github.com/deconf/Google-Analytics-Dashboard-for-WP) repository.
79
 
80
+ = Further reading =
81
 
82
  * Homepage of [Google Analytics Dashboard](https://deconf.com/google-analytics-dashboard-wordpress/) for WordPress
83
  * Other [WordPress Plugins](https://deconf.com/wordpress/) by same author
84
+ * [Google Analytics | Partners](https://www.google.com/analytics/partners/company/5127525902581760/gadp/5629499534213120/app/5707702298738688/listing/5639274879778816) Gallery
85
 
86
  == Installation ==
87
 
88
+ 1. Upload the full google-analytics-dashboard-for-wp directory into your wp-content/plugins directory.
89
+ 2. In WordPress select Plugins from your sidebar menu and activate the Google Analytics Dashboard for WP plugin.
90
+ 3. Open the plugin configuration page, which is located under Google Analytics menu.
91
+ 4. Authorize the plugin to connect to Google Analytics using the Authorize Plugin button.
92
+ 5. Go back to the plugin configuration page, which is located under Google Analytics menu to update/set your settings.
93
+ 6. Go to Google Analytics -> Tracking Code to configure/enable/disable tracking.
94
 
95
  == Frequently Asked Questions ==
96
 
100
 
101
  = Some settings are missing in the video tutorial =
102
 
103
+ We are constantly improving Google Analytics Dashboard for WP, sometimes the video tutorial may be a little outdated.
104
 
105
  = How can I make suggest a new feature, contribute or report a bug? =
106
 
112
 
113
  == Screenshots ==
114
 
115
+ 1. Google Analytics Dashboard for WP Blue Color
116
+ 2. Google Analytics Dashboard for WP Real-Time
117
+ 3. Google Analytics Dashboard for WP reports per Posts/Pages
118
+ 4. Google Analytics Dashboard for WP Geo Map
119
+ 5. Google Analytics Dashboard for WP Top Pages, Top Referrers and Top Searches
120
+ 6. Google Analytics Dashboard for WP Traffic Overview
121
+ 7. Google Analytics Dashboard for WP statistics per page on Frontend
122
+ 8. Google Analytics Dashboard for WP cities on region map
123
+ 9. Google Analytics Dashboard for WP Widget
124
 
125
  == License ==
126
 
127
+ Google Analytics Dashboard for WP it's released under the GPLv2, you can use it free of charge on your personal or commercial website.
128
 
129
  == Changelog ==
130
 
138
  - Enhancement: display an admin notice after manual and automatic updates
139
  - Enhancement: small I18N tweaks and POT file update
140
  - Enhancement: introducing last 14 days range in items reports
141
+ - Enhancement: introducing One Year and Three Years range for all google analytics reports
142
  - Enhancement: set the last selected report and date range as default for subsequent requests
143
 
144
  = 4.8 =
147
  - Enhancement: JavaScript code cleanup and optimization
148
  - Enhancement: memory usage optimization
149
  - Enhancement: small assets fixes, UX improvements, props by [Adrian Pop](https://github.com/adipop)
150
+ - Enhancement: introducing google analytics reports for all frontend web pages (new feature)
151
  - Enhancement: gadwp_frontenditem_uri filter to allow URI corrections for frontend item reports
152
  - Bug Fix: avoid double encoding of UTF-8 URIs
153
  - Bug Fix: 100% number formatting issue on bounce rate report
177
  - Enhancement: Italian translation updated
178
  - Bug Fix: use url-encoding for API filters to avoid generating invalid parameters
179
  - Bug Fix: cache reports for pages and posts with queries in URI
180
+ - Bug Fix: avoid double encoding while doing Google Analytics API requests
181
 
182
  = 4.7 =
183
  - Enhancement: Dutch translation updated
184
  - Enhancement: using wp_get_current_user() to check users' roles
185
  - Enhancement: fit longer titles in backend item reports widget
186
+ - Enhancement: disable the drop-down select list while a single Google Analytics View is available
187
+ - Bug Fix: views missing on huge google analytics accounts
188
  - Bug Fix: unable to add new widgets on frontend
189
 
190
  = 4.6 =
192
  - Enhancement: Japanese translation updated
193
  - Enhancement: Portuguese (Brazil) translation updated
194
  - Enhancement: introducing a manager class to keep track of all instances and their references
195
+ - Enhancement: push the google analytics tracking code at the end of head section
196
  - Enhancement: better support for remove_action and wp_dequeue_script
197
  - Enhancement: Ajax calls optimization
198
  - Bug Fix: loading bar issues while not all frontend features are enabled
204
  - Bug Fix: color picker and settings page tabs not working when per posts/pages reports are disabled
205
 
206
  = 4.5.1 =
207
+ - Bug Fix: analytics icons added to all custom columns
208
  - Bug Fix: unable to switch tabs in plugin options for some languages
209
 
210
  = 4.5 =
211
  - Requirements: WordPress 3.5 and above
212
  - Enhancement: automatic updates for minor versions (security and maintenance releases)
213
  - Enhancement: improvements while enqueuing styles & scripts
214
+ - Enhancement: google analytics reports per post in Post List (new feature)
215
+ - Enhancement: google analytics reports per page in Page List (new feature)
216
  - Enhancement: gadwp_backenditem_uri allows URI corrections for backend item reports
217
  - Enhancement: option to enable/disable the custom dashboard widget
218
  - Enhancement: Japanese translation
220
  - Enhancement: Portuguese (Brazil) translation
221
  - Enhancement: UI improvements, props by [Paal Joachim Romdahl](https://github.com/paaljoachim)
222
  - Bug Fix: Arabic translation not loading properly
223
+ - Bug Fix: initialize time-shift for all Google Analytics API calls
224
+ - Bug Fix: include Google Analytics API library only when a API call is made
225
  - Bug Fix: keep the percentage numeric while anonymizing data
226
  - Bug Fix: add PHP 5.3 as a requirement when forcing IPv4
227
  - Bug Fix: typo fix, props by [Andrew Minion](https://github.com/macbookandrew)
228
 
229
  = 4.4.7 =
230
  - Bug Fix: fatal error in plugin settings screen, under certain circumstances
231
+ - Bug Fix: fix refresh interval for google analytics backend reports
232
 
233
  = 4.4.6 =
234
  - Bug Fix: maintain compatibility with WordPress 3.0+
235
 
236
  = 4.4.5 =
237
+ - Enhancement: Google Analytics API requests optimization
238
  - Enhancement: server responses improvements
239
  - Enhancement: filter data through query options
240
  - Bug Fix: additional checks before displaying an error
248
  - Bug Fix: PHP notices fix for some requests
249
  - Bug Fix: PHP notices fix when calling ob_clean on an empty buffer
250
  - Bug Fix: frontend stats not responsive
251
+ - Enhancement: handle some additional Google Analytics API errors
252
  - Enhancement: set totals to zero when anonymize stats is enabled
253
  - Enhancement: auto-cleanup removed; all transients have static identifiers now
254
  - Enhancement: dump error details to JavaScript Console and throw an alert on invalid responses
255
  - Enhancement: Italian translation
256
 
257
  = 4.4.3 =
258
+ - Enhancement: further optimization on google analytics api queries
259
  - Enhancement: less error prone while running JavaScript
260
+ - Enhancement: Google Analytics API errors handling improvement
261
  - Enhancement: added GADWP_IP_VERSION constant to force a particular Internet Protocol version when needed
262
  - Enhancement: run the clean-up method only in settings screen
263
  - Enhancement: added tabs to Tracking Code page
292
  - Enhancement: asynchronous reports loading and speed improvements
293
  - Enhancement: code optimization for all frontend and backend features
294
  - Enhancement: finished the error standardization process; easier debugging
295
+ - Enhancement: Google Analytics API library update
296
 
297
  = 4.3.11 =
298
  - Bug Fix: improvements on QPS management
299
  - Bug Fix: fall-back to world map when a wrong country code is entered
300
+ - Bug Fix: removed double transient call on successful google analytics authorization
301
  - Bug Fix: PHP warning when authorizing without a Google Analytics account
302
  - Bug Fix: switch back to initial blog after completing an error clean up in multisite mode
303
  - Enhancement: clear all errors on version change
308
  = 4.3.10 =
309
  - Bug Fix: removed the PHP debugging log for frontend queries
310
  - Enhancement: adding library conflict notice in General Settings
311
+ - Enhancement: better handling of Google Analytics API errors
312
+ - Enhancement: added an error when user enters the Google Analytics Tracking ID instead of an access code
313
  - Enhancement: improved error reporting for frontend stats and widgets
314
 
315
  = 4.3.9 =
316
  - Enhancement: marking classes as final
317
+ - Enhancement: re-design of the google analytics frontend widget
318
  - Enhancement: responsive design for frontend widget
319
  - Enhancement: responsive design for page reports
320
  - Enhancement: error codes standardization
369
  - Enhancement: added plugin version to debugging data
370
 
371
  = v4.3.2 =
372
+ - Bug Fix: fixes for multisite with a single Google Analytics Account
373
  - Bug Fix: notice while displaying searches report
374
  - Bug Fix: downloads regex update
375
  - Bug Fix: always exclude outbound links from bounce-rate calculation
377
  - Enhancement: adjust page speed sample rate
378
  - Enhancement: exclude event tracking from bounce-rate calculation for downloads and mailto
379
  - Enhancement: reset downloads filters to default when empty
380
+ - deprecate: classic google analytics
381
 
382
  = v4.3.1 =
383
  - Bug Fix: link on top referrers list not working
384
  - allowing today as default stats
385
+ - Bug Fix: google analytics profiles refresh issue
386
  - Enhancement: remove table borders on frontend widget
387
  - Bug Fix: multiple fixes for network mode
388
  - updated GAPI libarry
391
  - tracking code update
392
 
393
  = v4.3 =
394
+ - responsive google analytics charts
395
  - single authorization for multisite
396
  - Bug Fix: SERVER_ADDR PHP notice
397
  - Bug Fix: notices on admin dashboard
403
  = v4.2.21 =
404
  - added hungarian translation
405
  - added italian translation
406
+ - Bug Fix: escaping characters in google analytics charts
407
  - new filter on frontend widget
408
  - cache timeout adjustments
409
  - description update
412
 
413
  = v4.2.20 =
414
  - Bug Fix: russian country map is not working
415
+ - Bug Fix: only administrator can see google analytics reports while using a cache plugin
416
  - Bug Fix: division by zero on frontend widget
417
  - added german translation
418
  - added spanish translation
420
  = v4.2.19 =
421
  - added portuguese translation
422
  - frontend widget CSS fix
423
+ - added remarketing, demographics and interests tracking support for Google Analytics tracking code
424
+ - universal google analytics is now the default tracking method
425
  - CSS fix for dashboard widgets
426
 
427
  = v4.2.18 =
430
  - removed debugging log file
431
  - permissions fix for WPMU
432
  - URI fix for frontend filters (top pages and top searches)
433
+ - exclude google analytics reports in preview mode
434
  - updated download filters
435
  - by default administrators are not excluded from tracking
436
  - bugfix for refresh_profiles() method
442
  - properly nonce verification
443
 
444
  = v4.2.15 =
445
+ - force token reset procedure when failing to authenticate with Google Analytics
446
  - deleting refresh token transient on uninstall
447
+ - trying to catch all possible exceptions thrown by Google Analytics API
448
  - no token reset on network connection errors
449
  - fixed screen options bug
450
  - added capability to select each role for access levels and exclude tracking
451
  - added links to top pages table
452
  - added links to top referrers table
453
  - added option to display Chart&Totals/Chart/Totals to frontend widget
454
+ - retrieving realtime analytics using wp ajax
455
  - switching to default jquery-ui-tooltip wordpress library
456
  - fixed settings link not displayed in plugins page
457
 
464
  - bugfix for I18n
465
  - implemented a basic debugging log
466
  - CURL required error messages
467
+ - option to hide all other google analytics properties/views from Select Domain list
468
  - added periodical _transient_timeout cleanup
469
  - fixed bug in property refresh method
470
+ - disable hide option when none or a single google analytics property is available
471
  - better handling errors when a user authorizes without actually having a Google Analytics account
472
  - fixed bug in token revoke method
473
  - fixed bug in token refresh method
483
  - no more queries if there is no token
484
 
485
  = v4.2.11 =
486
+ - added support for google analytics enhanced link attribution
487
+ - bugfix on google analytics classic tracking code
488
 
489
  = v4.2.10 =
490
  - using predefined color for pie charts
491
 
492
  = v4.2.9b =
493
  - refresh token handles additional uncaught exceptions
494
+ - partially resolved conflicts with other google analytics plugins
495
 
496
  = v4.2.8b =
497
  - checkboxes replaced with switch on/off buttons
509
  - google analytics api token refresh bugfix
510
 
511
  = v4.2.5 =
512
+ - corrected wrong google analytics stats reporting
513
 
514
  = v4.2.4 =
515
  - css fixes
524
  - small fixes and update
525
 
526
  = v4.2.1 =
527
+ - fixed Domain and Subdomains tracking code for Universal Google Analytics
528
 
529
  = v4.2 =
530
  - added google analytics real-time support
535
  - added cursor:pointer property to class .gabutton
536
 
537
  = v4.1.4 =
538
+ - added access level option to backend google analytics reports
539
+ - added access level option to frontend google analytics reports
540
  - new feature for Geo Map allowing local websites to display cities, instead of countries, on a regional map
541
  - fixed colors for Geo Chart containing world visits by country
542
 
543
  = v4.1.3 =
544
  - solved WooCommerce conflict using .note class
545
+ - added Google Analytics tracking exclusion based on user level access
546
 
547
  = v4.1.1 =
548
  - added missing files
549
  - other minor fixes
550
 
551
  = v4.1 =
552
+ - added Google Analyticsevent tracking feature: track downloads, track emails, track outbound links
553
  - remove trailing comma for IE8 compatibility
554
 
555
  = v4.0.4 =
556
+ - a better way to retrieve domains and subdomains from Google Analytics profiles
557
  - remove escaping slashes generating errors on table display
558
 
559
  = v4.0.3 =
560
+ - improvements on google analytics tracking code
561
  - redundant variable for default domain name
562
  - fix for "cannot redeclare class URI_Template_Parser" error
563
  - added Settings to plugins page
564
+ - modified Google Analytics Profiles timeouts
565
 
566
  = v4.0.2 =
567
  - minimize Google Analytics API requests
568
  - new warnings available on Admin Option Page
569
  - avoid any unnecessary profile list update
570
+ - avoid errors output for regular users while adding the google analytics tracking code
571
 
572
  = v4.0.1 =
573
  - fixed some 'Undefined index' notices
574
+ - cache fix to decrease number of Google Analytics API requests
575
 
576
  = v4.0 =
577
 
578
  * simplified authorization process for beginners
579
+ * advanced users can use their own Google Analytics API Project
580
 
581
  = v3.5.3 =
582
 
584
 
585
  = v3.5.2 =
586
 
587
+ * some small javascript fixes for google analytics tracking code
588
 
589
  = v3.5.1 =
590
 
593
  = v3.5 =
594
 
595
  * small bug fix for multiple TLD domains tracking and domain with subdomains tracking
596
+ * added universal google analytics support (you can track visits using analytics.js or using ga.js)
597
 
598
  = v3.4.1 =
599
 
600
+ * switch to domain names instead of google analytics profile names on select lists
601
  * added is_front_page() check to avoid problems in Woocommerce
602
 
603
  = v3.4 =
609
 
610
  = v3.3.3 =
611
 
612
+ * a better way to determine temp dir for google analytics api cache
613
 
614
  = v3.3.3 =
615
 
644
  = v2.0 =
645
 
646
  * added light theme
647
+ * added top pages google analytics report
648
+ * added top searches google analytics report
649
+ * added top referrers google analytics report
650
  * added display settings
651
 
652
  = v1.6 =
tools/gapi.php CHANGED
@@ -35,7 +35,10 @@ if ( ! class_exists( 'GADWP_GAPI_Controller' ) ) {
35
  if ( function_exists( 'curl_version' ) ) {
36
  $curlversion = curl_version();
37
  if ( isset( $curlversion['version'] ) && ( version_compare( PHP_VERSION, '5.3.0' ) >= 0 ) && version_compare( $curlversion['version'], '7.10.8' ) >= 0 && defined( 'GADWP_IP_VERSION' ) && GADWP_IP_VERSION ) {
38
- $config->setClassConfig( 'Google_IO_Curl', array( 'options' => array( CURLOPT_IPRESOLVE => GADWP_IP_VERSION ) ) ); // Force CURL_IPRESOLVE_V4 or CURL_IPRESOLVE_V6
 
 
 
39
  }
40
  }
41
  $this->client = new Google_Client( $config );
@@ -373,10 +376,14 @@ if ( ! class_exists( 'GADWP_GAPI_Controller' ) ) {
373
  if ( $from == "today" || $from == "yesterday" ) {
374
  $dimensions = 'ga:hour';
375
  $dayorhour = __( "Hour", 'ga-dash' );
376
- } else {
377
- $dimensions = 'ga:date,ga:dayOfWeekName';
378
- $dayorhour = __( "Date", 'ga-dash' );
379
- }
 
 
 
 
380
  $options = array( 'dimensions' => $dimensions, 'quotaUser' => $this->managequota . 'p' . $projectId );
381
  if ( $filter ) {
382
  $options['filters'] = 'ga:pagePath==' . $filter;
@@ -391,9 +398,13 @@ if ( ! class_exists( 'GADWP_GAPI_Controller' ) ) {
391
  foreach ( $data->getRows() as $row ) {
392
  $gadwp_data[] = array( (int) $row[0] . ':00', round( $row[1], 2 ) );
393
  }
394
- } else {
 
 
 
 
395
  foreach ( $data->getRows() as $row ) {
396
- $gadwp_data[] = array( esc_html( ucfirst( __( $row[1] ) ) ) . ',' . esc_html( substr_replace( substr_replace( $row[0], "-", 4, 0 ), "-", 7, 0 ) ), round( $row[2], 2 ) );
397
  }
398
  }
399
  return $gadwp_data;
35
  if ( function_exists( 'curl_version' ) ) {
36
  $curlversion = curl_version();
37
  if ( isset( $curlversion['version'] ) && ( version_compare( PHP_VERSION, '5.3.0' ) >= 0 ) && version_compare( $curlversion['version'], '7.10.8' ) >= 0 && defined( 'GADWP_IP_VERSION' ) && GADWP_IP_VERSION ) {
38
+ $config->setClassConfig( 'Google_IO_Curl', array( 'options' => array( CURLOPT_IPRESOLVE => GADWP_IP_VERSION ) ) ); // Force
39
+ // CURL_IPRESOLVE_V4
40
+ // or
41
+ // CURL_IPRESOLVE_V6
42
  }
43
  }
44
  $this->client = new Google_Client( $config );
376
  if ( $from == "today" || $from == "yesterday" ) {
377
  $dimensions = 'ga:hour';
378
  $dayorhour = __( "Hour", 'ga-dash' );
379
+ } else
380
+ if ( $from == "365daysAgo" || $from == "1095daysAgo" ) {
381
+ $dimensions = 'ga:yearMonth, ga:month';
382
+ $dayorhour = __( "Date", 'ga-dash' );
383
+ } else {
384
+ $dimensions = 'ga:date,ga:dayOfWeekName';
385
+ $dayorhour = __( "Date", 'ga-dash' );
386
+ }
387
  $options = array( 'dimensions' => $dimensions, 'quotaUser' => $this->managequota . 'p' . $projectId );
388
  if ( $filter ) {
389
  $options['filters'] = 'ga:pagePath==' . $filter;
398
  foreach ( $data->getRows() as $row ) {
399
  $gadwp_data[] = array( (int) $row[0] . ':00', round( $row[1], 2 ) );
400
  }
401
+ } else if ( $from == "365daysAgo" || $from == "1095daysAgo" ) {
402
+ foreach ( $data->getRows() as $row ) {
403
+ $gadwp_data[] = array( date('F', mktime(0, 0, 0, $row[1], 10)) . ', ' . esc_html( substr_replace( $row[0], "-", 4, 0 ) ), round( $row[2], 2 ) );
404
+ }
405
+ }else{
406
  foreach ( $data->getRows() as $row ) {
407
+ $gadwp_data[] = array( esc_html( ucfirst( __( $row[1] ) ) ) . ', ' . esc_html( substr_replace( substr_replace( $row[0], "-", 4, 0 ), "-", 7, 0 ) ), round( $row[2], 2 ) );
408
  }
409
  }
410
  return $gadwp_data;
tools/tools.php CHANGED
@@ -21,9 +21,7 @@ if ( ! class_exists( 'GADWP_Tools' ) ) {
21
 
22
  public static function guess_default_domain( $profiles ) {
23
  $domain = get_option( 'siteurl' );
24
- $domain = str_ireplace( array(
25
- 'http://',
26
- 'https://' ), '', $domain );
27
  if ( ! empty( $profiles ) ) {
28
  foreach ( $profiles as $items ) {
29
  if ( strpos( $items[3], $domain ) ) {
@@ -53,10 +51,7 @@ if ( ! class_exists( 'GADWP_Tools' ) ) {
53
  }
54
 
55
  public static function strip_protocol( $domain ) {
56
- return str_replace( array(
57
- "https://",
58
- "http://",
59
- " " ), "", $domain );
60
  }
61
 
62
  public static function clear_cache() {
@@ -113,5 +108,19 @@ if ( ! class_exists( 'GADWP_Tools' ) ) {
113
  }
114
  }
115
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
116
  }
117
  }
21
 
22
  public static function guess_default_domain( $profiles ) {
23
  $domain = get_option( 'siteurl' );
24
+ $domain = str_ireplace( array( 'http://', 'https://' ), '', $domain );
 
 
25
  if ( ! empty( $profiles ) ) {
26
  foreach ( $profiles as $items ) {
27
  if ( strpos( $items[3], $domain ) ) {
51
  }
52
 
53
  public static function strip_protocol( $domain ) {
54
+ return str_replace( array( "https://", "http://", " " ), "", $domain );
 
 
 
55
  }
56
 
57
  public static function clear_cache() {
108
  }
109
  }
110
  }
111
+
112
+ public static function set_cookie( $name, $value ) {
113
+ $name = 'gadwp_' . $name;
114
+ setcookie( $name, $value, time() + 60 * 60 * 24 * 365 * 10, '/', COOKIE_DOMAIN, false );
115
+ }
116
+
117
+ public static function get_cookie( $name ) {
118
+ $name = 'gadwp_' . $name;
119
+ if ( isset( $_COOKIE[$name] ) ) {
120
+ return $_COOKIE[$name];
121
+ } else {
122
+ return false;
123
+ }
124
+ }
125
  }
126
  }