Google Analytics Dashboard for WP (GADWP) - Version 6.0.1

Version Description

Download this release

Release Info

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

Code changes from version 6.0.0 to 6.0.1

gadwp.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin URI: https://exactmetrics.com
5
  * Description: Displays Google Analytics Reports and Real-Time Statistics in your Dashboard. Automatically inserts the tracking code in every page of your website.
6
  * Author: ExactMetrics
7
- * Version: 6.0.0
8
  * Author URI: https://exactmetrics.com
9
  * Text Domain: google-analytics-dashboard-for-wp
10
  * Domain Path: /languages
@@ -42,7 +42,7 @@ final class ExactMetrics_Lite {
42
  * @access public
43
  * @var string $version Plugin version.
44
  */
45
- public $version = '6.0.0';
46
 
47
  /**
48
  * Plugin file.
@@ -179,8 +179,8 @@ final class ExactMetrics_Lite {
179
  self::$instance->require_files();
180
 
181
  // This does the version to version background upgrade routines and initial install
182
- $mi_version = get_option( 'exactmetrics_current_version', '5.5.3' );
183
- if ( version_compare( $mi_version, '6.0.0', '<' ) ) {
184
  exactmetrics_lite_call_install_and_upgrade();
185
  }
186
 
@@ -656,7 +656,7 @@ function exactmetrics_lite_install_and_upgrade() {
656
  }
657
  }
658
 
659
- // Don't run if MI Pro is installed
660
  if ( class_exists( 'ExactMetrics' ) ) {
661
  if ( is_plugin_active( plugin_basename( __FILE__ ) ) ) {
662
  return;
4
  * Plugin URI: https://exactmetrics.com
5
  * Description: Displays Google Analytics Reports and Real-Time Statistics in your Dashboard. Automatically inserts the tracking code in every page of your website.
6
  * Author: ExactMetrics
7
+ * Version: 6.0.1
8
  * Author URI: https://exactmetrics.com
9
  * Text Domain: google-analytics-dashboard-for-wp
10
  * Domain Path: /languages
42
  * @access public
43
  * @var string $version Plugin version.
44
  */
45
+ public $version = '6.0.1';
46
 
47
  /**
48
  * Plugin file.
179
  self::$instance->require_files();
180
 
181
  // This does the version to version background upgrade routines and initial install
182
+ $em_version = get_option( 'exactmetrics_current_version', '5.5.3' );
183
+ if ( version_compare( $em_version, '6.0.0', '<' ) ) {
184
  exactmetrics_lite_call_install_and_upgrade();
185
  }
186
 
656
  }
657
  }
658
 
659
+ // Don't run if ExactMetrics Pro is installed
660
  if ( class_exists( 'ExactMetrics' ) ) {
661
  if ( is_plugin_active( plugin_basename( __FILE__ ) ) ) {
662
  return;
includes/admin/admin.php CHANGED
@@ -279,7 +279,7 @@ function exactmetrics_admin_setup_notices() {
279
  $urlone = is_network_admin() ? network_admin_url( 'admin.php?page=exactmetrics-onboarding' ) : admin_url( 'admin.php?page=exactmetrics-onboarding' );
280
  $secondary = esc_html__( 'Learn More', 'google-analytics-dashboard-for-wp' );
281
  $urltwo = $submenu_base . '#/about/getting-started';
282
- $message = esc_html__( 'ExactMetrics, WordPress analytics plugin, helps you connect your website with Google Analytics, so you can see how people find and use your website. Over 2 million website owners use ExactMetrics to see the stats that matter and grow their business.', 'google-analytics-dashboard-for-wp' );
283
  echo '<div class="notice notice-info"><p style="font-weight:700">'. $title .'</p><p>'. $message.'</p><p><a href="'. $urlone .'" class="button-primary">'. $primary .'</a>&nbsp;&nbsp;&nbsp;<a href="'. $urltwo .'" class="button-secondary">'. $secondary .'</a></p></div>';
284
  return;
285
  }
279
  $urlone = is_network_admin() ? network_admin_url( 'admin.php?page=exactmetrics-onboarding' ) : admin_url( 'admin.php?page=exactmetrics-onboarding' );
280
  $secondary = esc_html__( 'Learn More', 'google-analytics-dashboard-for-wp' );
281
  $urltwo = $submenu_base . '#/about/getting-started';
282
+ $message = esc_html__( 'ExactMetrics, WordPress analytics plugin, helps you connect your website with Google Analytics, so you can see how people find and use your website. Over 1 million website owners use ExactMetrics to see the stats that matter and grow their business.', 'google-analytics-dashboard-for-wp' );
283
  echo '<div class="notice notice-info"><p style="font-weight:700">'. $title .'</p><p>'. $message.'</p><p><a href="'. $urlone .'" class="button-primary">'. $primary .'</a>&nbsp;&nbsp;&nbsp;<a href="'. $urltwo .'" class="button-secondary">'. $secondary .'</a></p></div>';
284
  return;
285
  }
includes/admin/tracking.php CHANGED
@@ -73,7 +73,7 @@ class ExactMetrics_Tracking {
73
  }
74
 
75
  $data['php_version'] = phpversion();
76
- $data['mi_version'] = EXACTMETRICS_VERSION;
77
  $data['wp_version'] = get_bloginfo( 'version' );
78
  $data['server'] = isset( $_SERVER['SERVER_SOFTWARE'] ) ? $_SERVER['SERVER_SOFTWARE'] : '';
79
  $data['over_time'] = get_option( 'exactmetrics_over_time', array() );
73
  }
74
 
75
  $data['php_version'] = phpversion();
76
+ $data['em_version'] = EXACTMETRICS_VERSION;
77
  $data['wp_version'] = get_bloginfo( 'version' );
78
  $data['server'] = isset( $_SERVER['SERVER_SOFTWARE'] ) ? $_SERVER['SERVER_SOFTWARE'] : '';
79
  $data['over_time'] = get_option( 'exactmetrics_over_time', array() );
includes/em-install.php CHANGED
@@ -363,8 +363,13 @@ class ExactMetrics_Install {
363
  }
364
 
365
  // Transfer enhanced eCommerce
366
- if ( ! empty( $em_legacy_options['ecommerce_mode'] ) && 'enhanced' === $em_legacy_options['ecommerce_mode'] ) {
367
- $settings['enhanced_ecommerce'] = true;
 
 
 
 
 
368
  }
369
 
370
  // Transfer Demographics
@@ -376,6 +381,20 @@ class ExactMetrics_Install {
376
 
377
  $settings['gadwp_migrated'] = time();
378
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
379
  // Add transient to trigger redirect.
380
  set_transient( '_exactmetrics_activation_redirect', 1, 60 );
381
 
363
  }
364
 
365
  // Transfer enhanced eCommerce
366
+ if ( ! empty( $em_legacy_options['ecommerce_mode'] ) ) {
367
+ if ( 'disabled' !== $em_legacy_options['ecommerce_mode'] ) {
368
+ $settings['gadwp_ecommerce'] = true;
369
+ }
370
+ if ( 'enhanced' === $em_legacy_options['ecommerce_mode'] ) {
371
+ $settings['enhanced_ecommerce'] = true;
372
+ }
373
  }
374
 
375
  // Transfer Demographics
381
 
382
  $settings['gadwp_migrated'] = time();
383
 
384
+ // Hide the dashboard widget reports for migrating users.
385
+ if ( ! exactmetrics_is_pro_version() ) {
386
+ $dashboard_settings = array(
387
+ 'reports' => array(
388
+ 'overview' => array(
389
+ 'toppages' => false,
390
+ 'newvsreturn' => false,
391
+ 'devices' => false,
392
+ ),
393
+ ),
394
+ );
395
+ update_user_meta( get_current_user_id(), 'exactmetrics_user_preferences', $dashboard_settings );
396
+ }
397
+
398
  // Add transient to trigger redirect.
399
  set_transient( '_exactmetrics_activation_redirect', 1, 60 );
400
 
includes/frontend/tracking/class-tracking-analytics.php CHANGED
@@ -228,10 +228,10 @@ class ExactMetrics_Tracking_Analytics extends ExactMetrics_Tracking_Abstract {
228
  } ?>
229
  <?php if ( $ua ) { ?>
230
  <script<?php echo $attr_string;?>>
231
- var mi_version = '<?php echo EXACTMETRICS_VERSION; ?>';
232
- var mi_track_user = <?php echo ( $track_user ? 'true' : 'false' ); ?>;
233
- var mi_no_track_reason = <?php echo ( $reason ? "'" . esc_js( $reason) . "'": "''" ); ?>;
234
- <?php do_action( 'exactmetrics_tracking_analytics_frontend_output_after_mi_track_user' ); ?>
235
 
236
  <?php if ( $this->should_do_optout() ) { ?>
237
  var disableStr = 'ga-disable-<?php echo exactmetrics_get_ua(); ?>';
@@ -259,7 +259,7 @@ class ExactMetrics_Tracking_Analytics extends ExactMetrics_Tracking_Abstract {
259
  }
260
  <?php } ?>
261
 
262
- if ( mi_track_user ) {
263
  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
264
  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
265
  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
@@ -307,7 +307,7 @@ class ExactMetrics_Tracking_Analytics extends ExactMetrics_Tracking_Abstract {
307
  }
308
  var f = arguments[len-1];
309
  if ( typeof f !== 'object' || f === null || typeof f.hitCallback !== 'function' ) {
310
- console.log( '<?php echo esc_js( __("Not running function", "google-analytics-dashboard-for-wp" ) );?> __gaTracker(' + arguments[0] + " ....) <?php echo esc_js( __( "because you are not being tracked.", 'google-analytics-dashboard-for-wp' ) );?> " + mi_no_track_reason );
311
  return;
312
  }
313
  try {
@@ -341,6 +341,6 @@ class ExactMetrics_Tracking_Analytics extends ExactMetrics_Tracking_Abstract {
341
  }
342
 
343
  public function should_do_optout() {
344
- return ! ( defined( 'MI_NO_TRACKING_OPTOUT' ) && MI_NO_TRACKING_OPTOUT );
345
  }
346
  }
228
  } ?>
229
  <?php if ( $ua ) { ?>
230
  <script<?php echo $attr_string;?>>
231
+ var em_version = '<?php echo EXACTMETRICS_VERSION; ?>';
232
+ var em_track_user = <?php echo ( $track_user ? 'true' : 'false' ); ?>;
233
+ var em_no_track_reason = <?php echo ( $reason ? "'" . esc_js( $reason) . "'": "''" ); ?>;
234
+ <?php do_action( 'exactmetrics_tracking_analytics_frontend_output_after_em_track_user' ); ?>
235
 
236
  <?php if ( $this->should_do_optout() ) { ?>
237
  var disableStr = 'ga-disable-<?php echo exactmetrics_get_ua(); ?>';
259
  }
260
  <?php } ?>
261
 
262
+ if ( em_track_user ) {
263
  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
264
  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
265
  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
307
  }
308
  var f = arguments[len-1];
309
  if ( typeof f !== 'object' || f === null || typeof f.hitCallback !== 'function' ) {
310
+ console.log( '<?php echo esc_js( __("Not running function", "google-analytics-dashboard-for-wp" ) );?> __gaTracker(' + arguments[0] + " ....) <?php echo esc_js( __( "because you are not being tracked.", 'google-analytics-dashboard-for-wp' ) );?> " + em_no_track_reason );
311
  return;
312
  }
313
  try {
341
  }
342
 
343
  public function should_do_optout() {
344
+ return ! ( defined( 'EM_NO_TRACKING_OPTOUT' ) && EM_NO_TRACKING_OPTOUT );
345
  }
346
  }
includes/helpers.php CHANGED
@@ -1115,7 +1115,7 @@ function exactmetrics_get_shareasale_url( $shareasale_id, $shareasale_redirect )
1115
 
1116
  // Whether we have an ID or not, filter the ID.
1117
  $shareasale_redirect = apply_filters( 'exactmetrics_shareasale_redirect_url', $shareasale_redirect, $custom );
1118
- $shareasale_url = sprintf( 'https://www.shareasale.com/r.cfm?B=971799&U=%s&M=69975&urllink=%s', $shareasale_id, $shareasale_redirect );
1119
  $shareasale_url = apply_filters( 'exactmetrics_shareasale_redirect_entire_url', $shareasale_url, $shareasale_id, $shareasale_redirect );
1120
  return $shareasale_url;
1121
  }
1115
 
1116
  // Whether we have an ID or not, filter the ID.
1117
  $shareasale_redirect = apply_filters( 'exactmetrics_shareasale_redirect_url', $shareasale_redirect, $custom );
1118
+ $shareasale_url = sprintf( 'https://www.shareasale.com/r.cfm?B=1494714&U=%s&M=94980&urllink=%s', $shareasale_id, $shareasale_redirect );
1119
  $shareasale_url = apply_filters( 'exactmetrics_shareasale_redirect_entire_url', $shareasale_url, $shareasale_id, $shareasale_redirect );
1120
  return $shareasale_url;
1121
  }
languages/google-analytics-dashboard-for-wp.pot CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the ExactMetrics Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: ExactMetrics Pro 6.0.0\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/monsterinsights-temp\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2020-02-12T15:03:44+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.2.0\n"
15
  "X-Domain: google-analytics-dashboard-for-wp\n"
@@ -152,7 +152,7 @@ msgstr ""
152
  #: lite/includes/admin/wp-site-health.php:298
153
  #: lite/includes/admin/wp-site-health.php:324
154
  #: lite/includes/admin/wp-site-health.php:351
155
- #: languages/vue.php:1261
156
  msgid "View Addons"
157
  msgstr ""
158
 
@@ -288,25 +288,25 @@ msgstr ""
288
  msgid "Upgrade to ExactMetrics Pro"
289
  msgstr ""
290
 
291
- #: lite/includes/admin/onboarding-wizard.php:168
292
  msgid "ExactMetrics &rsaquo; Onboarding Wizard"
293
  msgstr ""
294
 
295
- #: lite/includes/admin/onboarding-wizard.php:181
296
  msgid "Return to Dashboard"
297
  msgstr ""
298
 
299
- #: lite/includes/admin/onboarding-wizard.php:247
300
  msgid "You are not allowed to install plugins"
301
  msgstr ""
302
 
303
  #: lite/includes/admin/reports/report-queries.php:22
304
- #: languages/vue.php:145
305
  msgid "Search Console"
306
  msgstr ""
307
 
308
  #: lite/includes/admin/reports/report-ecommerce.php:22
309
- #: languages/vue.php:141
310
  msgid "eCommerce"
311
  msgstr ""
312
 
@@ -319,17 +319,17 @@ msgid "Real Time"
319
  msgstr ""
320
 
321
  #: lite/includes/admin/reports/report-publisher.php:22
322
- #: languages/vue.php:137
323
  msgid "Publishers"
324
  msgstr ""
325
 
326
  #: lite/includes/admin/reports/report-dimensions.php:22
327
- #: languages/vue.php:236
328
  msgid "Dimensions"
329
  msgstr ""
330
 
331
  #: lite/includes/admin/reports/report-forms.php:22
332
- #: languages/vue.php:151
333
  msgid "Forms"
334
  msgstr ""
335
 
@@ -600,7 +600,7 @@ msgstr ""
600
 
601
  #: includes/admin/admin.php:39
602
  #: includes/admin/admin.php:95
603
- #: languages/vue.php:1728
604
  msgid "Reports"
605
  msgstr ""
606
 
@@ -629,7 +629,7 @@ msgstr ""
629
 
630
  #: includes/admin/admin.php:60
631
  #: includes/admin/admin.php:103
632
- #: languages/vue.php:159
633
  msgid "About Us"
634
  msgstr ""
635
 
@@ -657,7 +657,7 @@ msgstr ""
657
 
658
  #: includes/admin/admin.php:175
659
  #: includes/admin/admin.php:178
660
- #: languages/vue.php:1027
661
  msgid "Support"
662
  msgstr ""
663
 
@@ -667,23 +667,23 @@ msgid "Please rate %1$sExactMetrics%2$s on %3$s %4$sWordPress.org%5$s to help us
667
  msgstr ""
668
 
669
  #: includes/admin/admin.php:277
670
- #: languages/vue.php:397
671
  msgid "Please Setup Website Analytics to See Audience Insights"
672
  msgstr ""
673
 
674
  #: includes/admin/admin.php:278
675
- #: languages/vue.php:403
676
  msgid "Connect ExactMetrics and Setup Website Analytics"
677
  msgstr ""
678
 
679
  #: includes/admin/admin.php:280
680
- #: languages/vue.php:280
681
  msgid "Learn More"
682
  msgstr ""
683
 
684
  #: includes/admin/admin.php:282
685
- #: languages/vue.php:400
686
- msgid "ExactMetrics, WordPress analytics plugin, helps you connect your website with Google Analytics, so you can see how people find and use your website. Over 2 million website owners use ExactMetrics to see the stats that matter and grow their business."
687
  msgstr ""
688
 
689
  #. Translators: Adds a link to retrieve the license.
@@ -693,17 +693,17 @@ msgstr ""
693
 
694
  #. Translators: Adds a link to the license renewal.
695
  #: includes/admin/admin.php:303
696
- #: languages/vue.php:306
697
  msgid "Your license key for ExactMetrics has expired. %1$sPlease click here to renew your license key.%2$s"
698
  msgstr ""
699
 
700
  #: includes/admin/admin.php:305
701
- #: languages/vue.php:309
702
  msgid "Your license key for ExactMetrics has been disabled. Please use a different key."
703
  msgstr ""
704
 
705
  #: includes/admin/admin.php:307
706
- #: languages/vue.php:312
707
  msgid "Your license key for ExactMetrics is invalid. The key no longer exists or the user associated with the key has been deleted. Please use a different key."
708
  msgstr ""
709
 
@@ -784,7 +784,7 @@ msgid "View supported browsers"
784
  msgstr ""
785
 
786
  #: includes/admin/reports/overview.php:34
787
- #: languages/vue.php:133
788
  msgid "Overview"
789
  msgstr ""
790
 
@@ -876,7 +876,7 @@ msgid "Upgrading is easy! To upgrade, navigate to %1$ssour pricing page%2$s, pur
876
  msgstr ""
877
 
878
  #: includes/admin/reports/abstract-report.php:375
879
- #: languages/vue.php:325
880
  msgid "Upgrade Now"
881
  msgstr ""
882
 
@@ -1957,2702 +1957,2734 @@ msgstr ""
1957
  msgid "%1$s is %3$sdeprecated%4$s since ExactMetrics version %2$s."
1958
  msgstr ""
1959
 
1960
- #: languages/vue.php:5
1961
  msgid "Error"
1962
  msgstr ""
1963
 
1964
- #: languages/vue.php:8
1965
  msgid "Please try again."
1966
  msgstr ""
1967
 
1968
- #: languages/vue.php:11
1969
- msgid "Loading settings"
1970
- msgstr ""
1971
-
1972
- #: languages/vue.php:14
1973
  msgid "Loading Settings"
1974
  msgstr ""
1975
 
1976
- #: languages/vue.php:17
1977
  msgid "Please wait..."
1978
  msgstr ""
1979
 
1980
- #: languages/vue.php:20
1981
  msgid "Saving Changes..."
1982
  msgstr ""
1983
 
1984
- #: languages/vue.php:23
1985
  msgid "Settings Updated"
1986
  msgstr ""
1987
 
1988
  #. Translators: Add a link to the onboarding wizard.
1989
- #: languages/vue.php:27
1990
  msgid "You need to %1$sconnect ExactMetrics%2$s first"
1991
  msgstr ""
1992
 
1993
- #: languages/vue.php:30
1994
  msgid "Could Not Save Changes"
1995
  msgstr ""
1996
 
1997
- #: languages/vue.php:33
1998
  msgid "Loading new report data"
1999
  msgstr ""
2000
 
2001
- #. Translators: Placeholder gets replaced with an arrow icon.
2002
- #: languages/vue.php:37
2003
  msgid "Continue %s"
2004
  msgstr ""
2005
 
2006
- #: languages/vue.php:40
2007
  msgid "Unlock the Publishers Report and Focus on the Content that Matters"
2008
  msgstr ""
2009
 
2010
- #: languages/vue.php:43
2011
  msgid "Stop guessing about what content your visitors are interested in. ExactMetrics Publisher Report shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions."
2012
  msgstr ""
2013
 
2014
- #: languages/vue.php:46
2015
  msgid "Unlock the Publishers Report and Focus on the Content That Matters"
2016
  msgstr ""
2017
 
2018
- #: languages/vue.php:49
2019
  msgid "Stop guessing about what content your visitors are interested in. The Publisher Report shows you exactly which content gets the most traffic, so you can analyze and optimize it for higher conversions."
2020
  msgstr ""
2021
 
2022
- #: languages/vue.php:52
2023
  msgid "Unlock the eCommerce Report and See Your Important Store Metrics"
2024
  msgstr ""
2025
 
2026
- #: languages/vue.php:55
2027
  msgid "Increase your sales & revenue with insights. ExactMetrics answers all your top eCommerce questions using metrics like total revenue, conversion rate, average order value, top products, top referral sources and more."
2028
  msgstr ""
2029
 
2030
- #: languages/vue.php:58
2031
  msgid "Unlock the Dimensions Report and Track Your Own Custom Data"
2032
  msgstr ""
2033
 
2034
- #: languages/vue.php:61
2035
  msgid "Decide what data is important using your own custom tracking parameters. The Dimensions report allows you to easily see what's working right inside your WordPress dashboard."
2036
  msgstr ""
2037
 
2038
- #: languages/vue.php:64
2039
  msgid "Unlock the Forms Report and Improve Conversions"
2040
  msgstr ""
2041
 
2042
- #: languages/vue.php:67
2043
  msgid "Easily track your form views and conversions. The Forms Report allows you to see which forms are performing better and which forms have lower conversion rates so you can optimize using real data."
2044
  msgstr ""
2045
 
2046
- #: languages/vue.php:70
2047
  msgid "Unlock the Search Console Report and See How People Find Your Website"
2048
  msgstr ""
2049
 
2050
- #: languages/vue.php:73
2051
  msgid "See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more."
2052
  msgstr ""
2053
 
2054
- #: languages/vue.php:76
2055
  msgid "Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time"
2056
  msgstr ""
2057
 
2058
- #: languages/vue.php:79
2059
  msgid "Track the results of your marketing efforts and product launches as-it-happens right from your WordPress site. The Real-Time report allows you to view your traffic sources and visitors activity when you need it."
2060
  msgstr ""
2061
 
 
 
 
 
2062
  #: languages/vue.php:84
2063
- msgid "Overview Report"
2064
  msgstr ""
2065
 
2066
- #. Translators: Number of visitors.
2067
  #: languages/vue.php:88
2068
- msgid "See how %s visitors found your site!"
2069
  msgstr ""
2070
 
2071
- #. Translators: Number of visitors.
2072
- #: languages/vue.php:92
2073
- msgid "Your website was visited by %s users in the last 30 days."
2074
  msgstr ""
2075
 
 
2076
  #: languages/vue.php:95
2077
- msgid "See the full analytics report!"
2078
  msgstr ""
2079
 
2080
  #: languages/vue.php:98
2081
- msgid "Success! "
2082
  msgstr ""
2083
 
2084
- #: languages/vue.php:101
2085
- msgid "You're now using ExactMetrics Pro with all the features."
 
2086
  msgstr ""
2087
 
2088
- #. Translators: Placeholder gets replaced with an arrow icon.
2089
  #: languages/vue.php:105
2090
- msgid "Get Started %s"
2091
  msgstr ""
2092
 
2093
- #. Translators: Current WordPress version.
2094
- #: languages/vue.php:109
2095
- msgid "ExactMetrics has detected that your site is running an outdated version of WordPress (%s). ExactMetrics will stop supporting WordPress versions lower than 4.6 in April, 2019. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
2096
  msgstr ""
2097
 
 
2098
  #: languages/vue.php:112
2099
- msgid "Yikes! PHP Update Required"
2100
  msgstr ""
2101
 
2102
- #. Translators: Current PHP version and recommended PHP version.
2103
- #: languages/vue.php:116
2104
- msgid "ExactMetrics has detected that your site is running an outdated, insecure version of PHP (%1$s), which could be putting your site at risk for being hacked. WordPress stopped supporting your PHP version in April, 2019. Updating to the recommended version (PHP %2$s) only takes a few minutes and will make your website significantly faster and more secure."
2105
  msgstr ""
2106
 
 
2107
  #: languages/vue.php:119
2108
- msgid "Learn more about updating PHP"
2109
  msgstr ""
2110
 
2111
- #: languages/vue.php:122
2112
- msgid "Yikes! WordPress Update Required"
 
2113
  msgstr ""
2114
 
2115
- #. Translators: Current WordPress version.
2116
- #: languages/vue.php:126
2117
- msgid "ExactMetrics has detected that your site is running an outdated version of WordPress (%s). ExactMetrics will stop supporting WordPress versions lower than 4.9 in October, 2019. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
2118
  msgstr ""
2119
 
2120
- #: languages/vue.php:129
2121
- msgid "Learn more about updating WordPress"
 
2122
  msgstr ""
2123
 
2124
- #: languages/vue.php:148
2125
- msgid "Dimensions Report"
 
2126
  msgstr ""
2127
 
2128
- #: languages/vue.php:154
2129
- msgid "Real-Time"
 
2130
  msgstr ""
2131
 
2132
- #: languages/vue.php:163
2133
- msgid "Getting Started"
 
2134
  msgstr ""
2135
 
2136
- #: languages/vue.php:167
2137
- msgid "Lite vs Pro"
 
2138
  msgstr ""
2139
 
2140
- #: languages/vue.php:170
2141
- msgid "General"
 
2142
  msgstr ""
2143
 
2144
- #: languages/vue.php:173
2145
- msgid "Engagement"
2146
  msgstr ""
2147
 
2148
- #: languages/vue.php:176
2149
- msgid "Publisher"
2150
  msgstr ""
2151
 
2152
- #: languages/vue.php:179
2153
- msgid "Conversions"
2154
  msgstr ""
2155
 
2156
- #: languages/vue.php:182
2157
- msgid "Advanced"
2158
  msgstr ""
2159
 
2160
- #: languages/vue.php:185
2161
- msgid "URL Builder"
2162
  msgstr ""
2163
 
2164
- #: languages/vue.php:188
2165
- msgid "Import Export"
2166
  msgstr ""
2167
 
2168
- #: languages/vue.php:191
2169
- msgid "Go back"
2170
  msgstr ""
2171
 
2172
- #. Translators: Placeholders are replaced with the current step number out of the total number of steps.
2173
- #: languages/vue.php:195
2174
- msgid "Step %1$s of %2$s"
 
 
 
 
 
 
 
2175
  msgstr ""
2176
 
2177
  #: languages/vue.php:198
2178
- msgid "Exit Setup"
2179
  msgstr ""
2180
 
2181
- #. Translators: Error status and error text.
2182
  #: languages/vue.php:202
2183
- msgid "Can't load report data. Error: %1$s, %2$s"
2184
  msgstr ""
2185
 
2186
- #: languages/vue.php:205
2187
- msgid "Error loading report data"
2188
  msgstr ""
2189
 
2190
- #: languages/vue.php:208
2191
- msgid "ExactMetrics encountered an error loading your report data"
2192
  msgstr ""
2193
 
2194
- #: languages/vue.php:211
2195
- msgid "There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating."
2196
  msgstr ""
2197
 
2198
- #: languages/vue.php:214
2199
- #: languages/vue.php:2176
2200
- msgid "Reconnect ExactMetrics"
2201
  msgstr ""
2202
 
2203
  #: languages/vue.php:218
2204
- msgid "Re-Authenticating"
2205
  msgstr ""
2206
 
2207
  #: languages/vue.php:221
2208
- msgid "Ok"
2209
  msgstr ""
2210
 
2211
  #: languages/vue.php:224
2212
- msgid "You must connect with ExactMetrics before you can view reports."
2213
- msgstr ""
2214
-
2215
- #: languages/vue.php:227
2216
- msgid "ExactMetrics makes it \"effortless\" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
2217
  msgstr ""
2218
 
2219
  #: languages/vue.php:230
2220
- msgid "Launch Setup Wizard"
2221
  msgstr ""
2222
 
2223
  #: languages/vue.php:233
2224
- msgid "Please ask your webmaster to connect ExactMetrics to Google Analytics."
 
 
 
 
2225
  msgstr ""
2226
 
2227
  #: languages/vue.php:239
2228
- msgid "Save Changes"
2229
  msgstr ""
2230
 
2231
- #. Translators: Adds a link to documentation.
2232
- #: languages/vue.php:243
2233
- msgid "In order for the ExactMetrics Google AMP addon to work properly, please ask your webmaster to install the WordPress AMP plugin by Automattic. %1$sLearn More%2$s"
2234
  msgstr ""
2235
 
2236
- #. Translators: Adds link to activate/install plugin and documentation.
2237
- #: languages/vue.php:247
2238
- msgid "In order for the ExactMetrics Google AMP addon to work properly, you need to install the WordPress AMP plugin by Automattic. %1$s%2$s Plugin%3$s | %4$sLearn More%5$s"
2239
  msgstr ""
2240
 
2241
- #: languages/vue.php:251
2242
- msgid "Activate"
2243
  msgstr ""
2244
 
2245
- #: languages/vue.php:255
2246
- msgid "Install"
 
2247
  msgstr ""
2248
 
2249
- #. Translators: Adds a link to documentation.
2250
- #: languages/vue.php:259
2251
- msgid "In order for the ExactMetrics Instant Articles addon to work properly, please ask your webmaster to install the Instant Articles for WP plugin by Automattic version 3.3.5 or newer. %1$sLearn More%2$s"
 
 
 
 
2252
  msgstr ""
2253
 
2254
- #. Translators: Adds link to activate/install plugin and documentation.
2255
  #: languages/vue.php:263
2256
- msgid "In order for the ExactMetrics Instant Articles addon to work properly, you need to install the Instant Articles for WP plugin by Automattic version 3.3.5 or newer. %1$s%2$s Plugin%3$s | %4$sLearn More%5$s"
2257
  msgstr ""
2258
 
2259
- #: languages/vue.php:266
2260
- #: languages/vue.php:951
2261
- msgid "ExactMetrics Addons"
2262
  msgstr ""
2263
 
2264
- #: languages/vue.php:269
2265
- msgid "Search Addons"
 
2266
  msgstr ""
2267
 
2268
- #. Translators: Number of days.
2269
- #: languages/vue.php:273
2270
- msgid "Last %s days"
 
 
 
 
 
 
 
 
2271
  msgstr ""
2272
 
2273
  #. Translators: Placeholder is replaced with WPForms.
2274
- #: languages/vue.php:277
2275
  msgid "Recommended Plugin: %s"
2276
  msgstr ""
2277
 
2278
- #: languages/vue.php:283
2279
- msgid "See Quick Links"
2280
  msgstr ""
2281
 
2282
- #: languages/vue.php:286
2283
- msgid "Suggest a Feature"
2284
  msgstr ""
2285
 
2286
- #: languages/vue.php:289
2287
- msgid "Join Our Community"
 
2288
  msgstr ""
2289
 
2290
- #: languages/vue.php:292
2291
- msgid "Support & Docs"
2292
  msgstr ""
2293
 
2294
- #: languages/vue.php:295
2295
- msgid "Upgrade to Pro &#187;"
2296
  msgstr ""
2297
 
2298
- #: languages/vue.php:298
2299
- msgid "Analytics"
 
2300
  msgstr ""
2301
 
2302
- #. Translators: Adds an arrow icon.
2303
- #: languages/vue.php:302
2304
- msgid "View All Reports %s"
 
 
 
2305
  msgstr ""
2306
 
2307
  #: languages/vue.php:316
2308
- msgid "Pro Plan"
2309
  msgstr ""
2310
 
 
2311
  #: languages/vue.php:320
2312
- msgid "per year"
2313
  msgstr ""
2314
 
2315
- #: languages/vue.php:332
2316
- msgid "Upgrade to PRO"
2317
  msgstr ""
2318
 
2319
- #: languages/vue.php:336
2320
- msgid "eCommerce Tracking"
2321
  msgstr ""
2322
 
2323
- #: languages/vue.php:341
2324
- msgid "Custom Dimensions"
2325
  msgstr ""
2326
 
2327
- #: languages/vue.php:345
2328
- msgid "Form Tracking"
2329
  msgstr ""
2330
 
2331
- #: languages/vue.php:349
2332
- msgid "AMP Support"
2333
  msgstr ""
2334
 
2335
- #: languages/vue.php:353
2336
- msgid "Author Tracking"
2337
  msgstr ""
2338
 
2339
- #: languages/vue.php:357
2340
- msgid "EU Compliance Addon"
2341
  msgstr ""
2342
 
2343
- #: languages/vue.php:361
2344
- msgid "Real Time Report"
2345
  msgstr ""
2346
 
2347
- #: languages/vue.php:366
2348
- msgid "Google Optimize"
2349
  msgstr ""
2350
 
2351
- #: languages/vue.php:370
2352
- msgid "Custom Date Ranges"
2353
  msgstr ""
2354
 
2355
- #: languages/vue.php:374
2356
- msgid "This is absolutely, positively, one of the TOP plugins to install on your WP site. There is no better way to quickly gauge traffic for spikes, surges, and consistency. I installed this on over a dozen WordPress installations and counting, thank you for an outstanding app!"
 
2357
  msgstr ""
2358
 
2359
- #: languages/vue.php:378
2360
- msgid "Daniel Monaghan - Experienced"
2361
  msgstr ""
2362
 
2363
- #: languages/vue.php:382
2364
- msgid "Very simple to configure and the results are very clearly displayed. So much easier for clients to view than in their own analytics account! Delighted with it."
2365
  msgstr ""
2366
 
2367
- #: languages/vue.php:386
2368
- msgid "Naomi Spirit - From This Day"
2369
  msgstr ""
2370
 
2371
  #: languages/vue.php:390
2372
- msgid "Love this plugin! It’s got powerful customization options, it’s easy to use, there’s good documentation, and if all that’s not enough, ExactMetrics is quick to provide support. Thanks for this wonderful plugin!"
2373
  msgstr ""
2374
 
2375
- #: languages/vue.php:394
2376
- msgid "Julie Dupuis - Faraway Land Travel"
2377
  msgstr ""
2378
 
2379
- #: languages/vue.php:406
2380
- msgid "Welcome to the all-new ExactMetrics"
2381
  msgstr ""
2382
 
2383
- #: languages/vue.php:409
2384
- msgid "Redesigned from the ground up, ExactMetrics is built to bring a world-class analytics and reporting experience to WordPress."
2385
  msgstr ""
2386
 
2387
- #: languages/vue.php:412
2388
- msgid "The New & Improved ExactMetrics includes:"
2389
  msgstr ""
2390
 
2391
- #: languages/vue.php:415
2392
- msgid "All-New Design"
2393
  msgstr ""
2394
 
2395
- #: languages/vue.php:418
2396
- msgid "Better Reporting"
2397
  msgstr ""
2398
 
2399
- #: languages/vue.php:421
2400
- msgid "Better Tracking"
2401
  msgstr ""
2402
 
2403
- #: languages/vue.php:424
2404
- msgid "Better Support"
2405
  msgstr ""
2406
 
2407
- #: languages/vue.php:427
2408
- msgid "Continue"
2409
  msgstr ""
2410
 
2411
- #: languages/vue.php:430
2412
- msgid "Your settings have been automatically transferred."
2413
  msgstr ""
2414
 
2415
- #: languages/vue.php:434
2416
- msgid "Ecommerce"
2417
  msgstr ""
2418
 
2419
- #. Translators: Add line break.
2420
- #: languages/vue.php:438
2421
- msgid "See All Your Important Store%s Metrics in One Place"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2422
  msgstr ""
2423
 
2424
  #: languages/vue.php:441
2425
- msgid "Get an Answer to All Your Top Ecommerce Questions From a Single Report"
2426
  msgstr ""
2427
 
2428
  #: languages/vue.php:444
2429
- msgid "Here's what you get:"
2430
  msgstr ""
2431
 
2432
  #: languages/vue.php:447
2433
- msgid "See Your Conversion Rate to Improve Funnel"
2434
  msgstr ""
2435
 
2436
  #: languages/vue.php:450
2437
- msgid "See The Number of Transactions and Make Data-Driven Decisions"
2438
  msgstr ""
2439
 
2440
  #: languages/vue.php:453
2441
- msgid "See The Total Revenue to Track Growth"
2442
  msgstr ""
2443
 
2444
  #: languages/vue.php:456
2445
- msgid "See Average Order Value to Find Offer Opportunities"
2446
  msgstr ""
2447
 
2448
  #: languages/vue.php:459
2449
- msgid "See Your Top Products to See Individual Performance"
2450
  msgstr ""
2451
 
2452
  #: languages/vue.php:462
2453
- msgid "See your Top Conversion Sources and Focus on what's Working"
2454
  msgstr ""
2455
 
2456
  #: languages/vue.php:465
2457
- msgid "See The Time it Takes for Customers to Purchase"
2458
  msgstr ""
2459
 
2460
  #: languages/vue.php:468
2461
- msgid "See How Many Sessions are Needed for a Purchase"
2462
- msgstr ""
2463
-
2464
- #. Translators: Example path (/go/).
2465
- #: languages/vue.php:473
2466
- msgid "Path (example: %s)"
2467
  msgstr ""
2468
 
2469
- #: languages/vue.php:477
2470
- msgid "Path has to start with a / and have no spaces"
2471
  msgstr ""
2472
 
2473
- #. Translators: Example label (aff).
2474
- #: languages/vue.php:482
2475
- msgid "Label (example: %s)"
2476
  msgstr ""
2477
 
2478
- #: languages/vue.php:486
2479
- msgid "Label can't contain any spaces"
2480
  msgstr ""
2481
 
2482
- #: languages/vue.php:489
2483
- msgid "Affiliate Links"
2484
  msgstr ""
2485
 
2486
- #. Translators: Add links to documentation.
2487
  #: languages/vue.php:493
2488
- msgid "This allows you to track custom affiliate links. A path of /go/ would match urls that start with that. The label is appended onto the end of the string \"outbound-link-\", to provide unique labels for these links in Google Analytics. Complete documentation on affiliate links is available %1$shere%2$s."
2489
  msgstr ""
2490
 
2491
  #: languages/vue.php:496
2492
- msgid "Our affiliate link tracking works by setting path for internal links to track as outbound links."
2493
  msgstr ""
2494
 
2495
  #: languages/vue.php:499
2496
- msgid "Connect ExactMetrics to Your Website"
2497
  msgstr ""
2498
 
2499
  #: languages/vue.php:502
2500
- msgid "ExactMetrics connects Google Analytics to WordPress and shows you stats that matter."
2501
- msgstr ""
2502
-
2503
- #: languages/vue.php:506
2504
- msgid "Connect Google Analytics + WordPress"
2505
  msgstr ""
2506
 
2507
- #: languages/vue.php:510
2508
- msgid "You will be taken to the ExactMetrics website where you'll need to connect your Analytics account."
 
2509
  msgstr ""
2510
 
 
2511
  #: languages/vue.php:513
2512
- msgid "Whoops, something went wrong and we weren't able to connect to ExactMetrics. Please enter your Google UA code manually."
2513
- msgstr ""
2514
-
2515
- #: languages/vue.php:516
2516
- msgid "Manually enter your UA code"
2517
  msgstr ""
2518
 
2519
- #: languages/vue.php:519
2520
- msgid "Warning: If you use a manual UA code, you won't be able to use any of the reporting and some of the tracking features. Your UA code should look like UA-XXXXXX-XX where the X's are numbers."
 
2521
  msgstr ""
2522
 
2523
- #: languages/vue.php:523
2524
- msgid "Save and Continue"
 
2525
  msgstr ""
2526
 
2527
- #: languages/vue.php:526
2528
- msgid "UA code can't be empty"
 
2529
  msgstr ""
2530
 
2531
- #: languages/vue.php:529
2532
- msgid "Saving UA code..."
2533
  msgstr ""
2534
 
2535
- #: languages/vue.php:532
2536
- msgid "Cross Domain Tracking"
2537
  msgstr ""
2538
 
2539
- #. Translators: Add links to documentation.
2540
- #: languages/vue.php:536
2541
- msgid "Cross domain tracking makes it possible for Analytics to see sessions on two related sites as a single session. More info on specific setup steps can be found in our %1$sknowledge base%2$s."
2542
  msgstr ""
2543
 
2544
- #: languages/vue.php:539
2545
- msgid "Demographics"
2546
  msgstr ""
2547
 
2548
- #: languages/vue.php:542
2549
- msgid "Enable Demographics and Interests Reports for Remarketing and Advertising"
2550
  msgstr ""
2551
 
2552
- #: languages/vue.php:545
2553
- msgid "Anonymize IP Addresses"
2554
  msgstr ""
2555
 
2556
- #: languages/vue.php:548
2557
- msgid "Link Attribution"
2558
  msgstr ""
2559
 
2560
- #: languages/vue.php:551
2561
- msgid "Enable Enhanced Link Attribution"
2562
  msgstr ""
2563
 
2564
- #: languages/vue.php:554
2565
- msgid "Enable Anchor Tracking"
2566
  msgstr ""
2567
 
2568
- #: languages/vue.php:557
2569
- msgid "Enable allowAnchor"
2570
  msgstr ""
2571
 
2572
- #: languages/vue.php:560
2573
- msgid "Enable allowLinker"
2574
  msgstr ""
2575
 
2576
- #: languages/vue.php:563
2577
- msgid "Enable Tag Links in RSS"
2578
  msgstr ""
2579
 
2580
- #: languages/vue.php:566
2581
- msgid "File Downloads"
2582
  msgstr ""
2583
 
2584
- #: languages/vue.php:569
2585
- msgid "Extensions of Files to Track as Downloads"
2586
  msgstr ""
2587
 
2588
- #: languages/vue.php:572
2589
- msgid "ExactMetrics will send an event to Google Analytics if a link to a file has one of the above extensions."
2590
  msgstr ""
2591
 
2592
- #. Translators: Add links to documentation.
2593
- #: languages/vue.php:576
2594
- msgid "Enable this setting to add the Demographics and Remarketing features to your Google Analytics tracking code. Make sure to enable Demographics and Remarketing in your Google Analytics account. We have a guide for how to do that in our %1$sknowledge base%2$s. For more information about Remarketing, we refer you to %3$sGoogle's documentation%4$s. Note that usage of this function is affected by privacy and cookie laws around the world. Be sure to follow the laws that affect your target audience."
2595
  msgstr ""
2596
 
2597
- #. Translators: Add links to documentation.
2598
- #: languages/vue.php:580
2599
- msgid "This adds %1$sanonymizeIp%2$s, 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."
2600
  msgstr ""
2601
 
2602
- #. Translators: Add links to documentation.
2603
- #: languages/vue.php:584
2604
- msgid "Add %1$sEnhanced Link Attribution%2$s to your tracking code."
2605
  msgstr ""
2606
 
2607
- #: languages/vue.php:587
2608
- msgid "Many WordPress \"1-page\" style themes rely on anchor tags for navigation to show virtual pages. The problem is that to Google Analytics, these are all just a single page, and it makes it hard to get meaningful statistics about pages viewed. This feature allows proper tracking in those themes."
2609
  msgstr ""
2610
 
2611
- #. Translators: Add links to documentation.
2612
- #: languages/vue.php:591
2613
- msgid "This adds %1$sallowAnchor%2$s to the create command of the pageview hit tracking code, and makes RSS link tagging use a # as well."
2614
  msgstr ""
2615
 
2616
- #. Translators: Add links to documentation.
2617
- #: languages/vue.php:595
2618
- msgid "Enabling %1$scross-domain tracking (additional setup required)%2$s allows you to track users across multiple properties you own (such as example-1.com and example-2.com as a single session. It also allows you fix an issue so that when a user has to go to an off-site hosted payment gateway to finish a purchase it doesn't count it as referral traffic from that gateway but maintains the visit as part of the same session.) It is required that the other site includes a Google Analytics tracker with the same UA Code."
2619
  msgstr ""
2620
 
2621
- #. Translators: Add links to documentation.
2622
- #: languages/vue.php:599
2623
- msgid "Do not use this feature if you use FeedBurner, as FeedBurner can do this automatically and better than this plugin can. Check this %1$shelp page%2$s for info on how to enable this feature in FeedBurner."
2624
  msgstr ""
2625
 
2626
- #: languages/vue.php:602
2627
- msgid "Add domain"
2628
  msgstr ""
2629
 
2630
- #. Translators: Domain name example.
2631
  #: languages/vue.php:606
2632
- msgid "Domain (example: %s)"
2633
  msgstr ""
2634
 
2635
- #. Translators: Current domain name that should not be used.
2636
- #: languages/vue.php:610
2637
- msgid "Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s )."
2638
  msgstr ""
2639
 
2640
- #: languages/vue.php:613
2641
- msgid "Time to Purchase"
2642
  msgstr ""
2643
 
2644
- #: languages/vue.php:616
2645
- msgid "This list shows how many days from first visit it took users to purchase products from your site."
2646
  msgstr ""
2647
 
2648
- #: languages/vue.php:619
2649
- msgid "Sessions to Purchase"
2650
  msgstr ""
2651
 
2652
- #: languages/vue.php:622
2653
- msgid "This list shows the number of sessions it took users before they purchased a product from your website."
2654
  msgstr ""
2655
 
2656
- #: languages/vue.php:626
2657
- msgid "Top Posts/Pages"
2658
  msgstr ""
2659
 
2660
- #: languages/vue.php:630
2661
- msgid "This list shows the most viewed posts and pages on your website."
2662
  msgstr ""
2663
 
2664
- #: languages/vue.php:634
2665
- msgid "New vs. Returning Visitors"
2666
  msgstr ""
2667
 
2668
- #: languages/vue.php:638
2669
- msgid "This graph shows what percent of your user sessions come from new versus repeat visitors."
2670
  msgstr ""
2671
 
2672
- #: languages/vue.php:642
2673
- msgid "Device Breakdown"
2674
  msgstr ""
2675
 
2676
- #: languages/vue.php:646
2677
- msgid "This graph shows what percent of your visitor sessions are done using a traditional computer or laptop, tablet or mobile device to view your site."
2678
  msgstr ""
2679
 
2680
- #: languages/vue.php:649
2681
- msgid "Top Landing Pages"
2682
  msgstr ""
2683
 
2684
- #: languages/vue.php:652
2685
- msgid "This list shows the top pages users first land on when visiting your website."
2686
  msgstr ""
2687
 
2688
- #: languages/vue.php:655
2689
- msgid "Top Exit Pages"
2690
  msgstr ""
2691
 
2692
- #: languages/vue.php:658
2693
- msgid "This list shows the top pages users exit your website from."
 
2694
  msgstr ""
2695
 
2696
- #: languages/vue.php:661
2697
- msgid "Top Outbound Links"
2698
  msgstr ""
2699
 
2700
- #: languages/vue.php:664
2701
- msgid "This list shows the top links clicked on your website that go to another website."
 
2702
  msgstr ""
2703
 
2704
- #: languages/vue.php:667
2705
- msgid "Top Affiliate Links"
2706
  msgstr ""
2707
 
2708
- #: languages/vue.php:670
2709
- msgid "This list shows the top affiliate links your visitors clicked on."
2710
  msgstr ""
2711
 
2712
- #: languages/vue.php:673
2713
- msgid "Top Download Links"
2714
  msgstr ""
2715
 
2716
- #: languages/vue.php:676
2717
- msgid "This list shows the download links your visitors clicked the most."
2718
  msgstr ""
2719
 
2720
- #: languages/vue.php:679
2721
- msgid "Top Products"
2722
  msgstr ""
2723
 
2724
- #: languages/vue.php:682
2725
- msgid "This list shows the top selling products on your website."
2726
  msgstr ""
2727
 
2728
- #: languages/vue.php:685
2729
- msgid "Top Conversion Sources"
2730
  msgstr ""
2731
 
2732
- #: languages/vue.php:688
2733
- msgid "This list shows the top referral websites in terms of product revenue."
2734
  msgstr ""
2735
 
2736
- #: languages/vue.php:691
2737
- msgid "Total Add/Remove"
2738
  msgstr ""
2739
 
2740
- #: languages/vue.php:694
2741
- msgid "Forms Report"
2742
  msgstr ""
2743
 
2744
- #: languages/vue.php:697
2745
- msgid "See Reports for Any Contact Form Plugin or Sign-up Form"
2746
  msgstr ""
2747
 
2748
- #: languages/vue.php:700
2749
- msgid "See Your Top Converting Forms and Optimize"
2750
  msgstr ""
2751
 
2752
- #: languages/vue.php:703
2753
- msgid "See Your Forms Impressions Count to Find the Best Placement"
2754
  msgstr ""
2755
 
 
2756
  #: languages/vue.php:706
2757
- msgid "Real-Time Report"
2758
- msgstr ""
2759
-
2760
- #: languages/vue.php:709
2761
- msgid "Track the results of your marketing efforts and product launches as-it-happens right from your WordPress site. The Real-Time report allows you to view your traffic sources and visitor's activity when you need it."
2762
  msgstr ""
2763
 
2764
- #: languages/vue.php:712
2765
- msgid "See Your Active Visitors and Track Their Behaviour to Optimize"
 
2766
  msgstr ""
2767
 
2768
- #: languages/vue.php:715
2769
- msgid "See Your Top Pages Immediately After Making Changes"
2770
  msgstr ""
2771
 
2772
- #: languages/vue.php:718
2773
- msgid "See Your Top Referral Sources and Adapt Faster"
2774
  msgstr ""
2775
 
2776
- #: languages/vue.php:721
2777
- msgid "See Your Traffic Demographics"
2778
  msgstr ""
2779
 
2780
- #: languages/vue.php:724
2781
- msgid "Get Fresh Reports Data Every 60 Seconds"
2782
  msgstr ""
2783
 
2784
- #: languages/vue.php:727
2785
- msgid "See Where Your Visitors are Connecting From (country & city)"
2786
  msgstr ""
2787
 
2788
- #: languages/vue.php:730
2789
- msgid "Search Console Report"
2790
  msgstr ""
2791
 
2792
- #: languages/vue.php:733
2793
- msgid "See exactly how people find tour website, which keywords they searched for, how many times the results were viewed, and more."
2794
  msgstr ""
2795
 
2796
- #: languages/vue.php:736
2797
- msgid "See Your Top Google Search Terms and Optimize Content"
2798
  msgstr ""
2799
 
2800
- #: languages/vue.php:739
2801
- msgid "See The Number of Clicks and Track Interests"
2802
  msgstr ""
2803
 
2804
- #: languages/vue.php:742
2805
- msgid "See The Click-Through-Ratio and Improve SEO"
2806
  msgstr ""
2807
 
2808
- #: languages/vue.php:745
2809
- msgid "See The Average Results Position and Focus on what works."
 
2810
  msgstr ""
2811
 
2812
- #: languages/vue.php:748
2813
- msgid "Recommended Settings"
2814
  msgstr ""
2815
 
2816
- #: languages/vue.php:751
2817
- msgid "ExactMetrics recommends the following settings based on your configuration."
2818
  msgstr ""
2819
 
2820
- #: languages/vue.php:754
2821
- msgid "Events Tracking"
2822
  msgstr ""
2823
 
 
2824
  #: languages/vue.php:757
2825
- msgid "Must have for all click tracking on site."
2826
  msgstr ""
2827
 
2828
  #: languages/vue.php:760
2829
- msgid "ExactMetrics uses an advanced system to automatically detect all outbound links, download links, affiliate links, telephone links, mail links, and more automatically. We do all the work for you so you don't have to write any code."
2830
  msgstr ""
2831
 
2832
  #: languages/vue.php:763
2833
- msgid "Enhanced Link Attribution"
2834
  msgstr ""
2835
 
2836
  #: languages/vue.php:766
2837
- msgid "Improves the accuracy of your In-Page Analytics."
2838
  msgstr ""
2839
 
2840
  #: languages/vue.php:769
2841
- msgid "ExactMetrics will automatically help Google determine which links are unique and where they are on your site so that your In-Page Analytics reporting will be more accurate."
2842
  msgstr ""
2843
 
2844
  #: languages/vue.php:772
2845
- msgid "Install Updates Automatically"
2846
  msgstr ""
2847
 
2848
  #: languages/vue.php:775
2849
- msgid "Get the latest features, bug fixes, and security updates as they are released."
2850
  msgstr ""
2851
 
2852
  #: languages/vue.php:778
2853
- msgid "To ensure you get the latest bugfixes and security updates and avoid needing to spend time logging into your WordPress site to update ExactMetrics, we offer the ability to automatically have ExactMetrics update itself."
2854
  msgstr ""
2855
 
2856
  #: languages/vue.php:781
2857
- msgid "File Download Tracking"
2858
  msgstr ""
2859
 
2860
  #: languages/vue.php:784
2861
- msgid "Helps you see file downloads data."
2862
  msgstr ""
2863
 
2864
  #: languages/vue.php:787
2865
- msgid "ExactMetrics will automatically track downloads of common file types from links you have inserted onto your website. For example: want to know how many of your site's visitors have downloaded a PDF or other file you offer your visitors to download on your site? ExactMetrics makes this both easy, and code-free! You can customize the file types to track at any time from our settings panel."
2866
  msgstr ""
2867
 
2868
  #: languages/vue.php:790
2869
- msgid "Helps you increase affiliate revenue."
2870
  msgstr ""
2871
 
2872
- #: languages/vue.php:793
2873
- msgid "ExactMetrics will automatically help you track affiliate links that use internal looking urls like example.com/go/ or example.com/refer/. You can add custom affiliate patterns on our settings panel when you finish the onboarding wizard."
 
2874
  msgstr ""
2875
 
2876
- #: languages/vue.php:796
2877
- msgid "Affiliate Link Tracking"
2878
  msgstr ""
2879
 
2880
- #: languages/vue.php:799
2881
- msgid "Who Can See Reports"
2882
  msgstr ""
2883
 
2884
- #: languages/vue.php:802
2885
- msgid "These user roles will be able to access ExactMetrics's reports in the WordPress admin area."
 
2886
  msgstr ""
2887
 
2888
- #: languages/vue.php:806
2889
- msgid "Users that have at least one of these roles will be able to view the reports, along with any user with the manage_options capability."
2890
  msgstr ""
2891
 
2892
- #: languages/vue.php:809
2893
- msgid "Save and continue"
2894
  msgstr ""
2895
 
2896
- #: languages/vue.php:812
2897
- msgid "Events Tracking is enabled the moment you set up ExactMetrics"
2898
  msgstr ""
2899
 
2900
- #: languages/vue.php:815
2901
- msgid "Enhanced Link Attribution is enabled the moment you set up ExactMetrics"
2902
  msgstr ""
2903
 
2904
  #: languages/vue.php:819
2905
- msgid "+ Add Role"
2906
  msgstr ""
2907
 
2908
  #: languages/vue.php:822
2909
- msgid "Unlock the Publisher Report and Focus on the Content That Matters"
2910
  msgstr ""
2911
 
2912
  #: languages/vue.php:825
2913
- msgid "See Your Top Landing Pages to Improve Engagement"
2914
  msgstr ""
2915
 
2916
  #: languages/vue.php:828
2917
- msgid "See Your Top Exit Pages to Reduce Abandonment"
2918
  msgstr ""
2919
 
2920
  #: languages/vue.php:831
2921
- msgid "See Your Top Outbound Links to Find New Revenue Opportunities"
2922
  msgstr ""
2923
 
2924
  #: languages/vue.php:834
2925
- msgid "See Your Top Affiliate Links and Focus on what’s working"
2926
  msgstr ""
2927
 
2928
  #: languages/vue.php:837
2929
- msgid "See Your Top Downloads and Improve Conversions"
2930
  msgstr ""
2931
 
2932
  #: languages/vue.php:840
2933
- msgid "See Audience Demographic Report (Age / Gender / Interests)"
2934
- msgstr ""
2935
-
2936
- #: languages/vue.php:843
2937
- msgid "Ecommerce Report"
2938
  msgstr ""
2939
 
2940
- #: languages/vue.php:846
2941
- msgid "Increase your sales & revenue with insights. ExactMetrics answers all your top eCommerce questions using metrics like total revenue, conversion rate, average order value top products, top referral sources and more."
 
2942
  msgstr ""
2943
 
2944
- #: languages/vue.php:849
2945
- msgid "See Your Top Conversion Sources and Focus on what's Working"
 
2946
  msgstr ""
2947
 
 
2948
  #: languages/vue.php:852
2949
- msgid "New"
2950
  msgstr ""
2951
 
2952
  #: languages/vue.php:855
2953
- msgid "Returning"
2954
- msgstr ""
2955
-
2956
- #: languages/vue.php:858
2957
- msgid "Desktop"
2958
  msgstr ""
2959
 
2960
- #: languages/vue.php:861
2961
- msgid "Tablet"
 
2962
  msgstr ""
2963
 
2964
- #: languages/vue.php:864
2965
- msgid "Mobile"
 
2966
  msgstr ""
2967
 
2968
- #: languages/vue.php:868
2969
- msgid "Sessions"
 
2970
  msgstr ""
2971
 
2972
- #: languages/vue.php:872
2973
- msgid "Pageviews"
2974
  msgstr ""
2975
 
2976
- #: languages/vue.php:875
2977
- msgid "Avg. Session Duration"
 
2978
  msgstr ""
2979
 
2980
- #: languages/vue.php:879
2981
- msgid "Bounce Rate"
 
2982
  msgstr ""
2983
 
2984
- #: languages/vue.php:882
2985
- msgid "Top 10 Countries"
2986
  msgstr ""
2987
 
2988
- #: languages/vue.php:885
2989
- msgid "View Countries Report"
2990
  msgstr ""
2991
 
2992
- #: languages/vue.php:888
2993
- msgid "Top 10 Referrals"
2994
  msgstr ""
2995
 
2996
- #: languages/vue.php:891
2997
- msgid "View All Referral Sources"
 
2998
  msgstr ""
2999
 
 
3000
  #: languages/vue.php:894
3001
- msgid "View Full Posts/Pages Report"
3002
  msgstr ""
3003
 
3004
  #: languages/vue.php:897
3005
- msgid "A session is the browsing session of a single user to your site."
3006
  msgstr ""
3007
 
3008
  #: languages/vue.php:900
3009
- msgid "A pageview is defined as a view of a page on your site that is being tracked by the Analytics tracking code. Each refresh of a page is also a new pageview."
3010
- msgstr ""
3011
-
3012
- #: languages/vue.php:903
3013
- msgid "Total duration of all sessions (in seconds) / number of sessions."
3014
  msgstr ""
3015
 
3016
- #: languages/vue.php:906
3017
- msgid "Percentage of single-page visits (or web sessions). It is the number of visits in which a person leaves your website from the landing page without browsing any further."
 
3018
  msgstr ""
3019
 
3020
- #: languages/vue.php:909
3021
- msgid "This list shows the top countries your website visitors are from."
 
3022
  msgstr ""
3023
 
 
3024
  #: languages/vue.php:912
3025
- msgid "This list shows the top websites that send your website traffic, known as referral traffic."
3026
- msgstr ""
3027
-
3028
- #: languages/vue.php:915
3029
- msgid "Custom Dimensions Report"
3030
  msgstr ""
3031
 
3032
- #: languages/vue.php:918
3033
- msgid "Unlock the Dimensions Report and decide what data is important using your own custom tracking parameters"
 
3034
  msgstr ""
3035
 
3036
- #: languages/vue.php:921
3037
- msgid "The Dimensions report allows you to easily see what's working right inside your WordPress dashboard."
 
3038
  msgstr ""
3039
 
 
3040
  #: languages/vue.php:924
3041
- msgid "Author tracking to see which author’s posts generate the most traffic"
3042
  msgstr ""
3043
 
3044
  #: languages/vue.php:927
3045
- msgid "Post Type tracking to see which WordPress post types perform better"
3046
  msgstr ""
3047
 
3048
  #: languages/vue.php:930
3049
- msgid "Category tracking to see which sections of your sites are the most popular"
3050
  msgstr ""
3051
 
3052
  #: languages/vue.php:933
3053
- msgid "SEO score tracking to see which blog SEO scores are the most popular"
3054
  msgstr ""
3055
 
3056
  #: languages/vue.php:936
3057
- msgid "Focus Keyword tracking to see which of your content is doing well in search engines."
3058
  msgstr ""
3059
 
3060
  #: languages/vue.php:939
3061
- msgid "Tag tracking to determine which topics are the most engaging to for your website visitors."
3062
  msgstr ""
3063
 
3064
  #: languages/vue.php:942
3065
- msgid "There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data."
3066
  msgstr ""
3067
 
3068
  #: languages/vue.php:945
3069
- msgid "No addons found."
3070
  msgstr ""
3071
 
3072
  #: languages/vue.php:948
3073
- msgid "Refresh Addons"
3074
  msgstr ""
3075
 
3076
- #. Translators: Adds a line break.
3077
- #: languages/vue.php:955
3078
- msgid "Upgrade to Pro to unlock addons and other great features."
3079
  msgstr ""
3080
 
3081
- #: languages/vue.php:958
3082
- msgid "As a valued ExactMetrics Lite user you receive 50% off, automaticaly applied at checkout!"
 
3083
  msgstr ""
3084
 
3085
  #: languages/vue.php:961
3086
- msgid "Refreshing Addons"
3087
  msgstr ""
3088
 
3089
  #: languages/vue.php:964
3090
- msgid "One-click Complete eCommerce tracking"
3091
  msgstr ""
3092
 
3093
  #: languages/vue.php:967
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3094
  msgid "Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required"
3095
  msgstr ""
3096
 
3097
- #: languages/vue.php:970
3098
  msgid "Forms Tracking"
3099
  msgstr ""
3100
 
3101
- #: languages/vue.php:973
3102
  msgid "One-click Form Events Tracking"
3103
  msgstr ""
3104
 
3105
- #: languages/vue.php:976
3106
  msgid "WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin"
3107
  msgstr ""
3108
 
3109
- #: languages/vue.php:979
3110
  msgid "WordPress Admin Area Reports"
3111
  msgstr ""
3112
 
3113
- #: languages/vue.php:982
3114
  msgid "Standard Reports"
3115
  msgstr ""
3116
 
3117
- #: languages/vue.php:985
3118
  msgid "Overview Reports for the last 30 days."
3119
  msgstr ""
3120
 
3121
- #: languages/vue.php:988
3122
  msgid "Advanced Reports"
3123
  msgstr ""
3124
 
3125
- #: languages/vue.php:991
3126
  msgid "Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection"
3127
  msgstr ""
3128
 
3129
- #: languages/vue.php:994
3130
  msgid "Dashboard Widget"
3131
  msgstr ""
3132
 
3133
- #: languages/vue.php:997
3134
  msgid "Basic Widget"
3135
  msgstr ""
3136
 
3137
- #: languages/vue.php:1000
3138
  msgid "Overview Report Synopsis"
3139
  msgstr ""
3140
 
3141
- #: languages/vue.php:1003
3142
  msgid "Advanced Dashboard Widget"
3143
  msgstr ""
3144
 
3145
- #: languages/vue.php:1006
3146
  msgid "Includes the complete Overview report, Publisher reports and 6 different eCommerce reports"
3147
  msgstr ""
3148
 
3149
- #: languages/vue.php:1009
3150
  msgid "Publisher Reports"
3151
  msgstr ""
3152
 
3153
- #: languages/vue.php:1012
3154
  msgid "Advanced Publisher Reports & Tracking"
3155
  msgstr ""
3156
 
3157
- #: languages/vue.php:1015
3158
  msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
3159
  msgstr ""
3160
 
3161
- #: languages/vue.php:1018
3162
  msgid "Not Available"
3163
  msgstr ""
3164
 
3165
- #: languages/vue.php:1021
3166
  msgid "Complete Custom Dimensions Tracking"
3167
  msgstr ""
3168
 
3169
- #: languages/vue.php:1024
3170
  msgid "Track and measure by the Author, Post Type, Category, Tag, SEO Score, Focus Keyword, Logged-in User, User ID and Published Time of each post and page"
3171
  msgstr ""
3172
 
3173
- #: languages/vue.php:1030
3174
  msgid "Limited Support"
3175
  msgstr ""
3176
 
3177
- #: languages/vue.php:1033
3178
  msgid "Priority Support"
3179
  msgstr ""
3180
 
3181
- #: languages/vue.php:1036
3182
  msgid "Get the most out of ExactMetrics by upgrading to Pro and unlocking all of the powerful features."
3183
  msgstr ""
3184
 
3185
- #: languages/vue.php:1039
3186
  msgid "Feature"
3187
  msgstr ""
3188
 
3189
- #: languages/vue.php:1042
3190
  msgid "Lite"
3191
  msgstr ""
3192
 
3193
- #: languages/vue.php:1045
3194
  msgid "Pro"
3195
  msgstr ""
3196
 
3197
- #: languages/vue.php:1048
3198
  msgid "Get ExactMetrics Pro Today and Unlock all the Powerful Features"
3199
  msgstr ""
3200
 
3201
- #: languages/vue.php:1051
3202
  msgid "Bonus: ExactMetrics Lite users get 50% off regular price, automatically applied at checkout."
3203
  msgstr ""
3204
 
3205
- #: languages/vue.php:1054
3206
  msgid "Upgrade to Pro"
3207
  msgstr ""
3208
 
3209
- #: languages/vue.php:1057
3210
  msgid "Universal Tracking"
3211
  msgstr ""
3212
 
3213
- #: languages/vue.php:1060
3214
  msgid "Included"
3215
  msgstr ""
3216
 
3217
- #: languages/vue.php:1063
3218
  msgid "Custom Google Analytics Link Tracking"
3219
  msgstr ""
3220
 
3221
- #: languages/vue.php:1066
3222
  msgid "Standard Tracking"
3223
  msgstr ""
3224
 
3225
- #: languages/vue.php:1069
3226
  msgid "Advanced Tracking"
3227
  msgstr ""
3228
 
3229
- #: languages/vue.php:1072
3230
  msgid "Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking"
3231
  msgstr ""
3232
 
3233
- #: languages/vue.php:1075
3234
  msgid "Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers"
3235
  msgstr ""
3236
 
3237
- #: languages/vue.php:1078
3238
  msgid "No-Code-Needed Tracking Features"
3239
  msgstr ""
3240
 
3241
- #: languages/vue.php:1081
3242
  msgid "Basic Tracking Options"
3243
  msgstr ""
3244
 
3245
- #: languages/vue.php:1084
3246
  msgid "Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking"
3247
  msgstr ""
3248
 
3249
- #: languages/vue.php:1087
3250
  msgid "Advanced Tracking Options"
3251
  msgstr ""
3252
 
3253
- #: languages/vue.php:1090
3254
  msgid "Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors"
3255
  msgstr ""
3256
 
3257
- #. Translators: Placeholders make the text green.
3258
- #: languages/vue.php:1094
3259
- msgid "Bonus: ExactMetrics Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout."
3260
- msgstr ""
3261
-
3262
- #: languages/vue.php:1097
3263
- msgid "How to Connect to Google Analytics"
3264
  msgstr ""
3265
 
3266
- #: languages/vue.php:1100
3267
- msgid "After you install ExactMetrics, you’ll need to connect your WordPress site with your Google Analytics account. ExactMetrics makes the process easy, with no coding required."
 
3268
  msgstr ""
3269
 
3270
- #: languages/vue.php:1103
3271
- msgid "Guide and Checklist for Advanced Insights"
3272
  msgstr ""
3273
 
3274
- #: languages/vue.php:1106
3275
- msgid "Our goal is to make it as easy as possible for you to measure and track your stats so you can grow your business. This easy-to-follow guide and checklist will get you set up with ExactMetrics’ advanced tracking."
 
3276
  msgstr ""
3277
 
3278
- #: languages/vue.php:1109
3279
- msgid "GDPR Guide"
3280
  msgstr ""
3281
 
3282
- #: languages/vue.php:1112
3283
- msgid "Compliance with European data laws including GDPR can be confusing and time-consuming. In order to help ExactMetrics users comply with these laws, we’ve created an addon that automates a lot of the necessary configuration changes for you. "
3284
  msgstr ""
3285
 
3286
- #: languages/vue.php:1115
3287
- msgid "How to Install and Activate ExactMetrics Addons"
3288
  msgstr ""
3289
 
3290
- #: languages/vue.php:1118
3291
- msgid "The process for installing and activating addons is quick and easy after you install the ExactMetrics plugin. In this guide we’ll walk you through the process, step by step."
3292
  msgstr ""
3293
 
3294
- #: languages/vue.php:1121
3295
- msgid "Enabling eCommerce Tracking and Reports"
3296
  msgstr ""
3297
 
3298
- #: languages/vue.php:1124
3299
- msgid "Want to track your eCommerce sales data for your WooCommerce, MemberPress, or Easy Digital Downloads store with ExactMetrics? In this guide, we’ll show you how to enable eCommerce tracking in Google Analytics in just a few clicks."
3300
  msgstr ""
3301
 
3302
- #: languages/vue.php:1127
3303
- msgid "Read Documentation"
3304
  msgstr ""
3305
 
3306
- #: languages/vue.php:1131
3307
- msgid "Welcome to"
3308
  msgstr ""
3309
 
3310
- #. Translators: Adds a line break.
3311
- #: languages/vue.php:1136
3312
- msgid "Thank you for choosing ExactMetrics -%s The Most Powerful WordPress Analytics Plugin"
3313
  msgstr ""
3314
 
3315
- #. Translators: Makes text bold.
3316
- #: languages/vue.php:1141
3317
- msgid "%1$sExactMetrics%2$s makes it “effortless” to setup Google Analytics in WordPress, the RIGHT Way. You can watch the video tutorial or use our 3 minute setup wizard."
3318
  msgstr ""
3319
 
3320
- #: languages/vue.php:1145
3321
- msgid "ExactMetrics Features & Addons"
3322
  msgstr ""
3323
 
3324
- #: languages/vue.php:1149
3325
- msgid "Here are the features that make ExactMetrics the most powerful and user-friendly WordPress analytics plugin in the market."
3326
  msgstr ""
3327
 
3328
- #. Translators: Makes text bold.
3329
- #: languages/vue.php:1154
3330
- msgid "%1$sUniversal Tracking%2$s – Setup universal website tracking across devices and campaigns with just a few clicks (without any code)."
3331
  msgstr ""
3332
 
3333
- #. Translators: Makes text bold.
3334
- #: languages/vue.php:1159
3335
- msgid "%1$sGoogle Analytics Dashboard%2$s - See your website analytics report right inside your WordPress dashboard with actionable insights."
3336
  msgstr ""
3337
 
3338
- #. Translators: Makes text bold.
3339
- #: languages/vue.php:1164
3340
- msgid "%1$sReal-time Stats%2$s - Get real-time stats inside WordPress to see who is online, what are they doing and more."
3341
  msgstr ""
3342
 
3343
- #. Translators: Makes the text bold.
3344
- #: languages/vue.php:1168
3345
- msgid "%1$sEnhanced eCommerce Tracking%2$s - 1-click Google Analyticks Enhanced Ecommerce trackin for WooCommerce, Easy Digital Download & MemberPress."
3346
  msgstr ""
3347
 
3348
- #. Translators: Makes text bold.
3349
- #: languages/vue.php:1173
3350
- msgid "%1$sPage Level Analytics%2$s - Get detailed stats for each post and page, so you can see the most popular posts, pages, and sections of your site."
3351
  msgstr ""
3352
 
3353
- #. Translators: Makes text bold.
3354
- #: languages/vue.php:1178
3355
- msgid "%1$sAffiliate Link & Ads Tracking%2$s - Automatically track clicks on your affiliate links, banner ads, and other outbound links with our link tracking."
3356
  msgstr ""
3357
 
3358
- #. Translators: Makes text bold.
3359
  #: languages/vue.php:1183
3360
- msgid "%1$sEU Compilance (GDPR Friendly)%2$s - Make Google Analytics compliant with GDPR and other privacy regulations automatically."
3361
  msgstr ""
3362
 
3363
- #. Translators: Makes the text bold.
3364
- #: languages/vue.php:1187
3365
- msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post type, users, and other events with 1-click."
3366
  msgstr ""
3367
 
3368
- #. Translators: Adds link to the features page.
3369
- #: languages/vue.php:1192
3370
- msgid "%1$sSee All Features%2$s"
3371
  msgstr ""
3372
 
3373
- #: languages/vue.php:1196
3374
- msgid "Guides and Documentation:"
 
 
 
 
 
 
3375
  msgstr ""
3376
 
3377
  #: languages/vue.php:1200
3378
- msgid "Getting Started with ExactMetrics"
3379
  msgstr ""
3380
 
3381
- #: languages/vue.php:1204
3382
- msgid "ExactMetrics is the easiest analytics solution on the market to get started with, as we walk you through exactly what you need to do, in plain english, using our 3 minute setup wizard."
3383
  msgstr ""
3384
 
3385
- #: languages/vue.php:1208
3386
- msgid "To begin with, we’ll get your site authorized with Google Analytics, so we can start tracking and generating reports for you right away."
 
 
 
 
3387
  msgstr ""
3388
 
3389
  #: languages/vue.php:1212
3390
- msgid "In no time at all, and after just a few clicks, you'll have setup the most powerful Google Analytics tracking available for WordPress. It's easy to double your traffic and sales when you know exactly how people find and use your website. Let's get started!."
3391
  msgstr ""
3392
 
3393
- #: languages/vue.php:1216
3394
- msgid "Launch the wizard!"
3395
  msgstr ""
3396
 
3397
- #: languages/vue.php:1219
3398
- msgid "License Key"
3399
  msgstr ""
3400
 
3401
- #. Translators: Add link to retrieve license key from account.
3402
- #: languages/vue.php:1223
3403
- msgid "Add your ExactMetrics license key from the email receipt or account area. %1$sRetrieve your license key%2$s."
 
 
 
3404
  msgstr ""
3405
 
3406
  #: languages/vue.php:1227
3407
- msgid "Google Authentication"
3408
  msgstr ""
3409
 
3410
  #: languages/vue.php:1230
3411
- msgid "Miscellaneous"
3412
  msgstr ""
3413
 
3414
- #: languages/vue.php:1233
3415
- msgid "Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes."
 
3416
  msgstr ""
3417
 
3418
- #: languages/vue.php:1236
3419
- msgid "Hide Announcements"
 
3420
  msgstr ""
3421
 
3422
- #: languages/vue.php:1239
3423
- msgid "Installing Addon"
3424
  msgstr ""
3425
 
3426
- #: languages/vue.php:1242
3427
- msgid "Activating Addon"
3428
  msgstr ""
3429
 
3430
- #: languages/vue.php:1245
3431
- msgid "Addon Activated"
3432
  msgstr ""
3433
 
3434
- #: languages/vue.php:1248
3435
- msgid "Loading report data"
3436
  msgstr ""
3437
 
3438
- #: languages/vue.php:1251
3439
- msgid "Please activate manually"
3440
  msgstr ""
3441
 
3442
- #. Translators: Adds the error status and status text.
3443
- #: languages/vue.php:1255
3444
- msgid "Error: %1$s, %2$s"
3445
  msgstr ""
3446
 
3447
- #: languages/vue.php:1258
3448
- msgid "Error Activating Addon"
3449
  msgstr ""
3450
 
3451
- #: languages/vue.php:1264
3452
- msgid "Dismiss"
3453
  msgstr ""
3454
 
3455
- #: languages/vue.php:1267
3456
- msgid "Redirecting"
3457
  msgstr ""
3458
 
3459
- #: languages/vue.php:1270
3460
- msgid "Please wait"
3461
  msgstr ""
3462
 
3463
- #: languages/vue.php:1273
3464
- msgid "activate"
3465
  msgstr ""
3466
 
3467
- #: languages/vue.php:1276
3468
- msgid "install"
3469
  msgstr ""
3470
 
3471
- #: languages/vue.php:1279
3472
- msgid "Visit addons page"
3473
  msgstr ""
3474
 
3475
- #: languages/vue.php:1282
3476
- msgid "Report Unavailable"
 
 
 
 
3477
  msgstr ""
3478
 
3479
- #. Translators: Install/Activate the addon.
3480
  #: languages/vue.php:1286
3481
- msgid "%s Addon"
3482
  msgstr ""
3483
 
3484
  #: languages/vue.php:1289
3485
- msgid "Go Back To Reports"
3486
  msgstr ""
3487
 
3488
  #: languages/vue.php:1292
3489
- msgid "Enable Enhanced eCommerce"
3490
  msgstr ""
3491
 
3492
  #: languages/vue.php:1295
3493
- msgid "Hello and Welcome to ExactMetrics, the Best Google Analytics Plugin for WordPress."
3494
  msgstr ""
3495
 
3496
  #: languages/vue.php:1298
3497
- msgid "Ready to take your website to the next level? ExactMetrics gives you the accurate insights you need to make data-driven decisions to grow your traffic and conversions faster than ever before. Now you can easily enable advanced tracking on your website without having to know any code."
3498
  msgstr ""
3499
 
3500
  #: languages/vue.php:1301
3501
- msgid "The ExactMetrics Team"
3502
  msgstr ""
3503
 
3504
- #. Translators: Placeholders make the text highlighted.
3505
- #: languages/vue.php:1305
3506
- msgid "%1$sNeed%2$s to Grow FASTER??"
3507
  msgstr ""
3508
 
3509
- #: languages/vue.php:1308
3510
- msgid "Get additional, actionable insights by going Pro."
3511
  msgstr ""
3512
 
3513
- #: languages/vue.php:1311
3514
- msgid "Skip"
3515
  msgstr ""
3516
 
3517
- #: languages/vue.php:1314
3518
- msgid "See All Features"
3519
  msgstr ""
3520
 
3521
- #: languages/vue.php:1317
3522
- msgid "Upgrade to Pro to get the complete ExactMetrics experience including 1 click tracking integrations for your favorite WordPress plugins and insightful reports backed by our legendary support team."
3523
  msgstr ""
3524
 
3525
- #: languages/vue.php:1320
3526
- msgid "Our Pro plan includes:"
3527
  msgstr ""
3528
 
3529
- #: languages/vue.php:1323
3530
- msgid "Awesome, You're All Set!"
3531
  msgstr ""
3532
 
3533
- #: languages/vue.php:1326
3534
- msgid "ExactMetrics is all set up and ready to use. We've verified that the tracking code is deployed properly and collecting data."
3535
  msgstr ""
3536
 
3537
- #. Translators: Make the text bold.
3538
- #: languages/vue.php:1330
3539
- msgid "%1$sPlease Note:%2$s While Google Analytics is properly setup and tracking everything, it does not send the data back to WordPress immediately. Depending on the size of your website, it can take between a few hours to 24 hours for reports to populate."
 
 
 
3540
  msgstr ""
3541
 
3542
- #. Translators: Add link to blog.
3543
  #: languages/vue.php:1334
3544
- msgid "%1$sSubscribe to the ExactMetrics blog%2$s for tips on how to get more traffic and grow your business."
3545
  msgstr ""
3546
 
3547
  #: languages/vue.php:1337
3548
- msgid "Finish Setup & Exit Wizard"
3549
  msgstr ""
3550
 
3551
  #: languages/vue.php:1340
3552
- msgid "Google Analytics"
3553
  msgstr ""
3554
 
3555
  #: languages/vue.php:1343
3556
- msgid "Subscribe"
3557
  msgstr ""
3558
 
3559
  #: languages/vue.php:1346
3560
- msgid "Checking your website..."
3561
  msgstr ""
3562
 
3563
  #: languages/vue.php:1349
3564
- msgid "Recommended Addons"
3565
  msgstr ""
3566
 
3567
- #. Translators: Add a link to upgrade and make the text green.
3568
- #: languages/vue.php:1353
3569
- msgid "To unlock more features consider %1$supgrading to PRO%2$s.%3$s As a valued ExactMetrics Lite user you %4$sreceive 50%% off%5$s, automatically applied at checkout!"
3570
  msgstr ""
3571
 
3572
- #: languages/vue.php:1356
3573
- msgid "Upgrade to PRO Now"
3574
  msgstr ""
3575
 
3576
- #: languages/vue.php:1359
3577
- msgid "See who’s viewing and submitting your forms, so you can increase your converion rate. Lorem ipsum dolor sit amet, consectetur adipiscing elit."
3578
  msgstr ""
3579
 
3580
- #: languages/vue.php:1362
3581
- msgid "See All Your Important Store Metrics in One Place. Lorem ipsum dolor sit amet, consectetur adipiscing elit."
3582
  msgstr ""
3583
 
3584
- #: languages/vue.php:1365
3585
- msgid "... and more:"
3586
  msgstr ""
3587
 
3588
- #: languages/vue.php:1368
3589
- msgid "Dimensions- Track authors, categories, trags, searches, users and more."
3590
  msgstr ""
3591
 
3592
- #: languages/vue.php:1371
3593
- msgid "EU Compliance- Improve compliance with GDPR and other privacy regulations."
3594
  msgstr ""
3595
 
3596
- #: languages/vue.php:1374
3597
- msgid "AMP- ExactMetrics Google AMP Addon enables accurate tracking of all mobile visitors to your AMP-enabled pages."
3598
  msgstr ""
3599
 
3600
- #: languages/vue.php:1377
3601
- msgid "Facebook Instant Articles- Integrate Google Analytics and Facebook Instant Articles with just one click."
3602
  msgstr ""
3603
 
3604
- #: languages/vue.php:1380
3605
- msgid "eCommerce- Sales tracking for your WooCommerce, Easy Digital Downloads, LifterLMS or MemberPress stores."
3606
  msgstr ""
3607
 
3608
- #: languages/vue.php:1383
3609
- msgid "Google Optimize- Easily enable Google Optimize on your WordPress site."
3610
  msgstr ""
3611
 
3612
- #: languages/vue.php:1386
3613
- msgid "Forms- Enable tracking of your form views, submissions and conversion rates."
3614
  msgstr ""
3615
 
3616
- #: languages/vue.php:1389
3617
- msgid "Ads- See who’s clicking on your Google Adsense banner ads."
3618
  msgstr ""
3619
 
3620
- #: languages/vue.php:1392
3621
- msgid "Show Overview Reports"
3622
  msgstr ""
3623
 
 
3624
  #: languages/vue.php:1395
3625
- msgid "Show Publishers Reports"
3626
- msgstr ""
3627
-
3628
- #: languages/vue.php:1398
3629
- msgid "Show eCommerce Reports"
3630
  msgstr ""
3631
 
3632
- #: languages/vue.php:1401
3633
- msgid "Available in PRO version"
 
3634
  msgstr ""
3635
 
3636
- #: languages/vue.php:1404
3637
- msgid "Show in widget mode"
 
3638
  msgstr ""
3639
 
 
3640
  #: languages/vue.php:1407
3641
- msgid "Show in full-width mode"
3642
- msgstr ""
3643
-
3644
- #: languages/vue.php:1410
3645
- msgid "File imported"
3646
  msgstr ""
3647
 
3648
- #: languages/vue.php:1413
3649
- msgid "Settings successfully updated!"
 
3650
  msgstr ""
3651
 
3652
- #: languages/vue.php:1416
3653
- msgid "Error importing settings"
 
3654
  msgstr ""
3655
 
3656
- #: languages/vue.php:1419
3657
- msgid "Please choose a .json file generated by a ExactMetrics settings export."
3658
  msgstr ""
3659
 
3660
- #: languages/vue.php:1422
3661
- msgid "Import/Export"
3662
  msgstr ""
3663
 
3664
- #: languages/vue.php:1425
3665
- msgid "Import"
3666
  msgstr ""
3667
 
 
3668
  #: languages/vue.php:1428
3669
- msgid "Import settings from another ExactMetrics website."
3670
  msgstr ""
3671
 
3672
  #: languages/vue.php:1431
3673
- msgid "Export"
3674
  msgstr ""
3675
 
3676
  #: languages/vue.php:1434
3677
- msgid "Export settings to import into another ExactMetrics install."
3678
  msgstr ""
3679
 
3680
  #: languages/vue.php:1437
3681
- msgid "Import Settings"
3682
  msgstr ""
3683
 
3684
  #: languages/vue.php:1440
3685
- msgid "Export Settings"
3686
  msgstr ""
3687
 
3688
  #: languages/vue.php:1443
3689
- msgid "Please choose a file to import"
3690
  msgstr ""
3691
 
3692
  #: languages/vue.php:1446
3693
- msgid "Use the filepicker below to select the settings export file from another site."
3694
  msgstr ""
3695
 
3696
  #: languages/vue.php:1449
3697
- msgid "Use the button below to export a file with your ExactMetrics settings."
3698
  msgstr ""
3699
 
3700
  #: languages/vue.php:1452
3701
- msgid "Choose file"
3702
  msgstr ""
3703
 
3704
  #: languages/vue.php:1455
3705
- msgid "No file chosen"
3706
  msgstr ""
3707
 
3708
  #: languages/vue.php:1458
3709
- msgid "Uploading file..."
3710
  msgstr ""
3711
 
3712
  #: languages/vue.php:1461
3713
- msgid "Custom Campaign Parameters"
3714
  msgstr ""
3715
 
3716
  #: languages/vue.php:1464
3717
- msgid "The URL builder helps you add parameters to your URLs you use in custom web or email ad campaigns."
3718
  msgstr ""
3719
 
3720
  #: languages/vue.php:1467
3721
- msgid "A custom campaign is any ad campaign not using the AdWords auto-tagging feature. When users click one of the custom links, the unique parameters are sent to your Analytics account, so you can identify the URLs that are the most effective in attracting users to your content."
3722
  msgstr ""
3723
 
3724
- #. Translators: Marks the field as required.
3725
- #: languages/vue.php:1471
3726
- msgid "Website URL %s"
3727
  msgstr ""
3728
 
3729
- #. Translators: Display the current website url in italic.
3730
- #: languages/vue.php:1475
3731
- msgid "The full website URL (e.g. %1$s %2$s%3$s)"
3732
  msgstr ""
3733
 
3734
- #. Translators: Marks the field as required.
3735
- #: languages/vue.php:1479
3736
- msgid "Campaign Source %s"
3737
  msgstr ""
3738
 
3739
- #. Translators: Make the text italic.
3740
- #: languages/vue.php:1483
3741
- msgid "Enter a referrer (e.g. %1$sfacebook, newsletter, google%2$s)"
 
 
 
 
3742
  msgstr ""
3743
 
3744
- #. Translators: Make the text italic.
3745
  #: languages/vue.php:1487
3746
- msgid "Enter a marketing medium (e.g. %1$scpc, banner, email%2$s)"
3747
  msgstr ""
3748
 
3749
- #. Translators: Make the text italic.
3750
- #: languages/vue.php:1491
3751
- msgid "Enter a name to easily identify (e.g. %1$sspring_sale%2$s)"
3752
  msgstr ""
3753
 
3754
- #: languages/vue.php:1494
3755
- msgid "Enter the paid keyword"
3756
  msgstr ""
3757
 
3758
- #: languages/vue.php:1497
3759
- msgid "Enter something to differentiate ads"
3760
  msgstr ""
3761
 
3762
- #: languages/vue.php:1500
3763
- msgid "Use Fragment"
3764
  msgstr ""
3765
 
3766
- #. Translators: Make the text bold.
3767
- #: languages/vue.php:1504
3768
- msgid "Set the parameters in the fragment portion of the URL %1$s(not recommended)%2$s"
3769
  msgstr ""
3770
 
3771
- #: languages/vue.php:1507
3772
- msgid "URL to use"
3773
  msgstr ""
3774
 
3775
- #: languages/vue.php:1510
3776
- msgid "(Updates automatically)"
3777
  msgstr ""
3778
 
3779
- #: languages/vue.php:1513
3780
- msgid "Copy to Clipboard"
3781
  msgstr ""
3782
 
3783
- #: languages/vue.php:1516
3784
- msgid "More Information & Examples"
3785
  msgstr ""
3786
 
3787
- #: languages/vue.php:1519
3788
- msgid "The following table gives a detailed explanation and example of each of the campaign parameters."
3789
  msgstr ""
3790
 
3791
- #: languages/vue.php:1522
3792
- msgid "Campaign Source"
3793
  msgstr ""
3794
 
3795
- #: languages/vue.php:1525
3796
- msgid "Required. Use utm_source to identify a search engine, newsletter name, or other source."
3797
  msgstr ""
3798
 
3799
- #: languages/vue.php:1528
3800
- msgid "Campaign Medium"
 
3801
  msgstr ""
3802
 
3803
- #: languages/vue.php:1531
3804
- msgid "Use utm_medium to identify a medium such as email or cost-per-click."
3805
  msgstr ""
3806
 
 
3807
  #: languages/vue.php:1534
3808
- msgid "Campaign Name"
3809
  msgstr ""
3810
 
3811
  #: languages/vue.php:1537
3812
- msgid "Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign."
3813
  msgstr ""
3814
 
3815
  #: languages/vue.php:1540
3816
- msgid "Campaign Term"
3817
  msgstr ""
3818
 
3819
  #: languages/vue.php:1543
3820
- msgid "Used for paid search. Use utm_term to note the keywords for this ad."
3821
  msgstr ""
3822
 
3823
  #: languages/vue.php:1546
3824
- msgid "Campaign Content"
3825
  msgstr ""
3826
 
3827
  #: languages/vue.php:1549
3828
- msgid "Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL."
3829
- msgstr ""
3830
-
3831
- #. Translators: Example.
3832
- #: languages/vue.php:1553
3833
- msgid "Example: %s"
3834
  msgstr ""
3835
 
3836
- #. Translators: Examples.
3837
- #: languages/vue.php:1557
3838
- msgid "Examples: %s"
3839
  msgstr ""
3840
 
3841
- #: languages/vue.php:1560
3842
- msgid "About Campaigns"
3843
  msgstr ""
3844
 
3845
- #: languages/vue.php:1563
3846
- msgid "About Custom Campaigns"
3847
  msgstr ""
3848
 
3849
- #: languages/vue.php:1566
3850
- msgid "Best Practices for Creating Custom Campaigns"
3851
  msgstr ""
3852
 
3853
- #: languages/vue.php:1569
3854
- msgid "About the Referral Traffic Report"
3855
  msgstr ""
3856
 
3857
- #: languages/vue.php:1572
3858
- msgid "About Traffic Source Dimensions"
3859
  msgstr ""
3860
 
3861
- #: languages/vue.php:1575
3862
- msgid "AdWords Auto-Tagging"
3863
  msgstr ""
3864
 
3865
- #: languages/vue.php:1578
3866
- msgid "Additional Information"
3867
  msgstr ""
3868
 
3869
- #: languages/vue.php:1581
3870
- msgid "You appear to be offline. WPForms not installed."
 
3871
  msgstr ""
3872
 
3873
  #. Translators: Error status and error text.
3874
- #: languages/vue.php:1585
3875
- msgid "Can't activate addon. Error: %1$s, %2$s"
3876
  msgstr ""
3877
 
3878
- #: languages/vue.php:1588
3879
- msgid "You appear to be offline. Addon not activated."
3880
  msgstr ""
3881
 
3882
  #. Translators: Error status and error text.
3883
- #: languages/vue.php:1592
3884
- msgid "Can't deactivate addon. Error: %1$s, %2$s"
3885
  msgstr ""
3886
 
3887
- #: languages/vue.php:1595
3888
- msgid "You appear to be offline. Addon not deactivated."
3889
  msgstr ""
3890
 
3891
  #. Translators: Error status and error text.
3892
- #: languages/vue.php:1599
3893
- msgid "Can't install plugin. Error: %1$s, %2$s"
3894
  msgstr ""
3895
 
 
3896
  #: languages/vue.php:1602
3897
- msgid "You appear to be offline. Plugin not installed."
3898
  msgstr ""
3899
 
3900
- #. Translators: Error status and error text.
3901
- #: languages/vue.php:1606
3902
- msgid "Can't install addon. Error: %1$s, %2$s"
3903
  msgstr ""
3904
 
3905
- #: languages/vue.php:1609
3906
- msgid "You appear to be offline. Addon not installed."
3907
  msgstr ""
3908
 
3909
- #. Translators: Error status and error text.
3910
- #: languages/vue.php:1613
3911
- msgid "Can't install WPForms. Error: %1$s, %2$s"
3912
  msgstr ""
3913
 
3914
- #: languages/vue.php:1616
3915
- msgid "See All Reports"
3916
  msgstr ""
3917
 
3918
- #: languages/vue.php:1619
3919
- msgid "Go to the Analytics Dashboard"
3920
  msgstr ""
3921
 
3922
- #. Translators: Placeholder adds a line break.
3923
- #: languages/vue.php:1623
3924
- msgid "You can customize your %sdate range only in the PRO version."
3925
  msgstr ""
3926
 
3927
- #: languages/vue.php:1626
3928
- msgid "ExactMetrics Recommends WPForms"
 
3929
  msgstr ""
3930
 
3931
- #: languages/vue.php:1629
3932
- msgid "Built by the folks behind ExactMetrics, WPForms is the most beginner friendly form plugin in the market."
3933
  msgstr ""
3934
 
3935
- #: languages/vue.php:1632
3936
- msgid "Used on over 3,000,000 websites!"
 
3937
  msgstr ""
3938
 
3939
- #: languages/vue.php:1635
3940
- msgid "WPForms allow you to create beautiful contact forms, subscription forms, payment forms, and other types of forms for your site in minutes, not hours!"
3941
  msgstr ""
3942
 
 
3943
  #: languages/vue.php:1638
3944
- msgid "Skip this Step"
3945
  msgstr ""
3946
 
3947
  #: languages/vue.php:1641
3948
- msgid "Continue & Install WPForms"
3949
  msgstr ""
3950
 
3951
- #: languages/vue.php:1644
3952
- msgid "Installing..."
 
3953
  msgstr ""
3954
 
3955
- #. Translators: Line break.
3956
  #: languages/vue.php:1648
3957
- msgid "Unique %s Sessions"
3958
  msgstr ""
3959
 
3960
- #. Translators: Line break.
3961
  #: languages/vue.php:1652
3962
- msgid "Unique %s Pageviews"
3963
  msgstr ""
3964
 
3965
  #: languages/vue.php:1655
3966
- msgid "Percentage of single page visits (or web sessions). It is the number of visits in which a person leaves your website from the landing page without browsing any further."
3967
  msgstr ""
3968
 
3969
  #: languages/vue.php:1658
3970
- msgid "Last 30 Days Analytics for "
3971
  msgstr ""
3972
 
3973
  #: languages/vue.php:1661
3974
- msgid "Your Website"
3975
  msgstr ""
3976
 
3977
  #: languages/vue.php:1664
3978
- msgid "Avg. Duration"
3979
  msgstr ""
3980
 
3981
  #: languages/vue.php:1667
3982
- msgid "More data is available"
3983
  msgstr ""
3984
 
3985
- #: languages/vue.php:1670
3986
- msgid "Want to see page-specific stats?"
 
3987
  msgstr ""
3988
 
3989
- #. Translators: placeholders make text small.
3990
  #: languages/vue.php:1674
3991
- msgid "Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s"
3992
  msgstr ""
3993
 
3994
- #. Translators: placeholders make text small.
3995
- #: languages/vue.php:1678
3996
- msgid "Disabled %1$s- Hide reports and dashboard widget.%2$s"
3997
  msgstr ""
3998
 
3999
- #. Translators: placeholders make text small.
4000
- #: languages/vue.php:1682
4001
- msgid "Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s"
4002
  msgstr ""
4003
 
4004
- #. Translators: placeholders make text small.
4005
  #: languages/vue.php:1686
4006
- msgid "Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s"
4007
  msgstr ""
4008
 
4009
- #. Translators: placeholders make text small.
4010
- #: languages/vue.php:1690
4011
- msgid "None %1$s- Manually update everything.%2$s"
4012
  msgstr ""
4013
 
4014
- #. Translators: Adds a link to the general settings tab.
4015
- #: languages/vue.php:1694
4016
- msgid "It looks like you added a Google Analytics tracking code in the custom code area, this can potentially prevent proper tracking. If you want to use a manual UA please use the setting in the %1$sGeneral%2$s tab."
4017
  msgstr ""
4018
 
4019
- #: languages/vue.php:1697
4020
- msgid "Permissions"
4021
  msgstr ""
4022
 
4023
- #: languages/vue.php:1700
4024
- msgid "Allow These User Roles to See Reports"
4025
  msgstr ""
4026
 
4027
- #: languages/vue.php:1703
4028
- msgid "Users that have at least one of these roles will be able to view the reports."
 
4029
  msgstr ""
4030
 
4031
- #: languages/vue.php:1706
4032
- msgid "Allow These User Roles to Save Settings"
4033
  msgstr ""
4034
 
4035
- #: languages/vue.php:1709
4036
- msgid "Users that have at least one of these roles will be able to view and save the settings panel."
4037
  msgstr ""
4038
 
4039
- #: languages/vue.php:1712
4040
- msgid "Users that have at least one of these roles will be able to view and save the settings panel, along with any user with the manage_options capability."
4041
  msgstr ""
4042
 
4043
- #: languages/vue.php:1715
4044
- msgid "Exclude These User Roles From Tracking"
4045
  msgstr ""
4046
 
 
4047
  #: languages/vue.php:1718
4048
- msgid "Users that have at least one of these roles will not be tracked into Google Analytics."
4049
  msgstr ""
4050
 
4051
  #: languages/vue.php:1721
4052
- msgid "Custom code"
4053
  msgstr ""
4054
 
4055
- #. Translators: Adds a link to the Google reference.
4056
  #: languages/vue.php:1725
4057
- msgid "Not for the average user: this allows you to add a line of code, to be added before the %1$spageview is sent%2$s."
4058
  msgstr ""
4059
 
4060
- #: languages/vue.php:1731
4061
- msgid "Automatic Updates"
 
4062
  msgstr ""
4063
 
4064
- #: languages/vue.php:1734
4065
- msgid "You must have the \"unfiltered_html\" capability to view/edit this setting."
4066
  msgstr ""
4067
 
4068
- #: languages/vue.php:1737
4069
- msgid "Hide Admin Bar Reports"
 
 
 
 
 
4070
  msgstr ""
4071
 
4072
- #. Translators: placeholders make text small.
4073
  #: languages/vue.php:1741
4074
- msgid "Enabled %1$s- Show reports and dashboard widget.%2$s"
4075
  msgstr ""
4076
 
4077
  #: languages/vue.php:1744
4078
- msgid "Unlock Form Tracking"
4079
  msgstr ""
4080
 
4081
  #: languages/vue.php:1747
4082
- msgid "See who's viewing and submitting your forms, so you can increase your conversion rate."
4083
  msgstr ""
4084
 
4085
  #: languages/vue.php:1750
4086
- msgid "Use Google Optimize to retarget your website visitors and perform A/B split tests with ease."
4087
  msgstr ""
4088
 
4089
  #: languages/vue.php:1753
4090
- msgid "Add Custom Dimensions and track who's the most popular author on your site, which post types get the most traffic, and more"
4091
  msgstr ""
4092
 
4093
  #: languages/vue.php:1756
4094
- msgid "Welcome to ExactMetrics!"
4095
  msgstr ""
4096
 
4097
  #: languages/vue.php:1759
4098
- msgid "Let's get you set up."
4099
  msgstr ""
4100
 
4101
  #: languages/vue.php:1762
4102
- msgid "Which category best describes your website?"
4103
  msgstr ""
4104
 
4105
  #: languages/vue.php:1765
4106
- msgid "We will recommend the optimal settings for ExactMetrics based on your choice."
4107
  msgstr ""
4108
 
4109
  #: languages/vue.php:1768
4110
- msgid "Business Website"
4111
  msgstr ""
4112
 
4113
- #. Translators: Make text bold.
4114
- #: languages/vue.php:1772
4115
- msgid "Publisher %1$s(Blog)%2$s"
4116
  msgstr ""
4117
 
4118
- #. Translators: Error status and error text.
4119
- #: languages/vue.php:1776
4120
- msgid "Can't deauthenticate. Error: %1$s, %2$s"
4121
  msgstr ""
4122
 
4123
- #: languages/vue.php:1779
4124
- msgid "You appear to be offline."
 
 
 
 
4125
  msgstr ""
4126
 
4127
- #. Translators: Error status and error text.
4128
  #: languages/vue.php:1783
4129
- msgid "Can't save settings. Error: %1$s, %2$s"
4130
  msgstr ""
4131
 
4132
  #: languages/vue.php:1786
4133
- msgid "You appear to be offline. Settings not saved."
4134
  msgstr ""
4135
 
4136
- #. Translators: Error status and error text.
4137
- #: languages/vue.php:1790
4138
- msgid "Can't load authentication details. Error: %1$s, %2$s"
4139
  msgstr ""
4140
 
4141
- #. Translators: Error status and error text.
4142
- #: languages/vue.php:1794
4143
- msgid "Can't authenticate. Error: %1$s, %2$s"
 
 
 
4144
  msgstr ""
4145
 
4146
- #. Translators: Error status and error text.
4147
  #: languages/vue.php:1798
4148
- msgid "Can't reauthenticate. Error: %1$s, %2$s"
4149
  msgstr ""
4150
 
4151
- #. Translators: Error status and error text.
4152
- #: languages/vue.php:1802
4153
- msgid "Can't verify credentials. Error: %1$s, %2$s"
4154
  msgstr ""
4155
 
4156
- #. Translators: Makes text bold.
4157
- #: languages/vue.php:1806
4158
- msgid "%1$sEnhanced Ecommerce Tracking%2$s - 1-click Google Analytics Enhanced eCommerce tracking for WooCommerce, Easy Digital Download & MemberPress."
4159
  msgstr ""
4160
 
4161
- #. Translators: Makes text bold.
4162
- #: languages/vue.php:1810
4163
- msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post types, users, and other events with 1-click."
4164
  msgstr ""
4165
 
4166
- #: languages/vue.php:1813
4167
- msgid "Upgrade to ExactMetrics Pro Now"
4168
  msgstr ""
4169
 
4170
- #. Translators: Placeholders are used for making text bold and adding a link.
4171
- #: languages/vue.php:1817
4172
- msgid "You're using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s."
4173
  msgstr ""
4174
 
4175
- #: languages/vue.php:1820
4176
- msgid "Ads Tracking"
4177
  msgstr ""
4178
 
4179
- #: languages/vue.php:1823
4180
- msgid "Add Ads tracking to see who's clicking on your Google Ads, so you can increase your revenue."
4181
  msgstr ""
4182
 
4183
- #: languages/vue.php:1826
4184
- msgid "Google AMP"
4185
  msgstr ""
4186
 
4187
- #: languages/vue.php:1829
4188
- msgid "Want to use track users visiting your AMP pages? By upgrading to ExactMetrics Pro, you can enable AMP page tracking."
4189
  msgstr ""
4190
 
4191
- #: languages/vue.php:1832
4192
- msgid "Facebook Instant Articles"
4193
  msgstr ""
4194
 
4195
- #: languages/vue.php:1835
4196
- msgid "Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to ExactMetrics Pro."
4197
  msgstr ""
4198
 
4199
- #: languages/vue.php:1838
4200
- msgid "Help Us Improve"
4201
  msgstr ""
4202
 
4203
- #: languages/vue.php:1841
4204
- msgid "Help us better understand our users and their website needs."
 
 
 
 
4205
  msgstr ""
4206
 
4207
- #. Translators: Adds a link to the documentation.
4208
  #: languages/vue.php:1845
4209
- msgid "If enabled ExactMetrics will send some information about your WordPress site like what plugins and themes you use and which ExactMetrics settings you use to us so that we can improve our product. For a complete list of what we send and what we use it for, %1$svisit our website.%2$s"
 
 
 
 
4210
  msgstr ""
4211
 
4212
- #. Translators: Error status and error text.
4213
- #: languages/vue.php:1849
4214
- msgid "Can't deactivate the license. Error: %1$s, %2$s"
4215
  msgstr ""
4216
 
4217
- #. Translators: Error status and error text.
4218
- #: languages/vue.php:1853
4219
- msgid "Can't upgrade to PRO please try again. Error: %1$s, %2$s"
4220
  msgstr ""
4221
 
4222
- #. Translators: Error status and error text.
4223
  #: languages/vue.php:1857
4224
- msgid "Can't load license details. Error: %1$s, %2$s"
4225
  msgstr ""
4226
 
4227
  #: languages/vue.php:1860
4228
- msgid "Error loading license details"
4229
  msgstr ""
4230
 
4231
- #. Translators: Error status and error text.
4232
- #: languages/vue.php:1864
4233
- msgid "Can't verify the license. Error: %1$s, %2$s"
4234
  msgstr ""
4235
 
4236
- #. Translators: Error status and error text.
4237
- #: languages/vue.php:1868
4238
- msgid "Can't validate the license. Error: %1$s, %2$s"
 
 
 
4239
  msgstr ""
4240
 
4241
- #. Translators: The name of the field that is throwing a validation error.
4242
  #: languages/vue.php:1872
4243
- msgid "%s can't be empty."
4244
  msgstr ""
4245
 
4246
  #: languages/vue.php:1875
4247
- msgid "Duplicate values are not allowed."
4248
  msgstr ""
4249
 
4250
  #: languages/vue.php:1878
4251
- msgid "Add Another Link Path"
4252
  msgstr ""
4253
 
4254
  #: languages/vue.php:1881
4255
- msgid "Remove row"
4256
  msgstr ""
4257
 
4258
  #: languages/vue.php:1884
4259
- msgid "Scroll Tracking"
4260
  msgstr ""
4261
 
4262
  #: languages/vue.php:1887
4263
- msgid "Scroll depth tracking in web analytics is one of those things you simply must do, especially if you have a content-heavy site."
4264
  msgstr ""
4265
 
4266
- #. Translators: Makes text bold and adds smiley.
4267
- #: languages/vue.php:1891
4268
- msgid "You’re using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s"
4269
  msgstr ""
4270
 
4271
- #. Translators: Makes text green.
4272
- #: languages/vue.php:1895
4273
- msgid "As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout."
4274
  msgstr ""
4275
 
4276
- #: languages/vue.php:1898
4277
- msgid "Unlock All Features and Upgrade to Pro"
4278
  msgstr ""
4279
 
4280
- #: languages/vue.php:1901
4281
- #: languages/vue.php:2170
4282
- msgid "Connect ExactMetrics"
4283
  msgstr ""
4284
 
4285
- #: languages/vue.php:1904
4286
- msgid "Website profile"
4287
  msgstr ""
4288
 
4289
- #: languages/vue.php:1907
4290
- msgid "Active profile"
4291
  msgstr ""
4292
 
4293
- #: languages/vue.php:1911
4294
- msgid "Your website profile has been set at the network level of your WordPress Multisite."
 
4295
  msgstr ""
4296
 
4297
- #: languages/vue.php:1915
4298
- msgid "If you would like to use a different profile for this subsite, you can authenticate below."
4299
  msgstr ""
4300
 
4301
- #: languages/vue.php:1918
4302
- msgid "Skip and Keep Connection"
4303
  msgstr ""
4304
 
4305
- #: languages/vue.php:1922
4306
- msgid "Authenticating"
4307
  msgstr ""
4308
 
4309
- #. Translators: Make text green.
4310
- #: languages/vue.php:1926
4311
- msgid "Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s"
 
4312
  msgstr ""
4313
 
4314
- #: languages/vue.php:1929
4315
- msgid "Network Active"
4316
  msgstr ""
4317
 
4318
- #: languages/vue.php:1932
4319
- msgid "Active"
 
4320
  msgstr ""
4321
 
 
4322
  #: languages/vue.php:1935
4323
- msgid "Inactive"
4324
  msgstr ""
4325
 
4326
- #. Translators: Placeholder for the addon status (installed, active, etc).
4327
  #: languages/vue.php:1939
4328
- msgid "Status: %s"
4329
  msgstr ""
4330
 
4331
  #: languages/vue.php:1942
4332
- msgid "Not Installed"
4333
  msgstr ""
4334
 
4335
  #: languages/vue.php:1945
4336
- msgid "Proceed"
4337
  msgstr ""
4338
 
4339
  #: languages/vue.php:1948
4340
- msgid "Connection Information"
4341
  msgstr ""
4342
 
4343
  #: languages/vue.php:1951
4344
- msgid "To perform the requested action, WordPress needs to access your web server. Please enter your FTP credentials to proceed. If you do not remember your credentials, you should contact your web host."
4345
  msgstr ""
4346
 
4347
  #: languages/vue.php:1954
4348
- msgid "Hostname"
4349
- msgstr ""