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