Google Analyticator - Version 6.4.8

Version Description

  • Bug fix: anonymizeIP
  • Reduced Memory Usage for dashboard
  • Added Turkish, Spanish and Dutch
  • Check token fix widget authentication
  • Added Remarketing, Demographics and Interests reports for universal
  • Changed Google API Client on setting of default path
  • Fixes bugs
Download this release

Release Info

Developer noahkagan
Plugin Icon 128x128 Google Analyticator
Version 6.4.8
Comparing to
See all releases

Code changes from version 6.4.7.3 to 6.4.8

class.analytics.stats.php CHANGED
@@ -1,16 +1,5 @@
1
  <?php
2
 
3
- # Include SimplePie if it doesn't exist
4
- if ( !class_exists('SimplePie') ) {
5
- require_once (ABSPATH . WPINC . '/class-feed.php');
6
- }
7
-
8
- if ( !class_exists('Google_Client') ) {
9
- require_once 'google-api-php-client/src/Google_Client.php';
10
- }
11
- if ( !class_exists('Google_AnalyticsService') ) {
12
- require_once 'google-api-php-client/src/contrib/Google_AnalyticsService.php';
13
- }
14
 
15
  /**
16
  * Handles interactions with Google Analytics' Stat API
@@ -32,6 +21,19 @@ class GoogleAnalyticsStats
32
  **/
33
  function GoogleAnalyticsStats()
34
  {
 
 
 
 
 
 
 
 
 
 
 
 
 
35
  $this->client = new Google_Client();
36
  $this->client->setApprovalPrompt("force");
37
  $this->client->setAccessType('offline');
@@ -50,6 +52,7 @@ class GoogleAnalyticsStats
50
  catch (Google_ServiceException $e)
51
  {
52
  print '(cas:48) There was an Analytics API service error ' . $e->getCode() . ':' . $e->getMessage();
 
53
  }
54
  }
55
 
@@ -59,7 +62,21 @@ class GoogleAnalyticsStats
59
 
60
  if (!empty($ga_google_authtoken))
61
  {
 
 
62
  $this->client->setAccessToken($ga_google_authtoken);
 
 
 
 
 
 
 
 
 
 
 
 
63
  }
64
  else
