Google Analytics for WordPress by MonsterInsights - Version 4.3.4

Version Description

  • Bugfix:

    • Fixed error in a database query as reported by mikeotgaar and applied some best practices for the database queries - props Jrf.
    • Fixed error in a database query.
    • Made check for customcode option more robust - props Rarst.
  • i18n

    • Updated gawp.pot file
    • Added de_DE, el_GR, es_ES, fi, fr_FR, hu_HU & nl_NL
Download this release

Release Info

Developer joostdevalk
Plugin Icon 128x128 Google Analytics for WordPress by MonsterInsights
Version 4.3.4
Comparing to
See all releases

Code changes from version 4.3.3 to 4.3.4

admin/class-admin.php CHANGED
@@ -27,8 +27,8 @@ class GA_Admin extends Yoast_GA_Plugin_Admin {
27
  * Constructur, load all required stuff.
28
  */
29
  function __construct() {
30
- $this->longname = __( 'Google Analytics Configuration', 'gawp' );
31
- $this->shortname = __( 'Google Analytics', 'gawp' );
32
 
33
  $this->upgrade();
34
 
@@ -126,14 +126,14 @@ class GA_Admin extends Yoast_GA_Plugin_Admin {
126
  }).change();
127
  jQuery('#customvarsettings :input').change(function () {
128
  if (jQuery("#customvarsettings :input:checked").size() > 5) {
129
- alert("<?php _e( 'The maximum number of allowed custom variables in Google Analytics is 5, please unselect one of the other custom variables before selecting this one.', 'gawp' ); ?>");
130
  jQuery(this).attr('checked', false);
131
  }
132
  });
133
  jQuery('#uastring').change(function () {
134
  if (jQuery('#switchtomanual').is(':checked')) {
135
  if (!jQuery(this).val().match(/^UA-[\d-]+$/)) {
136
- alert("<?php _e( 'That\'s not a valid UA ID, please make sure it matches the expected pattern of: UA-XXXXXX-X, and that there are no spaces or other characters in the input field.', 'gawp' ); ?>");
137
  jQuery(this).focus();
138
  }
139
  }
@@ -148,8 +148,8 @@ class GA_Admin extends Yoast_GA_Plugin_Admin {
148
  function plugin_help( $contextual_help, $screen_id, $screen ) {
149
  if ( $screen_id == 'settings_page_' . $this->hook ) {
150
 
151
- $contextual_help = '<h2>' . __( 'Having problems?', 'gawp' ) . '</h2>' .
152
- '<p>' . sprintf( __( "If you're having problems with this plugin, please refer to its <a href='%s'>FAQ page</a>.", 'gawp' ), 'http://yoast.com/wordpress/google-analytics/ga-wp-faq/' ) . '</p>';
153
  }
154
  return $contextual_help;
155
  }
@@ -159,10 +159,10 @@ class GA_Admin extends Yoast_GA_Plugin_Admin {
159
 
160
  if ( isset( $_REQUEST['reset'] ) && $_REQUEST['reset'] == "true" && isset( $_REQUEST['plugin'] ) && $_REQUEST['plugin'] == 'google-analytics-for-wordpress' ) {
161
  $options = $this->set_defaults();
162
- $options['msg'] = "<div class=\"updated\"><p>" . __( 'Google Analytics settings reset.', 'gawp' ) . "</p></div>\n";
163
  } elseif ( isset( $_POST['submit'] ) && isset( $_POST['plugin'] ) && $_POST['plugin'] == 'google-analytics-for-wordpress' ) {
164
 
165
- if ( !current_user_can( 'manage_options' ) ) wp_die( __( 'You cannot edit the Google Analytics for WordPress options.', 'gawp' ) );
166
  check_admin_referer( 'analyticspp-config' );
167
 
168
  foreach ( array( 'uastring', 'dlextensions', 'domainorurl', 'position', 'domain', 'customcode', 'ga_token', 'extraseurl', 'gajsurl', 'gfsubmiteventpv', 'trackprefix', 'ignore_userlevel', 'internallink', 'internallinklabel', 'primarycrossdomain', 'othercrossdomains' ) as $option_name ) {
@@ -215,7 +215,7 @@ class GA_Admin extends Yoast_GA_Plugin_Admin {
215
  }
216
 
217
  function save_button() {
218
- return '<div class="alignright"><input type="submit" class="button-primary" name="submit" value="' . __( 'Update Google Analytics Settings &raquo;', 'gawp' ) . '" /></div><br class="clear"/>';
219
  }
220
 
221
  function upgrade() {
@@ -251,7 +251,7 @@ class GA_Admin extends Yoast_GA_Plugin_Admin {
251
  class="icon32"><br/></div>
252
  </a>
253
 
254
- <h2><?php _e( "Google Analytics for WordPress Configuration", 'gawp' ) ?></h2>
255
 
256
  <div class="postbox-container" style="width:60%;">
257
  <div class="metabox-holder">
@@ -263,7 +263,7 @@ class GA_Admin extends Yoast_GA_Plugin_Admin {
263
 
264
  if ( empty( $options['uastring'] ) && empty( $options['ga_token'] ) ) {
265
  $query = $this->plugin_options_url() . '&reauth=true';
266
- $line = __( 'Please authenticate with Google Analytics to retrieve your tracking code:', 'gawp' ) . '<br/><br/> <a class="button-primary" href="' . $query . '">' . __( 'Click here to authenticate with Google', 'gawp' ) . '</a>';
267
  } else if ( isset( $options['ga_token'] ) && !empty( $options['ga_token'] ) ) {
268
  $token = $options['ga_token'];
269
 
@@ -349,7 +349,7 @@ class GA_Admin extends Yoast_GA_Plugin_Admin {
349
  }
350
  asort( $ga_accounts );
351
 
352
- $select = '<select class="chzn-select" name="uastring" data-placeholder="' . __( 'Please select the correct Analytics Account', 'gawp' ) . '" id="ga_account">';
353
  $select .= "\t<option></option>\n";
354
  foreach ( $ga_accounts as $ua => $title ) {
355
  $sel = selected( $ua, $currentua, false );
@@ -358,9 +358,9 @@ class GA_Admin extends Yoast_GA_Plugin_Admin {
358
  $select .= '</select>';
359
 
360
  $line = '<input type="hidden" name="ga_token" value="' . $token . '"/>';
361
- $line .= __( 'Please select the correct Analytics account to track:', 'gawp' ) . '<br/>';
362
  $line .= '<table class="form_table">';
363
- $line .= '<tr><th>' . __( 'Profile', 'gawp' ) . ':</th><td>' . $select . '</td></tr>';
364
  $line .= '</table>';
365
 
366
  $try = 1;
@@ -372,321 +372,321 @@ class GA_Admin extends Yoast_GA_Plugin_Admin {
372
  window.location="' . $this->plugin_options_url() . '&switchua=1&token=' . $token . '&try=' . $try . '";
373
  </script>';
374
  }
375
- $line .= __( 'Please note that if you have several profiles of the same website, it doesn\'t matter which profile you select, and in fact another profile might show as selected later. You can check whether they\'re profiles for the same site by checking if they have the same UA code. If that\'s true, tracking will be correct.', 'gawp' );
376
  $line .= '<br/><br/>';
377
- $line .= __( 'Refresh this listing or switch to another account: ', 'gawp' );
378
  } else {
379
- $line = __( 'Unfortunately, an error occurred while connecting to Google, please try again:', 'gawp' );
380
  }
381
  } else {
382
- $line = __( 'Unfortunately, an error occurred while connecting to Google, please try again:', 'gawp' );
383
  }
384
 
385
  $query = $this->plugin_options_url() . '&reauth=true';
386
- $line .= '<a class="button" href="' . $query . '">' . __( 'Re-authenticate with Google', 'gawp' ) . '</a>';
387
  } else {
388
- $line = '<input id="uastring" name="uastring" type="text" size="20" maxlength="40" value="' . $options['uastring'] . '"/><br/><a href="' . $this->plugin_options_url() . '&amp;switchua=1">' . __( 'Select another Analytics Profile &raquo;', 'gawp' ) . '</a>';
389
  }
390
- $line = '<div id="uastring_automatic">' . $line . '</div><div style="display:none;" id="uastring_manual">' . __( 'Manually enter your UA code: ', 'gawp' ) . '<input id="uastring" name="uastring_man" type="text" size="20" maxlength="40" value="' . $options['uastring'] . '"/></div>';
391
  $rows = array();
392
  $content = '';
393
  $rows[] = array(
394
  'id' => 'uastring',
395
- 'label' => __( 'Analytics Profile', 'gawp' ),
396
- 'desc' => '<input type="checkbox" name="manual_uastring" ' . checked( $options['manual_uastring'], true, false ) . ' id="switchtomanual"/> <label for="switchtomanual">' . __( 'Manually enter your UA code', 'gawp' ) . '</label>',
397
  'content' => $line
398
  );
399
- $temp_content = $this->select( 'position', array( 'header' => __( 'In the header (default)', 'gawp' ), 'manual' => __( 'Insert manually', 'gawp' ) ) );
400
  if ( $options['theme_updated'] && $options['position'] == 'manual' ) {
401
  $temp_content .= '<input type="hidden" name="theme_updated" value="off"/>';
402
- echo '<div id="message" class="updated" style="background-color:lightgreen;border-color:green;"><p><strong>' . __( 'Notice', 'gawp' ), ':</strong> ' . __( 'You switched your theme, please make sure your Google Analytics tracking is still ok. Save your settings to make sure Google Analytics gets loaded properly.', 'gawp' ) . '</p></div>';
403
  remove_action( 'admin_footer', array( &$this, 'theme_switch_warning' ) );
404
  }
405
  $desc = '<div id="position_header">' . sprintf( __( 'The header is by far the best spot to place the tracking code. If you\'d rather place the code manually, switch to manual placement. For more info %sread this page%s.' ), '<a href="http://yoast.com/wordpress/google-analytics/manual-placement/">', '</a>' ) . '</div>';
406
- $desc .= '<div id="position_manual">' . sprintf( __( '%sFollow the instructions here%s to choose the location for your tracking code manually.', 'gawp' ), '<a href="http://yoast.com/wordpress/google-analytics/manual-placement/">', '</a>' ) . '</div>';
407
 
408
  $rows[] = array(
409
  'id' => 'position',
410
- 'label' => __( 'Where should the tracking code be placed', 'gawp' ),
411
  'desc' => $desc,
412
  'content' => $temp_content,
413
  );
414
  $rows[] = array(
415
  'id' => 'trackoutbound',
416
- 'label' => __( 'Track outbound clicks &amp; downloads', 'gawp' ),
417
- 'desc' => __( 'Clicks &amp; downloads will be tracked as events, you can find these under Content &raquo; Event Tracking in your Google Analytics reports.', 'gawp' ),
418
  'content' => $this->checkbox( 'trackoutbound' ),
419
  );
420
  $rows[] = array(
421
  'id' => 'advancedsettings',
422
- 'label' => __( 'Show advanced settings', 'gawp' ),
423
- 'desc' => __( 'Only adviced for advanced users who know their way around Google Analytics', 'gawp' ),
424
  'content' => $this->checkbox( 'advancedsettings' ),
425
  );
426
  $rows[] = array(
427
  'id' => 'yoast_tracking',
428
- 'label' => __( 'Allow tracking of anonymous data', 'gawp' ),
429
- 'desc' => __( 'By allowing us to track anonymous data we can better help you, because we know with which WordPress configurations, themes and plugins we should test. No personal data will be submitted.', 'gawp' ),
430
  'content' => $this->checkbox( 'yoast_tracking' ),
431
  );
432
- $this->postbox( 'gasettings', __( 'Google Analytics Settings', 'gawp' ), $this->form_table( $rows ) . $this->save_button() );
433
 
434
  $rows = array();
435
- $pre_content = '<p>' . __( 'Google Analytics allows you to save up to 5 custom variables on each page, and this plugin helps you make the most use of these! Check which custom variables you\'d like the plugin to save for you below. Please note that these will only be saved when they are actually available.', 'gawp' ) . '</p>';
436
- $pre_content .= '<p>' . __( 'If you want to start using these custom variables, go to Visitors &raquo; Custom Variables in your Analytics reports.', 'gawp' ) . '</p>';
437
  $rows[] = array(
438
  'id' => 'cv_loggedin',
439
- 'label' => __( 'Logged in Users', 'gawp' ),
440
- 'desc' => __( 'Allows you to easily remove logged in users from your reports, or to segment by different user roles. The users primary role will be logged.', 'gawp' ),
441
  'content' => $this->checkbox( 'cv_loggedin' ),
442
  );
443
  $rows[] = array(
444
  'id' => 'cv_post_type',
445
- 'label' => __( 'Post type', 'gawp' ),
446
- 'desc' => __( 'Allows you to see pageviews per post type, especially useful if you use multiple custom post types.', 'gawp' ),
447
  'content' => $this->checkbox( 'cv_post_type' ),
448
  );
449
  $rows[] = array(
450
  'id' => 'cv_authorname',
451
- 'label' => __( 'Author Name', 'gawp' ),
452
- 'desc' => __( 'Allows you to see pageviews per author.', 'gawp' ),
453
  'content' => $this->checkbox( 'cv_authorname' ),
454
  );
455
  $rows[] = array(
456
  'id' => 'cv_tags',
457
- 'label' => __( 'Tags', 'gawp' ),
458
- 'desc' => __( 'Allows you to see pageviews per tags using advanced segments.', 'gawp' ),
459
  'content' => $this->checkbox( 'cv_tags' ),
460
  );
461
  $rows[] = array(
462
  'id' => 'cv_year',
463
- 'label' => __( 'Publication year', 'gawp' ),
464
- 'desc' => __( 'Allows you to see pageviews per year of publication, showing you if your old posts still get traffic.', 'gawp' ),
465
  'content' => $this->checkbox( 'cv_year' ),
466
  );
467
  $rows[] = array(
468
  'id' => 'cv_category',
469
- 'label' => __( 'Single Category', 'gawp' ),
470
- 'desc' => __( 'Allows you to see pageviews per category, works best when each post is in only one category.', 'gawp' ),
471
  'content' => $this->checkbox( 'cv_category' ),
472
  );
473
  $rows[] = array(
474
  'id' => 'cv_all_categories',
475
- 'label' => __( 'All Categories', 'gawp' ),
476
- 'desc' => __( 'Allows you to see pageviews per category using advanced segments, should be used when you use multiple categories per post.', 'gawp' ),
477
  'content' => $this->checkbox( 'cv_all_categories' ),
478
  );
479
 
480
  $modules['Custom Variables'] = 'customvarsettings';
481
- $this->postbox( 'customvarsettings', __( 'Custom Variables Settings', 'gawp' ), $pre_content . $this->form_table( $rows ) . $this->save_button() );
482
 
483
  $rows = array();
484
  $rows[] = array(
485
  'id' => 'ignore_userlevel',
486
- 'label' => __( 'Ignore users', 'gawp' ),
487
- 'desc' => __( 'Users of the role you select and higher will be ignored, so if you select Editor, all Editors and Administrators will be ignored.', 'gawp' ),
488
  'content' => $this->select( 'ignore_userlevel', array(
489
- '11' => __( 'Ignore no-one', 'gawp' ),
490
- '8' => __( 'Administrator', 'gawp' ),
491
- '5' => __( 'Editor', 'gawp' ),
492
- '2' => __( 'Author', 'gawp' ),
493
- '1' => __( 'Contributor', 'gawp' ),
494
- '0' => __( 'Subscriber (ignores all logged in users)', 'gawp' ),
495
  ) ),
496
  );
497
  $rows[] = array(
498
  'id' => 'outboundpageview',
499
- 'label' => __( 'Track outbound clicks as pageviews', 'gawp' ),
500
- 'desc' => __( 'You do not need to enable this to enable outbound click tracking, this changes the default behavior of tracking clicks as events to tracking them as pageviews. This is therefore not recommended, as this would skew your statistics, but <em>is</em> sometimes necessary when you need to set outbound clicks as goals.', 'gawp' ),
501
  'content' => $this->checkbox( 'outboundpageview' ),
502
  );
503
  $rows[] = array(
504
  'id' => 'downloadspageview',
505
- 'label' => __( 'Track downloads as pageviews', 'gawp' ),
506
- 'desc' => __( 'Not recommended, as this would skew your statistics, but it does make it possible to track downloads as goals.', 'gawp' ),
507
  'content' => $this->checkbox( 'downloadspageview' ),
508
  );
509
  $rows[] = array(
510
  'id' => 'dlextensions',
511
- 'label' => __( 'Extensions of files to track as downloads', 'gawp' ),
512
  'content' => $this->textinput( 'dlextensions' ),
513
  );
514
  if ( $options['outboundpageview'] ) {
515
  $rows[] = array(
516
  'id' => 'trackprefix',
517
- 'label' => __( 'Prefix to use in Analytics before the tracked pageviews', 'gawp' ),
518
- 'desc' => __( 'This prefix is used before all pageviews, they are then segmented automatically after that. If nothing is entered here, <code>/yoast-ga/</code> is used.', 'gawp' ),
519
  'content' => $this->textinput( 'trackprefix' ),
520
  );
521
  }
522
  $rows[] = array(
523
  'id' => 'domainorurl',
524
- 'label' => __( 'Track full URL of outbound clicks or just the domain', 'gawp' ),
525
  'content' => $this->select( 'domainorurl', array(
526
- 'domain' => __( 'Just the domain', 'gawp' ),
527
- 'url' => __( 'Track the complete URL', 'gawp' ),
528
  )
529
  ),
530
  );
531
  $rows[] = array(
532
  'id' => 'domain',
533
- 'label' => __( 'Subdomain Tracking', 'gawp' ),
534
- 'desc' => sprintf( __( 'This allows you to set the domain that\'s set by %s<code>setDomainName</code>%s for tracking subdomains, if empty this will not be set.', 'gawp' ), '<a href="http://code.google.com/apis/analytics/docs/gaJS/gaJSApiDomainDirectory.html#_gat.GA_Tracker_._setDomainName">', '</a>' ),
535
  'content' => $this->textinput( 'domain' ),
536
  );
537
  $rows[] = array(
538
  'id' => 'trackcrossdomain',
539
- 'label' => __( 'Enable Cross Domain Tracking', 'gawp' ),
540
- 'desc' => sprintf( __( 'This allows you to enable %sCross-Domain Tracking%s for this site. When endabled <code>_setAllowLinker:</code> will be enabled if it is not already.', 'gawp' ), '<a href="http://code.google.com/apis/analytics/docs/tracking/gaTrackingSite.html">', '</a>' ),
541
  'content' => $this->checkbox( 'trackcrossdomain' ),
542
  );
543
  $rows[] = array(
544
  'id' => 'primarycrossdomain',
545
- 'label' => __( 'Cross-Domain Tracking, Primary Domain', 'gawp' ),
546
- 'desc' => sprintf( __( 'Set the primary domain used in %s<code>setDomainName</code>%s for cross domain tracking (eg. <code>example-petstore.com</code> ), if empty this will default to your configured Home URL.', 'gawp' ), '<a href="http://code.google.com/apis/analytics/docs/gaJS/gaJSApiDomainDirectory.html#_gat.GA_Tracker_._setDomainName">', '</a>' ),
547
  'content' => $this->textinput( 'primarycrossdomain' ),
548
  );
549
  $rows[] = array(
550
  'id' => 'othercrossdomains',
551
- 'label' => __( 'Cross-Domain Tracking, Other Domains', 'gawp' ),
552
- 'desc' => __( 'All links to these domains will have the <a href="http://code.google.com/apis/analytics/docs/tracking/gaTrackingSite.html#multipleDomains"><code>_link</code></a> code automatically attached. Separate domains/sub-domains with commas (eg. <code>dogs.example-petstore.com, cats.example-petstore.com</code>)', 'gawp' ),
553
  'content' => $this->textinput( 'othercrossdomains' ),
554
  );
555
  $rows[] = array(
556
  'id' => 'customcode',
557
- 'label' => __( 'Custom Code', 'gawp' ),
558
- 'desc' => __( 'Not for the average user: this allows you to add a line of code, to be added before the <code>trackPageview</code> call.', 'gawp' ),
559
  'content' => $this->textinput( 'customcode' ),
560
  );
561
  $rows[] = array(
562
  'id' => 'trackadsense',
563
- 'label' => __( 'Track AdSense', 'gawp' ),
564
- 'desc' => __( 'This requires integration of your Analytics and AdSense account, for help, <a href="http://google.com/support/analytics/bin/answer.py?answer=92625">look here</a>.', 'gawp' ),
565
  'content' => $this->checkbox( 'trackadsense' ),
566
  );
567
  $rows[] = array(
568
  'id' => 'gajslocalhosting',
569
- 'label' => __( 'Host ga.js locally', 'gawp' ),
570
  'content' => $this->checkbox( 'gajslocalhosting' ) . '<div id="localhostingbox">
571
- ' . __( 'You have to provide a URL to your ga.js file:', 'gawp' ) . '
572
  <input type="text" name="gajsurl" size="30" value="' . $options['gajsurl'] . '"/>
573
  </div>',
574
- 'desc' => __( 'For some reasons you might want to use a locally hosted ga.js file, or another ga.js file, check the box and then please enter the full URL including http here.', 'gawp' )
575
  );
576
  $rows[] = array(
577
  'id' => 'extrase',
578
- 'label' => __( 'Track extra Search Engines', 'gawp' ),
579
  'content' => $this->checkbox( 'extrase' ) . '<div id="extrasebox">
580
- ' . __( 'You can provide a custom URL to the extra search engines file if you want:', 'gawp' ) . '
581
  <input type="text" name="extraseurl" size="30" value="' . $options['extraseurl'] . '"/>
582
  </div>',
583
  );
584
  $rows[] = array(
585
  'id' => 'rsslinktagging',
586
- 'label' => __( 'Tag links in RSS feed with campaign variables', 'gawp' ),
587
- 'desc' => __( 'Do not use this feature if you use FeedBurner, as FeedBurner can do this automatically, and better than this plugin can. Check <a href="http://www.google.com/support/feedburner/bin/answer.py?hl=en&amp;answer=165769">this help page</a> for info on how to enable this feature in FeedBurner.', 'gawp' ),
588
  'content' => $this->checkbox( 'rsslinktagging' ),
589
  );
590
  $rows[] = array(
591
  'id' => 'trackregistration',
592
- 'label' => __( 'Add tracking to the login and registration forms', 'gawp' ),
593
  'content' => $this->checkbox( 'trackregistration' ),
594
  );
595
  $rows[] = array(
596
  'id' => 'trackcommentform',
597
- 'label' => __( 'Add tracking to the comment forms', 'gawp' ),
598
  'content' => $this->checkbox( 'trackcommentform' ),
599
  );
600
  $rows[] = array(
601
  'id' => 'allowanchor',
602
- 'label' => __( 'Use # instead of ? for Campaign tracking', 'gawp' ),
603
- 'desc' => __( 'This adds a <code><a href="http://code.google.com/apis/analytics/docs/gaJSApiCampaignTracking.html#_gat.GA_Tracker_._setAllowAnchor">_setAllowAnchor</a></code> call to your tracking code, and makes RSS link tagging use a # as well.', 'gawp' ),
604
  'content' => $this->checkbox( 'allowanchor' ),
605
  );
606
  $rows[] = array(
607
  'id' => 'allowlinker',
608
- 'label' => __( 'Add <code>_setAllowLinker</code>', 'gawp' ),
609
- 'desc' => __( 'This adds a <code><a href="http://code.google.com/apis/analytics/docs/gaJS/gaJSApiDomainDirectory.html#_gat.GA_Tracker_._setAllowLinker">_setAllowLinker</a></code> call to your tracking code, allowing you to use <code>_link</code> and related functions.', 'gawp' ),
610
  'content' => $this->checkbox( 'allowlinker' ),
611
  );
612
  $rows[] = array(
613
  'id' => 'allowhash',
614
- 'label' => __( 'Set <code>_setAllowHash</code> to false', 'gawp' ),
615
- 'desc' => __( 'This sets <code><a href="http://code.google.com/apis/analytics/docs/gaJS/gaJSApiDomainDirectory.html#_gat.GA_Tracker_._setAllowHash">_setAllowHash</a></code> to false, allowing you to track subdomains etc.', 'gawp' ),
616
  'content' => $this->checkbox( 'allowhash' ),
617
  );
618
  $rows[] = array(
619
  'id' => 'anonymizeip',
620
- 'label' => __( 'Anonymize IP\'s', 'gawp' ),
621
- 'desc' => __( 'This adds <code><a href="http://code.google.com/apis/analytics/docs/gaJS/gaJSApi_gat.html#_gat._anonymizeIp">_anonymizeIp</a></code>, telling Google Analytics to anonymize the information sent by the tracker objects by removing the last octet of the IP address prior to its storage.', 'gawp' ),
622
  'content' => $this->checkbox( 'anonymizeip' ),
623
  );
624
  $modules['Advanced Settings'] = 'advancedgasettings';
625
- $this->postbox( 'advancedgasettings', __( 'Advanced Settings', 'gawp' ), $this->form_table( $rows ) . $this->save_button() );
626
 
627
  $rows = array();
628
  $rows[] = array(
629
  'id' => 'internallink',
630
- 'label' => __( 'Internal links to track as outbound', 'gawp' ),
631
- 'desc' => __( 'If you want to track all internal links that begin with <code>/out/</code>, enter <code>/out/</code> in the box above. If you have multiple prefixes you can separate them with comma\'s: <code>/out/,/recommends/</code>', 'gawp' ),
632
  'content' => $this->textinput( 'internallink' ),
633
  );
634
  $rows[] = array(
635
  'id' => 'internallinklabel',
636
- 'label' => __( 'Label to use', 'gawp' ),
637
- 'desc' => __( 'The label to use for these links, this will be added to where the click came from, so if the label is "aff", the label for a click from the content of an article becomes "outbound-article-aff".', 'gawp' ),
638
  'content' => $this->textinput( 'internallinklabel' ),
639
  );
640
  $modules['Internal Link Tracking'] = 'internallinktracking';
641
- $this->postbox( 'internallinktracking', __( 'Internal Links to Track as Outbound', 'gawp' ), $this->form_table( $rows ) . $this->save_button() );
642
 
643
  if ( defined( 'WPSC_VERSION' ) ) {
644
- $pre_content = __( 'The WordPress e-Commerce plugin has been detected. This plugin can automatically add transaction tracking for you. To do that, <a href="http://yoast.com/wordpress/google-analytics/enable-ecommerce/">enable e-commerce for your reports in Google Analytics</a> and then check the box below.', 'gawp' );
645
  $rows = array();
646
  $rows[] = array(
647
  'id' => 'wpec_tracking',
648
- 'label' => __( 'Enable transaction tracking', 'gawp' ),
649
  'content' => $this->checkbox( 'wpec_tracking' ),
650
  );
651
- $this->postbox( 'wpecommerce', __( 'WordPress e-Commerce Settings', 'gawp' ), $pre_content . $this->form_table( $rows ) . $this->save_button() );
652
  $modules['WordPress e-Commerce'] = 'wpecommerce';
653
  }
654
 
655
  global $Shopp;
656
  if ( isset( $Shopp ) ) {
657
- $pre_content = __( 'The Shopp e-Commerce plugin has been detected. This plugin can automatically add transaction tracking for you. To do that, <a href="http://www.google.com/support/googleanalytics/bin/answer.py?hl=en&amp;answer=55528">enable e-commerce for your reports in Google Analytics</a> and then check the box below.', 'gawp' );
658
  $rows = array();
659
  $rows[] = array(
660
  'id' => 'shopp_tracking',
661
- 'label' => __( 'Enable transaction tracking', 'gawp' ),
662
  'content' => $this->checkbox( 'shopp_tracking' ),
663
  );
664
- $this->postbox( 'shoppecommerce', __( 'Shopp e-Commerce Settings', 'gawp' ), $pre_content . $this->form_table( $rows ) . $this->save_button() );
665
  $modules['Shopp'] = 'shoppecommerce';
666
  }
667
- $pre_content = '<p>' . sprintf( __( 'If you want to confirm that tracking on your blog is working as it should, enable this option and check the console in %sFirebug%s (for Firefox), %sFirebug Lite%s (for other browsers) or Chrome &amp; Safari\'s Web Inspector. Be absolutely sure to disable debugging afterwards, as it is slower than normal tracking.', 'gawp' ), '<a href="http://getfirebug.com/">', '</a>', '<a href="http://getfirebug.com/firebuglite">', '</a>' ) . '</p>';
668
- $pre_content .= '<p><strong>' . __( 'Note', 'gawp' ) . '</strong>: ' . __( 'the debugging and firebug scripts are only loaded for admins.', 'gawp' ) . '</p>';
669
  $rows = array();
670
  $rows[] = array(
671
  'id' => 'debug',
672
- 'label' => __( 'Enable debug mode', 'gawp' ),
673
  'content' => $this->checkbox( 'debug' ),
674
  );
675
  $rows[] = array(
676
  'id' => 'firebuglite',
677
- 'label' => __( 'Enable Firebug Lite', 'gawp' ),
678
  'content' => $this->checkbox( 'firebuglite' ),
679
  );
680
- $this->postbox( 'debugmode', __( 'Debug Mode', 'gawp' ), $pre_content . $this->form_table( $rows ) . $this->save_button() );
681
  $modules['Debug Mode'] = 'debugmode';
682
  ?>
683
  </form>
684
  <form action="<?php echo $this->plugin_options_url(); ?>" method="post"
685
- onsubmit="javascript:return(confirm('<?php _e( 'Do you really want to reset all settings?', 'gawp' ); ?>'));">
686
  <input type="hidden" name="reset" value="true"/>
687
  <input type="hidden" name="plugin" value="google-analytics-for-wordpress"/>
688
 
689
- <div class="submit"><input type="submit" value="<?php _e( 'Reset All Settings &raquo;', 'gawp' ); ?>'"/></div>
690
  </form>
691
  </div>
692
  </div>
@@ -695,10 +695,10 @@ class GA_Admin extends Yoast_GA_Plugin_Admin {
695
  <div class="metabox-holder">
696
  <div class="meta-box-sortables">
697
  <?php
698
- $this->postbox( 'spread', '<strong>' . __( 'Help Spread the Word!', 'gawp' ) . '</strong>',
699
  '<ul>'
700
- . '<li><a href="http://wordpress.org/extend/plugins/google-analytics-for-wordpress/">' . __( 'Rate the plugin 5★ on WordPress.org', 'gawp' ) . '</a></li>'
701
- . '<li><a href="http://wordpress.org/tags/google-analytics-for-wordpress">' . __( 'Help out other users in the forums', 'gawp' ) . '</a></li>'
702
  . '<li>' . sprintf( __( 'Blog about it & link to the %1$splugin page%2$s' ), '<a href="http://yoast.com/wordpress/google-analytics/#utm_source=wpadmin&utm_medium=sidebanner&utm_term=link&utm_campaign=wpgaplugin">', '</a>' ) . '</li></ul>' );
703
  ?>
704
  <a target="_blank"
@@ -763,7 +763,7 @@ class GA_Admin extends Yoast_GA_Plugin_Admin {
763
  function warning() {
764
  $options = get_option( $this->optionname );
765
  if ( !isset( $options['uastring'] ) || empty( $options['uastring'] ) ) {
766
- echo "<div id='message' class='error'><p><strong>" . __( "Google Analytics is not active.", 'gawp' ) . "</strong> " . sprintf( __( "You must %sselect which Analytics Profile to track%s before it can work.", 'gawp' ), "<a href='" . $this->plugin_options_url() . "'>", "</a>" ) . "</p></div>";
767
  }
768
  } // end warning()
769
 
27
  * Constructur, load all required stuff.
28
  */
29
  function __construct() {
30
+ $this->longname = __( 'Google Analytics Configuration', 'google-analytics-for-wordpress' );
31
+ $this->shortname = __( 'Google Analytics', 'google-analytics-for-wordpress' );
32
 
33
  $this->upgrade();
34
 
126
  }).change();
127
  jQuery('#customvarsettings :input').change(function () {
128
  if (jQuery("#customvarsettings :input:checked").size() > 5) {
129
+ alert("<?php _e( 'The maximum number of allowed custom variables in Google Analytics is 5, please unselect one of the other custom variables before selecting this one.', 'google-analytics-for-wordpress' ); ?>");
130
  jQuery(this).attr('checked', false);
131
  }
132
  });
133
  jQuery('#uastring').change(function () {
134
  if (jQuery('#switchtomanual').is(':checked')) {
135
  if (!jQuery(this).val().match(/^UA-[\d-]+$/)) {
136
+ alert("<?php _e( 'That\'s not a valid UA ID, please make sure it matches the expected pattern of: UA-XXXXXX-X, and that there are no spaces or other characters in the input field.', 'google-analytics-for-wordpress' ); ?>");
137
  jQuery(this).focus();
138
  }
139
  }
148
  function plugin_help( $contextual_help, $screen_id, $screen ) {
149
  if ( $screen_id == 'settings_page_' . $this->hook ) {
150
 
151
+ $contextual_help = '<h2>' . __( 'Having problems?', 'google-analytics-for-wordpress' ) . '</h2>' .
152
+ '<p>' . sprintf( __( "If you're having problems with this plugin, please refer to its <a href='%s'>FAQ page</a>.", 'google-analytics-for-wordpress' ), 'http://yoast.com/wordpress/google-analytics/ga-wp-faq/' ) . '</p>';
153
  }
154
  return $contextual_help;
155
  }
159
 
160
  if ( isset( $_REQUEST['reset'] ) && $_REQUEST['reset'] == "true" && isset( $_REQUEST['plugin'] ) && $_REQUEST['plugin'] == 'google-analytics-for-wordpress' ) {
161
  $options = $this->set_defaults();
162
+ $options['msg'] = "<div class=\"updated\"><p>" . __( 'Google Analytics settings reset.', 'google-analytics-for-wordpress' ) . "</p></div>\n";
163
  } elseif ( isset( $_POST['submit'] ) && isset( $_POST['plugin'] ) && $_POST['plugin'] == 'google-analytics-for-wordpress' ) {
164
 
165
+ if ( !current_user_can( 'manage_options' ) ) wp_die( __( 'You cannot edit the Google Analytics for WordPress options.', 'google-analytics-for-wordpress' ) );
166
  check_admin_referer( 'analyticspp-config' );
167
 
168
  foreach ( array( 'uastring', 'dlextensions', 'domainorurl', 'position', 'domain', 'customcode', 'ga_token', 'extraseurl', 'gajsurl', 'gfsubmiteventpv', 'trackprefix', 'ignore_userlevel', 'internallink', 'internallinklabel', 'primarycrossdomain', 'othercrossdomains' ) as $option_name ) {
215
  }
216
 
217
  function save_button() {
218
+ return '<div class="alignright"><input type="submit" class="button-primary" name="submit" value="' . __( 'Update Google Analytics Settings &raquo;', 'google-analytics-for-wordpress' ) . '" /></div><br class="clear"/>';
219
  }
220
 
221
  function upgrade() {
251
  class="icon32"><br/></div>
252
  </a>
253
 
254
+ <h2><?php _e( "Google Analytics for WordPress Configuration", 'google-analytics-for-wordpress' ) ?></h2>
255
 
256
  <div class="postbox-container" style="width:60%;">
257
  <div class="metabox-holder">
263
 
264
  if ( empty( $options['uastring'] ) && empty( $options['ga_token'] ) ) {
265
  $query = $this->plugin_options_url() . '&reauth=true';
266
+ $line = __( 'Please authenticate with Google Analytics to retrieve your tracking code:', 'google-analytics-for-wordpress' ) . '<br/><br/> <a class="button-primary" href="' . $query . '">' . __( 'Click here to authenticate with Google', 'google-analytics-for-wordpress' ) . '</a>';
267
  } else if ( isset( $options['ga_token'] ) && !empty( $options['ga_token'] ) ) {
268
  $token = $options['ga_token'];
269
 
349
  }
350
  asort( $ga_accounts );
351
 
352
+ $select = '<select class="chzn-select" name="uastring" data-placeholder="' . __( 'Please select the correct Analytics Account', 'google-analytics-for-wordpress' ) . '" id="ga_account">';
353
  $select .= "\t<option></option>\n";
354
  foreach ( $ga_accounts as $ua => $title ) {
355
  $sel = selected( $ua, $currentua, false );
358
  $select .= '</select>';
359
 
360
  $line = '<input type="hidden" name="ga_token" value="' . $token . '"/>';
361
+ $line .= __( 'Please select the correct Analytics account to track:', 'google-analytics-for-wordpress' ) . '<br/>';
362
  $line .= '<table class="form_table">';
363
+ $line .= '<tr><th>' . __( 'Profile', 'google-analytics-for-wordpress' ) . ':</th><td>' . $select . '</td></tr>';
364
  $line .= '</table>';
365
 
366
  $try = 1;
372
  window.location="' . $this->plugin_options_url() . '&switchua=1&token=' . $token . '&try=' . $try . '";
373
  </script>';
374
  }
375
+ $line .= __( 'Please note that if you have several profiles of the same website, it doesn\'t matter which profile you select, and in fact another profile might show as selected later. You can check whether they\'re profiles for the same site by checking if they have the same UA code. If that\'s true, tracking will be correct.', 'google-analytics-for-wordpress' );
376
  $line .= '<br/><br/>';
377
+ $line .= __( 'Refresh this listing or switch to another account: ', 'google-analytics-for-wordpress' );
378
  } else {
379
+ $line = __( 'Unfortunately, an error occurred while connecting to Google, please try again:', 'google-analytics-for-wordpress' );
380
  }
381
  } else {
382
+ $line = __( 'Unfortunately, an error occurred while connecting to Google, please try again:', 'google-analytics-for-wordpress' );
383
  }
384
 
385
  $query = $this->plugin_options_url() . '&reauth=true';
386
+ $line .= '<a class="button" href="' . $query . '">' . __( 'Re-authenticate with Google', 'google-analytics-for-wordpress' ) . '</a>';
387
  } else {
388
+ $line = '<input id="uastring" name="uastring" type="text" size="20" maxlength="40" value="' . $options['uastring'] . '"/><br/><a href="' . $this->plugin_options_url() . '&amp;switchua=1">' . __( 'Select another Analytics Profile &raquo;', 'google-analytics-for-wordpress' ) . '</a>';
389
  }
390
+ $line = '<div id="uastring_automatic">' . $line . '</div><div style="display:none;" id="uastring_manual">' . __( 'Manually enter your UA code: ', 'google-analytics-for-wordpress' ) . '<input id="uastring" name="uastring_man" type="text" size="20" maxlength="40" value="' . $options['uastring'] . '"/></div>';
391
  $rows = array();
392
  $content = '';
393
  $rows[] = array(
394
  'id' => 'uastring',
395
+ 'label' => __( 'Analytics Profile', 'google-analytics-for-wordpress' ),
396
+ 'desc' => '<input type="checkbox" name="manual_uastring" ' . checked( $options['manual_uastring'], true, false ) . ' id="switchtomanual"/> <label for="switchtomanual">' . __( 'Manually enter your UA code', 'google-analytics-for-wordpress' ) . '</label>',
397
  'content' => $line
398
  );
399
+ $temp_content = $this->select( 'position', array( 'header' => __( 'In the header (default)', 'google-analytics-for-wordpress' ), 'manual' => __( 'Insert manually', 'google-analytics-for-wordpress' ) ) );
400
  if ( $options['theme_updated'] && $options['position'] == 'manual' ) {
401
  $temp_content .= '<input type="hidden" name="theme_updated" value="off"/>';
402
+ echo '<div id="message" class="updated" style="background-color:lightgreen;border-color:green;"><p><strong>' . __( 'Notice', 'google-analytics-for-wordpress' ), ':</strong> ' . __( 'You switched your theme, please make sure your Google Analytics tracking is still ok. Save your settings to make sure Google Analytics gets loaded properly.', 'google-analytics-for-wordpress' ) . '</p></div>';
403
  remove_action( 'admin_footer', array( &$this, 'theme_switch_warning' ) );
404
  }
405
  $desc = '<div id="position_header">' . sprintf( __( 'The header is by far the best spot to place the tracking code. If you\'d rather place the code manually, switch to manual placement. For more info %sread this page%s.' ), '<a href="http://yoast.com/wordpress/google-analytics/manual-placement/">', '</a>' ) . '</div>';
406
+ $desc .= '<div id="position_manual">' . sprintf( __( '%sFollow the instructions here%s to choose the location for your tracking code manually.', 'google-analytics-for-wordpress' ), '<a href="http://yoast.com/wordpress/google-analytics/manual-placement/">', '</a>' ) . '</div>';
407
 
408
  $rows[] = array(
409
  'id' => 'position',
410
+ 'label' => __( 'Where should the tracking code be placed', 'google-analytics-for-wordpress' ),
411
  'desc' => $desc,
412
  'content' => $temp_content,
413
  );
414
  $rows[] = array(
415
  'id' => 'trackoutbound',
416
+ 'label' => __( 'Track outbound clicks &amp; downloads', 'google-analytics-for-wordpress' ),
417
+ 'desc' => __( 'Clicks &amp; downloads will be tracked as events, you can find these under Content &raquo; Event Tracking in your Google Analytics reports.', 'google-analytics-for-wordpress' ),
418
  'content' => $this->checkbox( 'trackoutbound' ),
419
  );
420
  $rows[] = array(
421
  'id' => 'advancedsettings',
422
+ 'label' => __( 'Show advanced settings', 'google-analytics-for-wordpress' ),
423
+ 'desc' => __( 'Only adviced for advanced users who know their way around Google Analytics', 'google-analytics-for-wordpress' ),
424
  'content' => $this->checkbox( 'advancedsettings' ),
425
  );
426
  $rows[] = array(
427
  'id' => 'yoast_tracking',
428
+ 'label' => __( 'Allow tracking of anonymous data', 'google-analytics-for-wordpress' ),
429
+ 'desc' => __( 'By allowing us to track anonymous data we can better help you, because we know with which WordPress configurations, themes and plugins we should test. No personal data will be submitted.', 'google-analytics-for-wordpress' ),
430
  'content' => $this->checkbox( 'yoast_tracking' ),
431
  );
432
+ $this->postbox( 'gasettings', __( 'Google Analytics Settings', 'google-analytics-for-wordpress' ), $this->form_table( $rows ) . $this->save_button() );
433
 
434
  $rows = array();
435
+ $pre_content = '<p>' . __( 'Google Analytics allows you to save up to 5 custom variables on each page, and this plugin helps you make the most use of these! Check which custom variables you\'d like the plugin to save for you below. Please note that these will only be saved when they are actually available.', 'google-analytics-for-wordpress' ) . '</p>';
436
+ $pre_content .= '<p>' . __( 'If you want to start using these custom variables, go to Visitors &raquo; Custom Variables in your Analytics reports.', 'google-analytics-for-wordpress' ) . '</p>';
437
  $rows[] = array(
438
  'id' => 'cv_loggedin',
439
+ 'label' => __( 'Logged in Users', 'google-analytics-for-wordpress' ),
440
+ 'desc' => __( 'Allows you to easily remove logged in users from your reports, or to segment by different user roles. The users primary role will be logged.', 'google-analytics-for-wordpress' ),
441
  'content' => $this->checkbox( 'cv_loggedin' ),
442
  );
443
  $rows[] = array(
444
  'id' => 'cv_post_type',
445
+ 'label' => __( 'Post type', 'google-analytics-for-wordpress' ),
446
+ 'desc' => __( 'Allows you to see pageviews per post type, especially useful if you use multiple custom post types.', 'google-analytics-for-wordpress' ),
447
  'content' => $this->checkbox( 'cv_post_type' ),
448
  );
449
  $rows[] = array(
450
  'id' => 'cv_authorname',
451
+ 'label' => __( 'Author Name', 'google-analytics-for-wordpress' ),
452
+ 'desc' => __( 'Allows you to see pageviews per author.', 'google-analytics-for-wordpress' ),
453
  'content' => $this->checkbox( 'cv_authorname' ),
454
  );
455
  $rows[] = array(
456
  'id' => 'cv_tags',
457
+ 'label' => __( 'Tags', 'google-analytics-for-wordpress' ),
458
+ 'desc' => __( 'Allows you to see pageviews per tags using advanced segments.', 'google-analytics-for-wordpress' ),
459
  'content' => $this->checkbox( 'cv_tags' ),
460
  );
461
  $rows[] = array(
462
  'id' => 'cv_year',
463
+ 'label' => __( 'Publication year', 'google-analytics-for-wordpress' ),
464
+ 'desc' => __( 'Allows you to see pageviews per year of publication, showing you if your old posts still get traffic.', 'google-analytics-for-wordpress' ),
465
  'content' => $this->checkbox( 'cv_year' ),
466
  );
467
  $rows[] = array(
468
  'id' => 'cv_category',
469
+ 'label' => __( 'Single Category', 'google-analytics-for-wordpress' ),
470
+ 'desc' => __( 'Allows you to see pageviews per category, works best when each post is in only one category.', 'google-analytics-for-wordpress' ),
471
  'content' => $this->checkbox( 'cv_category' ),
472
  );
473
  $rows[] = array(
474
  'id' => 'cv_all_categories',
475
+ 'label' => __( 'All Categories', 'google-analytics-for-wordpress' ),
476
+ 'desc' => __( 'Allows you to see pageviews per category using advanced segments, should be used when you use multiple categories per post.', 'google-analytics-for-wordpress' ),
477
  'content' => $this->checkbox( 'cv_all_categories' ),
478
  );
479
 
480
  $modules['Custom Variables'] = 'customvarsettings';
481
+ $this->postbox( 'customvarsettings', __( 'Custom Variables Settings', 'google-analytics-for-wordpress' ), $pre_content . $this->form_table( $rows ) . $this->save_button() );
482
 
483
  $rows = array();
484
  $rows[] = array(
485
  'id' => 'ignore_userlevel',
486
+ 'label' => __( 'Ignore users', 'google-analytics-for-wordpress' ),
487
+ 'desc' => __( 'Users of the role you select and higher will be ignored, so if you select Editor, all Editors and Administrators will be ignored.', 'google-analytics-for-wordpress' ),
488
  'content' => $this->select( 'ignore_userlevel', array(
489
+ '11' => __( 'Ignore no-one', 'google-analytics-for-wordpress' ),
490
+ '8' => __( 'Administrator', 'google-analytics-for-wordpress' ),
491
+ '5' => __( 'Editor', 'google-analytics-for-wordpress' ),
492
+ '2' => __( 'Author', 'google-analytics-for-wordpress' ),
493
+ '1' => __( 'Contributor', 'google-analytics-for-wordpress' ),
494
+ '0' => __( 'Subscriber (ignores all logged in users)', 'google-analytics-for-wordpress' ),
495
  ) ),
496
  );
497
  $rows[] = array(
498
  'id' => 'outboundpageview',
499
+ 'label' => __( 'Track outbound clicks as pageviews', 'google-analytics-for-wordpress' ),
500
+ 'desc' => __( 'You do not need to enable this to enable outbound click tracking, this changes the default behavior of tracking clicks as events to tracking them as pageviews. This is therefore not recommended, as this would skew your statistics, but <em>is</em> sometimes necessary when you need to set outbound clicks as goals.', 'google-analytics-for-wordpress' ),
501
  'content' => $this->checkbox( 'outboundpageview' ),
502
  );
503
  $rows[] = array(
504
  'id' => 'downloadspageview',
505
+ 'label' => __( 'Track downloads as pageviews', 'google-analytics-for-wordpress' ),
506
+ 'desc' => __( 'Not recommended, as this would skew your statistics, but it does make it possible to track downloads as goals.', 'google-analytics-for-wordpress' ),
507
  'content' => $this->checkbox( 'downloadspageview' ),
508
  );
509
  $rows[] = array(
510
  'id' => 'dlextensions',
511
+ 'label' => __( 'Extensions of files to track as downloads', 'google-analytics-for-wordpress' ),
512
  'content' => $this->textinput( 'dlextensions' ),
513
  );
514
  if ( $options['outboundpageview'] ) {
515
  $rows[] = array(
516
  'id' => 'trackprefix',
517
+ 'label' => __( 'Prefix to use in Analytics before the tracked pageviews', 'google-analytics-for-wordpress' ),
518
+ 'desc' => __( 'This prefix is used before all pageviews, they are then segmented automatically after that. If nothing is entered here, <code>/yoast-ga/</code> is used.', 'google-analytics-for-wordpress' ),
519
  'content' => $this->textinput( 'trackprefix' ),
520
  );
521
  }
522
  $rows[] = array(
523
  'id' => 'domainorurl',
524
+ 'label' => __( 'Track full URL of outbound clicks or just the domain', 'google-analytics-for-wordpress' ),
525
  'content' => $this->select( 'domainorurl', array(
526
+ 'domain' => __( 'Just the domain', 'google-analytics-for-wordpress' ),
527
+ 'url' => __( 'Track the complete URL', 'google-analytics-for-wordpress' ),
528
  )
529
  ),
530
  );
531
  $rows[] = array(
532
  'id' => 'domain',
533
+ 'label' => __( 'Subdomain Tracking', 'google-analytics-for-wordpress' ),
534
+ 'desc' => sprintf( __( 'This allows you to set the domain that\'s set by %s<code>setDomainName</code>%s for tracking subdomains, if empty this will not be set.', 'google-analytics-for-wordpress' ), '<a href="http://code.google.com/apis/analytics/docs/gaJS/gaJSApiDomainDirectory.html#_gat.GA_Tracker_._setDomainName">', '</a>' ),
535
  'content' => $this->textinput( 'domain' ),
536
  );
537
  $rows[] = array(
538
  'id' => 'trackcrossdomain',
539
+ 'label' => __( 'Enable Cross Domain Tracking', 'google-analytics-for-wordpress' ),
540
+ 'desc' => sprintf( __( 'This allows you to enable %sCross-Domain Tracking%s for this site. When endabled <code>_setAllowLinker:</code> will be enabled if it is not already.', 'google-analytics-for-wordpress' ), '<a href="http://code.google.com/apis/analytics/docs/tracking/gaTrackingSite.html">', '</a>' ),
541
  'content' => $this->checkbox( 'trackcrossdomain' ),
542
  );
543
  $rows[] = array(
544
  'id' => 'primarycrossdomain',
545
+ 'label' => __( 'Cross-Domain Tracking, Primary Domain', 'google-analytics-for-wordpress' ),
546
+ 'desc' => sprintf( __( 'Set the primary domain used in %s<code>setDomainName</code>%s for cross domain tracking (eg. <code>example-petstore.com</code> ), if empty this will default to your configured Home URL.', 'google-analytics-for-wordpress' ), '<a href="http://code.google.com/apis/analytics/docs/gaJS/gaJSApiDomainDirectory.html#_gat.GA_Tracker_._setDomainName">', '</a>' ),
547
  'content' => $this->textinput( 'primarycrossdomain' ),
548
  );
549
  $rows[] = array(
550
  'id' => 'othercrossdomains',
551
+ 'label' => __( 'Cross-Domain Tracking, Other Domains', 'google-analytics-for-wordpress' ),
552
+ 'desc' => __( 'All links to these domains will have the <a href="http://code.google.com/apis/analytics/docs/tracking/gaTrackingSite.html#multipleDomains"><code>_link</code></a> code automatically attached. Separate domains/sub-domains with commas (eg. <code>dogs.example-petstore.com, cats.example-petstore.com</code>)', 'google-analytics-for-wordpress' ),
553
  'content' => $this->textinput( 'othercrossdomains' ),
554
  );
555
  $rows[] = array(
556
  'id' => 'customcode',
557
+ 'label' => __( 'Custom Code', 'google-analytics-for-wordpress' ),
558
+ 'desc' => __( 'Not for the average user: this allows you to add a line of code, to be added before the <code>trackPageview</code> call.', 'google-analytics-for-wordpress' ),
559
  'content' => $this->textinput( 'customcode' ),
560
  );
561
  $rows[] = array(
562
  'id' => 'trackadsense',
563
+ 'label' => __( 'Track AdSense', 'google-analytics-for-wordpress' ),
564
+ 'desc' => __( 'This requires integration of your Analytics and AdSense account, for help, <a href="http://google.com/support/analytics/bin/answer.py?answer=92625">look here</a>.', 'google-analytics-for-wordpress' ),
565
  'content' => $this->checkbox( 'trackadsense' ),
566
  );
567
  $rows[] = array(
568
  'id' => 'gajslocalhosting',
569
+ 'label' => __( 'Host ga.js locally', 'google-analytics-for-wordpress' ),
570
  'content' => $this->checkbox( 'gajslocalhosting' ) . '<div id="localhostingbox">
571
+ ' . __( 'You have to provide a URL to your ga.js file:', 'google-analytics-for-wordpress' ) . '
572
  <input type="text" name="gajsurl" size="30" value="' . $options['gajsurl'] . '"/>
573
  </div>',
574
+ 'desc' => __( 'For some reasons you might want to use a locally hosted ga.js file, or another ga.js file, check the box and then please enter the full URL including http here.', 'google-analytics-for-wordpress' )
575
  );
576
  $rows[] = array(
577
  'id' => 'extrase',
578
+ 'label' => __( 'Track extra Search Engines', 'google-analytics-for-wordpress' ),
579
  'content' => $this->checkbox( 'extrase' ) . '<div id="extrasebox">
580
+ ' . __( 'You can provide a custom URL to the extra search engines file if you want:', 'google-analytics-for-wordpress' ) . '
581
  <input type="text" name="extraseurl" size="30" value="' . $options['extraseurl'] . '"/>
582
  </div>',
583
  );
584
  $rows[] = array(
585
  'id' => 'rsslinktagging',
586
+ 'label' => __( 'Tag links in RSS feed with campaign variables', 'google-analytics-for-wordpress' ),
587
+ 'desc' => __( 'Do not use this feature if you use FeedBurner, as FeedBurner can do this automatically, and better than this plugin can. Check <a href="http://www.google.com/support/feedburner/bin/answer.py?hl=en&amp;answer=165769">this help page</a> for info on how to enable this feature in FeedBurner.', 'google-analytics-for-wordpress' ),
588
  'content' => $this->checkbox( 'rsslinktagging' ),
589
  );
590
  $rows[] = array(
591
  'id' => 'trackregistration',
592
+ 'label' => __( 'Add tracking to the login and registration forms', 'google-analytics-for-wordpress' ),
593
  'content' => $this->checkbox( 'trackregistration' ),
594
  );
595
  $rows[] = array(
596
  'id' => 'trackcommentform',
597
+ 'label' => __( 'Add tracking to the comment forms', 'google-analytics-for-wordpress' ),
598
  'content' => $this->checkbox( 'trackcommentform' ),
599
  );
600
  $rows[] = array(
601
  'id' => 'allowanchor',
602
+ 'label' => __( 'Use # instead of ? for Campaign tracking', 'google-analytics-for-wordpress' ),
603
+ 'desc' => __( 'This adds a <code><a href="http://code.google.com/apis/analytics/docs/gaJSApiCampaignTracking.html#_gat.GA_Tracker_._setAllowAnchor">_setAllowAnchor</a></code> call to your tracking code, and makes RSS link tagging use a # as well.', 'google-analytics-for-wordpress' ),
604
  'content' => $this->checkbox( 'allowanchor' ),
605
  );
606
  $rows[] = array(
607
  'id' => 'allowlinker',
608
+ 'label' => __( 'Add <code>_setAllowLinker</code>', 'google-analytics-for-wordpress' ),
609
+ 'desc' => __( 'This adds a <code><a href="http://code.google.com/apis/analytics/docs/gaJS/gaJSApiDomainDirectory.html#_gat.GA_Tracker_._setAllowLinker">_setAllowLinker</a></code> call to your tracking code, allowing you to use <code>_link</code> and related functions.', 'google-analytics-for-wordpress' ),
610
  'content' => $this->checkbox( 'allowlinker' ),
611
  );
612
  $rows[] = array(
613
  'id' => 'allowhash',
614
+ 'label' => __( 'Set <code>_setAllowHash</code> to false', 'google-analytics-for-wordpress' ),
615
+ 'desc' => __( 'This sets <code><a href="http://code.google.com/apis/analytics/docs/gaJS/gaJSApiDomainDirectory.html#_gat.GA_Tracker_._setAllowHash">_setAllowHash</a></code> to false, allowing you to track subdomains etc.', 'google-analytics-for-wordpress' ),
616
  'content' => $this->checkbox( 'allowhash' ),
617
  );
618
  $rows[] = array(
619
  'id' => 'anonymizeip',
620
+ 'label' => __( 'Anonymize IP\'s', 'google-analytics-for-wordpress' ),
621
+ 'desc' => __( 'This adds <code><a href="http://code.google.com/apis/analytics/docs/gaJS/gaJSApi_gat.html#_gat._anonymizeIp">_anonymizeIp</a></code>, telling Google Analytics to anonymize the information sent by the tracker objects by removing the last octet of the IP address prior to its storage.', 'google-analytics-for-wordpress' ),
622
  'content' => $this->checkbox( 'anonymizeip' ),
623
  );
624
  $modules['Advanced Settings'] = 'advancedgasettings';
625
+ $this->postbox( 'advancedgasettings', __( 'Advanced Settings', 'google-analytics-for-wordpress' ), $this->form_table( $rows ) . $this->save_button() );
626
 
627
  $rows = array();
628
  $rows[] = array(
629
  'id' => 'internallink',
630
+ 'label' => __( 'Internal links to track as outbound', 'google-analytics-for-wordpress' ),
631
+ 'desc' => __( 'If you want to track all internal links that begin with <code>/out/</code>, enter <code>/out/</code> in the box above. If you have multiple prefixes you can separate them with comma\'s: <code>/out/,/recommends/</code>', 'google-analytics-for-wordpress' ),
632
  'content' => $this->textinput( 'internallink' ),
633
  );
634
  $rows[] = array(
635
  'id' => 'internallinklabel',
636
+ 'label' => __( 'Label to use', 'google-analytics-for-wordpress' ),
637
+ 'desc' => __( 'The label to use for these links, this will be added to where the click came from, so if the label is "aff", the label for a click from the content of an article becomes "outbound-article-aff".', 'google-analytics-for-wordpress' ),
638
  'content' => $this->textinput( 'internallinklabel' ),
639
  );
640
  $modules['Internal Link Tracking'] = 'internallinktracking';
641
+ $this->postbox( 'internallinktracking', __( 'Internal Links to Track as Outbound', 'google-analytics-for-wordpress' ), $this->form_table( $rows ) . $this->save_button() );
642
 
643
  if ( defined( 'WPSC_VERSION' ) ) {
644
+ $pre_content = __( 'The WordPress e-Commerce plugin has been detected. This plugin can automatically add transaction tracking for you. To do that, <a href="http://yoast.com/wordpress/google-analytics/enable-ecommerce/">enable e-commerce for your reports in Google Analytics</a> and then check the box below.', 'google-analytics-for-wordpress' );
645
  $rows = array();
646
  $rows[] = array(
647
  'id' => 'wpec_tracking',
648
+ 'label' => __( 'Enable transaction tracking', 'google-analytics-for-wordpress' ),
649
  'content' => $this->checkbox( 'wpec_tracking' ),
650
  );
651
+ $this->postbox( 'wpecommerce', __( 'WordPress e-Commerce Settings', 'google-analytics-for-wordpress' ), $pre_content . $this->form_table( $rows ) . $this->save_button() );
652
  $modules['WordPress e-Commerce'] = 'wpecommerce';
653
  }
654
 
655
  global $Shopp;
656
  if ( isset( $Shopp ) ) {
657
+ $pre_content = __( 'The Shopp e-Commerce plugin has been detected. This plugin can automatically add transaction tracking for you. To do that, <a href="http://www.google.com/support/googleanalytics/bin/answer.py?hl=en&amp;answer=55528">enable e-commerce for your reports in Google Analytics</a> and then check the box below.', 'google-analytics-for-wordpress' );
658
  $rows = array();
659
  $rows[] = array(
660
  'id' => 'shopp_tracking',
661
+ 'label' => __( 'Enable transaction tracking', 'google-analytics-for-wordpress' ),
662
  'content' => $this->checkbox( 'shopp_tracking' ),
663
  );
664
+ $this->postbox( 'shoppecommerce', __( 'Shopp e-Commerce Settings', 'google-analytics-for-wordpress' ), $pre_content . $this->form_table( $rows ) . $this->save_button() );
665
  $modules['Shopp'] = 'shoppecommerce';
666
  }
667
+ $pre_content = '<p>' . sprintf( __( 'If you want to confirm that tracking on your blog is working as it should, enable this option and check the console in %sFirebug%s (for Firefox), %sFirebug Lite%s (for other browsers) or Chrome &amp; Safari\'s Web Inspector. Be absolutely sure to disable debugging afterwards, as it is slower than normal tracking.', 'google-analytics-for-wordpress' ), '<a href="http://getfirebug.com/">', '</a>', '<a href="http://getfirebug.com/firebuglite">', '</a>' ) . '</p>';
668
+ $pre_content .= '<p><strong>' . __( 'Note', 'google-analytics-for-wordpress' ) . '</strong>: ' . __( 'the debugging and firebug scripts are only loaded for admins.', 'google-analytics-for-wordpress' ) . '</p>';
669
  $rows = array();
670
  $rows[] = array(
671
  'id' => 'debug',
672
+ 'label' => __( 'Enable debug mode', 'google-analytics-for-wordpress' ),
673
  'content' => $this->checkbox( 'debug' ),
674
  );
675
  $rows[] = array(
676
  'id' => 'firebuglite',
677
+ 'label' => __( 'Enable Firebug Lite', 'google-analytics-for-wordpress' ),
678
  'content' => $this->checkbox( 'firebuglite' ),
679
  );
680
+ $this->postbox( 'debugmode', __( 'Debug Mode', 'google-analytics-for-wordpress' ), $pre_content . $this->form_table( $rows ) . $this->save_button() );
681
  $modules['Debug Mode'] = 'debugmode';
682
  ?>
683
  </form>
684
  <form action="<?php echo $this->plugin_options_url(); ?>" method="post"
685
+ onsubmit="javascript:return(confirm('<?php _e( 'Do you really want to reset all settings?', 'google-analytics-for-wordpress' ); ?>'));">
686
  <input type="hidden" name="reset" value="true"/>
687
  <input type="hidden" name="plugin" value="google-analytics-for-wordpress"/>
688
 
689
+ <div class="submit"><input type="submit" value="<?php _e( 'Reset All Settings &raquo;', 'google-analytics-for-wordpress' ); ?>'"/></div>
690
  </form>
691
  </div>
692
  </div>
695
  <div class="metabox-holder">
696
  <div class="meta-box-sortables">
697
  <?php
698
+ $this->postbox( 'spread', '<strong>' . __( 'Help Spread the Word!', 'google-analytics-for-wordpress' ) . '</strong>',
699
  '<ul>'
700
+ . '<li><a href="http://wordpress.org/extend/plugins/google-analytics-for-wordpress/">' . __( 'Rate the plugin 5★ on WordPress.org', 'google-analytics-for-wordpress' ) . '</a></li>'
701
+ . '<li><a href="http://wordpress.org/tags/google-analytics-for-wordpress">' . __( 'Help out other users in the forums', 'google-analytics-for-wordpress' ) . '</a></li>'
702
  . '<li>' . sprintf( __( 'Blog about it & link to the %1$splugin page%2$s' ), '<a href="http://yoast.com/wordpress/google-analytics/#utm_source=wpadmin&utm_medium=sidebanner&utm_term=link&utm_campaign=wpgaplugin">', '</a>' ) . '</li></ul>' );
703
  ?>
704
  <a target="_blank"
763
  function warning() {
764
  $options = get_option( $this->optionname );
765
  if ( !isset( $options['uastring'] ) || empty( $options['uastring'] ) ) {
766
+ echo "<div id='message' class='error'><p><strong>" . __( "Google Analytics is not active.", 'google-analytics-for-wordpress' ) . "</strong> " . sprintf( __( "You must %sselect which Analytics Profile to track%s before it can work.", 'google-analytics-for-wordpress' ), "<a href='" . $this->plugin_options_url() . "'>", "</a>" ) . "</p></div>";
767
  }
768
  } // end warning()
769
 
admin/class-pointer.php CHANGED
@@ -34,19 +34,19 @@ class GA_Pointer {
34
  */
35
  function tracking_request() {
36
  $id = '#wpadminbar';
37
- $content = '<h3>' . __( 'Help improve Google Analytics for WordPress', 'gawp' ) . '</h3>';
38
- $content .= '<p>' . __( 'You\'ve just installed Google Analytics for WordPress by Yoast. Please helps us improve it by allowing us to gather anonymous usage stats so we know which configurations, plugins and themes to test with.', 'gawp' ) . '</p>';
39
  $opt_arr = array(
40
  'content' => $content,
41
  'position' => array( 'edge' => 'top', 'align' => 'center' )
42
  );
43
- $button2 = __( 'Allow tracking', 'gawp' );
44
  $nonce = wp_create_nonce( 'wpga_activate_tracking' );
45
 
46
  $function2 = 'wpga_store_answer("yes","'.$nonce.'");';
47
  $function1 = 'wpga_store_answer("no","'.$nonce.'");';
48
 
49
- $this->print_scripts( $id, $opt_arr, __( 'Do not allow tracking', 'gawp' ), $button2, $function2, $function1 );
50
  }
51
 
52
  /**
34
  */
35
  function tracking_request() {
36
  $id = '#wpadminbar';
37
+ $content = '<h3>' . __( 'Help improve Google Analytics for WordPress', 'google-analytics-for-wordpress' ) . '</h3>';
38
+ $content .= '<p>' . __( 'You\'ve just installed Google Analytics for WordPress by Yoast. Please helps us improve it by allowing us to gather anonymous usage stats so we know which configurations, plugins and themes to test with.', 'google-analytics-for-wordpress' ) . '</p>';
39
  $opt_arr = array(
40
  'content' => $content,
41
  'position' => array( 'edge' => 'top', 'align' => 'center' )
42
  );
43
+ $button2 = __( 'Allow tracking', 'google-analytics-for-wordpress' );
44
  $nonce = wp_create_nonce( 'wpga_activate_tracking' );
45
 
46
  $function2 = 'wpga_store_answer("yes","'.$nonce.'");';
47
  $function1 = 'wpga_store_answer("no","'.$nonce.'");';
48
 
49
+ $this->print_scripts( $id, $opt_arr, __( 'Do not allow tracking', 'google-analytics-for-wordpress' ), $button2, $function2, $function1 );
50
  }
51
 
52
  /**
admin/yst_plugin_tools.php CHANGED
@@ -1,190 +1,190 @@
1
- <?php
2
-
3
- /**
4
- * Backend Class for use in all Yoast plugins
5
- * Version 0.2
6
- */
7
-
8
- if ( !class_exists( 'Yoast_GA_Plugin_Admin' ) ) {
9
- class Yoast_GA_Plugin_Admin {
10
-
11
- var $hook = '';
12
- var $filename = '';
13
- var $longname = '';
14
- var $shortname = '';
15
- var $optionname = '';
16
- var $accesslvl = 'edit_users';
17
-
18
- function Yoast_GA_Plugin_Admin() {
19
- add_action( 'admin_menu', array( &$this, 'register_settings_page' ) );
20
- add_filter( 'plugin_action_links', array( &$this, 'add_action_link' ), 10, 2 );
21
-
22
- add_action( 'admin_print_scripts', array( &$this, 'config_page_scripts' ) );
23
- add_action( 'admin_print_styles', array( &$this, 'config_page_styles' ) );
24
-
25
- add_action( 'wp_dashboard_setup', array( &$this, 'widget_setup' ) );
26
- }
27
-
28
- function config_page_styles() {
29
- if ( isset( $_GET['page'] ) && $_GET['page'] == $this->hook ) {
30
- wp_enqueue_style( 'dashboard' );
31
- wp_enqueue_style( 'thickbox' );
32
- wp_enqueue_style( 'global' );
33
- wp_enqueue_style( 'wp-admin' );
34
- wp_enqueue_style( 'gawp-css', plugin_dir_url( __FILE__ ) . 'yst_plugin_tools.css' );
35
- }
36
- }
37
-
38
- function register_settings_page() {
39
- add_options_page( $this->longname, $this->shortname, $this->accesslvl, $this->hook, array( &$this, 'config_page' ) );
40
- }
41
-
42
- function plugin_options_url() {
43
- return admin_url( 'options-general.php?page=' . $this->hook );
44
- }
45
-
46
- /**
47
- * Add a link to the settings page to the plugins list
48
- */
49
- function add_action_link( $links, $file ) {
50
- static $this_plugin;
51
- if ( empty( $this_plugin ) )
52
- $this_plugin = 'google-analytics-for-wordpress/googleanalytics.php';
53
- if ( $file == $this_plugin ) {
54
- $settings_link = '<a href="' . $this->plugin_options_url() . '">' . __( 'Settings', 'gawp' ) . '</a>';
55
- array_unshift( $links, $settings_link );
56
- }
57
- return $links;
58
- }
59
-
60
- function config_page() {
61
-
62
- }
63
-
64
- function config_page_scripts() {
65
- if ( isset( $_GET['page'] ) && $_GET['page'] == $this->hook ) {
66
- wp_enqueue_script( 'postbox' );
67
- wp_enqueue_script( 'dashboard' );
68
- wp_enqueue_script( 'thickbox' );
69
- wp_enqueue_script( 'media-upload' );
70
- wp_enqueue_script( 'jquery-chosen', GAWP_URL . 'js/chosen.jquery.min.js', array( 'jquery' ) );
71
- wp_enqueue_style( 'jquery-chosen-css', GAWP_URL . 'js/chosen.css' );
72
- }
73
- }
74
-
75
- /**
76
- * Create a Checkbox input field
77
- */
78
- function checkbox( $id ) {
79
- $options = get_option( $this->optionname );
80
- $checked = false;
81
- if ( isset( $options[$id] ) && $options[$id] == 1 )
82
- $checked = true;
83
- return '<input type="checkbox" id="' . $id . '" name="' . $id . '"' . checked( $checked, true, false ) . '/>';
84
- }
85
-
86
- /**
87
- * Create a Text input field
88
- */
89
- function textinput( $id ) {
90
- $options = get_option( $this->optionname );
91
- $val = '';
92
- if ( isset( $options[$id] ) )
93
- $val = $options[$id];
94
- return '<input class="text" type="text" id="' . $id . '" name="' . $id . '" size="30" value="' . $val . '"/>';
95
- }
96
-
97
- /**
98
- * Create a dropdown field
99
- */
100
- function select( $id, $options, $multiple = false ) {
101
- $opt = get_option( $this->optionname );
102
- $output = '<select class="select" name="' . $id . '" id="' . $id . '">';
103
- foreach ( $options as $val => $name ) {
104
- $sel = '';
105
- if ( $opt[$id] == $val )
106
- $sel = ' selected="selected"';
107
- if ( $name == '' )
108
- $name = $val;
109
- $output .= '<option value="' . $val . '"' . $sel . '>' . $name . '</option>';
110
- }
111
- $output .= '</select>';
112
- return $output;
113
- }
114
-
115
- /**
116
- * Create a potbox widget
117
- */
118
- function postbox( $id, $title, $content ) {
119
- ?>
120
- <div id="<?php echo $id; ?>" class="postbox">
121
- <div class="handlediv" title="Click to toggle"><br/></div>
122
- <h3 class="hndle"><span><?php echo $title; ?></span></h3>
123
-
124
- <div class="inside">
125
- <?php echo $content; ?>
126
- </div>
127
- </div>
128
- <?php
129
- }
130
-
131
- /**
132
- * Create a form table from an array of rows
133
- */
134
- function form_table( $rows ) {
135
- $content = '<table class="form-table">';
136
- $i = 1;
137
- foreach ( $rows as $row ) {
138
- $class = '';
139
- if ( $i > 1 ) {
140
- $class .= 'yst_row';
141
- }
142
- if ( $i % 2 == 0 ) {
143
- $class .= ' even';
144
- }
145
- $content .= '<tr id="' . $row['id'] . '_row" class="' . $class . '"><th valign="top" scrope="row">';
146
- if ( isset( $row['id'] ) && $row['id'] != '' )
147
- $content .= '<label for="' . $row['id'] . '">' . $row['label'] . ':</label>';
148
- else
149
- $content .= $row['label'];
150
- $content .= '</th><td valign="top">';
151
- $content .= $row['content'];
152
- $content .= '</td></tr>';
153
- if ( isset( $row['desc'] ) && !empty( $row['desc'] ) ) {
154
- $content .= '<tr class="' . $class . '"><td colspan="2" class="yst_desc"><small>' . $row['desc'] . '</small></td></tr>';
155
- }
156
-
157
- $i++;
158
- }
159
- $content .= '</table>';
160
- return $content;
161
- }
162
-
163
- /**
164
- * Create a "plugin like" box.
165
- */
166
- function plugin_like( $hook = '' ) {
167
- if ( empty( $hook ) ) {
168
- $hook = $this->hook;
169
- }
170
- $content = '<p>' . __( 'Why not do any or all of the following:', 'gawp' ) . '</p>';
171
- $content .= '<ul>';
172
- $content .= '<li><a href="' . $this->homepage . '">' . __( 'Link to it so other folks can find out about it.', 'gawp' ) . '</a></li>';
173
- $content .= '<li><a href="http://wordpress.org/extend/plugins/' . $hook . '/">' . __( 'Give it a 5 star rating on WordPress.org.', 'gawp' ) . '</a></li>';
174
- $content .= '<li><a href="http://wordpress.org/extend/plugins/' . $hook . '/">' . __( 'Let other people know that it works with your WordPress setup.', 'gawp' ) . '</a></li>';
175
- $content .= '</ul>';
176
- $this->postbox( $hook . 'like', __( 'Like this plugin?', 'gawp' ), $content );
177
- }
178
-
179
- function text_limit( $text, $limit, $finish = ' [&hellip;]' ) {
180
- if ( strlen( $text ) > $limit ) {
181
- $text = substr( $text, 0, $limit );
182
- $text = substr( $text, 0, -( strlen( strrchr( $text, ' ' ) ) ) );
183
- $text .= $finish;
184
- }
185
- return $text;
186
- }
187
-
188
- }
189
- }
190
-
1
+ <?php
2
+
3
+ /**
4
+ * Backend Class for use in all Yoast plugins
5
+ * Version 0.2
6
+ */
7
+
8
+ if ( !class_exists( 'Yoast_GA_Plugin_Admin' ) ) {
9
+ class Yoast_GA_Plugin_Admin {
10
+
11
+ var $hook = '';
12
+ var $filename = '';
13
+ var $longname = '';
14
+ var $shortname = '';
15
+ var $optionname = '';
16
+ var $accesslvl = 'edit_users';
17
+
18
+ function Yoast_GA_Plugin_Admin() {
19
+ add_action( 'admin_menu', array( &$this, 'register_settings_page' ) );
20
+ add_filter( 'plugin_action_links', array( &$this, 'add_action_link' ), 10, 2 );
21
+
22
+ add_action( 'admin_print_scripts', array( &$this, 'config_page_scripts' ) );
23
+ add_action( 'admin_print_styles', array( &$this, 'config_page_styles' ) );
24
+
25
+ add_action( 'wp_dashboard_setup', array( &$this, 'widget_setup' ) );
26
+ }
27
+
28
+ function config_page_styles() {
29
+ if ( isset( $_GET['page'] ) && $_GET['page'] == $this->hook ) {
30
+ wp_enqueue_style( 'dashboard' );
31
+ wp_enqueue_style( 'thickbox' );
32
+ wp_enqueue_style( 'global' );
33
+ wp_enqueue_style( 'wp-admin' );
34
+ wp_enqueue_style( 'gawp-css', plugin_dir_url( __FILE__ ) . 'yst_plugin_tools.css' );
35
+ }
36
+ }
37
+
38
+ function register_settings_page() {
39
+ add_options_page( $this->longname, $this->shortname, $this->accesslvl, $this->hook, array( &$this, 'config_page' ) );
40
+ }
41
+
42
+ function plugin_options_url() {
43
+ return admin_url( 'options-general.php?page=' . $this->hook );
44
+ }
45
+
46
+ /**
47
+ * Add a link to the settings page to the plugins list
48
+ */
49
+ function add_action_link( $links, $file ) {
50
+ static $this_plugin;
51
+ if ( empty( $this_plugin ) )
52
+ $this_plugin = 'google-analytics-for-wordpress/googleanalytics.php';
53
+ if ( $file == $this_plugin ) {
54
+ $settings_link = '<a href="' . $this->plugin_options_url() . '">' . __( 'Settings', 'google-analytics-for-wordpress' ) . '</a>';
55
+ array_unshift( $links, $settings_link );
56
+ }
57
+ return $links;
58
+ }
59
+
60
+ function config_page() {
61
+
62
+ }
63
+
64
+ function config_page_scripts() {
65
+ if ( isset( $_GET['page'] ) && $_GET['page'] == $this->hook ) {
66
+ wp_enqueue_script( 'postbox' );
67
+ wp_enqueue_script( 'dashboard' );
68
+ wp_enqueue_script( 'thickbox' );
69
+ wp_enqueue_script( 'media-upload' );
70
+ wp_enqueue_script( 'jquery-chosen', GAWP_URL . 'js/chosen.jquery.min.js', array( 'jquery' ) );
71
+ wp_enqueue_style( 'jquery-chosen-css', GAWP_URL . 'js/chosen.css' );
72
+ }
73
+ }
74
+
75
+ /**
76
+ * Create a Checkbox input field
77
+ */
78
+ function checkbox( $id ) {
79
+ $options = get_option( $this->optionname );
80
+ $checked = false;
81
+ if ( isset( $options[$id] ) && $options[$id] == 1 )
82
+ $checked = true;
83
+ return '<input type="checkbox" id="' . $id . '" name="' . $id . '"' . checked( $checked, true, false ) . '/>';
84
+ }
85
+
86
+ /**
87
+ * Create a Text input field
88
+ */
89
+ function textinput( $id ) {
90
+ $options = get_option( $this->optionname );
91
+ $val = '';
92
+ if ( isset( $options[$id] ) )
93
+ $val = $options[$id];
94
+ return '<input class="text" type="text" id="' . $id . '" name="' . $id . '" size="30" value="' . $val . '"/>';
95
+ }
96
+
97
+ /**
98
+ * Create a dropdown field
99
+ */
100
+ function select( $id, $options, $multiple = false ) {
101
+ $opt = get_option( $this->optionname );
102
+ $output = '<select class="select" name="' . $id . '" id="' . $id . '">';
103
+ foreach ( $options as $val => $name ) {
104
+ $sel = '';
105
+ if ( $opt[$id] == $val )
106
+ $sel = ' selected="selected"';
107
+ if ( $name == '' )
108
+ $name = $val;
109
+ $output .= '<option value="' . $val . '"' . $sel . '>' . $name . '</option>';
110
+ }
111
+ $output .= '</select>';
112
+ return $output;
113
+ }
114
+
115
+ /**
116
+ * Create a potbox widget
117
+ */
118
+ function postbox( $id, $title, $content ) {
119
+ ?>
120
+ <div id="<?php echo $id; ?>" class="postbox">
121
+ <div class="handlediv" title="Click to toggle"><br/></div>
122
+ <h3 class="hndle"><span><?php echo $title; ?></span></h3>
123
+
124
+ <div class="inside">
125
+ <?php echo $content; ?>
126
+ </div>
127
+ </div>
128
+ <?php
129
+ }
130
+
131
+ /**
132
+ * Create a form table from an array of rows
133
+ */
134
+ function form_table( $rows ) {
135
+ $content = '<table class="form-table">';
136
+ $i = 1;
137
+ foreach ( $rows as $row ) {
138
+ $class = '';
139
+ if ( $i > 1 ) {
140
+ $class .= 'yst_row';
141
+ }
142
+ if ( $i % 2 == 0 ) {
143
+ $class .= ' even';
144
+ }
145
+ $content .= '<tr id="' . $row['id'] . '_row" class="' . $class . '"><th valign="top" scrope="row">';
146
+ if ( isset( $row['id'] ) && $row['id'] != '' )
147
+ $content .= '<label for="' . $row['id'] . '">' . $row['label'] . ':</label>';
148
+ else
149
+ $content .= $row['label'];
150
+ $content .= '</th><td valign="top">';
151
+ $content .= $row['content'];
152
+ $content .= '</td></tr>';
153
+ if ( isset( $row['desc'] ) && !empty( $row['desc'] ) ) {
154
+ $content .= '<tr class="' . $class . '"><td colspan="2" class="yst_desc"><small>' . $row['desc'] . '</small></td></tr>';
155
+ }
156
+
157
+ $i++;
158
+ }
159
+ $content .= '</table>';
160
+ return $content;
161
+ }
162
+
163
+ /**
164
+ * Create a "plugin like" box.
165
+ */
166
+ function plugin_like( $hook = '' ) {
167
+ if ( empty( $hook ) ) {
168
+ $hook = $this->hook;
169
+ }
170
+ $content = '<p>' . __( 'Why not do any or all of the following:', 'google-analytics-for-wordpress' ) . '</p>';
171
+ $content .= '<ul>';
172
+ $content .= '<li><a href="' . $this->homepage . '">' . __( 'Link to it so other folks can find out about it.', 'google-analytics-for-wordpress' ) . '</a></li>';
173
+ $content .= '<li><a href="http://wordpress.org/extend/plugins/' . $hook . '/">' . __( 'Give it a 5 star rating on WordPress.org.', 'google-analytics-for-wordpress' ) . '</a></li>';
174
+ $content .= '<li><a href="http://wordpress.org/extend/plugins/' . $hook . '/">' . __( 'Let other people know that it works with your WordPress setup.', 'google-analytics-for-wordpress' ) . '</a></li>';
175
+ $content .= '</ul>';
176
+ $this->postbox( $hook . 'like', __( 'Like this plugin?', 'google-analytics-for-wordpress' ), $content );
177
+ }
178
+
179
+ function text_limit( $text, $limit, $finish = ' [&hellip;]' ) {
180
+ if ( strlen( $text ) > $limit ) {
181
+ $text = substr( $text, 0, $limit );
182
+ $text = substr( $text, 0, -( strlen( strrchr( $text, ' ' ) ) ) );
183
+ $text .= $finish;
184
+ }
185
+ return $text;
186
+ }
187
+
188
+ }
189
+ }
190
+
frontend/class-frontend.php CHANGED
@@ -282,7 +282,7 @@ if ( !class_exists( 'GA_Filter' ) ) {
282
  echo '</script><script src="' . $url . '" type="text/javascript"></script>' . "\n" . '<script type="text/javascript">';
283
  }
284
 
285
- if ( $this->options['customcode'] && trim( $this->options['customcode'] ) != '' )
286
  echo "\t" . stripslashes( $this->options['customcode'] ) . "\n";
287
  ?>
288
  _gaq.push(<?php echo $pushstr; ?>);
@@ -292,7 +292,7 @@ if ( !class_exists( 'GA_Filter' ) ) {
292
  ga.async = true;
293
  ga.src = <?php
294
  if ( $this->options['gajslocalhosting'] && !empty( $this->options['gajsurl'] ) ) {
295
- echo "'" . $this->options['gajsurl'] . "';";
296
  } else {
297
  $script = 'ga.js';
298
  if ( current_user_can( 'manage_options' ) && $this->options['debug'] )
@@ -518,21 +518,21 @@ if ( !class_exists( 'GA_Filter' ) ) {
518
  if ( !isset( $cart_log_id ) || empty( $cart_log_id ) )
519
  return $push;
520
 
521
- $city = $wpdb->get_var( "SELECT tf.value
522
- FROM " . WPSC_TABLE_SUBMITED_FORM_DATA . " tf
523
- LEFT JOIN " . WPSC_TABLE_CHECKOUT_FORMS . " cf
524
  ON cf.id = tf.form_id
525
  WHERE cf.type = 'city'
526
- AND log_id = " . $cart_log_id );
527
 
528
- $country = $wpdb->get_var( "SELECT tf.value
529
- FROM " . WPSC_TABLE_SUBMITED_FORM_DATA . " tf
530
- LEFT JOIN " . WPSC_TABLE_CHECKOUT_FORMS . " cf
531
  ON cf.id = tf.form_id
532
  WHERE cf.type = 'country'
533
- AND log_id = " . $cart_log_id );
534
 
535
- $cart_items = $wpdb->get_results( "SELECT * FROM " . WPSC_TABLE_CART_CONTENTS . " WHERE purchaseid = " . $cart_log_id, ARRAY_A );
536
 
537
  $total_shipping = $purchlogs->allpurchaselogs[0]->base_shipping;
538
  $total_tax = 0;
@@ -551,9 +551,9 @@ if ( !class_exists( 'GA_Filter' ) ) {
551
  . "'" . $country . "'"; // Country
552
 
553
  foreach ( $cart_items as $item ) {
554
- $item['sku'] = $wpdb->get_var( "SELECT meta_value FROM " . WPSC_TABLE_PRODUCTMETA . " WHERE meta_key = 'sku' AND product_id = '" . $item['prodid'] . "' LIMIT 1" );
555
 
556
- $item['category'] = $wpdb->get_var( "SELECT pc.name FROM " . WPSC_TABLE_PRODUCT_CATEGORIES . " pc LEFT JOIN " . WPSC_TABLE_ITEM_CATEGORY_ASSOC . " ca ON pc.id = ca.category_id WHERE pc.group_id = '1' AND ca.product_id = '" . $item['prodid'] . "'" );
557
  $push[] = "'_addItem',"
558
  . "'" . $cart_log_id . "'," // Order ID
559
  . "'" . $item['sku'] . "'," // Item SKU
@@ -658,6 +658,6 @@ function yoast_analytics() {
658
  if ( $options['position'] == 'manual' )
659
  $yoast_ga->spool_analytics();
660
  else
661
- echo '<!-- ' . __( 'Please set Google Analytics position to "manual" in the settings, or remove this call to yoast_analytics();', 'gawp' ) . ' -->';
662
  }
663
 
282
  echo '</script><script src="' . $url . '" type="text/javascript"></script>' . "\n" . '<script type="text/javascript">';
283
  }
284
 
285
+ if ( ! empty( $this->options['customcode'] ) && trim( $this->options['customcode'] ) != '' )
286
  echo "\t" . stripslashes( $this->options['customcode'] ) . "\n";
287
  ?>
288
  _gaq.push(<?php echo $pushstr; ?>);
292
  ga.async = true;
293
  ga.src = <?php
294
  if ( $this->options['gajslocalhosting'] && !empty( $this->options['gajsurl'] ) ) {
295
+ echo "'" . $this->options['gajsurl'] . "'";
296
  } else {
297
  $script = 'ga.js';
298
  if ( current_user_can( 'manage_options' ) && $this->options['debug'] )
518
  if ( !isset( $cart_log_id ) || empty( $cart_log_id ) )
519
  return $push;
520
 
521
+ $city = $wpdb->get_var( $wpdb->prepare( "SELECT tf.value
522
+ FROM " . WPSC_TABLE_SUBMITED_FORM_DATA . " AS tf
523
+ LEFT JOIN " . WPSC_TABLE_CHECKOUT_FORMS . " AS cf
524
  ON cf.id = tf.form_id
525
  WHERE cf.type = 'city'
526
+ AND log_id = %s", $cart_log_id ) );
527
 
528
+ $country = $wpdb->get_var( $wpdb->prepare( "SELECT tf.value
529
+ FROM " . WPSC_TABLE_SUBMITED_FORM_DATA . " AS tf
530
+ LEFT JOIN " . WPSC_TABLE_CHECKOUT_FORMS . " AS cf
531
  ON cf.id = tf.form_id
532
  WHERE cf.type = 'country'
533
+ AND log_id = %s", $cart_log_id ) );
534
 
535
+ $cart_items = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM " . WPSC_TABLE_CART_CONTENTS . " WHERE purchaseid = %s", $cart_log_id ), ARRAY_A );
536
 
537
  $total_shipping = $purchlogs->allpurchaselogs[0]->base_shipping;
538
  $total_tax = 0;
551
  . "'" . $country . "'"; // Country
552
 
553
  foreach ( $cart_items as $item ) {
554
+ $item['sku'] = $wpdb->get_var( $wpdb->prepare( "SELECT meta_value FROM " . WPSC_TABLE_PRODUCTMETA . " WHERE meta_key = 'sku' AND product_id = %s LIMIT 1", $item['prodid'] ) );
555
 
556
+ $item['category'] = $wpdb->get_var( $wpdb->prepare( "SELECT pc.name FROM " . WPSC_TABLE_PRODUCT_CATEGORIES . " AS pc LEFT JOIN " . WPSC_TABLE_ITEM_CATEGORY_ASSOC . " AS ca ON pc.id = ca.category_id WHERE pc.group_id = '1' AND ca.product_id = %s", $item['prodid'] ) );
557
  $push[] = "'_addItem',"
558
  . "'" . $cart_log_id . "'," // Order ID
559
  . "'" . $item['sku'] . "'," // Item SKU
658
  if ( $options['position'] == 'manual' )
659
  $yoast_ga->spool_analytics();
660
  else
661
+ echo '<!-- ' . __( 'Please set Google Analytics position to "manual" in the settings, or remove this call to yoast_analytics();', 'google-analytics-for-wordpress' ) . ' -->';
662
  }
663
 
googleanalytics.php CHANGED
@@ -1,57 +1,59 @@
1
- <?php
2
- /*
3
- Plugin Name: Google Analytics for WordPress
4
- Plugin URI: http://yoast.com/wordpress/google-analytics/#utm_source=wordpress&utm_medium=plugin&utm_campaign=wpgaplugin&utm_content=v420
5
- Description: This plugin makes it simple to add Google Analytics to your WordPress blog, adding lots of features, eg. custom variables and automatic clickout and download tracking.
6
- Author: Joost de Valk
7
- Version: 4.3.3
8
- Requires at least: 3.0
9
- Author URI: http://yoast.com/
10
- License: GPL v3
11
-
12
- Google Analytics for WordPress
13
- Copyright (C) 2008-2013, Joost de Valk - joost@yoast.com
14
-
15
- This program is free software: you can redistribute it and/or modify
16
- it under the terms of the GNU General Public License as published by
17
- the Free Software Foundation, either version 3 of the License, or
18
- (at your option) any later version.
19
-
20
- This program is distributed in the hope that it will be useful,
21
- but WITHOUT ANY WARRANTY; without even the implied warranty of
22
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23
- GNU General Public License for more details.
24
-
25
- You should have received a copy of the GNU General Public License
26
- along with this program. If not, see <http://www.gnu.org/licenses/>.
27
- */
28
-
29
- // This plugin was originally based on Rich Boakes' Analytics plugin: http://boakes.org/analytics, but has since been rewritten and refactored multiple times.
30
-
31
- define( "GAWP_VERSION", '4.3.3' );
32
-
33
- define( "GAWP_URL", trailingslashit( plugin_dir_url( __FILE__ ) ) );
34
-
35
- define( "GAWP_PATH", plugin_dir_path( __FILE__ ) );
36
-
37
- if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) {
38
-
39
- require_once plugin_dir_path( __FILE__ ) . 'admin/ajax.php';
40
-
41
- } else if ( defined('DOING_CRON') && DOING_CRON ) {
42
-
43
- $options = get_option( 'Yoast_Google_Analytics' );
44
- if ( isset( $options['yoast_tracking'] ) && $options['yoast_tracking'] )
45
- require_once GAWP_PATH . 'inc/class-tracking.php';
46
-
47
- } else {
48
- load_plugin_textdomain( 'gawp', false, dirname( plugin_basename( __FILE__ ) ) . '/languages' );
49
-
50
- require_once GAWP_PATH . 'inc/functions.php';
51
-
52
- if ( is_admin() ) {
53
- require_once GAWP_PATH . 'admin/class-admin.php';
54
- } else {
55
- require_once GAWP_PATH . 'frontend/class-frontend.php';
56
- }
57
- }
 
 
1
+ <?php
2
+ /*
3
+ Plugin Name: Google Analytics for WordPress
4
+ Plugin URI: http://yoast.com/wordpress/google-analytics/#utm_source=wordpress&utm_medium=plugin&utm_campaign=wpgaplugin&utm_content=v420
5
+ Description: This plugin makes it simple to add Google Analytics to your WordPress blog, adding lots of features, eg. custom variables and automatic clickout and download tracking.
6
+ Author: Joost de Valk
7
+ Version: 4.3.4
8
+ Requires at least: 3.0
9
+ Author URI: http://yoast.com/
10
+ License: GPL v3
11
+ Text Domain: google-analytics-for-wordpress
12
+ Domain Path: /languages
13
+
14
+ Google Analytics for WordPress
15
+ Copyright (C) 2008-2014, Joost de Valk - joost@yoast.com
16
+
17
+ This program is free software: you can redistribute it and/or modify
18
+ it under the terms of the GNU General Public License as published by
19
+ the Free Software Foundation, either version 3 of the License, or
20
+ (at your option) any later version.
21
+
22
+ This program is distributed in the hope that it will be useful,
23
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
24
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25
+ GNU General Public License for more details.
26
+
27
+ You should have received a copy of the GNU General Public License
28
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
29
+ */
30
+
31
+ // This plugin was originally based on Rich Boakes' Analytics plugin: http://boakes.org/analytics, but has since been rewritten and refactored multiple times.
32
+
33
+ define( "GAWP_VERSION", '4.3.4' );
34
+
35
+ define( "GAWP_URL", trailingslashit( plugin_dir_url( __FILE__ ) ) );
36
+
37
+ define( "GAWP_PATH", plugin_dir_path( __FILE__ ) );
38
+
39
+ if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) {
40
+
41
+ require_once plugin_dir_path( __FILE__ ) . 'admin/ajax.php';
42
+
43
+ } else if ( defined('DOING_CRON') && DOING_CRON ) {
44
+
45
+ $options = get_option( 'Yoast_Google_Analytics' );
46
+ if ( isset( $options['yoast_tracking'] ) && $options['yoast_tracking'] )
47
+ require_once GAWP_PATH . 'inc/class-tracking.php';
48
+
49
+ } else {
50
+ load_plugin_textdomain( 'google-analytics-for-wordpress', false, dirname( plugin_basename( __FILE__ ) ) . '/languages' );
51
+
52
+ require_once GAWP_PATH . 'inc/functions.php';
53
+
54
+ if ( is_admin() ) {
55
+ require_once GAWP_PATH . 'admin/class-admin.php';
56
+ } else {
57
+ require_once GAWP_PATH . 'frontend/class-frontend.php';
58
+ }
59
+ }
inc/class-tracking.php CHANGED
@@ -106,9 +106,12 @@ if ( !class_exists( 'Yoast_Tracking' ) ) {
106
  $data = array(
107
  'site' => array(
108
  'hash' => $hash,
 
 
109
  'version' => get_bloginfo( 'version' ),
110
  'multisite' => is_multisite(),
111
- 'users' => $wpdb->get_var( "SELECT COUNT(*) FROM wp_users INNER JOIN wp_usermeta ON (wp_users.ID = wp_usermeta.user_id) WHERE 1 = 1 AND ( wp_usermeta.meta_key = 'wp_{$blog_id}_capabilities' ) " ),
 
112
  'lang' => get_locale(),
113
  ),
114
  'pts' => $pts,
@@ -146,7 +149,7 @@ if ( !class_exists( 'Yoast_Tracking' ) ) {
146
  function ystga_tracking_additions( $options ) {
147
  $opt = get_option('Yoast_Google_Analytics');
148
 
149
- $options['gawp'] = array(
150
  'advanced_settigns' => isset( $opt['advancedsettings'] ) ? 1 : 0,
151
  );
152
  return $options;
106
  $data = array(
107
  'site' => array(
108
  'hash' => $hash,
109
+ 'url' => site_url(),
110
+ 'name' => get_bloginfo( 'name' ),
111
  'version' => get_bloginfo( 'version' ),
112
  'multisite' => is_multisite(),
113
+ 'users' => $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM $wpdb->users INNER JOIN $wpdb->usermeta ON ({$wpdb->users}.ID = {$wpdb->usermeta}.user_id) WHERE 1 = 1 AND ( {$wpdb->usermeta}.meta_key = %s )", $wpdb->prefix . $blog_id . '_capabilities' ) ),
114
+
115
  'lang' => get_locale(),
116
  ),
117
  'pts' => $pts,
149
  function ystga_tracking_additions( $options ) {
150
  $opt = get_option('Yoast_Google_Analytics');
151
 
152
+ $options['google-analytics-for-wordpress'] = array(
153
  'advanced_settigns' => isset( $opt['advancedsettings'] ) ? 1 : 0,
154
  );
155
  return $options;
languages/google-analytics-for-wordpress-de_DE.mo ADDED
Binary file
languages/google-analytics-for-wordpress-de_DE.po ADDED
@@ -0,0 +1,579 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Google Analytics for WordPress in German
2
+ # This file is distributed under the same license as the Google Analytics for WordPress package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2014-01-06 10:23:18+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/0.1\n"
11
+ "Project-Id-Version: Google Analytics for WordPress\n"
12
+
13
+ #: admin/class-admin.php:30
14
+ msgid "Google Analytics Configuration"
15
+ msgstr "Google Analytics Konfiguration"
16
+
17
+ #: admin/class-admin.php:31
18
+ msgid "Google Analytics"
19
+ msgstr ""
20
+
21
+ #: admin/class-admin.php:129
22
+ msgid "The maximum number of allowed custom variables in Google Analytics is 5, please unselect one of the other custom variables before selecting this one."
23
+ msgstr ""
24
+
25
+ #: admin/class-admin.php:136
26
+ msgid "That's not a valid UA ID, please make sure it matches the expected pattern of: UA-XXXXXX-X, and that there are no spaces or other characters in the input field."
27
+ msgstr ""
28
+
29
+ #: admin/class-admin.php:151
30
+ msgid "Having problems?"
31
+ msgstr "Hast du Probleme?"
32
+
33
+ #: admin/class-admin.php:152
34
+ msgid "If you're having problems with this plugin, please refer to its <a href='%s'>FAQ page</a>."
35
+ msgstr "Wenn du Probleme mit diesem Plugin hast, bitte besuche die <a href='%s'>FAQ Seite</a>."
36
+
37
+ #: admin/class-admin.php:171
38
+ msgid "Google Analytics settings reset."
39
+ msgstr "Google Analytics Konfiguration zurückgesetzt."
40
+
41
+ #: admin/class-admin.php:174
42
+ msgid "You cannot edit the Google Analytics for WordPress options."
43
+ msgstr ""
44
+
45
+ #: admin/class-admin.php:220
46
+ msgid "Google Analytics settings updated."
47
+ msgstr "Google Analytics Konfiguration aktualisiert."
48
+
49
+ #: admin/class-admin.php:227
50
+ msgid "Update Google Analytics Settings &raquo;"
51
+ msgstr ""
52
+
53
+ #: admin/class-admin.php:263
54
+ msgid "Google Analytics for WordPress Configuration"
55
+ msgstr ""
56
+
57
+ #: admin/class-admin.php:275
58
+ msgid "Please authenticate with Google Analytics to retrieve your tracking code:"
59
+ msgstr ""
60
+
61
+ #: admin/class-admin.php:275
62
+ msgid "Click here to authenticate with Google"
63
+ msgstr ""
64
+
65
+ #: admin/class-admin.php:340
66
+ msgid "Please select the correct Analytics Account"
67
+ msgstr ""
68
+
69
+ #: admin/class-admin.php:349
70
+ msgid "Please select the correct Analytics account to track:"
71
+ msgstr ""
72
+
73
+ #: admin/class-admin.php:351
74
+ msgid "Profile"
75
+ msgstr ""
76
+
77
+ #: admin/class-admin.php:363
78
+ msgid "Please note that if you have several profiles of the same website, it doesn't matter which profile you select, and in fact another profile might show as selected later. You can check whether they're profiles for the same site by checking if they have the same UA code. If that's true, tracking will be correct."
79
+ msgstr ""
80
+
81
+ #: admin/class-admin.php:365
82
+ msgid "Refresh this listing or switch to another account: "
83
+ msgstr ""
84
+
85
+ #: admin/class-admin.php:367
86
+ msgid "Unfortunately, an error occurred while connecting to Google, please try again:"
87
+ msgstr ""
88
+
89
+ #: admin/class-admin.php:371
90
+ msgid "Re-authenticate with Google"
91
+ msgstr ""
92
+
93
+ #: admin/class-admin.php:373
94
+ msgid "Select another Analytics Profile &raquo;"
95
+ msgstr ""
96
+
97
+ #: admin/class-admin.php:375
98
+ msgid "Manually enter your UA code: "
99
+ msgstr ""
100
+
101
+ #: admin/class-admin.php:380
102
+ msgid "Analytics Profile"
103
+ msgstr ""
104
+
105
+ #: admin/class-admin.php:381
106
+ msgid "Manually enter your UA code"
107
+ msgstr ""
108
+
109
+ #: admin/class-admin.php:384
110
+ msgid "In the header (default)"
111
+ msgstr ""
112
+
113
+ #: admin/class-admin.php:384
114
+ msgid "Insert manually"
115
+ msgstr ""
116
+
117
+ #: admin/class-admin.php:387
118
+ msgid "Notice"
119
+ msgstr ""
120
+
121
+ #: admin/class-admin.php:387
122
+ msgid "You switched your theme, please make sure your Google Analytics tracking is still ok. Save your settings to make sure Google Analytics gets loaded properly."
123
+ msgstr ""
124
+
125
+ #: admin/class-admin.php:390
126
+ msgid "The header is by far the best spot to place the tracking code. If you'd rather place the code manually, switch to manual placement. For more info %sread this page%s."
127
+ msgstr ""
128
+
129
+ #: admin/class-admin.php:391
130
+ msgid "%sFollow the instructions here%s to choose the location for your tracking code manually."
131
+ msgstr ""
132
+
133
+ #: admin/class-admin.php:395
134
+ msgid "Where should the tracking code be placed"
135
+ msgstr ""
136
+
137
+ #: admin/class-admin.php:401
138
+ msgid "Track outbound clicks &amp; downloads"
139
+ msgstr ""
140
+
141
+ #: admin/class-admin.php:402
142
+ msgid "Clicks &amp; downloads will be tracked as events, you can find these under Content &raquo; Event Tracking in your Google Analytics reports."
143
+ msgstr ""
144
+
145
+ #: admin/class-admin.php:407
146
+ msgid "Show advanced settings"
147
+ msgstr ""
148
+
149
+ #: admin/class-admin.php:408
150
+ msgid "Only adviced for advanced users who know their way around Google Analytics"
151
+ msgstr ""
152
+
153
+ #: admin/class-admin.php:413
154
+ msgid "Allow tracking of anonymous data"
155
+ msgstr ""
156
+
157
+ #: admin/class-admin.php:414
158
+ msgid "By allowing us to track anonymous data we can better help you, because we know with which WordPress configurations, themes and plugins we should test. No personal data will be submitted."
159
+ msgstr ""
160
+
161
+ #: admin/class-admin.php:417
162
+ msgid "Google Analytics Settings"
163
+ msgstr ""
164
+
165
+ #: admin/class-admin.php:420
166
+ msgid "Google Analytics allows you to save up to 5 custom variables on each page, and this plugin helps you make the most use of these! Check which custom variables you'd like the plugin to save for you below. Please note that these will only be saved when they are actually available."
167
+ msgstr ""
168
+
169
+ #: admin/class-admin.php:421
170
+ msgid "If you want to start using these custom variables, go to Visitors &raquo; Custom Variables in your Analytics reports."
171
+ msgstr ""
172
+
173
+ #: admin/class-admin.php:424
174
+ msgid "Logged in Users"
175
+ msgstr ""
176
+
177
+ #: admin/class-admin.php:425
178
+ msgid "Allows you to easily remove logged in users from your reports, or to segment by different user roles. The users primary role will be logged."
179
+ msgstr ""
180
+
181
+ #: admin/class-admin.php:430
182
+ msgid "Post type"
183
+ msgstr ""
184
+
185
+ #: admin/class-admin.php:431
186
+ msgid "Allows you to see pageviews per post type, especially useful if you use multiple custom post types."
187
+ msgstr ""
188
+
189
+ #: admin/class-admin.php:436
190
+ msgid "Author Name"
191
+ msgstr ""
192
+
193
+ #: admin/class-admin.php:437
194
+ msgid "Allows you to see pageviews per author."
195
+ msgstr ""
196
+
197
+ #: admin/class-admin.php:442
198
+ msgid "Tags"
199
+ msgstr ""
200
+
201
+ #: admin/class-admin.php:443
202
+ msgid "Allows you to see pageviews per tags using advanced segments."
203
+ msgstr ""
204
+
205
+ #: admin/class-admin.php:448
206
+ msgid "Publication year"
207
+ msgstr ""
208
+
209
+ #: admin/class-admin.php:449
210
+ msgid "Allows you to see pageviews per year of publication, showing you if your old posts still get traffic."
211
+ msgstr ""
212
+
213
+ #: admin/class-admin.php:454
214
+ msgid "Single Category"
215
+ msgstr ""
216
+
217
+ #: admin/class-admin.php:455
218
+ msgid "Allows you to see pageviews per category, works best when each post is in only one category."
219
+ msgstr ""
220
+
221
+ #: admin/class-admin.php:460
222
+ msgid "All Categories"
223
+ msgstr ""
224
+
225
+ #: admin/class-admin.php:461
226
+ msgid "Allows you to see pageviews per category using advanced segments, should be used when you use multiple categories per post."
227
+ msgstr ""
228
+
229
+ #: admin/class-admin.php:466
230
+ msgid "Custom Variables Settings"
231
+ msgstr ""
232
+
233
+ #: admin/class-admin.php:471
234
+ msgid "Ignore users"
235
+ msgstr ""
236
+
237
+ #: admin/class-admin.php:472
238
+ msgid "Users of the role you select and higher will be ignored, so if you select Editor, all Editors and Administrators will be ignored."
239
+ msgstr ""
240
+
241
+ #: admin/class-admin.php:474
242
+ msgid "Ignore no-one"
243
+ msgstr ""
244
+
245
+ #: admin/class-admin.php:475
246
+ msgid "Administrator"
247
+ msgstr ""
248
+
249
+ #: admin/class-admin.php:476
250
+ msgid "Editor"
251
+ msgstr ""
252
+
253
+ #: admin/class-admin.php:477
254
+ msgid "Author"
255
+ msgstr ""
256
+
257
+ #: admin/class-admin.php:478
258
+ msgid "Contributor"
259
+ msgstr ""
260
+
261
+ #: admin/class-admin.php:479
262
+ msgid "Subscriber (ignores all logged in users)"
263
+ msgstr ""
264
+
265
+ #: admin/class-admin.php:484
266
+ msgid "Track outbound clicks as pageviews"
267
+ msgstr ""
268
+
269
+ #: admin/class-admin.php:485
270
+ msgid "You do not need to enable this to enable outbound click tracking, this changes the default behavior of tracking clicks as events to tracking them as pageviews. This is therefore not recommended, as this would skew your statistics, but <em>is</em> sometimes necessary when you need to set outbound clicks as goals."
271
+ msgstr ""
272
+
273
+ #: admin/class-admin.php:490
274
+ msgid "Track downloads as pageviews"
275
+ msgstr ""
276
+
277
+ #: admin/class-admin.php:491
278
+ msgid "Not recommended, as this would skew your statistics, but it does make it possible to track downloads as goals."
279
+ msgstr ""
280
+
281
+ #: admin/class-admin.php:496
282
+ msgid "Extensions of files to track as downloads"
283
+ msgstr ""
284
+
285
+ #: admin/class-admin.php:502
286
+ msgid "Prefix to use in Analytics before the tracked pageviews"
287
+ msgstr ""
288
+
289
+ #: admin/class-admin.php:503
290
+ msgid "This prefix is used before all pageviews, they are then segmented automatically after that. If nothing is entered here, <code>/yoast-ga/</code> is used."
291
+ msgstr ""
292
+
293
+ #: admin/class-admin.php:509
294
+ msgid "Track full URL of outbound clicks or just the domain"
295
+ msgstr ""
296
+
297
+ #: admin/class-admin.php:511
298
+ msgid "Just the domain"
299
+ msgstr ""
300
+
301
+ #: admin/class-admin.php:512
302
+ msgid "Track the complete URL"
303
+ msgstr ""
304
+
305
+ #: admin/class-admin.php:518
306
+ msgid "Subdomain Tracking"
307
+ msgstr ""
308
+
309
+ #: admin/class-admin.php:519
310
+ msgid "This allows you to set the domain that's set by %s<code>setDomainName</code>%s for tracking subdomains, if empty this will not be set."
311
+ msgstr ""
312
+
313
+ #: admin/class-admin.php:524
314
+ msgid "Enable Cross Domain Tracking"
315
+ msgstr ""
316
+
317
+ #: admin/class-admin.php:525
318
+ msgid "This allows you to enable %sCross-Domain Tracking%s for this site. When endabled <code>_setAllowLinker:</code> will be enabled if it is not already."
319
+ msgstr ""
320
+
321
+ #: admin/class-admin.php:530
322
+ msgid "Cross-Domain Tracking, Primary Domain"
323
+ msgstr ""
324
+
325
+ #: admin/class-admin.php:531
326
+ msgid "Set the primary domain used in %s<code>setDomainName</code>%s for cross domain tracking (eg. <code>example-petstore.com</code> ), if empty this will default to your configured Home URL."
327
+ msgstr ""
328
+
329
+ #: admin/class-admin.php:536
330
+ msgid "Cross-Domain Tracking, Other Domains"
331
+ msgstr ""
332
+
333
+ #: admin/class-admin.php:537
334
+ msgid "All links to these domains will have the <a href=\"http://code.google.com/apis/analytics/docs/tracking/gaTrackingSite.html#multipleDomains\"><code>_link</code></a> code automatically attached. Separate domains/sub-domains with commas (eg. <code>dogs.example-petstore.com, cats.example-petstore.com</code>)"
335
+ msgstr ""
336
+
337
+ #: admin/class-admin.php:542
338
+ msgid "Custom Code"
339
+ msgstr ""
340
+
341
+ #: admin/class-admin.php:543
342
+ msgid "Not for the average user: this allows you to add a line of code, to be added before the <code>trackPageview</code> call."
343
+ msgstr ""
344
+
345
+ #: admin/class-admin.php:548
346
+ msgid "Track AdSense"
347
+ msgstr ""
348
+
349
+ #: admin/class-admin.php:549
350
+ msgid "This requires integration of your Analytics and AdSense account, for help, <a href=\"http://google.com/support/analytics/bin/answer.py?answer=92625\">look here</a>."
351
+ msgstr ""
352
+
353
+ #: admin/class-admin.php:554
354
+ msgid "Host ga.js locally"
355
+ msgstr ""
356
+
357
+ #: admin/class-admin.php:556
358
+ msgid "You have to provide a URL to your ga.js file:"
359
+ msgstr ""
360
+
361
+ #: admin/class-admin.php:559
362
+ msgid "For some reasons you might want to use a locally hosted ga.js file, or another ga.js file, check the box and then please enter the full URL including http here."
363
+ msgstr ""
364
+
365
+ #: admin/class-admin.php:563
366
+ msgid "Track extra Search Engines"
367
+ msgstr ""
368
+
369
+ #: admin/class-admin.php:565
370
+ msgid "You can provide a custom URL to the extra search engines file if you want:"
371
+ msgstr ""
372
+
373
+ #: admin/class-admin.php:571
374
+ msgid "Tag links in RSS feed with campaign variables"
375
+ msgstr ""
376
+
377
+ #: admin/class-admin.php:572
378
+ msgid "Do not use this feature if you use FeedBurner, as FeedBurner can do this automatically, and better than this plugin can. Check <a href=\"http://www.google.com/support/feedburner/bin/answer.py?hl=en&amp;answer=165769\">this help page</a> for info on how to enable this feature in FeedBurner."
379
+ msgstr ""
380
+
381
+ #: admin/class-admin.php:577
382
+ msgid "Add tracking to the login and registration forms"
383
+ msgstr ""
384
+
385
+ #: admin/class-admin.php:582
386
+ msgid "Add tracking to the comment forms"
387
+ msgstr ""
388
+
389
+ #: admin/class-admin.php:587
390
+ msgid "Use # instead of ? for Campaign tracking"
391
+ msgstr ""
392
+
393
+ #: admin/class-admin.php:588
394
+ msgid "This adds a <code><a href=\"http://code.google.com/apis/analytics/docs/gaJSApiCampaignTracking.html#_gat.GA_Tracker_._setAllowAnchor\">_setAllowAnchor</a></code> call to your tracking code, and makes RSS link tagging use a # as well."
395
+ msgstr ""
396
+
397
+ #: admin/class-admin.php:593
398
+ msgid "Add <code>_setAllowLinker</code>"
399
+ msgstr ""
400
+
401
+ #: admin/class-admin.php:594
402
+ msgid "This adds a <code><a href=\"http://code.google.com/apis/analytics/docs/gaJS/gaJSApiDomainDirectory.html#_gat.GA_Tracker_._setAllowLinker\">_setAllowLinker</a></code> call to your tracking code, allowing you to use <code>_link</code> and related functions."
403
+ msgstr ""
404
+
405
+ #: admin/class-admin.php:599
406
+ msgid "Set <code>_setAllowHash</code> to false"
407
+ msgstr ""
408
+
409
+ #: admin/class-admin.php:600
410
+ msgid "This sets <code><a href=\"http://code.google.com/apis/analytics/docs/gaJS/gaJSApiDomainDirectory.html#_gat.GA_Tracker_._setAllowHash\">_setAllowHash</a></code> to false, allowing you to track subdomains etc."
411
+ msgstr ""
412
+
413
+ #: admin/class-admin.php:605
414
+ msgid "Anonymize IP's"
415
+ msgstr ""
416
+
417
+ #: admin/class-admin.php:606
418
+ msgid "This adds <code><a href=\"http://code.google.com/apis/analytics/docs/gaJS/gaJSApi_gat.html#_gat._anonymizeIp\">_anonymizeIp</a></code>, telling Google Analytics to anonymize the information sent by the tracker objects by removing the last octet of the IP address prior to its storage."
419
+ msgstr ""
420
+
421
+ #: admin/class-admin.php:610
422
+ msgid "Advanced Settings"
423
+ msgstr ""
424
+
425
+ #: admin/class-admin.php:615
426
+ msgid "Internal links to track as outbound"
427
+ msgstr ""
428
+
429
+ #: admin/class-admin.php:616
430
+ msgid "If you want to track all internal links that begin with <code>/out/</code>, enter <code>/out/</code> in the box above. If you have multiple prefixes you can separate them with comma's: <code>/out/,/recommends/</code>"
431
+ msgstr ""
432
+
433
+ #: admin/class-admin.php:621
434
+ msgid "Label to use"
435
+ msgstr ""
436
+
437
+ #: admin/class-admin.php:622
438
+ msgid "The label to use for these links, this will be added to where the click came from, so if the label is \"aff\", the label for a click from the content of an article becomes \"outbound-article-aff\"."
439
+ msgstr ""
440
+
441
+ #: admin/class-admin.php:626
442
+ msgid "Internal Links to Track as Outbound"
443
+ msgstr ""
444
+
445
+ #: admin/class-admin.php:629
446
+ msgid "The WordPress e-Commerce plugin has been detected. This plugin can automatically add transaction tracking for you. To do that, <a href=\"http://yoast.com/wordpress/google-analytics/enable-ecommerce/\">enable e-commerce for your reports in Google Analytics</a> and then check the box below."
447
+ msgstr ""
448
+
449
+ #: admin/class-admin.php:633 admin/class-admin.php:646
450
+ msgid "Enable transaction tracking"
451
+ msgstr ""
452
+
453
+ #: admin/class-admin.php:636
454
+ msgid "WordPress e-Commerce Settings"
455
+ msgstr ""
456
+
457
+ #: admin/class-admin.php:642
458
+ msgid "The Shopp e-Commerce plugin has been detected. This plugin can automatically add transaction tracking for you. To do that, <a href=\"http://www.google.com/support/googleanalytics/bin/answer.py?hl=en&amp;answer=55528\">enable e-commerce for your reports in Google Analytics</a> and then check the box below."
459
+ msgstr ""
460
+
461
+ #: admin/class-admin.php:649
462
+ msgid "Shopp e-Commerce Settings"
463
+ msgstr ""
464
+
465
+ #: admin/class-admin.php:652
466
+ msgid "If you want to confirm that tracking on your blog is working as it should, enable this option and check the console in %sFirebug%s (for Firefox), %sFirebug Lite%s (for other browsers) or Chrome &amp; Safari's Web Inspector. Be absolutely sure to disable debugging afterwards, as it is slower than normal tracking."
467
+ msgstr ""
468
+
469
+ #: admin/class-admin.php:653
470
+ msgid "Note"
471
+ msgstr ""
472
+
473
+ #: admin/class-admin.php:653
474
+ msgid "the debugging and firebug scripts are only loaded for admins."
475
+ msgstr ""
476
+
477
+ #: admin/class-admin.php:657
478
+ msgid "Enable debug mode"
479
+ msgstr ""
480
+
481
+ #: admin/class-admin.php:662
482
+ msgid "Enable Firebug Lite"
483
+ msgstr ""
484
+
485
+ #: admin/class-admin.php:665
486
+ msgid "Debug Mode"
487
+ msgstr ""
488
+
489
+ #: admin/class-admin.php:670
490
+ msgid "Do you really want to reset all settings?"
491
+ msgstr ""
492
+
493
+ #: admin/class-admin.php:674
494
+ msgid "Reset All Settings &raquo;"
495
+ msgstr ""
496
+
497
+ #: admin/class-admin.php:683
498
+ msgid "Help Spread the Word!"
499
+ msgstr ""
500
+
501
+ #: admin/class-admin.php:683
502
+ msgid "Want to help make this plugin even better? All donations are used to improve this plugin, so donate $20, $50 or $100 now!"
503
+ msgstr ""
504
+
505
+ #: admin/class-admin.php:689
506
+ msgid "Or you could:"
507
+ msgstr ""
508
+
509
+ #: admin/class-admin.php:691
510
+ msgid "Rate the plugin 5★ on WordPress.org"
511
+ msgstr ""
512
+
513
+ #: admin/class-admin.php:692
514
+ msgid "Help out other users in the forums"
515
+ msgstr ""
516
+
517
+ #: admin/class-admin.php:693
518
+ msgid "Blog about it & link to the %1$splugin page%2$s"
519
+ msgstr ""
520
+
521
+ #: admin/class-admin.php:755
522
+ msgid "Google Analytics is not active."
523
+ msgstr ""
524
+
525
+ #: admin/class-admin.php:755
526
+ msgid "You must %sselect which Analytics Profile to track%s before it can work."
527
+ msgstr ""
528
+
529
+ #: admin/class-pointer.php:37
530
+ msgid "Help improve Google Analytics for WordPress"
531
+ msgstr ""
532
+
533
+ #: admin/class-pointer.php:38
534
+ msgid "You've just installed Google Analytics for WordPress by Yoast. Please helps us improve it by allowing us to gather anonymous usage stats so we know which configurations, plugins and themes to test with."
535
+ msgstr ""
536
+
537
+ #: admin/class-pointer.php:43
538
+ msgid "Allow tracking"
539
+ msgstr ""
540
+
541
+ #: admin/class-pointer.php:49
542
+ msgid "Do not allow tracking"
543
+ msgstr ""
544
+
545
+ #: admin/yst_plugin_tools.php:54
546
+ msgid "Settings"
547
+ msgstr ""
548
+
549
+ #: admin/yst_plugin_tools.php:170
550
+ msgid "Why not do any or all of the following:"
551
+ msgstr ""
552
+
553
+ #: admin/yst_plugin_tools.php:172
554
+ msgid "Link to it so other folks can find out about it."
555
+ msgstr ""
556
+
557
+ #: admin/yst_plugin_tools.php:173
558
+ msgid "Give it a 5 star rating on WordPress.org."
559
+ msgstr ""
560
+
561
+ #: admin/yst_plugin_tools.php:174
562
+ msgid "Let other people know that it works with your WordPress setup."
563
+ msgstr ""
564
+
565
+ #: admin/yst_plugin_tools.php:176
566
+ msgid "Like this plugin?"
567
+ msgstr ""
568
+
569
+ #: frontend/class-frontend.php:75
570
+ msgid "Google Analytics tracking code not shown because you haven't setup Google Analytics for WordPress yet."
571
+ msgstr ""
572
+
573
+ #: frontend/class-frontend.php:310
574
+ msgid "Google Analytics tracking code not shown because users over level %s are ignored."
575
+ msgstr ""
576
+
577
+ #: frontend/class-frontend.php:661
578
+ msgid "Please set Google Analytics position to \"manual\" in the settings, or remove this call to yoast_analytics();"
579
+ msgstr ""
languages/google-analytics-for-wordpress-el_GR.mo ADDED
Binary file
languages/google-analytics-for-wordpress-el_GR.po ADDED
@@ -0,0 +1,579 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Google Analytics for WordPress in Greek
2
+ # This file is distributed under the same license as the Google Analytics for WordPress package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2014-01-06 10:24:28+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/0.1\n"
11
+ "Project-Id-Version: Google Analytics for WordPress\n"
12
+
13
+ #: admin/class-admin.php:30
14
+ msgid "Google Analytics Configuration"
15
+ msgstr "Ρυθμίσεις Google Analytics"
16
+
17
+ #: admin/class-admin.php:31
18
+ msgid "Google Analytics"
19
+ msgstr "Google Analytics"
20
+
21
+ #: admin/class-admin.php:129
22
+ msgid "The maximum number of allowed custom variables in Google Analytics is 5, please unselect one of the other custom variables before selecting this one."
23
+ msgstr ""
24
+
25
+ #: admin/class-admin.php:136
26
+ msgid "That's not a valid UA ID, please make sure it matches the expected pattern of: UA-XXXXXX-X, and that there are no spaces or other characters in the input field."
27
+ msgstr ""
28
+
29
+ #: admin/class-admin.php:151
30
+ msgid "Having problems?"
31
+ msgstr "Έχετε κάποιο πρόβλημα;"
32
+
33
+ #: admin/class-admin.php:152
34
+ msgid "If you're having problems with this plugin, please refer to its <a href='%s'>FAQ page</a>."
35
+ msgstr "Αν αντιμετωπίζετε κάποιο πρόβλημα με αυτό το plugin, παρακαλούμε να το αναφέρετε στη <a href='%s'>σελίδα FAQ</a>"
36
+
37
+ #: admin/class-admin.php:171
38
+ msgid "Google Analytics settings reset."
39
+ msgstr "Οι ρυθμίσεις του Google Analytics επαναφέρθηκαν."
40
+
41
+ #: admin/class-admin.php:174
42
+ msgid "You cannot edit the Google Analytics for WordPress options."
43
+ msgstr "Δεν μπορείτε να τροποποιήσετε τις επιλογές του Google Analytics για WordPress."
44
+
45
+ #: admin/class-admin.php:220
46
+ msgid "Google Analytics settings updated."
47
+ msgstr "Οι ρυθμίσεις του Google Analytics ενημερώθηκαν."
48
+
49
+ #: admin/class-admin.php:227
50
+ msgid "Update Google Analytics Settings &raquo;"
51
+ msgstr ""
52
+
53
+ #: admin/class-admin.php:263
54
+ msgid "Google Analytics for WordPress Configuration"
55
+ msgstr "Ρύθμιση του Google Analytics για το WordPress."
56
+
57
+ #: admin/class-admin.php:275
58
+ msgid "Please authenticate with Google Analytics to retrieve your tracking code:"
59
+ msgstr "Παρακαλούμε επικυρώστε την αυθεντικότητα του Google Analytics για να πάρετε το κώδικα παρακολούθησής σας."
60
+
61
+ #: admin/class-admin.php:275
62
+ msgid "Click here to authenticate with Google"
63
+ msgstr "Πατήστε εδώ για να επικυρώσετε την αυθεντικότητα με το Google."
64
+
65
+ #: admin/class-admin.php:340
66
+ msgid "Please select the correct Analytics Account"
67
+ msgstr "Παρακαλούμε επιλέξτε το σωστό λογαριασμό στο Analytics."
68
+
69
+ #: admin/class-admin.php:349
70
+ msgid "Please select the correct Analytics account to track:"
71
+ msgstr ""
72
+
73
+ #: admin/class-admin.php:351
74
+ msgid "Profile"
75
+ msgstr "Προφίλ"
76
+
77
+ #: admin/class-admin.php:363
78
+ msgid "Please note that if you have several profiles of the same website, it doesn't matter which profile you select, and in fact another profile might show as selected later. You can check whether they're profiles for the same site by checking if they have the same UA code. If that's true, tracking will be correct."
79
+ msgstr "Παρακαλούμε σημειώστε ότι εάν έχετε περισσότερα από ένα προφίλ για την ίδια σελίδα, δεν έχει σημασία ποιο από τα προφίλ θα επιλέξετε, και στην πράξη ένα από τα άλλα προφίλ ίσως φαίνεται ως επιλεγμένο αργότερα. Μπορείτε να ελέγξετε αν υπάρχουν πολλά προφίλ για την ίδια σελίδα ελέγχοντας έαν αυτές έχουν το ίδιο UA κωδικό. Αν αυτό ισχύει, η παρακολούθηση θα λειτουργεί σωστά."
80
+
81
+ #: admin/class-admin.php:365
82
+ msgid "Refresh this listing or switch to another account: "
83
+ msgstr "Ανανεώστε τη λίστα ή μεταβείτε σε έναν άλλο λογαριασμό."
84
+
85
+ #: admin/class-admin.php:367
86
+ msgid "Unfortunately, an error occurred while connecting to Google, please try again:"
87
+ msgstr "Δυστυχώς προέκυψε ένα σφάλμα κατά τη σύνδεση με το Google, παρακαλούμε προσπαθήστε πάλι:"
88
+
89
+ #: admin/class-admin.php:371
90
+ msgid "Re-authenticate with Google"
91
+ msgstr "Επαναεπικυρώστε την ταυτότητα με το Google"
92
+
93
+ #: admin/class-admin.php:373
94
+ msgid "Select another Analytics Profile &raquo;"
95
+ msgstr "Επιλέξτε ένα άλλο προφίλ Analytics &raquo;"
96
+
97
+ #: admin/class-admin.php:375
98
+ msgid "Manually enter your UA code: "
99
+ msgstr "Προσθέστε χειροκίνητα τον UA κωδικό σας:"
100
+
101
+ #: admin/class-admin.php:380
102
+ msgid "Analytics Profile"
103
+ msgstr "Προφίλ Analytics"
104
+
105
+ #: admin/class-admin.php:381
106
+ msgid "Manually enter your UA code"
107
+ msgstr "Προσθέστε χειροκίνητα τον UA κωδικό σας"
108
+
109
+ #: admin/class-admin.php:384
110
+ msgid "In the header (default)"
111
+ msgstr "Στην κεφαλίδα-header (προεπιλογή)"
112
+
113
+ #: admin/class-admin.php:384
114
+ msgid "Insert manually"
115
+ msgstr "Εισάγετε χειροκίνητα"
116
+
117
+ #: admin/class-admin.php:387
118
+ msgid "Notice"
119
+ msgstr "Προσοχή"
120
+
121
+ #: admin/class-admin.php:387
122
+ msgid "You switched your theme, please make sure your Google Analytics tracking is still ok. Save your settings to make sure Google Analytics gets loaded properly."
123
+ msgstr "Αλλάξατε το θέμα σας, παρακαλούμε βεβαιωθείτε ότι η παρακολούθηση του Google Analytics λειτουργεί σωστά. Αποθηκεύστε τις ρυθμίσεις σας για να είστε σίγουροι ότι το Google Analytics θα φορτωθεί σωστά."
124
+
125
+ #: admin/class-admin.php:390
126
+ msgid "The header is by far the best spot to place the tracking code. If you'd rather place the code manually, switch to manual placement. For more info %sread this page%s."
127
+ msgstr "Η κεφαλίδα-header είναι μακράν το καλύτερο σημείο για να εισάγετε τον δικό σας κώδικα παρακολούθησης. Εάν προτιμάτε να εισάγετε τον κώδικα χειροκίνητα, αλλάξτε στην χειροκίνητη εισαγωγή. Για περισσότερες πληροφορίες %sδιαβάστε αυτή τη σελίδα%s."
128
+
129
+ #: admin/class-admin.php:391
130
+ msgid "%sFollow the instructions here%s to choose the location for your tracking code manually."
131
+ msgstr ""
132
+
133
+ #: admin/class-admin.php:395
134
+ msgid "Where should the tracking code be placed"
135
+ msgstr ""
136
+
137
+ #: admin/class-admin.php:401
138
+ msgid "Track outbound clicks &amp; downloads"
139
+ msgstr ""
140
+
141
+ #: admin/class-admin.php:402
142
+ msgid "Clicks &amp; downloads will be tracked as events, you can find these under Content &raquo; Event Tracking in your Google Analytics reports."
143
+ msgstr ""
144
+
145
+ #: admin/class-admin.php:407
146
+ msgid "Show advanced settings"
147
+ msgstr ""
148
+
149
+ #: admin/class-admin.php:408
150
+ msgid "Only adviced for advanced users who know their way around Google Analytics"
151
+ msgstr ""
152
+
153
+ #: admin/class-admin.php:413
154
+ msgid "Allow tracking of anonymous data"
155
+ msgstr ""
156
+
157
+ #: admin/class-admin.php:414
158
+ msgid "By allowing us to track anonymous data we can better help you, because we know with which WordPress configurations, themes and plugins we should test. No personal data will be submitted."
159
+ msgstr ""
160
+
161
+ #: admin/class-admin.php:417
162
+ msgid "Google Analytics Settings"
163
+ msgstr ""
164
+
165
+ #: admin/class-admin.php:420
166
+ msgid "Google Analytics allows you to save up to 5 custom variables on each page, and this plugin helps you make the most use of these! Check which custom variables you'd like the plugin to save for you below. Please note that these will only be saved when they are actually available."
167
+ msgstr ""
168
+
169
+ #: admin/class-admin.php:421
170
+ msgid "If you want to start using these custom variables, go to Visitors &raquo; Custom Variables in your Analytics reports."
171
+ msgstr ""
172
+
173
+ #: admin/class-admin.php:424
174
+ msgid "Logged in Users"
175
+ msgstr ""
176
+
177
+ #: admin/class-admin.php:425
178
+ msgid "Allows you to easily remove logged in users from your reports, or to segment by different user roles. The users primary role will be logged."
179
+ msgstr ""
180
+
181
+ #: admin/class-admin.php:430
182
+ msgid "Post type"
183
+ msgstr ""
184
+
185
+ #: admin/class-admin.php:431
186
+ msgid "Allows you to see pageviews per post type, especially useful if you use multiple custom post types."
187
+ msgstr ""
188
+
189
+ #: admin/class-admin.php:436
190
+ msgid "Author Name"
191
+ msgstr ""
192
+
193
+ #: admin/class-admin.php:437
194
+ msgid "Allows you to see pageviews per author."
195
+ msgstr ""
196
+
197
+ #: admin/class-admin.php:442
198
+ msgid "Tags"
199
+ msgstr ""
200
+
201
+ #: admin/class-admin.php:443
202
+ msgid "Allows you to see pageviews per tags using advanced segments."
203
+ msgstr ""
204
+
205
+ #: admin/class-admin.php:448
206
+ msgid "Publication year"
207
+ msgstr ""
208
+
209
+ #: admin/class-admin.php:449
210
+ msgid "Allows you to see pageviews per year of publication, showing you if your old posts still get traffic."
211
+ msgstr ""
212
+
213
+ #: admin/class-admin.php:454
214
+ msgid "Single Category"
215
+ msgstr ""
216
+
217
+ #: admin/class-admin.php:455
218
+ msgid "Allows you to see pageviews per category, works best when each post is in only one category."
219
+ msgstr ""
220
+
221
+ #: admin/class-admin.php:460
222
+ msgid "All Categories"
223
+ msgstr ""
224
+
225
+ #: admin/class-admin.php:461
226
+ msgid "Allows you to see pageviews per category using advanced segments, should be used when you use multiple categories per post."
227
+ msgstr ""
228
+
229
+ #: admin/class-admin.php:466
230
+ msgid "Custom Variables Settings"
231
+ msgstr ""
232
+
233
+ #: admin/class-admin.php:471
234
+ msgid "Ignore users"
235
+ msgstr ""
236
+
237
+ #: admin/class-admin.php:472
238
+ msgid "Users of the role you select and higher will be ignored, so if you select Editor, all Editors and Administrators will be ignored."
239
+ msgstr ""
240
+
241
+ #: admin/class-admin.php:474
242
+ msgid "Ignore no-one"
243
+ msgstr ""
244
+
245
+ #: admin/class-admin.php:475
246
+ msgid "Administrator"
247
+ msgstr ""
248
+
249
+ #: admin/class-admin.php:476
250
+ msgid "Editor"
251
+ msgstr ""
252
+
253
+ #: admin/class-admin.php:477
254
+ msgid "Author"
255
+ msgstr ""
256
+
257
+ #: admin/class-admin.php:478
258
+ msgid "Contributor"
259
+ msgstr ""
260
+
261
+ #: admin/class-admin.php:479
262
+ msgid "Subscriber (ignores all logged in users)"
263
+ msgstr ""
264
+
265
+ #: admin/class-admin.php:484
266
+ msgid "Track outbound clicks as pageviews"
267
+ msgstr ""
268
+
269
+ #: admin/class-admin.php:485
270
+ msgid "You do not need to enable this to enable outbound click tracking, this changes the default behavior of tracking clicks as events to tracking them as pageviews. This is therefore not recommended, as this would skew your statistics, but <em>is</em> sometimes necessary when you need to set outbound clicks as goals."
271
+ msgstr ""
272
+
273
+ #: admin/class-admin.php:490
274
+ msgid "Track downloads as pageviews"
275
+ msgstr ""
276
+
277
+ #: admin/class-admin.php:491
278
+ msgid "Not recommended, as this would skew your statistics, but it does make it possible to track downloads as goals."
279
+ msgstr ""
280
+
281
+ #: admin/class-admin.php:496
282
+ msgid "Extensions of files to track as downloads"
283
+ msgstr ""
284
+
285
+ #: admin/class-admin.php:502
286
+ msgid "Prefix to use in Analytics before the tracked pageviews"
287
+ msgstr ""
288
+
289
+ #: admin/class-admin.php:503
290
+ msgid "This prefix is used before all pageviews, they are then segmented automatically after that. If nothing is entered here, <code>/yoast-ga/</code> is used."
291
+ msgstr ""
292
+
293
+ #: admin/class-admin.php:509
294
+ msgid "Track full URL of outbound clicks or just the domain"
295
+ msgstr ""
296
+
297
+ #: admin/class-admin.php:511
298
+ msgid "Just the domain"
299
+ msgstr ""
300
+
301
+ #: admin/class-admin.php:512
302
+ msgid "Track the complete URL"
303
+ msgstr ""
304
+
305
+ #: admin/class-admin.php:518
306
+ msgid "Subdomain Tracking"
307
+ msgstr ""
308
+
309
+ #: admin/class-admin.php:519
310
+ msgid "This allows you to set the domain that's set by %s<code>setDomainName</code>%s for tracking subdomains, if empty this will not be set."
311
+ msgstr ""
312
+
313
+ #: admin/class-admin.php:524
314
+ msgid "Enable Cross Domain Tracking"
315
+ msgstr ""
316
+
317
+ #: admin/class-admin.php:525
318
+ msgid "This allows you to enable %sCross-Domain Tracking%s for this site. When endabled <code>_setAllowLinker:</code> will be enabled if it is not already."
319
+ msgstr ""
320
+
321
+ #: admin/class-admin.php:530
322
+ msgid "Cross-Domain Tracking, Primary Domain"
323
+ msgstr ""
324
+
325
+ #: admin/class-admin.php:531
326
+ msgid "Set the primary domain used in %s<code>setDomainName</code>%s for cross domain tracking (eg. <code>example-petstore.com</code> ), if empty this will default to your configured Home URL."
327
+ msgstr ""
328
+
329
+ #: admin/class-admin.php:536
330
+ msgid "Cross-Domain Tracking, Other Domains"
331
+ msgstr ""
332
+
333
+ #: admin/class-admin.php:537
334
+ msgid "All links to these domains will have the <a href=\"http://code.google.com/apis/analytics/docs/tracking/gaTrackingSite.html#multipleDomains\"><code>_link</code></a> code automatically attached. Separate domains/sub-domains with commas (eg. <code>dogs.example-petstore.com, cats.example-petstore.com</code>)"
335
+ msgstr ""
336
+
337
+ #: admin/class-admin.php:542
338
+ msgid "Custom Code"
339
+ msgstr ""
340
+
341
+ #: admin/class-admin.php:543
342
+ msgid "Not for the average user: this allows you to add a line of code, to be added before the <code>trackPageview</code> call."
343
+ msgstr ""
344
+
345
+ #: admin/class-admin.php:548
346
+ msgid "Track AdSense"
347
+ msgstr ""
348
+
349
+ #: admin/class-admin.php:549
350
+ msgid "This requires integration of your Analytics and AdSense account, for help, <a href=\"http://google.com/support/analytics/bin/answer.py?answer=92625\">look here</a>."
351
+ msgstr ""
352
+
353
+ #: admin/class-admin.php:554
354
+ msgid "Host ga.js locally"
355
+ msgstr ""
356
+
357
+ #: admin/class-admin.php:556
358
+ msgid "You have to provide a URL to your ga.js file:"
359
+ msgstr ""
360
+
361
+ #: admin/class-admin.php:559
362
+ msgid "For some reasons you might want to use a locally hosted ga.js file, or another ga.js file, check the box and then please enter the full URL including http here."
363
+ msgstr ""
364
+
365
+ #: admin/class-admin.php:563
366
+ msgid "Track extra Search Engines"
367
+ msgstr ""
368
+
369
+ #: admin/class-admin.php:565
370
+ msgid "You can provide a custom URL to the extra search engines file if you want:"
371
+ msgstr ""
372
+
373
+ #: admin/class-admin.php:571
374
+ msgid "Tag links in RSS feed with campaign variables"
375
+ msgstr ""
376
+
377
+ #: admin/class-admin.php:572
378
+ msgid "Do not use this feature if you use FeedBurner, as FeedBurner can do this automatically, and better than this plugin can. Check <a href=\"http://www.google.com/support/feedburner/bin/answer.py?hl=en&amp;answer=165769\">this help page</a> for info on how to enable this feature in FeedBurner."
379
+ msgstr ""
380
+
381
+ #: admin/class-admin.php:577
382
+ msgid "Add tracking to the login and registration forms"
383
+ msgstr ""
384
+
385
+ #: admin/class-admin.php:582
386
+ msgid "Add tracking to the comment forms"
387
+ msgstr ""
388
+
389
+ #: admin/class-admin.php:587
390
+ msgid "Use # instead of ? for Campaign tracking"
391
+ msgstr ""
392
+
393
+ #: admin/class-admin.php:588
394
+ msgid "This adds a <code><a href=\"http://code.google.com/apis/analytics/docs/gaJSApiCampaignTracking.html#_gat.GA_Tracker_._setAllowAnchor\">_setAllowAnchor</a></code> call to your tracking code, and makes RSS link tagging use a # as well."
395
+ msgstr ""
396
+
397
+ #: admin/class-admin.php:593
398
+ msgid "Add <code>_setAllowLinker</code>"
399
+ msgstr ""
400
+
401
+ #: admin/class-admin.php:594
402
+ msgid "This adds a <code><a href=\"http://code.google.com/apis/analytics/docs/gaJS/gaJSApiDomainDirectory.html#_gat.GA_Tracker_._setAllowLinker\">_setAllowLinker</a></code> call to your tracking code, allowing you to use <code>_link</code> and related functions."
403
+ msgstr ""
404
+
405
+ #: admin/class-admin.php:599
406
+ msgid "Set <code>_setAllowHash</code> to false"
407
+ msgstr ""
408
+
409
+ #: admin/class-admin.php:600
410
+ msgid "This sets <code><a href=\"http://code.google.com/apis/analytics/docs/gaJS/gaJSApiDomainDirectory.html#_gat.GA_Tracker_._setAllowHash\">_setAllowHash</a></code> to false, allowing you to track subdomains etc."
411
+ msgstr ""
412
+
413
+ #: admin/class-admin.php:605
414
+ msgid "Anonymize IP's"
415
+ msgstr ""
416
+
417
+ #: admin/class-admin.php:606
418
+ msgid "This adds <code><a href=\"http://code.google.com/apis/analytics/docs/gaJS/gaJSApi_gat.html#_gat._anonymizeIp\">_anonymizeIp</a></code>, telling Google Analytics to anonymize the information sent by the tracker objects by removing the last octet of the IP address prior to its storage."
419
+ msgstr ""
420
+
421
+ #: admin/class-admin.php:610
422
+ msgid "Advanced Settings"
423
+ msgstr ""
424
+
425
+ #: admin/class-admin.php:615
426
+ msgid "Internal links to track as outbound"
427
+ msgstr ""
428
+
429
+ #: admin/class-admin.php:616
430
+ msgid "If you want to track all internal links that begin with <code>/out/</code>, enter <code>/out/</code> in the box above. If you have multiple prefixes you can separate them with comma's: <code>/out/,/recommends/</code>"
431
+ msgstr ""
432
+
433
+ #: admin/class-admin.php:621
434
+ msgid "Label to use"
435
+ msgstr ""
436
+
437
+ #: admin/class-admin.php:622
438
+ msgid "The label to use for these links, this will be added to where the click came from, so if the label is \"aff\", the label for a click from the content of an article becomes \"outbound-article-aff\"."
439
+ msgstr ""
440
+
441
+ #: admin/class-admin.php:626
442
+ msgid "Internal Links to Track as Outbound"
443
+ msgstr ""
444
+
445
+ #: admin/class-admin.php:629
446
+ msgid "The WordPress e-Commerce plugin has been detected. This plugin can automatically add transaction tracking for you. To do that, <a href=\"http://yoast.com/wordpress/google-analytics/enable-ecommerce/\">enable e-commerce for your reports in Google Analytics</a> and then check the box below."
447
+ msgstr ""
448
+
449
+ #: admin/class-admin.php:633 admin/class-admin.php:646
450
+ msgid "Enable transaction tracking"
451
+ msgstr ""
452
+
453
+ #: admin/class-admin.php:636
454
+ msgid "WordPress e-Commerce Settings"
455
+ msgstr ""
456
+
457
+ #: admin/class-admin.php:642
458
+ msgid "The Shopp e-Commerce plugin has been detected. This plugin can automatically add transaction tracking for you. To do that, <a href=\"http://www.google.com/support/googleanalytics/bin/answer.py?hl=en&amp;answer=55528\">enable e-commerce for your reports in Google Analytics</a> and then check the box below."
459
+ msgstr ""
460
+
461
+ #: admin/class-admin.php:649
462
+ msgid "Shopp e-Commerce Settings"
463
+ msgstr ""
464
+
465
+ #: admin/class-admin.php:652
466
+ msgid "If you want to confirm that tracking on your blog is working as it should, enable this option and check the console in %sFirebug%s (for Firefox), %sFirebug Lite%s (for other browsers) or Chrome &amp; Safari's Web Inspector. Be absolutely sure to disable debugging afterwards, as it is slower than normal tracking."
467
+ msgstr ""
468
+
469
+ #: admin/class-admin.php:653
470
+ msgid "Note"
471
+ msgstr ""
472
+
473
+ #: admin/class-admin.php:653
474
+ msgid "the debugging and firebug scripts are only loaded for admins."
475
+ msgstr ""
476
+
477
+ #: admin/class-admin.php:657
478
+ msgid "Enable debug mode"
479
+ msgstr ""
480
+
481
+ #: admin/class-admin.php:662
482
+ msgid "Enable Firebug Lite"
483
+ msgstr ""
484
+
485
+ #: admin/class-admin.php:665
486
+ msgid "Debug Mode"
487
+ msgstr ""
488
+
489
+ #: admin/class-admin.php:670
490
+ msgid "Do you really want to reset all settings?"
491
+ msgstr ""
492
+
493
+ #: admin/class-admin.php:674
494
+ msgid "Reset All Settings &raquo;"
495
+ msgstr ""
496
+
497
+ #: admin/class-admin.php:683
498
+ msgid "Help Spread the Word!"
499
+ msgstr ""
500
+
501
+ #: admin/class-admin.php:683
502
+ msgid "Want to help make this plugin even better? All donations are used to improve this plugin, so donate $20, $50 or $100 now!"
503
+ msgstr ""
504
+
505
+ #: admin/class-admin.php:689
506
+ msgid "Or you could:"
507
+ msgstr ""
508
+
509
+ #: admin/class-admin.php:691
510
+ msgid "Rate the plugin 5★ on WordPress.org"
511
+ msgstr ""
512
+
513
+ #: admin/class-admin.php:692
514
+ msgid "Help out other users in the forums"
515
+ msgstr ""
516
+
517
+ #: admin/class-admin.php:693
518
+ msgid "Blog about it & link to the %1$splugin page%2$s"
519
+ msgstr ""
520
+
521
+ #: admin/class-admin.php:755
522
+ msgid "Google Analytics is not active."
523
+ msgstr ""
524
+
525
+ #: admin/class-admin.php:755
526
+ msgid "You must %sselect which Analytics Profile to track%s before it can work."
527
+ msgstr ""
528
+
529
+ #: admin/class-pointer.php:37
530
+ msgid "Help improve Google Analytics for WordPress"
531
+ msgstr ""
532
+
533
+ #: admin/class-pointer.php:38
534
+ msgid "You've just installed Google Analytics for WordPress by Yoast. Please helps us improve it by allowing us to gather anonymous usage stats so we know which configurations, plugins and themes to test with."
535
+ msgstr ""
536
+
537
+ #: admin/class-pointer.php:43
538
+ msgid "Allow tracking"
539
+ msgstr ""
540
+
541
+ #: admin/class-pointer.php:49
542
+ msgid "Do not allow tracking"
543
+ msgstr ""
544
+
545
+ #: admin/yst_plugin_tools.php:54
546
+ msgid "Settings"
547
+ msgstr ""
548
+
549
+ #: admin/yst_plugin_tools.php:170
550
+ msgid "Why not do any or all of the following:"
551
+ msgstr ""
552
+
553
+ #: admin/yst_plugin_tools.php:172
554
+ msgid "Link to it so other folks can find out about it."
555
+ msgstr ""
556
+
557
+ #: admin/yst_plugin_tools.php:173
558
+ msgid "Give it a 5 star rating on WordPress.org."
559
+ msgstr ""
560
+
561
+ #: admin/yst_plugin_tools.php:174
562
+ msgid "Let other people know that it works with your WordPress setup."
563
+ msgstr ""
564
+
565
+ #: admin/yst_plugin_tools.php:176
566
+ msgid "Like this plugin?"
567
+ msgstr ""
568
+
569
+ #: frontend/class-frontend.php:75
570
+ msgid "Google Analytics tracking code not shown because you haven't setup Google Analytics for WordPress yet."
571
+ msgstr ""
572
+
573
+ #: frontend/class-frontend.php:310
574
+ msgid "Google Analytics tracking code not shown because users over level %s are ignored."
575
+ msgstr ""
576
+
577
+ #: frontend/class-frontend.php:661
578
+ msgid "Please set Google Analytics position to \"manual\" in the settings, or remove this call to yoast_analytics();"
579
+ msgstr ""
languages/google-analytics-for-wordpress-es_ES.mo ADDED
Binary file
languages/google-analytics-for-wordpress-es_ES.po ADDED
@@ -0,0 +1,579 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Google Analytics for WordPress in Spanish (Spain)
2
+ # This file is distributed under the same license as the Google Analytics for WordPress package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2014-01-06 10:18:24+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/0.1\n"
11
+ "Project-Id-Version: Google Analytics for WordPress\n"
12
+
13
+ #: admin/class-admin.php:30
14
+ msgid "Google Analytics Configuration"
15
+ msgstr "Configuración del Analizador de Google"
16
+
17
+ #: admin/class-admin.php:31
18
+ msgid "Google Analytics"
19
+ msgstr "Analizador de Google"
20
+
21
+ #: admin/class-admin.php:129
22
+ msgid "The maximum number of allowed custom variables in Google Analytics is 5, please unselect one of the other custom variables before selecting this one."
23
+ msgstr "El número máximo permitido de variables personalizadas en el Analizador de Google es 5, por favor, elimina una de las variables anteriores antes de seleccionar ésta."
24
+
25
+ #: admin/class-admin.php:136
26
+ msgid "That's not a valid UA ID, please make sure it matches the expected pattern of: UA-XXXXXX-X, and that there are no spaces or other characters in the input field."
27
+ msgstr "Éste no es un ID de UA válido, por favor, asegúrate de que sigue el siguiente patrón: UA-XXXXXX-X, y que no hay espacios u otros caracteres en el campo de entrada."
28
+
29
+ #: admin/class-admin.php:151
30
+ msgid "Having problems?"
31
+ msgstr "Algún problema?"
32
+
33
+ #: admin/class-admin.php:152
34
+ msgid "If you're having problems with this plugin, please refer to its <a href='%s'>FAQ page</a>."
35
+ msgstr "Si tienes algún problema con este plugin, por favor, redirígete a su <a href='%s'>FAQ page</a>."
36
+
37
+ #: admin/class-admin.php:171
38
+ msgid "Google Analytics settings reset."
39
+ msgstr "Reset de la configuración del Analizador de Google."
40
+
41
+ #: admin/class-admin.php:174
42
+ msgid "You cannot edit the Google Analytics for WordPress options."
43
+ msgstr "No puedes editar las opciones del Analizador de Google para WordPress."
44
+
45
+ #: admin/class-admin.php:220
46
+ msgid "Google Analytics settings updated."
47
+ msgstr "Configuración del Analizador de Google actualizada."
48
+
49
+ #: admin/class-admin.php:227
50
+ msgid "Update Google Analytics Settings &raquo;"
51
+ msgstr "Actualizar la configuración del Analizador de Google &raquo;"
52
+
53
+ #: admin/class-admin.php:263
54
+ msgid "Google Analytics for WordPress Configuration"
55
+ msgstr "Configuración del Analizador de Google para WordPress"
56
+
57
+ #: admin/class-admin.php:275
58
+ msgid "Please authenticate with Google Analytics to retrieve your tracking code:"
59
+ msgstr "Por favor, confirma tu identidad con el Analizador de Google para localizar tu código de búsqueda:"
60
+
61
+ #: admin/class-admin.php:275
62
+ msgid "Click here to authenticate with Google"
63
+ msgstr "Haz click aquí para confirmar tu identidad con Google"
64
+
65
+ #: admin/class-admin.php:340
66
+ msgid "Please select the correct Analytics Account"
67
+ msgstr "Por favor, selecciona la cuenta del Analizador correcta"
68
+
69
+ #: admin/class-admin.php:349
70
+ msgid "Please select the correct Analytics account to track:"
71
+ msgstr "Por favor, selecciona la cuenta correcta del Analizador para seguir:"
72
+
73
+ #: admin/class-admin.php:351
74
+ msgid "Profile"
75
+ msgstr "Perfil"
76
+
77
+ #: admin/class-admin.php:363
78
+ msgid "Please note that if you have several profiles of the same website, it doesn't matter which profile you select, and in fact another profile might show as selected later. You can check whether they're profiles for the same site by checking if they have the same UA code. If that's true, tracking will be correct."
79
+ msgstr "Por favor, ten en cuenta que si tienes varios perfiles en la misma página web, no importa qué perfil selecciones, y de hecho puede mostrarse otro perfil más tarde distinto del que selecciones. Puedes comprobar si hay perfiles para la misma página comprobando si tienen al mismo código UA. Si es correcto, el tracking será correcto."
80
+
81
+ #: admin/class-admin.php:365
82
+ msgid "Refresh this listing or switch to another account: "
83
+ msgstr "Refresca este listing o cambia a otra cuenta:"
84
+
85
+ #: admin/class-admin.php:367
86
+ msgid "Unfortunately, an error occurred while connecting to Google, please try again:"
87
+ msgstr "Desafortunadamente, ha ocurrido un error al conectar con Google, por favor, inténtelo de nuevo:"
88
+
89
+ #: admin/class-admin.php:371
90
+ msgid "Re-authenticate with Google"
91
+ msgstr "Re-confirma tu identidad con Google"
92
+
93
+ #: admin/class-admin.php:373
94
+ msgid "Select another Analytics Profile &raquo;"
95
+ msgstr "Selecciona otro perfil del Analizador &raquo;"
96
+
97
+ #: admin/class-admin.php:375
98
+ msgid "Manually enter your UA code: "
99
+ msgstr "Introduce manualmente tu código UA:"
100
+
101
+ #: admin/class-admin.php:380
102
+ msgid "Analytics Profile"
103
+ msgstr "Perfil del Analizador"
104
+
105
+ #: admin/class-admin.php:381
106
+ msgid "Manually enter your UA code"
107
+ msgstr "Introduce manualmente tu código UA"
108
+
109
+ #: admin/class-admin.php:384
110
+ msgid "In the header (default)"
111
+ msgstr "En la cabecera (por defecto)"
112
+
113
+ #: admin/class-admin.php:384
114
+ msgid "Insert manually"
115
+ msgstr "Introducir manualmente"
116
+
117
+ #: admin/class-admin.php:387
118
+ msgid "Notice"
119
+ msgstr "Date cuenta"
120
+
121
+ #: admin/class-admin.php:387
122
+ msgid "You switched your theme, please make sure your Google Analytics tracking is still ok. Save your settings to make sure Google Analytics gets loaded properly."
123
+ msgstr "Has cambiad tu tema, por favor, asegúrate de que tu tracking del Analizador de Google está todavía correcto. Guarda tu configuración para asegurarte de que el Analizador de Google se carga correctamente."
124
+
125
+ #: admin/class-admin.php:390
126
+ msgid "The header is by far the best spot to place the tracking code. If you'd rather place the code manually, switch to manual placement. For more info %sread this page%s."
127
+ msgstr "La cabecera es de lejos el mejor lugar para poner el código de seguimiento. Si prefieres poner el código manualmente, cambia a posicionamiento manual. Para más información, %sread this page%s."
128
+
129
+ #: admin/class-admin.php:391
130
+ msgid "%sFollow the instructions here%s to choose the location for your tracking code manually."
131
+ msgstr "%sSigue las instrucciones siguientes%s para elegir la ubicación de tu código de seguimiento manualmente."
132
+
133
+ #: admin/class-admin.php:395
134
+ msgid "Where should the tracking code be placed"
135
+ msgstr "Donde deberías introducir el código de seguimiento"
136
+
137
+ #: admin/class-admin.php:401
138
+ msgid "Track outbound clicks &amp; downloads"
139
+ msgstr "Clicks de seguimiento de salida &amp; descargas"
140
+
141
+ #: admin/class-admin.php:402
142
+ msgid "Clicks &amp; downloads will be tracked as events, you can find these under Content &raquo; Event Tracking in your Google Analytics reports."
143
+ msgstr "Clicks &amp; las descargas se seguirán como eventos, puedes encontrar éstas en Contenido &raquo; el Seguimiento de Eventos de tu informe del Analizador de Google"
144
+
145
+ #: admin/class-admin.php:407
146
+ msgid "Show advanced settings"
147
+ msgstr "Mostrar configuración avanzada"
148
+
149
+ #: admin/class-admin.php:408
150
+ msgid "Only adviced for advanced users who know their way around Google Analytics"
151
+ msgstr "Sólo recomendado para usuarios avanzados que estén seguros de sus pasos en el Analizador de Google"
152
+
153
+ #: admin/class-admin.php:413
154
+ msgid "Allow tracking of anonymous data"
155
+ msgstr "Permitir seguimiento de datos anónimos"
156
+
157
+ #: admin/class-admin.php:414
158
+ msgid "By allowing us to track anonymous data we can better help you, because we know with which WordPress configurations, themes and plugins we should test. No personal data will be submitted."
159
+ msgstr "Permitiéndonos seguir datos anónimos podemos ayudarte de manera mejor, porque sabemos con qué configuraciones de WordPress, temas y plugins deberíamos probar. No se entregarán datos personales."
160
+
161
+ #: admin/class-admin.php:417
162
+ msgid "Google Analytics Settings"
163
+ msgstr "Configuración del Analizador de Google"
164
+
165
+ #: admin/class-admin.php:420
166
+ msgid "Google Analytics allows you to save up to 5 custom variables on each page, and this plugin helps you make the most use of these! Check which custom variables you'd like the plugin to save for you below. Please note that these will only be saved when they are actually available."
167
+ msgstr "El Analizador de Google te permite guardar hasta 5 variables personalizadas en cada páina, y este plugin te ayuda a hacer el mayor uso de ellas! Elige qué variables personalizadas quieres que el plugin guarde por ti. Por favor, ten en cuenta que sólo serán guardadas cuando estén disponibles."
168
+
169
+ #: admin/class-admin.php:421
170
+ msgid "If you want to start using these custom variables, go to Visitors &raquo; Custom Variables in your Analytics reports."
171
+ msgstr "Si quieres empezar a usar estas variables personalizadsa, dirígete a Visitantes &raquo; Variables Personalizadas en tu informe del Analizador."
172
+
173
+ #: admin/class-admin.php:424
174
+ msgid "Logged in Users"
175
+ msgstr "Usuarios registrados en línea"
176
+
177
+ #: admin/class-admin.php:425
178
+ msgid "Allows you to easily remove logged in users from your reports, or to segment by different user roles. The users primary role will be logged."
179
+ msgstr "Te permite borrar fácilmente los usuarios registrados en línea de tus informes, o agruparlos en distintos roles de usuarios. El rol primario del usuario será mostrado."
180
+
181
+ #: admin/class-admin.php:430
182
+ msgid "Post type"
183
+ msgstr "Tipo de post"
184
+
185
+ #: admin/class-admin.php:431
186
+ msgid "Allows you to see pageviews per post type, especially useful if you use multiple custom post types."
187
+ msgstr "Te permite ver vistas de página por tipo de post, especialmente útil si usas distintos tipos de posts personalizados."
188
+
189
+ #: admin/class-admin.php:436
190
+ msgid "Author Name"
191
+ msgstr "Nombre del autor"
192
+
193
+ #: admin/class-admin.php:437
194
+ msgid "Allows you to see pageviews per author."
195
+ msgstr "Te permite ver vistas de página por autor."
196
+
197
+ #: admin/class-admin.php:442
198
+ msgid "Tags"
199
+ msgstr "Etiquetas"
200
+
201
+ #: admin/class-admin.php:443
202
+ msgid "Allows you to see pageviews per tags using advanced segments."
203
+ msgstr "Te permite ver vistas de página por etiquetas usando grupos avanzados."
204
+
205
+ #: admin/class-admin.php:448
206
+ msgid "Publication year"
207
+ msgstr "Año de publicación"
208
+
209
+ #: admin/class-admin.php:449
210
+ msgid "Allows you to see pageviews per year of publication, showing you if your old posts still get traffic."
211
+ msgstr "Te permite ver vistas previas por año de publicación, mostrando si tus antiguos posts todavía registran tráfico."
212
+
213
+ #: admin/class-admin.php:454
214
+ msgid "Single Category"
215
+ msgstr "Categoría única"
216
+
217
+ #: admin/class-admin.php:455
218
+ msgid "Allows you to see pageviews per category, works best when each post is in only one category."
219
+ msgstr "Te permite ver la vista de página por categoría, funciona mejor cuando cada post está en una única categoría."
220
+
221
+ #: admin/class-admin.php:460
222
+ msgid "All Categories"
223
+ msgstr "Todas las categorías"
224
+
225
+ #: admin/class-admin.php:461
226
+ msgid "Allows you to see pageviews per category using advanced segments, should be used when you use multiple categories per post."
227
+ msgstr "Te permite ver la vista de página por categoría usando grupos avanzados, debería usarse cuando uses múltiples categorías por post."
228
+
229
+ #: admin/class-admin.php:466
230
+ msgid "Custom Variables Settings"
231
+ msgstr "Configuración de las variables personalizadas"
232
+
233
+ #: admin/class-admin.php:471
234
+ msgid "Ignore users"
235
+ msgstr "Ignorar usuarios"
236
+
237
+ #: admin/class-admin.php:472
238
+ msgid "Users of the role you select and higher will be ignored, so if you select Editor, all Editors and Administrators will be ignored."
239
+ msgstr "Los usuarios del rol seleccionado y superior serán ignorados, por lo que si eliges Editor, todos los Editores y Administradores serán ignorados."
240
+
241
+ #: admin/class-admin.php:474
242
+ msgid "Ignore no-one"
243
+ msgstr "No ignorar a nadie"
244
+
245
+ #: admin/class-admin.php:475
246
+ msgid "Administrator"
247
+ msgstr "Administrador"
248
+
249
+ #: admin/class-admin.php:476
250
+ msgid "Editor"
251
+ msgstr "Editor"
252
+
253
+ #: admin/class-admin.php:477
254
+ msgid "Author"
255
+ msgstr "Autor"
256
+
257
+ #: admin/class-admin.php:478
258
+ msgid "Contributor"
259
+ msgstr "Contribuyente"
260
+
261
+ #: admin/class-admin.php:479
262
+ msgid "Subscriber (ignores all logged in users)"
263
+ msgstr "Suscriptor (ignora todos los usuarios en linea)"
264
+
265
+ #: admin/class-admin.php:484
266
+ msgid "Track outbound clicks as pageviews"
267
+ msgstr "Seguir clicks de salida como vistas de página"
268
+
269
+ #: admin/class-admin.php:485
270
+ msgid "You do not need to enable this to enable outbound click tracking, this changes the default behavior of tracking clicks as events to tracking them as pageviews. This is therefore not recommended, as this would skew your statistics, but <em>is</em> sometimes necessary when you need to set outbound clicks as goals."
271
+ msgstr "No necesitas activar esto para activar el seguimiento de clicks de salida, esto cambia el comportamiento por defecto del seguimiento de clicks como eventos para seguirlos como vistas de página. Esto es, por tanto, no recomendado, dado que distorsionaría tus estadísticas, pero but <em>es</em> a veces necesario cuando no necesitas estarblecer clicks de salida como objetivo."
272
+
273
+ #: admin/class-admin.php:490
274
+ msgid "Track downloads as pageviews"
275
+ msgstr "Descarga de los seguimientos como vista de página"
276
+
277
+ #: admin/class-admin.php:491
278
+ msgid "Not recommended, as this would skew your statistics, but it does make it possible to track downloads as goals."
279
+ msgstr "No recomendado, dado que esto distorsionaría tus estadísticas, pero permite hacer el seguimiento de descargas como objetivo."
280
+
281
+ #: admin/class-admin.php:496
282
+ msgid "Extensions of files to track as downloads"
283
+ msgstr "Extensión de los archivos a seguir como descargas"
284
+
285
+ #: admin/class-admin.php:502
286
+ msgid "Prefix to use in Analytics before the tracked pageviews"
287
+ msgstr "Prefijo para usar en el Analizador antes de las vistas de página seguidas"
288
+
289
+ #: admin/class-admin.php:503
290
+ msgid "This prefix is used before all pageviews, they are then segmented automatically after that. If nothing is entered here, <code>/yoast-ga/</code> is used."
291
+ msgstr ""
292
+
293
+ #: admin/class-admin.php:509
294
+ msgid "Track full URL of outbound clicks or just the domain"
295
+ msgstr ""
296
+
297
+ #: admin/class-admin.php:511
298
+ msgid "Just the domain"
299
+ msgstr ""
300
+
301
+ #: admin/class-admin.php:512
302
+ msgid "Track the complete URL"
303
+ msgstr ""
304
+
305
+ #: admin/class-admin.php:518
306
+ msgid "Subdomain Tracking"
307
+ msgstr ""
308
+
309
+ #: admin/class-admin.php:519
310
+ msgid "This allows you to set the domain that's set by %s<code>setDomainName</code>%s for tracking subdomains, if empty this will not be set."
311
+ msgstr ""
312
+
313
+ #: admin/class-admin.php:524
314
+ msgid "Enable Cross Domain Tracking"
315
+ msgstr ""
316
+
317
+ #: admin/class-admin.php:525
318
+ msgid "This allows you to enable %sCross-Domain Tracking%s for this site. When endabled <code>_setAllowLinker:</code> will be enabled if it is not already."
319
+ msgstr ""
320
+
321
+ #: admin/class-admin.php:530
322
+ msgid "Cross-Domain Tracking, Primary Domain"
323
+ msgstr ""
324
+
325
+ #: admin/class-admin.php:531
326
+ msgid "Set the primary domain used in %s<code>setDomainName</code>%s for cross domain tracking (eg. <code>example-petstore.com</code> ), if empty this will default to your configured Home URL."
327
+ msgstr ""
328
+
329
+ #: admin/class-admin.php:536
330
+ msgid "Cross-Domain Tracking, Other Domains"
331
+ msgstr ""
332
+
333
+ #: admin/class-admin.php:537
334
+ msgid "All links to these domains will have the <a href=\"http://code.google.com/apis/analytics/docs/tracking/gaTrackingSite.html#multipleDomains\"><code>_link</code></a> code automatically attached. Separate domains/sub-domains with commas (eg. <code>dogs.example-petstore.com, cats.example-petstore.com</code>)"
335
+ msgstr ""
336
+
337
+ #: admin/class-admin.php:542
338
+ msgid "Custom Code"
339
+ msgstr ""
340
+
341
+ #: admin/class-admin.php:543
342
+ msgid "Not for the average user: this allows you to add a line of code, to be added before the <code>trackPageview</code> call."
343
+ msgstr ""
344
+
345
+ #: admin/class-admin.php:548
346
+ msgid "Track AdSense"
347
+ msgstr ""
348
+
349
+ #: admin/class-admin.php:549
350
+ msgid "This requires integration of your Analytics and AdSense account, for help, <a href=\"http://google.com/support/analytics/bin/answer.py?answer=92625\">look here</a>."
351
+ msgstr ""
352
+
353
+ #: admin/class-admin.php:554
354
+ msgid "Host ga.js locally"
355
+ msgstr ""
356
+
357
+ #: admin/class-admin.php:556
358
+ msgid "You have to provide a URL to your ga.js file:"
359
+ msgstr ""
360
+
361
+ #: admin/class-admin.php:559
362
+ msgid "For some reasons you might want to use a locally hosted ga.js file, or another ga.js file, check the box and then please enter the full URL including http here."
363
+ msgstr ""
364
+
365
+ #: admin/class-admin.php:563
366
+ msgid "Track extra Search Engines"
367
+ msgstr ""
368
+
369
+ #: admin/class-admin.php:565
370
+ msgid "You can provide a custom URL to the extra search engines file if you want:"
371
+ msgstr ""
372
+
373
+ #: admin/class-admin.php:571
374
+ msgid "Tag links in RSS feed with campaign variables"
375
+ msgstr ""
376
+
377
+ #: admin/class-admin.php:572
378
+ msgid "Do not use this feature if you use FeedBurner, as FeedBurner can do this automatically, and better than this plugin can. Check <a href=\"http://www.google.com/support/feedburner/bin/answer.py?hl=en&amp;answer=165769\">this help page</a> for info on how to enable this feature in FeedBurner."
379
+ msgstr ""
380
+
381
+ #: admin/class-admin.php:577
382
+ msgid "Add tracking to the login and registration forms"
383
+ msgstr ""
384
+
385
+ #: admin/class-admin.php:582
386
+ msgid "Add tracking to the comment forms"
387
+ msgstr ""
388
+
389
+ #: admin/class-admin.php:587
390
+ msgid "Use # instead of ? for Campaign tracking"
391
+ msgstr ""
392
+
393
+ #: admin/class-admin.php:588
394
+ msgid "This adds a <code><a href=\"http://code.google.com/apis/analytics/docs/gaJSApiCampaignTracking.html#_gat.GA_Tracker_._setAllowAnchor\">_setAllowAnchor</a></code> call to your tracking code, and makes RSS link tagging use a # as well."
395
+ msgstr ""
396
+
397
+ #: admin/class-admin.php:593
398
+ msgid "Add <code>_setAllowLinker</code>"
399
+ msgstr ""
400
+
401
+ #: admin/class-admin.php:594
402
+ msgid "This adds a <code><a href=\"http://code.google.com/apis/analytics/docs/gaJS/gaJSApiDomainDirectory.html#_gat.GA_Tracker_._setAllowLinker\">_setAllowLinker</a></code> call to your tracking code, allowing you to use <code>_link</code> and related functions."
403
+ msgstr ""
404
+
405
+ #: admin/class-admin.php:599
406
+ msgid "Set <code>_setAllowHash</code> to false"
407
+ msgstr ""
408
+
409
+ #: admin/class-admin.php:600
410
+ msgid "This sets <code><a href=\"http://code.google.com/apis/analytics/docs/gaJS/gaJSApiDomainDirectory.html#_gat.GA_Tracker_._setAllowHash\">_setAllowHash</a></code> to false, allowing you to track subdomains etc."
411
+ msgstr ""
412
+
413
+ #: admin/class-admin.php:605
414
+ msgid "Anonymize IP's"
415
+ msgstr ""
416
+
417
+ #: admin/class-admin.php:606
418
+ msgid "This adds <code><a href=\"http://code.google.com/apis/analytics/docs/gaJS/gaJSApi_gat.html#_gat._anonymizeIp\">_anonymizeIp</a></code>, telling Google Analytics to anonymize the information sent by the tracker objects by removing the last octet of the IP address prior to its storage."
419
+ msgstr ""
420
+
421
+ #: admin/class-admin.php:610
422
+ msgid "Advanced Settings"
423
+ msgstr ""
424
+
425
+ #: admin/class-admin.php:615
426
+ msgid "Internal links to track as outbound"
427
+ msgstr ""
428
+
429
+ #: admin/class-admin.php:616
430
+ msgid "If you want to track all internal links that begin with <code>/out/</code>, enter <code>/out/</code> in the box above. If you have multiple prefixes you can separate them with comma's: <code>/out/,/recommends/</code>"
431
+ msgstr ""
432
+
433
+ #: admin/class-admin.php:621
434
+ msgid "Label to use"
435
+ msgstr ""
436
+
437
+ #: admin/class-admin.php:622
438
+ msgid "The label to use for these links, this will be added to where the click came from, so if the label is \"aff\", the label for a click from the content of an article becomes \"outbound-article-aff\"."
439
+ msgstr ""
440
+
441
+ #: admin/class-admin.php:626
442
+ msgid "Internal Links to Track as Outbound"
443
+ msgstr ""
444
+
445
+ #: admin/class-admin.php:629
446
+ msgid "The WordPress e-Commerce plugin has been detected. This plugin can automatically add transaction tracking for you. To do that, <a href=\"http://yoast.com/wordpress/google-analytics/enable-ecommerce/\">enable e-commerce for your reports in Google Analytics</a> and then check the box below."
447
+ msgstr ""
448
+
449
+ #: admin/class-admin.php:633 admin/class-admin.php:646
450
+ msgid "Enable transaction tracking"
451
+ msgstr ""
452
+
453
+ #: admin/class-admin.php:636
454
+ msgid "WordPress e-Commerce Settings"
455
+ msgstr ""
456
+
457
+ #: admin/class-admin.php:642
458
+ msgid "The Shopp e-Commerce plugin has been detected. This plugin can automatically add transaction tracking for you. To do that, <a href=\"http://www.google.com/support/googleanalytics/bin/answer.py?hl=en&amp;answer=55528\">enable e-commerce for your reports in Google Analytics</a> and then check the box below."
459
+ msgstr ""
460
+
461
+ #: admin/class-admin.php:649
462
+ msgid "Shopp e-Commerce Settings"
463
+ msgstr ""
464
+
465
+ #: admin/class-admin.php:652
466
+ msgid "If you want to confirm that tracking on your blog is working as it should, enable this option and check the console in %sFirebug%s (for Firefox), %sFirebug Lite%s (for other browsers) or Chrome &amp; Safari's Web Inspector. Be absolutely sure to disable debugging afterwards, as it is slower than normal tracking."
467
+ msgstr ""
468
+
469
+ #: admin/class-admin.php:653
470
+ msgid "Note"
471
+ msgstr ""
472
+
473
+ #: admin/class-admin.php:653
474
+ msgid "the debugging and firebug scripts are only loaded for admins."
475
+ msgstr ""
476
+
477
+ #: admin/class-admin.php:657
478
+ msgid "Enable debug mode"
479
+ msgstr ""
480
+
481
+ #: admin/class-admin.php:662
482
+ msgid "Enable Firebug Lite"
483
+ msgstr ""
484
+
485
+ #: admin/class-admin.php:665
486
+ msgid "Debug Mode"
487
+ msgstr ""
488
+
489
+ #: admin/class-admin.php:670
490
+ msgid "Do you really want to reset all settings?"
491
+ msgstr ""
492
+
493
+ #: admin/class-admin.php:674
494
+ msgid "Reset All Settings &raquo;"
495
+ msgstr ""
496
+
497
+ #: admin/class-admin.php:683
498
+ msgid "Help Spread the Word!"
499
+ msgstr ""
500
+
501
+ #: admin/class-admin.php:683
502
+ msgid "Want to help make this plugin even better? All donations are used to improve this plugin, so donate $20, $50 or $100 now!"
503
+ msgstr ""
504
+
505
+ #: admin/class-admin.php:689
506
+ msgid "Or you could:"
507
+ msgstr ""
508
+
509
+ #: admin/class-admin.php:691
510
+ msgid "Rate the plugin 5★ on WordPress.org"
511
+ msgstr ""
512
+
513
+ #: admin/class-admin.php:692
514
+ msgid "Help out other users in the forums"
515
+ msgstr ""
516
+
517
+ #: admin/class-admin.php:693
518
+ msgid "Blog about it & link to the %1$splugin page%2$s"
519
+ msgstr ""
520
+
521
+ #: admin/class-admin.php:755
522
+ msgid "Google Analytics is not active."
523
+ msgstr ""
524
+
525
+ #: admin/class-admin.php:755
526
+ msgid "You must %sselect which Analytics Profile to track%s before it can work."
527
+ msgstr ""
528
+
529
+ #: admin/class-pointer.php:37
530
+ msgid "Help improve Google Analytics for WordPress"
531
+ msgstr ""
532
+
533
+ #: admin/class-pointer.php:38
534
+ msgid "You've just installed Google Analytics for WordPress by Yoast. Please helps us improve it by allowing us to gather anonymous usage stats so we know which configurations, plugins and themes to test with."
535
+ msgstr ""
536
+
537
+ #: admin/class-pointer.php:43
538
+ msgid "Allow tracking"
539
+ msgstr ""
540
+
541
+ #: admin/class-pointer.php:49
542
+ msgid "Do not allow tracking"
543
+ msgstr ""
544
+
545
+ #: admin/yst_plugin_tools.php:54
546
+ msgid "Settings"
547
+ msgstr ""
548
+
549
+ #: admin/yst_plugin_tools.php:170
550
+ msgid "Why not do any or all of the following:"
551
+ msgstr ""
552
+
553
+ #: admin/yst_plugin_tools.php:172
554
+ msgid "Link to it so other folks can find out about it."
555
+ msgstr ""
556
+
557
+ #: admin/yst_plugin_tools.php:173
558
+ msgid "Give it a 5 star rating on WordPress.org."
559
+ msgstr ""
560
+
561
+ #: admin/yst_plugin_tools.php:174
562
+ msgid "Let other people know that it works with your WordPress setup."
563
+ msgstr ""
564
+
565
+ #: admin/yst_plugin_tools.php:176
566
+ msgid "Like this plugin?"
567
+ msgstr ""
568
+
569
+ #: frontend/class-frontend.php:75
570
+ msgid "Google Analytics tracking code not shown because you haven't setup Google Analytics for WordPress yet."
571
+ msgstr ""
572
+
573
+ #: frontend/class-frontend.php:310
574
+ msgid "Google Analytics tracking code not shown because users over level %s are ignored."
575
+ msgstr ""
576
+
577
+ #: frontend/class-frontend.php:661
578
+ msgid "Please set Google Analytics position to \"manual\" in the settings, or remove this call to yoast_analytics();"
579
+ msgstr ""
languages/google-analytics-for-wordpress-fi.mo ADDED
Binary file
languages/google-analytics-for-wordpress-fi.po ADDED
@@ -0,0 +1,579 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Google Analytics for WordPress in Finnish
2
+ # This file is distributed under the same license as the Google Analytics for WordPress package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2014-01-06 10:21:57+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/0.1\n"
11
+ "Project-Id-Version: Google Analytics for WordPress\n"
12
+
13
+ #: admin/class-admin.php:30
14
+ msgid "Google Analytics Configuration"
15
+ msgstr "Google Analytics asetukset"
16
+
17
+ #: admin/class-admin.php:31
18
+ msgid "Google Analytics"
19
+ msgstr "Google Analytics"
20
+
21
+ #: admin/class-admin.php:129
22
+ msgid "The maximum number of allowed custom variables in Google Analytics is 5, please unselect one of the other custom variables before selecting this one."
23
+ msgstr "Muokattuja muuttujia voi olla maksimissaan viisi. Poista joku muuttuja ennen uuden valintaa."
24
+
25
+ #: admin/class-admin.php:136
26
+ msgid "That's not a valid UA ID, please make sure it matches the expected pattern of: UA-XXXXXX-X, and that there are no spaces or other characters in the input field."
27
+ msgstr "UA-koodin muoto on väärä. Varmista, että se on muotoa UA-XXXXXX-X ja ettei kentässä ole turhia välilyöntejä."
28
+
29
+ #: admin/class-admin.php:151
30
+ msgid "Having problems?"
31
+ msgstr "Onko ongelmia?"
32
+
33
+ #: admin/class-admin.php:152
34
+ msgid "If you're having problems with this plugin, please refer to its <a href='%s'>FAQ page</a>."
35
+ msgstr "Jos kohtaat ongelmia, kannattaa ensin katsoa <a href='%s'>FAQ-sivu</a>."
36
+
37
+ #: admin/class-admin.php:171
38
+ msgid "Google Analytics settings reset."
39
+ msgstr "Google Analytics asetukset nollattu."
40
+
41
+ #: admin/class-admin.php:174
42
+ msgid "You cannot edit the Google Analytics for WordPress options."
43
+ msgstr "Et voi muokata Google Analytics for WordPressin asetuksia."
44
+
45
+ #: admin/class-admin.php:220
46
+ msgid "Google Analytics settings updated."
47
+ msgstr "Google Analytics asetukset päivitetty."
48
+
49
+ #: admin/class-admin.php:227
50
+ msgid "Update Google Analytics Settings &raquo;"
51
+ msgstr "Päivitä Google Analytics asetukset &raquo;"
52
+
53
+ #: admin/class-admin.php:263
54
+ msgid "Google Analytics for WordPress Configuration"
55
+ msgstr "Google Analytics for WordPress asetukset"
56
+
57
+ #: admin/class-admin.php:275
58
+ msgid "Please authenticate with Google Analytics to retrieve your tracking code:"
59
+ msgstr "Seurantakoodin hakeminen edellyttää Google Analyticsiin kirjautumista:"
60
+
61
+ #: admin/class-admin.php:275
62
+ msgid "Click here to authenticate with Google"
63
+ msgstr "Kirjaudu Googleen"
64
+
65
+ #: admin/class-admin.php:340
66
+ msgid "Please select the correct Analytics Account"
67
+ msgstr "Ole hyvä ja valitse oikea Analytics-tili"
68
+
69
+ #: admin/class-admin.php:349
70
+ msgid "Please select the correct Analytics account to track:"
71
+ msgstr "Ole hyvä ja valitse oikea seurattava Analytics-tili:"
72
+
73
+ #: admin/class-admin.php:351
74
+ msgid "Profile"
75
+ msgstr "Profiili"
76
+
77
+ #: admin/class-admin.php:363
78
+ msgid "Please note that if you have several profiles of the same website, it doesn't matter which profile you select, and in fact another profile might show as selected later. You can check whether they're profiles for the same site by checking if they have the same UA code. If that's true, tracking will be correct."
79
+ msgstr "Huomaa, että sillä ei ole väliä, jos samalla sivustolla on monta profiilia. Itse asiassa myöhemmin toinen profiili saattaa näkyä valittuna. Voit katsoa, ovatko profiilit saman sivuston, tarkastamalla niiden UA-koodin. Jos koodit ovat samat, seuranta toimii oikein."
80
+
81
+ #: admin/class-admin.php:365
82
+ msgid "Refresh this listing or switch to another account: "
83
+ msgstr "Päivitä listaus tai valitse toinen tili:"
84
+
85
+ #: admin/class-admin.php:367
86
+ msgid "Unfortunately, an error occurred while connecting to Google, please try again:"
87
+ msgstr "Valitettavasti yhteydenotto Googleen epäonnistui. Ole hyvä ja yritä uudelleen:"
88
+
89
+ #: admin/class-admin.php:371
90
+ msgid "Re-authenticate with Google"
91
+ msgstr "Kirjaudu uudelleen Googleen"
92
+
93
+ #: admin/class-admin.php:373
94
+ msgid "Select another Analytics Profile &raquo;"
95
+ msgstr "Valitse toinen profiili &raquo;"
96
+
97
+ #: admin/class-admin.php:375
98
+ msgid "Manually enter your UA code: "
99
+ msgstr "Syötä UA-koodi itse:"
100
+
101
+ #: admin/class-admin.php:380
102
+ msgid "Analytics Profile"
103
+ msgstr "Analytics-profiili"
104
+
105
+ #: admin/class-admin.php:381
106
+ msgid "Manually enter your UA code"
107
+ msgstr "Syötä UA-koodi itse"
108
+
109
+ #: admin/class-admin.php:384
110
+ msgid "In the header (default)"
111
+ msgstr "Ylätunnisteessa (oletus)"
112
+
113
+ #: admin/class-admin.php:384
114
+ msgid "Insert manually"
115
+ msgstr "Syötä itse"
116
+
117
+ #: admin/class-admin.php:387
118
+ msgid "Notice"
119
+ msgstr "Ilmoitus"
120
+
121
+ #: admin/class-admin.php:387
122
+ msgid "You switched your theme, please make sure your Google Analytics tracking is still ok. Save your settings to make sure Google Analytics gets loaded properly."
123
+ msgstr "Olet vaihtanut teemaa. Varmista, että Google Analytics seuranta toimii silti. Tallenna asetukset, jotta Google Analytics ladataan varmasti oikein."
124
+
125
+ #: admin/class-admin.php:390
126
+ msgid "The header is by far the best spot to place the tracking code. If you'd rather place the code manually, switch to manual placement. For more info %sread this page%s."
127
+ msgstr "Ylätunniste on selvästi paras paikka seurantakoodille. Jos haluat sijoittaa koodin itse, lue %stämä sivu%s."
128
+
129
+ #: admin/class-admin.php:391
130
+ msgid "%sFollow the instructions here%s to choose the location for your tracking code manually."
131
+ msgstr "%sSeuraa näitä ohjeita%s valitaksesi seurantakoodin sijainnin."
132
+
133
+ #: admin/class-admin.php:395
134
+ msgid "Where should the tracking code be placed"
135
+ msgstr "Mihin seurantakoodi tulisi sijoittaa"
136
+
137
+ #: admin/class-admin.php:401
138
+ msgid "Track outbound clicks &amp; downloads"
139
+ msgstr "Seuraa lähteviä klikkauksia &amp; latauksia"
140
+
141
+ #: admin/class-admin.php:402
142
+ msgid "Clicks &amp; downloads will be tracked as events, you can find these under Content &raquo; Event Tracking in your Google Analytics reports."
143
+ msgstr "Klikkaukset &amp; lataukset seurataan tapahtumina. Löydät nämä Google Analytics raportin Sisältö > Tapahtumat kohdasta."
144
+
145
+ #: admin/class-admin.php:407
146
+ msgid "Show advanced settings"
147
+ msgstr "Näytä edistyneet asetukset"
148
+
149
+ #: admin/class-admin.php:408
150
+ msgid "Only adviced for advanced users who know their way around Google Analytics"
151
+ msgstr "Tätä suositellaan vain käyttäjille, jotka tuntevat Google Analyticsin hyvin"
152
+
153
+ #: admin/class-admin.php:413
154
+ msgid "Allow tracking of anonymous data"
155
+ msgstr "Salli tuntemattoman tiedon seuranta"
156
+
157
+ #: admin/class-admin.php:414
158
+ msgid "By allowing us to track anonymous data we can better help you, because we know with which WordPress configurations, themes and plugins we should test. No personal data will be submitted."
159
+ msgstr "Sallimalla tiedon seurannan, pystymme auttamaan sinua paremmin, koska tiedämme, mitä asetuksia, teemoja ja lisäosia meidän pitäisi testata. Henkilökohtaisia tietoja ei lähetetä."
160
+
161
+ #: admin/class-admin.php:417
162
+ msgid "Google Analytics Settings"
163
+ msgstr "Google Analytics asetukset"
164
+
165
+ #: admin/class-admin.php:420
166
+ msgid "Google Analytics allows you to save up to 5 custom variables on each page, and this plugin helps you make the most use of these! Check which custom variables you'd like the plugin to save for you below. Please note that these will only be saved when they are actually available."
167
+ msgstr "Google Analytics sallii viiden muokatun muuttujan tallennuksen jokaisella sivulla. Valitse haluamasi muuttujat, jotka haluaisit tallentaa. Huomaa, että nämä tallennetaan vain kun ne ovat oikeasti saatavilla."
168
+
169
+ #: admin/class-admin.php:421
170
+ msgid "If you want to start using these custom variables, go to Visitors &raquo; Custom Variables in your Analytics reports."
171
+ msgstr "Löydät muuttujat Analytics-raportilta kohdasta Yleisö &raquo; Muokattu &raquo; Muokatut muuttujat."
172
+
173
+ #: admin/class-admin.php:424
174
+ msgid "Logged in Users"
175
+ msgstr "Sisäänkirjautuneet käyttäjät"
176
+
177
+ #: admin/class-admin.php:425
178
+ msgid "Allows you to easily remove logged in users from your reports, or to segment by different user roles. The users primary role will be logged."
179
+ msgstr "Pystyt helposti poistamaan kirjautuneet käyttäjät raportilta tai jakamaan käyttäjät roolin mukaan. Käyttäjän päärooli tallennetaan."
180
+
181
+ #: admin/class-admin.php:430
182
+ msgid "Post type"
183
+ msgstr "Artikkelimuoto"
184
+
185
+ #: admin/class-admin.php:431
186
+ msgid "Allows you to see pageviews per post type, especially useful if you use multiple custom post types."
187
+ msgstr "Näet sivulataukset artikkelimuotojen perusteella. Hyödyllinen, jos käytät useita artikkelityyppejä."
188
+
189
+ #: admin/class-admin.php:436
190
+ msgid "Author Name"
191
+ msgstr "Kirjoittajan nimi"
192
+
193
+ #: admin/class-admin.php:437
194
+ msgid "Allows you to see pageviews per author."
195
+ msgstr "Näet sivulataukset kirjoittajan mukaan."
196
+
197
+ #: admin/class-admin.php:442
198
+ msgid "Tags"
199
+ msgstr "Avainsanat"
200
+
201
+ #: admin/class-admin.php:443
202
+ msgid "Allows you to see pageviews per tags using advanced segments."
203
+ msgstr "Näet sivulataukset avainsanojen mukaan."
204
+
205
+ #: admin/class-admin.php:448
206
+ msgid "Publication year"
207
+ msgstr "Julkaisuvuosi"
208
+
209
+ #: admin/class-admin.php:449
210
+ msgid "Allows you to see pageviews per year of publication, showing you if your old posts still get traffic."
211
+ msgstr "Näet sivulataukset julkaisuvuoden mukaan. Täten näet, saako vanha sisältö vielä liikennettä."
212
+
213
+ #: admin/class-admin.php:454
214
+ msgid "Single Category"
215
+ msgstr "Yksittäinen kategoria"
216
+
217
+ #: admin/class-admin.php:455
218
+ msgid "Allows you to see pageviews per category, works best when each post is in only one category."
219
+ msgstr "Näet sivulataukset kategorian mukaan. Toimii parhaiten kun artikkeleille määritellään vain yksi kategoria."
220
+
221
+ #: admin/class-admin.php:460
222
+ msgid "All Categories"
223
+ msgstr "Kaikki kategoriat"
224
+
225
+ #: admin/class-admin.php:461
226
+ msgid "Allows you to see pageviews per category using advanced segments, should be used when you use multiple categories per post."
227
+ msgstr "Näet sivulataukset kategorian mukaan. Tätä kannattaa käyttää, jos artikkeli asetetaan useaan kategoriaan."
228
+
229
+ #: admin/class-admin.php:466
230
+ msgid "Custom Variables Settings"
231
+ msgstr "Muokattujen muuttujien asetukset"
232
+
233
+ #: admin/class-admin.php:471
234
+ msgid "Ignore users"
235
+ msgstr "Älä huomioi käyttäjiä"
236
+
237
+ #: admin/class-admin.php:472
238
+ msgid "Users of the role you select and higher will be ignored, so if you select Editor, all Editors and Administrators will be ignored."
239
+ msgstr "Valitun käyttäjäroolin ja sitä korkeamman tason roolit jätetään huomioitta. Jos valitset pääkirjoittajan, kaikkia pääkirjoittajia ja pääkäyttäjiä ei huomioida."
240
+
241
+ #: admin/class-admin.php:474
242
+ msgid "Ignore no-one"
243
+ msgstr "Huomioi kaikki käyttäjät"
244
+
245
+ #: admin/class-admin.php:475
246
+ msgid "Administrator"
247
+ msgstr "Pääkäyttäjä"
248
+
249
+ #: admin/class-admin.php:476
250
+ msgid "Editor"
251
+ msgstr "Pääkirjoittaja"
252
+
253
+ #: admin/class-admin.php:477
254
+ msgid "Author"
255
+ msgstr "Kirjoittaja"
256
+
257
+ #: admin/class-admin.php:478
258
+ msgid "Contributor"
259
+ msgstr "Avustaja"
260
+
261
+ #: admin/class-admin.php:479
262
+ msgid "Subscriber (ignores all logged in users)"
263
+ msgstr "Tilaaja (ei huomioi ollenkaan kirjautuneita käyttäjiä)"
264
+
265
+ #: admin/class-admin.php:484
266
+ msgid "Track outbound clicks as pageviews"
267
+ msgstr "Seuraa lähtevät klikkaukset sivun katseluina."
268
+
269
+ #: admin/class-admin.php:485
270
+ msgid "You do not need to enable this to enable outbound click tracking, this changes the default behavior of tracking clicks as events to tracking them as pageviews. This is therefore not recommended, as this would skew your statistics, but <em>is</em> sometimes necessary when you need to set outbound clicks as goals."
271
+ msgstr "Tätä ei tarvitse valita seurataksesi lähteviä klikkauksia. Tämä muuttaa oletustoiminnallisuutta niin, että klikkaukset seurataan sivun katseluina tapahtumien sijaan. Tätä ei suositella, koska se vääristäisi tilastoja. Joskus tämä <em>on</em> kuitenkin tarpeellista kun lähtevät klikkaukset halutaan määrittää tavoitteina."
272
+
273
+ #: admin/class-admin.php:490
274
+ msgid "Track downloads as pageviews"
275
+ msgstr "Seuraa latauksia sivun katseluina"
276
+
277
+ #: admin/class-admin.php:491
278
+ msgid "Not recommended, as this would skew your statistics, but it does make it possible to track downloads as goals."
279
+ msgstr "Tätä ei suositella, koska se vääristäisi tilastoja. Joskus tämä <em>on</em> kuitenkin tarpeellista kun latauksia halutaan seurata tavoitteina."
280
+
281
+ #: admin/class-admin.php:496
282
+ msgid "Extensions of files to track as downloads"
283
+ msgstr "Tiedostopäätteet, jotka seurataan latauksina"
284
+
285
+ #: admin/class-admin.php:502
286
+ msgid "Prefix to use in Analytics before the tracked pageviews"
287
+ msgstr "Etuliite, jota käytetään seuratuissa sivun katseluissa"
288
+
289
+ #: admin/class-admin.php:503
290
+ msgid "This prefix is used before all pageviews, they are then segmented automatically after that. If nothing is entered here, <code>/yoast-ga/</code> is used."
291
+ msgstr "Etuliitettä käytetään kaikkiin sivun katseluihin ja ne jaetaan sen jälkeen automaattisesti. Jos mitään ei syötetä, käytetään liitettä <code>/yoast-ga/</code>"
292
+
293
+ #: admin/class-admin.php:509
294
+ msgid "Track full URL of outbound clicks or just the domain"
295
+ msgstr "Seuraa lähtevien klikkausten koko URL tai vain verkkotunnus"
296
+
297
+ #: admin/class-admin.php:511
298
+ msgid "Just the domain"
299
+ msgstr "Vain verkkotunnus"
300
+
301
+ #: admin/class-admin.php:512
302
+ msgid "Track the complete URL"
303
+ msgstr "Seuraa koko URL"
304
+
305
+ #: admin/class-admin.php:518
306
+ msgid "Subdomain Tracking"
307
+ msgstr "Aliverkkotunnuksen seuranta"
308
+
309
+ #: admin/class-admin.php:519
310
+ msgid "This allows you to set the domain that's set by %s<code>setDomainName</code>%s for tracking subdomains, if empty this will not be set."
311
+ msgstr "Tämä mahdollistaa %s<code>setDomainName</code>%s asettamisen aliverkkotunnuksen seuraamiseksi. Ei käytetä ollenkaan, jos tyhjä."
312
+
313
+ #: admin/class-admin.php:524
314
+ msgid "Enable Cross Domain Tracking"
315
+ msgstr "Salli usean verkkotunnuksen seuraus"
316
+
317
+ #: admin/class-admin.php:525
318
+ msgid "This allows you to enable %sCross-Domain Tracking%s for this site. When endabled <code>_setAllowLinker:</code> will be enabled if it is not already."
319
+ msgstr "Tämä mahdollistaa %sUsean verkkotunnuksen seuraamisen%s. Asetettuna <code>_setAllowLinker:</code> koodi otetaan käyttöön."
320
+
321
+ #: admin/class-admin.php:530
322
+ msgid "Cross-Domain Tracking, Primary Domain"
323
+ msgstr "Usean verkkotunnuksen seuraaminen, pääverkkotunnus"
324
+
325
+ #: admin/class-admin.php:531
326
+ msgid "Set the primary domain used in %s<code>setDomainName</code>%s for cross domain tracking (eg. <code>example-petstore.com</code> ), if empty this will default to your configured Home URL."
327
+ msgstr "Aseta pääverkkotunnus, jota käytetään %s<code>setDomainName</code>%s määritteessä (esim. <code>esimerkki.fi</code> ). Jos tyhjä, käytetään WordPressin kotiosoitetta."
328
+
329
+ #: admin/class-admin.php:536
330
+ msgid "Cross-Domain Tracking, Other Domains"
331
+ msgstr "Usean verkkotunnuksen seuraaminen, muut verkkotunnukset"
332
+
333
+ #: admin/class-admin.php:537
334
+ msgid "All links to these domains will have the <a href=\"http://code.google.com/apis/analytics/docs/tracking/gaTrackingSite.html#multipleDomains\"><code>_link</code></a> code automatically attached. Separate domains/sub-domains with commas (eg. <code>dogs.example-petstore.com, cats.example-petstore.com</code>)"
335
+ msgstr "Kaikkiin näihin osoitteisiin viittaaviin linkkeihin lisätään <a href=\"http://code.google.com/apis/analytics/docs/tracking/gaTrackingSite.html#multipleDomains\"><code>_link</code></a> määrite. Erottele (ali)verkkotunnukset pilkuilla (esim. <code>kissa.esimerkki.fi, koira.esimerkki.fi</code>)"
336
+
337
+ #: admin/class-admin.php:542
338
+ msgid "Custom Code"
339
+ msgstr "Räätälöity koodi"
340
+
341
+ #: admin/class-admin.php:543
342
+ msgid "Not for the average user: this allows you to add a line of code, to be added before the <code>trackPageview</code> call."
343
+ msgstr "Ei normaaleille käyttäjille: mahdollistaa koodirivin lisäämisen ennen <code>trackPageview</code> kutsua."
344
+
345
+ #: admin/class-admin.php:548
346
+ msgid "Track AdSense"
347
+ msgstr "Seuraa AdSenseä"
348
+
349
+ #: admin/class-admin.php:549
350
+ msgid "This requires integration of your Analytics and AdSense account, for help, <a href=\"http://google.com/support/analytics/bin/answer.py?answer=92625\">look here</a>."
351
+ msgstr "Vaatii integraation Analytics ja AdSense tilien välillä. <a href=\"http://google.com/support/analytics/bin/answer.py?answer=92625\">Lue lisää</a>."
352
+
353
+ #: admin/class-admin.php:554
354
+ msgid "Host ga.js locally"
355
+ msgstr "Lataa ga.js paikallisesti"
356
+
357
+ #: admin/class-admin.php:556
358
+ msgid "You have to provide a URL to your ga.js file:"
359
+ msgstr "Kerro ga.js tiedoston osoite."
360
+
361
+ #: admin/class-admin.php:559
362
+ msgid "For some reasons you might want to use a locally hosted ga.js file, or another ga.js file, check the box and then please enter the full URL including http here."
363
+ msgstr "Jostakin syystä saatat haluta käyttää paikallista ga.js tiedostoa. Ruksita vaihtoehto ja anna tiedoston koko osoite (myös http)."
364
+
365
+ #: admin/class-admin.php:563
366
+ msgid "Track extra Search Engines"
367
+ msgstr "Seuraa ylimääräisiä hakukoneita"
368
+
369
+ #: admin/class-admin.php:565
370
+ msgid "You can provide a custom URL to the extra search engines file if you want:"
371
+ msgstr "Voit antaa URL-osoitteen ylimääräisten hakukoneiden tiedostoon, jos haluat:"
372
+
373
+ #: admin/class-admin.php:571
374
+ msgid "Tag links in RSS feed with campaign variables"
375
+ msgstr "Lisää RSS-syötteen linkkeihin muuttujat"
376
+
377
+ #: admin/class-admin.php:572
378
+ msgid "Do not use this feature if you use FeedBurner, as FeedBurner can do this automatically, and better than this plugin can. Check <a href=\"http://www.google.com/support/feedburner/bin/answer.py?hl=en&amp;answer=165769\">this help page</a> for info on how to enable this feature in FeedBurner."
379
+ msgstr "Älä käytä tätä jos syötteesi on FeedBurnerissa, sillä FeedBurner osaa tehdä sen automaattisesti ja paremmin. <a href=\"http://www.google.com/support/feedburner/bin/answer.py?hl=en&amp;answer=165769\">Katso</a>, miten voit ottaa ominaisuuden käyttöön FeedBurnerissa."
380
+
381
+ #: admin/class-admin.php:577
382
+ msgid "Add tracking to the login and registration forms"
383
+ msgstr "Lisää seuranta kirjautumis- ja rekisteröintilomakkeille"
384
+
385
+ #: admin/class-admin.php:582
386
+ msgid "Add tracking to the comment forms"
387
+ msgstr "Lisää seuranta kommenttilomakkeelle"
388
+
389
+ #: admin/class-admin.php:587
390
+ msgid "Use # instead of ? for Campaign tracking"
391
+ msgstr "Käytä risuaitaa kysymysmerkin sijaan kampanjan seurannassa"
392
+
393
+ #: admin/class-admin.php:588
394
+ msgid "This adds a <code><a href=\"http://code.google.com/apis/analytics/docs/gaJSApiCampaignTracking.html#_gat.GA_Tracker_._setAllowAnchor\">_setAllowAnchor</a></code> call to your tracking code, and makes RSS link tagging use a # as well."
395
+ msgstr "Tämä lisää <code><a href=\"http://code.google.com/apis/analytics/docs/gaJSApiCampaignTracking.html#_gat.GA_Tracker_._setAllowAnchor\">_setAllowAnchor</a></code> kutsun seurantakoodiin. Myös RSS-seuranta alkaa käyttää #."
396
+
397
+ #: admin/class-admin.php:593
398
+ msgid "Add <code>_setAllowLinker</code>"
399
+ msgstr "Lisää <code>_setAllowLinker</code>"
400
+
401
+ #: admin/class-admin.php:594
402
+ msgid "This adds a <code><a href=\"http://code.google.com/apis/analytics/docs/gaJS/gaJSApiDomainDirectory.html#_gat.GA_Tracker_._setAllowLinker\">_setAllowLinker</a></code> call to your tracking code, allowing you to use <code>_link</code> and related functions."
403
+ msgstr "Tämä lisää <code><a href=\"http://code.google.com/apis/analytics/docs/gaJS/gaJSApiDomainDirectory.html#_gat.GA_Tracker_._setAllowLinker\">_setAllowLinker</a></code> kutsun seurantakoodiin. Tämä mahdollistaa <code>_link</code> ja siihen sidoksissa olevien funktioiden käytön."
404
+
405
+ #: admin/class-admin.php:599
406
+ msgid "Set <code>_setAllowHash</code> to false"
407
+ msgstr "Aseta <code>_setAllowHash</code> epätodeksi"
408
+
409
+ #: admin/class-admin.php:600
410
+ msgid "This sets <code><a href=\"http://code.google.com/apis/analytics/docs/gaJS/gaJSApiDomainDirectory.html#_gat.GA_Tracker_._setAllowHash\">_setAllowHash</a></code> to false, allowing you to track subdomains etc."
411
+ msgstr "Tämä asettaa <code><a href=\"http://code.google.com/apis/analytics/docs/gaJS/gaJSApiDomainDirectory.html#_gat.GA_Tracker_._setAllowHash\">_setAllowHash</a></code> epätodeksi ja mahdollistaa aliverkkotunnuksien seurannan jne."
412
+
413
+ #: admin/class-admin.php:605
414
+ msgid "Anonymize IP's"
415
+ msgstr "IP-osoitteen anonymisointi"
416
+
417
+ #: admin/class-admin.php:606
418
+ msgid "This adds <code><a href=\"http://code.google.com/apis/analytics/docs/gaJS/gaJSApi_gat.html#_gat._anonymizeIp\">_anonymizeIp</a></code>, telling Google Analytics to anonymize the information sent by the tracker objects by removing the last octet of the IP address prior to its storage."
419
+ msgstr "Tämä lisää <code><a href=\"http://code.google.com/apis/analytics/docs/gaJS/gaJSApi_gat.html#_gat._anonymizeIp\">_anonymizeIp</a></code> määritteen. Google Analytics anonymisoi osoitteen poistamalla viimeisen oktetin IP-osoitteesta ennen kuin se tallennetaan."
420
+
421
+ #: admin/class-admin.php:610
422
+ msgid "Advanced Settings"
423
+ msgstr "Edistyneet asetukset"
424
+
425
+ #: admin/class-admin.php:615
426
+ msgid "Internal links to track as outbound"
427
+ msgstr "Seuraa sisäisiä linkkejä kuin lähteviä"
428
+
429
+ #: admin/class-admin.php:616
430
+ msgid "If you want to track all internal links that begin with <code>/out/</code>, enter <code>/out/</code> in the box above. If you have multiple prefixes you can separate them with comma's: <code>/out/,/recommends/</code>"
431
+ msgstr "Jos haluat seurata kaikkia sisäisiä linkkejä, jotka alkavat <code>/out/</code>, lisää <code>/out/</code> yllä olevaan kenttään. Jos etuliitteitä on monia, voit erottaa ne pilkulla <code>/out/,/recommends/</code>"
432
+
433
+ #: admin/class-admin.php:621
434
+ msgid "Label to use"
435
+ msgstr "Käytettävä nimike"
436
+
437
+ #: admin/class-admin.php:622
438
+ msgid "The label to use for these links, this will be added to where the click came from, so if the label is \"aff\", the label for a click from the content of an article becomes \"outbound-article-aff\"."
439
+ msgstr "Linkeille käytettävä nimike. Tämä lisätään klikkauksiin. Jos nimike on aff niin esimerkiksi artikkelilinkin klikkauksen nimike on tällöin \"outbound-article-aff\"."
440
+
441
+ #: admin/class-admin.php:626
442
+ msgid "Internal Links to Track as Outbound"
443
+ msgstr "Seuraa sisäisiä linkkejä kuin lähteviä"
444
+
445
+ #: admin/class-admin.php:629
446
+ msgid "The WordPress e-Commerce plugin has been detected. This plugin can automatically add transaction tracking for you. To do that, <a href=\"http://yoast.com/wordpress/google-analytics/enable-ecommerce/\">enable e-commerce for your reports in Google Analytics</a> and then check the box below."
447
+ msgstr "WordPressin e-Commerce lisäosa on havaittu. Lisäosamme pystyy lisäämään transaktioiden seurannan automaattisesti. <a href=\"http://yoast.com/wordpress/google-analytics/enable-ecommerce/\">Lue, miten otat käyttöön toiminnallisuuden Google Analyticsissä</a>. Sen jälkeen ruksita alla oleva laatikko."
448
+
449
+ #: admin/class-admin.php:633 admin/class-admin.php:646
450
+ msgid "Enable transaction tracking"
451
+ msgstr "Ota käyttöön transaktioiden seuranta"
452
+
453
+ #: admin/class-admin.php:636
454
+ msgid "WordPress e-Commerce Settings"
455
+ msgstr "WordPress e-Commerce asetukset"
456
+
457
+ #: admin/class-admin.php:642
458
+ msgid "The Shopp e-Commerce plugin has been detected. This plugin can automatically add transaction tracking for you. To do that, <a href=\"http://www.google.com/support/googleanalytics/bin/answer.py?hl=en&amp;answer=55528\">enable e-commerce for your reports in Google Analytics</a> and then check the box below."
459
+ msgstr "Shopp e-Commerce lisäosa on havaittu. Lisäosamme pystyy lisäämään transaktioiden seurannan automaattisesti. <a href=\"http://www.google.com/support/googleanalytics/bin/answer.py?hl=en&amp;answer=55528\">Lue, miten otat käyttöön toiminnallisuuden Google Analyticsissä</a>. Sen jälkeen ruksita alla oleva laatikko."
460
+
461
+ #: admin/class-admin.php:649
462
+ msgid "Shopp e-Commerce Settings"
463
+ msgstr "Shopp e-Commerce asetukset"
464
+
465
+ #: admin/class-admin.php:652
466
+ msgid "If you want to confirm that tracking on your blog is working as it should, enable this option and check the console in %sFirebug%s (for Firefox), %sFirebug Lite%s (for other browsers) or Chrome &amp; Safari's Web Inspector. Be absolutely sure to disable debugging afterwards, as it is slower than normal tracking."
467
+ msgstr "Jos haluat varmistaa, että seuranta toimii, aseta tämä asetus päälle ja tarkastele konsolia %sFirebugilla%s (Firefoxilla), %sFirebug Litellä%s (muille selaimille) tai Chromen &amp; Safarin Web Inspectorilla. Ota asetus pois päältä myöhemmin, sillä se hidastaa seurantaa."
468
+
469
+ #: admin/class-admin.php:653
470
+ msgid "Note"
471
+ msgstr "Huom"
472
+
473
+ #: admin/class-admin.php:653
474
+ msgid "the debugging and firebug scripts are only loaded for admins."
475
+ msgstr "debuggaus-skriptit ladataan vain pääkäyttäjille."
476
+
477
+ #: admin/class-admin.php:657
478
+ msgid "Enable debug mode"
479
+ msgstr "Ota debuggaus käyttöön"
480
+
481
+ #: admin/class-admin.php:662
482
+ msgid "Enable Firebug Lite"
483
+ msgstr "Ota käyttöön Firebug Lite"
484
+
485
+ #: admin/class-admin.php:665
486
+ msgid "Debug Mode"
487
+ msgstr "Debuggaus tila"
488
+
489
+ #: admin/class-admin.php:670
490
+ msgid "Do you really want to reset all settings?"
491
+ msgstr "Haluatko varmasti nollata kaikki asetukset?"
492
+
493
+ #: admin/class-admin.php:674
494
+ msgid "Reset All Settings &raquo;"
495
+ msgstr "Nollaa kaikki asetukset &raquo;"
496
+
497
+ #: admin/class-admin.php:683
498
+ msgid "Help Spread the Word!"
499
+ msgstr "Auta levittämään sanaa!"
500
+
501
+ #: admin/class-admin.php:683
502
+ msgid "Want to help make this plugin even better? All donations are used to improve this plugin, so donate $20, $50 or $100 now!"
503
+ msgstr "Haluatko auttaa tekemään lisäosasta vieläkin paremman? Kaikki lahjoitukset käytetään lisäosan parantamiseen. Lahjoita 20, 50 tai 100 dollaria nyt!"
504
+
505
+ #: admin/class-admin.php:689
506
+ msgid "Or you could:"
507
+ msgstr "Tai sitten voisit:"
508
+
509
+ #: admin/class-admin.php:691
510
+ msgid "Rate the plugin 5★ on WordPress.org"
511
+ msgstr "Anna viisi tähteä WordPress.orgissa"
512
+
513
+ #: admin/class-admin.php:692
514
+ msgid "Help out other users in the forums"
515
+ msgstr "Auta muita foorumeilla"
516
+
517
+ #: admin/class-admin.php:693
518
+ msgid "Blog about it & link to the %1$splugin page%2$s"
519
+ msgstr "Kirjoita ja linkkaa %1$slisäosan sivulle%2$s"
520
+
521
+ #: admin/class-admin.php:755
522
+ msgid "Google Analytics is not active."
523
+ msgstr "Google Analytics ei ole aktiivinen."
524
+
525
+ #: admin/class-admin.php:755
526
+ msgid "You must %sselect which Analytics Profile to track%s before it can work."
527
+ msgstr "Sinun pitää %svalita mitä Analytics profiilia käytetään%s ennen kuin seuranta toimii."
528
+
529
+ #: admin/class-pointer.php:37
530
+ msgid "Help improve Google Analytics for WordPress"
531
+ msgstr "Auta parantamaan Google Analytics for WordPressiä"
532
+
533
+ #: admin/class-pointer.php:38
534
+ msgid "You've just installed Google Analytics for WordPress by Yoast. Please helps us improve it by allowing us to gather anonymous usage stats so we know which configurations, plugins and themes to test with."
535
+ msgstr "Olet juuri asentanut Yoastin Google Analytics for WordPress-lisäosan. Annatko meille luvan kerätä anonyymia tietoa, jotta tiedämme, millä asetuksilla, lisäosilla ja teemoilla meidän pitäisi testata?"
536
+
537
+ #: admin/class-pointer.php:43
538
+ msgid "Allow tracking"
539
+ msgstr "Salli seuranta"
540
+
541
+ #: admin/class-pointer.php:49
542
+ msgid "Do not allow tracking"
543
+ msgstr "Älä salli seurantaa"
544
+
545
+ #: admin/yst_plugin_tools.php:54
546
+ msgid "Settings"
547
+ msgstr "Asetukset"
548
+
549
+ #: admin/yst_plugin_tools.php:170
550
+ msgid "Why not do any or all of the following:"
551
+ msgstr "Miksipä et tekisi jotakin seuraavista:"
552
+
553
+ #: admin/yst_plugin_tools.php:172
554
+ msgid "Link to it so other folks can find out about it."
555
+ msgstr "Linkkaa lisäosaan, jotta muutkin saavat tietää."
556
+
557
+ #: admin/yst_plugin_tools.php:173
558
+ msgid "Give it a 5 star rating on WordPress.org."
559
+ msgstr "Anna viisi tähteä WordPress.orgissa."
560
+
561
+ #: admin/yst_plugin_tools.php:174
562
+ msgid "Let other people know that it works with your WordPress setup."
563
+ msgstr "Kerro muille, että se toimii sinun WordPress-asennuksessasi."
564
+
565
+ #: admin/yst_plugin_tools.php:176
566
+ msgid "Like this plugin?"
567
+ msgstr "Pidätkö lisäosasta?"
568
+
569
+ #: frontend/class-frontend.php:75
570
+ msgid "Google Analytics tracking code not shown because you haven't setup Google Analytics for WordPress yet."
571
+ msgstr "Google Analytics seurantakoodia ei näytetä, koska Google Analytics for WordPressiä ei ole vielä konfiguroitu."
572
+
573
+ #: frontend/class-frontend.php:310
574
+ msgid "Google Analytics tracking code not shown because users over level %s are ignored."
575
+ msgstr "Google Analytics seurantakoodia ei näytetä, koska %s roolia ja sitä korkeampia ei huomioida."
576
+
577
+ #: frontend/class-frontend.php:661
578
+ msgid "Please set Google Analytics position to \"manual\" in the settings, or remove this call to yoast_analytics();"
579
+ msgstr "Muuta seurantakoodin sijoitusasetus \"Syötä itse\" vaihtoehtoon tai poista yoast_analytics(); kutsu."
languages/google-analytics-for-wordpress-fr_FR.mo ADDED
Binary file
languages/google-analytics-for-wordpress-fr_FR.po ADDED
@@ -0,0 +1,579 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Google Analytics for WordPress in French (France)
2
+ # This file is distributed under the same license as the Google Analytics for WordPress package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2014-01-06 10:22:46+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n > 1;\n"
10
+ "X-Generator: GlotPress/0.1\n"
11
+ "Project-Id-Version: Google Analytics for WordPress\n"
12
+
13
+ #: admin/class-admin.php:30
14
+ msgid "Google Analytics Configuration"
15
+ msgstr "Configuration de Google Analytics"
16
+
17
+ #: admin/class-admin.php:31
18
+ msgid "Google Analytics"
19
+ msgstr "Google Analytics"
20
+
21
+ #: admin/class-admin.php:129
22
+ msgid "The maximum number of allowed custom variables in Google Analytics is 5, please unselect one of the other custom variables before selecting this one."
23
+ msgstr ""
24
+
25
+ #: admin/class-admin.php:136
26
+ msgid "That's not a valid UA ID, please make sure it matches the expected pattern of: UA-XXXXXX-X, and that there are no spaces or other characters in the input field."
27
+ msgstr ""
28
+
29
+ #: admin/class-admin.php:151
30
+ msgid "Having problems?"
31
+ msgstr ""
32
+
33
+ #: admin/class-admin.php:152
34
+ msgid "If you're having problems with this plugin, please refer to its <a href='%s'>FAQ page</a>."
35
+ msgstr ""
36
+
37
+ #: admin/class-admin.php:171
38
+ msgid "Google Analytics settings reset."
39
+ msgstr ""
40
+
41
+ #: admin/class-admin.php:174
42
+ msgid "You cannot edit the Google Analytics for WordPress options."
43
+ msgstr ""
44
+
45
+ #: admin/class-admin.php:220
46
+ msgid "Google Analytics settings updated."
47
+ msgstr ""
48
+
49
+ #: admin/class-admin.php:227
50
+ msgid "Update Google Analytics Settings &raquo;"
51
+ msgstr ""
52
+
53
+ #: admin/class-admin.php:263
54
+ msgid "Google Analytics for WordPress Configuration"
55
+ msgstr ""
56
+
57
+ #: admin/class-admin.php:275
58
+ msgid "Please authenticate with Google Analytics to retrieve your tracking code:"
59
+ msgstr ""
60
+
61
+ #: admin/class-admin.php:275
62
+ msgid "Click here to authenticate with Google"
63
+ msgstr ""
64
+
65
+ #: admin/class-admin.php:340
66
+ msgid "Please select the correct Analytics Account"
67
+ msgstr ""
68
+
69
+ #: admin/class-admin.php:349
70
+ msgid "Please select the correct Analytics account to track:"
71
+ msgstr ""
72
+
73
+ #: admin/class-admin.php:351
74
+ msgid "Profile"
75
+ msgstr "Profil"
76
+
77
+ #: admin/class-admin.php:363
78
+ msgid "Please note that if you have several profiles of the same website, it doesn't matter which profile you select, and in fact another profile might show as selected later. You can check whether they're profiles for the same site by checking if they have the same UA code. If that's true, tracking will be correct."
79
+ msgstr ""
80
+
81
+ #: admin/class-admin.php:365
82
+ msgid "Refresh this listing or switch to another account: "
83
+ msgstr ""
84
+
85
+ #: admin/class-admin.php:367
86
+ msgid "Unfortunately, an error occurred while connecting to Google, please try again:"
87
+ msgstr ""
88
+
89
+ #: admin/class-admin.php:371
90
+ msgid "Re-authenticate with Google"
91
+ msgstr ""
92
+
93
+ #: admin/class-admin.php:373
94
+ msgid "Select another Analytics Profile &raquo;"
95
+ msgstr ""
96
+
97
+ #: admin/class-admin.php:375
98
+ msgid "Manually enter your UA code: "
99
+ msgstr ""
100
+
101
+ #: admin/class-admin.php:380
102
+ msgid "Analytics Profile"
103
+ msgstr ""
104
+
105
+ #: admin/class-admin.php:381
106
+ msgid "Manually enter your UA code"
107
+ msgstr ""
108
+
109
+ #: admin/class-admin.php:384
110
+ msgid "In the header (default)"
111
+ msgstr "Dans l'en-tête (par défaut)"
112
+
113
+ #: admin/class-admin.php:384
114
+ msgid "Insert manually"
115
+ msgstr "Insérer manuellement "
116
+
117
+ #: admin/class-admin.php:387
118
+ msgid "Notice"
119
+ msgstr ""
120
+
121
+ #: admin/class-admin.php:387
122
+ msgid "You switched your theme, please make sure your Google Analytics tracking is still ok. Save your settings to make sure Google Analytics gets loaded properly."
123
+ msgstr ""
124
+
125
+ #: admin/class-admin.php:390
126
+ msgid "The header is by far the best spot to place the tracking code. If you'd rather place the code manually, switch to manual placement. For more info %sread this page%s."
127
+ msgstr ""
128
+
129
+ #: admin/class-admin.php:391
130
+ msgid "%sFollow the instructions here%s to choose the location for your tracking code manually."
131
+ msgstr ""
132
+
133
+ #: admin/class-admin.php:395
134
+ msgid "Where should the tracking code be placed"
135
+ msgstr ""
136
+
137
+ #: admin/class-admin.php:401
138
+ msgid "Track outbound clicks &amp; downloads"
139
+ msgstr ""
140
+
141
+ #: admin/class-admin.php:402
142
+ msgid "Clicks &amp; downloads will be tracked as events, you can find these under Content &raquo; Event Tracking in your Google Analytics reports."
143
+ msgstr ""
144
+
145
+ #: admin/class-admin.php:407
146
+ msgid "Show advanced settings"
147
+ msgstr ""
148
+
149
+ #: admin/class-admin.php:408
150
+ msgid "Only adviced for advanced users who know their way around Google Analytics"
151
+ msgstr ""
152
+
153
+ #: admin/class-admin.php:413
154
+ msgid "Allow tracking of anonymous data"
155
+ msgstr ""
156
+
157
+ #: admin/class-admin.php:414
158
+ msgid "By allowing us to track anonymous data we can better help you, because we know with which WordPress configurations, themes and plugins we should test. No personal data will be submitted."
159
+ msgstr ""
160
+
161
+ #: admin/class-admin.php:417
162
+ msgid "Google Analytics Settings"
163
+ msgstr "Réglages de Google Analytics"
164
+
165
+ #: admin/class-admin.php:420
166
+ msgid "Google Analytics allows you to save up to 5 custom variables on each page, and this plugin helps you make the most use of these! Check which custom variables you'd like the plugin to save for you below. Please note that these will only be saved when they are actually available."
167
+ msgstr ""
168
+
169
+ #: admin/class-admin.php:421
170
+ msgid "If you want to start using these custom variables, go to Visitors &raquo; Custom Variables in your Analytics reports."
171
+ msgstr ""
172
+
173
+ #: admin/class-admin.php:424
174
+ msgid "Logged in Users"
175
+ msgstr ""
176
+
177
+ #: admin/class-admin.php:425
178
+ msgid "Allows you to easily remove logged in users from your reports, or to segment by different user roles. The users primary role will be logged."
179
+ msgstr ""
180
+
181
+ #: admin/class-admin.php:430
182
+ msgid "Post type"
183
+ msgstr ""
184
+
185
+ #: admin/class-admin.php:431
186
+ msgid "Allows you to see pageviews per post type, especially useful if you use multiple custom post types."
187
+ msgstr ""
188
+
189
+ #: admin/class-admin.php:436
190
+ msgid "Author Name"
191
+ msgstr "Nom de l'auteur"
192
+
193
+ #: admin/class-admin.php:437
194
+ msgid "Allows you to see pageviews per author."
195
+ msgstr ""
196
+
197
+ #: admin/class-admin.php:442
198
+ msgid "Tags"
199
+ msgstr "Mots-clefs"
200
+
201
+ #: admin/class-admin.php:443
202
+ msgid "Allows you to see pageviews per tags using advanced segments."
203
+ msgstr ""
204
+
205
+ #: admin/class-admin.php:448
206
+ msgid "Publication year"
207
+ msgstr ""
208
+
209
+ #: admin/class-admin.php:449
210
+ msgid "Allows you to see pageviews per year of publication, showing you if your old posts still get traffic."
211
+ msgstr ""
212
+
213
+ #: admin/class-admin.php:454
214
+ msgid "Single Category"
215
+ msgstr ""
216
+
217
+ #: admin/class-admin.php:455
218
+ msgid "Allows you to see pageviews per category, works best when each post is in only one category."
219
+ msgstr ""
220
+
221
+ #: admin/class-admin.php:460
222
+ msgid "All Categories"
223
+ msgstr "Toutes les catégories"
224
+
225
+ #: admin/class-admin.php:461
226
+ msgid "Allows you to see pageviews per category using advanced segments, should be used when you use multiple categories per post."
227
+ msgstr ""
228
+
229
+ #: admin/class-admin.php:466
230
+ msgid "Custom Variables Settings"
231
+ msgstr ""
232
+
233
+ #: admin/class-admin.php:471
234
+ msgid "Ignore users"
235
+ msgstr ""
236
+
237
+ #: admin/class-admin.php:472
238
+ msgid "Users of the role you select and higher will be ignored, so if you select Editor, all Editors and Administrators will be ignored."
239
+ msgstr ""
240
+
241
+ #: admin/class-admin.php:474
242
+ msgid "Ignore no-one"
243
+ msgstr ""
244
+
245
+ #: admin/class-admin.php:475
246
+ msgid "Administrator"
247
+ msgstr ""
248
+
249
+ #: admin/class-admin.php:476
250
+ msgid "Editor"
251
+ msgstr ""
252
+
253
+ #: admin/class-admin.php:477
254
+ msgid "Author"
255
+ msgstr ""
256
+
257
+ #: admin/class-admin.php:478
258
+ msgid "Contributor"
259
+ msgstr ""
260
+
261
+ #: admin/class-admin.php:479
262
+ msgid "Subscriber (ignores all logged in users)"
263
+ msgstr ""
264
+
265
+ #: admin/class-admin.php:484
266
+ msgid "Track outbound clicks as pageviews"
267
+ msgstr ""
268
+
269
+ #: admin/class-admin.php:485
270
+ msgid "You do not need to enable this to enable outbound click tracking, this changes the default behavior of tracking clicks as events to tracking them as pageviews. This is therefore not recommended, as this would skew your statistics, but <em>is</em> sometimes necessary when you need to set outbound clicks as goals."
271
+ msgstr ""
272
+
273
+ #: admin/class-admin.php:490
274
+ msgid "Track downloads as pageviews"
275
+ msgstr ""
276
+
277
+ #: admin/class-admin.php:491
278
+ msgid "Not recommended, as this would skew your statistics, but it does make it possible to track downloads as goals."
279
+ msgstr ""
280
+
281
+ #: admin/class-admin.php:496
282
+ msgid "Extensions of files to track as downloads"
283
+ msgstr ""
284
+
285
+ #: admin/class-admin.php:502
286
+ msgid "Prefix to use in Analytics before the tracked pageviews"
287
+ msgstr ""
288
+
289
+ #: admin/class-admin.php:503
290
+ msgid "This prefix is used before all pageviews, they are then segmented automatically after that. If nothing is entered here, <code>/yoast-ga/</code> is used."
291
+ msgstr ""
292
+
293
+ #: admin/class-admin.php:509
294
+ msgid "Track full URL of outbound clicks or just the domain"
295
+ msgstr ""
296
+
297
+ #: admin/class-admin.php:511
298
+ msgid "Just the domain"
299
+ msgstr ""
300
+
301
+ #: admin/class-admin.php:512
302
+ msgid "Track the complete URL"
303
+ msgstr ""
304
+
305
+ #: admin/class-admin.php:518
306
+ msgid "Subdomain Tracking"
307
+ msgstr ""
308
+
309
+ #: admin/class-admin.php:519
310
+ msgid "This allows you to set the domain that's set by %s<code>setDomainName</code>%s for tracking subdomains, if empty this will not be set."
311
+ msgstr ""
312
+
313
+ #: admin/class-admin.php:524
314
+ msgid "Enable Cross Domain Tracking"
315
+ msgstr ""
316
+
317
+ #: admin/class-admin.php:525
318
+ msgid "This allows you to enable %sCross-Domain Tracking%s for this site. When endabled <code>_setAllowLinker:</code> will be enabled if it is not already."
319
+ msgstr ""
320
+
321
+ #: admin/class-admin.php:530
322
+ msgid "Cross-Domain Tracking, Primary Domain"
323
+ msgstr ""
324
+
325
+ #: admin/class-admin.php:531
326
+ msgid "Set the primary domain used in %s<code>setDomainName</code>%s for cross domain tracking (eg. <code>example-petstore.com</code> ), if empty this will default to your configured Home URL."
327
+ msgstr ""
328
+
329
+ #: admin/class-admin.php:536
330
+ msgid "Cross-Domain Tracking, Other Domains"
331
+ msgstr ""
332
+
333
+ #: admin/class-admin.php:537
334
+ msgid "All links to these domains will have the <a href=\"http://code.google.com/apis/analytics/docs/tracking/gaTrackingSite.html#multipleDomains\"><code>_link</code></a> code automatically attached. Separate domains/sub-domains with commas (eg. <code>dogs.example-petstore.com, cats.example-petstore.com</code>)"
335
+ msgstr ""
336
+
337
+ #: admin/class-admin.php:542
338
+ msgid "Custom Code"
339
+ msgstr ""
340
+
341
+ #: admin/class-admin.php:543
342
+ msgid "Not for the average user: this allows you to add a line of code, to be added before the <code>trackPageview</code> call."
343
+ msgstr ""
344
+
345
+ #: admin/class-admin.php:548
346
+ msgid "Track AdSense"
347
+ msgstr ""
348
+
349
+ #: admin/class-admin.php:549
350
+ msgid "This requires integration of your Analytics and AdSense account, for help, <a href=\"http://google.com/support/analytics/bin/answer.py?answer=92625\">look here</a>."
351
+ msgstr ""
352
+
353
+ #: admin/class-admin.php:554
354
+ msgid "Host ga.js locally"
355
+ msgstr ""
356
+
357
+ #: admin/class-admin.php:556
358
+ msgid "You have to provide a URL to your ga.js file:"
359
+ msgstr ""
360
+
361
+ #: admin/class-admin.php:559
362
+ msgid "For some reasons you might want to use a locally hosted ga.js file, or another ga.js file, check the box and then please enter the full URL including http here."
363
+ msgstr ""
364
+
365
+ #: admin/class-admin.php:563
366
+ msgid "Track extra Search Engines"
367
+ msgstr ""
368
+
369
+ #: admin/class-admin.php:565
370
+ msgid "You can provide a custom URL to the extra search engines file if you want:"
371
+ msgstr ""
372
+
373
+ #: admin/class-admin.php:571
374
+ msgid "Tag links in RSS feed with campaign variables"
375
+ msgstr ""
376
+
377
+ #: admin/class-admin.php:572
378
+ msgid "Do not use this feature if you use FeedBurner, as FeedBurner can do this automatically, and better than this plugin can. Check <a href=\"http://www.google.com/support/feedburner/bin/answer.py?hl=en&amp;answer=165769\">this help page</a> for info on how to enable this feature in FeedBurner."
379
+ msgstr ""
380
+
381
+ #: admin/class-admin.php:577
382
+ msgid "Add tracking to the login and registration forms"
383
+ msgstr ""
384
+
385
+ #: admin/class-admin.php:582
386
+ msgid "Add tracking to the comment forms"
387
+ msgstr ""
388
+
389
+ #: admin/class-admin.php:587
390
+ msgid "Use # instead of ? for Campaign tracking"
391
+ msgstr ""
392
+
393
+ #: admin/class-admin.php:588
394
+ msgid "This adds a <code><a href=\"http://code.google.com/apis/analytics/docs/gaJSApiCampaignTracking.html#_gat.GA_Tracker_._setAllowAnchor\">_setAllowAnchor</a></code> call to your tracking code, and makes RSS link tagging use a # as well."
395
+ msgstr ""
396
+
397
+ #: admin/class-admin.php:593
398
+ msgid "Add <code>_setAllowLinker</code>"
399
+ msgstr ""
400
+
401
+ #: admin/class-admin.php:594
402
+ msgid "This adds a <code><a href=\"http://code.google.com/apis/analytics/docs/gaJS/gaJSApiDomainDirectory.html#_gat.GA_Tracker_._setAllowLinker\">_setAllowLinker</a></code> call to your tracking code, allowing you to use <code>_link</code> and related functions."
403
+ msgstr ""
404
+
405
+ #: admin/class-admin.php:599
406
+ msgid "Set <code>_setAllowHash</code> to false"
407
+ msgstr ""
408
+
409
+ #: admin/class-admin.php:600
410
+ msgid "This sets <code><a href=\"http://code.google.com/apis/analytics/docs/gaJS/gaJSApiDomainDirectory.html#_gat.GA_Tracker_._setAllowHash\">_setAllowHash</a></code> to false, allowing you to track subdomains etc."
411
+ msgstr ""
412
+
413
+ #: admin/class-admin.php:605
414
+ msgid "Anonymize IP's"
415
+ msgstr ""
416
+
417
+ #: admin/class-admin.php:606
418
+ msgid "This adds <code><a href=\"http://code.google.com/apis/analytics/docs/gaJS/gaJSApi_gat.html#_gat._anonymizeIp\">_anonymizeIp</a></code>, telling Google Analytics to anonymize the information sent by the tracker objects by removing the last octet of the IP address prior to its storage."
419
+ msgstr ""
420
+
421
+ #: admin/class-admin.php:610
422
+ msgid "Advanced Settings"
423
+ msgstr ""
424
+
425
+ #: admin/class-admin.php:615
426
+ msgid "Internal links to track as outbound"
427
+ msgstr ""
428
+
429
+ #: admin/class-admin.php:616
430
+ msgid "If you want to track all internal links that begin with <code>/out/</code>, enter <code>/out/</code> in the box above. If you have multiple prefixes you can separate them with comma's: <code>/out/,/recommends/</code>"
431
+ msgstr ""
432
+
433
+ #: admin/class-admin.php:621
434
+ msgid "Label to use"
435
+ msgstr ""
436
+
437
+ #: admin/class-admin.php:622
438
+ msgid "The label to use for these links, this will be added to where the click came from, so if the label is \"aff\", the label for a click from the content of an article becomes \"outbound-article-aff\"."
439
+ msgstr ""
440
+
441
+ #: admin/class-admin.php:626
442
+ msgid "Internal Links to Track as Outbound"
443
+ msgstr ""
444
+
445
+ #: admin/class-admin.php:629
446
+ msgid "The WordPress e-Commerce plugin has been detected. This plugin can automatically add transaction tracking for you. To do that, <a href=\"http://yoast.com/wordpress/google-analytics/enable-ecommerce/\">enable e-commerce for your reports in Google Analytics</a> and then check the box below."
447
+ msgstr ""
448
+
449
+ #: admin/class-admin.php:633 admin/class-admin.php:646
450
+ msgid "Enable transaction tracking"
451
+ msgstr ""
452
+
453
+ #: admin/class-admin.php:636
454
+ msgid "WordPress e-Commerce Settings"
455
+ msgstr ""
456
+
457
+ #: admin/class-admin.php:642
458
+ msgid "The Shopp e-Commerce plugin has been detected. This plugin can automatically add transaction tracking for you. To do that, <a href=\"http://www.google.com/support/googleanalytics/bin/answer.py?hl=en&amp;answer=55528\">enable e-commerce for your reports in Google Analytics</a> and then check the box below."
459
+ msgstr ""
460
+
461
+ #: admin/class-admin.php:649
462
+ msgid "Shopp e-Commerce Settings"
463
+ msgstr ""
464
+
465
+ #: admin/class-admin.php:652
466
+ msgid "If you want to confirm that tracking on your blog is working as it should, enable this option and check the console in %sFirebug%s (for Firefox), %sFirebug Lite%s (for other browsers) or Chrome &amp; Safari's Web Inspector. Be absolutely sure to disable debugging afterwards, as it is slower than normal tracking."
467
+ msgstr ""
468
+
469
+ #: admin/class-admin.php:653
470
+ msgid "Note"
471
+ msgstr ""
472
+
473
+ #: admin/class-admin.php:653
474
+ msgid "the debugging and firebug scripts are only loaded for admins."
475
+ msgstr ""
476
+
477
+ #: admin/class-admin.php:657
478
+ msgid "Enable debug mode"
479
+ msgstr ""
480
+
481
+ #: admin/class-admin.php:662
482
+ msgid "Enable Firebug Lite"
483
+ msgstr ""
484
+
485
+ #: admin/class-admin.php:665
486
+ msgid "Debug Mode"
487
+ msgstr ""
488
+
489
+ #: admin/class-admin.php:670
490
+ msgid "Do you really want to reset all settings?"
491
+ msgstr ""
492
+
493
+ #: admin/class-admin.php:674
494
+ msgid "Reset All Settings &raquo;"
495
+ msgstr ""
496
+
497
+ #: admin/class-admin.php:683
498
+ msgid "Help Spread the Word!"
499
+ msgstr ""
500
+
501
+ #: admin/class-admin.php:683
502
+ msgid "Want to help make this plugin even better? All donations are used to improve this plugin, so donate $20, $50 or $100 now!"
503
+ msgstr ""
504
+
505
+ #: admin/class-admin.php:689
506
+ msgid "Or you could:"
507
+ msgstr ""
508
+
509
+ #: admin/class-admin.php:691
510
+ msgid "Rate the plugin 5★ on WordPress.org"
511
+ msgstr ""
512
+
513
+ #: admin/class-admin.php:692
514
+ msgid "Help out other users in the forums"
515
+ msgstr ""
516
+
517
+ #: admin/class-admin.php:693
518
+ msgid "Blog about it & link to the %1$splugin page%2$s"
519
+ msgstr ""
520
+
521
+ #: admin/class-admin.php:755
522
+ msgid "Google Analytics is not active."
523
+ msgstr ""
524
+
525
+ #: admin/class-admin.php:755
526
+ msgid "You must %sselect which Analytics Profile to track%s before it can work."
527
+ msgstr ""
528
+
529
+ #: admin/class-pointer.php:37
530
+ msgid "Help improve Google Analytics for WordPress"
531
+ msgstr ""
532
+
533
+ #: admin/class-pointer.php:38
534
+ msgid "You've just installed Google Analytics for WordPress by Yoast. Please helps us improve it by allowing us to gather anonymous usage stats so we know which configurations, plugins and themes to test with."
535
+ msgstr ""
536
+
537
+ #: admin/class-pointer.php:43
538
+ msgid "Allow tracking"
539
+ msgstr ""
540
+
541
+ #: admin/class-pointer.php:49
542
+ msgid "Do not allow tracking"
543
+ msgstr ""
544
+
545
+ #: admin/yst_plugin_tools.php:54
546
+ msgid "Settings"
547
+ msgstr ""
548
+
549
+ #: admin/yst_plugin_tools.php:170
550
+ msgid "Why not do any or all of the following:"
551
+ msgstr ""
552
+
553
+ #: admin/yst_plugin_tools.php:172
554
+ msgid "Link to it so other folks can find out about it."
555
+ msgstr ""
556
+
557
+ #: admin/yst_plugin_tools.php:173
558
+ msgid "Give it a 5 star rating on WordPress.org."
559
+ msgstr ""
560
+
561
+ #: admin/yst_plugin_tools.php:174
562
+ msgid "Let other people know that it works with your WordPress setup."
563
+ msgstr ""
564
+
565
+ #: admin/yst_plugin_tools.php:176
566
+ msgid "Like this plugin?"
567
+ msgstr ""
568
+
569
+ #: frontend/class-frontend.php:75
570
+ msgid "Google Analytics tracking code not shown because you haven't setup Google Analytics for WordPress yet."
571
+ msgstr ""
572
+
573
+ #: frontend/class-frontend.php:310
574
+ msgid "Google Analytics tracking code not shown because users over level %s are ignored."
575
+ msgstr ""
576
+
577
+ #: frontend/class-frontend.php:661
578
+ msgid "Please set Google Analytics position to \"manual\" in the settings, or remove this call to yoast_analytics();"
579
+ msgstr ""
languages/google-analytics-for-wordpress-hu_HU.mo ADDED
Binary file
languages/google-analytics-for-wordpress-hu_HU.po ADDED
@@ -0,0 +1,579 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Google Analytics for WordPress in Hungarian
2
+ # This file is distributed under the same license as the Google Analytics for WordPress package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2014-01-06 10:19:43+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/0.1\n"
11
+ "Project-Id-Version: Google Analytics for WordPress\n"
12
+
13
+ #: admin/class-admin.php:30
14
+ msgid "Google Analytics Configuration"
15
+ msgstr ""
16
+
17
+ #: admin/class-admin.php:31
18
+ msgid "Google Analytics"
19
+ msgstr ""
20
+
21
+ #: admin/class-admin.php:129
22
+ msgid "The maximum number of allowed custom variables in Google Analytics is 5, please unselect one of the other custom variables before selecting this one."
23
+ msgstr ""
24
+
25
+ #: admin/class-admin.php:136
26
+ msgid "That's not a valid UA ID, please make sure it matches the expected pattern of: UA-XXXXXX-X, and that there are no spaces or other characters in the input field."
27
+ msgstr ""
28
+
29
+ #: admin/class-admin.php:151
30
+ msgid "Having problems?"
31
+ msgstr ""
32
+
33
+ #: admin/class-admin.php:152
34
+ msgid "If you're having problems with this plugin, please refer to its <a href='%s'>FAQ page</a>."
35
+ msgstr ""
36
+
37
+ #: admin/class-admin.php:171
38
+ msgid "Google Analytics settings reset."
39
+ msgstr ""
40
+
41
+ #: admin/class-admin.php:174
42
+ msgid "You cannot edit the Google Analytics for WordPress options."
43
+ msgstr ""
44
+
45
+ #: admin/class-admin.php:220
46
+ msgid "Google Analytics settings updated."
47
+ msgstr ""
48
+
49
+ #: admin/class-admin.php:227
50
+ msgid "Update Google Analytics Settings &raquo;"
51
+ msgstr ""
52
+
53
+ #: admin/class-admin.php:263
54
+ msgid "Google Analytics for WordPress Configuration"
55
+ msgstr ""
56
+
57
+ #: admin/class-admin.php:275
58
+ msgid "Please authenticate with Google Analytics to retrieve your tracking code:"
59
+ msgstr ""
60
+
61
+ #: admin/class-admin.php:275
62
+ msgid "Click here to authenticate with Google"
63
+ msgstr ""
64
+
65
+ #: admin/class-admin.php:340
66
+ msgid "Please select the correct Analytics Account"
67
+ msgstr ""
68
+
69
+ #: admin/class-admin.php:349
70
+ msgid "Please select the correct Analytics account to track:"
71
+ msgstr ""
72
+
73
+ #: admin/class-admin.php:351
74
+ msgid "Profile"
75
+ msgstr ""
76
+
77
+ #: admin/class-admin.php:363
78
+ msgid "Please note that if you have several profiles of the same website, it doesn't matter which profile you select, and in fact another profile might show as selected later. You can check whether they're profiles for the same site by checking if they have the same UA code. If that's true, tracking will be correct."
79
+ msgstr ""
80
+
81
+ #: admin/class-admin.php:365
82
+ msgid "Refresh this listing or switch to another account: "
83
+ msgstr ""
84
+
85
+ #: admin/class-admin.php:367
86
+ msgid "Unfortunately, an error occurred while connecting to Google, please try again:"
87
+ msgstr ""
88
+
89
+ #: admin/class-admin.php:371
90
+ msgid "Re-authenticate with Google"
91
+ msgstr ""
92
+
93
+ #: admin/class-admin.php:373
94
+ msgid "Select another Analytics Profile &raquo;"
95
+ msgstr ""
96
+
97
+ #: admin/class-admin.php:375
98
+ msgid "Manually enter your UA code: "
99
+ msgstr ""
100
+
101
+ #: admin/class-admin.php:380
102
+ msgid "Analytics Profile"
103
+ msgstr ""
104
+
105
+ #: admin/class-admin.php:381
106
+ msgid "Manually enter your UA code"
107
+ msgstr ""
108
+
109
+ #: admin/class-admin.php:384
110
+ msgid "In the header (default)"
111
+ msgstr ""
112
+
113
+ #: admin/class-admin.php:384
114
+ msgid "Insert manually"
115
+ msgstr ""
116
+
117
+ #: admin/class-admin.php:387
118
+ msgid "Notice"
119
+ msgstr ""
120
+
121
+ #: admin/class-admin.php:387
122
+ msgid "You switched your theme, please make sure your Google Analytics tracking is still ok. Save your settings to make sure Google Analytics gets loaded properly."
123
+ msgstr ""
124
+
125
+ #: admin/class-admin.php:390
126
+ msgid "The header is by far the best spot to place the tracking code. If you'd rather place the code manually, switch to manual placement. For more info %sread this page%s."
127
+ msgstr ""
128
+
129
+ #: admin/class-admin.php:391
130
+ msgid "%sFollow the instructions here%s to choose the location for your tracking code manually."
131
+ msgstr ""
132
+
133
+ #: admin/class-admin.php:395
134
+ msgid "Where should the tracking code be placed"
135
+ msgstr ""
136
+
137
+ #: admin/class-admin.php:401
138
+ msgid "Track outbound clicks &amp; downloads"
139
+ msgstr ""
140
+
141
+ #: admin/class-admin.php:402
142
+ msgid "Clicks &amp; downloads will be tracked as events, you can find these under Content &raquo; Event Tracking in your Google Analytics reports."
143
+ msgstr ""
144
+
145
+ #: admin/class-admin.php:407
146
+ msgid "Show advanced settings"
147
+ msgstr ""
148
+
149
+ #: admin/class-admin.php:408
150
+ msgid "Only adviced for advanced users who know their way around Google Analytics"
151
+ msgstr ""
152
+
153
+ #: admin/class-admin.php:413
154
+ msgid "Allow tracking of anonymous data"
155
+ msgstr ""
156
+
157
+ #: admin/class-admin.php:414
158
+ msgid "By allowing us to track anonymous data we can better help you, because we know with which WordPress configurations, themes and plugins we should test. No personal data will be submitted."
159
+ msgstr ""
160
+
161
+ #: admin/class-admin.php:417
162
+ msgid "Google Analytics Settings"
163
+ msgstr ""
164
+
165
+ #: admin/class-admin.php:420
166
+ msgid "Google Analytics allows you to save up to 5 custom variables on each page, and this plugin helps you make the most use of these! Check which custom variables you'd like the plugin to save for you below. Please note that these will only be saved when they are actually available."
167
+ msgstr ""
168
+
169
+ #: admin/class-admin.php:421
170
+ msgid "If you want to start using these custom variables, go to Visitors &raquo; Custom Variables in your Analytics reports."
171
+ msgstr ""
172
+
173
+ #: admin/class-admin.php:424
174
+ msgid "Logged in Users"
175
+ msgstr ""
176
+
177
+ #: admin/class-admin.php:425
178
+ msgid "Allows you to easily remove logged in users from your reports, or to segment by different user roles. The users primary role will be logged."
179
+ msgstr ""
180
+
181
+ #: admin/class-admin.php:430
182
+ msgid "Post type"
183
+ msgstr ""
184
+
185
+ #: admin/class-admin.php:431
186
+ msgid "Allows you to see pageviews per post type, especially useful if you use multiple custom post types."
187
+ msgstr ""
188
+
189
+ #: admin/class-admin.php:436
190
+ msgid "Author Name"
191
+ msgstr ""
192
+
193
+ #: admin/class-admin.php:437
194
+ msgid "Allows you to see pageviews per author."
195
+ msgstr ""
196
+
197
+ #: admin/class-admin.php:442
198
+ msgid "Tags"
199
+ msgstr ""
200
+
201
+ #: admin/class-admin.php:443
202
+ msgid "Allows you to see pageviews per tags using advanced segments."
203
+ msgstr ""
204
+
205
+ #: admin/class-admin.php:448
206
+ msgid "Publication year"
207
+ msgstr ""
208
+
209
+ #: admin/class-admin.php:449
210
+ msgid "Allows you to see pageviews per year of publication, showing you if your old posts still get traffic."
211
+ msgstr ""
212
+
213
+ #: admin/class-admin.php:454
214
+ msgid "Single Category"
215
+ msgstr ""
216
+
217
+ #: admin/class-admin.php:455
218
+ msgid "Allows you to see pageviews per category, works best when each post is in only one category."
219
+ msgstr ""
220
+
221
+ #: admin/class-admin.php:460
222
+ msgid "All Categories"
223
+ msgstr ""
224
+
225
+ #: admin/class-admin.php:461
226
+ msgid "Allows you to see pageviews per category using advanced segments, should be used when you use multiple categories per post."
227
+ msgstr ""
228
+
229
+ #: admin/class-admin.php:466
230
+ msgid "Custom Variables Settings"
231
+ msgstr ""
232
+
233
+ #: admin/class-admin.php:471
234
+ msgid "Ignore users"
235
+ msgstr ""
236
+
237
+ #: admin/class-admin.php:472
238
+ msgid "Users of the role you select and higher will be ignored, so if you select Editor, all Editors and Administrators will be ignored."
239
+ msgstr ""
240
+
241
+ #: admin/class-admin.php:474
242
+ msgid "Ignore no-one"
243
+ msgstr ""
244
+
245
+ #: admin/class-admin.php:475
246
+ msgid "Administrator"
247
+ msgstr ""
248
+
249
+ #: admin/class-admin.php:476
250
+ msgid "Editor"
251
+ msgstr ""
252
+
253
+ #: admin/class-admin.php:477
254
+ msgid "Author"
255
+ msgstr ""
256
+
257
+ #: admin/class-admin.php:478
258
+ msgid "Contributor"
259
+ msgstr ""
260
+
261
+ #: admin/class-admin.php:479
262
+ msgid "Subscriber (ignores all logged in users)"
263
+ msgstr ""
264
+
265
+ #: admin/class-admin.php:484
266
+ msgid "Track outbound clicks as pageviews"
267
+ msgstr ""
268
+
269
+ #: admin/class-admin.php:485
270
+ msgid "You do not need to enable this to enable outbound click tracking, this changes the default behavior of tracking clicks as events to tracking them as pageviews. This is therefore not recommended, as this would skew your statistics, but <em>is</em> sometimes necessary when you need to set outbound clicks as goals."
271
+ msgstr ""
272
+
273
+ #: admin/class-admin.php:490
274
+ msgid "Track downloads as pageviews"
275
+ msgstr ""
276
+
277
+ #: admin/class-admin.php:491
278
+ msgid "Not recommended, as this would skew your statistics, but it does make it possible to track downloads as goals."
279
+ msgstr ""
280
+
281
+ #: admin/class-admin.php:496
282
+ msgid "Extensions of files to track as downloads"
283
+ msgstr ""
284
+
285
+ #: admin/class-admin.php:502
286
+ msgid "Prefix to use in Analytics before the tracked pageviews"
287
+ msgstr ""
288
+
289
+ #: admin/class-admin.php:503
290
+ msgid "This prefix is used before all pageviews, they are then segmented automatically after that. If nothing is entered here, <code>/yoast-ga/</code> is used."
291
+ msgstr ""
292
+
293
+ #: admin/class-admin.php:509
294
+ msgid "Track full URL of outbound clicks or just the domain"
295
+ msgstr ""
296
+
297
+ #: admin/class-admin.php:511
298
+ msgid "Just the domain"
299
+ msgstr ""
300
+
301
+ #: admin/class-admin.php:512
302
+ msgid "Track the complete URL"
303
+ msgstr ""
304
+
305
+ #: admin/class-admin.php:518
306
+ msgid "Subdomain Tracking"
307
+ msgstr ""
308
+
309
+ #: admin/class-admin.php:519
310
+ msgid "This allows you to set the domain that's set by %s<code>setDomainName</code>%s for tracking subdomains, if empty this will not be set."
311
+ msgstr ""
312
+
313
+ #: admin/class-admin.php:524
314
+ msgid "Enable Cross Domain Tracking"
315
+ msgstr ""
316
+
317
+ #: admin/class-admin.php:525
318
+ msgid "This allows you to enable %sCross-Domain Tracking%s for this site. When endabled <code>_setAllowLinker:</code> will be enabled if it is not already."
319
+ msgstr ""
320
+
321
+ #: admin/class-admin.php:530
322
+ msgid "Cross-Domain Tracking, Primary Domain"
323
+ msgstr ""
324
+
325
+ #: admin/class-admin.php:531
326
+ msgid "Set the primary domain used in %s<code>setDomainName</code>%s for cross domain tracking (eg. <code>example-petstore.com</code> ), if empty this will default to your configured Home URL."
327
+ msgstr ""
328
+
329
+ #: admin/class-admin.php:536
330
+ msgid "Cross-Domain Tracking, Other Domains"
331
+ msgstr ""
332
+
333
+ #: admin/class-admin.php:537
334
+ msgid "All links to these domains will have the <a href=\"http://code.google.com/apis/analytics/docs/tracking/gaTrackingSite.html#multipleDomains\"><code>_link</code></a> code automatically attached. Separate domains/sub-domains with commas (eg. <code>dogs.example-petstore.com, cats.example-petstore.com</code>)"
335
+ msgstr ""
336
+
337
+ #: admin/class-admin.php:542
338
+ msgid "Custom Code"
339
+ msgstr ""
340
+
341
+ #: admin/class-admin.php:543
342
+ msgid "Not for the average user: this allows you to add a line of code, to be added before the <code>trackPageview</code> call."
343
+ msgstr ""
344
+
345
+ #: admin/class-admin.php:548
346
+ msgid "Track AdSense"
347
+ msgstr ""
348
+
349
+ #: admin/class-admin.php:549
350
+ msgid "This requires integration of your Analytics and AdSense account, for help, <a href=\"http://google.com/support/analytics/bin/answer.py?answer=92625\">look here</a>."
351
+ msgstr ""
352
+
353
+ #: admin/class-admin.php:554
354
+ msgid "Host ga.js locally"
355
+ msgstr ""
356
+
357
+ #: admin/class-admin.php:556
358
+ msgid "You have to provide a URL to your ga.js file:"
359
+ msgstr ""
360
+
361
+ #: admin/class-admin.php:559
362
+ msgid "For some reasons you might want to use a locally hosted ga.js file, or another ga.js file, check the box and then please enter the full URL including http here."
363
+ msgstr ""
364
+
365
+ #: admin/class-admin.php:563
366
+ msgid "Track extra Search Engines"
367
+ msgstr ""
368
+
369
+ #: admin/class-admin.php:565
370
+ msgid "You can provide a custom URL to the extra search engines file if you want:"
371
+ msgstr ""
372
+
373
+ #: admin/class-admin.php:571
374
+ msgid "Tag links in RSS feed with campaign variables"
375
+ msgstr ""
376
+
377
+ #: admin/class-admin.php:572
378
+ msgid "Do not use this feature if you use FeedBurner, as FeedBurner can do this automatically, and better than this plugin can. Check <a href=\"http://www.google.com/support/feedburner/bin/answer.py?hl=en&amp;answer=165769\">this help page</a> for info on how to enable this feature in FeedBurner."
379
+ msgstr ""
380
+
381
+ #: admin/class-admin.php:577
382
+ msgid "Add tracking to the login and registration forms"
383
+ msgstr ""
384
+
385
+ #: admin/class-admin.php:582
386
+ msgid "Add tracking to the comment forms"
387
+ msgstr ""
388
+
389
+ #: admin/class-admin.php:587
390
+ msgid "Use # instead of ? for Campaign tracking"
391
+ msgstr ""
392
+
393
+ #: admin/class-admin.php:588
394
+ msgid "This adds a <code><a href=\"http://code.google.com/apis/analytics/docs/gaJSApiCampaignTracking.html#_gat.GA_Tracker_._setAllowAnchor\">_setAllowAnchor</a></code> call to your tracking code, and makes RSS link tagging use a # as well."
395
+ msgstr ""
396
+
397
+ #: admin/class-admin.php:593
398
+ msgid "Add <code>_setAllowLinker</code>"
399
+ msgstr ""
400
+
401
+ #: admin/class-admin.php:594
402
+ msgid "This adds a <code><a href=\"http://code.google.com/apis/analytics/docs/gaJS/gaJSApiDomainDirectory.html#_gat.GA_Tracker_._setAllowLinker\">_setAllowLinker</a></code> call to your tracking code, allowing you to use <code>_link</code> and related functions."
403
+ msgstr ""
404
+
405
+ #: admin/class-admin.php:599
406
+ msgid "Set <code>_setAllowHash</code> to false"
407
+ msgstr ""
408
+
409
+ #: admin/class-admin.php:600
410
+ msgid "This sets <code><a href=\"http://code.google.com/apis/analytics/docs/gaJS/gaJSApiDomainDirectory.html#_gat.GA_Tracker_._setAllowHash\">_setAllowHash</a></code> to false, allowing you to track subdomains etc."
411
+ msgstr ""
412
+
413
+ #: admin/class-admin.php:605
414
+ msgid "Anonymize IP's"
415
+ msgstr ""
416
+
417
+ #: admin/class-admin.php:606
418
+ msgid "This adds <code><a href=\"http://code.google.com/apis/analytics/docs/gaJS/gaJSApi_gat.html#_gat._anonymizeIp\">_anonymizeIp</a></code>, telling Google Analytics to anonymize the information sent by the tracker objects by removing the last octet of the IP address prior to its storage."
419
+ msgstr ""
420
+
421
+ #: admin/class-admin.php:610
422
+ msgid "Advanced Settings"
423
+ msgstr ""
424
+
425
+ #: admin/class-admin.php:615
426
+ msgid "Internal links to track as outbound"
427
+ msgstr ""
428
+
429
+ #: admin/class-admin.php:616
430
+ msgid "If you want to track all internal links that begin with <code>/out/</code>, enter <code>/out/</code> in the box above. If you have multiple prefixes you can separate them with comma's: <code>/out/,/recommends/</code>"
431
+ msgstr ""
432
+
433
+ #: admin/class-admin.php:621
434
+ msgid "Label to use"
435
+ msgstr ""
436
+
437
+ #: admin/class-admin.php:622
438
+ msgid "The label to use for these links, this will be added to where the click came from, so if the label is \"aff\", the label for a click from the content of an article becomes \"outbound-article-aff\"."
439
+ msgstr ""
440
+
441
+ #: admin/class-admin.php:626
442
+ msgid "Internal Links to Track as Outbound"
443
+ msgstr ""
444
+
445
+ #: admin/class-admin.php:629
446
+ msgid "The WordPress e-Commerce plugin has been detected. This plugin can automatically add transaction tracking for you. To do that, <a href=\"http://yoast.com/wordpress/google-analytics/enable-ecommerce/\">enable e-commerce for your reports in Google Analytics</a> and then check the box below."
447
+ msgstr ""
448
+
449
+ #: admin/class-admin.php:633 admin/class-admin.php:646
450
+ msgid "Enable transaction tracking"
451
+ msgstr ""
452
+
453
+ #: admin/class-admin.php:636
454
+ msgid "WordPress e-Commerce Settings"
455
+ msgstr ""
456
+
457
+ #: admin/class-admin.php:642
458
+ msgid "The Shopp e-Commerce plugin has been detected. This plugin can automatically add transaction tracking for you. To do that, <a href=\"http://www.google.com/support/googleanalytics/bin/answer.py?hl=en&amp;answer=55528\">enable e-commerce for your reports in Google Analytics</a> and then check the box below."
459
+ msgstr ""
460
+
461
+ #: admin/class-admin.php:649
462
+ msgid "Shopp e-Commerce Settings"
463
+ msgstr ""
464
+
465
+ #: admin/class-admin.php:652
466
+ msgid "If you want to confirm that tracking on your blog is working as it should, enable this option and check the console in %sFirebug%s (for Firefox), %sFirebug Lite%s (for other browsers) or Chrome &amp; Safari's Web Inspector. Be absolutely sure to disable debugging afterwards, as it is slower than normal tracking."
467
+ msgstr ""
468
+
469
+ #: admin/class-admin.php:653
470
+ msgid "Note"
471
+ msgstr ""
472
+
473
+ #: admin/class-admin.php:653
474
+ msgid "the debugging and firebug scripts are only loaded for admins."
475
+ msgstr ""
476
+
477
+ #: admin/class-admin.php:657
478
+ msgid "Enable debug mode"
479
+ msgstr ""
480
+
481
+ #: admin/class-admin.php:662
482
+ msgid "Enable Firebug Lite"
483
+ msgstr ""
484
+
485
+ #: admin/class-admin.php:665
486
+ msgid "Debug Mode"
487
+ msgstr ""
488
+
489
+ #: admin/class-admin.php:670
490
+ msgid "Do you really want to reset all settings?"
491
+ msgstr ""
492
+
493
+ #: admin/class-admin.php:674
494
+ msgid "Reset All Settings &raquo;"
495
+ msgstr ""
496
+
497
+ #: admin/class-admin.php:683
498
+ msgid "Help Spread the Word!"
499
+ msgstr ""
500
+
501
+ #: admin/class-admin.php:683
502
+ msgid "Want to help make this plugin even better? All donations are used to improve this plugin, so donate $20, $50 or $100 now!"
503
+ msgstr ""
504
+
505
+ #: admin/class-admin.php:689
506
+ msgid "Or you could:"
507
+ msgstr ""
508
+
509
+ #: admin/class-admin.php:691
510
+ msgid "Rate the plugin 5★ on WordPress.org"
511
+ msgstr ""
512
+
513
+ #: admin/class-admin.php:692
514
+ msgid "Help out other users in the forums"
515
+ msgstr ""
516
+
517
+ #: admin/class-admin.php:693
518
+ msgid "Blog about it & link to the %1$splugin page%2$s"
519
+ msgstr ""
520
+
521
+ #: admin/class-admin.php:755
522
+ msgid "Google Analytics is not active."
523
+ msgstr "A Google Analytics nincs aktiválva."
524
+
525
+ #: admin/class-admin.php:755
526
+ msgid "You must %sselect which Analytics Profile to track%s before it can work."
527
+ msgstr "Előbb %ski kell választanod az Analytics Profilt a követéshez%s, hogy aktiváld."
528
+
529
+ #: admin/class-pointer.php:37
530
+ msgid "Help improve Google Analytics for WordPress"
531
+ msgstr ""
532
+
533
+ #: admin/class-pointer.php:38
534
+ msgid "You've just installed Google Analytics for WordPress by Yoast. Please helps us improve it by allowing us to gather anonymous usage stats so we know which configurations, plugins and themes to test with."
535
+ msgstr ""
536
+
537
+ #: admin/class-pointer.php:43
538
+ msgid "Allow tracking"
539
+ msgstr ""
540
+
541
+ #: admin/class-pointer.php:49
542
+ msgid "Do not allow tracking"
543
+ msgstr ""
544
+
545
+ #: admin/yst_plugin_tools.php:54
546
+ msgid "Settings"
547
+ msgstr ""
548
+
549
+ #: admin/yst_plugin_tools.php:170
550
+ msgid "Why not do any or all of the following:"
551
+ msgstr ""
552
+
553
+ #: admin/yst_plugin_tools.php:172
554
+ msgid "Link to it so other folks can find out about it."
555
+ msgstr ""
556
+
557
+ #: admin/yst_plugin_tools.php:173
558
+ msgid "Give it a 5 star rating on WordPress.org."
559
+ msgstr ""
560
+
561
+ #: admin/yst_plugin_tools.php:174
562
+ msgid "Let other people know that it works with your WordPress setup."
563
+ msgstr ""
564
+
565
+ #: admin/yst_plugin_tools.php:176
566
+ msgid "Like this plugin?"
567
+ msgstr ""
568
+
569
+ #: frontend/class-frontend.php:75
570
+ msgid "Google Analytics tracking code not shown because you haven't setup Google Analytics for WordPress yet."
571
+ msgstr ""
572
+
573
+ #: frontend/class-frontend.php:310
574
+ msgid "Google Analytics tracking code not shown because users over level %s are ignored."
575
+ msgstr ""
576
+
577
+ #: frontend/class-frontend.php:661
578
+ msgid "Please set Google Analytics position to \"manual\" in the settings, or remove this call to yoast_analytics();"
579
+ msgstr ""
languages/google-analytics-for-wordpress-nl_NL.mo ADDED
Binary file
languages/google-analytics-for-wordpress-nl_NL.po ADDED
@@ -0,0 +1,579 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Google Analytics for WordPress in Dutch
2
+ # This file is distributed under the same license as the Google Analytics for WordPress package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2014-01-06 10:07:57+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/0.1\n"
11
+ "Project-Id-Version: Google Analytics for WordPress\n"
12
+
13
+ #: admin/class-admin.php:30
14
+ msgid "Google Analytics Configuration"
15
+ msgstr "Google Analytics configuratie"
16
+
17
+ #: admin/class-admin.php:31
18
+ msgid "Google Analytics"
19
+ msgstr "Google Analytics"
20
+
21
+ #: admin/class-admin.php:129
22
+ msgid "The maximum number of allowed custom variables in Google Analytics is 5, please unselect one of the other custom variables before selecting this one."
23
+ msgstr "Het maximum aantal toegestane custom variabelen in Google Analytics is 5, deselecteer een van de andere custom variabelen voordat je deze selecteert."
24
+
25
+ #: admin/class-admin.php:136
26
+ msgid "That's not a valid UA ID, please make sure it matches the expected pattern of: UA-XXXXXX-X, and that there are no spaces or other characters in the input field."
27
+ msgstr "dat is geen geldige UA ID, zorg er voor dat het voeldoet aan het verwachte patroon van: UA-XXXXXX-X, en dat er geen spaties of andere tekens in het invulveld staan."
28
+
29
+ #: admin/class-admin.php:151
30
+ msgid "Having problems?"
31
+ msgstr "Heb je problemen?"
32
+
33
+ #: admin/class-admin.php:152
34
+ msgid "If you're having problems with this plugin, please refer to its <a href='%s'>FAQ page</a>."
35
+ msgstr "Als je problemen hebt met deze plugin, ga dan naar de <a href='%s'>FAQ pagina</a>."
36
+
37
+ #: admin/class-admin.php:171
38
+ msgid "Google Analytics settings reset."
39
+ msgstr "Google Analytics instellingen opnieuw ingesteld"
40
+
41
+ #: admin/class-admin.php:174
42
+ msgid "You cannot edit the Google Analytics for WordPress options."
43
+ msgstr "Je kunt de Google Analytics for WordPress opties niet bewerken."
44
+
45
+ #: admin/class-admin.php:220
46
+ msgid "Google Analytics settings updated."
47
+ msgstr "Google Analytics instellingen geüpdatet."
48
+
49
+ #: admin/class-admin.php:227
50
+ msgid "Update Google Analytics Settings &raquo;"
51
+ msgstr "Update Google Analytics instellingen &raquo;"
52
+
53
+ #: admin/class-admin.php:263
54
+ msgid "Google Analytics for WordPress Configuration"
55
+ msgstr "Google Analytics for WordPress configuratie"
56
+
57
+ #: admin/class-admin.php:275
58
+ msgid "Please authenticate with Google Analytics to retrieve your tracking code:"
59
+ msgstr "Verifieer bij Google Analytics om je trackingcode te ontvangen:"
60
+
61
+ #: admin/class-admin.php:275
62
+ msgid "Click here to authenticate with Google"
63
+ msgstr "Klik hier om bij Google te verifiëren"
64
+
65
+ #: admin/class-admin.php:340
66
+ msgid "Please select the correct Analytics Account"
67
+ msgstr "Selecteer het goede Analytics account"
68
+
69
+ #: admin/class-admin.php:349
70
+ msgid "Please select the correct Analytics account to track:"
71
+ msgstr "Selecteer het goede Analytics account om te tracken:"
72
+
73
+ #: admin/class-admin.php:351
74
+ msgid "Profile"
75
+ msgstr "Profiel"
76
+
77
+ #: admin/class-admin.php:363
78
+ msgid "Please note that if you have several profiles of the same website, it doesn't matter which profile you select, and in fact another profile might show as selected later. You can check whether they're profiles for the same site by checking if they have the same UA code. If that's true, tracking will be correct."
79
+ msgstr "Let op: als je meerdere profielen op dezelfde website gebruikt, maakt het niet welk profiel je selecteert. Het kan zelfs zo zijn dat er later een ander profiel geselecteerd is. Je kunt bekijken of de profielen voor dezelfde site zijn door te controleren of ze dezelfde UA code hebben. Als dat zo is, dan is de tracking goed."
80
+
81
+ #: admin/class-admin.php:365
82
+ msgid "Refresh this listing or switch to another account: "
83
+ msgstr "Ververs deze lijst of schakel over naar een ander account:"
84
+
85
+ #: admin/class-admin.php:367
86
+ msgid "Unfortunately, an error occurred while connecting to Google, please try again:"
87
+ msgstr "Helaas, er is een fout opgetreden met het verbinden met Google, probeer het nog een keer:"
88
+
89
+ #: admin/class-admin.php:371
90
+ msgid "Re-authenticate with Google"
91
+ msgstr "Verifieer opnieuw bij Google"
92
+
93
+ #: admin/class-admin.php:373
94
+ msgid "Select another Analytics Profile &raquo;"
95
+ msgstr "Selecteer een ander Analytics profiel &raquo;"
96
+
97
+ #: admin/class-admin.php:375
98
+ msgid "Manually enter your UA code: "
99
+ msgstr "Vul je UA code handmatig in:"
100
+
101
+ #: admin/class-admin.php:380
102
+ msgid "Analytics Profile"
103
+ msgstr "Analytics profiel"
104
+
105
+ #: admin/class-admin.php:381
106
+ msgid "Manually enter your UA code"
107
+ msgstr "Vul je UA code handmatig in"
108
+
109
+ #: admin/class-admin.php:384
110
+ msgid "In the header (default)"
111
+ msgstr "In de header (standaard)"
112
+
113
+ #: admin/class-admin.php:384
114
+ msgid "Insert manually"
115
+ msgstr "Vul handmatig in"
116
+
117
+ #: admin/class-admin.php:387
118
+ msgid "Notice"
119
+ msgstr "Uitleg"
120
+
121
+ #: admin/class-admin.php:387
122
+ msgid "You switched your theme, please make sure your Google Analytics tracking is still ok. Save your settings to make sure Google Analytics gets loaded properly."
123
+ msgstr "Je hebt je thema veranderd, zorg er voor dat je Google Analytics tracking nog steeds goed is. Bewaar je instellingen om er zeker van te zijn dat Google Analytics goed geladen wordt."
124
+
125
+ #: admin/class-admin.php:390
126
+ msgid "The header is by far the best spot to place the tracking code. If you'd rather place the code manually, switch to manual placement. For more info %sread this page%s."
127
+ msgstr "De header is veruit de beste plek om de tracking code te plaatsen. Als je het het liever handmatig plaatst, schakel dan over op handmatige plaatsing. Voor meer info %slees deze pagina%s."
128
+
129
+ #: admin/class-admin.php:391
130
+ msgid "%sFollow the instructions here%s to choose the location for your tracking code manually."
131
+ msgstr "%sVolg de instructiies hier%s om zelf een locatie te kiezen voor je tracking code."
132
+
133
+ #: admin/class-admin.php:395
134
+ msgid "Where should the tracking code be placed"
135
+ msgstr "Waar moet de tracking code worden geplaatst"
136
+
137
+ #: admin/class-admin.php:401
138
+ msgid "Track outbound clicks &amp; downloads"
139
+ msgstr "Track externe kliks &amp; downloads"
140
+
141
+ #: admin/class-admin.php:402
142
+ msgid "Clicks &amp; downloads will be tracked as events, you can find these under Content &raquo; Event Tracking in your Google Analytics reports."
143
+ msgstr "Kliks &amp; downloads zullen worden getrackt als events, je kunt deze vinden onder Content &raquo; Event Tracking in je Google Analytics rapportages."
144
+
145
+ #: admin/class-admin.php:407
146
+ msgid "Show advanced settings"
147
+ msgstr "Laat geavanceerde instellingen zien"
148
+
149
+ #: admin/class-admin.php:408
150
+ msgid "Only adviced for advanced users who know their way around Google Analytics"
151
+ msgstr "Alleen voor geavanceerde gebruikers die de weg kennen in Google Analytics"
152
+
153
+ #: admin/class-admin.php:413
154
+ msgid "Allow tracking of anonymous data"
155
+ msgstr "Tracking van anonieme data toestaan"
156
+
157
+ #: admin/class-admin.php:414
158
+ msgid "By allowing us to track anonymous data we can better help you, because we know with which WordPress configurations, themes and plugins we should test. No personal data will be submitted."
159
+ msgstr "Door ons toestemming te geven om anonieme data te tracken kunnen we je beter helpen, omdat we dan weten we met welke instellingen, plugins en thema' s we moeten testen. Dit gaat niet om persoonlijke gegevens. "
160
+
161
+ #: admin/class-admin.php:417
162
+ msgid "Google Analytics Settings"
163
+ msgstr "Google Analytics instellingen"
164
+
165
+ #: admin/class-admin.php:420
166
+ msgid "Google Analytics allows you to save up to 5 custom variables on each page, and this plugin helps you make the most use of these! Check which custom variables you'd like the plugin to save for you below. Please note that these will only be saved when they are actually available."
167
+ msgstr "Google Analytics geeft je de mogelijkheid om tot 5 custom variabelen te bewaren op elke pagina. Deze plugin helpt je om het maximale eruit te halen. Selecteer hieronder welke custom variabelen de plugin voor je moet bewaren. Let op: ze worden alleen bewaard als ze ook daadwerkelijk beschikbaar zijn."
168
+
169
+ #: admin/class-admin.php:421
170
+ msgid "If you want to start using these custom variables, go to Visitors &raquo; Custom Variables in your Analytics reports."
171
+ msgstr "Als je je eigen variabelen wilt gebruiken, ga dan naar Bezoekers &raquo; Custom Variables in je Analytics rapportages."
172
+
173
+ #: admin/class-admin.php:424
174
+ msgid "Logged in Users"
175
+ msgstr "Ingelogde gebruikers"
176
+
177
+ #: admin/class-admin.php:425
178
+ msgid "Allows you to easily remove logged in users from your reports, or to segment by different user roles. The users primary role will be logged."
179
+ msgstr "Zorgt er voor dat je makkelijk ingelogde gebruikers kunt verwijderen uit je rapport, of te segmenteren op de verschillende gebruikersrollen. De hoofdrol van de gebruiker zal worden gelogd."
180
+
181
+ #: admin/class-admin.php:430
182
+ msgid "Post type"
183
+ msgstr "Berichttype"
184
+
185
+ #: admin/class-admin.php:431
186
+ msgid "Allows you to see pageviews per post type, especially useful if you use multiple custom post types."
187
+ msgstr "Zorgt dat je de pageviews per berichttype kunt bekijken, vooral nuttig als je meerdere custom post types gebruikt. "
188
+
189
+ #: admin/class-admin.php:436
190
+ msgid "Author Name"
191
+ msgstr "Naam auteur"
192
+
193
+ #: admin/class-admin.php:437
194
+ msgid "Allows you to see pageviews per author."
195
+ msgstr "Zorgt dat je de pageviews per auteur kunt zien."
196
+
197
+ #: admin/class-admin.php:442
198
+ msgid "Tags"
199
+ msgstr "Tags"
200
+
201
+ #: admin/class-admin.php:443
202
+ msgid "Allows you to see pageviews per tags using advanced segments."
203
+ msgstr "Zorgt dat je de pageviews per tag met gebruik van geavanceerde elementen kunt zien."
204
+
205
+ #: admin/class-admin.php:448
206
+ msgid "Publication year"
207
+ msgstr "Publicatiejaar"
208
+
209
+ #: admin/class-admin.php:449
210
+ msgid "Allows you to see pageviews per year of publication, showing you if your old posts still get traffic."
211
+ msgstr "Zorgt dat je de pageviews per publicatiejaar kunt zien, zodat weet welke oude berichten nog steeds verkeer krijgen."
212
+
213
+ #: admin/class-admin.php:454
214
+ msgid "Single Category"
215
+ msgstr "Enkele categorie"
216
+
217
+ #: admin/class-admin.php:455
218
+ msgid "Allows you to see pageviews per category, works best when each post is in only one category."
219
+ msgstr "Zorgt dat je de pageviews per categorie kunt bekijken, dit werkt het beste als elk bericht maar een categorie heeft."
220
+
221
+ #: admin/class-admin.php:460
222
+ msgid "All Categories"
223
+ msgstr "Alle categorieën"
224
+
225
+ #: admin/class-admin.php:461
226
+ msgid "Allows you to see pageviews per category using advanced segments, should be used when you use multiple categories per post."
227
+ msgstr "Zorgt dat je de pageviews per categorie kunt bekijken met geavanceerde segmenten. Dit gebruik je als je berichten hebt met meerdere categorieën."
228
+
229
+ #: admin/class-admin.php:466
230
+ msgid "Custom Variables Settings"
231
+ msgstr "Eigen variabelen-instellingen"
232
+
233
+ #: admin/class-admin.php:471
234
+ msgid "Ignore users"
235
+ msgstr "Negeer gebruikers"
236
+
237
+ #: admin/class-admin.php:472
238
+ msgid "Users of the role you select and higher will be ignored, so if you select Editor, all Editors and Administrators will be ignored."
239
+ msgstr "Gebruikers met de rol die je selecteert en hoger worden genegeerd, dus als je Redacteur selecteert, dan worden alle redacteurs en administrators genegeerd."
240
+
241
+ #: admin/class-admin.php:474
242
+ msgid "Ignore no-one"
243
+ msgstr "Negeer niemand"
244
+
245
+ #: admin/class-admin.php:475
246
+ msgid "Administrator"
247
+ msgstr "Administrator"
248
+
249
+ #: admin/class-admin.php:476
250
+ msgid "Editor"
251
+ msgstr "Redacteur"
252
+
253
+ #: admin/class-admin.php:477
254
+ msgid "Author"
255
+ msgstr "Auteur"
256
+
257
+ #: admin/class-admin.php:478
258
+ msgid "Contributor"
259
+ msgstr "Schrijver"
260
+
261
+ #: admin/class-admin.php:479
262
+ msgid "Subscriber (ignores all logged in users)"
263
+ msgstr "Abonnee (negeert alle ingelogde gebruikers)"
264
+
265
+ #: admin/class-admin.php:484
266
+ msgid "Track outbound clicks as pageviews"
267
+ msgstr "Track externe kliks als pageviews"
268
+
269
+ #: admin/class-admin.php:485
270
+ msgid "You do not need to enable this to enable outbound click tracking, this changes the default behavior of tracking clicks as events to tracking them as pageviews. This is therefore not recommended, as this would skew your statistics, but <em>is</em> sometimes necessary when you need to set outbound clicks as goals."
271
+ msgstr "Je hoeft dit niet aan te zetten voor externe klik tracking, dit verandert het standaardgedrag van de tracking als events in tracking als pageviews. Het wordt daarom afgeraden, omdat het je statistieken verandert, maar het <em>is</em> soms nodig als je de externe kliks als doelen wilt instellen."
272
+
273
+ #: admin/class-admin.php:490
274
+ msgid "Track downloads as pageviews"
275
+ msgstr "Track downloads als pageviews"
276
+
277
+ #: admin/class-admin.php:491
278
+ msgid "Not recommended, as this would skew your statistics, but it does make it possible to track downloads as goals."
279
+ msgstr "Niet aanbevolen, want dit verandert je statistieken. Maar het maakt het wel mogelijk om downloads als doelen te tracken."
280
+
281
+ #: admin/class-admin.php:496
282
+ msgid "Extensions of files to track as downloads"
283
+ msgstr "Bestands-extensies tracken als downloads"
284
+
285
+ #: admin/class-admin.php:502
286
+ msgid "Prefix to use in Analytics before the tracked pageviews"
287
+ msgstr "Voorvoegsel te gebruiken in Analytics voorafgaand aan de getrackte pageviews"
288
+
289
+ #: admin/class-admin.php:503
290
+ msgid "This prefix is used before all pageviews, they are then segmented automatically after that. If nothing is entered here, <code>/yoast-ga/</code> is used."
291
+ msgstr "Dit voorvoegsel wordt gebruikt voor alle pageviews, ze worden daarna automatisch gesegmenteerd. Als hier niets is ingevuld, dan wordt <code>/yoast-ga/</code> gebruikt."
292
+
293
+ #: admin/class-admin.php:509
294
+ msgid "Track full URL of outbound clicks or just the domain"
295
+ msgstr "Track de hele URL van externe kliks of alleen het domein"
296
+
297
+ #: admin/class-admin.php:511
298
+ msgid "Just the domain"
299
+ msgstr "Alleen het domein"
300
+
301
+ #: admin/class-admin.php:512
302
+ msgid "Track the complete URL"
303
+ msgstr "Track de complete URL"
304
+
305
+ #: admin/class-admin.php:518
306
+ msgid "Subdomain Tracking"
307
+ msgstr "Tracking van subdomein"
308
+
309
+ #: admin/class-admin.php:519
310
+ msgid "This allows you to set the domain that's set by %s<code>setDomainName</code>%s for tracking subdomains, if empty this will not be set."
311
+ msgstr "Dit zorgt er voor dat het domein bij %s<code>setDomainName</code>%s subdomeinen kan tracken, als dit leeg is, dan wordt het niet ingesteld."
312
+
313
+ #: admin/class-admin.php:524
314
+ msgid "Enable Cross Domain Tracking"
315
+ msgstr "Cross domein tracking aanzetten"
316
+
317
+ #: admin/class-admin.php:525
318
+ msgid "This allows you to enable %sCross-Domain Tracking%s for this site. When endabled <code>_setAllowLinker:</code> will be enabled if it is not already."
319
+ msgstr "Dit zorgt dat %sCross-Domain Tracking%s aanstaat voor deze site. Als het aan staat, dan wordt <code>_setAllowLinker:</code> aangezet als dat nog niet het geval was."
320
+
321
+ #: admin/class-admin.php:530
322
+ msgid "Cross-Domain Tracking, Primary Domain"
323
+ msgstr "Cross-domein tracking, hoofddomein"
324
+
325
+ #: admin/class-admin.php:531
326
+ msgid "Set the primary domain used in %s<code>setDomainName</code>%s for cross domain tracking (eg. <code>example-petstore.com</code> ), if empty this will default to your configured Home URL."
327
+ msgstr "Stel het hoofddomein in %s<code>setDomainName</code>%s voor cross domein tracking (bijv. <code>voorbeeld-dierenwinkel.nl</code> ), als dit veld leeg is gaat deze automatisch naar de Home URL."
328
+
329
+ #: admin/class-admin.php:536
330
+ msgid "Cross-Domain Tracking, Other Domains"
331
+ msgstr "Cross-domein tracking, andere domeinen"
332
+
333
+ #: admin/class-admin.php:537
334
+ msgid "All links to these domains will have the <a href=\"http://code.google.com/apis/analytics/docs/tracking/gaTrackingSite.html#multipleDomains\"><code>_link</code></a> code automatically attached. Separate domains/sub-domains with commas (eg. <code>dogs.example-petstore.com, cats.example-petstore.com</code>)"
335
+ msgstr "Alle links naar deze domeinen zullen automatisch de <a href=\"http://code.google.com/apis/analytics/docs/tracking/gaTrackingSite.html#multipleDomains\"><code>_link</code></a> code krijgen. Scheid domeinen/sub-domeinen met komma's (bijv. <code>honden.voorbeeld-dierenwinkel.nl,katten.voorbeeld-dierenwinkel.nl</code>)"
336
+
337
+ #: admin/class-admin.php:542
338
+ msgid "Custom Code"
339
+ msgstr "Eigen code"
340
+
341
+ #: admin/class-admin.php:543
342
+ msgid "Not for the average user: this allows you to add a line of code, to be added before the <code>trackPageview</code> call."
343
+ msgstr "Niet voor de gemiddelde gebruiker: dit zorgt dat je een regel codes kan toevoegen voor de <code>trackPageview</code> call."
344
+
345
+ #: admin/class-admin.php:548
346
+ msgid "Track AdSense"
347
+ msgstr "Track AdSense"
348
+
349
+ #: admin/class-admin.php:549
350
+ msgid "This requires integration of your Analytics and AdSense account, for help, <a href=\"http://google.com/support/analytics/bin/answer.py?answer=92625\">look here</a>."
351
+ msgstr "Dit heeft een integratie van je Analytics en AdSense account nodig. Hulp nodig? <a href=\"http://google.com/support/analytics/bin/answer.py?answer=92625\">Kijk hier</a>."
352
+
353
+ #: admin/class-admin.php:554
354
+ msgid "Host ga.js locally"
355
+ msgstr "Host ga.js lokaal"
356
+
357
+ #: admin/class-admin.php:556
358
+ msgid "You have to provide a URL to your ga.js file:"
359
+ msgstr "Je moet een URL naar je ga.js bestand opgeven:"
360
+
361
+ #: admin/class-admin.php:559
362
+ msgid "For some reasons you might want to use a locally hosted ga.js file, or another ga.js file, check the box and then please enter the full URL including http here."
363
+ msgstr "Als je om een of andere reden een ga.js bestand lokaal wilt hosten, of een ander ga.js bestand, vink de box aan en vul hier de complete URL in, inclusief http."
364
+
365
+ #: admin/class-admin.php:563
366
+ msgid "Track extra Search Engines"
367
+ msgstr "Track extra zoekmachines"
368
+
369
+ #: admin/class-admin.php:565
370
+ msgid "You can provide a custom URL to the extra search engines file if you want:"
371
+ msgstr "Je kunt een eigen URL toevoegen aan de extra zoekmachines als je dat wilt:"
372
+
373
+ #: admin/class-admin.php:571
374
+ msgid "Tag links in RSS feed with campaign variables"
375
+ msgstr "Tag links in RSS feed met campagne variabelen"
376
+
377
+ #: admin/class-admin.php:572
378
+ msgid "Do not use this feature if you use FeedBurner, as FeedBurner can do this automatically, and better than this plugin can. Check <a href=\"http://www.google.com/support/feedburner/bin/answer.py?hl=en&amp;answer=165769\">this help page</a> for info on how to enable this feature in FeedBurner."
379
+ msgstr "Gebruik deze optie niet als je FeedBurner gebruikt, omdat FeedBurner dit automatisch en beter dan deze plugin kan doen. Bekijk <a href=\"http://www.google.com/support/feedburner/bin/answer.py?hl=en&amp;answer=165769\">deze helppagina</a> voor info over hoe je deze optie in FeedBurner aanzet."
380
+
381
+ #: admin/class-admin.php:577
382
+ msgid "Add tracking to the login and registration forms"
383
+ msgstr "Voeg tracking toe aan de login- en registratieformulieren"
384
+
385
+ #: admin/class-admin.php:582
386
+ msgid "Add tracking to the comment forms"
387
+ msgstr "Voeg tracking toe aan de reactieformulieren"
388
+
389
+ #: admin/class-admin.php:587
390
+ msgid "Use # instead of ? for Campaign tracking"
391
+ msgstr "Gebruik # in plaats van ? voor Campagne tracking"
392
+
393
+ #: admin/class-admin.php:588
394
+ msgid "This adds a <code><a href=\"http://code.google.com/apis/analytics/docs/gaJSApiCampaignTracking.html#_gat.GA_Tracker_._setAllowAnchor\">_setAllowAnchor</a></code> call to your tracking code, and makes RSS link tagging use a # as well."
395
+ msgstr "Deze voegt een <code><a href=\"http://code.google.com/apis/analytics/docs/gaJSApiCampaignTracking.html#_gat.GA_Tracker_._setAllowAnchor\">_setAllowAnchor</a></code> call toe aan je trackingcode en zorgt ook dat RSS link tagging een # gebruikt."
396
+
397
+ #: admin/class-admin.php:593
398
+ msgid "Add <code>_setAllowLinker</code>"
399
+ msgstr "Voeg <code>_setAllowLinker</code> toe"
400
+
401
+ #: admin/class-admin.php:594
402
+ msgid "This adds a <code><a href=\"http://code.google.com/apis/analytics/docs/gaJS/gaJSApiDomainDirectory.html#_gat.GA_Tracker_._setAllowLinker\">_setAllowLinker</a></code> call to your tracking code, allowing you to use <code>_link</code> and related functions."
403
+ msgstr "Dit voegt een <code><a href=\"http://code.google.com/apis/analytics/docs/gaJS/gaJSApiDomainDirectory.html#_gat.GA_Tracker_._setAllowLinker\">_setAllowLinker</a></code> call toe aan je trackingcode en zorgt dat je <code>_link</code> en gerelateerde functies kunt gebruiken."
404
+
405
+ #: admin/class-admin.php:599
406
+ msgid "Set <code>_setAllowHash</code> to false"
407
+ msgstr "Zet <code>_setAllowHash</code> op false"
408
+
409
+ #: admin/class-admin.php:600
410
+ msgid "This sets <code><a href=\"http://code.google.com/apis/analytics/docs/gaJS/gaJSApiDomainDirectory.html#_gat.GA_Tracker_._setAllowHash\">_setAllowHash</a></code> to false, allowing you to track subdomains etc."
411
+ msgstr "Dit zet <code><a href=\"http://code.google.com/apis/analytics/docs/gaJS/gaJSApiDomainDirectory.html#_gat.GA_Tracker_._setAllowHash\">_setAllowHash</a></code> op false en zorgt dat subdomeinen etc. kunt tracken."
412
+
413
+ #: admin/class-admin.php:605
414
+ msgid "Anonymize IP's"
415
+ msgstr "Anonimiseer IP's"
416
+
417
+ #: admin/class-admin.php:606
418
+ msgid "This adds <code><a href=\"http://code.google.com/apis/analytics/docs/gaJS/gaJSApi_gat.html#_gat._anonymizeIp\">_anonymizeIp</a></code>, telling Google Analytics to anonymize the information sent by the tracker objects by removing the last octet of the IP address prior to its storage."
419
+ msgstr "Dit voegt <code><a href=\"http://code.google.com/apis/analytics/docs/gaJS/gaJSApi_gat.html#_gat._anonymizeIp\">_anonymizeIp</a></code> toe en zegt tegen Google Analytics dat de informatie die door de tracker wordt verzonden moet worden geanonimiseerd. Dit gebeurt door de laatste 8 cijfers van het IP-adres te verwijderen voordat het wordt opgeslagen."
420
+
421
+ #: admin/class-admin.php:610
422
+ msgid "Advanced Settings"
423
+ msgstr "Geavanceerde instellingen"
424
+
425
+ #: admin/class-admin.php:615
426
+ msgid "Internal links to track as outbound"
427
+ msgstr "Track interne links als externe"
428
+
429
+ #: admin/class-admin.php:616
430
+ msgid "If you want to track all internal links that begin with <code>/out/</code>, enter <code>/out/</code> in the box above. If you have multiple prefixes you can separate them with comma's: <code>/out/,/recommends/</code>"
431
+ msgstr "Als je alle interne links wilt tracken die beginnen met <code>/out/</code>, vul dan in het veld hierboven <code>/out/</code> in. Als je meerdere voorvoegsels hebt, dan kun je ze scheiden door komma's: <code>/out/,/aanbevolen/</code>"
432
+
433
+ #: admin/class-admin.php:621
434
+ msgid "Label to use"
435
+ msgstr "Label om te gebruiken"
436
+
437
+ #: admin/class-admin.php:622
438
+ msgid "The label to use for these links, this will be added to where the click came from, so if the label is \"aff\", the label for a click from the content of an article becomes \"outbound-article-aff\"."
439
+ msgstr "Het label om te gebruiken voor deze links, dit wordt toegevoegd aan waar de klik vandaan kwam, dus als de label \"aff\" is, dan wordt de label voor een klik van de tekst van een bericht \"outbound-article-aff\"."
440
+
441
+ #: admin/class-admin.php:626
442
+ msgid "Internal Links to Track as Outbound"
443
+ msgstr "Track interne links als externe"
444
+
445
+ #: admin/class-admin.php:629
446
+ msgid "The WordPress e-Commerce plugin has been detected. This plugin can automatically add transaction tracking for you. To do that, <a href=\"http://yoast.com/wordpress/google-analytics/enable-ecommerce/\">enable e-commerce for your reports in Google Analytics</a> and then check the box below."
447
+ msgstr "De WordPress e-Commerce plugin is gedetecteerd. Deze plugin kan automatisch je transacties tracken. Om dat te doen, <a href=\"http://yoast.com/wordpress/google-analytics/enable-ecommerce/\">zet je e-commerce voor je rapportages in Google Analytics aan</a> en vink hieronder de optie aan. "
448
+
449
+ #: admin/class-admin.php:633 admin/class-admin.php:646
450
+ msgid "Enable transaction tracking"
451
+ msgstr "Transactietracking aanzetten"
452
+
453
+ #: admin/class-admin.php:636
454
+ msgid "WordPress e-Commerce Settings"
455
+ msgstr "WordPress e-Commerce instellingen"
456
+
457
+ #: admin/class-admin.php:642
458
+ msgid "The Shopp e-Commerce plugin has been detected. This plugin can automatically add transaction tracking for you. To do that, <a href=\"http://www.google.com/support/googleanalytics/bin/answer.py?hl=en&amp;answer=55528\">enable e-commerce for your reports in Google Analytics</a> and then check the box below."
459
+ msgstr "De Shopp e-Commerce plugin is gedetecteerd. Deze plugin kan automatisch je transacties tracken. Om dat te doen, <a href=\"http://www.google.com/support/googleanalytics/bin/answer.py?hl=en&amp;answer=55528\">zet je e-commerce voor je rapportages in Google Analytics aan</a> en vink hieronder de optie aan."
460
+
461
+ #: admin/class-admin.php:649
462
+ msgid "Shopp e-Commerce Settings"
463
+ msgstr "Shopp e-Commerce instellingen"
464
+
465
+ #: admin/class-admin.php:652
466
+ msgid "If you want to confirm that tracking on your blog is working as it should, enable this option and check the console in %sFirebug%s (for Firefox), %sFirebug Lite%s (for other browsers) or Chrome &amp; Safari's Web Inspector. Be absolutely sure to disable debugging afterwards, as it is slower than normal tracking."
467
+ msgstr "Als je wilt bevestigen dat de tracking op je site goed werkt, zet dan deze optie aan en kijk dan in %sFirebug%s (voor Firefox), %sFirebug Lite%s (voor andere browsers) of Chrome &amp; Safari's Web Inspector. Wees er absoluut zeker van dat je daarna debugging uitzet, want dat is langzamer dan normale tracking."
468
+
469
+ #: admin/class-admin.php:653
470
+ msgid "Note"
471
+ msgstr "Let op"
472
+
473
+ #: admin/class-admin.php:653
474
+ msgid "the debugging and firebug scripts are only loaded for admins."
475
+ msgstr "de debugging and firebug scripts worden alleen voor admins geladen."
476
+
477
+ #: admin/class-admin.php:657
478
+ msgid "Enable debug mode"
479
+ msgstr "Debug modus aanzetten"
480
+
481
+ #: admin/class-admin.php:662
482
+ msgid "Enable Firebug Lite"
483
+ msgstr "Firebug Lite aanzetten"
484
+
485
+ #: admin/class-admin.php:665
486
+ msgid "Debug Mode"
487
+ msgstr "Debug modus"
488
+
489
+ #: admin/class-admin.php:670
490
+ msgid "Do you really want to reset all settings?"
491
+ msgstr "Weet je zeker dat je alles opnieuw wilt instellen?"
492
+
493
+ #: admin/class-admin.php:674
494
+ msgid "Reset All Settings &raquo;"
495
+ msgstr "Alles opnieuw instellen &raquo;"
496
+
497
+ #: admin/class-admin.php:683
498
+ msgid "Help Spread the Word!"
499
+ msgstr "Help het bekend te maken"
500
+
501
+ #: admin/class-admin.php:683
502
+ msgid "Want to help make this plugin even better? All donations are used to improve this plugin, so donate $20, $50 or $100 now!"
503
+ msgstr "Wil je helpen om deze plugin nog beter te maken? Alle donaties gebruiken we om deze plugin te verbeteren, dus doneer nu € 20, € 50 of € 100!"
504
+
505
+ #: admin/class-admin.php:689
506
+ msgid "Or you could:"
507
+ msgstr "Of je kunt:"
508
+
509
+ #: admin/class-admin.php:691
510
+ msgid "Rate the plugin 5★ on WordPress.org"
511
+ msgstr "Geeft de plugin 5★ op WordPress.org"
512
+
513
+ #: admin/class-admin.php:692
514
+ msgid "Help out other users in the forums"
515
+ msgstr "Help andere gebruikers op de forums"
516
+
517
+ #: admin/class-admin.php:693
518
+ msgid "Blog about it & link to the %1$splugin page%2$s"
519
+ msgstr "Blog erover & link naar de %1$splugin pagina%2$s"
520
+
521
+ #: admin/class-admin.php:755
522
+ msgid "Google Analytics is not active."
523
+ msgstr "Google Analytics is niet actief"
524
+
525
+ #: admin/class-admin.php:755
526
+ msgid "You must %sselect which Analytics Profile to track%s before it can work."
527
+ msgstr "Je moet %sselecteren welk Analytics profiel getrackt moet worden%s voordat het werkt."
528
+
529
+ #: admin/class-pointer.php:37
530
+ msgid "Help improve Google Analytics for WordPress"
531
+ msgstr "Help Google Analytics for WordPress te verbeteren"
532
+
533
+ #: admin/class-pointer.php:38
534
+ msgid "You've just installed Google Analytics for WordPress by Yoast. Please helps us improve it by allowing us to gather anonymous usage stats so we know which configurations, plugins and themes to test with."
535
+ msgstr "Je hebt net Google Analytics for WordPress door Yoast geïnstalleerd. Help ons om het te verbeteren door ons toestemming te geven om anonieme data te verzamelen. Zo weten we met welke instellingen, plugins en thema's we moeten testen."
536
+
537
+ #: admin/class-pointer.php:43
538
+ msgid "Allow tracking"
539
+ msgstr "Tracking toestaan"
540
+
541
+ #: admin/class-pointer.php:49
542
+ msgid "Do not allow tracking"
543
+ msgstr " Tracking niet toestaan"
544
+
545
+ #: admin/yst_plugin_tools.php:54
546
+ msgid "Settings"
547
+ msgstr "Instellingen"
548
+
549
+ #: admin/yst_plugin_tools.php:170
550
+ msgid "Why not do any or all of the following:"
551
+ msgstr "Waarom doe je niet een van de volgende dingen:"
552
+
553
+ #: admin/yst_plugin_tools.php:172
554
+ msgid "Link to it so other folks can find out about it."
555
+ msgstr "Link ernaar zodat andere mensen het kunnen vinden."
556
+
557
+ #: admin/yst_plugin_tools.php:173
558
+ msgid "Give it a 5 star rating on WordPress.org."
559
+ msgstr "Geef het 5 sterren op WordPress.org."
560
+
561
+ #: admin/yst_plugin_tools.php:174
562
+ msgid "Let other people know that it works with your WordPress setup."
563
+ msgstr "Laat andere mensen weten dat het werkt met je WordPress-installatie."
564
+
565
+ #: admin/yst_plugin_tools.php:176
566
+ msgid "Like this plugin?"
567
+ msgstr "Vind je deze plugin goed?"
568
+
569
+ #: frontend/class-frontend.php:75
570
+ msgid "Google Analytics tracking code not shown because you haven't setup Google Analytics for WordPress yet."
571
+ msgstr "Google Analytics tracking code niet zichtbaar omdat je Google Analytics for WordPress nog niet hebt ingesteld."
572
+
573
+ #: frontend/class-frontend.php:310
574
+ msgid "Google Analytics tracking code not shown because users over level %s are ignored."
575
+ msgstr "Google Analytics tracking code niet zichtbaar omdat gebruikers boven level %s worden genegeerd."
576
+
577
+ #: frontend/class-frontend.php:661
578
+ msgid "Please set Google Analytics position to \"manual\" in the settings, or remove this call to yoast_analytics();"
579
+ msgstr "Stel Google Analytics positie naar \"handmatig\" in de instellingen, of verwijder deze aanroep naar yoast_analytics();"
languages/google-analytics-for-wordpress.pot CHANGED
@@ -1,17 +1,31 @@
1
- # Copyright (C) 2013
 
2
  # This file is distributed under the same license as the package.
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: \n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/google-analytics-for-"
7
  "wordpress\n"
8
- "POT-Creation-Date: 2013-03-11 15:31:09+00:00\n"
 
 
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "PO-Revision-Date: 2013-MO-DA HO:MI+ZONE\n"
13
- "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
- "Language-Team: LANGUAGE <LL@li.org>\n"
 
 
 
 
 
 
 
 
 
 
15
 
16
  #: admin/class-admin.php:30
17
  msgid "Google Analytics Configuration"
@@ -44,48 +58,48 @@ msgid ""
44
  "href='%s'>FAQ page</a>."
45
  msgstr ""
46
 
47
- #: admin/class-admin.php:171
48
  msgid "Google Analytics settings reset."
49
  msgstr ""
50
 
51
- #: admin/class-admin.php:174
52
  msgid "You cannot edit the Google Analytics for WordPress options."
53
  msgstr ""
54
 
55
- #: admin/class-admin.php:220
56
  msgid "Google Analytics settings updated."
57
  msgstr ""
58
 
59
- #: admin/class-admin.php:227
60
  msgid "Update Google Analytics Settings &raquo;"
61
  msgstr ""
62
 
63
- #: admin/class-admin.php:263
64
  msgid "Google Analytics for WordPress Configuration"
65
  msgstr ""
66
 
67
- #: admin/class-admin.php:275
68
  msgid ""
69
  "Please authenticate with Google Analytics to retrieve your tracking code:"
70
  msgstr ""
71
 
72
- #: admin/class-admin.php:275
73
  msgid "Click here to authenticate with Google"
74
  msgstr ""
75
 
76
- #: admin/class-admin.php:340
77
  msgid "Please select the correct Analytics Account"
78
  msgstr ""
79
 
80
- #: admin/class-admin.php:349
81
  msgid "Please select the correct Analytics account to track:"
82
  msgstr ""
83
 
84
- #: admin/class-admin.php:351
85
  msgid "Profile"
86
  msgstr ""
87
 
88
- #: admin/class-admin.php:363
89
  msgid ""
90
  "Please note that if you have several profiles of the same website, it "
91
  "doesn't matter which profile you select, and in fact another profile might "
@@ -94,107 +108,107 @@ msgid ""
94
  "will be correct."
95
  msgstr ""
96
 
97
- #: admin/class-admin.php:365
98
  msgid "Refresh this listing or switch to another account: "
99
  msgstr ""
100
 
101
- #: admin/class-admin.php:367
102
  msgid ""
103
  "Unfortunately, an error occurred while connecting to Google, please try "
104
  "again:"
105
  msgstr ""
106
 
107
- #: admin/class-admin.php:371
108
  msgid "Re-authenticate with Google"
109
  msgstr ""
110
 
111
- #: admin/class-admin.php:373
112
  msgid "Select another Analytics Profile &raquo;"
113
  msgstr ""
114
 
115
- #: admin/class-admin.php:375
116
  msgid "Manually enter your UA code: "
117
  msgstr ""
118
 
119
- #: admin/class-admin.php:380
120
  msgid "Analytics Profile"
121
  msgstr ""
122
 
123
- #: admin/class-admin.php:381
124
  msgid "Manually enter your UA code"
125
  msgstr ""
126
 
127
- #: admin/class-admin.php:384
128
  msgid "In the header (default)"
129
  msgstr ""
130
 
131
- #: admin/class-admin.php:384
132
  msgid "Insert manually"
133
  msgstr ""
134
 
135
- #: admin/class-admin.php:387
136
  msgid "Notice"
137
  msgstr ""
138
 
139
- #: admin/class-admin.php:387
140
  msgid ""
141
  "You switched your theme, please make sure your Google Analytics tracking is "
142
  "still ok. Save your settings to make sure Google Analytics gets loaded "
143
  "properly."
144
  msgstr ""
145
 
146
- #: admin/class-admin.php:390
147
  msgid ""
148
  "The header is by far the best spot to place the tracking code. If you'd "
149
  "rather place the code manually, switch to manual placement. For more info "
150
  "%sread this page%s."
151
  msgstr ""
152
 
153
- #: admin/class-admin.php:391
154
  msgid ""
155
  "%sFollow the instructions here%s to choose the location for your tracking "
156
  "code manually."
157
  msgstr ""
158
 
159
- #: admin/class-admin.php:395
160
  msgid "Where should the tracking code be placed"
161
  msgstr ""
162
 
163
- #: admin/class-admin.php:401
164
  msgid "Track outbound clicks &amp; downloads"
165
  msgstr ""
166
 
167
- #: admin/class-admin.php:402
168
  msgid ""
169
  "Clicks &amp; downloads will be tracked as events, you can find these under "
170
  "Content &raquo; Event Tracking in your Google Analytics reports."
171
  msgstr ""
172
 
173
- #: admin/class-admin.php:407
174
  msgid "Show advanced settings"
175
  msgstr ""
176
 
177
- #: admin/class-admin.php:408
178
  msgid ""
179
  "Only adviced for advanced users who know their way around Google Analytics"
180
  msgstr ""
181
 
182
- #: admin/class-admin.php:413
183
  msgid "Allow tracking of anonymous data"
184
  msgstr ""
185
 
186
- #: admin/class-admin.php:414
187
  msgid ""
188
  "By allowing us to track anonymous data we can better help you, because we "
189
  "know with which WordPress configurations, themes and plugins we should test. "
190
  "No personal data will be submitted."
191
  msgstr ""
192
 
193
- #: admin/class-admin.php:417
194
  msgid "Google Analytics Settings"
195
  msgstr ""
196
 
197
- #: admin/class-admin.php:420
198
  msgid ""
199
  "Google Analytics allows you to save up to 5 custom variables on each page, "
200
  "and this plugin helps you make the most use of these! Check which custom "
@@ -202,121 +216,121 @@ msgid ""
202
  "these will only be saved when they are actually available."
203
  msgstr ""
204
 
205
- #: admin/class-admin.php:421
206
  msgid ""
207
  "If you want to start using these custom variables, go to Visitors &raquo; "
208
  "Custom Variables in your Analytics reports."
209
  msgstr ""
210
 
211
- #: admin/class-admin.php:424
212
  msgid "Logged in Users"
213
  msgstr ""
214
 
215
- #: admin/class-admin.php:425
216
  msgid ""
217
  "Allows you to easily remove logged in users from your reports, or to segment "
218
  "by different user roles. The users primary role will be logged."
219
  msgstr ""
220
 
221
- #: admin/class-admin.php:430
222
  msgid "Post type"
223
  msgstr ""
224
 
225
- #: admin/class-admin.php:431
226
  msgid ""
227
  "Allows you to see pageviews per post type, especially useful if you use "
228
  "multiple custom post types."
229
  msgstr ""
230
 
231
- #: admin/class-admin.php:436
232
  msgid "Author Name"
233
  msgstr ""
234
 
235
- #: admin/class-admin.php:437
236
  msgid "Allows you to see pageviews per author."
237
  msgstr ""
238
 
239
- #: admin/class-admin.php:442
240
  msgid "Tags"
241
  msgstr ""
242
 
243
- #: admin/class-admin.php:443
244
  msgid "Allows you to see pageviews per tags using advanced segments."
245
  msgstr ""
246
 
247
- #: admin/class-admin.php:448
248
  msgid "Publication year"
249
  msgstr ""
250
 
251
- #: admin/class-admin.php:449
252
  msgid ""
253
  "Allows you to see pageviews per year of publication, showing you if your old "
254
  "posts still get traffic."
255
  msgstr ""
256
 
257
- #: admin/class-admin.php:454
258
  msgid "Single Category"
259
  msgstr ""
260
 
261
- #: admin/class-admin.php:455
262
  msgid ""
263
  "Allows you to see pageviews per category, works best when each post is in "
264
  "only one category."
265
  msgstr ""
266
 
267
- #: admin/class-admin.php:460
268
  msgid "All Categories"
269
  msgstr ""
270
 
271
- #: admin/class-admin.php:461
272
  msgid ""
273
  "Allows you to see pageviews per category using advanced segments, should be "
274
  "used when you use multiple categories per post."
275
  msgstr ""
276
 
277
- #: admin/class-admin.php:466
278
  msgid "Custom Variables Settings"
279
  msgstr ""
280
 
281
- #: admin/class-admin.php:471
282
  msgid "Ignore users"
283
  msgstr ""
284
 
285
- #: admin/class-admin.php:472
286
  msgid ""
287
  "Users of the role you select and higher will be ignored, so if you select "
288
  "Editor, all Editors and Administrators will be ignored."
289
  msgstr ""
290
 
291
- #: admin/class-admin.php:474
292
  msgid "Ignore no-one"
293
  msgstr ""
294
 
295
- #: admin/class-admin.php:475
296
  msgid "Administrator"
297
  msgstr ""
298
 
299
- #: admin/class-admin.php:476
300
  msgid "Editor"
301
  msgstr ""
302
 
303
- #: admin/class-admin.php:477
304
  msgid "Author"
305
  msgstr ""
306
 
307
- #: admin/class-admin.php:478
308
  msgid "Contributor"
309
  msgstr ""
310
 
311
- #: admin/class-admin.php:479
312
  msgid "Subscriber (ignores all logged in users)"
313
  msgstr ""
314
 
315
- #: admin/class-admin.php:484
316
  msgid "Track outbound clicks as pageviews"
317
  msgstr ""
318
 
319
- #: admin/class-admin.php:485
320
  msgid ""
321
  "You do not need to enable this to enable outbound click tracking, this "
322
  "changes the default behavior of tracking clicks as events to tracking them "
@@ -325,79 +339,79 @@ msgid ""
325
  "outbound clicks as goals."
326
  msgstr ""
327
 
328
- #: admin/class-admin.php:490
329
  msgid "Track downloads as pageviews"
330
  msgstr ""
331
 
332
- #: admin/class-admin.php:491
333
  msgid ""
334
  "Not recommended, as this would skew your statistics, but it does make it "
335
  "possible to track downloads as goals."
336
  msgstr ""
337
 
338
- #: admin/class-admin.php:496
339
  msgid "Extensions of files to track as downloads"
340
  msgstr ""
341
 
342
- #: admin/class-admin.php:502
343
  msgid "Prefix to use in Analytics before the tracked pageviews"
344
  msgstr ""
345
 
346
- #: admin/class-admin.php:503
347
  msgid ""
348
  "This prefix is used before all pageviews, they are then segmented "
349
  "automatically after that. If nothing is entered here, <code>/yoast-ga/</"
350
  "code> is used."
351
  msgstr ""
352
 
353
- #: admin/class-admin.php:509
354
  msgid "Track full URL of outbound clicks or just the domain"
355
  msgstr ""
356
 
357
- #: admin/class-admin.php:511
358
  msgid "Just the domain"
359
  msgstr ""
360
 
361
- #: admin/class-admin.php:512
362
  msgid "Track the complete URL"
363
  msgstr ""
364
 
365
- #: admin/class-admin.php:518
366
  msgid "Subdomain Tracking"
367
  msgstr ""
368
 
369
- #: admin/class-admin.php:519
370
  msgid ""
371
  "This allows you to set the domain that's set by %s<code>setDomainName</code>"
372
  "%s for tracking subdomains, if empty this will not be set."
373
  msgstr ""
374
 
375
- #: admin/class-admin.php:524
376
  msgid "Enable Cross Domain Tracking"
377
  msgstr ""
378
 
379
- #: admin/class-admin.php:525
380
  msgid ""
381
  "This allows you to enable %sCross-Domain Tracking%s for this site. When "
382
  "endabled <code>_setAllowLinker:</code> will be enabled if it is not already."
383
  msgstr ""
384
 
385
- #: admin/class-admin.php:530
386
  msgid "Cross-Domain Tracking, Primary Domain"
387
  msgstr ""
388
 
389
- #: admin/class-admin.php:531
390
  msgid ""
391
  "Set the primary domain used in %s<code>setDomainName</code>%s for cross "
392
  "domain tracking (eg. <code>example-petstore.com</code> ), if empty this will "
393
  "default to your configured Home URL."
394
  msgstr ""
395
 
396
- #: admin/class-admin.php:536
397
  msgid "Cross-Domain Tracking, Other Domains"
398
  msgstr ""
399
 
400
- #: admin/class-admin.php:537
401
  msgid ""
402
  "All links to these domains will have the <a href=\"http://code.google.com/"
403
  "apis/analytics/docs/tracking/gaTrackingSite.html#multipleDomains"
@@ -406,56 +420,56 @@ msgid ""
406
  "petstore.com</code>)"
407
  msgstr ""
408
 
409
- #: admin/class-admin.php:542
410
  msgid "Custom Code"
411
  msgstr ""
412
 
413
- #: admin/class-admin.php:543
414
  msgid ""
415
  "Not for the average user: this allows you to add a line of code, to be added "
416
  "before the <code>trackPageview</code> call."
417
  msgstr ""
418
 
419
- #: admin/class-admin.php:548
420
  msgid "Track AdSense"
421
  msgstr ""
422
 
423
- #: admin/class-admin.php:549
424
  msgid ""
425
  "This requires integration of your Analytics and AdSense account, for help, "
426
  "<a href=\"http://google.com/support/analytics/bin/answer.py?"
427
  "answer=92625\">look here</a>."
428
  msgstr ""
429
 
430
- #: admin/class-admin.php:554
431
  msgid "Host ga.js locally"
432
  msgstr ""
433
 
434
- #: admin/class-admin.php:556
435
  msgid "You have to provide a URL to your ga.js file:"
436
  msgstr ""
437
 
438
- #: admin/class-admin.php:559
439
  msgid ""
440
  "For some reasons you might want to use a locally hosted ga.js file, or "
441
  "another ga.js file, check the box and then please enter the full URL "
442
  "including http here."
443
  msgstr ""
444
 
445
- #: admin/class-admin.php:563
446
  msgid "Track extra Search Engines"
447
  msgstr ""
448
 
449
- #: admin/class-admin.php:565
450
  msgid ""
451
  "You can provide a custom URL to the extra search engines file if you want:"
452
  msgstr ""
453
 
454
- #: admin/class-admin.php:571
455
  msgid "Tag links in RSS feed with campaign variables"
456
  msgstr ""
457
 
458
- #: admin/class-admin.php:572
459
  msgid ""
460
  "Do not use this feature if you use FeedBurner, as FeedBurner can do this "
461
  "automatically, and better than this plugin can. Check <a href=\"http://www."
@@ -463,19 +477,19 @@ msgid ""
463
  "help page</a> for info on how to enable this feature in FeedBurner."
464
  msgstr ""
465
 
466
- #: admin/class-admin.php:577
467
  msgid "Add tracking to the login and registration forms"
468
  msgstr ""
469
 
470
- #: admin/class-admin.php:582
471
  msgid "Add tracking to the comment forms"
472
  msgstr ""
473
 
474
- #: admin/class-admin.php:587
475
  msgid "Use # instead of ? for Campaign tracking"
476
  msgstr ""
477
 
478
- #: admin/class-admin.php:588
479
  msgid ""
480
  "This adds a <code><a href=\"http://code.google.com/apis/analytics/docs/"
481
  "gaJSApiCampaignTracking.html#_gat.GA_Tracker_._setAllowAnchor"
@@ -483,11 +497,11 @@ msgid ""
483
  "tagging use a # as well."
484
  msgstr ""
485
 
486
- #: admin/class-admin.php:593
487
  msgid "Add <code>_setAllowLinker</code>"
488
  msgstr ""
489
 
490
- #: admin/class-admin.php:594
491
  msgid ""
492
  "This adds a <code><a href=\"http://code.google.com/apis/analytics/docs/gaJS/"
493
  "gaJSApiDomainDirectory.html#_gat.GA_Tracker_._setAllowLinker"
@@ -495,22 +509,22 @@ msgid ""
495
  "use <code>_link</code> and related functions."
496
  msgstr ""
497
 
498
- #: admin/class-admin.php:599
499
  msgid "Set <code>_setAllowHash</code> to false"
500
  msgstr ""
501
 
502
- #: admin/class-admin.php:600
503
  msgid ""
504
  "This sets <code><a href=\"http://code.google.com/apis/analytics/docs/gaJS/"
505
  "gaJSApiDomainDirectory.html#_gat.GA_Tracker_._setAllowHash\">_setAllowHash</"
506
  "a></code> to false, allowing you to track subdomains etc."
507
  msgstr ""
508
 
509
- #: admin/class-admin.php:605
510
  msgid "Anonymize IP's"
511
  msgstr ""
512
 
513
- #: admin/class-admin.php:606
514
  msgid ""
515
  "This adds <code><a href=\"http://code.google.com/apis/analytics/docs/gaJS/"
516
  "gaJSApi_gat.html#_gat._anonymizeIp\">_anonymizeIp</a></code>, telling Google "
@@ -518,37 +532,37 @@ msgid ""
518
  "removing the last octet of the IP address prior to its storage."
519
  msgstr ""
520
 
521
- #: admin/class-admin.php:610
522
  msgid "Advanced Settings"
523
  msgstr ""
524
 
525
- #: admin/class-admin.php:615
526
  msgid "Internal links to track as outbound"
527
  msgstr ""
528
 
529
- #: admin/class-admin.php:616
530
  msgid ""
531
  "If you want to track all internal links that begin with <code>/out/</code>, "
532
  "enter <code>/out/</code> in the box above. If you have multiple prefixes you "
533
  "can separate them with comma's: <code>/out/,/recommends/</code>"
534
  msgstr ""
535
 
536
- #: admin/class-admin.php:621
537
  msgid "Label to use"
538
  msgstr ""
539
 
540
- #: admin/class-admin.php:622
541
  msgid ""
542
  "The label to use for these links, this will be added to where the click came "
543
  "from, so if the label is \"aff\", the label for a click from the content of "
544
  "an article becomes \"outbound-article-aff\"."
545
  msgstr ""
546
 
547
- #: admin/class-admin.php:626
548
  msgid "Internal Links to Track as Outbound"
549
  msgstr ""
550
 
551
- #: admin/class-admin.php:629
552
  msgid ""
553
  "The WordPress e-Commerce plugin has been detected. This plugin can "
554
  "automatically add transaction tracking for you. To do that, <a href=\"http://"
@@ -556,15 +570,15 @@ msgid ""
556
  "for your reports in Google Analytics</a> and then check the box below."
557
  msgstr ""
558
 
559
- #: admin/class-admin.php:633 admin/class-admin.php:646
560
  msgid "Enable transaction tracking"
561
  msgstr ""
562
 
563
- #: admin/class-admin.php:636
564
  msgid "WordPress e-Commerce Settings"
565
  msgstr ""
566
 
567
- #: admin/class-admin.php:642
568
  msgid ""
569
  "The Shopp e-Commerce plugin has been detected. This plugin can automatically "
570
  "add transaction tracking for you. To do that, <a href=\"http://www.google."
@@ -573,11 +587,11 @@ msgid ""
573
  "below."
574
  msgstr ""
575
 
576
- #: admin/class-admin.php:649
577
  msgid "Shopp e-Commerce Settings"
578
  msgstr ""
579
 
580
- #: admin/class-admin.php:652
581
  msgid ""
582
  "If you want to confirm that tracking on your blog is working as it should, "
583
  "enable this option and check the console in %sFirebug%s (for Firefox), "
@@ -586,65 +600,55 @@ msgid ""
586
  "slower than normal tracking."
587
  msgstr ""
588
 
589
- #: admin/class-admin.php:653
590
  msgid "Note"
591
  msgstr ""
592
 
593
- #: admin/class-admin.php:653
594
  msgid "the debugging and firebug scripts are only loaded for admins."
595
  msgstr ""
596
 
597
- #: admin/class-admin.php:657
598
  msgid "Enable debug mode"
599
  msgstr ""
600
 
601
- #: admin/class-admin.php:662
602
  msgid "Enable Firebug Lite"
603
  msgstr ""
604
 
605
- #: admin/class-admin.php:665
606
  msgid "Debug Mode"
607
  msgstr ""
608
 
609
- #: admin/class-admin.php:670
610
  msgid "Do you really want to reset all settings?"
611
  msgstr ""
612
 
613
- #: admin/class-admin.php:674
614
  msgid "Reset All Settings &raquo;"
615
  msgstr ""
616
 
617
- #: admin/class-admin.php:683
618
  msgid "Help Spread the Word!"
619
  msgstr ""
620
 
621
- #: admin/class-admin.php:683
622
- msgid ""
623
- "Want to help make this plugin even better? All donations are used to improve "
624
- "this plugin, so donate $20, $50 or $100 now!"
625
- msgstr ""
626
-
627
- #: admin/class-admin.php:689
628
- msgid "Or you could:"
629
- msgstr ""
630
-
631
- #: admin/class-admin.php:691
632
  msgid "Rate the plugin 5★ on WordPress.org"
633
  msgstr ""
634
 
635
- #: admin/class-admin.php:692
636
  msgid "Help out other users in the forums"
637
  msgstr ""
638
 
639
- #: admin/class-admin.php:693
640
  msgid "Blog about it & link to the %1$splugin page%2$s"
641
  msgstr ""
642
 
643
- #: admin/class-admin.php:755
644
  msgid "Google Analytics is not active."
645
  msgstr ""
646
 
647
- #: admin/class-admin.php:755
648
  msgid ""
649
  "You must %sselect which Analytics Profile to track%s before it can work."
650
  msgstr ""
@@ -704,7 +708,7 @@ msgid ""
704
  "ignored."
705
  msgstr ""
706
 
707
- #: frontend/class-frontend.php:661
708
  msgid ""
709
  "Please set Google Analytics position to \"manual\" in the settings, or "
710
  "remove this call to yoast_analytics();"
1
+ # The Yoast Google Analytics for WordPress Translation Master File
2
+ # Copyright (C) 2014
3
  # This file is distributed under the same license as the package.
4
  msgid ""
5
  msgstr ""
6
  "Project-Id-Version: \n"
7
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/google-analytics-for-"
8
  "wordpress\n"
9
+ "Report-Msgid-Bugs-To: StudioPress <translations@yoast.com>\n"
10
+ "Last-Translator: StudioPress <translations@yoast.com>\n"
11
+ "Language-Team: StudioPress <translations@yoast.com>\n"
12
+ "POT-Creation-Date: 2014-01-06 10:28:20+00:00\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
  "PO-Revision-Date: 2013-MO-DA HO:MI+ZONE\n"
17
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
18
+ "X-Generator: CSL v1.x\n"
19
+ "X-Poedit-Basepath: .\n"
20
+ "X-Poedit-Language: English\n"
21
+ "X-Poedit-Country: UNITED STATES\n"
22
+ "X-Poedit-SourceCharset: utf-8\n"
23
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_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"
24
+ "X-Poedit-Basepath: ../../\n"
25
+ "X-Poedit-Bookmarks: \n"
26
+ "X-Poedit-SearchPath-0: .\n"
27
+ "X-Textdomain-Support: yes"
28
+ "PO-Revision-Date: 2014-MO-DA HO:MI+ZONE\n"
29
 
30
  #: admin/class-admin.php:30
31
  msgid "Google Analytics Configuration"
58
  "href='%s'>FAQ page</a>."
59
  msgstr ""
60
 
61
+ #: admin/class-admin.php:162
62
  msgid "Google Analytics settings reset."
63
  msgstr ""
64
 
65
+ #: admin/class-admin.php:165
66
  msgid "You cannot edit the Google Analytics for WordPress options."
67
  msgstr ""
68
 
69
+ #: admin/class-admin.php:211
70
  msgid "Google Analytics settings updated."
71
  msgstr ""
72
 
73
+ #: admin/class-admin.php:218
74
  msgid "Update Google Analytics Settings &raquo;"
75
  msgstr ""
76
 
77
+ #: admin/class-admin.php:254
78
  msgid "Google Analytics for WordPress Configuration"
79
  msgstr ""
80
 
81
+ #: admin/class-admin.php:266
82
  msgid ""
83
  "Please authenticate with Google Analytics to retrieve your tracking code:"
84
  msgstr ""
85
 
86
+ #: admin/class-admin.php:266
87
  msgid "Click here to authenticate with Google"
88
  msgstr ""
89
 
90
+ #: admin/class-admin.php:352
91
  msgid "Please select the correct Analytics Account"
92
  msgstr ""
93
 
94
+ #: admin/class-admin.php:361
95
  msgid "Please select the correct Analytics account to track:"
96
  msgstr ""
97
 
98
+ #: admin/class-admin.php:363
99
  msgid "Profile"
100
  msgstr ""
101
 
102
+ #: admin/class-admin.php:375
103
  msgid ""
104
  "Please note that if you have several profiles of the same website, it "
105
  "doesn't matter which profile you select, and in fact another profile might "
108
  "will be correct."
109
  msgstr ""
110
 
111
+ #: admin/class-admin.php:377
112
  msgid "Refresh this listing or switch to another account: "
113
  msgstr ""
114
 
115
+ #: admin/class-admin.php:379 admin/class-admin.php:382
116
  msgid ""
117
  "Unfortunately, an error occurred while connecting to Google, please try "
118
  "again:"
119
  msgstr ""
120
 
121
+ #: admin/class-admin.php:386
122
  msgid "Re-authenticate with Google"
123
  msgstr ""
124
 
125
+ #: admin/class-admin.php:388
126
  msgid "Select another Analytics Profile &raquo;"
127
  msgstr ""
128
 
129
+ #: admin/class-admin.php:390
130
  msgid "Manually enter your UA code: "
131
  msgstr ""
132
 
133
+ #: admin/class-admin.php:395
134
  msgid "Analytics Profile"
135
  msgstr ""
136
 
137
+ #: admin/class-admin.php:396
138
  msgid "Manually enter your UA code"
139
  msgstr ""
140
 
141
+ #: admin/class-admin.php:399
142
  msgid "In the header (default)"
143
  msgstr ""
144
 
145
+ #: admin/class-admin.php:399
146
  msgid "Insert manually"
147
  msgstr ""
148
 
149
+ #: admin/class-admin.php:402
150
  msgid "Notice"
151
  msgstr ""
152
 
153
+ #: admin/class-admin.php:402
154
  msgid ""
155
  "You switched your theme, please make sure your Google Analytics tracking is "
156
  "still ok. Save your settings to make sure Google Analytics gets loaded "
157
  "properly."
158
  msgstr ""
159
 
160
+ #: admin/class-admin.php:405
161
  msgid ""
162
  "The header is by far the best spot to place the tracking code. If you'd "
163
  "rather place the code manually, switch to manual placement. For more info "
164
  "%sread this page%s."
165
  msgstr ""
166
 
167
+ #: admin/class-admin.php:406
168
  msgid ""
169
  "%sFollow the instructions here%s to choose the location for your tracking "
170
  "code manually."
171
  msgstr ""
172
 
173
+ #: admin/class-admin.php:410
174
  msgid "Where should the tracking code be placed"
175
  msgstr ""
176
 
177
+ #: admin/class-admin.php:416
178
  msgid "Track outbound clicks &amp; downloads"
179
  msgstr ""
180
 
181
+ #: admin/class-admin.php:417
182
  msgid ""
183
  "Clicks &amp; downloads will be tracked as events, you can find these under "
184
  "Content &raquo; Event Tracking in your Google Analytics reports."
185
  msgstr ""
186
 
187
+ #: admin/class-admin.php:422
188
  msgid "Show advanced settings"
189
  msgstr ""
190
 
191
+ #: admin/class-admin.php:423
192
  msgid ""
193
  "Only adviced for advanced users who know their way around Google Analytics"
194
  msgstr ""
195
 
196
+ #: admin/class-admin.php:428
197
  msgid "Allow tracking of anonymous data"
198
  msgstr ""
199
 
200
+ #: admin/class-admin.php:429
201
  msgid ""
202
  "By allowing us to track anonymous data we can better help you, because we "
203
  "know with which WordPress configurations, themes and plugins we should test. "
204
  "No personal data will be submitted."
205
  msgstr ""
206
 
207
+ #: admin/class-admin.php:432
208
  msgid "Google Analytics Settings"
209
  msgstr ""
210
 
211
+ #: admin/class-admin.php:435
212
  msgid ""
213
  "Google Analytics allows you to save up to 5 custom variables on each page, "
214
  "and this plugin helps you make the most use of these! Check which custom "
216
  "these will only be saved when they are actually available."
217
  msgstr ""
218
 
219
+ #: admin/class-admin.php:436
220
  msgid ""
221
  "If you want to start using these custom variables, go to Visitors &raquo; "
222
  "Custom Variables in your Analytics reports."
223
  msgstr ""
224
 
225
+ #: admin/class-admin.php:439
226
  msgid "Logged in Users"
227
  msgstr ""
228
 
229
+ #: admin/class-admin.php:440
230
  msgid ""
231
  "Allows you to easily remove logged in users from your reports, or to segment "
232
  "by different user roles. The users primary role will be logged."
233
  msgstr ""
234
 
235
+ #: admin/class-admin.php:445
236
  msgid "Post type"
237
  msgstr ""
238
 
239
+ #: admin/class-admin.php:446
240
  msgid ""
241
  "Allows you to see pageviews per post type, especially useful if you use "
242
  "multiple custom post types."
243
  msgstr ""
244
 
245
+ #: admin/class-admin.php:451
246
  msgid "Author Name"
247
  msgstr ""
248
 
249
+ #: admin/class-admin.php:452
250
  msgid "Allows you to see pageviews per author."
251
  msgstr ""
252
 
253
+ #: admin/class-admin.php:457
254
  msgid "Tags"
255
  msgstr ""
256
 
257
+ #: admin/class-admin.php:458
258
  msgid "Allows you to see pageviews per tags using advanced segments."
259
  msgstr ""
260
 
261
+ #: admin/class-admin.php:463
262
  msgid "Publication year"
263
  msgstr ""
264
 
265
+ #: admin/class-admin.php:464
266
  msgid ""
267
  "Allows you to see pageviews per year of publication, showing you if your old "
268
  "posts still get traffic."
269
  msgstr ""
270
 
271
+ #: admin/class-admin.php:469
272
  msgid "Single Category"
273
  msgstr ""
274
 
275
+ #: admin/class-admin.php:470
276
  msgid ""
277
  "Allows you to see pageviews per category, works best when each post is in "
278
  "only one category."
279
  msgstr ""
280
 
281
+ #: admin/class-admin.php:475
282
  msgid "All Categories"
283
  msgstr ""
284
 
285
+ #: admin/class-admin.php:476
286
  msgid ""
287
  "Allows you to see pageviews per category using advanced segments, should be "
288
  "used when you use multiple categories per post."
289
  msgstr ""
290
 
291
+ #: admin/class-admin.php:481
292
  msgid "Custom Variables Settings"
293
  msgstr ""
294
 
295
+ #: admin/class-admin.php:486
296
  msgid "Ignore users"
297
  msgstr ""
298
 
299
+ #: admin/class-admin.php:487
300
  msgid ""
301
  "Users of the role you select and higher will be ignored, so if you select "
302
  "Editor, all Editors and Administrators will be ignored."
303
  msgstr ""
304
 
305
+ #: admin/class-admin.php:489
306
  msgid "Ignore no-one"
307
  msgstr ""
308
 
309
+ #: admin/class-admin.php:490
310
  msgid "Administrator"
311
  msgstr ""
312
 
313
+ #: admin/class-admin.php:491
314
  msgid "Editor"
315
  msgstr ""
316
 
317
+ #: admin/class-admin.php:492
318
  msgid "Author"
319
  msgstr ""
320
 
321
+ #: admin/class-admin.php:493
322
  msgid "Contributor"
323
  msgstr ""
324
 
325
+ #: admin/class-admin.php:494
326
  msgid "Subscriber (ignores all logged in users)"
327
  msgstr ""
328
 
329
+ #: admin/class-admin.php:499
330
  msgid "Track outbound clicks as pageviews"
331
  msgstr ""
332
 
333
+ #: admin/class-admin.php:500
334
  msgid ""
335
  "You do not need to enable this to enable outbound click tracking, this "
336
  "changes the default behavior of tracking clicks as events to tracking them "
339
  "outbound clicks as goals."
340
  msgstr ""
341
 
342
+ #: admin/class-admin.php:505
343
  msgid "Track downloads as pageviews"
344
  msgstr ""
345
 
346
+ #: admin/class-admin.php:506
347
  msgid ""
348
  "Not recommended, as this would skew your statistics, but it does make it "
349
  "possible to track downloads as goals."
350
  msgstr ""
351
 
352
+ #: admin/class-admin.php:511
353
  msgid "Extensions of files to track as downloads"
354
  msgstr ""
355
 
356
+ #: admin/class-admin.php:517
357
  msgid "Prefix to use in Analytics before the tracked pageviews"
358
  msgstr ""
359
 
360
+ #: admin/class-admin.php:518
361
  msgid ""
362
  "This prefix is used before all pageviews, they are then segmented "
363
  "automatically after that. If nothing is entered here, <code>/yoast-ga/</"
364
  "code> is used."
365
  msgstr ""
366
 
367
+ #: admin/class-admin.php:524
368
  msgid "Track full URL of outbound clicks or just the domain"
369
  msgstr ""
370
 
371
+ #: admin/class-admin.php:526
372
  msgid "Just the domain"
373
  msgstr ""
374
 
375
+ #: admin/class-admin.php:527
376
  msgid "Track the complete URL"
377
  msgstr ""
378
 
379
+ #: admin/class-admin.php:533
380
  msgid "Subdomain Tracking"
381
  msgstr ""
382
 
383
+ #: admin/class-admin.php:534
384
  msgid ""
385
  "This allows you to set the domain that's set by %s<code>setDomainName</code>"
386
  "%s for tracking subdomains, if empty this will not be set."
387
  msgstr ""
388
 
389
+ #: admin/class-admin.php:539
390
  msgid "Enable Cross Domain Tracking"
391
  msgstr ""
392
 
393
+ #: admin/class-admin.php:540
394
  msgid ""
395
  "This allows you to enable %sCross-Domain Tracking%s for this site. When "
396
  "endabled <code>_setAllowLinker:</code> will be enabled if it is not already."
397
  msgstr ""
398
 
399
+ #: admin/class-admin.php:545
400
  msgid "Cross-Domain Tracking, Primary Domain"
401
  msgstr ""
402
 
403
+ #: admin/class-admin.php:546
404
  msgid ""
405
  "Set the primary domain used in %s<code>setDomainName</code>%s for cross "
406
  "domain tracking (eg. <code>example-petstore.com</code> ), if empty this will "
407
  "default to your configured Home URL."
408
  msgstr ""
409
 
410
+ #: admin/class-admin.php:551
411
  msgid "Cross-Domain Tracking, Other Domains"
412
  msgstr ""
413
 
414
+ #: admin/class-admin.php:552
415
  msgid ""
416
  "All links to these domains will have the <a href=\"http://code.google.com/"
417
  "apis/analytics/docs/tracking/gaTrackingSite.html#multipleDomains"
420
  "petstore.com</code>)"
421
  msgstr ""
422
 
423
+ #: admin/class-admin.php:557
424
  msgid "Custom Code"
425
  msgstr ""
426
 
427
+ #: admin/class-admin.php:558
428
  msgid ""
429
  "Not for the average user: this allows you to add a line of code, to be added "
430
  "before the <code>trackPageview</code> call."
431
  msgstr ""
432
 
433
+ #: admin/class-admin.php:563
434
  msgid "Track AdSense"
435
  msgstr ""
436
 
437
+ #: admin/class-admin.php:564
438
  msgid ""
439
  "This requires integration of your Analytics and AdSense account, for help, "
440
  "<a href=\"http://google.com/support/analytics/bin/answer.py?"
441
  "answer=92625\">look here</a>."
442
  msgstr ""
443
 
444
+ #: admin/class-admin.php:569
445
  msgid "Host ga.js locally"
446
  msgstr ""
447
 
448
+ #: admin/class-admin.php:571
449
  msgid "You have to provide a URL to your ga.js file:"
450
  msgstr ""
451
 
452
+ #: admin/class-admin.php:574
453
  msgid ""
454
  "For some reasons you might want to use a locally hosted ga.js file, or "
455
  "another ga.js file, check the box and then please enter the full URL "
456
  "including http here."
457
  msgstr ""
458
 
459
+ #: admin/class-admin.php:578
460
  msgid "Track extra Search Engines"
461
  msgstr ""
462
 
463
+ #: admin/class-admin.php:580
464
  msgid ""
465
  "You can provide a custom URL to the extra search engines file if you want:"
466
  msgstr ""
467
 
468
+ #: admin/class-admin.php:586
469
  msgid "Tag links in RSS feed with campaign variables"
470
  msgstr ""
471
 
472
+ #: admin/class-admin.php:587
473
  msgid ""
474
  "Do not use this feature if you use FeedBurner, as FeedBurner can do this "
475
  "automatically, and better than this plugin can. Check <a href=\"http://www."
477
  "help page</a> for info on how to enable this feature in FeedBurner."
478
  msgstr ""
479
 
480
+ #: admin/class-admin.php:592
481
  msgid "Add tracking to the login and registration forms"
482
  msgstr ""
483
 
484
+ #: admin/class-admin.php:597
485
  msgid "Add tracking to the comment forms"
486
  msgstr ""
487
 
488
+ #: admin/class-admin.php:602
489
  msgid "Use # instead of ? for Campaign tracking"
490
  msgstr ""
491
 
492
+ #: admin/class-admin.php:603
493
  msgid ""
494
  "This adds a <code><a href=\"http://code.google.com/apis/analytics/docs/"
495
  "gaJSApiCampaignTracking.html#_gat.GA_Tracker_._setAllowAnchor"
497
  "tagging use a # as well."
498
  msgstr ""
499
 
500
+ #: admin/class-admin.php:608
501
  msgid "Add <code>_setAllowLinker</code>"
502
  msgstr ""
503
 
504
+ #: admin/class-admin.php:609
505
  msgid ""
506
  "This adds a <code><a href=\"http://code.google.com/apis/analytics/docs/gaJS/"
507
  "gaJSApiDomainDirectory.html#_gat.GA_Tracker_._setAllowLinker"
509
  "use <code>_link</code> and related functions."
510
  msgstr ""
511
 
512
+ #: admin/class-admin.php:614
513
  msgid "Set <code>_setAllowHash</code> to false"
514
  msgstr ""
515
 
516
+ #: admin/class-admin.php:615
517
  msgid ""
518
  "This sets <code><a href=\"http://code.google.com/apis/analytics/docs/gaJS/"
519
  "gaJSApiDomainDirectory.html#_gat.GA_Tracker_._setAllowHash\">_setAllowHash</"
520
  "a></code> to false, allowing you to track subdomains etc."
521
  msgstr ""
522
 
523
+ #: admin/class-admin.php:620
524
  msgid "Anonymize IP's"
525
  msgstr ""
526
 
527
+ #: admin/class-admin.php:621
528
  msgid ""
529
  "This adds <code><a href=\"http://code.google.com/apis/analytics/docs/gaJS/"
530
  "gaJSApi_gat.html#_gat._anonymizeIp\">_anonymizeIp</a></code>, telling Google "
532
  "removing the last octet of the IP address prior to its storage."
533
  msgstr ""
534
 
535
+ #: admin/class-admin.php:625
536
  msgid "Advanced Settings"
537
  msgstr ""
538
 
539
+ #: admin/class-admin.php:630
540
  msgid "Internal links to track as outbound"
541
  msgstr ""
542
 
543
+ #: admin/class-admin.php:631
544
  msgid ""
545
  "If you want to track all internal links that begin with <code>/out/</code>, "
546
  "enter <code>/out/</code> in the box above. If you have multiple prefixes you "
547
  "can separate them with comma's: <code>/out/,/recommends/</code>"
548
  msgstr ""
549
 
550
+ #: admin/class-admin.php:636
551
  msgid "Label to use"
552
  msgstr ""
553
 
554
+ #: admin/class-admin.php:637
555
  msgid ""
556
  "The label to use for these links, this will be added to where the click came "
557
  "from, so if the label is \"aff\", the label for a click from the content of "
558
  "an article becomes \"outbound-article-aff\"."
559
  msgstr ""
560
 
561
+ #: admin/class-admin.php:641
562
  msgid "Internal Links to Track as Outbound"
563
  msgstr ""
564
 
565
+ #: admin/class-admin.php:644
566
  msgid ""
567
  "The WordPress e-Commerce plugin has been detected. This plugin can "
568
  "automatically add transaction tracking for you. To do that, <a href=\"http://"
570
  "for your reports in Google Analytics</a> and then check the box below."
571
  msgstr ""
572
 
573
+ #: admin/class-admin.php:648 admin/class-admin.php:661
574
  msgid "Enable transaction tracking"
575
  msgstr ""
576
 
577
+ #: admin/class-admin.php:651
578
  msgid "WordPress e-Commerce Settings"
579
  msgstr ""
580
 
581
+ #: admin/class-admin.php:657
582
  msgid ""
583
  "The Shopp e-Commerce plugin has been detected. This plugin can automatically "
584
  "add transaction tracking for you. To do that, <a href=\"http://www.google."
587
  "below."
588
  msgstr ""
589
 
590
+ #: admin/class-admin.php:664
591
  msgid "Shopp e-Commerce Settings"
592
  msgstr ""
593
 
594
+ #: admin/class-admin.php:667
595
  msgid ""
596
  "If you want to confirm that tracking on your blog is working as it should, "
597
  "enable this option and check the console in %sFirebug%s (for Firefox), "
600
  "slower than normal tracking."
601
  msgstr ""
602
 
603
+ #: admin/class-admin.php:668
604
  msgid "Note"
605
  msgstr ""
606
 
607
+ #: admin/class-admin.php:668
608
  msgid "the debugging and firebug scripts are only loaded for admins."
609
  msgstr ""
610
 
611
+ #: admin/class-admin.php:672
612
  msgid "Enable debug mode"
613
  msgstr ""
614
 
615
+ #: admin/class-admin.php:677
616
  msgid "Enable Firebug Lite"
617
  msgstr ""
618
 
619
+ #: admin/class-admin.php:680
620
  msgid "Debug Mode"
621
  msgstr ""
622
 
623
+ #: admin/class-admin.php:685
624
  msgid "Do you really want to reset all settings?"
625
  msgstr ""
626
 
627
+ #: admin/class-admin.php:689
628
  msgid "Reset All Settings &raquo;"
629
  msgstr ""
630
 
631
+ #: admin/class-admin.php:698
632
  msgid "Help Spread the Word!"
633
  msgstr ""
634
 
635
+ #: admin/class-admin.php:700
 
 
 
 
 
 
 
 
 
 
636
  msgid "Rate the plugin 5★ on WordPress.org"
637
  msgstr ""
638
 
639
+ #: admin/class-admin.php:701
640
  msgid "Help out other users in the forums"
641
  msgstr ""
642
 
643
+ #: admin/class-admin.php:702
644
  msgid "Blog about it & link to the %1$splugin page%2$s"
645
  msgstr ""
646
 
647
+ #: admin/class-admin.php:766
648
  msgid "Google Analytics is not active."
649
  msgstr ""
650
 
651
+ #: admin/class-admin.php:766
652
  msgid ""
653
  "You must %sselect which Analytics Profile to track%s before it can work."
654
  msgstr ""
708
  "ignored."
709
  msgstr ""
710
 
711
+ #: frontend/class-frontend.php:663
712
  msgid ""
713
  "Please set Google Analytics position to \"manual\" in the settings, or "
714
  "remove this call to yoast_analytics();"
readme.txt CHANGED
@@ -3,14 +3,14 @@ Contributors: joostdevalk
3
  Donate link: http://yoast.com/donate/
4
  Tags: analytics, google analytics, statistics, tracking, stats, google
5
  Requires at least: 3.3
6
- Tested up to: 3.5
7
- Stable tag: 4.3.3
8
 
9
  Track your WordPress site easily and with lots of metadata: views per author & category, automatic tracking of outbound clicks and pageviews.
10
 
11
  == Description ==
12
 
13
- The Google Analytics for WordPress plugin allows you to track your blog easily and with lots of metadata.
14
 
15
  Check out the [Google Analytics for WordPress video](http://www.youtube.com/watch?v=tnUXzbvXxSQ):
16
 
@@ -58,6 +58,17 @@ This section describes how to install the plugin and get it working.
58
 
59
  == Changelog ==
60
 
 
 
 
 
 
 
 
 
 
 
 
61
  = 4.3.3 =
62
 
63
  * Fix a possible fatal error in tracking.
@@ -137,10 +148,10 @@ This section describes how to install the plugin and get it working.
137
 
138
  * Added:
139
  * Google Site Speed tracking, turned it on by default.
140
-
141
  * Fixed:
142
  * Custom code now properly removes slashes.
143
-
144
  = 4.0.12 =
145
 
146
  * Fixed:
@@ -150,18 +161,18 @@ This section describes how to install the plugin and get it working.
150
  * Notice for unset variable.
151
  * Error when user is not logged in in certain corner cases.
152
  * Bug where $options was used but never loaded for blogroll links.
153
-
154
  = 4.0.11 =
155
 
156
  * Bugs fixed:
157
  * You can now disable comment form tracking properly.
158
  * Removed charset property from script tags to allow validation with HTML5 doctype.
159
-
160
  = 4.0.10 =
161
 
162
  * Known issues:
163
  * Authentication with Google gives errors in quite a few cases. Please use the manual option to add your UA code until we find a way to reliably fix it.
164
-
165
  * Added functionality:
166
  * Option to set `_setAllowHash` to false, for proper subdomain tracking and some other uses.
167
  * Option to add a custom string of code to the tracking, before the push string is sent out.
@@ -202,9 +213,9 @@ This section describes how to install the plugin and get it working.
202
  * Documentation fixes:
203
  * Updated custom variable order in settings panel to reflect order of tracking. You can now determine their index key by counting down, first checked box is index 1, second 2, etc.
204
  * Ignored users dropdown now correctly reflects that ignoring subcribers and up means ignoring ALL logged in users.
205
-
206
  = 4.0.5 =
207
- * New features in this release:
208
  * Added a simple check to see if the UA code, when entered manually, matches a basic pattern of UA-1234567-12.
209
  * Added integration with [W3 Total Cache](http://wordpress.org/extend/plugins/w3-total-cache/) and [WP Super Cache](http://wordpress.org/extend/plugins/wp-super-cache/). The page cache is now automatically cleared after updating settings. Caching is recommended for all WordPress users, as faster page loads improve tracking reliability and W3 Total Cache is our recommended caching plugin.
210
  * Added the option to enter a manual location for ga.js, allowing you to host it locally should you wish to.
@@ -220,7 +231,7 @@ This section describes how to install the plugin and get it working.
220
  * Fix for stupid boolean mistake in 4.0.3.
221
 
222
  = 4.0.3 =
223
- * New features in this release:
224
  * Added versioning to the options array, to allow for easy addition of options.
225
  * Added an option to enable comment form tracking (as this loads jQuery), defaults to on.
226
  * Bugs fixed:
@@ -229,7 +240,7 @@ This section describes how to install the plugin and get it working.
229
 
230
  = 4.0.2 =
231
  * Old settings from versions below 4.0 are now properly sanitized and inherited (slaps forehead about simplicity of fix).
232
- * New features in this release:
233
  * Link sanitization added: relative links will be rewritten to absolute, so /out/ becomes http://example.com/out/ and is tracked properly.
234
  * Added a feature to track and label internal links as outbound clicks, for instance /out/ links.
235
  * Added tracking for mailto: links.
@@ -246,8 +257,8 @@ This section describes how to install the plugin and get it working.
246
  * Complete rewrite of the codebase
247
  * Switched to the new asynchronous event tracking model
248
  * Switched link tracking to an event tracking model, because of this change removed 5 settings from the settings panel that were no longer needed
249
- * Implemented custom variable tracking to track:
250
- * On the session level: whether the user is logged in or not.
251
  * On the page level: the current posts's author, category, tags, year of publication and post type.
252
  * Added Google Analytics API integration, so you can easily select a site to track.
253
  * E-Commerce integration, tracking transactions, support for WP E-Commerce and Shopp.
@@ -306,15 +317,15 @@ This section describes how to install the plugin and get it working.
306
  * Prevent link tracking when admin is logged in and admin tracking is disabled.
307
  * Now prevents parsing of non http and https link.
308
 
309
- = 2.9 =
310
  * Re arranged admin panel to have "standard" and "advanced" settings.
311
  * Added domain tracking.
312
  * Added fix for double onclick parameter, as suggested [here](http://wordpress.org/support/topic/241757).
313
 
314
- = 2.8 =
315
  * Added the option to add setAllowAnchor to the tracking code, allowing you to track campaigns with # instead of ?.
316
 
317
- = 2.7 =
318
  * Added option to select either header of footer position.
319
  * Added new AdSense integration options.
320
  * Removed now unneeded adsense tracking script.
@@ -322,13 +333,13 @@ This section describes how to install the plugin and get it working.
322
  = 2.6.6=
323
  * Fixed settings link.
324
 
325
- = 2.6.5 =
326
  * added Ozh admin menu icon and settings link.
327
 
328
- = 2.6.4 =
329
  * Fixes for 2.7.
330
 
331
- = 2.6.3 =
332
  * Fixed bug that didn't allow saving of outbound clicks from comments string.
333
 
334
  = 2.6 =
@@ -338,13 +349,13 @@ This section describes how to install the plugin and get it working.
338
  * Fixed an issue with pluginpath being used globally.
339
  * Changed links to [new domain](http://yoast.com/).
340
 
341
- = 2.2 =
342
  * Switched to the new tracking code.
343
 
344
- = 2.1 =
345
  * Made sure tracking was disabled on preview pages.
346
 
347
- = 2.0 =
348
  * Added AdSense tracking.
349
 
350
  = 1.5 =
@@ -380,4 +391,4 @@ Because that's where it belongs. It makes the page load faster (yes, faster, due
380
  4. Screenshot of the advanced settings panel.
381
  5. Screenshot of the debugging mode in action.
382
 
383
- == Upgrade Notice ==
3
  Donate link: http://yoast.com/donate/
4
  Tags: analytics, google analytics, statistics, tracking, stats, google
5
  Requires at least: 3.3
6
+ Tested up to: 3.8.1
7
+ Stable tag: 4.3.4
8
 
9
  Track your WordPress site easily and with lots of metadata: views per author & category, automatic tracking of outbound clicks and pageviews.
10
 
11
  == Description ==
12
 
13
+ The Google Analytics for WordPress plugin allows you to track your blog easily and with lots of metadata.
14
 
15
  Check out the [Google Analytics for WordPress video](http://www.youtube.com/watch?v=tnUXzbvXxSQ):
16
 
58
 
59
  == Changelog ==
60
 
61
+ = 4.3.4 =
62
+
63
+ * Bugfix:
64
+ * Fixed error in a database query as reported by [mikeotgaar](http://wordpress.org/support/topic/wordpress-database-error-table-1) and applied some best practices for the database queries - props [Jrf](http://profiles.wordpress.org/jrf).
65
+ * Fixed error in a database query.
66
+ * Made check for customcode option more robust - props [Rarst](https://github.com/Rarst).
67
+
68
+ * i18n
69
+ * Updated gawp.pot file
70
+ * Added de_DE, el_GR, es_ES, fi, fr_FR, hu_HU & nl_NL
71
+
72
  = 4.3.3 =
73
 
74
  * Fix a possible fatal error in tracking.
148
 
149
  * Added:
150
  * Google Site Speed tracking, turned it on by default.
151
+
152
  * Fixed:
153
  * Custom code now properly removes slashes.
154
+
155
  = 4.0.12 =
156
 
157
  * Fixed:
161
  * Notice for unset variable.
162
  * Error when user is not logged in in certain corner cases.
163
  * Bug where $options was used but never loaded for blogroll links.
164
+
165
  = 4.0.11 =
166
 
167
  * Bugs fixed:
168
  * You can now disable comment form tracking properly.
169
  * Removed charset property from script tags to allow validation with HTML5 doctype.
170
+
171
  = 4.0.10 =
172
 
173
  * Known issues:
174
  * Authentication with Google gives errors in quite a few cases. Please use the manual option to add your UA code until we find a way to reliably fix it.
175
+
176
  * Added functionality:
177
  * Option to set `_setAllowHash` to false, for proper subdomain tracking and some other uses.
178
  * Option to add a custom string of code to the tracking, before the push string is sent out.
213
  * Documentation fixes:
214
  * Updated custom variable order in settings panel to reflect order of tracking. You can now determine their index key by counting down, first checked box is index 1, second 2, etc.
215
  * Ignored users dropdown now correctly reflects that ignoring subcribers and up means ignoring ALL logged in users.
216
+
217
  = 4.0.5 =
218
+ * New features in this release:
219
  * Added a simple check to see if the UA code, when entered manually, matches a basic pattern of UA-1234567-12.
220
  * Added integration with [W3 Total Cache](http://wordpress.org/extend/plugins/w3-total-cache/) and [WP Super Cache](http://wordpress.org/extend/plugins/wp-super-cache/). The page cache is now automatically cleared after updating settings. Caching is recommended for all WordPress users, as faster page loads improve tracking reliability and W3 Total Cache is our recommended caching plugin.
221
  * Added the option to enter a manual location for ga.js, allowing you to host it locally should you wish to.
231
  * Fix for stupid boolean mistake in 4.0.3.
232
 
233
  = 4.0.3 =
234
+ * New features in this release:
235
  * Added versioning to the options array, to allow for easy addition of options.
236
  * Added an option to enable comment form tracking (as this loads jQuery), defaults to on.
237
  * Bugs fixed:
240
 
241
  = 4.0.2 =
242
  * Old settings from versions below 4.0 are now properly sanitized and inherited (slaps forehead about simplicity of fix).
243
+ * New features in this release:
244
  * Link sanitization added: relative links will be rewritten to absolute, so /out/ becomes http://example.com/out/ and is tracked properly.
245
  * Added a feature to track and label internal links as outbound clicks, for instance /out/ links.
246
  * Added tracking for mailto: links.
257
  * Complete rewrite of the codebase
258
  * Switched to the new asynchronous event tracking model
259
  * Switched link tracking to an event tracking model, because of this change removed 5 settings from the settings panel that were no longer needed
260
+ * Implemented custom variable tracking to track:
261
+ * On the session level: whether the user is logged in or not.
262
  * On the page level: the current posts's author, category, tags, year of publication and post type.
263
  * Added Google Analytics API integration, so you can easily select a site to track.
264
  * E-Commerce integration, tracking transactions, support for WP E-Commerce and Shopp.
317
  * Prevent link tracking when admin is logged in and admin tracking is disabled.
318
  * Now prevents parsing of non http and https link.
319
 
320
+ = 2.9 =
321
  * Re arranged admin panel to have "standard" and "advanced" settings.
322
  * Added domain tracking.
323
  * Added fix for double onclick parameter, as suggested [here](http://wordpress.org/support/topic/241757).
324
 
325
+ = 2.8 =
326
  * Added the option to add setAllowAnchor to the tracking code, allowing you to track campaigns with # instead of ?.
327
 
328
+ = 2.7 =
329
  * Added option to select either header of footer position.
330
  * Added new AdSense integration options.
331
  * Removed now unneeded adsense tracking script.
333
  = 2.6.6=
334
  * Fixed settings link.
335
 
336
+ = 2.6.5 =
337
  * added Ozh admin menu icon and settings link.
338
 
339
+ = 2.6.4 =
340
  * Fixes for 2.7.
341
 
342
+ = 2.6.3 =
343
  * Fixed bug that didn't allow saving of outbound clicks from comments string.
344
 
345
  = 2.6 =
349
  * Fixed an issue with pluginpath being used globally.
350
  * Changed links to [new domain](http://yoast.com/).
351
 
352
+ = 2.2 =
353
  * Switched to the new tracking code.
354
 
355
+ = 2.1 =
356
  * Made sure tracking was disabled on preview pages.
357
 
358
+ = 2.0 =
359
  * Added AdSense tracking.
360
 
361
  = 1.5 =
391
  4. Screenshot of the advanced settings panel.
392
  5. Screenshot of the debugging mode in action.
393
 
394
+ == Upgrade Notice ==