65
  {
1
  <?php
2
 
 
 
 
 
 
 
 
 
 
 
 
3
 
4
  /**
5
  * Handles interactions with Google Analytics' Stat API
21
  **/
22
  function GoogleAnalyticsStats()
23
  {
24
+
25
+ # Include SimplePie if it doesn't exist
26
+ if ( !class_exists('SimplePie') ) {
27
+ require_once (ABSPATH . WPINC . '/class-feed.php');
28
+ }
29
+
30
+ if ( !class_exists('Google_Client') ) {
31
+ require_once 'google-api-php-client/src/Google_Client.php';
32
+ }
33
+ if ( !class_exists('Google_AnalyticsService') ) {
34
+ require_once 'google-api-php-client/src/contrib/Google_AnalyticsService.php';
35
+ }
36
+
37
  $this->client = new Google_Client();
38
  $this->client->setApprovalPrompt("force");
39
  $this->client->setAccessType('offline');
52
  catch (Google_ServiceException $e)
53
  {
54
  print '(cas:48) There was an Analytics API service error ' . $e->getCode() . ':' . $e->getMessage();
55
+ return false;
56
  }
57
  }
58
 
62
 
63
  if (!empty($ga_google_authtoken))
64
  {
65
+ try
66
+ {
67
  $this->client->setAccessToken($ga_google_authtoken);
68
+ }
69
+ catch( Google_AuthException $e )
70
+ {
71
+ print '(cas:72) Google Analyticator was unable to authenticate you with
72
+ Google using the Auth Token you pasted into the input box on the previous step. <br><br>
73
+ This could mean either you pasted the token wrong, or the time/date on your server is wrong,
74
+ or an SSL issue preventing Google from Authenticating. <br><br>
75
+ <a href="' . admin_url('/options-general.php?page=ga_reset').'"> Try Deauthorizing &amp; Resetting Google Analyticator.</a>
76
+ <br><br><strong>Tech Info </strong> ' . $e->getCode() . ':' . $e->getMessage();
77
+
78
+ return false;
79
+ }
80
  }
81
  else
82
  {
gapro-plugin-advert-sidebar.png CHANGED
Binary file
google-analyticator.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Plugin Name: Google Analyticator
4
- * Version: 6.4.7.3
5
  * Plugin URI: http://www.videousermanuals.com/google-analyticator/?utm_campaign=analyticator&utm_medium=plugin&utm_source=readme-txt
6
  * Description: Adds the necessary JavaScript code to enable <a href="http://www.google.com/analytics/">Google's Analytics</a>. After enabling this plugin you need to authenticate with Google, then select your domain and you're set.
7
  * Author: Video User Manuals Pty Ltd
@@ -9,7 +9,7 @@
9
  * Text Domain: google-analyticator
10
  */
11
 
12
- define('GOOGLE_ANALYTICATOR_VERSION', '6.4.7.3');
13
 
14
  define('GOOGLE_ANALYTICATOR_CLIENTID', '1007949979410.apps.googleusercontent.com');
15
  define('GOOGLE_ANALYTICATOR_CLIENTSECRET', 'q06U41XDXtzaXD14E-KO1hti'); //don't worry - this don't need to be secret in our case
@@ -17,52 +17,52 @@ define('GOOGLE_ANALYTICATOR_REDIRECT', 'urn:ietf:wg:oauth:2.0:oob');
17
  define('GOOGLE_ANALYTICATOR_SCOPE', 'https://www.googleapis.com/auth/analytics');//.readonly
18
 
19
  // Constants for enabled/disabled state
20
- define("ga_enabled", "enabled", true);
21
- define("ga_disabled", "disabled", true);
22
 
23
  // Defaults, etc.
24
- define("key_ga_uid", "ga_uid", true);
25
- define("key_ga_status", "ga_status", true);
26
- define("key_ga_disable_gasites", "ga_disable_gasites", true);
27
- define("key_ga_analytic_snippet", "ga_analytic_snippet", true);
28
- define("key_ga_admin", "ga_admin_status", true);
29
- define("key_ga_admin_disable", "ga_admin_disable", true);
30
- define("key_ga_admin_disable_DimentionIndex", "ga_admin_disable_DimentionIndex", true);
31
- define("key_ga_remarketing", 'ga_enable_remarketing', true );
32
- define("key_ga_track_login", "key_ga_track_login", true );
33
- define("key_ga_show_ad", "key_ga_show_ad", true );
34
- define("key_ga_admin_role", "ga_admin_role", true);
35
- define("key_ga_dashboard_role", "ga_dashboard_role", true);
36
- define("key_ga_adsense", "ga_adsense", true);
37
- define("key_ga_extra", "ga_extra", true);
38
- define("key_ga_extra_after", "ga_extra_after", true);
39
- define("key_ga_event", "ga_event", true);
40
- define("key_ga_outbound", "ga_outbound", true);
41
- define("key_ga_outbound_prefix", "ga_outbound_prefix", true);
42
- define("key_ga_enhanced_link_attr", "ga_enhanced_link_attr", true);
43
- define("key_ga_downloads", "ga_downloads", true);
44
- define("key_ga_downloads_prefix", "ga_downloads_prefix", true);
45
- define("key_ga_widgets", "ga_widgets", true);
46
- define("key_ga_annon", "ga_annon", true);
47
-
48
- define("ga_uid_default", "UA-XXXXXXXX-X", true);
49
- define("ga_google_token_default", "", true);
50
- define("ga_disable_gasites_default", ga_disabled, true);
51
- define("ga_analytic_snippet_default", ga_enabled, true);
52
- define("ga_status_default", ga_disabled, true);
53
- define("ga_admin_default", ga_enabled, true);
54
- define("ga_admin_disable_DimentionIndex_default", "", true);
55
- define("ga_admin_disable_default", 'remove', true);
56
- define("ga_adsense_default", "", true);
57
- define("ga_extra_default", "", true);
58
- define("ga_extra_after_default", "", true);
59
- define("ga_event_default", ga_enabled, true);
60
- define("ga_outbound_default", ga_enabled, true);
61
- define("ga_outbound_prefix_default", 'outgoing', true);
62
- define("ga_enhanced_link_attr_default", ga_disabled, true);
63
- define("ga_downloads_default", "", true);
64
- define("ga_downloads_prefix_default", "download", true);
65
- define("ga_widgets_default", ga_enabled, true);
66
 
67
  // Create the default key and status
68
  add_option( 'ga_version', GOOGLE_ANALYTICATOR_VERSION );
@@ -183,6 +183,16 @@ function ga_pre_load()
183
  exit;
184
 
185
  endif;
 
 
 
 
 
 
 
 
 
 
186
  }
187
 
188
  function ga_activate()
@@ -301,17 +311,20 @@ function ga_options_page() {
301
 
302
  // If we are a postback, store the options
303
  if (isset($_POST['info_update'])) {
 
304
  # Verify nonce
305
  check_admin_referer('google-analyticator-update_settings');
306
 
307
  update_option('ga_defaults', 'no');
308
-
309
- // Get our domains array, and match the UID to the value
310
- $domains = stripslashes( $_POST['ga_domain_names'] );
311
- $all_domains = unserialize( $domains );
312
- update_option( 'ga_domain_name', $all_domains[ $_POST[key_ga_uid] ] );
313
-
314
- // Update the status
 
 
315
  $ga_status = wp_filter_kses( $_POST[key_ga_status] );
316
  if (($ga_status != ga_enabled) && ($ga_status != ga_disabled))
317
  $ga_status = ga_status_default;
@@ -323,7 +336,7 @@ function ga_options_page() {
323
  $ga_disable_gasites = wp_filter_kses( $_POST[key_ga_disable_gasites] );
324
 
325
  if (!$ga_disable_gasites)
326
- $ga_disable_gasites = ga_disable_gasites_default;
327
 
328
  update_option(key_ga_disable_gasites, $ga_disable_gasites);
329
  }
@@ -440,6 +453,9 @@ function ga_options_page() {
440
  update_option(key_ga_show_ad, wp_filter_kses( $_POST[key_ga_show_ad] ) );
441
  // Update enable tracking login
442
  update_option(key_ga_track_login, wp_filter_kses( $_POST[key_ga_track_login] ) );
 
 
 
443
  // Give an updated message
444
  echo "<div class='updated fade'><p><strong>" . __('Google Analyticator settings saved.', 'google-analyticator') . "</strong></p></div>";
445
  }
@@ -468,20 +484,24 @@ function ga_options_page() {
468
  <?php
469
  $addons = get_option("gapro_addons");
470
  if(!$addons){?>
471
- <div id="vumga-sidebar" style="position: absolute; top: 0; right: 0; width: 250px; border: 1px solid #ccc; padding: 20px; background:#FFFFFF"> <a href="http://get.videousermanuals.com/ga-pro/?utm_campaign=analyticatorpro&utm_medium=plugin&utm_source=settings" target="_blank"><img src="<?php echo plugins_url('gapro-plugin-advert-sidebar.png', __FILE__ ); ?>" alt="Learn More" title="Learn More" /></a> </div>
 
 
 
 
 
472
  <?php }?>
473
  <div style="margin-right: 320px;">
474
  <table class="form-table" cellspacing="2" cellpadding="5" width="100%">
475
  <tr>
476
- <td colspan="2"><h3>
477
  <?php _e('Basic Settings', 'google-analyticator'); ?>
478
  </h3></td>
479
  </tr>
480
 
481
  <tr>
482
- <th width="30%" valign="top" style="padding-top: 10px;"> <label for="<?php echo key_ga_status ?>">
483
- <?php _e('Google Analytics logging is', 'google-analyticator'); ?>
484
- :</label>
485
  </th>
486
  <td>
487
  <?php
@@ -503,9 +523,7 @@ if(!$addons){?>
503
  </td>
504
  </tr>
505
  <tr id="ga_ajax_accounts">
506
- <th valign="top" style="padding-top: 10px;"> <label for="<?php echo key_ga_uid; ?>">
507
- <?php _e('Analytics Account', 'google-analyticator'); ?>
508
- :</label>
509
  </th>
510
  <td>
511
 
@@ -520,17 +538,17 @@ if(!$addons){?>
520
 
521
  $hasSelected = false; // Will be set to true once a match is found. Cant echo selected twice.
522
 
523
- foreach($uids as $id=>$domain):
524
 
525
- echo '<option value="'.$id.'"';
526
- // If set in DB.
527
- if( get_option(key_ga_uid) == $id ) { $hasSelected=true; echo ' selected="selected"'; }
528
- // Else if the domain matches the current domain & nothing set in DB.
529
- elseif( ( $_SERVER['HTTP_HOST'] == $domain ) && ( ! $hasSelected ) ) { $hasSelected=true; echo ' selected="selected"'; }
530
- echo '>'.$domain.'</option>';
531
 
532
- endforeach;
533
-
534
  echo '</select>';
535
 
536
  // Need a copy of the array, so we can store the domain name too (for visual purposes)
@@ -551,90 +569,89 @@ if(!$addons){?>
551
  </td>
552
  </tr>
553
  <tr>
554
- <th width="30%" valign="top" style="padding-top: 10px;"> <label for="<?php echo key_ga_analytic_snippet ?>">
555
- <?php _e('Tracking Code', 'google-analyticator'); ?>
556
- :</label>
557
  </th>
558
  <td><?php
559
  echo "<select name='".key_ga_analytic_snippet."' id='".key_ga_analytic_snippet."'>\n";
560
 
561
- echo "<option value='".ga_enabled."'";
562
- if(get_option(key_ga_analytic_snippet) == ga_enabled)
563
- echo " selected='selected'";
564
- echo ">" . __('Traditional (ga.js)', 'google-analyticator') . "</option>\n";
565
-
566
  echo "<option value='".ga_disabled."'";
567
  if(get_option(key_ga_analytic_snippet) == ga_disabled)
568
  echo" selected='selected'";
569
  echo ">" . __('Universal (analytics.js)', 'google-analyticator') . "</option>\n";
570
 
 
 
 
 
 
571
  echo "</select>\n";
572
  ?>
573
  <p class="setting-description">
574
  <?php _e('If you are using Universal Analytics make sure you have changed your account to a Universal Analytics property in Google Analytics. Read more about Universal Analytics <a href="https://support.google.com/analytics/answer/2817075?hl=en" target="_blank">here</a>.', 'google-analyticator'); ?>
575
- </p>
576
-
577
  </td>
578
  </tr>
 
 
 
 
579
  <tr>
580
- <td colspan="2"><h3>
581
  <?php _e('Tracking Settings', 'google-analyticator'); ?>
582
  </h3></td>
583
  </tr>
584
  <tr>
585
- <th width="30%" valign="top" style="padding-top: 10px;"> <label for="<?php echo key_ga_admin ?>">
586
- <?php _e('Track all logged in WordPress users', 'google-analyticator'); ?>
587
- :</label>
588
  </th>
589
  <td><?php
590
- echo "<select name='".key_ga_admin."' id='".key_ga_admin."'>\n";
591
 
592
- echo "<option value='".ga_enabled."'";
593
- if(get_option(key_ga_admin) == ga_enabled)
594
  echo " selected='selected'";
595
- echo ">" . __('Yes', 'google-analyticator') . "</option>\n";
596
 
597
- echo "<option value='".ga_disabled."'";
598
- if(get_option(key_ga_admin) == ga_disabled)
599
  echo" selected='selected'";
600
- echo ">" . __('No', 'google-analyticator') . "</option>\n";
601
 
602
  echo "</select>\n";
603
 
604
  ?>
605
  <p class="setting-description">
606
- <?php _e('Selecting "no" to this option will prevent logged in WordPress users from showing up on your Google Analytics reports. This setting will prevent yourself or other users from showing up in your Analytics reports. Use the next setting to determine what user groups to exclude.', 'google-analyticator'); ?>
607
  </p></td>
608
  </tr>
609
  <tr>
610
- <th width="30%" valign="top" style="padding-top: 10px;"> <label>
611
- <?php _e('Anonymize IP Addresses', 'google-analyticator'); ?>
612
- :</label>
613
  </th>
614
  <td><?php
615
- echo "<select name='".key_ga_annon."' id='".key_ga_annon."'>\n";
616
 
617
- echo "<option value='0'";
618
- if(get_option(key_ga_annon) == false )
619
  echo " selected='selected'";
620
- echo ">" . __('No', 'google-analyticator') . "</option>\n";
621
 
622
- echo "<option value='1'";
623
- if(get_option(key_ga_annon) == true)
624
  echo" selected='selected'";
625
- echo ">" . __('Yes', 'google-analyticator') . "</option>\n";
626
 
627
  echo "</select>\n";
628
 
629
  ?>
630
  <p class="setting-description">
631
- <?php _e('By selecting "Yes", This tells Google Analytics to anonymize the information sent by the tracker objects by removing the last octet of the IP address prior to its storage. Note that this will slightly reduce the accuracy of geographic reporting.', 'google-analyticator'); ?>
632
  </p></td>
633
  </tr>
634
  <tr>
635
- <th width="30%" valign="top" style="padding-top: 10px;"> <label for="<?php echo key_ga_admin_role ?>">
636
- <?php _e('User roles to not track', 'google-analyticator'); ?>
637
- :</label>
638
  </th>
639
  <td><?php
640
  global $wp_roles;
@@ -657,9 +674,8 @@ if(!$addons){?>
657
  </p></td>
658
  </tr>
659
  <tr>
660
- <th width="30%" valign="top" style="padding-top: 10px;"> <label for="<?php echo key_ga_admin_disable ?>">
661
- <?php _e('Method to prevent tracking', 'google-analyticator'); ?>
662
- :</label>
663
  </th>
664
  <td><?php
665
  echo "<select name='".key_ga_admin_disable."' id='".key_ga_admin_disable."'>\n";
@@ -676,7 +692,7 @@ if(!$addons){?>
676
 
677
  echo "</select>\n";
678
  ?>
679
- <span class="ga_admin_disable_DimentionIndex_span"> Dimension Index :
680
  <input type="text" name="<?php echo key_ga_admin_disable_DimentionIndex?>" style="width:50px;" value="<?php echo get_option(key_ga_admin_disable_DimentionIndex)?>" class="<?php echo key_ga_admin_disable_DimentionIndex?>" id="<?php echo key_ga_admin_disable_DimentionIndex?>" />
681
  </span>
682
  <p class="setting-description">
@@ -684,14 +700,13 @@ if(!$addons){?>
684
  </p></td>
685
  </tr>
686
  <tr>
687
- <th width="30%" valign="top" style="padding-top: 10px;"> <label>
688
- <?php _e('Enable Remarketing, Demographics and Interests reports', 'google-analyticator'); ?>
689
- :</label>
690
  </th>
691
  <td><?php
692
  echo "<select name='".key_ga_remarketing."' id='".key_ga_remarketing."'>\n";
693
 
694
- echo "<option value='0'";
695
  if(get_option(key_ga_remarketing) == '0' )
696
  echo" selected='selected'";
697
  echo ">" . __('No', 'google-analyticator') . "</option>\n";
@@ -711,18 +726,15 @@ if(!$addons){?>
711
  </p>
712
  <p class="setting-description">
713
  <?php _e( 'To use remarketing, <a href="https://support.google.com/analytics/answer/2884495" target="_blank">Edit permission</a> is required', 'google-analyticator'); ?>
714
- </p>
715
- <p style="color:#FF5B5B" class="newtrackingnote">Universal Analytics (analytics.js) does not currently support this feature <a href="https://developers.google.com/analytics/devguides/collection/upgrade/" target="_blank">learn more</a></p></td>
716
  </tr>
717
  <tr>
718
- <th width="30%" valign="top" style="padding-top: 10px;"> <label>
719
- <?php _e('Track WordPress Login Page', 'google-analyticator'); ?>
720
- :</label>
721
  </th>
722
  <td><?php
723
  echo "<select name='".key_ga_track_login."' id='".key_ga_track_login."'>\n";
724
 
725
- echo "<option value='1'";
726
  if(get_option(key_ga_track_login) == '1' )
727
  echo " selected='selected'";
728
  echo ">" . __('Yes', 'google-analyticator') . "</option>\n";
@@ -740,12 +752,11 @@ if(!$addons){?>
740
  </p></td>
741
  </tr>
742
  <tr>
743
- <td colspan="2"><h3>Link Tracking Settings</h3></td>
744
  </tr>
745
  <tr>
746
- <th width="30%" valign="top" style="padding-top: 10px;"> <label for="<?php echo key_ga_outbound ?>">
747
- <?php _e('Outbound link tracking', 'google-analyticator'); ?>
748
- :</label>
749
  </th>
750
  <td><?php
751
  echo "<select name='".key_ga_outbound."' id='".key_ga_outbound."'>\n";
@@ -767,9 +778,8 @@ if(!$addons){?>
767
  </p></td>
768
  </tr>
769
  <tr>
770
- <th width="30%" valign="top" style="padding-top: 10px;"> <label for="<?php echo key_ga_event ?>">
771
- <?php _e('Event tracking', 'google-analyticator'); ?>
772
- :</label>
773
  </th>
774
  <td><?php
775
  echo "<select name='".key_ga_event."' id='".key_ga_event."'>\n";
@@ -791,9 +801,8 @@ if(!$addons){?>
791
  </p></td>
792
  </tr>
793
  <tr>
794
- <th width="30%" valign="top" style="padding-top: 10px;"> <label for="<?php echo key_ga_enhanced_link_attr ?>">
795
- <?php _e('Enhanced Link Attribution', 'google-analyticator'); ?>
796
- :</label>
797
  </th>
798
  <td><?php
799
  echo "<select name='".key_ga_enhanced_link_attr."' id='".key_ga_enhanced_link_attr."'>\n";
@@ -804,7 +813,7 @@ if(!$addons){?>
804
  echo ">" . __('Enabled', 'google-analyticator') . "</option>\n";
805
 
806
  echo "<option value='".ga_disabled."'";
807
- if(get_option(key_ga_enhanced_link_attr) || get_option(key_ga_enhanced_link_attr) == ga_disabled )
808
  echo " selected='selected'";
809
  echo ">" . __('Disabled', 'google-analyticator') . "</option>\n";
810
 
@@ -815,9 +824,7 @@ if(!$addons){?>
815
  </p></td>
816
  </tr>
817
  <tr>
818
- <th valign="top" style="padding-top: 10px;"> <label for="<?php echo key_ga_downloads; ?>">
819
- <?php _e('Download extensions to track', 'google-analyticator'); ?>
820
- :</label>
821
  </th>
822
  <td><?php
823
  echo "<input type='text' size='50' ";
@@ -831,8 +838,7 @@ if(!$addons){?>
831
  </tr>
832
  <tr>
833
  <th valign="top" style="padding-top: 10px;"> <label for="<?php echo key_ga_outbound_prefix; ?>">
834
- <?php _e('Prefix external links with', 'google-analyticator'); ?>
835
- :</label>
836
  </th>
837
  <td><?php
838
  echo "<input type='text' size='50' ";
@@ -846,8 +852,7 @@ if(!$addons){?>
846
  </tr>
847
  <tr>
848
  <th valign="top" style="padding-top: 10px;"> <label for="<?php echo key_ga_downloads_prefix; ?>">
849
- <?php _e('Prefix download links with', 'google-analyticator'); ?>
850
- :</label>
851
  </th>
852
  <td><?php
853
  echo "<input type='text' size='50' ";
@@ -861,8 +866,7 @@ if(!$addons){?>
861
  </tr>
862
  <tr>
863
  <th valign="top" style="padding-top: 10px;"> <label for="<?php echo key_ga_adsense; ?>">
864
- <?php _e('Google Adsense ID', 'google-analyticator'); ?>
865
- :</label>
866
  </th>
867
  <td><?php
868
  echo "<input type='text' size='50' ";
@@ -875,15 +879,12 @@ if(!$addons){?>
875
  </p></td>
876
  </tr>
877
  <tr>
878
- <td colspan="2"><h3>Additional Tracking Code </h3></td>
879
  </tr>
880
  <tr>
881
  <th valign="top" style="padding-top: 10px;"> <label for="<?php echo key_ga_extra; ?>">
882
  <?php _e('Additional tracking code', 'google-analyticator'); ?>
883
- <br />
884
- (
885
- <?php _e('before tracker initialization', 'google-analyticator'); ?>
886
- ):</label>
887
  </th>
888
  <td><?php
889
  echo "<textarea cols='50' rows='8' ";
@@ -899,9 +900,7 @@ if(!$addons){?>
899
  <th valign="top" style="padding-top: 10px;"> <label for="<?php echo key_ga_extra_after; ?>">
900
  <?php _e('Additional tracking code', 'google-analyticator'); ?>
901
  <br />
902
- (
903
- <?php _e('after tracker initialization', 'google-analyticator'); ?>
904
- ):</label>
905
  </th>
906
  <td><?php
907
  echo "<textarea cols='50' rows='8' ";
@@ -914,7 +913,7 @@ if(!$addons){?>
914
  </p></td>
915
  </tr>
916
  <tr>
917
- <td colspan="2"><h3>Admin Dashboard Widgets</h3>
918
  <?php if(!$useAuth): ?>
919
  <div style="margin:10px auto; border:3px #f00 solid; background-color:#fdd; color:#000; padding:10px; text-align:center;">
920
  <?php _e('You have not authenticated with Google - you cannot use dashboard widgets! Reset the plugin to authenticate..', 'google-analyticator'); ?>
@@ -922,9 +921,8 @@ if(!$addons){?>
922
  <?php endif;?></td>
923
  </tr>
924
  <tr<?php if(!$useAuth){echo ' style="display:none"';}?>>
925
- <th width="30%" valign="top" style="padding-top: 10px;"><label for="<?php echo key_ga_widgets; ?>">
926
- <?php _e('Include widgets', 'google-analyticator'); ?>
927
- :</label></th>
928
  <td><?php
929
  echo "<select name='".key_ga_widgets."' id='".key_ga_widgets."'>\n";
930
 
@@ -945,9 +943,8 @@ if(!$addons){?>
945
  </p></td>
946
  </tr>
947
  <tr>
948
- <th width="30%" valign="top" style="padding-top: 10px;"> <label for="<?php echo key_ga_widgets; ?>">
949
- <?php _e('Display Ad', 'google-analyticator'); ?>
950
- :</label>
951
  </th>
952
  <td><?php
953
  echo "<select name='".key_ga_show_ad."' id='".key_ga_show_ad."'>\n";
@@ -969,9 +966,8 @@ if(!$addons){?>
969
  </p></td>
970
  </tr>
971
  <tr<?php if(!$useAuth){echo ' style="display:none"';}?>>
972
- <th width="30%" valign="top" style="padding-top: 10px;"> <label for="<?php echo key_ga_dashboard_role ?>">
973
- <?php _e('User roles that can see the dashboard widget', 'google-analyticator'); ?>
974
- :</label>
975
  </th>
976
  <td><?php
977
  global $wp_roles;
@@ -993,20 +989,19 @@ if(!$addons){?>
993
  <?php _e('Specifies the user roles that can see the dashboard widget. If a user is not in one of these role groups, they will not see the dashboard widget.', 'google-analyticator'); ?>
994
  </p></td>
995
  </tr>
 
996
  </table>
997
  <p class="submit">
998
  <input type="submit" class="button button-primary" name="info_update" value="<?php _e('Save Changes', 'google-analyticator'); ?>" />
999
  </p>
1000
- <a href="<?php echo admin_url('/options-general.php?page=ga_reset'); ?>">
1001
- <?php _e('Deauthorize &amp; Reset Google Analyticator.', 'google-analyticator'); ?>
1002
- </a>
1003
  </form>
1004
  </div>
1005
  </div>
1006
  <!-- end wrap -->
1007
  </div>
1008
  <!-- end vumga-container -->
1009
-
1010
  <?php
1011
  }
1012
 
@@ -1086,8 +1081,14 @@ function add_google_analytics()
1086
  # Determine if the GA is enabled and contains a valid UID
1087
  if ( ( get_option(key_ga_status) != ga_disabled ) && ( $uid != "XX-XXXXX-X" ) )
1088
  {
 
1089
  # Determine if the user is an admin, and should see the tracking code
1090
- if ( ( get_option(key_ga_admin) == ga_enabled || !ga_current_user_is(get_option(key_ga_admin_role)) ) && get_option(key_ga_admin_disable) == 'remove' || get_option(key_ga_admin_disable) != 'remove' )
 
 
 
 
 
1091
  {
1092
  # Disable the tracking code on the post preview page
1093
  if ( !function_exists("is_preview") || ( function_exists("is_preview") && !is_preview() ) )
@@ -1114,17 +1115,17 @@ function add_google_analytics()
1114
  $jsanalytic_snippet = get_option(key_ga_analytic_snippet);
1115
  ?>
1116
  <script type="text/javascript">
1117
- var analyticsFileTypes = [<?php echo strtolower($ext); ?>];
1118
- <?php if ( $event_tracking != 'enabled' ) { ?>
1119
- var analyticsOutboundPrefix = '/<?php echo $outbound_prefix; ?>/';
1120
- var analyticsDownloadsPrefix = '/<?php echo $downloads_prefix; ?>/';
1121
- <?php } ?>
1122
- var analyticsSnippet = '<?php echo $jsanalytic_snippet; ?>';
1123
- var analyticsEventTracking = '<?php echo $event_tracking; ?>';
1124
- </script>
1125
  <?php
1126
- # Add the first part of the core tracking code
1127
- ?>
1128
  <script type="text/javascript">
1129
  <?php if($jsanalytic_snippet == ga_enabled){?>
1130
  var _gaq = _gaq || [];
@@ -1134,6 +1135,9 @@ function add_google_analytics()
1134
  <?php endif; ?>
1135
  _gaq.push(['_setAccount', '<?php echo $uid; ?>']);
1136
  _gaq.push(['_addDevId', 'i9k95']); // Google Analyticator App ID with Google
 
 
 
1137
  <?php
1138
 
1139
  # Add any tracking code before the trackPageview
@@ -1145,7 +1149,7 @@ function add_google_analytics()
1145
  echo " _gaq.push(['_trackPageview']);\n";
1146
 
1147
  # Disable page tracking if admin is logged in
1148
- if ( ( get_option(key_ga_admin) == ga_disabled ) && ( ga_current_user_is(get_option(key_ga_admin_role)) ) )
1149
  echo " _gaq.push(['_setCustomVar', 'admin']);\n";
1150
 
1151
  # Add any tracking code after the trackPageview
@@ -1167,29 +1171,34 @@ function add_google_analytics()
1167
  })();
1168
  <?php
1169
  }else{
1170
- # Add any tracking code before the trackPageview
1171
- do_action('google_analyticator_extra_js_before');
1172
- if ( '' != $extra )
1173
- echo " $extra\n";
1174
  ?>
1175
  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
1176
  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
1177
  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
1178
  })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
1179
-
1180
  ga('create', '<?php echo $uid; ?>', 'auto');
1181
  <?php if(get_option(key_ga_enhanced_link_attr) == ga_enabled): ?>
1182
  ga('require', 'linkid', 'linkid.js');
1183
- <?php endif; ?>
1184
- ga('send', 'pageview');
 
 
1185
  <?php if ($need_to_annon == '1' ): ?>
 
1186
  ga('set', 'anonymizeIp', true);
1187
- <?php endif; ?>
1188
  <?php
1189
- $dimentionKeyVal = get_option(key_ga_admin_disable_DimentionIndex);
1190
- if ( ( get_option(key_ga_admin) == "admin" ) && ( ga_current_user_is(get_option(key_ga_admin_role)) ) && $dimentionKeyVal )
 
 
 
 
 
1191
  echo " ga('set', 'dimension". $dimentionKeyVal ."', 'admin');\n";
1192
-
 
 
1193
  # Add any tracking code after the trackPageview
1194
  do_action('google_analyticator_extra_js_after');
1195
  if ( '' != $extra_after )
@@ -1200,7 +1209,7 @@ $dimentionKeyVal = get_option(key_ga_admin_disable_DimentionIndex);
1200
  }
1201
  } else {
1202
  # Add the notice that Google Analyticator tracking is enabled
1203
- echo "<!-- Google Analytics Tracking by Google Analyticator " . GOOGLE_ANALYTICATOR_VERSION . ": http://ronaldheft.com/code/analyticator/ -->\n";
1204
  echo " <!-- " . __('Tracking code is hidden, since the settings specify not to track admins. Tracking is occurring for non-admins.', 'google-analyticator') . " -->\n";
1205
  }
1206
  }
1
  <?php
2
  /*
3
  * Plugin Name: Google Analyticator
4
+ * Version: 6.4.8
5
  * Plugin URI: http://www.videousermanuals.com/google-analyticator/?utm_campaign=analyticator&utm_medium=plugin&utm_source=readme-txt
6
  * Description: Adds the necessary JavaScript code to enable <a href="http://www.google.com/analytics/">Google's Analytics</a>. After enabling this plugin you need to authenticate with Google, then select your domain and you're set.
7
  * Author: Video User Manuals Pty Ltd
9
  * Text Domain: google-analyticator
10
  */
11
 
12
+ define('GOOGLE_ANALYTICATOR_VERSION', '6.4.8');
13
 
14
  define('GOOGLE_ANALYTICATOR_CLIENTID', '1007949979410.apps.googleusercontent.com');
15
  define('GOOGLE_ANALYTICATOR_CLIENTSECRET', 'q06U41XDXtzaXD14E-KO1hti'); //don't worry - this don't need to be secret in our case
17
  define('GOOGLE_ANALYTICATOR_SCOPE', 'https://www.googleapis.com/auth/analytics');//.readonly
18
 
19
  // Constants for enabled/disabled state
20
+ define("ga_enabled", "enabled");
21
+ define("ga_disabled", "disabled");
22
 
23
  // Defaults, etc.
24
+ define("key_ga_uid", "ga_uid");
25
+ define("key_ga_status", "ga_status");
26
+ define("key_ga_disable_gasites", "ga_disable_gasites");
27
+ define("key_ga_analytic_snippet", "ga_analytic_snippet");
28
+ define("key_ga_admin", "ga_admin_status");
29
+ define("key_ga_admin_disable", "ga_admin_disable");
30
+ define("key_ga_admin_disable_DimentionIndex", "ga_admin_disable_DimentionIndex");
31
+ define("key_ga_remarketing", 'ga_enable_remarketing');
32
+ define("key_ga_track_login", "key_ga_track_login");
33
+ define("key_ga_show_ad", "key_ga_show_ad");
34
+ define("key_ga_admin_role", "ga_admin_role");
35
+ define("key_ga_dashboard_role", "ga_dashboard_role");
36
+ define("key_ga_adsense", "ga_adsense");
37
+ define("key_ga_extra", "ga_extra");
38
+ define("key_ga_extra_after", "ga_extra_after");
39
+ define("key_ga_event", "ga_event");
40
+ define("key_ga_outbound", "ga_outbound");
41
+ define("key_ga_outbound_prefix", "ga_outbound_prefix");
42
+ define("key_ga_enhanced_link_attr", "ga_enhanced_link_attr");
43
+ define("key_ga_downloads", "ga_downloads");
44
+ define("key_ga_downloads_prefix", "ga_downloads_prefix");
45
+ define("key_ga_widgets", "ga_widgets");
46
+ define("key_ga_annon", "ga_annon");
47
+
48
+ define("ga_uid_default", "UA-XXXXXXXX-X");
49
+ define("ga_google_token_default", "");
50
+ define("ga_disable_gasites_default", ga_disabled);
51
+ define("ga_analytic_snippet_default", ga_disabled);
52
+ define("ga_status_default", ga_disabled);
53
+ define("ga_admin_default", ga_enabled);
54
+ define("ga_admin_disable_DimentionIndex_default", "");
55
+ define("ga_admin_disable_default", 'remove');
56
+ define("ga_adsense_default", "");
57
+ define("ga_extra_default", "");
58
+ define("ga_extra_after_default", "");
59
+ define("ga_event_default", ga_enabled);
60
+ define("ga_outbound_default", ga_enabled);
61
+ define("ga_outbound_prefix_default", 'outgoing');
62
+ define("ga_enhanced_link_attr_default", ga_disabled);
63
+ define("ga_downloads_default", "");
64
+ define("ga_downloads_prefix_default", "download");
65
+ define("ga_widgets_default", ga_enabled);
66
 
67
  // Create the default key and status
68
  add_option( 'ga_version', GOOGLE_ANALYTICATOR_VERSION );
183
  exit;
184
 
185
  endif;
186
+
187
+
188
+ /** Action to trancate Analyticator db cache **/
189
+ if(isset($_GET['pageaction']) && $_GET['pageaction'] == 'ga_clear_cache'){
190
+ global $wpdb;
191
+ delete_transient('google_stats_uniques' );
192
+ delete_transient('ga_admin_stats_widget');
193
+ $wpdb->query( "delete from $wpdb->options where `option_name` like 'google_stats_visitsGraph_%'");
194
+ $wpdb->query( "delete from $wpdb->options where `option_name` like '%ga_admin_dashboard%'");
195
+ }
196
  }
197
 
198
  function ga_activate()
311
 
312
  // If we are a postback, store the options
313
  if (isset($_POST['info_update'])) {
314
+
315
  # Verify nonce
316
  check_admin_referer('google-analyticator-update_settings');
317
 
318
  update_option('ga_defaults', 'no');
319
+
320
+ if(isset( $_POST['ga_domain_names'])){
321
+ // Get our domains array, and match the UID to the value
322
+ $domains = stripslashes( $_POST['ga_domain_names'] );
323
+ $all_domains = unserialize( $domains );
324
+ update_option( 'ga_domain_name', $all_domains[ $_POST[key_ga_uid] ] );
325
+ }
326
+
327
+ // Update the status
328
  $ga_status = wp_filter_kses( $_POST[key_ga_status] );
329
  if (($ga_status != ga_enabled) && ($ga_status != ga_disabled))
330
  $ga_status = ga_status_default;
336
  $ga_disable_gasites = wp_filter_kses( $_POST[key_ga_disable_gasites] );
337
 
338
  if (!$ga_disable_gasites)
339
+ $ga_disable_gasites = ga_disable_gasites_default;
340
 
341
  update_option(key_ga_disable_gasites, $ga_disable_gasites);
342
  }
453
  update_option(key_ga_show_ad, wp_filter_kses( $_POST[key_ga_show_ad] ) );
454
  // Update enable tracking login
455
  update_option(key_ga_track_login, wp_filter_kses( $_POST[key_ga_track_login] ) );
456
+
457
+ do_action("ga_experiment_setting_save");
458
+
459
  // Give an updated message
460
  echo "<div class='updated fade'><p><strong>" . __('Google Analyticator settings saved.', 'google-analyticator') . "</strong></p></div>";
461
  }
484
  <?php
485
  $addons = get_option("gapro_addons");
486
  if(!$addons){?>
487
+ <div id="vumga-sidebar" style="position: absolute; top: 40px; right: 0; width: 250px; border: 1px solid #ccc; padding: 20px; background:#FFFFFF">
488
+ <h3 style="text-align:center">Support us</h3>
489
+ <p>1- Check out our <a target="_blank" href="https://wordpress.org/plugins/sumome">SumoMe plugin</a></p>
490
+ <p>2- <a target="_blank" href="https://wordpress.org/support/view/plugin-reviews/google-analyticator">Leave a :) Review</a></p>
491
+ <p>3- Have a great day!</p>
492
+ </div>
493
  <?php }?>
494
  <div style="margin-right: 320px;">
495
  <table class="form-table" cellspacing="2" cellpadding="5" width="100%">
496
  <tr>
497
+ <td colspan="2" style="padding-left:0"><h3>
498
  <?php _e('Basic Settings', 'google-analyticator'); ?>
499
  </h3></td>
500
  </tr>
501
 
502
  <tr>
503
+ <th width="35%" valign="top" style="padding-top: 10px;"> <label for="<?php echo key_ga_status ?>">
504
+ <?php _e('Google Analytics logging is', 'google-analyticator'); ?>:</label>
 
505
  </th>
506
  <td>
507
  <?php
523
  </td>
524
  </tr>
525
  <tr id="ga_ajax_accounts">
526
+ <th valign="top" style="padding-top: 10px;"> <label for="<?php echo key_ga_uid; ?>"><?php _e('Analytics Account', 'google-analyticator'); ?>:</label>
 
 
527
  </th>
528
  <td>
529
 
538
 
539
  $hasSelected = false; // Will be set to true once a match is found. Cant echo selected twice.
540
 
541
+ foreach($uids as $id=>$domain):
542
 
543
+ echo '<option value="'.$id.'"';
544
+ // If set in DB.
545
+ if( get_option(key_ga_uid) == $id ) { $hasSelected=true; echo ' selected="selected"'; }
546
+ // Else if the domain matches the current domain & nothing set in DB.
547
+ elseif( ( $_SERVER['HTTP_HOST'] == $domain ) && ( ! $hasSelected ) ) { $hasSelected=true; echo ' selected="selected"'; }
548
+ echo '>'.$domain.'</option>';
549
 
550
+ endforeach;
551
+
552
  echo '</select>';
553
 
554
  // Need a copy of the array, so we can store the domain name too (for visual purposes)
569
  </td>
570
  </tr>
571
  <tr>
572
+ <th valign="top" style="padding-top: 10px;"> <label for="<?php echo key_ga_analytic_snippet ?>">
573
+ <?php _e('Tracking Code', 'google-analyticator'); ?>:</label>
 
574
  </th>
575
  <td><?php
576
  echo "<select name='".key_ga_analytic_snippet."' id='".key_ga_analytic_snippet."'>\n";
577
 
 
 
 
 
 
578
  echo "<option value='".ga_disabled."'";
579
  if(get_option(key_ga_analytic_snippet) == ga_disabled)
580
  echo" selected='selected'";
581
  echo ">" . __('Universal (analytics.js)', 'google-analyticator') . "</option>\n";
582
 
583
+ echo "<option value='".ga_enabled."'";
584
+ if(get_option(key_ga_analytic_snippet) == ga_enabled)
585
+ echo " selected='selected'";
586
+ echo ">" . __('Traditional (ga.js)', 'google-analyticator') . "</option>\n";
587
+
588
  echo "</select>\n";
589
  ?>
590
  <p class="setting-description">
591
  <?php _e('If you are using Universal Analytics make sure you have changed your account to a Universal Analytics property in Google Analytics. Read more about Universal Analytics <a href="https://support.google.com/analytics/answer/2817075?hl=en" target="_blank">here</a>.', 'google-analyticator'); ?>
592
+ </p>
 
593
  </td>
594
  </tr>
595
+ <tr>
596
+ <td>View your Dashboard</td>
597
+ <td><a href="../wp-admin/index.php">Click here</a></td>
598
+ </tr>
599
  <tr>
600
+ <td colspan="2" style="padding-left:0"><h3>
601
  <?php _e('Tracking Settings', 'google-analyticator'); ?>
602
  </h3></td>
603
  </tr>
604
  <tr>
605
+ <th valign="top" style="padding-top: 10px;"> <label>
606
+ <?php _e('Anonymize IP Addresses', 'google-analyticator'); ?>:</label>
 
607
  </th>
608
  <td><?php
609
+ echo "<select name='".key_ga_annon."' id='".key_ga_annon."'>\n";
610
 
611
+ echo "<option value='0'";
612
+ if(get_option(key_ga_annon) == false )
613
  echo " selected='selected'";
614
+ echo ">" . __('No', 'google-analyticator') . "</option>\n";
615
 
616
+ echo "<option value='1'";
617
+ if(get_option(key_ga_annon) == true)
618
  echo" selected='selected'";
619
+ echo ">" . __('Yes', 'google-analyticator') . "</option>\n";
620
 
621
  echo "</select>\n";
622
 
623
  ?>
624
  <p class="setting-description">
625
+ <?php _e('By selecting "Yes", This tells Google Analytics to anonymize the information sent by the tracker objects by removing the last octet of the IP address prior to its storage. Note that this will slightly reduce the accuracy of geographic reporting.', 'google-analyticator'); ?>
626
  </p></td>
627
  </tr>
628
  <tr>
629
+ <th valign="top" style="padding-top: 10px;"> <label for="<?php echo key_ga_admin ?>">
630
+ <?php _e('Track all logged in WordPress users', 'google-analyticator'); ?>:</label>
 
631
  </th>
632
  <td><?php
633
+ echo "<select name='".key_ga_admin."' id='".key_ga_admin."'>\n";
634
 
635
+ echo "<option value='".ga_enabled."'";
636
+ if(get_option(key_ga_admin) == ga_enabled)
637
  echo " selected='selected'";
638
+ echo ">" . __('Yes', 'google-analyticator') . "</option>\n";
639
 
640
+ echo "<option value='".ga_disabled."'";
641
+ if(get_option(key_ga_admin) == ga_disabled)
642
  echo" selected='selected'";
643
+ echo ">" . __('No', 'google-analyticator') . "</option>\n";
644
 
645
  echo "</select>\n";
646
 
647
  ?>
648
  <p class="setting-description">
649
+ <?php _e('Selecting "no" to this option will prevent logged in WordPress users from showing up on your Google Analytics reports. This setting will prevent yourself or other users from showing up in your Analytics reports. Use the next setting to determine what user groups to exclude.', 'google-analyticator'); ?>
650
  </p></td>
651
  </tr>
652
  <tr>
653
+ <th valign="top" style="padding-top: 10px;"> <label for="<?php echo key_ga_admin_role ?>">
654
+ <?php _e('User roles to not track', 'google-analyticator'); ?>:</label>
 
655
  </th>
656
  <td><?php
657
  global $wp_roles;
674
  </p></td>
675
  </tr>
676
  <tr>
677
+ <th valign="top" style="padding-top: 10px;"> <label for="<?php echo key_ga_admin_disable ?>">
678
+ <?php _e('Method to prevent tracking', 'google-analyticator'); ?>:</label>
 
679
  </th>
680
  <td><?php
681
  echo "<select name='".key_ga_admin_disable."' id='".key_ga_admin_disable."'>\n";
692
 
693
  echo "</select>\n";
694
  ?>
695
+ <span class="ga_admin_disable_DimentionIndex_span"> <?php _e('Dimension Index', 'google-analyticator'); ?>:
696
  <input type="text" name="<?php echo key_ga_admin_disable_DimentionIndex?>" style="width:50px;" value="<?php echo get_option(key_ga_admin_disable_DimentionIndex)?>" class="<?php echo key_ga_admin_disable_DimentionIndex?>" id="<?php echo key_ga_admin_disable_DimentionIndex?>" />
697
  </span>
698
  <p class="setting-description">
700
  </p></td>
701
  </tr>
702
  <tr>
703
+ <th valign="top" style="padding-top: 10px;"> <label>
704
+ <?php _e('Enable Remarketing, Demographics and Interests reports', 'google-analyticator'); ?>:</label>
 
705
  </th>
706
  <td><?php
707
  echo "<select name='".key_ga_remarketing."' id='".key_ga_remarketing."'>\n";
708
 
709
+ echo "<option value='0'";
710
  if(get_option(key_ga_remarketing) == '0' )
711
  echo" selected='selected'";
712
  echo ">" . __('No', 'google-analyticator') . "</option>\n";
726
  </p>
727
  <p class="setting-description">
728
  <?php _e( 'To use remarketing, <a href="https://support.google.com/analytics/answer/2884495" target="_blank">Edit permission</a> is required', 'google-analyticator'); ?>
729
+ </p></td>
 
730
  </tr>
731
  <tr>
732
+ <th valign="top" style="padding-top: 10px;"> <label><?php _e('Track WordPress Login Page', 'google-analyticator'); ?>:</label>
 
 
733
  </th>
734
  <td><?php
735
  echo "<select name='".key_ga_track_login."' id='".key_ga_track_login."'>\n";
736
 
737
+ echo "<option value='1'";
738
  if(get_option(key_ga_track_login) == '1' )
739
  echo " selected='selected'";
740
  echo ">" . __('Yes', 'google-analyticator') . "</option>\n";
752
  </p></td>
753
  </tr>
754
  <tr>
755
+ <td colspan="2" style="padding-left:0"><h3><?php _e('Link Tracking Settings', 'google-analyticator'); ?></h3></td>
756
  </tr>
757
  <tr>
758
+ <th valign="top" style="padding-top: 10px;"> <label for="<?php echo key_ga_outbound ?>">
759
+ <?php _e('Outbound link tracking', 'google-analyticator'); ?>:</label>
 
760
  </th>
761
  <td><?php
762
  echo "<select name='".key_ga_outbound."' id='".key_ga_outbound."'>\n";
778
  </p></td>
779
  </tr>
780
  <tr>
781
+ <th valign="top" style="padding-top: 10px;"> <label for="<?php echo key_ga_event ?>">
782
+ <?php _e('Event tracking', 'google-analyticator'); ?>:</label>
 
783
  </th>
784
  <td><?php
785
  echo "<select name='".key_ga_event."' id='".key_ga_event."'>\n";
801
  </p></td>
802
  </tr>
803
  <tr>
804
+ <th valign="top" style="padding-top: 10px;"> <label for="<?php echo key_ga_enhanced_link_attr ?>">
805
+ <?php _e('Enhanced Link Attribution', 'google-analyticator'); ?>:</label>
 
806
  </th>
807
  <td><?php
808
  echo "<select name='".key_ga_enhanced_link_attr."' id='".key_ga_enhanced_link_attr."'>\n";
813
  echo ">" . __('Enabled', 'google-analyticator') . "</option>\n";
814
 
815
  echo "<option value='".ga_disabled."'";
816
+ if(get_option(key_ga_enhanced_link_attr) == ga_disabled )
817
  echo " selected='selected'";
818
  echo ">" . __('Disabled', 'google-analyticator') . "</option>\n";
819
 
824
  </p></td>
825
  </tr>
826
  <tr>
827
+ <th valign="top" style="padding-top: 10px;"> <label for="<?php echo key_ga_downloads; ?>"><?php _e('Download extensions to track', 'google-analyticator'); ?>:</label>
 
 
828
  </th>
829
  <td><?php
830
  echo "<input type='text' size='50' ";
838
  </tr>
839
  <tr>
840
  <th valign="top" style="padding-top: 10px;"> <label for="<?php echo key_ga_outbound_prefix; ?>">
841
+ <?php _e('Prefix external links with', 'google-analyticator'); ?>:</label>
 
842
  </th>
843
  <td><?php
844
  echo "<input type='text' size='50' ";
852
  </tr>
853
  <tr>
854
  <th valign="top" style="padding-top: 10px;"> <label for="<?php echo key_ga_downloads_prefix; ?>">
855
+ <?php _e('Prefix download links with', 'google-analyticator'); ?>:</label>
 
856
  </th>
857
  <td><?php
858
  echo "<input type='text' size='50' ";
866
  </tr>
867
  <tr>
868
  <th valign="top" style="padding-top: 10px;"> <label for="<?php echo key_ga_adsense; ?>">
869
+ <?php _e('Google Adsense ID', 'google-analyticator'); ?>:</label>
 
870
  </th>
871
  <td><?php
872
  echo "<input type='text' size='50' ";
879
  </p></td>
880
  </tr>
881
  <tr>
882
+ <td colspan="2" style="padding-left:0"><h3><?php _e('Additional Tracking Code', 'google-analyticator'); ?></h3></td>
883
  </tr>
884
  <tr>
885
  <th valign="top" style="padding-top: 10px;"> <label for="<?php echo key_ga_extra; ?>">
886
  <?php _e('Additional tracking code', 'google-analyticator'); ?>
887
+ <br />(<?php _e('before tracker initialization', 'google-analyticator'); ?>):</label>
 
 
 
888
  </th>
889
  <td><?php
890
  echo "<textarea cols='50' rows='8' ";
900
  <th valign="top" style="padding-top: 10px;"> <label for="<?php echo key_ga_extra_after; ?>">
901
  <?php _e('Additional tracking code', 'google-analyticator'); ?>
902
  <br />
903
+ (<?php _e('after tracker initialization', 'google-analyticator'); ?>):</label>
 
 
904
  </th>
905
  <td><?php
906
  echo "<textarea cols='50' rows='8' ";
913
  </p></td>
914
  </tr>
915
  <tr>
916
+ <td colspan="2" style="padding-left:0"><h3><?php _e('Admin Dashboard Widgets', 'google-analyticator'); ?></h3>
917
  <?php if(!$useAuth): ?>
918
  <div style="margin:10px auto; border:3px #f00 solid; background-color:#fdd; color:#000; padding:10px; text-align:center;">
919
  <?php _e('You have not authenticated with Google - you cannot use dashboard widgets! Reset the plugin to authenticate..', 'google-analyticator'); ?>
921
  <?php endif;?></td>
922
  </tr>
923
  <tr<?php if(!$useAuth){echo ' style="display:none"';}?>>
924
+ <th valign="top" style="padding-top: 10px;"><label for="<?php echo key_ga_widgets; ?>">
925
+ <?php _e('Include widgets', 'google-analyticator'); ?>:</label></th>
 
926
  <td><?php
927
  echo "<select name='".key_ga_widgets."' id='".key_ga_widgets."'>\n";
928
 
943
  </p></td>
944
  </tr>
945
  <tr>
946
+ <th valign="top" style="padding-top: 10px;"> <label for="<?php echo key_ga_widgets; ?>">
947
+ <?php _e('Display Ad', 'google-analyticator'); ?>:</label>
 
948
  </th>
949
  <td><?php
950
  echo "<select name='".key_ga_show_ad."' id='".key_ga_show_ad."'>\n";
966
  </p></td>
967
  </tr>
968
  <tr<?php if(!$useAuth){echo ' style="display:none"';}?>>
969
+ <th valign="top" style="padding-top: 10px;"> <label for="<?php echo key_ga_dashboard_role ?>">
970
+ <?php _e('User roles that can see the dashboard widget', 'google-analyticator'); ?>:</label>
 
971
  </th>
972
  <td><?php
973
  global $wp_roles;
989
  <?php _e('Specifies the user roles that can see the dashboard widget. If a user is not in one of these role groups, they will not see the dashboard widget.', 'google-analyticator'); ?>
990
  </p></td>
991
  </tr>
992
+ <?php do_action("ga_experiment_setting_view");?>
993
  </table>
994
  <p class="submit">
995
  <input type="submit" class="button button-primary" name="info_update" value="<?php _e('Save Changes', 'google-analyticator'); ?>" />
996
  </p>
997
+ <a href="<?php echo ga_analyticator_setting_url(). '&pageaction=ga_clear_cache' ?>"><?php _e('Clear Analyticator Cache', 'google-analyticator'); ?></a> | <a href="<?php echo admin_url('/options-general.php?page=ga_reset'); ?>">
998
+ <?php _e('Deauthorize &amp; Reset Google Analyticator.', 'google-analyticator'); ?></a>
 
999
  </form>
1000
  </div>
1001
  </div>
1002
  <!-- end wrap -->
1003
  </div>
1004
  <!-- end vumga-container -->
 
1005
  <?php
1006
  }
1007
 
1081
  # Determine if the GA is enabled and contains a valid UID
1082
  if ( ( get_option(key_ga_status) != ga_disabled ) && ( $uid != "XX-XXXXX-X" ) )
1083
  {
1084
+
1085
  # Determine if the user is an admin, and should see the tracking code
1086
+
1087
+ #first check if its tracking is enabled but current user is not in the list
1088
+ # Or check if tracking is enabled but its in the list but the method is not remove
1089
+ if ( (get_option(key_ga_admin) == ga_enabled && !ga_current_user_is(get_option(key_ga_admin_role) ) ) ||
1090
+ (get_option(key_ga_admin) == ga_enabled && ga_current_user_is(get_option(key_ga_admin_role) ) && get_option(key_ga_admin_disable) != 'remove' )
1091
+ || !is_user_logged_in())
1092
  {
1093
  # Disable the tracking code on the post preview page
1094
  if ( !function_exists("is_preview") || ( function_exists("is_preview") && !is_preview() ) )
1115
  $jsanalytic_snippet = get_option(key_ga_analytic_snippet);
1116
  ?>
1117
  <script type="text/javascript">
1118
+ var analyticsFileTypes = [<?php echo strtolower($ext); ?>];
1119
+ <?php if ( $event_tracking != 'enabled' ) { ?>
1120
+ var analyticsOutboundPrefix = '/<?php echo $outbound_prefix; ?>/';
1121
+ var analyticsDownloadsPrefix = '/<?php echo $downloads_prefix; ?>/';
1122
+ <?php } ?>
1123
+ var analyticsSnippet = '<?php echo $jsanalytic_snippet; ?>';
1124
+ var analyticsEventTracking = '<?php echo $event_tracking; ?>';
1125
+ </script>
1126
  <?php
1127
+ # Add the first part of the core tracking code
1128
+ ?>
1129
  <script type="text/javascript">
1130
  <?php if($jsanalytic_snippet == ga_enabled){?>
1131
  var _gaq = _gaq || [];
1135
  <?php endif; ?>
1136
  _gaq.push(['_setAccount', '<?php echo $uid; ?>']);
1137
  _gaq.push(['_addDevId', 'i9k95']); // Google Analyticator App ID with Google
1138
+ <?php if ($need_to_annon == '1' ): ?>
1139
+ _gaq.push(['_gat._anonymizeIp']);
1140
+ <?php endif; ?>
1141
  <?php
1142
 
1143
  # Add any tracking code before the trackPageview
1149
  echo " _gaq.push(['_trackPageview']);\n";
1150
 
1151
  # Disable page tracking if admin is logged in
1152
+ if ( ( get_option(key_ga_admin_disable) == "admin" ) && ( ga_current_user_is(get_option(key_ga_admin_role)) ) )
1153
  echo " _gaq.push(['_setCustomVar', 'admin']);\n";
1154
 
1155
  # Add any tracking code after the trackPageview
1171
  })();
1172
  <?php
1173
  }else{
 
 
 
 
1174
  ?>
1175
  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
1176
  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
1177
  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
1178
  })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
 
1179
  ga('create', '<?php echo $uid; ?>', 'auto');
1180
  <?php if(get_option(key_ga_enhanced_link_attr) == ga_enabled): ?>
1181
  ga('require', 'linkid', 'linkid.js');
1182
+ <?php endif; ?>
1183
+ <?php if( get_option( key_ga_remarketing ) ) : ?>
1184
+ ga('require', 'displayfeatures');
1185
+ <?php endif; ?>
1186
  <?php if ($need_to_annon == '1' ): ?>
1187
+
1188
  ga('set', 'anonymizeIp', true);
1189
+ <?php endif; ?>
1190
  <?php
1191
+ # Add any tracking code before the trackPageview
1192
+ do_action('google_analyticator_extra_js_before');
1193
+ if ( '' != $extra ) echo " $extra\n";
1194
+ ?>
1195
+ <?php
1196
+ $dimentionKeyVal = get_option(key_ga_admin_disable_DimentionIndex);
1197
+ if ( ( get_option(key_ga_admin_disable) == "admin" ) && ( ga_current_user_is(get_option(key_ga_admin_role)) ) && $dimentionKeyVal )
1198
  echo " ga('set', 'dimension". $dimentionKeyVal ."', 'admin');\n";
1199
+ ?>
1200
+ ga('send', 'pageview');
1201
+ <?php
1202
  # Add any tracking code after the trackPageview
1203
  do_action('google_analyticator_extra_js_after');
1204
  if ( '' != $extra_after )
1209
  }
1210
  } else {
1211
  # Add the notice that Google Analyticator tracking is enabled
1212
+ echo "<!-- Google Analytics Tracking by Google Analyticator " . GOOGLE_ANALYTICATOR_VERSION . ": http://wordpress.org/plugins/google-analyticator/ -->\n";
1213
  echo " <!-- " . __('Tracking code is hidden, since the settings specify not to track admins. Tracking is occurring for non-admins.', 'google-analyticator') . " -->\n";
1214
  }
1215
  }
google-analytics-summary-widget.php CHANGED
@@ -315,9 +315,7 @@ class GoogleAnalyticsSummary
315
 
316
  if( get_option( key_ga_show_ad ) ) {
317
  echo '<p style="text-align:center">
318
- <a href="http://www.videousermanuals.com/rd/ga-dashboard/" target="_BLANK">
319
- Learn how to use Google Analytics <br />
320
- To remove the guess work from your business </a></p>';
321
  }
322
 
323
  die();
315
 
316
  if( get_option( key_ga_show_ad ) ) {
317
  echo '<p style="text-align:center">
318
+ [Use the <a target="_blank" href="https://wordpress.org/plugins/sumome">SumoMe plugin</a> to get more traffic]</p>';
 
 
319
  }
320
 
321
  die();
google-api-php-client/src/Google_Client.php CHANGED
@@ -28,9 +28,9 @@ if (! function_exists('http_build_query')) {
28
  if (! ini_get('date.timezone') && function_exists('date_default_timezone_set')) {
29
  date_default_timezone_set('UTC');
30
  }
31
-
32
  // hack around with the include paths a bit so the library 'just works'
33
- set_include_path(dirname(__FILE__) . PATH_SEPARATOR . get_include_path());
34
 
35
  require_once "config.php";
36
  // If a local configuration file is found, merge it's values with the default configuration
@@ -41,18 +41,18 @@ if (file_exists(dirname(__FILE__) . '/local_config.php')) {
41
  }
42
 
43
  // Include the top level classes, they each include their own dependencies
44
- require_once 'service/Google_Model.php';
45
- require_once 'service/Google_Service.php';
46
- require_once 'service/Google_ServiceResource.php';
47
- require_once 'auth/Google_AssertionCredentials.php';
48
- require_once 'auth/Google_Signer.php';
49
- require_once 'auth/Google_P12Signer.php';
50
- require_once 'service/Google_BatchRequest.php';
51
- require_once 'external/URITemplateParser.php';
52
- require_once 'auth/Google_Auth.php';
53
- require_once 'cache/Google_Cache.php';
54
- require_once 'io/Google_IO.php';
55
- require_once('service/Google_MediaFileUpload.php');
56
 
57
  /**
58
  * The Google API Client
28
  if (! ini_get('date.timezone') && function_exists('date_default_timezone_set')) {
29
  date_default_timezone_set('UTC');
30
  }
31
+ define("GA_API_Path", dirname(__FILE__) .'/');
32
  // hack around with the include paths a bit so the library 'just works'
33
+ //set_include_path(dirname(__FILE__) . PATH_SEPARATOR . get_include_path());
34
 
35
  require_once "config.php";
36
  // If a local configuration file is found, merge it's values with the default configuration
41
  }
42
 
43
  // Include the top level classes, they each include their own dependencies
44
+ require_once GA_API_Path. 'service/Google_Model.php';
45
+ require_once GA_API_Path. 'service/Google_Service.php';
46
+ require_once GA_API_Path. 'service/Google_ServiceResource.php';
47
+ require_once GA_API_Path. 'auth/Google_AssertionCredentials.php';
48
+ require_once GA_API_Path. 'auth/Google_Signer.php';
49
+ require_once GA_API_Path. 'auth/Google_P12Signer.php';
50
+ require_once GA_API_Path. 'service/Google_BatchRequest.php';
51
+ require_once GA_API_Path. 'external/URITemplateParser.php';
52
+ require_once GA_API_Path. 'auth/Google_Auth.php';
53
+ require_once GA_API_Path. 'cache/Google_Cache.php';
54
+ require_once GA_API_Path. 'io/Google_IO.php';
55
+ require_once(GA_API_Path. 'service/Google_MediaFileUpload.php');
56
 
57
  /**
58
  * The Google API Client
google-api-php-client/src/auth/Google_OAuth2.php CHANGED
@@ -17,7 +17,7 @@
17
 
18
  require_once "Google_Verifier.php";
19
  require_once "Google_LoginTicket.php";
20
- require_once "service/Google_Utils.php";
21
 
22
  /**
23
  * Authentication class that deals with the OAuth 2 web-server authentication flow
17
 
18
  require_once "Google_Verifier.php";
19
  require_once "Google_LoginTicket.php";
20
+ require_once GA_API_Path. "service/Google_Utils.php";
21
 
22
  /**
23
  * Authentication class that deals with the OAuth 2 web-server authentication flow
google-api-php-client/src/io/Google_IO.php CHANGED
@@ -15,10 +15,10 @@
15
  * limitations under the License.
16
  */
17
 
18
- require_once 'io/Google_HttpRequest.php';
19
- require_once 'io/Google_HttpStreamIO.php';
20
- require_once 'io/Google_CurlIO.php';
21
- require_once 'io/Google_REST.php';
22
 
23
  /**
24
  * Abstract IO class
15
  * limitations under the License.
16
  */
17
 
18
+ require_once GA_API_Path. 'io/Google_HttpRequest.php';
19
+ require_once GA_API_Path. 'io/Google_HttpStreamIO.php';
20
+ require_once GA_API_Path. 'io/Google_CurlIO.php';
21
+ require_once GA_API_Path. 'io/Google_REST.php';
22
 
23
  /**
24
  * Abstract IO class
localizations/google-analyticator-es_ES.mo ADDED
Binary file
localizations/google-analyticator-es_ES.po ADDED
@@ -0,0 +1,661 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Google Analyticator v6.4.7.3\n"
4
+ "Report-Msgid-Bugs-To: santi.1410@hotmail.com\n"
5
+ "POT-Creation-Date: 2014-04-23 19:54+0800\n"
6
+ "PO-Revision-Date: 2014-04-23 19:54+0800\n"
7
+ "Last-Translator: Santiago Castro <santi.1410@hotmail.com>\n"
8
+ "Language-Team: Santiago Castro <santi.1410@hotmail.com>\n"
9
+ "Language: es_ES\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
+ "X-Generator: Poedit 1.6.4\n"
15
+ "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
17
+ "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
18
+ "X-Poedit-Basepath: .\n"
19
+ "X-Textdomain-Support: yes\n"
20
+ "X-Poedit-SearchPath-0: ..\n"
21
+
22
+ # @ google-analyticator
23
+ #: ../google-analyticator.php:151
24
+ msgid "Google Analyticator Settings"
25
+ msgstr "Configuración Google Analyticator"
26
+
27
+ # @ google-analyticator
28
+ #: ../google-analyticator.php:252
29
+ msgid "Settings"
30
+ msgstr "Configuración"
31
+
32
+ # @ google-analyticator
33
+ #: ../google-analyticator.php:253
34
+ msgid "Reset"
35
+ msgstr "Restablecer"
36
+
37
+ # @ google-analyticator
38
+ #: ../google-analyticator.php:445
39
+ msgid "Google Analyticator settings saved."
40
+ msgstr "Configuración de Google Analyticator guardada."
41
+
42
+ # @ google-analyticator
43
+ #: ../google-analyticator.php:460
44
+ msgid "Google Analytics integration is currently <strong>DISABLED</strong>."
45
+ msgstr ""
46
+ "La integración con Google Analytics está actualmente <strong>DESHABILITADA</"
47
+ "strong>."
48
+
49
+ # @ google-analyticator
50
+ #: ../google-analyticator.php:465
51
+ msgid ""
52
+ "Google Analytics integration is currently enabled, but you did not enter a "
53
+ "UID. Tracking will not occur."
54
+ msgstr ""
55
+ "La integración con Google Analytics esta habilitado, pero no ingresaste un "
56
+ "UID. No habrá rastreo."
57
+
58
+ # @ google-analyticator
59
+ #: ../google-analyticator.php:478
60
+ msgid "Basic Settings"
61
+ msgstr "Configuración básica"
62
+
63
+ # @ google-analyticator
64
+ #: ../google-analyticator.php:484
65
+ msgid "Google Analytics logging is"
66
+ msgstr "El registro de Google Analytics está"
67
+
68
+ # @ google-analyticator
69
+ #: ../google-analyticator.php:494 ../google-analyticator.php:756
70
+ #: ../google-analyticator.php:780 ../google-analyticator.php:804
71
+ #: ../google-analyticator.php:934
72
+ msgid "Enabled"
73
+ msgstr "Habilitado"
74
+
75
+ # @ google-analyticator
76
+ #: ../google-analyticator.php:499 ../google-analyticator.php:761
77
+ #: ../google-analyticator.php:785 ../google-analyticator.php:809
78
+ #: ../google-analyticator.php:939
79
+ msgid "Disabled"
80
+ msgstr "Deshabilitado"
81
+
82
+ # @ google-analyticator
83
+ #: ../google-analyticator.php:508
84
+ msgid "Analytics Account"
85
+ msgstr "Cuenta de Analytics"
86
+
87
+ # @ google-analyticator
88
+ #: ../google-analyticator.php:546
89
+ msgid "Hide Google Analytics UID after saving"
90
+ msgstr "Esconder UID de Google Analytics luego de guardar"
91
+
92
+ # @ google-analyticator
93
+ #: ../google-analyticator.php:556
94
+ msgid "Tracking Code"
95
+ msgstr "Código de Rastreo"
96
+
97
+ # @ google-analyticator
98
+ #: ../google-analyticator.php:565
99
+ msgid "Traditional (ga.js)"
100
+ msgstr "Tradicional (ga.js)"
101
+
102
+ # @ google-analyticator
103
+ #: ../google-analyticator.php:570
104
+ msgid "Universal (analytics.js)"
105
+ msgstr "Universal (analytics.js)"
106
+
107
+ # @ google-analyticator
108
+ #: ../google-analyticator.php:575
109
+ msgid ""
110
+ "If you are using Universal Analytics make sure you have changed your account "
111
+ "to a Universal Analytics property in Google Analytics. Read more about "
112
+ "Universal Analytics <a href=\"https://support.google.com/analytics/"
113
+ "answer/2817075?hl=en\" target=\"_blank\">here</a>."
114
+ msgstr ""
115
+ "Si estás usando una cuenta de Universal Analytics asegúrate de haber "
116
+ "cambiado tu cuenta a la propiedad Universal Analytics en Google Analytics. "
117
+ "Puedes leer más sobre Uiversal Analytics <a href=\"https://support.google."
118
+ "com/analytics/answer/2817075?hl=es\" target=\"_blank\">aquí</a>."
119
+
120
+ # @ google-analyticator
121
+ #: ../google-analyticator.php:582
122
+ msgid "Tracking Settings"
123
+ msgstr "Configuración de Rastreo"
124
+
125
+ # @ google-analyticator
126
+ #: ../google-analyticator.php:587
127
+ msgid "Track all logged in WordPress users"
128
+ msgstr "Rastrear todos los usuarios de WordPress que iniciaron sesión."
129
+
130
+ # @ google-analyticator
131
+ #: ../google-analyticator.php:596 ../google-analyticator.php:626
132
+ #: ../google-analyticator.php:704 ../google-analyticator.php:728
133
+ #: ../google-analyticator.php:958
134
+ msgid "Yes"
135
+ msgstr "Sí"
136
+
137
+ # @ google-analyticator
138
+ #: ../google-analyticator.php:601 ../google-analyticator.php:621
139
+ #: ../google-analyticator.php:698 ../google-analyticator.php:733
140
+ #: ../google-analyticator.php:963
141
+ msgid "No"
142
+ msgstr "No"
143
+
144
+ # @ google-analyticator
145
+ #: ../google-analyticator.php:607
146
+ msgid ""
147
+ "Selecting \"no\" to this option will prevent logged in WordPress users from "
148
+ "showing up on your Google Analytics reports. This setting will prevent "
149
+ "yourself or other users from showing up in your Analytics reports. Use the "
150
+ "next setting to determine what user groups to exclude."
151
+ msgstr ""
152
+ "Elegir \"no\" en esta opción prevendrá que los usuarios que iniciaron sesión "
153
+ "en WordPress aparezcan en tus reportes de Google Analytics. Esta "
154
+ "configuración prevendrá a vos mismo o a otros usuarios de aparecer en los "
155
+ "reportes de Analytics. Usa la configuración siguiente para determinar qué "
156
+ "grupos de usuario excluir. "
157
+
158
+ # @ google-analyticator
159
+ #: ../google-analyticator.php:612
160
+ msgid "Anonymize IP Addresses"
161
+ msgstr "Anonimizar las direcciones IP"
162
+
163
+ # @ google-analyticator
164
+ #: ../google-analyticator.php:632
165
+ msgid ""
166
+ "By selecting \"Yes\", This tells Google Analytics to anonymize the "
167
+ "information sent by the tracker objects by removing the last octet of the IP "
168
+ "address prior to its storage. Note that this will slightly reduce the "
169
+ "accuracy of geographic reporting."
170
+ msgstr ""
171
+ "Eligiendo \"Sí\" le dirá a Google Analytics que anonimice la información "
172
+ "enviada por el rastreador de objetos removiendo el último byte de la "
173
+ "dirección IP antes de su almacenamiento. Notar que esto reducirá levemente "
174
+ "la precisión de los reportes geográficos."
175
+
176
+ # @ google-analyticator
177
+ #: ../google-analyticator.php:637
178
+ msgid "User roles to not track"
179
+ msgstr "Roles de usuarios a no rastrear"
180
+
181
+ # @ google-analyticator
182
+ #: ../google-analyticator.php:657
183
+ msgid ""
184
+ "Specifies the user roles to not include in your WordPress Analytics report. "
185
+ "If a user is logged into WordPress with one of these roles, they will not "
186
+ "show up in your Analytics report."
187
+ msgstr ""
188
+ "Especifica los roles de usuarios a no incluir en tu reporte de WordPress "
189
+ "Analytics. Si un usuario inició sesión en WordPress con uno de estos roles, "
190
+ "no aparecerá en tus reportes de Analytics."
191
+
192
+ # @ google-analyticator
193
+ #: ../google-analyticator.php:662
194
+ msgid "Method to prevent tracking"
195
+ msgstr "Método para prevenir rastreo"
196
+
197
+ # @ google-analyticator
198
+ #: ../google-analyticator.php:671
199
+ msgid "Remove"
200
+ msgstr "Remover"
201
+
202
+ # @ google-analyticator
203
+ #: ../google-analyticator.php:676
204
+ msgid "Use 'admin' variable"
205
+ msgstr "Usar variable 'admin'"
206
+
207
+ #: ../google-analyticator.php:680
208
+ msgid "Dimension Index"
209
+ msgstr "Dimension Index"
210
+
211
+ # @ google-analyticator
212
+ #: ../google-analyticator.php:684
213
+ msgid ""
214
+ "Selecting the \"Remove\" option will physically remove the tracking code "
215
+ "from logged in users. Selecting the \"Use 'admin' variable\" option will "
216
+ "assign a variable called 'admin' to logged in users. This option will allow "
217
+ "Google Analytics' site overlay feature to work, but you will have to "
218
+ "manually configure Google Analytics to exclude tracking from pageviews with "
219
+ "the 'admin' variable."
220
+ msgstr ""
221
+ "Si eliges la opción \"Remover\" removerá físicamente el Código de Rastreo de "
222
+ "los usuarios que iniciario sesión. Eligiendo \"Usar variable 'admin'\" "
223
+ "asignará una variable llamada 'admin' a los usuarios que iniciaron sesión. "
224
+ "Esta opción permitirá a un sitio de Google Analytics que funcione la "
225
+ "capacidad de superposición, pero tendrás que configurar manualmente Google "
226
+ "Analytics para excluir el rastreo de vistas de páginas con la variable "
227
+ "'admin'."
228
+
229
+ # @ google-analyticator
230
+ #: ../google-analyticator.php:689
231
+ msgid "Enable Remarketing, Demographics and Interests reports"
232
+ msgstr "Habilitar reportes de Remarketing, Demografía e Intereses"
233
+
234
+ # @ google-analyticator
235
+ #: ../google-analyticator.php:711
236
+ msgid ""
237
+ "In order to use remarketing, <a href=\"https://support.google.com/analytics/"
238
+ "answer/2611270\" target=\"_blank\">please make sure you complete this "
239
+ "checklist from Google</a>"
240
+ msgstr ""
241
+ "Para poder usar Remarketing, <a href=\"https://support.google.com/analytics/"
242
+ "answer/2611270\" target=\"_blank\">por favor asegúrate de completar esta "
243
+ "checklist de Google</a>."
244
+
245
+ # @ google-analyticator
246
+ #: ../google-analyticator.php:714
247
+ msgid ""
248
+ "To use remarketing, <a href=\"https://support.google.com/analytics/"
249
+ "answer/2884495\" target=\"_blank\">Edit permission</a> is required"
250
+ msgstr ""
251
+ "Para usar Remarketing, se necesita <a href=\"https://support.google.com/"
252
+ "analytics/answer/2611270\" target=\"_blank\">Editar los permisos</a>."
253
+
254
+ # @ google-analyticator
255
+ #: ../google-analyticator.php:719
256
+ msgid "Track WordPress Login Page"
257
+ msgstr "Rastrear página de Inicio de Sesión de WordPress"
258
+
259
+ # @ google-analyticator
260
+ #: ../google-analyticator.php:739
261
+ msgid "This will track all access to wp-login.php"
262
+ msgstr "Esto rastreará todo acceso a wp-login.php"
263
+
264
+ # @ google-analyticator
265
+ #: ../google-analyticator.php:743
266
+ msgid "Link Tracking Settings"
267
+ msgstr "Configuración de Rastreo"
268
+
269
+ # @ google-analyticator
270
+ #: ../google-analyticator.php:747
271
+ msgid "Outbound link tracking"
272
+ msgstr "Rastreo de enlaces de salida"
273
+
274
+ # @ google-analyticator
275
+ #: ../google-analyticator.php:766
276
+ msgid ""
277
+ "Disabling this option will turn off the tracking of outbound links. It's "
278
+ "recommended not to disable this option unless you're a privacy advocate (now "
279
+ "why would you be using Google Analytics in the first place?) or it's causing "
280
+ "some kind of weird issue."
281
+ msgstr ""
282
+ "Deshabilitando esta opción apagará el rastreo de los enlaces de salida. Es "
283
+ "recomendado no deshabilitar esta opción a menos que seas un defensor de la "
284
+ "privacidad (ahora, ¿por qué estarías usando Google Analytics en primer "
285
+ "lugar?) o si está causando algú problema extraño."
286
+
287
+ # @ google-analyticator
288
+ #: ../google-analyticator.php:771
289
+ msgid "Event tracking"
290
+ msgstr "Rastreo de eventos"
291
+
292
+ # @ google-analyticator
293
+ #: ../google-analyticator.php:790
294
+ msgid ""
295
+ "Enabling this option will treat outbound links and downloads as events "
296
+ "instead of pageviews. Since the introduction of <a href=\"https://developers."
297
+ "google.com/analytics/devguides/collection/gajs/eventTrackerGuide\">event "
298
+ "tracking in Analytics</a>, this is the recommended way to track these types "
299
+ "of actions. Only disable this option if you must use the old pageview "
300
+ "tracking method."
301
+ msgstr ""
302
+ "Habilitando esta opción se tratará a los enlaces salientes y descargas como "
303
+ "eventos en vez de como vistas de páginas. Desde la introducción del <a href="
304
+ "\"https://developers.google.com/analytics/devguides/collection/gajs/"
305
+ "eventTrackerGuide\">Rastreo de eventos en Analytics</a>, esta es la manera "
306
+ "recomendada de rastrear este tipo de acciones. Sólo deshabilita esta opción "
307
+ "si debes usar el método antiguo de rastreo de vistas de páginas."
308
+
309
+ # @ google-analyticator
310
+ #: ../google-analyticator.php:795
311
+ msgid "Enhanced Link Attribution"
312
+ msgstr "Atribución de enlace mejorada"
313
+
314
+ # @ google-analyticator
315
+ #: ../google-analyticator.php:814
316
+ msgid ""
317
+ "You can tag your pages to implement an enhanced link-tracking functionality "
318
+ "by enabling this option. <a href=\"https://support.google.com/analytics/"
319
+ "answer/2558867?hl=en\" target=\"_blank\">learn more</a>"
320
+ msgstr ""
321
+ "Puede etiquetar sus páginas para implementar una función de seguimiento de "
322
+ "enlaces mejorada habilitando esta opción. <a href=\"https://support.google."
323
+ "com/analytics/answer/2558867?hl=en\" target=\"_blank\">Leer más sobre esto.</"
324
+ "a>"
325
+
326
+ # @ google-analyticator
327
+ #: ../google-analyticator.php:819
328
+ msgid "Download extensions to track"
329
+ msgstr "Rastreo de extensiones de archivos de descarga"
330
+
331
+ # @ google-analyticator
332
+ #: ../google-analyticator.php:829
333
+ msgid ""
334
+ "Enter any extensions of files you would like to be tracked as a download. "
335
+ "For example to track all MP3s and PDFs enter <strong>mp3,pdf</strong>. "
336
+ "<em>Outbound link tracking must be enabled for downloads to be tracked.</em>"
337
+ msgstr ""
338
+ "Ingrese extensiones de archivos que desearía que fuera rastreadas como "
339
+ "descargas. Por ejemplo, si quieres rastrear todos los MP3s y PDFs, ingresa "
340
+ "<strong>mp3,pdf</strong>. <em>El Rastreo de enlaces salientes debe estar "
341
+ "habilitado para que las descargas sean rastreadas.</em>"
342
+
343
+ # @ google-analyticator
344
+ #: ../google-analyticator.php:834
345
+ msgid "Prefix external links with"
346
+ msgstr "Prefijar enlaces externos con"
347
+
348
+ # @ google-analyticator
349
+ #: ../google-analyticator.php:844
350
+ msgid ""
351
+ "Enter a name for the section tracked external links will appear under. This "
352
+ "option has no effect if event tracking is enabled."
353
+ msgstr ""
354
+ "Ingrese un nombre para la sección en la cual aparecerán los enlaces externos "
355
+ "rastreados. Esta opción no tiene efecto si está habilitado el Rastreo de "
356
+ "eventos."
357
+
358
+ # @ google-analyticator
359
+ #: ../google-analyticator.php:849
360
+ msgid "Prefix download links with"
361
+ msgstr "Prefijar enlaces de descarga con"
362
+
363
+ # @ google-analyticator
364
+ #: ../google-analyticator.php:859
365
+ msgid ""
366
+ "Enter a name for the section tracked download links will appear under. This "
367
+ "option has no effect if event tracking is enabled."
368
+ msgstr ""
369
+ "Ingrese un nombre para la sección en la cual aparecerán los enlaces de "
370
+ "descarga rastreados. Esta opción no tiene efecto si está habilitado el "
371
+ "Rastreo de eventos."
372
+
373
+ # @ google-analyticator
374
+ #: ../google-analyticator.php:864
375
+ msgid "Google Adsense ID"
376
+ msgstr "ID de Google Adsense"
377
+
378
+ # @ google-analyticator
379
+ #: ../google-analyticator.php:874
380
+ msgid ""
381
+ "Enter your Google Adsense ID assigned by Google Analytics in this box. This "
382
+ "enables Analytics tracking of Adsense information if your Adsense and "
383
+ "Analytics accounts are linked."
384
+ msgstr ""
385
+ "Ingresa en este campo tu ID de Google Adsense asignado por Google Analytics. "
386
+ "Estohabilita a Analytics rastrear la información de Adsense si tus cuentas "
387
+ "deAdsense y Analytics están vinculadas."
388
+
389
+ # @ google-analyticator
390
+ #: ../google-analyticator.php:878
391
+ msgid "Additional Tracking Code"
392
+ msgstr "Código de rastreo adicional"
393
+
394
+ # @ google-analyticator
395
+ #: ../google-analyticator.php:882 ../google-analyticator.php:900
396
+ msgid "Additional tracking code"
397
+ msgstr "Código de rastreo adicional"
398
+
399
+ # @ google-analyticator
400
+ #: ../google-analyticator.php:885
401
+ msgid "before tracker initialization"
402
+ msgstr "antes de la inicialización del rastreo"
403
+
404
+ # @ google-analyticator
405
+ #: ../google-analyticator.php:895
406
+ msgid ""
407
+ "Enter any additional lines of tracking code that you would like to include "
408
+ "in the Google Analytics tracking script. The code in this section will be "
409
+ "displayed <strong>before</strong> the Google Analytics tracker is "
410
+ "initialized."
411
+ msgstr ""
412
+ "Ingrese cualquier línea de código de rastreo adicional que quieras incluir "
413
+ "en el script de rastreo de Google Analytics. El código en esta sección "
414
+ "aparecerá <strong>antes</strong> de que el rastreo de Google Analyticssea "
415
+ "inicializado."
416
+
417
+ # @ google-analyticator
418
+ #: ../google-analyticator.php:903
419
+ msgid "after tracker initialization"
420
+ msgstr "luego de la inicialización del rastreo"
421
+
422
+ # @ google-analyticator
423
+ #: ../google-analyticator.php:913
424
+ msgid ""
425
+ "Enter any additional lines of tracking code that you would like to include "
426
+ "in the Google Analytics tracking script. The code in this section will be "
427
+ "displayed <strong>after</strong> the Google Analytics tracker is initialized."
428
+ msgstr ""
429
+ "Ingrese cualquier línea de código de rastreo adicional que quieras incluir "
430
+ "en el script de rastreo de Google Analytics. El código en esta sección "
431
+ "aparecerá <strong>después</strong> de que el rastreo de Google Analyticssea "
432
+ "inicializado."
433
+
434
+ #: ../google-analyticator.php:917
435
+ msgid "Admin Dashboard Widgets"
436
+ msgstr "Admin Dashboard Widgets"
437
+
438
+ # @ google-analyticator
439
+ #: ../google-analyticator.php:920
440
+ msgid ""
441
+ "You have not authenticated with Google - you cannot use dashboard widgets! "
442
+ "Reset the plugin to authenticate.."
443
+ msgstr ""
444
+ "No te has autenticado con Google, ¡no puedes usar los widgets del Escritorio!"
445
+ "Reinicia el plugin para autenticarte."
446
+
447
+ # @ google-analyticator
448
+ #: ../google-analyticator.php:926
449
+ msgid "Include widgets"
450
+ msgstr "Incluir widgets"
451
+
452
+ # @ google-analyticator
453
+ #: ../google-analyticator.php:944
454
+ msgid ""
455
+ "Disabling this option will completely remove the Dashboard Summary widget "
456
+ "and the theme Stats widget. Use this option if you would prefer to not see "
457
+ "the widgets."
458
+ msgstr ""
459
+ "Deshabilitando esta opción se removerá completamente el widget de Resumen en "
460
+ "el Escritorio y el widget de Estadísticas del tema. Usa esta opción si "
461
+ "prefieres no ver los widgets."
462
+
463
+ # @ google-analyticator
464
+ #: ../google-analyticator.php:949
465
+ msgid "Display Ad"
466
+ msgstr "Mostrar anuncio"
467
+
468
+ # @ google-analyticator
469
+ #: ../google-analyticator.php:968
470
+ msgid "You can disable the ad on the admin dashboard."
471
+ msgstr "Puedes deshabilitar el anuncio en el Escritorio de administrador."
472
+
473
+ # @ google-analyticator
474
+ #: ../google-analyticator.php:973
475
+ msgid "User roles that can see the dashboard widget"
476
+ msgstr "Roles de usuario que pueden ver el widget del Escritorio"
477
+
478
+ # @ google-analyticator
479
+ #: ../google-analyticator.php:993
480
+ msgid ""
481
+ "Specifies the user roles that can see the dashboard widget. If a user is not "
482
+ "in one of these role groups, they will not see the dashboard widget."
483
+ msgstr ""
484
+ "Especifica los roles de usuario que pueden ver el widget del Escritorio. Si "
485
+ "un usuario no está en un de estos grupos de roles, no verá el widget."
486
+
487
+ # @ google-analyticator
488
+ #: ../google-analyticator.php:998
489
+ msgid "Save Changes"
490
+ msgstr "Guardar cambios"
491
+
492
+ # @ google-analyticator
493
+ #: ../google-analyticator.php:1001
494
+ msgid "Deauthorize &amp; Reset Google Analyticator."
495
+ msgstr "Desautorizar &amp; Reiniciar Google Analyticator."
496
+
497
+ # @ google-analyticator
498
+ #: ../google-analyticator.php:1211
499
+ msgid ""
500
+ "Tracking code is hidden, since the settings specify not to track admins. "
501
+ "Tracking is occurring for non-admins."
502
+ msgstr ""
503
+ "El código de rastreo está oculto, ya que la configuración especifica no "
504
+ "rastrear administradores. No hay rastreo actualmente para no administradores."
505
+
506
+ # @ google-analyticator
507
+ #: ../google-analytics-stats-widget.php:12
508
+ msgid "Displays Stat Info From Google Analytics"
509
+ msgstr "Muestra información de estadísticas desde Google Analytics"
510
+
511
+ # @ google-analyticator
512
+ #: ../google-analytics-stats-widget.php:14
513
+ msgid "Google Analytics Stats"
514
+ msgstr "Estadísticas de Google Analytics"
515
+
516
+ # @ google-analyticator
517
+ #: ../google-analytics-stats-widget.php:106
518
+ msgid "Title"
519
+ msgstr "Título"
520
+
521
+ # @ google-analyticator
522
+ #: ../google-analytics-stats-widget.php:108
523
+ msgid "Days of data to get"
524
+ msgstr "Días de los datos a obtener"
525
+
526
+ # @ google-analyticator
527
+ #: ../google-analytics-stats-widget.php:110
528
+ msgid "Page background"
529
+ msgstr "Fondo de la página"
530
+
531
+ # @ google-analyticator
532
+ #: ../google-analytics-stats-widget.php:112
533
+ msgid "Widget background"
534
+ msgstr "Fondo del widget"
535
+
536
+ # @ google-analyticator
537
+ #: ../google-analytics-stats-widget.php:114
538
+ msgid "Inner background"
539
+ msgstr "Fondo interior"
540
+
541
+ # @ google-analyticator
542
+ #: ../google-analytics-stats-widget.php:116
543
+ msgid "Font color"
544
+ msgstr "Color de la fuente"
545
+
546
+ # @ google-analyticator
547
+ #: ../google-analytics-stats-widget.php:118
548
+ msgid "Line 1 text"
549
+ msgstr "Texto de la línea 1"
550
+
551
+ # @ google-analyticator
552
+ #: ../google-analytics-stats-widget.php:120
553
+ msgid "Line 2 text"
554
+ msgstr "Texto de la línea 2"
555
+
556
+ # @ google-analyticator
557
+ #: ../google-analytics-summary-widget.php:45
558
+ msgid "Google Analytics Summary"
559
+ msgstr "Resumen de Google Analytics"
560
+
561
+ # @ google-analyticator
562
+ #: ../google-analytics-summary-widget.php:110
563
+ msgid "View Full Stat Report"
564
+ msgstr "Ver reporte de estadísticas completo"
565
+
566
+ # @ google-analyticator
567
+ #: ../google-analytics-summary-widget.php:198
568
+ #: ../google-analytics-summary-widget.php:447
569
+ #: ../google-analytics-summary-widget.php:575
570
+ #: ../google-analytics-summary-widget.php:600
571
+ msgid "Visits"
572
+ msgstr "Visitas"
573
+
574
+ # @ google-analyticator
575
+ #: ../google-analytics-summary-widget.php:224
576
+ msgid "Past 30 days"
577
+ msgstr "Últimos 30 días"
578
+
579
+ # @ google-analyticator
580
+ #: ../google-analytics-summary-widget.php:225
581
+ msgid "Past 60 days"
582
+ msgstr "Últimos 60 días"
583
+
584
+ # @ google-analyticator
585
+ #: ../google-analytics-summary-widget.php:226
586
+ msgid "Yesterday"
587
+ msgstr "Ayer"
588
+
589
+ # @ google-analyticator
590
+ #: ../google-analytics-summary-widget.php:256
591
+ msgid ""
592
+ "No Analytics account selected. Double check you are authenticated with "
593
+ "Google on Google Analyticator's settings page and make sure an account is "
594
+ "selected."
595
+ msgstr ""
596
+ "No se seleccionó ninguna cuenta de Analytics. Vuelve a verificar que estás "
597
+ "autenticado con Google en la página de configuración de Google Analyticator "
598
+ "y asegúrate de que una cuenta está seleccionada."
599
+
600
+ # @ google-analyticator
601
+ #: ../google-analytics-summary-widget.php:269
602
+ msgid "Site Usage"
603
+ msgstr "Uso del sitio"
604
+
605
+ # @ google-analyticator
606
+ #: ../google-analytics-summary-widget.php:275
607
+ msgid "Top Pages"
608
+ msgstr "Páginas principales"
609
+
610
+ # @ google-analyticator
611
+ #: ../google-analytics-summary-widget.php:284
612
+ msgid "Top Referrers"
613
+ msgstr "Referentes principales"
614
+
615
+ # @ google-analyticator
616
+ #: ../google-analytics-summary-widget.php:293
617
+ msgid "Top Searches"
618
+ msgstr "Búsquedas principales"
619
+
620
+ # @ google-analyticator
621
+ #: ../google-analytics-summary-widget.php:429
622
+ #, php-format
623
+ msgid "The most visits on a single day was %d. Yesterday there were %d visits."
624
+ msgstr "La mayor cantidad de visitas en un día fue %d. Ayer hubo %d visitas."
625
+
626
+ # @ google-analyticator
627
+ #: ../google-analytics-summary-widget.php:453
628
+ msgid "Bounce Rate"
629
+ msgstr "Tasa de rebote"
630
+
631
+ # @ google-analyticator
632
+ #: ../google-analytics-summary-widget.php:457
633
+ msgid "Pageviews"
634
+ msgstr "Vistas de páginas"
635
+
636
+ # @ google-analyticator
637
+ #: ../google-analytics-summary-widget.php:463
638
+ msgid "Avg. Time on Site"
639
+ msgstr "Tiempo promedio en el sitio"
640
+
641
+ # @ google-analyticator
642
+ #: ../google-analytics-summary-widget.php:471
643
+ msgid "Pages/Visit"
644
+ msgstr "Páginas/Visita"
645
+
646
+ # @ google-analyticator
647
+ #: ../google-analytics-summary-widget.php:476
648
+ msgid "% New Visits"
649
+ msgstr "% de nuevas visitas"
650
+
651
+ # @ google-analyticator
652
+ #: ../google-analytics-summary-widget.php:495
653
+ #: ../google-analytics-summary-widget.php:568
654
+ #: ../google-analytics-summary-widget.php:594
655
+ msgid "There is no data for view."
656
+ msgstr "No hay datos para ver."
657
+
658
+ # @ google-analyticator
659
+ #: ../google-analytics-summary-widget.php:541
660
+ msgid "Views"
661
+ msgstr "Vistas"
localizations/google-analyticator-nl_NL.mo ADDED
Binary file
localizations/google-analyticator-nl_NL.po ADDED
@@ -0,0 +1,646 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: google_analyticator_dutch\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-04-22 10:06+0800\n"
6
+ "PO-Revision-Date: 2014-04-22 10:07+0800\n"
7
+ "Last-Translator: Martin Teley <martin.teley@gmail.com>\n"
8
+ "Language-Team: Martin Teley <martin.teley@gmail.com>\n"
9
+ "Language: nl\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 1.6.4\n"
14
+ "X-Poedit-KeywordsList: __;gettext;gettext_noop;e_;_e;_n:1,2;_n_noop:1,2;"
15
+ "_nx:1,2;_nx_noop:1,2\n"
16
+ "X-Poedit-Basepath: .\n"
17
+ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
18
+ "|| n%100>=20) ? 1 : 2);\n"
19
+ "X-Poedit-SearchPath-0: ..\n"
20
+ "X-Poedit-SearchPath-1: ..\n"
21
+ "X-Poedit-SearchPath-2: .\n"
22
+
23
+ #: ../google-analyticator.php:151
24
+ msgid "Google Analyticator Settings"
25
+ msgstr "Google Analyticator Instellingen"
26
+
27
+ #: ../google-analyticator.php:252
28
+ msgid "Settings"
29
+ msgstr "Instellingen"
30
+
31
+ #: ../google-analyticator.php:253
32
+ msgid "Reset"
33
+ msgstr "Reset"
34
+
35
+ #: ../google-analyticator.php:445
36
+ msgid "Google Analyticator settings saved."
37
+ msgstr "Google Analyticator instellingen opgeslagen."
38
+
39
+ #: ../google-analyticator.php:460
40
+ msgid "Google Analytics integration is currently <strong>DISABLED</strong>."
41
+ msgstr ""
42
+ "Google Analytics integratie is momenteel <strong>UITGESCHAKELD</strong>."
43
+
44
+ #: ../google-analyticator.php:465
45
+ msgid ""
46
+ "Google Analytics integration is currently enabled, but you did not enter a "
47
+ "UID. Tracking will not occur."
48
+ msgstr ""
49
+ "Google Analytics integratie is momenteel ingeschakeld, maar u heeft geen UID "
50
+ "opgegeven. De statistieken worden dus niet bijgehouden."
51
+
52
+ #: ../google-analyticator.php:478
53
+ msgid "Basic Settings"
54
+ msgstr "Basis Instellingen"
55
+
56
+ #: ../google-analyticator.php:484
57
+ msgid "Google Analytics logging is"
58
+ msgstr "Google Analytics logging is"
59
+
60
+ #: ../google-analyticator.php:494 ../google-analyticator.php:756
61
+ #: ../google-analyticator.php:780 ../google-analyticator.php:804
62
+ #: ../google-analyticator.php:934
63
+ msgid "Enabled"
64
+ msgstr "Ingeschakeld"
65
+
66
+ #: ../google-analyticator.php:499 ../google-analyticator.php:761
67
+ #: ../google-analyticator.php:785 ../google-analyticator.php:809
68
+ #: ../google-analyticator.php:939
69
+ msgid "Disabled"
70
+ msgstr "Uitgeschakeld"
71
+
72
+ #: ../google-analyticator.php:508
73
+ msgid "Analytics Account"
74
+ msgstr "Analytics Account"
75
+
76
+ #: ../google-analyticator.php:546
77
+ msgid "Hide Google Analytics UID after saving"
78
+ msgstr "Hide Google Analytics UID after saving"
79
+
80
+ #: ../google-analyticator.php:556
81
+ msgid "Tracking Code"
82
+ msgstr "Tracking-ID"
83
+
84
+ #: ../google-analyticator.php:565
85
+ msgid "Traditional (ga.js)"
86
+ msgstr "Traditioneel (ga.js)"
87
+
88
+ #: ../google-analyticator.php:570
89
+ msgid "Universal (analytics.js)"
90
+ msgstr "Universeel (analytics.js)"
91
+
92
+ #: ../google-analyticator.php:575
93
+ msgid ""
94
+ "If you are using Universal Analytics make sure you have changed your account "
95
+ "to a Universal Analytics property in Google Analytics. Read more about "
96
+ "Universal Analytics <a href=\"https://support.google.com/analytics/"
97
+ "answer/2817075?hl=en\" target=\"_blank\">here</a>."
98
+ msgstr ""
99
+ "Wanneer u de Universal Analytics gebruikt moet u uw Google Analytics account "
100
+ "ook upgraden naar Universal Analytics. Klik <a href=\"https://support.google."
101
+ "com/analytics/answer/2817075?hl=nl\" target=\"_blank\">hier</a> voor meer "
102
+ "informatie."
103
+
104
+ #: ../google-analyticator.php:582
105
+ msgid "Tracking Settings"
106
+ msgstr "Tracking Opties"
107
+
108
+ #: ../google-analyticator.php:587
109
+ msgid "Track all logged in WordPress users"
110
+ msgstr "Alle ingelogde gebruikers tracks"
111
+
112
+ #: ../google-analyticator.php:596 ../google-analyticator.php:626
113
+ #: ../google-analyticator.php:704 ../google-analyticator.php:728
114
+ #: ../google-analyticator.php:958
115
+ msgid "Yes"
116
+ msgstr "Ja"
117
+
118
+ #: ../google-analyticator.php:601 ../google-analyticator.php:621
119
+ #: ../google-analyticator.php:698 ../google-analyticator.php:733
120
+ #: ../google-analyticator.php:963
121
+ msgid "No"
122
+ msgstr "Nee"
123
+
124
+ #: ../google-analyticator.php:607
125
+ msgid ""
126
+ "Selecting \"no\" to this option will prevent logged in WordPress users from "
127
+ "showing up on your Google Analytics reports. This setting will prevent "
128
+ "yourself or other users from showing up in your Analytics reports. Use the "
129
+ "next setting to determine what user groups to exclude."
130
+ msgstr ""
131
+ "Wanneer u \"nee\" selecteer bij deze optie, zullen alle ingelogde gebruikers "
132
+ "niet opgenomen worden in de Google Analytics reportages. Deze instelling "
133
+ "voorkomt dat uzelf of andere gebruikers in de Analytics reportages "
134
+ "voorkomen. U kunt de onderstaande optie gebruiken om te bepalen welke "
135
+ "gebruikersgroepen genegeerd moeten worden."
136
+
137
+ #: ../google-analyticator.php:612
138
+ msgid "Anonymize IP Addresses"
139
+ msgstr "Anonimiseer IP Adressen"
140
+
141
+ #: ../google-analyticator.php:632
142
+ msgid ""
143
+ "By selecting \"Yes\", This tells Google Analytics to anonymize the "
144
+ "information sent by the tracker objects by removing the last octet of the IP "
145
+ "address prior to its storage. Note that this will slightly reduce the "
146
+ "accuracy of geographic reporting."
147
+ msgstr ""
148
+ "Wanneer u \"ja\" selecteert, zal Google Analytics de informatie van de "
149
+ "bezoeker anonimiseren door het laatste octet van zijn/haar IP adress te "
150
+ "verwijderen voordat dit opgeslagen wordt. Let er wel op dat dit de "
151
+ "nauwkeurigheid van geografische rapporten reduceert."
152
+
153
+ #: ../google-analyticator.php:637
154
+ msgid "User roles to not track"
155
+ msgstr "Gebruikersrollen die niet getracht moeten worden"
156
+
157
+ #: ../google-analyticator.php:657
158
+ msgid ""
159
+ "Specifies the user roles to not include in your WordPress Analytics report. "
160
+ "If a user is logged into WordPress with one of these roles, they will not "
161
+ "show up in your Analytics report."
162
+ msgstr ""
163
+ "Specificeert de gebruikersrollen die niet opgenomen worden in uw WordPress "
164
+ "Analytics rapport. Wanneer een gebruiker met een van deze rollen ingelogd "
165
+ "is, zullen ze genegeerd worden in het Analytics rapport."
166
+
167
+ #: ../google-analyticator.php:662
168
+ msgid "Method to prevent tracking"
169
+ msgstr "Methode om tracking te verhinderen"
170
+
171
+ #: ../google-analyticator.php:671
172
+ msgid "Remove"
173
+ msgstr "Verwijderen"
174
+
175
+ #: ../google-analyticator.php:676
176
+ msgid "Use 'admin' variable"
177
+ msgstr "Gebruik 'admin' toevoeging"
178
+
179
+ #: ../google-analyticator.php:680
180
+ msgid "Dimension Index"
181
+ msgstr "Dimension Index"
182
+
183
+ #: ../google-analyticator.php:684
184
+ msgid ""
185
+ "Selecting the \"Remove\" option will physically remove the tracking code "
186
+ "from logged in users. Selecting the \"Use 'admin' variable\" option will "
187
+ "assign a variable called 'admin' to logged in users. This option will allow "
188
+ "Google Analytics' site overlay feature to work, but you will have to "
189
+ "manually configure Google Analytics to exclude tracking from pageviews with "
190
+ "the 'admin' variable."
191
+ msgstr ""
192
+ "Wanneer u de optie \"verwijderen\" selecteert zullen alle gegevens van "
193
+ "ingelogde gebruikers fysiek verwijderd worden. Wanneer u de optie \"gebruik "
194
+ "'admin' toevoeging\" selecteert zal er een variabele 'admin' aan alle data "
195
+ "van ingelogde gebruikers gehangen worden. Met deze optie zal de site overlay "
196
+ "optie van Google Analytics werken, maar moet u Google Analytics handmatig "
197
+ "configureren om de gegevens van ingelogde gebruikers te negeren."
198
+
199
+ #: ../google-analyticator.php:689
200
+ msgid "Enable Remarketing, Demographics and Interests reports"
201
+ msgstr "Remarketing, Demografie en Interesses rapporten laten zien"
202
+
203
+ #: ../google-analyticator.php:711
204
+ msgid ""
205
+ "In order to use remarketing, <a href=\"https://support.google.com/analytics/"
206
+ "answer/2611270\" target=\"_blank\">please make sure you complete this "
207
+ "checklist from Google</a>"
208
+ msgstr ""
209
+ "Om remarketing te gebruiken, <a href=\"https://support.google.com/analytics/"
210
+ "answer/2611270\" target=\"_blank\">gebruik a.u.b. deze checklist van Google</"
211
+ "a>."
212
+
213
+ #: ../google-analyticator.php:714
214
+ msgid ""
215
+ "To use remarketing, <a href=\"https://support.google.com/analytics/"
216
+ "answer/2884495\" target=\"_blank\">Edit permission</a> is required"
217
+ msgstr ""
218
+ "Bij het gebruik van remarketing, <a href=\"https://support.google.com/"
219
+ "analytics/answer/2611270\" target=\"_blank\">toestemming om te wijzigen</a> "
220
+ "is vereist."
221
+
222
+ #: ../google-analyticator.php:719
223
+ msgid "Track WordPress Login Page"
224
+ msgstr "Track Wordpress Login Pagina"
225
+
226
+ #: ../google-analyticator.php:739
227
+ msgid "This will track all access to wp-login.php"
228
+ msgstr "Dit zal alle toegang tot wp-login.php tracks"
229
+
230
+ #: ../google-analyticator.php:743
231
+ msgid "Link Tracking Settings"
232
+ msgstr "Ustawienia śledzenia odnośników"
233
+
234
+ #: ../google-analyticator.php:747
235
+ msgid "Outbound link tracking"
236
+ msgstr "Tracken van uitgaande links"
237
+
238
+ #: ../google-analyticator.php:766
239
+ msgid ""
240
+ "Disabling this option will turn off the tracking of outbound links. It's "
241
+ "recommended not to disable this option unless you're a privacy advocate (now "
242
+ "why would you be using Google Analytics in the first place?) or it's causing "
243
+ "some kind of weird issue."
244
+ msgstr ""
245
+ "Het uitzetten van deze optie stopt het tracks van uitgaande links. Het is "
246
+ "aangeraden deze optie niet uit te zetten mits u geen privacy-activist bent "
247
+ "(maar waarom gebruikt u dan Google Analytics?) of het bepaalde vreemde "
248
+ "problemen veroorzaakt."
249
+
250
+ #: ../google-analyticator.php:771
251
+ msgid "Event tracking"
252
+ msgstr "Actie tracking"
253
+
254
+ #: ../google-analyticator.php:790
255
+ msgid ""
256
+ "Enabling this option will treat outbound links and downloads as events "
257
+ "instead of pageviews. Since the introduction of <a href=\"https://developers."
258
+ "google.com/analytics/devguides/collection/gajs/eventTrackerGuide\">event "
259
+ "tracking in Analytics</a>, this is the recommended way to track these types "
260
+ "of actions. Only disable this option if you must use the old pageview "
261
+ "tracking method."
262
+ msgstr ""
263
+ "Het inschakelen van deze optie zal uitgaande links en downloads als acties "
264
+ "zien in plaats van paginaweergaven. Sinds de introductie van <a href="
265
+ "\"https://developers.google.com/analytics/devguides/collection/gajs/"
266
+ "eventTrackerGuide\">actie tracking in Analytics</a>, is dit de aanbevolen "
267
+ "manier om deze acties te tracks. Deze optie alleen uitschakelen wanneer u de "
268
+ "oude manier van paginaweergaven tracking gebruikt."
269
+
270
+ #: ../google-analyticator.php:795
271
+ msgid "Enhanced Link Attribution"
272
+ msgstr "Enhanced Link Attribution"
273
+
274
+ #: ../google-analyticator.php:814
275
+ msgid ""
276
+ "You can tag your pages to implement an enhanced link-tracking functionality "
277
+ "by enabling this option. <a href=\"https://support.google.com/analytics/"
278
+ "answer/2558867?hl=en\" target=\"_blank\">learn more</a>"
279
+ msgstr ""
280
+ "U kunt een geavanceerde link-tracking functionaliteit aan uw pagina's hangen "
281
+ "door deze optie in te schakelen. <a href=\"https://support.google.com/"
282
+ "analytics/answer/2558867?hl=nl\" target=\"_blank\">meer informatie</a>"
283
+
284
+ #: ../google-analyticator.php:819
285
+ msgid "Download extensions to track"
286
+ msgstr "Download extensies om te tracken"
287
+
288
+ #: ../google-analyticator.php:829
289
+ msgid ""
290
+ "Enter any extensions of files you would like to be tracked as a download. "
291
+ "For example to track all MP3s and PDFs enter <strong>mp3,pdf</strong>. "
292
+ "<em>Outbound link tracking must be enabled for downloads to be tracked.</em>"
293
+ msgstr ""
294
+ "Vul alle extensies in van bestandstypen die u graag wilt tracks als "
295
+ "download. Bijvoorbeeld om MP3 en PDF bestanden te tracks vult u in: "
296
+ "<strong>mp3,pdf</strong>. <em>Tracking van uitgaande links moet ingeschakeld "
297
+ "zijn om deze optie te gebruiken.</em>"
298
+
299
+ #: ../google-analyticator.php:834
300
+ msgid "Prefix external links with"
301
+ msgstr "Prefix externe links met"
302
+
303
+ #: ../google-analyticator.php:844
304
+ msgid ""
305
+ "Enter a name for the section tracked external links will appear under. This "
306
+ "option has no effect if event tracking is enabled."
307
+ msgstr ""
308
+ "Voeg een naam in voor de sectie waaronder getrachte externe links getoond "
309
+ "worden. Deze optie heeft geen effect wanneer het tracks van acties is "
310
+ "ingeschakeld."
311
+
312
+ #: ../google-analyticator.php:849
313
+ msgid "Prefix download links with"
314
+ msgstr "Prefix download links met"
315
+
316
+ #: ../google-analyticator.php:859
317
+ msgid ""
318
+ "Enter a name for the section tracked download links will appear under. This "
319
+ "option has no effect if event tracking is enabled."
320
+ msgstr ""
321
+ "Voeg een naam in voor de sectie waaronder getrachte downlaod links getoond "
322
+ "worden. Deze optie heeft geen effect wanneer het tracks van acties "
323
+ "ingeschakeld is."
324
+
325
+ #: ../google-analyticator.php:864
326
+ msgid "Google Adsense ID"
327
+ msgstr "Google Adsense ID"
328
+
329
+ #: ../google-analyticator.php:874
330
+ msgid ""
331
+ "Enter your Google Adsense ID assigned by Google Analytics in this box. This "
332
+ "enables Analytics tracking of Adsense information if your Adsense and "
333
+ "Analytics accounts are linked."
334
+ msgstr ""
335
+ "Vul uw Google Adsense ID wat u van Google Analytics gekregen heeft in in dit "
336
+ "veld. Dit staat Analytics het tracks van Adsense informatie toe wanneer uw "
337
+ "Adsense en Analytics accounts verbonden zijn."
338
+
339
+ #: ../google-analyticator.php:878
340
+ #, fuzzy
341
+ msgid "Additional Tracking Code"
342
+ msgstr "Additionele tracking code"
343
+
344
+ #: ../google-analyticator.php:882 ../google-analyticator.php:900
345
+ msgid "Additional tracking code"
346
+ msgstr "Additionele tracking code"
347
+
348
+ #: ../google-analyticator.php:885
349
+ msgid "before tracker initialization"
350
+ msgstr "voor de tracker initialisatie"
351
+
352
+ #: ../google-analyticator.php:895
353
+ msgid ""
354
+ "Enter any additional lines of tracking code that you would like to include "
355
+ "in the Google Analytics tracking script. The code in this section will be "
356
+ "displayed <strong>before</strong> the Google Analytics tracker is "
357
+ "initialized."
358
+ msgstr ""
359
+ "Voeg hier additionele tracking code in die u graag wilt in wilt voegen in "
360
+ "het Google Analytics trekking script. De code in dit vak zal weergegeven "
361
+ "worden <strong>voor</strong> de Google Analytics tracker geinitialiseerd "
362
+ "wordt."
363
+
364
+ #: ../google-analyticator.php:903
365
+ msgid "after tracker initialization"
366
+ msgstr "na de tracker initialisatie"
367
+
368
+ #: ../google-analyticator.php:913
369
+ msgid ""
370
+ "Enter any additional lines of tracking code that you would like to include "
371
+ "in the Google Analytics tracking script. The code in this section will be "
372
+ "displayed <strong>after</strong> the Google Analytics tracker is initialized."
373
+ msgstr ""
374
+ "Voeg hier additionele tracking code in die u graag wilt in wilt voegen in "
375
+ "het Google Analytics trekking script. De code in dit vak zal weergegeven "
376
+ "worden <strong>na</strong> de Google Analytics tracker geinitialiseerd wordt."
377
+
378
+ #: ../google-analyticator.php:917
379
+ msgid "Admin Dashboard Widgets"
380
+ msgstr "Ustawienia widgetów w kokpicie"
381
+
382
+ #: ../google-analyticator.php:920
383
+ msgid ""
384
+ "You have not authenticated with Google - you cannot use dashboard widgets! "
385
+ "Reset the plugin to authenticate.."
386
+ msgstr ""
387
+ "De authenticatie met Google is niet gevonden - u kunt de dashboard widgets "
388
+ "niet gebruiken! Reset deze plugin om de authenticatie opnieuw te doen."
389
+
390
+ #: ../google-analyticator.php:926
391
+ msgid "Include widgets"
392
+ msgstr "Widgets laten zien"
393
+
394
+ #: ../google-analyticator.php:944
395
+ msgid ""
396
+ "Disabling this option will completely remove the Dashboard Summary widget "
397
+ "and the theme Stats widget. Use this option if you would prefer to not see "
398
+ "the widgets."
399
+ msgstr ""
400
+ "Het uitzetten van deze optie zal zowel de informatie op het Dashboard als de "
401
+ "statistieken widget verwijderen. Gebruik deze optie als u in geen geval deze "
402
+ "informatie wilt weergeven."
403
+
404
+ #: ../google-analyticator.php:949
405
+ msgid "Display Ad"
406
+ msgstr "Ad weergeven"
407
+
408
+ #: ../google-analyticator.php:968
409
+ msgid "You can disable the ad on the admin dashboard."
410
+ msgstr "U kunt de reclame op het admin dashboard uitschakelen."
411
+
412
+ #: ../google-analyticator.php:973
413
+ msgid "User roles that can see the dashboard widget"
414
+ msgstr "Gebruikersrollen die de dashboard widget kunnen zien."
415
+
416
+ #: ../google-analyticator.php:993
417
+ msgid ""
418
+ "Specifies the user roles that can see the dashboard widget. If a user is not "
419
+ "in one of these role groups, they will not see the dashboard widget."
420
+ msgstr ""
421
+ "Specificeert de gebruikersrollen die de dashboard widget kunnen zien. "
422
+ "Wanneer een gebruiker niet in een van deze gebruikersgroepen zit, zal hij/"
423
+ "zij de dashboard widget niet kunnen zien."
424
+
425
+ #: ../google-analyticator.php:998
426
+ msgid "Save Changes"
427
+ msgstr "Wijzigingen opslaan"
428
+
429
+ #: ../google-analyticator.php:1001
430
+ msgid "Deauthorize &amp; Reset Google Analyticator."
431
+ msgstr "Machtiging intrekken &amp; Google Analyticator resetten."
432
+
433
+ #: ../google-analyticator.php:1211
434
+ msgid ""
435
+ "Tracking code is hidden, since the settings specify not to track admins. "
436
+ "Tracking is occurring for non-admins."
437
+ msgstr ""
438
+ "Trakcing code is verborgen, omdat de instellingen zeggen dat admins niet "
439
+ "getracht moeten worden. Alleen niet-admins worden getracht."
440
+
441
+ #: ../google-analytics-stats-widget.php:12
442
+ msgid "Displays Stat Info From Google Analytics"
443
+ msgstr "Laat statistieken van Google Analytics zien"
444
+
445
+ #: ../google-analytics-stats-widget.php:14
446
+ msgid "Google Analytics Stats"
447
+ msgstr "Google Analytics Statistieken"
448
+
449
+ #: ../google-analytics-stats-widget.php:106
450
+ msgid "Title"
451
+ msgstr "Titel"
452
+
453
+ #: ../google-analytics-stats-widget.php:108
454
+ msgid "Days of data to get"
455
+ msgstr "Aantal dagen data"
456
+
457
+ #: ../google-analytics-stats-widget.php:110
458
+ msgid "Page background"
459
+ msgstr "Pagina achtergrond"
460
+
461
+ #: ../google-analytics-stats-widget.php:112
462
+ msgid "Widget background"
463
+ msgstr "Widget achtergrond"
464
+
465
+ #: ../google-analytics-stats-widget.php:114
466
+ msgid "Inner background"
467
+ msgstr "Interne achtergrond"
468
+
469
+ #: ../google-analytics-stats-widget.php:116
470
+ msgid "Font color"
471
+ msgstr "Kleur letters"
472
+
473
+ #: ../google-analytics-stats-widget.php:118
474
+ msgid "Line 1 text"
475
+ msgstr "Tekst eerste rij"
476
+
477
+ #: ../google-analytics-stats-widget.php:120
478
+ msgid "Line 2 text"
479
+ msgstr "Tekst tweede rij"
480
+
481
+ #: ../google-analytics-summary-widget.php:45
482
+ msgid "Google Analytics Summary"
483
+ msgstr "Google Analytics Overzicht"
484
+
485
+ #: ../google-analytics-summary-widget.php:110
486
+ msgid "View Full Stat Report"
487
+ msgstr "Laat volledig rapport zien"
488
+
489
+ #: ../google-analytics-summary-widget.php:198
490
+ #: ../google-analytics-summary-widget.php:447
491
+ #: ../google-analytics-summary-widget.php:575
492
+ #: ../google-analytics-summary-widget.php:600
493
+ msgid "Visits"
494
+ msgstr "Bezoeken"
495
+
496
+ #: ../google-analytics-summary-widget.php:224
497
+ msgid "Past 30 days"
498
+ msgstr "Afgelopen 30 dagen"
499
+
500
+ #: ../google-analytics-summary-widget.php:225
501
+ msgid "Past 60 days"
502
+ msgstr "Afgelopen 60 dagen"
503
+
504
+ #: ../google-analytics-summary-widget.php:226
505
+ msgid "Yesterday"
506
+ msgstr "Gisteren"
507
+
508
+ #: ../google-analytics-summary-widget.php:256
509
+ msgid ""
510
+ "No Analytics account selected. Double check you are authenticated with "
511
+ "Google on Google Analyticator's settings page and make sure an account is "
512
+ "selected."
513
+ msgstr ""
514
+ "Geen Analytics account geselecteerd. Controleer of u geauthenticeerd bent "
515
+ "met Google op Google Analyticators instellingen pagina en controlleer of er "
516
+ "een account geselecteerd is."
517
+
518
+ #: ../google-analytics-summary-widget.php:269
519
+ msgid "Site Usage"
520
+ msgstr "Bezoekers Statistieken"
521
+
522
+ #: ../google-analytics-summary-widget.php:275
523
+ msgid "Top Pages"
524
+ msgstr "Best Bezochte Pagina's"
525
+
526
+ #: ../google-analytics-summary-widget.php:284
527
+ msgid "Top Referrers"
528
+ msgstr "Meest Verwijzende Website's"
529
+
530
+ #: ../google-analytics-summary-widget.php:293
531
+ msgid "Top Searches"
532
+ msgstr "Meest Gebruikte Zoektermen"
533
+
534
+ #: ../google-analytics-summary-widget.php:429
535
+ #, php-format
536
+ msgid "The most visits on a single day was %d. Yesterday there were %d visits."
537
+ msgstr ""
538
+ "Het hoogste aantal bezoekers op een enkele dag was %d. Gisteren waren er %d "
539
+ "bezoekers."
540
+
541
+ #: ../google-analytics-summary-widget.php:453
542
+ msgid "Bounce Rate"
543
+ msgstr "Bouncepercentage"
544
+
545
+ #: ../google-analytics-summary-widget.php:457
546
+ msgid "Pageviews"
547
+ msgstr "Paginaweergaven"
548
+
549
+ #: ../google-analytics-summary-widget.php:463
550
+ msgid "Avg. Time on Site"
551
+ msgstr "Gem. Tijd op Website"
552
+
553
+ #: ../google-analytics-summary-widget.php:471
554
+ msgid "Pages/Visit"
555
+ msgstr "Pagina's per Bezoek"
556
+
557
+ #: ../google-analytics-summary-widget.php:476
558
+ msgid "% New Visits"
559
+ msgstr "% Nieuwe Bezoekers"
560
+
561
+ #: ../google-analytics-summary-widget.php:495
562
+ #: ../google-analytics-summary-widget.php:568
563
+ #: ../google-analytics-summary-widget.php:594
564
+ msgid "There is no data for view."
565
+ msgstr "Er is geen data om weer te geven."
566
+
567
+ #: ../google-analytics-summary-widget.php:541
568
+ msgid "Views"
569
+ msgstr "Paginaweergaven"
570
+
571
+ #~ msgid "Enable remarketing"
572
+ #~ msgstr "Pozwól na remarketing"
573
+
574
+ #~ msgid "Activate Google Analyticator"
575
+ #~ msgstr "Aktywacja pluginu Google Analyticator"
576
+
577
+ #~ msgid "Google Authentication Code"
578
+ #~ msgstr "Autoryzacja pluginu na koncie Google"
579
+
580
+ #~ msgid ""
581
+ #~ "You need to sign in to Google and grant this plugin access to your Google "
582
+ #~ "Analytics account"
583
+ #~ msgstr ""
584
+ #~ "Zaloguj się na koncie Google i potwierdź dostęp tego pluginu do statystyk "
585
+ #~ "Google Analytics"
586
+
587
+ #~ msgid "Click Here"
588
+ #~ msgstr "Kliknij tutaj"
589
+
590
+ #~ msgid "Or"
591
+ #~ msgstr "Lub"
592
+
593
+ #~ msgid "here"
594
+ #~ msgstr "tutaj"
595
+
596
+ #~ msgid "if you have popups blocked"
597
+ #~ msgstr "jeśli masz zablokowane wyskakujące okienka."
598
+
599
+ #~ msgid ""
600
+ #~ "Enter your Google Authentication Code in this box. This code will be used "
601
+ #~ "to get an Authentication Token so you can access your website stats."
602
+ #~ msgstr ""
603
+ #~ "Wpisz swój kod autoryzacyjny Google w pole poniżej. Pozwoli on na "
604
+ #~ "pobranie statystyk Twojej witryny z Google Analytics."
605
+
606
+ #~ msgid "Save &amp; Continue"
607
+ #~ msgstr "Zapisz &amp; Kontynuuj"
608
+
609
+ #~ msgid "I Don't Want To Authenticate Through Google"
610
+ #~ msgstr "Nie chcę korzystać z autoryzacji przez Google"
611
+
612
+ #~ msgid ""
613
+ #~ "If you don't want to authenticate through Google and only use the "
614
+ #~ "tracking capability of the plugin (<strong><u>not the dashboard "
615
+ #~ "functionality</u></strong>), you can do this by clicking the button "
616
+ #~ "below. "
617
+ #~ msgstr ""
618
+ #~ "Jeśli nie chcesz korzystać z autoryzacji przez Google i używać jedynie "
619
+ #~ "możliwości śledzenia pluginu (<strong><u> bez widżetów w kokpicie</u></"
620
+ #~ "strong>), możesz zrobić to klikając przycisk poniżej."
621
+
622
+ #~ msgid ""
623
+ #~ "You will be asked on the next page to manually enter your Google "
624
+ #~ "Analytics UID."
625
+ #~ msgstr "Zostaniesz zapytany o ręczne podanie swojego kodu Google Analytics."
626
+
627
+ #~ msgid "Continue Without Authentication"
628
+ #~ msgstr "Kontynuuj bez autoryzacji"
629
+
630
+ #~ msgid "Name"
631
+ #~ msgstr "Imię"
632
+
633
+ #~ msgid "Email"
634
+ #~ msgstr "Email"
635
+
636
+ #~ msgid "Loading"
637
+ #~ msgstr "Ładowanie"
638
+
639
+ #~ msgid "Visits Over the Past 30 Days"
640
+ #~ msgstr "Ilość odwiedzin w ciągu ostatnich 30 dni"
641
+
642
+ #~ msgid "visit"
643
+ #~ msgid_plural "visits"
644
+ #~ msgstr[0] "odwiedzin"
645
+ #~ msgstr[1] "odwiedziny"
646
+ #~ msgstr[2] "odwiedzin"
localizations/google-analyticator-tr_TR.mo ADDED
Binary file
localizations/google-analyticator-tr_TR.po ADDED
@@ -0,0 +1,562 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: google-analyticator\n"
4
+ "POT-Creation-Date: 2014-02-10 09:39+0800\n"
5
+ "PO-Revision-Date: 2014-02-10 09:40+0800\n"
6
+ "Last-Translator: Cansın Çağan Acarer <cansin.acarer@35pixel.com>\n"
7
+ "Language-Team: 35pixel Digital Media <info@35pixel.com>\n"
8
+ "Language: tr\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.6.3\n"
13
+ "X-Poedit-KeywordsList: __;_e\n"
14
+ "X-Poedit-Basepath: ../\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: google-analyticator.php:151
19
+ msgid "Google Analyticator Settings"
20
+ msgstr "Google Analyticator Ayarları"
21
+
22
+ #: google-analyticator.php:252
23
+ msgid "Settings"
24
+ msgstr "Ayarlar"
25
+
26
+ #: google-analyticator.php:253
27
+ msgid "Reset"
28
+ msgstr "Sıfırla"
29
+
30
+ #: google-analyticator.php:445
31
+ msgid "Google Analyticator settings saved."
32
+ msgstr "Google Analyticator ayarları kaydedildi."
33
+
34
+ #: google-analyticator.php:460
35
+ msgid "Google Analytics integration is currently <strong>DISABLED</strong>."
36
+ msgstr "Google Analytics entegrasyonu şu anda <strong>DEVRE DIŞI</strong>"
37
+
38
+ #: google-analyticator.php:465
39
+ msgid ""
40
+ "Google Analytics integration is currently enabled, but you did not enter a "
41
+ "UID. Tracking will not occur."
42
+ msgstr ""
43
+ "Google Analytics entegrasyonu etkin, ama UID' nizi girmediniz. "
44
+ "Ziyaretçileriniz takip edilmeyecek."
45
+
46
+ #: google-analyticator.php:478
47
+ msgid "Basic Settings"
48
+ msgstr "Temel Ayarlar"
49
+
50
+ #: google-analyticator.php:484
51
+ msgid "Google Analytics logging is"
52
+ msgstr "Google Analytics kod entegrasyonu"
53
+
54
+ #: google-analyticator.php:494 google-analyticator.php:757
55
+ #: google-analyticator.php:781 google-analyticator.php:805
56
+ #: google-analyticator.php:935
57
+ msgid "Enabled"
58
+ msgstr "Etkin"
59
+
60
+ #: google-analyticator.php:499 google-analyticator.php:762
61
+ #: google-analyticator.php:786 google-analyticator.php:810
62
+ #: google-analyticator.php:940
63
+ msgid "Disabled"
64
+ msgstr "Devre dışı"
65
+
66
+ #: google-analyticator.php:508
67
+ msgid "Analytics Account"
68
+ msgstr "Analytics Hesabı"
69
+
70
+ #: google-analyticator.php:546
71
+ msgid "Hide Google Analytics UID after saving"
72
+ msgstr "Kaydettikten sonra Google Analytics UID seçimini gizle"
73
+
74
+ #: google-analyticator.php:556
75
+ msgid "Tracking Code"
76
+ msgstr "İzleme Kodu"
77
+
78
+ #: google-analyticator.php:565
79
+ msgid "Traditional (ga.js)"
80
+ msgstr "Normal (ga.js)"
81
+
82
+ #: google-analyticator.php:570
83
+ msgid "Universal (analytics.js)"
84
+ msgstr "Universal (analytics.js)"
85
+
86
+ #: google-analyticator.php:575
87
+ msgid ""
88
+ "If you are using Universal Analytics make sure you have changed your account "
89
+ "to a Universal Analytics property in Google Analytics. Read more about "
90
+ "Universal Analytics <a href=\"https://support.google.com/analytics/"
91
+ "answer/2817075?hl=en\" target=\"_blank\">here</a>."
92
+ msgstr ""
93
+ "Universal Analytics' in takip kodunu kullanıyorsanız Google Analytics "
94
+ "hesabınızı Universal Analytics mülküne dönüştürdüğünüze emin olun. <a href="
95
+ "\"https://support.google.com/analytics/answer/2817075?hl=en\" target=\"_blank"
96
+ "\">ayrıntılı bilgi</a>."
97
+
98
+ #: google-analyticator.php:582
99
+ msgid "Tracking Settings"
100
+ msgstr "İzleme ayarları"
101
+
102
+ #: google-analyticator.php:587
103
+ msgid "Track all logged in WordPress users"
104
+ msgstr "Giriş yapmış WordPress kullanıcılarını da izle"
105
+
106
+ #: google-analyticator.php:596 google-analyticator.php:626
107
+ #: google-analyticator.php:704 google-analyticator.php:729
108
+ #: google-analyticator.php:959
109
+ msgid "Yes"
110
+ msgstr "Evet"
111
+
112
+ #: google-analyticator.php:601 google-analyticator.php:621
113
+ #: google-analyticator.php:698 google-analyticator.php:734
114
+ #: google-analyticator.php:964
115
+ msgid "No"
116
+ msgstr "Hayır"
117
+
118
+ #: google-analyticator.php:607
119
+ msgid ""
120
+ "Selecting \"no\" to this option will prevent logged in WordPress users from "
121
+ "showing up on your Google Analytics reports. This setting will prevent "
122
+ "yourself or other users from showing up in your Analytics reports. Use the "
123
+ "next setting to determine what user groups to exclude."
124
+ msgstr ""
125
+ "\"Hayır\" seçeneği Wordpress kullanıcılarının Google Analytics sonuçlarında "
126
+ "çıkmasını önler. Sonuçlarda çıkmasını istemediğiniz kullanıcı gruplarını "
127
+ "seçmek için bir sonraki ayarı kullanın."
128
+
129
+ #: google-analyticator.php:612
130
+ msgid "Anonymize IP Addresses"
131
+ msgstr "IP Adreslerini Gizle"
132
+
133
+ #: google-analyticator.php:632
134
+ msgid ""
135
+ "By selecting \"Yes\", This tells Google Analytics to anonymize the "
136
+ "information sent by the tracker objects by removing the last octet of the IP "
137
+ "address prior to its storage. Note that this will slightly reduce the "
138
+ "accuracy of geographic reporting."
139
+ msgstr ""
140
+ "\"Evet\" seçeneğini seçmeniz izleme kodunun ziyaretçi IP adreslerini Google "
141
+ "Analytics' e göndermesini engeller. Ancak bu, coğrafi raporlama verilerini "
142
+ "aksatabilir."
143
+
144
+ #: google-analyticator.php:637
145
+ msgid "User roles to not track"
146
+ msgstr "İzlenmeyecek kullanıcı rolleri"
147
+
148
+ #: google-analyticator.php:657
149
+ msgid ""
150
+ "Specifies the user roles to not include in your WordPress Analytics report. "
151
+ "If a user is logged into WordPress with one of these roles, they will not "
152
+ "show up in your Analytics report."
153
+ msgstr ""
154
+ "Google Analytics sonuçlarına dahil olmamasını istediğiniz kullanıcı "
155
+ "rollerini belirler. Burada seçilmiş rollerdeki kullanıcıların ziyareti "
156
+ "Google Analytics sonuçlarında görünmez."
157
+
158
+ #: google-analyticator.php:662
159
+ msgid "Method to prevent tracking"
160
+ msgstr "İzlemeyi engelleme yöntemi"
161
+
162
+ #: google-analyticator.php:671
163
+ msgid "Remove"
164
+ msgstr "Kaldır"
165
+
166
+ #: google-analyticator.php:676
167
+ msgid "Use 'admin' variable"
168
+ msgstr "'admin' değişkenini kullan"
169
+
170
+ #: google-analyticator.php:680
171
+ msgid "Dimension Index"
172
+ msgstr "Boyut Endeksi"
173
+
174
+ #: google-analyticator.php:684
175
+ msgid ""
176
+ "Selecting the \"Remove\" option will physically remove the tracking code "
177
+ "from logged in users. Selecting the \"Use 'admin' variable\" option will "
178
+ "assign a variable called 'admin' to logged in users. This option will allow "
179
+ "Google Analytics' site overlay feature to work, but you will have to "
180
+ "manually configure Google Analytics to exclude tracking from pageviews with "
181
+ "the 'admin' variable."
182
+ msgstr ""
183
+ "\"Kaldır\" seçeneği yöneticiler için izleme kodunu siteden kaldıracaktır. "
184
+ "\"Yönetici değişkenini kullan\" seçeneği ise giriş yapmış kullanıcıların "
185
+ "ziyaretleri için admin isimli bir değişken atayacaktır. Bu seçenek Google "
186
+ "Analytics' in \"Site Overlay\" seçeneğini devreye sokar, ancak Google "
187
+ "Analytics' in yöneticileri hariç tutması için manuel olarak ayar yapmanız "
188
+ "gerekir."
189
+
190
+ #: google-analyticator.php:689
191
+ msgid "Enable Remarketing, Demographics and Interests reports"
192
+ msgstr ""
193
+ "Yeniden Pazarlama, Demografikler ve İlgi Alanları raporlarını etkinleştir"
194
+
195
+ #: google-analyticator.php:711
196
+ msgid ""
197
+ "In order to use remarketing, <a href=\"https://support.google.com/analytics/"
198
+ "answer/2611270\" target=\"_blank\">please make sure you complete this "
199
+ "checklist from Google</a>"
200
+ msgstr ""
201
+ "Yeniden pazarlamayı kullanmak için, <a href=\"https://support.google.com/"
202
+ "analytics/answer/2611270/?hl=tr\" target=\"_blank\">Yeniden Pazarlama "
203
+ "Listesi Gereksinimleri</a>' ni tamamladığınızdan emin olun."
204
+
205
+ #: google-analyticator.php:714
206
+ msgid ""
207
+ "To use remarketing, <a href=\"https://support.google.com/analytics/"
208
+ "answer/2884495\" target=\"_blank\">Edit permission</a> is required"
209
+ msgstr ""
210
+ "Yeniden pazarlamayı kullanmak için, <a href=\"https://support.google.com/"
211
+ "analytics/answer/2884495\" target=\"_blank\">İzinlerin düzenlenmesi</a> "
212
+ "gereklidir."
213
+
214
+ #: google-analyticator.php:716
215
+ msgid ""
216
+ "Universal Analytics (analytics.js) does not currently support this feature"
217
+ msgstr "Universal Analytics (analytics.js) şu anda bu özelliği desteklemiyor"
218
+
219
+ #: google-analyticator.php:716
220
+ msgid "learn more"
221
+ msgstr "daha fazla bilgi"
222
+
223
+ #: google-analyticator.php:720
224
+ msgid "Track WordPress Login Page"
225
+ msgstr "WordPress giriş sayfasını izle"
226
+
227
+ #: google-analyticator.php:740
228
+ msgid "This will track all access to wp-login.php"
229
+ msgstr "Bu seçenek wp-login.php sayfasının izlenmesini sağlar."
230
+
231
+ #: google-analyticator.php:744
232
+ msgid "Link Tracking Settings"
233
+ msgstr "Bağlantı İzleme Ayarları"
234
+
235
+ #: google-analyticator.php:748
236
+ msgid "Outbound link tracking"
237
+ msgstr "Giden bağlantıları izleme"
238
+
239
+ #: google-analyticator.php:767
240
+ msgid ""
241
+ "Disabling this option will turn off the tracking of outbound links. It's "
242
+ "recommended not to disable this option unless you're a privacy advocate (now "
243
+ "why would you be using Google Analytics in the first place?) or it's causing "
244
+ "some kind of weird issue."
245
+ msgstr ""
246
+ "Bu seçeneği devre dışı bırakmak giden bağlantıların izlenmesini engeller. "
247
+ "Sitenizi özellikle gizlemek istemiyorsanız veya garip soruna neden olmuyorsa "
248
+ "bu seçeneği etkin bırakılması tavsiye ederiz. (Yoksa neden Google Analytics "
249
+ "kullanasınız ki?)"
250
+
251
+ #: google-analyticator.php:772
252
+ msgid "Event tracking"
253
+ msgstr "Etkinlik izleme"
254
+
255
+ #: google-analyticator.php:791
256
+ msgid ""
257
+ "Enabling this option will treat outbound links and downloads as events "
258
+ "instead of pageviews. Since the introduction of <a href=\"https://developers."
259
+ "google.com/analytics/devguides/collection/gajs/eventTrackerGuide\">event "
260
+ "tracking in Analytics</a>, this is the recommended way to track these types "
261
+ "of actions. Only disable this option if you must use the old pageview "
262
+ "tracking method."
263
+ msgstr ""
264
+ "Bu seçeneği etkinleştirmeniz giden bağlantıların ve indirmelerin etkinlik "
265
+ "olarak görülmesini sağlar. <a href=\"https://developers.google.com/analytics/"
266
+ "devguides/collection/gajs/eventTrackerGuide?hl=tr\" target=\"_blank\">Google "
267
+ "Analytics' te Etkinlik takibi</a> tanıtıldığından beri bu tür etkinliklerin "
268
+ "izlenmesi tavsiye edilir."
269
+
270
+ #: google-analyticator.php:796
271
+ msgid "Enhanced Link Attribution"
272
+ msgstr "Gelişmiş Link Özellikleri"
273
+
274
+ #: google-analyticator.php:815
275
+ msgid ""
276
+ "You can tag your pages to implement an enhanced link-tracking functionality "
277
+ "by enabling this option. <a href=\"https://support.google.com/analytics/"
278
+ "answer/2558867?hl=en\" target=\"_blank\">learn more</a>"
279
+ msgstr ""
280
+ "Bu seçeneği etkinleştirdiğinizde gelişmiş link takip işlevini eklemek için "
281
+ "sayfalarınızı etiketleyebilirsiniz. <a href=\"https://support.google.com/"
282
+ "analytics/answer/2558867?hl=en\" target=\"_blank\">ayrıntılı bilgi</a>"
283
+
284
+ #: google-analyticator.php:820
285
+ msgid "Download extensions to track"
286
+ msgstr "Takip edilecek indirme uzantıları"
287
+
288
+ #: google-analyticator.php:830
289
+ msgid ""
290
+ "Enter any extensions of files you would like to be tracked as a download. "
291
+ "For example to track all MP3s and PDFs enter <strong>mp3,pdf</strong>. "
292
+ "<em>Outbound link tracking must be enabled for downloads to be tracked.</em>"
293
+ msgstr ""
294
+ "İndirme olarak izlenmesini istediğiniz dosya uzantılarını girin. Örneğin "
295
+ "bütün MP3 ve PDF' leri izlemek için <strong>mp3,pdf</strong> yazın. "
296
+ "<em>İndirmelerin takip edilebilmesi için \"Giden bağlantıları izleme\" "
297
+ "etkinleştirilmelidir.</em>"
298
+
299
+ #: google-analyticator.php:835
300
+ msgid "Prefix external links with"
301
+ msgstr "Giden bağlantılar için önek"
302
+
303
+ #: google-analyticator.php:845
304
+ msgid ""
305
+ "Enter a name for the section tracked external links will appear under. This "
306
+ "option has no effect if event tracking is enabled."
307
+ msgstr ""
308
+ "İzlenen giden bağlantıların görüneceği bölümün adını girin. Etkinlik izleme "
309
+ "etkin ise bu seçeneğin bir etkisi yoktur."
310
+
311
+ #: google-analyticator.php:850
312
+ msgid "Prefix download links with"
313
+ msgstr "İndirme linkleri için önek"
314
+
315
+ #: google-analyticator.php:860
316
+ msgid ""
317
+ "Enter a name for the section tracked download links will appear under. This "
318
+ "option has no effect if event tracking is enabled."
319
+ msgstr ""
320
+ "İzlenen indirme linklerinin görüneceği bölümün adını girin. Etkinlik izleme "
321
+ "etkin ise bu seçeneğin bir etkisi yoktur."
322
+
323
+ #: google-analyticator.php:865
324
+ msgid "Google Adsense ID"
325
+ msgstr "Google Adsense ID' niz"
326
+
327
+ #: google-analyticator.php:875
328
+ msgid ""
329
+ "Enter your Google Adsense ID assigned by Google Analytics in this box. This "
330
+ "enables Analytics tracking of Adsense information if your Adsense and "
331
+ "Analytics accounts are linked."
332
+ msgstr ""
333
+ "Google Analytics tarafından verilmiş Google Adsense ID' nizi bu kutuya "
334
+ "girin. Adsense ve Analytics hesaplarınız bağlantılıysa bu seçenek Adsense "
335
+ "bilgilerinizi Analytics üzerinden izlenebilmesini sağlar."
336
+
337
+ #: google-analyticator.php:879
338
+ msgid "Additional Tracking Code"
339
+ msgstr "Ek İzleme Kodu"
340
+
341
+ #: google-analyticator.php:883 google-analyticator.php:901
342
+ msgid "Additional tracking code"
343
+ msgstr "Ek İzleme Kodu"
344
+
345
+ #: google-analyticator.php:886
346
+ msgid "before tracker initialization"
347
+ msgstr "İzleme kodunun önüne ekle"
348
+
349
+ #: google-analyticator.php:896
350
+ msgid ""
351
+ "Enter any additional lines of tracking code that you would like to include "
352
+ "in the Google Analytics tracking script. The code in this section will be "
353
+ "displayed <strong>before</strong> the Google Analytics tracker is "
354
+ "initialized."
355
+ msgstr ""
356
+ "Google Analytics izleme kodundan önce eklemek istediğiniz kodları girin. "
357
+ "Buradaki kodlar Google Analytics izleme kodunuzdan <strong>önce</strong> "
358
+ "eklenecektir."
359
+
360
+ #: google-analyticator.php:904
361
+ msgid "after tracker initialization"
362
+ msgstr "İzleme kodunun sonrasına ekle"
363
+
364
+ #: google-analyticator.php:914
365
+ msgid ""
366
+ "Enter any additional lines of tracking code that you would like to include "
367
+ "in the Google Analytics tracking script. The code in this section will be "
368
+ "displayed <strong>after</strong> the Google Analytics tracker is initialized."
369
+ msgstr ""
370
+ "Google Analytics izleme kodundan sonra eklemek istediğiniz kodları girin. "
371
+ "Buradaki kodlar Google Analytics izleme kodunuzdan <strong>sonra</strong> "
372
+ "eklenecektir."
373
+
374
+ #: google-analyticator.php:918
375
+ msgid "Admin Dashboard Widgets"
376
+ msgstr "Yönetici Başlangıç Paneli Bileşeni"
377
+
378
+ #: google-analyticator.php:921
379
+ msgid ""
380
+ "You have not authenticated with Google - you cannot use dashboard widgets! "
381
+ "Reset the plugin to authenticate.."
382
+ msgstr ""
383
+ "Plugini Google ile yetkilendirmediğiniz için Başlangıç Ekranı widgetlarını "
384
+ "kullanamazsınız. Plugini yetkilendirmek için önce sıfırlamanız gerekiyor."
385
+
386
+ #: google-analyticator.php:927
387
+ msgid "Include widgets"
388
+ msgstr "Widgetları etkinleştir"
389
+
390
+ #: google-analyticator.php:945
391
+ msgid ""
392
+ "Disabling this option will completely remove the Dashboard Summary widget "
393
+ "and the theme Stats widget. Use this option if you would prefer to not see "
394
+ "the widgets."
395
+ msgstr ""
396
+ "Bu seçeneği devre dışı bırakmak giriş ekranındaki istatistik kutucuklarını "
397
+ "devre dışı bırakır. Bu kutucukları görmek istemiyorsanız kullanın."
398
+
399
+ #: google-analyticator.php:950
400
+ msgid "Display Ad"
401
+ msgstr "Reklamı göster"
402
+
403
+ #: google-analyticator.php:969
404
+ msgid "You can disable the ad on the admin dashboard."
405
+ msgstr "Giriş ekranındaki reklamı gizleyebilirsiniz."
406
+
407
+ #: google-analyticator.php:974
408
+ msgid "User roles that can see the dashboard widget"
409
+ msgstr "Giriş ekranındaki araçları görebilecek kullanıcı seviyelerini seçin."
410
+
411
+ #: google-analyticator.php:994
412
+ msgid ""
413
+ "Specifies the user roles that can see the dashboard widget. If a user is not "
414
+ "in one of these role groups, they will not see the dashboard widget."
415
+ msgstr ""
416
+ "Giriş ekranındaki araçları görebilecek kullanıcı seviyelerini seçer. Seçili "
417
+ "gruplarda olmayan kullanıcılar araçları görmez."
418
+
419
+ #: google-analyticator.php:999
420
+ msgid "Save Changes"
421
+ msgstr "Değişiklikleri Kaydet"
422
+
423
+ #: google-analyticator.php:1002
424
+ msgid "Deauthorize &amp; Reset Google Analyticator."
425
+ msgstr ""
426
+ "Google Analyticator eklentisinin yetkisini iptal et ve eklentiyi sıfırla."
427
+
428
+ #: google-analyticator.php:1208
429
+ msgid ""
430
+ "Tracking code is hidden, since the settings specify not to track admins. "
431
+ "Tracking is occurring for non-admins."
432
+ msgstr ""
433
+ "Yöneticiler için istatistik takibi engellendiğinden izleme kodu gizlendi. "
434
+ "Yönetici olmayan kullanıcılar için izleme etkin."
435
+
436
+ #: google-analytics-stats-widget.php:12
437
+ msgid "Displays Stat Info From Google Analytics"
438
+ msgstr "Google Analytics istatistik bilgilerini gösterir"
439
+
440
+ #: google-analytics-stats-widget.php:14
441
+ msgid "Google Analytics Stats"
442
+ msgstr "Google Analytics İstatistikleri"
443
+
444
+ #: google-analytics-stats-widget.php:106
445
+ msgid "Title"
446
+ msgstr "Başlık"
447
+
448
+ #: google-analytics-stats-widget.php:108
449
+ msgid "Days of data to get"
450
+ msgstr "Veri alınacak günler"
451
+
452
+ #: google-analytics-stats-widget.php:110
453
+ msgid "Page background"
454
+ msgstr "Sayfa arkaplanı"
455
+
456
+ #: google-analytics-stats-widget.php:112
457
+ msgid "Widget background"
458
+ msgstr "Widget arkaplanı"
459
+
460
+ #: google-analytics-stats-widget.php:114
461
+ msgid "Inner background"
462
+ msgstr "İç arkaplan"
463
+
464
+ #: google-analytics-stats-widget.php:116
465
+ msgid "Font color"
466
+ msgstr "Yazı tipi rengi"
467
+
468
+ #: google-analytics-stats-widget.php:118
469
+ msgid "Line 1 text"
470
+ msgstr "Birinci satır metni"
471
+
472
+ #: google-analytics-stats-widget.php:120
473
+ msgid "Line 2 text"
474
+ msgstr "İkinci satır metni"
475
+
476
+ #: google-analytics-summary-widget.php:45
477
+ msgid "Google Analytics Summary"
478
+ msgstr "Google Analytics Özeti"
479
+
480
+ #: google-analytics-summary-widget.php:110
481
+ msgid "View Full Stat Report"
482
+ msgstr "Bütün istatistikleri göster"
483
+
484
+ #: google-analytics-summary-widget.php:198
485
+ #: google-analytics-summary-widget.php:447
486
+ #: google-analytics-summary-widget.php:575
487
+ #: google-analytics-summary-widget.php:600
488
+ msgid "Visits"
489
+ msgstr "Ziyaret"
490
+
491
+ #: google-analytics-summary-widget.php:224
492
+ msgid "Past 30 days"
493
+ msgstr "Son 30 gün"
494
+
495
+ #: google-analytics-summary-widget.php:225
496
+ msgid "Past 60 days"
497
+ msgstr "Son 60 gün"
498
+
499
+ #: google-analytics-summary-widget.php:226
500
+ msgid "Yesterday"
501
+ msgstr "Dün"
502
+
503
+ #: google-analytics-summary-widget.php:256
504
+ msgid ""
505
+ "No Analytics account selected. Double check you are authenticated with "
506
+ "Google on Google Analyticator's settings page and make sure an account is "
507
+ "selected."
508
+ msgstr "Analytics hesabı seçilmedi. Google Analyticator"
509
+
510
+ #: google-analytics-summary-widget.php:269
511
+ msgid "Site Usage"
512
+ msgstr "Site Kullanımı"
513
+
514
+ #: google-analytics-summary-widget.php:275
515
+ msgid "Top Pages"
516
+ msgstr "En popüler sayfalar"
517
+
518
+ #: google-analytics-summary-widget.php:284
519
+ msgid "Top Referrers"
520
+ msgstr "Yönlendirme trafiği"
521
+
522
+ #: google-analytics-summary-widget.php:293
523
+ msgid "Top Searches"
524
+ msgstr "Arama kelimeleri"
525
+
526
+ #: google-analytics-summary-widget.php:429
527
+ #, php-format
528
+ msgid "The most visits on a single day was %d. Yesterday there were %d visits."
529
+ msgstr "Bir günde en fazla %d ziyaretçi geldi. Dün %d ziyaretçi vardı."
530
+
531
+ #: google-analytics-summary-widget.php:453
532
+ msgid "Bounce Rate"
533
+ msgstr "Hemen Çıkma Oranı"
534
+
535
+ #: google-analytics-summary-widget.php:457
536
+ msgid "Pageviews"
537
+ msgstr "Sayfa Görüntüleme Sayısı"
538
+
539
+ #: google-analytics-summary-widget.php:463
540
+ msgid "Avg. Time on Site"
541
+ msgstr "Ort. Ziyaret Süresi"
542
+
543
+ #: google-analytics-summary-widget.php:471
544
+ msgid "Pages/Visit"
545
+ msgstr "Sayfa/Ziyaret"
546
+
547
+ #: google-analytics-summary-widget.php:476
548
+ msgid "% New Visits"
549
+ msgstr "Yeni ziyaretçilerin yüzdesi"
550
+
551
+ #: google-analytics-summary-widget.php:495
552
+ #: google-analytics-summary-widget.php:568
553
+ #: google-analytics-summary-widget.php:594
554
+ msgid "There is no data for view."
555
+ msgstr "Gösterilecek veri yok."
556
+
557
+ #: google-analytics-summary-widget.php:541
558
+ msgid "Views"
559
+ msgstr "Görüntüleme"
560
+
561
+ #~ msgid "Enable remarketing"
562
+ #~ msgstr "Yeniden pazarlamayı etkinleştir"
readme.txt CHANGED
@@ -1,17 +1,17 @@
1
- === Google Analyticator ===
2
  Contributors: VideoUserManuals
3
- Tags: stats, statistics, google, analytics, google analytics, tracking, widget
4
  Requires at least: 3.2
5
- Tested up to: 3.8
6
- Stable tag: 6.4.7.3
 
 
7
 
8
- Adds the necessary JavaScript code to enable Google Analytics. Includes widgets for Analytics data display.
9
 
10
  == Description ==
11
 
12
- Google Analyticator is back! Google Analyticator adds the necessary JavaScript code to enable Google Analytics logging on any WordPress blog. This eliminates the need to edit your template code to begin logging. Google Analyticator also includes several widgets for displaying Analytics data in the admin and on your blog.
13
-
14
- For a video explaining the simple installation process, please [visit the new home of Google Analyticator](http://www.videousermanuals.com/google-analyticator/?utm_campaign=analyticator&utm_medium=plugin&utm_source=description).
15
 
16
  = Features =
17
 
@@ -30,17 +30,18 @@ Google Analyticator Has the Following Features:
30
  - Provides complete control over options; disable any feature if needed
31
  - Supports localization - get the settings page in your language of choice
32
  - Ability to hide Google UID dropdown
33
- - Added Polish Translation
34
-
35
- For more information, visit the [Google Analyticator plugin page](http://www.videousermanuals.com/google-analyticator/?utm_campaign=analyticator&utm_medium=plugin&utm_source=description).
36
 
37
- If you have a great idea on how to improve the plugin, we would love to hear from you at the [Google Analyticator Feature Request page](http://www.videousermanuals.com/google-analyticator/feature-request/?utm_campaign=analyticator&utm_medium=plugin&utm_source=description)
38
 
39
  A big thank you from the whole community to [Ronald](http://ronaldheft.com/) for all the hard work he put into this plugin.
40
 
41
- == Installation ==
42
 
43
- Please visit the new home of [Google Analyticator](http://www.videousermanuals.com/google-analyticator/?utm_campaign=analyticator&utm_medium=plugin&utm_source=description) for installation information.
 
 
 
44
 
45
  If you are updating, you will need to Authenticate your site again, so it will work with the new Google API
46
 
@@ -62,6 +63,15 @@ For any support issues, please use the official WordPress support forums.
62
 
63
  == Changelog ==
64
 
 
 
 
 
 
 
 
 
 
65
  = 6.4.7.3 =
66
  * Bug fix: Test data left in place of Domain name / UID dropdown
67
 
1
+ === Google Analyticator ===
2
  Contributors: VideoUserManuals
3
+ Tags: stats, statistics, google, analytics, dashboard, google analytics, tracking, widget, marketing,pageviews,visits
4
  Requires at least: 3.2
5
+ Tested up to: 4.2
6
+ Stable tag: 6.4.8
7
+ License: GPLv2 or later
8
+ License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
10
+ Easily view your Google Analytics and real-time statistics inside WordPress! Makes it super simple to add your tracking code too.
11
 
12
  == Description ==
13
 
14
+ Google Analyticator makes it super easy to view Google Analytics within your WordPress dashboard. This eliminates the need to edit your template code to begin logging. Google Analyticator also includes several widgets for displaying Analytics data in the admin and on your blog.
 
 
15
 
16
  = Features =
17
 
30
  - Provides complete control over options; disable any feature if needed
31
  - Supports localization - get the settings page in your language of choice
32
  - Ability to hide Google UID dropdown
33
+ - Translations - Polish, Turkish, Dutch and Spanish
 
 
34
 
35
+ Check out our other plugin for getting more traffic [here](http://bit.ly/1PhVdpI).
36
 
37
  A big thank you from the whole community to [Ronald](http://ronaldheft.com/) for all the hard work he put into this plugin.
38
 
39
+ We also would like to thank our translators:
40
 
41
+ Polish - Michał Mleczko from http://michalmleczko.waw.pl/
42
+ Turkish - Cansın Çağan Acarer from http://www.35pixel.com/
43
+
44
+ == Installation ==
45
 
46
  If you are updating, you will need to Authenticate your site again, so it will work with the new Google API
47
 
63
 
64
  == Changelog ==
65
 
66
+ = 6.4.8 =
67
+ * Bug fix: anonymizeIP
68
+ * Reduced Memory Usage for dashboard
69
+ * Added Turkish, Spanish and Dutch
70
+ * Check token fix widget authentication
71
+ * Added Remarketing, Demographics and Interests reports for universal
72
+ * Changed Google API Client on setting of default path
73
+ * Fixes bugs
74
+
75
  = 6.4.7.3 =
76
  * Bug fix: Test data left in place of Domain name / UID dropdown
77