Google Analytics Dashboard for WP (GADWP) - Version 6.0.2

Version Description

Download this release

Release Info

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

Code changes from version 6.0.1 to 6.0.2

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.1
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.1';
46
 
47
  /**
48
  * Plugin file.
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.2
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.2';
46
 
47
  /**
48
  * Plugin file.
includes/admin/admin.php CHANGED
@@ -389,18 +389,27 @@ function exactmetrics_admin_setup_notices() {
389
  }
390
 
391
  // 6. Authenticate, not manual
392
- $authed = ExactMetrics()->auth->is_authed() || ExactMetrics()->auth->is_network_authed();
393
- $url = is_network_admin() ? network_admin_url( 'admin.php?page=exactmetrics_network' ) : admin_url( 'admin.php?page=exactmetrics_settings' );
394
-
395
- if ( empty( $authed ) && ! isset( $notices['exactmetrics_auth_not_manual' ] ) ) {
396
- echo '<div class="notice notice-info is-dismissible exactmetrics-notice" data-notice="exactmetrics_auth_not_manual">';
397
- echo '<p>';
398
- // Translators: Placeholders add links to the settings panel.
399
- echo sprintf( esc_html__( 'Important: You are currently using manual UA code output. We highly recommend %1$sauthenticating with ExactMetrics%2$s so that you can access our new reporting area and take advantage of new ExactMetrics features.', 'google-analytics-dashboard-for-wp' ), '<a href="' . $url .'">', '</a>' );
400
- echo '</p>';
401
- echo '</div>';
402
- return;
403
- }
 
 
 
 
 
 
 
 
 
404
 
405
  // 7. Automatic updates not configured
406
  // if ( ! is_network_admin() ) {
389
  }
390
 
391
  // 6. Authenticate, not manual
392
+ $authed = ExactMetrics()->auth->is_authed() || ExactMetrics()->auth->is_network_authed();
393
+ $url = is_network_admin() ? network_admin_url( 'admin.php?page=exactmetrics_network' ) : admin_url( 'admin.php?page=exactmetrics_settings' );
394
+ // Translators: Placeholders add links to the settings panel.
395
+ $manual_text = sprintf( esc_html__( 'Important: You are currently using manual UA code output. We highly recommend %1$sauthenticating with ExactMetrics%2$s so that you can access our new reporting area and take advantage of new ExactMetrics features.', 'google-analytics-dashboard-for-wp' ), '<a href="' . $url . '">', '</a>' );
396
+ $migrated = exactmetrics_get_option( 'gadwp_migrated', 0 );
397
+ if ( $migrated > 0 ) {
398
+ $url = admin_url( 'admin.php?page=exactmetrics-getting-started&exactmetrics-migration=1' );
399
+ // Translators: Placeholders add links to the settings panel.
400
+ $text = esc_html__( 'Click %1$shere%2$s to reauthenticate to be able to access reports. For more information why this is required, see our %3$sblog post%4$s.', 'google-analytics-dashboard-for-wp' );
401
+ $manual_text = sprintf( $text, '<a href="' . $url . '">', '</a>', '<a href="' . exactmetrics_get_url( 'notice', 'manual-ua', 'https://www.exactmetrics.com/why-did-we-implement-the-new-google-analytics-authentication-flow-challenges-explained/' ) . '" target="_blank">', '</a>' );
402
+ }
403
+
404
+ if ( empty( $authed ) && ! isset( $notices['exactmetrics_auth_not_manual'] ) ) {
405
+ echo '<div class="notice notice-info is-dismissible exactmetrics-notice" data-notice="exactmetrics_auth_not_manual">';
406
+ echo '<p>';
407
+ echo $manual_text;
408
+ echo '</p>';
409
+ echo '</div>';
410
+
411
+ return;
412
+ }
413
 
414
  // 7. Automatic updates not configured
415
  // if ( ! is_network_admin() ) {
includes/admin/common.php CHANGED
@@ -310,6 +310,7 @@ function exactmetrics_admin_scripts() {
310
  'activate_nonce' => wp_create_nonce( 'exactmetrics-activate' ),
311
  'deactivate_nonce'=> wp_create_nonce( 'exactmetrics-deactivate' ),
312
  'update_settings' => current_user_can( 'exactmetrics_save_settings' ),
 
313
  )
314
  );
315
 
310
  'activate_nonce' => wp_create_nonce( 'exactmetrics-activate' ),
311
  'deactivate_nonce'=> wp_create_nonce( 'exactmetrics-deactivate' ),
312
  'update_settings' => current_user_can( 'exactmetrics_save_settings' ),
313
+ 'migrated' => exactmetrics_get_option( 'gadwp_migrated', 0 ),
314
  )
315
  );
316
 
includes/admin/reports/abstract-report.php CHANGED
@@ -182,7 +182,7 @@ class ExactMetrics_Report {
182
  $ms_auth = is_multisite() && ExactMetrics()->auth->get_network_viewname();
183
  $transient = 'exactmetrics_report_' . $this->name . '_' . $start . '_' . $end;
184
  // Set to same time as MI cache. MI caches same day to 15 and others to 1 day, so there's no point pinging MI before then.
185
- $expiration = date( 'Y-m-d' ) === $end ? apply_filters( 'exactmetrics_report_transient_expiration', 15 * MINUTE_IN_SECONDS, $this->name ) : DAY_IN_SECONDS;
186
 
187
  // Default date range, check.
188
  if ( $site_auth || $ms_auth ) {
182
  $ms_auth = is_multisite() && ExactMetrics()->auth->get_network_viewname();
183
  $transient = 'exactmetrics_report_' . $this->name . '_' . $start . '_' . $end;
184
  // Set to same time as MI cache. MI caches same day to 15 and others to 1 day, so there's no point pinging MI before then.
185
+ $expiration = date( 'Y-m-d' ) === $end ? apply_filters( 'exactmetrics_report_transient_expiration', 15 * MINUTE_IN_SECONDS, $this->name ) : HOUR_IN_SECONDS;
186
 
187
  // Default date range, check.
188
  if ( $site_auth || $ms_auth ) {
includes/admin/review.php CHANGED
@@ -73,7 +73,11 @@ class ExactMetrics_Review {
73
 
74
  if ( ! empty( $activated['connected_date'] ) ) {
75
  // Only continue if plugin has been tracking for at least 14 days.
76
- if ( ( $activated['connected_date'] + ( DAY_IN_SECONDS * 14 ) ) > time() ) {
 
 
 
 
77
  return;
78
  }
79
  } else {
73
 
74
  if ( ! empty( $activated['connected_date'] ) ) {
75
  // Only continue if plugin has been tracking for at least 14 days.
76
+ $days = 14;
77
+ if ( exactmetrics_get_option( 'gadwp_migrated', 0 ) > 0 ) {
78
+ $days = 21;
79
+ }
80
+ if ( ( $activated['connected_date'] + ( DAY_IN_SECONDS * $days ) ) > time() ) {
81
  return;
82
  }
83
  } else {
includes/em-install.php CHANGED
@@ -395,9 +395,6 @@ class ExactMetrics_Install {
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
-
401
  return $settings;
402
  }
403
 
395
  update_user_meta( get_current_user_id(), 'exactmetrics_user_preferences', $dashboard_settings );
396
  }
397
 
 
 
 
398
  return $settings;
399
  }
400
 
includes/frontend/frontend.php CHANGED
@@ -227,6 +227,9 @@ function exactmetrics_administrator_tracking_notice() {
227
  return;
228
  }
229
 
 
 
 
230
  ?>
231
  <div class="exactmetrics-tracking-notice exactmetrics-tracking-notice-hide">
232
  <div class="exactmetrics-tracking-notice-icon">
227
  return;
228
  }
229
 
230
+ // Automatically dismiss when loaded.
231
+ update_option( 'exactmetrics_frontend_tracking_notice_viewed', 1 );
232
+
233
  ?>
234
  <div class="exactmetrics-tracking-notice exactmetrics-tracking-notice-hide">
235
  <div class="exactmetrics-tracking-notice-icon">
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.1\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-14T13:58:14+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"
@@ -36,7 +36,7 @@ msgstr ""
36
  #: lite/includes/admin/wp-site-health.php:343
37
  #: lite/includes/admin/wp-site-health.php:368
38
  #: lite/includes/admin/wp-site-health.php:407
39
- #: lite/includes/admin/dashboard-widget.php:96
40
  #: includes/admin/admin.php:31
41
  #: includes/admin/admin.php:34
42
  #: includes/admin/admin.php:42
@@ -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:1677
156
  msgid "View Addons"
157
  msgstr ""
158
 
@@ -247,19 +247,19 @@ msgstr ""
247
  msgid "Pro version installed but needs to be activated from the Plugins page inside your WordPress admin."
248
  msgstr ""
249
 
250
- #: lite/includes/admin/dashboard-widget.php:131
251
  msgid "Website Analytics is not Setup"
252
  msgstr ""
253
 
254
- #: lite/includes/admin/dashboard-widget.php:133
255
  msgid "To see your website stats, please connect ExactMetrics to Google Analytics."
256
  msgstr ""
257
 
258
- #: lite/includes/admin/dashboard-widget.php:134
259
  msgid "Setup Website Analytics"
260
  msgstr ""
261
 
262
- #: lite/includes/admin/dashboard-widget.php:136
263
  msgid "To see your website stats, please ask your webmaster to connect ExactMetrics to Google Analytics."
264
  msgstr ""
265
 
@@ -301,12 +301,12 @@ msgid "You are not allowed to install plugins"
301
  msgstr ""
302
 
303
  #: lite/includes/admin/reports/report-queries.php:22
304
- #: languages/vue.php:227
305
  msgid "Search Console"
306
  msgstr ""
307
 
308
  #: lite/includes/admin/reports/report-ecommerce.php:22
309
- #: languages/vue.php:343
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:378
323
  msgid "Publishers"
324
  msgstr ""
325
 
326
  #: lite/includes/admin/reports/report-dimensions.php:22
327
- #: languages/vue.php:505
328
  msgid "Dimensions"
329
  msgstr ""
330
 
331
  #: lite/includes/admin/reports/report-forms.php:22
332
- #: languages/vue.php:384
333
  msgid "Forms"
334
  msgstr ""
335
 
@@ -362,47 +362,47 @@ msgstr ""
362
  msgid "because you are not being tracked."
363
  msgstr ""
364
 
365
- #: includes/admin/review.php:114
366
  msgid "Are you enjoying ExactMetrics?"
367
  msgstr ""
368
 
369
- #: includes/admin/review.php:116
370
  msgid "Yes"
371
  msgstr ""
372
 
373
- #: includes/admin/review.php:117
374
  msgid "Not Really"
375
  msgstr ""
376
 
377
- #: includes/admin/review.php:121
378
  msgid "We're sorry to hear you aren't enjoying ExactMetrics. We would love a chance to improve. Could you take a minute and let us know what we can do better?"
379
  msgstr ""
380
 
381
- #: includes/admin/review.php:123
382
  msgid "Give Feedback"
383
  msgstr ""
384
 
385
- #: includes/admin/review.php:124
386
  msgid "No thanks"
387
  msgstr ""
388
 
389
- #: includes/admin/review.php:128
390
  msgid "That’s awesome! Could you please do me a BIG favor and give it a 5-star rating on WordPress to help us spread the word and boost our motivation?"
391
  msgstr ""
392
 
393
- #: includes/admin/review.php:129
394
  msgid "~ Syed Balkhi<br>Co-Founder of ExactMetrics"
395
  msgstr ""
396
 
397
- #: includes/admin/review.php:131
398
  msgid "Ok, you deserve it"
399
  msgstr ""
400
 
401
- #: includes/admin/review.php:132
402
  msgid "Nope, maybe later"
403
  msgstr ""
404
 
405
- #: includes/admin/review.php:133
406
  msgid "I already did"
407
  msgstr ""
408
 
@@ -566,19 +566,19 @@ msgid "There was an error installing the addon: %s"
566
  msgstr ""
567
 
568
  #. Translators: Placeholders are for links to fix the issue.
569
- #: includes/admin/common.php:751
570
  msgid "ExactMetrics has detected that it's files are being blocked. This is usually caused by a adblock browser plugin (particularly uBlock Origin), or a conflicting WordPress theme or plugin. This issue only affects the admin side of ExactMetrics. To solve this, ensure ExactMetrics is whitelisted for your website URL in any adblock browser plugin you use. For step by step directions on how to do this, %1$sclick here%2$s. If this doesn't solve the issue (rare), send us a ticket %3$shere%2$s and we'll be happy to help diagnose the issue."
571
  msgstr ""
572
 
573
- #: includes/admin/common.php:871
574
  msgid "Your 2019 Analytics Report"
575
  msgstr ""
576
 
577
- #: includes/admin/common.php:877
578
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2020!"
579
  msgstr ""
580
 
581
- #: includes/admin/common.php:879
582
  msgid "View 2019 Year in Review report!"
583
  msgstr ""
584
 
@@ -600,7 +600,7 @@ msgstr ""
600
 
601
  #: includes/admin/admin.php:39
602
  #: includes/admin/admin.php:95
603
- #: languages/vue.php:958
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:323
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:1049
661
  msgid "Support"
662
  msgstr ""
663
 
@@ -667,22 +667,22 @@ 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:524
671
  msgid "Please Setup Website Analytics to See Audience Insights"
672
  msgstr ""
673
 
674
  #: includes/admin/admin.php:278
675
- #: languages/vue.php:530
676
  msgid "Connect ExactMetrics and Setup Website Analytics"
677
  msgstr ""
678
 
679
  #: includes/admin/admin.php:280
680
- #: languages/vue.php:294
681
  msgid "Learn More"
682
  msgstr ""
683
 
684
  #: includes/admin/admin.php:282
685
- #: languages/vue.php:527
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 1 million website owners use ExactMetrics to see the stats that matter and grow their business."
687
  msgstr ""
688
 
@@ -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:484
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:487
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:490
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
 
@@ -731,18 +731,23 @@ msgid "Your site is running an outdated version of WordPress (%1$s).%4$sExactMet
731
  msgstr ""
732
 
733
  #. Translators: Placeholders add links to the settings panel.
734
- #: includes/admin/admin.php:399
735
  msgid "Important: You are currently using manual UA code output. We highly recommend %1$sauthenticating with ExactMetrics%2$s so that you can access our new reporting area and take advantage of new ExactMetrics features."
736
  msgstr ""
737
 
 
 
 
 
 
738
  #. Translators: Placeholders add a link to the ExactMetrics website.
739
- #: includes/admin/admin.php:442
740
- #: includes/admin/admin.php:473
741
  msgid "%1$sGet ExactMetrics Pro%2$s"
742
  msgstr ""
743
 
744
  #. Translators: Adds a link to the settings panel.
745
- #: includes/admin/admin.php:487
746
  msgid "Warning: ExactMetrics found cross-domain settings in the custom code field and converted them to the new settings structure. %1$sPlease click here to review and remove the code no longer needed.%2$s"
747
  msgstr ""
748
 
@@ -784,7 +789,7 @@ msgid "View supported browsers"
784
  msgstr ""
785
 
786
  #: includes/admin/reports/overview.php:34
787
- #: languages/vue.php:374
788
  msgid "Overview"
789
  msgstr ""
790
 
@@ -876,7 +881,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:162
880
  msgid "Upgrade Now"
881
  msgstr ""
882
 
@@ -1957,222 +1962,222 @@ msgstr ""
1957
  msgid "%1$s is %3$sdeprecated%4$s since ExactMetrics version %2$s."
1958
  msgstr ""
1959
 
1960
- #: languages/vue.php:6
1961
  msgid "Error"
1962
  msgstr ""
1963
 
1964
- #: languages/vue.php:9
1965
  msgid "Please try again."
1966
  msgstr ""
1967
 
1968
- #: languages/vue.php:12
1969
  msgid "Loading Settings"
1970
  msgstr ""
1971
 
1972
- #: languages/vue.php:15
1973
  msgid "Please wait..."
1974
  msgstr ""
1975
 
1976
- #: languages/vue.php:18
1977
  msgid "Saving Changes..."
1978
  msgstr ""
1979
 
1980
- #: languages/vue.php:21
1981
  msgid "Settings Updated"
1982
  msgstr ""
1983
 
1984
  #. Translators: Add a link to the onboarding wizard.
1985
- #: languages/vue.php:25
1986
  msgid "You need to %1$sconnect ExactMetrics%2$s first"
1987
  msgstr ""
1988
 
1989
- #: languages/vue.php:28
1990
  msgid "Could Not Save Changes"
1991
  msgstr ""
1992
 
1993
- #: languages/vue.php:31
1994
  msgid "Loading new report data"
1995
  msgstr ""
1996
 
1997
  #. Translators: Adds an arrow icon.
1998
- #: languages/vue.php:36
1999
  msgid "Continue %s"
2000
  msgstr ""
2001
 
2002
- #: languages/vue.php:39
2003
  msgid "Unlock the Publishers Report and Focus on the Content that Matters"
2004
  msgstr ""
2005
 
2006
- #: languages/vue.php:42
2007
  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."
2008
  msgstr ""
2009
 
2010
- #: languages/vue.php:45
2011
  msgid "Unlock the Publishers Report and Focus on the Content That Matters"
2012
  msgstr ""
2013
 
2014
- #: languages/vue.php:48
2015
  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."
2016
  msgstr ""
2017
 
2018
- #: languages/vue.php:51
2019
  msgid "Unlock the eCommerce Report and See Your Important Store Metrics"
2020
  msgstr ""
2021
 
2022
- #: languages/vue.php:54
2023
  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."
2024
  msgstr ""
2025
 
2026
- #: languages/vue.php:57
2027
  msgid "Unlock the Dimensions Report and Track Your Own Custom Data"
2028
  msgstr ""
2029
 
2030
- #: languages/vue.php:60
2031
  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."
2032
  msgstr ""
2033
 
2034
- #: languages/vue.php:63
2035
  msgid "Unlock the Forms Report and Improve Conversions"
2036
  msgstr ""
2037
 
2038
- #: languages/vue.php:66
2039
  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."
2040
  msgstr ""
2041
 
2042
- #: languages/vue.php:69
2043
  msgid "Unlock the Search Console Report and See How People Find Your Website"
2044
  msgstr ""
2045
 
2046
- #: languages/vue.php:72
2047
  msgid "See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more."
2048
  msgstr ""
2049
 
2050
- #: languages/vue.php:75
2051
  msgid "Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time"
2052
  msgstr ""
2053
 
2054
- #: languages/vue.php:78
2055
  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."
2056
  msgstr ""
2057
 
2058
- #: languages/vue.php:81
2059
  msgid "Success! "
2060
  msgstr ""
2061
 
2062
- #: languages/vue.php:84
2063
  msgid "You're now using ExactMetrics Pro with all the features."
2064
  msgstr ""
2065
 
2066
  #. Translators: Placeholder gets replaced with an arrow icon.
2067
- #: languages/vue.php:88
2068
  msgid "Get Started %s"
2069
  msgstr ""
2070
 
2071
- #: languages/vue.php:91
2072
  msgid "Overview Report"
2073
  msgstr ""
2074
 
2075
  #. Translators: Current WordPress version.
2076
- #: languages/vue.php:95
2077
  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."
2078
  msgstr ""
2079
 
2080
- #: languages/vue.php:98
2081
  msgid "Yikes! PHP Update Required"
2082
  msgstr ""
2083
 
2084
  #. Translators: Current PHP version and recommended PHP version.
2085
- #: languages/vue.php:102
2086
  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."
2087
  msgstr ""
2088
 
2089
- #: languages/vue.php:105
2090
  msgid "Learn more about updating PHP"
2091
  msgstr ""
2092
 
2093
- #: languages/vue.php:108
2094
  msgid "Yikes! WordPress Update Required"
2095
  msgstr ""
2096
 
2097
  #. Translators: Current WordPress version.
2098
- #: languages/vue.php:112
2099
  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."
2100
  msgstr ""
2101
 
2102
- #: languages/vue.php:115
2103
  msgid "Learn more about updating WordPress"
2104
  msgstr ""
2105
 
2106
  #. Translators: Makes text bold.
2107
- #: languages/vue.php:119
2108
  msgid "%1$sUniversal Tracking%2$s – Setup universal website tracking across devices and campaigns with just a few clicks (without any code)."
2109
  msgstr ""
2110
 
2111
  #. Translators: Makes text bold.
2112
- #: languages/vue.php:123
2113
  msgid "%1$sGoogle Analytics Dashboard%2$s - See your website analytics report right inside your WordPress dashboard with actionable insights."
2114
  msgstr ""
2115
 
2116
  #. Translators: Makes text bold.
2117
- #: languages/vue.php:127
2118
  msgid "%1$sReal-time Stats%2$s - Get real-time stats inside WordPress to see who is online, what are they doing and more."
2119
  msgstr ""
2120
 
2121
  #. Translators: Makes text bold.
2122
- #: languages/vue.php:131
2123
  msgid "%1$sEnhanced Ecommerce Tracking%2$s - 1-click Google Analytics Enhanced eCommerce tracking for WooCommerce, Easy Digital Download & MemberPress."
2124
  msgstr ""
2125
 
2126
  #. Translators: Makes text bold.
2127
- #: languages/vue.php:135
2128
  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."
2129
  msgstr ""
2130
 
2131
  #. Translators: Makes text bold.
2132
- #: languages/vue.php:139
2133
  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."
2134
  msgstr ""
2135
 
2136
  #. Translators: Makes text bold.
2137
- #: languages/vue.php:143
2138
  msgid "%1$sEU Compilance (GDPR Friendly)%2$s - Make Google Analytics compliant with GDPR and other privacy regulations automatically."
2139
  msgstr ""
2140
 
2141
  #. Translators: Makes text bold.
2142
- #: languages/vue.php:147
2143
  msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post types, users, and other events with 1-click."
2144
  msgstr ""
2145
 
2146
  #. Translators: Adds link to the features page.
2147
- #: languages/vue.php:151
2148
  msgid "%1$sSee All Features%2$s"
2149
  msgstr ""
2150
 
2151
- #: languages/vue.php:155
2152
  msgid "Pro Plan"
2153
  msgstr ""
2154
 
2155
- #: languages/vue.php:159
2156
  msgid "per year"
2157
  msgstr ""
2158
 
2159
- #: languages/vue.php:165
2160
  msgid "Upgrade to ExactMetrics Pro Now"
2161
  msgstr ""
2162
 
2163
- #: languages/vue.php:169
2164
  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!"
2165
  msgstr ""
2166
 
2167
- #: languages/vue.php:173
2168
  msgid "Daniel Monaghan - Experienced"
2169
  msgstr ""
2170
 
2171
- #: languages/vue.php:177
2172
  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."
2173
  msgstr ""
2174
 
2175
- #: languages/vue.php:181
2176
  msgid "Naomi Spirit - From This Day"
2177
  msgstr ""
2178
 
@@ -2180,164 +2185,164 @@ msgstr ""
2180
  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!"
2181
  msgstr ""
2182
 
2183
- #: languages/vue.php:189
2184
  msgid "Julie Dupuis - Faraway Land Travel"
2185
  msgstr ""
2186
 
2187
- #: languages/vue.php:192
2188
  msgid "Guides and Documentation:"
2189
  msgstr ""
2190
 
2191
- #: languages/vue.php:198
2192
  msgid "Upgrade to PRO"
2193
  msgstr ""
2194
 
2195
- #: languages/vue.php:202
2196
  msgid "eCommerce Tracking"
2197
  msgstr ""
2198
 
2199
- #: languages/vue.php:206
2200
  msgid "Custom Dimensions"
2201
  msgstr ""
2202
 
2203
- #: languages/vue.php:209
2204
  msgid "Form Tracking"
2205
  msgstr ""
2206
 
2207
- #: languages/vue.php:212
2208
  msgid "AMP Support"
2209
  msgstr ""
2210
 
2211
- #: languages/vue.php:215
2212
  msgid "Author Tracking"
2213
  msgstr ""
2214
 
2215
- #: languages/vue.php:218
2216
  msgid "EU Compliance Addon"
2217
  msgstr ""
2218
 
2219
- #: languages/vue.php:221
2220
  msgid "Real Time Report"
2221
  msgstr ""
2222
 
2223
- #: languages/vue.php:224
2224
  msgid "Google Optimize"
2225
  msgstr ""
2226
 
2227
- #: languages/vue.php:230
2228
  msgid "Custom Date Ranges"
2229
  msgstr ""
2230
 
2231
- #: languages/vue.php:233
2232
  msgid "Getting Started with ExactMetrics"
2233
  msgstr ""
2234
 
2235
- #: languages/vue.php:236
2236
  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."
2237
  msgstr ""
2238
 
2239
- #: languages/vue.php:239
2240
  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."
2241
  msgstr ""
2242
 
2243
- #: languages/vue.php:242
2244
  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!."
2245
  msgstr ""
2246
 
2247
- #: languages/vue.php:245
2248
  msgid "Launch the wizard!"
2249
  msgstr ""
2250
 
2251
- #: languages/vue.php:249
2252
  msgid "Welcome to"
2253
  msgstr ""
2254
 
2255
  #. Translators: Adds a line break.
2256
- #: languages/vue.php:253
2257
  msgid "Thank you for choosing ExactMetrics -%s The Most Powerful WordPress Analytics Plugin"
2258
  msgstr ""
2259
 
2260
  #. Translators: Makes text bold.
2261
- #: languages/vue.php:257
2262
  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."
2263
  msgstr ""
2264
 
2265
- #: languages/vue.php:260
2266
  msgid "ExactMetrics Features & Addons"
2267
  msgstr ""
2268
 
2269
- #: languages/vue.php:263
2270
  msgid "Here are the features that make ExactMetrics the most powerful and user-friendly WordPress analytics plugin in the market."
2271
  msgstr ""
2272
 
2273
  #. Translators: Number of visitors.
2274
- #: languages/vue.php:267
2275
  msgid "See how %s visitors found your site!"
2276
  msgstr ""
2277
 
2278
  #. Translators: Number of visitors.
2279
- #: languages/vue.php:271
2280
  msgid "Your website was visited by %s users in the last 30 days."
2281
  msgstr ""
2282
 
2283
- #: languages/vue.php:274
2284
  msgid "See the full analytics report!"
2285
  msgstr ""
2286
 
2287
  #. Translators: Error status and error text.
2288
- #: languages/vue.php:278
2289
  msgid "Can't load report data. Error: %1$s, %2$s"
2290
  msgstr ""
2291
 
2292
- #: languages/vue.php:281
2293
  msgid "Error loading report data"
2294
  msgstr ""
2295
 
2296
  #. Translators: Placeholder is replaced with WPForms.
2297
- #: languages/vue.php:285
2298
  msgid "Recommended Plugin: %s"
2299
  msgstr ""
2300
 
2301
- #: languages/vue.php:288
2302
  msgid "Install"
2303
  msgstr ""
2304
 
2305
- #: languages/vue.php:291
2306
  msgid "Activate"
2307
  msgstr ""
2308
 
2309
  #. Translators: Gets replaced with the number of days.
2310
- #: languages/vue.php:298
2311
  msgid "Last %s days"
2312
  msgstr ""
2313
 
2314
- #: languages/vue.php:301
2315
  msgid "ExactMetrics encountered an error loading your report data"
2316
  msgstr ""
2317
 
2318
- #: languages/vue.php:304
2319
  msgid "There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating."
2320
  msgstr ""
2321
 
2322
- #: languages/vue.php:307
2323
- #: languages/vue.php:2133
2324
  msgid "Reconnect ExactMetrics"
2325
  msgstr ""
2326
 
2327
- #: languages/vue.php:310
2328
  msgid "Re-Authenticating"
2329
  msgstr ""
2330
 
2331
- #: languages/vue.php:313
2332
  msgid "Ok"
2333
  msgstr ""
2334
 
2335
- #: languages/vue.php:316
2336
  msgid "Analytics"
2337
  msgstr ""
2338
 
2339
  #. Translators: Adds an arrow icon.
2340
- #: languages/vue.php:320
2341
  msgid "View All Reports %s"
2342
  msgstr ""
2343
 
@@ -2345,2348 +2350,2385 @@ msgstr ""
2345
  msgid "Getting Started"
2346
  msgstr ""
2347
 
2348
- #: languages/vue.php:330
2349
  msgid "Lite vs Pro"
2350
  msgstr ""
2351
 
2352
- #: languages/vue.php:334
2353
  msgid "General"
2354
  msgstr ""
2355
 
2356
- #: languages/vue.php:338
2357
  msgid "Engagement"
2358
  msgstr ""
2359
 
2360
- #: languages/vue.php:347
2361
  msgid "Publisher"
2362
  msgstr ""
2363
 
2364
- #: languages/vue.php:351
2365
  msgid "Conversions"
2366
  msgstr ""
2367
 
2368
- #: languages/vue.php:355
2369
  msgid "Advanced"
2370
  msgstr ""
2371
 
2372
- #: languages/vue.php:358
2373
  msgid "URL Builder"
2374
  msgstr ""
2375
 
2376
- #: languages/vue.php:361
2377
  msgid "Import Export"
2378
  msgstr ""
2379
 
2380
- #: languages/vue.php:364
2381
  msgid "Go back"
2382
  msgstr ""
2383
 
2384
  #. Translators: Placeholders are replaced with the current step number out of the total number of steps.
2385
- #: languages/vue.php:368
2386
  msgid "Step %1$s of %2$s"
2387
  msgstr ""
2388
 
2389
- #: languages/vue.php:371
2390
  msgid "Exit Setup"
2391
  msgstr ""
2392
 
2393
- #: languages/vue.php:381
2394
  msgid "Dimensions Report"
2395
  msgstr ""
2396
 
2397
- #: languages/vue.php:387
2398
  msgid "Real-Time"
2399
  msgstr ""
2400
 
2401
- #: languages/vue.php:390
2402
  msgid "See Quick Links"
2403
  msgstr ""
2404
 
2405
- #: languages/vue.php:393
2406
  msgid "Suggest a Feature"
2407
  msgstr ""
2408
 
2409
- #: languages/vue.php:396
2410
  msgid "Join Our Community"
2411
  msgstr ""
2412
 
2413
- #: languages/vue.php:399
2414
  msgid "Support & Docs"
2415
  msgstr ""
2416
 
2417
- #: languages/vue.php:402
2418
  msgid "Upgrade to Pro &#187;"
2419
  msgstr ""
2420
 
2421
- #: languages/vue.php:405
2422
  msgid "Time to Purchase"
2423
  msgstr ""
2424
 
2425
- #: languages/vue.php:408
2426
  msgid "This list shows how many days from first visit it took users to purchase products from your site."
2427
  msgstr ""
2428
 
2429
- #: languages/vue.php:411
2430
  msgid "Sessions to Purchase"
2431
  msgstr ""
2432
 
2433
- #: languages/vue.php:414
2434
  msgid "This list shows the number of sessions it took users before they purchased a product from your website."
2435
  msgstr ""
2436
 
2437
- #: languages/vue.php:417
2438
  msgid "Top Posts/Pages"
2439
  msgstr ""
2440
 
2441
- #: languages/vue.php:420
2442
  msgid "This list shows the most viewed posts and pages on your website."
2443
  msgstr ""
2444
 
2445
- #: languages/vue.php:423
2446
  msgid "New vs. Returning Visitors"
2447
  msgstr ""
2448
 
2449
- #: languages/vue.php:426
2450
  msgid "This graph shows what percent of your user sessions come from new versus repeat visitors."
2451
  msgstr ""
2452
 
2453
- #: languages/vue.php:429
2454
  msgid "Device Breakdown"
2455
  msgstr ""
2456
 
2457
- #: languages/vue.php:432
2458
  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."
2459
  msgstr ""
2460
 
2461
- #: languages/vue.php:435
2462
  msgid "Top Landing Pages"
2463
  msgstr ""
2464
 
2465
- #: languages/vue.php:438
2466
  msgid "This list shows the top pages users first land on when visiting your website."
2467
  msgstr ""
2468
 
2469
- #: languages/vue.php:441
2470
  msgid "Top Exit Pages"
2471
  msgstr ""
2472
 
2473
- #: languages/vue.php:444
2474
  msgid "This list shows the top pages users exit your website from."
2475
  msgstr ""
2476
 
2477
- #: languages/vue.php:447
2478
  msgid "Top Outbound Links"
2479
  msgstr ""
2480
 
2481
- #: languages/vue.php:450
2482
  msgid "This list shows the top links clicked on your website that go to another website."
2483
  msgstr ""
2484
 
2485
- #: languages/vue.php:453
2486
  msgid "Top Affiliate Links"
2487
  msgstr ""
2488
 
2489
- #: languages/vue.php:456
2490
  msgid "This list shows the top affiliate links your visitors clicked on."
2491
  msgstr ""
2492
 
2493
- #: languages/vue.php:459
2494
  msgid "Top Download Links"
2495
  msgstr ""
2496
 
2497
- #: languages/vue.php:462
2498
  msgid "This list shows the download links your visitors clicked the most."
2499
  msgstr ""
2500
 
2501
- #: languages/vue.php:465
2502
  msgid "Top Products"
2503
  msgstr ""
2504
 
2505
- #: languages/vue.php:468
2506
  msgid "This list shows the top selling products on your website."
2507
  msgstr ""
2508
 
2509
- #: languages/vue.php:471
2510
  msgid "Top Conversion Sources"
2511
  msgstr ""
2512
 
2513
- #: languages/vue.php:474
2514
  msgid "This list shows the top referral websites in terms of product revenue."
2515
  msgstr ""
2516
 
2517
- #: languages/vue.php:477
2518
  msgid "Total Add/Remove"
2519
  msgstr ""
2520
 
2521
- #: languages/vue.php:480
2522
  msgid "Save Changes"
2523
  msgstr ""
2524
 
2525
- #: languages/vue.php:493
2526
  msgid "You must connect with ExactMetrics before you can view reports."
2527
  msgstr ""
2528
 
2529
- #: languages/vue.php:496
2530
  msgid "ExactMetrics makes it \"effortless\" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
2531
  msgstr ""
2532
 
2533
- #: languages/vue.php:499
2534
  msgid "Launch Setup Wizard"
2535
  msgstr ""
2536
 
2537
- #: languages/vue.php:502
2538
  msgid "Please ask your webmaster to connect ExactMetrics to Google Analytics."
2539
  msgstr ""
2540
 
2541
  #. Translators: Adds a link to documentation.
2542
- #: languages/vue.php:509
2543
  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"
2544
  msgstr ""
2545
 
2546
  #. Translators: Adds link to activate/install plugin and documentation.
2547
- #: languages/vue.php:513
2548
  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"
2549
  msgstr ""
2550
 
2551
  #. Translators: Adds a link to documentation.
2552
- #: languages/vue.php:517
2553
  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"
2554
  msgstr ""
2555
 
2556
  #. Translators: Adds link to activate/install plugin and documentation.
2557
- #: languages/vue.php:521
2558
  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"
2559
  msgstr ""
2560
 
2561
  #. Translators: Placeholders make the text highlighted.
2562
- #: languages/vue.php:534
2563
  msgid "%1$sNeed%2$s to Grow FASTER??"
2564
  msgstr ""
2565
 
2566
- #: languages/vue.php:537
2567
  msgid "Get additional, actionable insights by going Pro."
2568
  msgstr ""
2569
 
2570
- #: languages/vue.php:540
2571
  msgid "Skip"
2572
  msgstr ""
2573
 
2574
- #: languages/vue.php:543
2575
  msgid "See All Features"
2576
  msgstr ""
2577
 
2578
- #: languages/vue.php:546
2579
  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."
2580
  msgstr ""
2581
 
2582
- #: languages/vue.php:549
2583
  msgid "Our Pro plan includes:"
2584
  msgstr ""
2585
 
2586
- #: languages/vue.php:552
2587
  msgid "Connect ExactMetrics to Your Website"
2588
  msgstr ""
2589
 
2590
- #: languages/vue.php:555
2591
  msgid "ExactMetrics connects Google Analytics to WordPress and shows you stats that matter."
2592
  msgstr ""
2593
 
2594
- #: languages/vue.php:558
2595
  msgid "Connect Google Analytics + WordPress"
2596
  msgstr ""
2597
 
2598
- #: languages/vue.php:561
2599
  msgid "You will be taken to the ExactMetrics website where you'll need to connect your Analytics account."
2600
  msgstr ""
2601
 
2602
- #: languages/vue.php:564
2603
  msgid "Whoops, something went wrong and we weren't able to connect to ExactMetrics. Please enter your Google UA code manually."
2604
  msgstr ""
2605
 
2606
- #: languages/vue.php:567
2607
  msgid "Manually enter your UA code"
2608
  msgstr ""
2609
 
2610
- #: languages/vue.php:570
2611
  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."
2612
  msgstr ""
2613
 
2614
- #: languages/vue.php:573
2615
  msgid "Save and Continue"
2616
  msgstr ""
2617
 
2618
- #: languages/vue.php:576
2619
  msgid "UA code can't be empty"
2620
  msgstr ""
2621
 
2622
- #: languages/vue.php:579
2623
  msgid "Saving UA code..."
2624
  msgstr ""
2625
 
2626
- #: languages/vue.php:582
2627
  msgid "Welcome to the all-new ExactMetrics"
2628
  msgstr ""
2629
 
2630
- #: languages/vue.php:585
2631
  msgid "Redesigned from the ground up, ExactMetrics is built to bring a world-class analytics and reporting experience to WordPress."
2632
  msgstr ""
2633
 
2634
- #: languages/vue.php:588
2635
  msgid "The New & Improved ExactMetrics includes:"
2636
  msgstr ""
2637
 
2638
- #: languages/vue.php:591
2639
  msgid "All-New Design"
2640
  msgstr ""
2641
 
2642
- #: languages/vue.php:594
2643
  msgid "Better Reporting"
2644
  msgstr ""
2645
 
2646
- #: languages/vue.php:597
2647
  msgid "Better Tracking"
2648
  msgstr ""
2649
 
2650
- #: languages/vue.php:600
2651
  msgid "Better Support"
2652
  msgstr ""
2653
 
2654
- #: languages/vue.php:603
2655
  msgid "Continue"
2656
  msgstr ""
2657
 
2658
- #: languages/vue.php:606
2659
  msgid "Your settings have been automatically transferred."
2660
  msgstr ""
2661
 
2662
- #: languages/vue.php:609
2663
  msgid "Recommended Settings"
2664
  msgstr ""
2665
 
2666
- #: languages/vue.php:612
2667
  msgid "ExactMetrics recommends the following settings based on your configuration."
2668
  msgstr ""
2669
 
2670
- #: languages/vue.php:615
2671
  msgid "Events Tracking"
2672
  msgstr ""
2673
 
2674
- #: languages/vue.php:618
2675
  msgid "Must have for all click tracking on site."
2676
  msgstr ""
2677
 
2678
- #: languages/vue.php:621
2679
  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."
2680
  msgstr ""
2681
 
2682
- #: languages/vue.php:624
2683
  msgid "Enhanced Link Attribution"
2684
  msgstr ""
2685
 
2686
- #: languages/vue.php:627
2687
  msgid "Improves the accuracy of your In-Page Analytics."
2688
  msgstr ""
2689
 
2690
- #: languages/vue.php:630
2691
  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."
2692
  msgstr ""
2693
 
2694
- #: languages/vue.php:633
2695
  msgid "Install Updates Automatically"
2696
  msgstr ""
2697
 
2698
- #: languages/vue.php:636
2699
  msgid "Get the latest features, bug fixes, and security updates as they are released."
2700
  msgstr ""
2701
 
2702
- #: languages/vue.php:639
2703
  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."
2704
  msgstr ""
2705
 
2706
- #: languages/vue.php:642
2707
  msgid "File Download Tracking"
2708
  msgstr ""
2709
 
2710
- #: languages/vue.php:645
2711
  msgid "Helps you see file downloads data."
2712
  msgstr ""
2713
 
2714
- #: languages/vue.php:648
2715
  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."
2716
  msgstr ""
2717
 
2718
  #. Translators: Example path (/go/).
2719
- #: languages/vue.php:653
2720
  msgid "Path (example: %s)"
2721
  msgstr ""
2722
 
2723
- #: languages/vue.php:657
2724
  msgid "Path has to start with a / and have no spaces"
2725
  msgstr ""
2726
 
2727
  #. Translators: Example label (aff).
2728
- #: languages/vue.php:662
2729
  msgid "Label (example: %s)"
2730
  msgstr ""
2731
 
2732
- #: languages/vue.php:666
2733
  msgid "Label can't contain any spaces"
2734
  msgstr ""
2735
 
2736
- #: languages/vue.php:669
2737
  msgid "Helps you increase affiliate revenue."
2738
  msgstr ""
2739
 
2740
- #: languages/vue.php:672
2741
  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."
2742
  msgstr ""
2743
 
2744
- #: languages/vue.php:675
2745
  msgid "Affiliate Link Tracking"
2746
  msgstr ""
2747
 
2748
- #: languages/vue.php:678
2749
  msgid "Who Can See Reports"
2750
  msgstr ""
2751
 
2752
- #: languages/vue.php:681
2753
  msgid "These user roles will be able to access ExactMetrics's reports in the WordPress admin area."
2754
  msgstr ""
2755
 
2756
- #: languages/vue.php:684
2757
  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."
2758
  msgstr ""
2759
 
2760
- #: languages/vue.php:687
2761
  msgid "Save and continue"
2762
  msgstr ""
2763
 
2764
- #: languages/vue.php:690
2765
  msgid "Events Tracking is enabled the moment you set up ExactMetrics"
2766
  msgstr ""
2767
 
2768
- #: languages/vue.php:693
2769
  msgid "Enhanced Link Attribution is enabled the moment you set up ExactMetrics"
2770
  msgstr ""
2771
 
2772
- #: languages/vue.php:696
2773
  msgid "+ Add Role"
2774
  msgstr ""
2775
 
2776
- #: languages/vue.php:699
2777
  msgid "Awesome, You're All Set!"
2778
  msgstr ""
2779
 
2780
- #: languages/vue.php:702
2781
  msgid "ExactMetrics is all set up and ready to use. We've verified that the tracking code is deployed properly and collecting data."
2782
  msgstr ""
2783
 
2784
  #. Translators: Make the text bold.
2785
- #: languages/vue.php:706
2786
  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."
2787
  msgstr ""
2788
 
2789
  #. Translators: Add link to blog.
2790
- #: languages/vue.php:710
2791
  msgid "%1$sSubscribe to the ExactMetrics blog%2$s for tips on how to get more traffic and grow your business."
2792
  msgstr ""
2793
 
2794
- #: languages/vue.php:713
2795
  msgid "Finish Setup & Exit Wizard"
2796
  msgstr ""
2797
 
2798
- #: languages/vue.php:716
2799
  msgid "Google Analytics"
2800
  msgstr ""
2801
 
2802
- #: languages/vue.php:719
2803
  msgid "Subscribe"
2804
  msgstr ""
2805
 
2806
- #: languages/vue.php:722
2807
  msgid "Checking your website..."
2808
  msgstr ""
2809
 
2810
- #: languages/vue.php:725
2811
  msgid "Show Overview Reports"
2812
  msgstr ""
2813
 
2814
- #: languages/vue.php:728
2815
  msgid "Show Publishers Reports"
2816
  msgstr ""
2817
 
2818
- #: languages/vue.php:731
2819
  msgid "Show eCommerce Reports"
2820
  msgstr ""
2821
 
2822
- #: languages/vue.php:734
2823
  msgid "Available in PRO version"
2824
  msgstr ""
2825
 
2826
- #: languages/vue.php:737
2827
  msgid "Show in widget mode"
2828
  msgstr ""
2829
 
2830
- #: languages/vue.php:740
2831
  msgid "Show in full-width mode"
2832
  msgstr ""
2833
 
2834
  #. Translators: Placeholder adds a line break.
2835
- #: languages/vue.php:744
2836
  msgid "You can customize your %sdate range only in the PRO version."
2837
  msgstr ""
2838
 
2839
- #: languages/vue.php:747
2840
  msgid "See All Reports"
2841
  msgstr ""
2842
 
2843
- #: languages/vue.php:750
2844
  msgid "Go to the Analytics Dashboard"
2845
  msgstr ""
2846
 
2847
- #: languages/vue.php:753
2848
  msgid "Ecommerce"
2849
  msgstr ""
2850
 
2851
  #. Translators: Add line break.
2852
- #: languages/vue.php:757
2853
  msgid "See All Your Important Store%s Metrics in One Place"
2854
  msgstr ""
2855
 
2856
- #: languages/vue.php:760
2857
  msgid "Get an Answer to All Your Top Ecommerce Questions From a Single Report"
2858
  msgstr ""
2859
 
2860
- #: languages/vue.php:763
2861
  msgid "Here's what you get:"
2862
  msgstr ""
2863
 
2864
- #: languages/vue.php:766
2865
  msgid "See Your Conversion Rate to Improve Funnel"
2866
  msgstr ""
2867
 
2868
- #: languages/vue.php:769
2869
  msgid "See The Number of Transactions and Make Data-Driven Decisions"
2870
  msgstr ""
2871
 
2872
- #: languages/vue.php:772
2873
  msgid "See The Total Revenue to Track Growth"
2874
  msgstr ""
2875
 
2876
- #: languages/vue.php:775
2877
  msgid "See Average Order Value to Find Offer Opportunities"
2878
  msgstr ""
2879
 
2880
- #: languages/vue.php:778
2881
  msgid "See Your Top Products to See Individual Performance"
2882
  msgstr ""
2883
 
2884
- #: languages/vue.php:781
2885
  msgid "See your Top Conversion Sources and Focus on what's Working"
2886
  msgstr ""
2887
 
2888
- #: languages/vue.php:784
2889
  msgid "See The Time it Takes for Customers to Purchase"
2890
  msgstr ""
2891
 
2892
- #: languages/vue.php:787
2893
  msgid "See How Many Sessions are Needed for a Purchase"
2894
  msgstr ""
2895
 
2896
- #: languages/vue.php:790
2897
  msgid "Affiliate Links"
2898
  msgstr ""
2899
 
2900
  #. Translators: Add links to documentation.
2901
- #: languages/vue.php:794
2902
  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."
2903
  msgstr ""
2904
 
2905
- #: languages/vue.php:797
2906
  msgid "Our affiliate link tracking works by setting path for internal links to track as outbound links."
2907
  msgstr ""
2908
 
2909
- #: languages/vue.php:800
2910
  msgid "Cross Domain Tracking"
2911
  msgstr ""
2912
 
2913
  #. Translators: Add links to documentation.
2914
- #: languages/vue.php:804
2915
  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."
2916
  msgstr ""
2917
 
2918
- #: languages/vue.php:807
2919
  msgid "Demographics"
2920
  msgstr ""
2921
 
2922
- #: languages/vue.php:810
2923
  msgid "Enable Demographics and Interests Reports for Remarketing and Advertising"
2924
  msgstr ""
2925
 
2926
- #: languages/vue.php:813
2927
  msgid "Anonymize IP Addresses"
2928
  msgstr ""
2929
 
2930
- #: languages/vue.php:816
2931
  msgid "Link Attribution"
2932
  msgstr ""
2933
 
2934
- #: languages/vue.php:819
2935
  msgid "Enable Enhanced Link Attribution"
2936
  msgstr ""
2937
 
2938
- #: languages/vue.php:822
2939
  msgid "Enable Anchor Tracking"
2940
  msgstr ""
2941
 
2942
- #: languages/vue.php:825
2943
  msgid "Enable allowAnchor"
2944
  msgstr ""
2945
 
2946
- #: languages/vue.php:828
2947
  msgid "Enable allowLinker"
2948
  msgstr ""
2949
 
2950
- #: languages/vue.php:831
2951
  msgid "Enable Tag Links in RSS"
2952
  msgstr ""
2953
 
2954
- #: languages/vue.php:834
2955
  msgid "File Downloads"
2956
  msgstr ""
2957
 
2958
- #: languages/vue.php:837
2959
  msgid "Extensions of Files to Track as Downloads"
2960
  msgstr ""
2961
 
2962
- #: languages/vue.php:840
2963
  msgid "ExactMetrics will send an event to Google Analytics if a link to a file has one of the above extensions."
2964
  msgstr ""
2965
 
2966
  #. Translators: Add links to documentation.
2967
- #: languages/vue.php:844
2968
  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."
2969
  msgstr ""
2970
 
2971
  #. Translators: Add links to documentation.
2972
- #: languages/vue.php:848
2973
  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."
2974
  msgstr ""
2975
 
2976
  #. Translators: Add links to documentation.
2977
- #: languages/vue.php:852
2978
  msgid "Add %1$sEnhanced Link Attribution%2$s to your tracking code."
2979
  msgstr ""
2980
 
2981
- #: languages/vue.php:855
2982
  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."
2983
  msgstr ""
2984
 
2985
  #. Translators: Add links to documentation.
2986
- #: languages/vue.php:859
2987
  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."
2988
  msgstr ""
2989
 
2990
  #. Translators: Add links to documentation.
2991
- #: languages/vue.php:863
2992
  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."
2993
  msgstr ""
2994
 
2995
  #. Translators: Add links to documentation.
2996
- #: languages/vue.php:867
2997
  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."
2998
  msgstr ""
2999
 
3000
- #: languages/vue.php:870
3001
  msgid "Add domain"
3002
  msgstr ""
3003
 
3004
  #. Translators: Domain name example.
3005
- #: languages/vue.php:874
3006
  msgid "Domain (example: %s)"
3007
  msgstr ""
3008
 
3009
  #. Translators: Current domain name that should not be used.
3010
- #: languages/vue.php:878
3011
  msgid "Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s )."
3012
  msgstr ""
3013
 
3014
- #: languages/vue.php:881
3015
  msgid "There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data."
3016
  msgstr ""
3017
 
3018
- #: languages/vue.php:884
3019
  msgid "No addons found."
3020
  msgstr ""
3021
 
3022
- #: languages/vue.php:887
3023
  msgid "Refresh Addons"
3024
  msgstr ""
3025
 
3026
- #: languages/vue.php:890
3027
- #: languages/vue.php:1573
3028
  msgid "ExactMetrics Addons"
3029
  msgstr ""
3030
 
3031
  #. Translators: Adds a line break.
3032
- #: languages/vue.php:894
3033
  msgid "Upgrade to Pro to unlock addons and other great features."
3034
  msgstr ""
3035
 
3036
- #: languages/vue.php:897
3037
  msgid "As a valued ExactMetrics Lite user you receive 50% off, automaticaly applied at checkout!"
3038
  msgstr ""
3039
 
3040
- #: languages/vue.php:900
3041
  msgid "Refreshing Addons"
3042
  msgstr ""
3043
 
3044
  #. Translators: placeholders make text small.
3045
- #: languages/vue.php:904
3046
  msgid "Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s"
3047
  msgstr ""
3048
 
3049
  #. Translators: placeholders make text small.
3050
- #: languages/vue.php:908
3051
  msgid "Disabled %1$s- Hide reports and dashboard widget.%2$s"
3052
  msgstr ""
3053
 
3054
  #. Translators: placeholders make text small.
3055
- #: languages/vue.php:912
3056
  msgid "Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s"
3057
  msgstr ""
3058
 
3059
  #. Translators: placeholders make text small.
3060
- #: languages/vue.php:916
3061
  msgid "Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s"
3062
  msgstr ""
3063
 
3064
  #. Translators: placeholders make text small.
3065
- #: languages/vue.php:920
3066
  msgid "None %1$s- Manually update everything.%2$s"
3067
  msgstr ""
3068
 
3069
  #. Translators: Adds a link to the general settings tab.
3070
- #: languages/vue.php:924
3071
  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."
3072
  msgstr ""
3073
 
3074
- #: languages/vue.php:927
3075
  msgid "Permissions"
3076
  msgstr ""
3077
 
3078
- #: languages/vue.php:930
3079
  msgid "Allow These User Roles to See Reports"
3080
  msgstr ""
3081
 
3082
- #: languages/vue.php:933
3083
  msgid "Users that have at least one of these roles will be able to view the reports."
3084
  msgstr ""
3085
 
3086
- #: languages/vue.php:936
3087
  msgid "Allow These User Roles to Save Settings"
3088
  msgstr ""
3089
 
3090
- #: languages/vue.php:939
3091
  msgid "Users that have at least one of these roles will be able to view and save the settings panel."
3092
  msgstr ""
3093
 
3094
- #: languages/vue.php:942
3095
  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."
3096
  msgstr ""
3097
 
3098
- #: languages/vue.php:945
3099
  msgid "Exclude These User Roles From Tracking"
3100
  msgstr ""
3101
 
3102
- #: languages/vue.php:948
3103
  msgid "Users that have at least one of these roles will not be tracked into Google Analytics."
3104
  msgstr ""
3105
 
3106
- #: languages/vue.php:951
3107
  msgid "Custom code"
3108
  msgstr ""
3109
 
3110
  #. Translators: Adds a link to the Google reference.
3111
- #: languages/vue.php:955
3112
  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."
3113
  msgstr ""
3114
 
3115
- #: languages/vue.php:961
3116
  msgid "Automatic Updates"
3117
  msgstr ""
3118
 
3119
- #: languages/vue.php:964
3120
  msgid "You must have the \"unfiltered_html\" capability to view/edit this setting."
3121
  msgstr ""
3122
 
3123
- #: languages/vue.php:967
3124
  msgid "Hide Admin Bar Reports"
3125
  msgstr ""
3126
 
3127
  #. Translators: placeholders make text small.
3128
- #: languages/vue.php:971
3129
  msgid "Enabled %1$s- Show reports and dashboard widget.%2$s"
3130
  msgstr ""
3131
 
3132
- #: languages/vue.php:974
3133
  msgid "Unlock Form Tracking"
3134
  msgstr ""
3135
 
3136
- #: languages/vue.php:977
3137
  msgid "See who's viewing and submitting your forms, so you can increase your conversion rate."
3138
  msgstr ""
3139
 
3140
- #: languages/vue.php:980
3141
  msgid "Use Google Optimize to retarget your website visitors and perform A/B split tests with ease."
3142
  msgstr ""
3143
 
3144
- #: languages/vue.php:983
3145
  msgid "Add Custom Dimensions and track who's the most popular author on your site, which post types get the most traffic, and more"
3146
  msgstr ""
3147
 
3148
- #: languages/vue.php:986
3149
  msgid "One-click Complete eCommerce tracking"
3150
  msgstr ""
3151
 
3152
- #: languages/vue.php:989
3153
  msgid "Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required"
3154
  msgstr ""
3155
 
3156
- #: languages/vue.php:992
3157
  msgid "Forms Tracking"
3158
  msgstr ""
3159
 
3160
- #: languages/vue.php:995
3161
  msgid "One-click Form Events Tracking"
3162
  msgstr ""
3163
 
3164
- #: languages/vue.php:998
3165
  msgid "WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin"
3166
  msgstr ""
3167
 
3168
- #: languages/vue.php:1001
3169
  msgid "WordPress Admin Area Reports"
3170
  msgstr ""
3171
 
3172
- #: languages/vue.php:1004
3173
  msgid "Standard Reports"
3174
  msgstr ""
3175
 
3176
- #: languages/vue.php:1007
3177
  msgid "Overview Reports for the last 30 days."
3178
  msgstr ""
3179
 
3180
- #: languages/vue.php:1010
3181
  msgid "Advanced Reports"
3182
  msgstr ""
3183
 
3184
- #: languages/vue.php:1013
3185
  msgid "Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection"
3186
  msgstr ""
3187
 
3188
- #: languages/vue.php:1016
3189
  msgid "Dashboard Widget"
3190
  msgstr ""
3191
 
3192
- #: languages/vue.php:1019
3193
  msgid "Basic Widget"
3194
  msgstr ""
3195
 
3196
- #: languages/vue.php:1022
3197
  msgid "Overview Report Synopsis"
3198
  msgstr ""
3199
 
3200
- #: languages/vue.php:1025
3201
  msgid "Advanced Dashboard Widget"
3202
  msgstr ""
3203
 
3204
- #: languages/vue.php:1028
3205
  msgid "Includes the complete Overview report, Publisher reports and 6 different eCommerce reports"
3206
  msgstr ""
3207
 
3208
- #: languages/vue.php:1031
3209
  msgid "Publisher Reports"
3210
  msgstr ""
3211
 
3212
- #: languages/vue.php:1034
3213
  msgid "Advanced Publisher Reports & Tracking"
3214
  msgstr ""
3215
 
3216
- #: languages/vue.php:1037
3217
  msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
3218
  msgstr ""
3219
 
3220
- #: languages/vue.php:1040
3221
  msgid "Not Available"
3222
  msgstr ""
3223
 
3224
- #: languages/vue.php:1043
3225
  msgid "Complete Custom Dimensions Tracking"
3226
  msgstr ""
3227
 
3228
- #: languages/vue.php:1046
3229
  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"
3230
  msgstr ""
3231
 
3232
- #: languages/vue.php:1052
3233
  msgid "Limited Support"
3234
  msgstr ""
3235
 
3236
- #: languages/vue.php:1055
3237
  msgid "Priority Support"
3238
  msgstr ""
3239
 
3240
- #: languages/vue.php:1058
3241
  msgid "Get the most out of ExactMetrics by upgrading to Pro and unlocking all of the powerful features."
3242
  msgstr ""
3243
 
3244
- #: languages/vue.php:1061
3245
  msgid "Feature"
3246
  msgstr ""
3247
 
3248
- #: languages/vue.php:1064
3249
  msgid "Lite"
3250
  msgstr ""
3251
 
3252
- #: languages/vue.php:1067
3253
  msgid "Pro"
3254
  msgstr ""
3255
 
3256
- #: languages/vue.php:1070
3257
  msgid "Get ExactMetrics Pro Today and Unlock all the Powerful Features"
3258
  msgstr ""
3259
 
3260
- #: languages/vue.php:1073
3261
  msgid "Bonus: ExactMetrics Lite users get 50% off regular price, automatically applied at checkout."
3262
  msgstr ""
3263
 
3264
- #: languages/vue.php:1076
3265
  msgid "Upgrade to Pro"
3266
  msgstr ""
3267
 
3268
- #: languages/vue.php:1079
3269
  msgid "Universal Tracking"
3270
  msgstr ""
3271
 
3272
- #: languages/vue.php:1082
3273
  msgid "Included"
3274
  msgstr ""
3275
 
3276
- #: languages/vue.php:1085
3277
  msgid "Custom Google Analytics Link Tracking"
3278
  msgstr ""
3279
 
3280
- #: languages/vue.php:1088
3281
  msgid "Standard Tracking"
3282
  msgstr ""
3283
 
3284
- #: languages/vue.php:1091
3285
  msgid "Advanced Tracking"
3286
  msgstr ""
3287
 
3288
- #: languages/vue.php:1094
3289
  msgid "Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking"
3290
  msgstr ""
3291
 
3292
- #: languages/vue.php:1097
3293
  msgid "Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers"
3294
  msgstr ""
3295
 
3296
- #: languages/vue.php:1100
3297
  msgid "No-Code-Needed Tracking Features"
3298
  msgstr ""
3299
 
3300
- #: languages/vue.php:1103
3301
  msgid "Basic Tracking Options"
3302
  msgstr ""
3303
 
3304
- #: languages/vue.php:1106
3305
  msgid "Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking"
3306
  msgstr ""
3307
 
3308
- #: languages/vue.php:1109
3309
  msgid "Advanced Tracking Options"
3310
  msgstr ""
3311
 
3312
- #: languages/vue.php:1112
3313
  msgid "Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors"
3314
  msgstr ""
3315
 
3316
- #: languages/vue.php:1115
3317
  msgid "Sessions"
3318
  msgstr ""
3319
 
3320
  #. Translators: Line break.
3321
- #: languages/vue.php:1119
3322
  msgid "Unique %s Sessions"
3323
  msgstr ""
3324
 
3325
- #: languages/vue.php:1122
3326
  msgid "Pageviews"
3327
  msgstr ""
3328
 
3329
  #. Translators: Line break.
3330
- #: languages/vue.php:1126
3331
  msgid "Unique %s Pageviews"
3332
  msgstr ""
3333
 
3334
- #: languages/vue.php:1129
3335
  msgid "A session is the browsing session of a single user to your site."
3336
  msgstr ""
3337
 
3338
- #: languages/vue.php:1132
3339
  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."
3340
  msgstr ""
3341
 
3342
- #: languages/vue.php:1135
3343
  msgid "Total duration of all sessions (in seconds) / number of sessions."
3344
  msgstr ""
3345
 
3346
- #: languages/vue.php:1138
3347
  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."
3348
  msgstr ""
3349
 
3350
- #: languages/vue.php:1141
3351
  msgid "Avg. Session Duration"
3352
  msgstr ""
3353
 
3354
- #: languages/vue.php:1144
3355
  msgid "Bounce Rate"
3356
  msgstr ""
3357
 
3358
- #: languages/vue.php:1147
3359
  msgid "ExactMetrics Recommends WPForms"
3360
  msgstr ""
3361
 
3362
- #: languages/vue.php:1150
3363
  msgid "Built by the folks behind ExactMetrics, WPForms is the most beginner friendly form plugin in the market."
3364
  msgstr ""
3365
 
3366
- #: languages/vue.php:1153
3367
  msgid "Used on over 3,000,000 websites!"
3368
  msgstr ""
3369
 
3370
- #: languages/vue.php:1156
3371
  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!"
3372
  msgstr ""
3373
 
3374
- #: languages/vue.php:1159
3375
  msgid "Skip this Step"
3376
  msgstr ""
3377
 
3378
- #: languages/vue.php:1162
3379
  msgid "Continue & Install WPForms"
3380
  msgstr ""
3381
 
3382
- #: languages/vue.php:1165
3383
  msgid "Installing..."
3384
  msgstr ""
3385
 
3386
- #: languages/vue.php:1168
3387
  msgid "Hello and Welcome to ExactMetrics, the Best Google Analytics Plugin for WordPress."
3388
  msgstr ""
3389
 
3390
- #: languages/vue.php:1171
3391
  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."
3392
  msgstr ""
3393
 
3394
- #: languages/vue.php:1174
3395
  msgid "The ExactMetrics Team"
3396
  msgstr ""
3397
 
3398
- #: languages/vue.php:1177
3399
  msgid "Welcome to ExactMetrics!"
3400
  msgstr ""
3401
 
3402
- #: languages/vue.php:1180
3403
  msgid "Let's get you set up."
3404
  msgstr ""
3405
 
3406
- #: languages/vue.php:1183
3407
  msgid "Which category best describes your website?"
3408
  msgstr ""
3409
 
3410
- #: languages/vue.php:1186
3411
  msgid "We will recommend the optimal settings for ExactMetrics based on your choice."
3412
  msgstr ""
3413
 
3414
- #: languages/vue.php:1189
3415
  msgid "Business Website"
3416
  msgstr ""
3417
 
3418
  #. Translators: Make text bold.
3419
- #: languages/vue.php:1193
3420
  msgid "Publisher %1$s(Blog)%2$s"
3421
  msgstr ""
3422
 
3423
  #. Translators: Placeholders make the text green.
3424
- #: languages/vue.php:1197
3425
  msgid "Bonus: ExactMetrics Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout."
3426
  msgstr ""
3427
 
3428
- #: languages/vue.php:1200
3429
  msgid "How to Connect to Google Analytics"
3430
  msgstr ""
3431
 
3432
- #: languages/vue.php:1203
3433
  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."
3434
  msgstr ""
3435
 
3436
- #: languages/vue.php:1206
3437
  msgid "Guide and Checklist for Advanced Insights"
3438
  msgstr ""
3439
 
3440
- #: languages/vue.php:1209
3441
  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."
3442
  msgstr ""
3443
 
3444
- #: languages/vue.php:1212
3445
  msgid "GDPR Guide"
3446
  msgstr ""
3447
 
3448
- #: languages/vue.php:1215
3449
  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. "
3450
  msgstr ""
3451
 
3452
- #: languages/vue.php:1218
3453
  msgid "How to Install and Activate ExactMetrics Addons"
3454
  msgstr ""
3455
 
3456
- #: languages/vue.php:1221
3457
  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."
3458
  msgstr ""
3459
 
3460
- #: languages/vue.php:1224
3461
  msgid "Enabling eCommerce Tracking and Reports"
3462
  msgstr ""
3463
 
3464
- #: languages/vue.php:1227
3465
  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."
3466
  msgstr ""
3467
 
3468
- #: languages/vue.php:1230
3469
  msgid "Read Documentation"
3470
  msgstr ""
3471
 
3472
  #. Translators: Makes the text bold.
3473
- #: languages/vue.php:1234
3474
  msgid "%1$sEnhanced eCommerce Tracking%2$s - 1-click Google Analyticks Enhanced Ecommerce trackin for WooCommerce, Easy Digital Download & MemberPress."
3475
  msgstr ""
3476
 
3477
  #. Translators: Makes the text bold.
3478
- #: languages/vue.php:1238
3479
  msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post type, users, and other events with 1-click."
3480
  msgstr ""
3481
 
3482
- #: languages/vue.php:1241
3483
  msgid "Loading settings"
3484
  msgstr ""
3485
 
3486
- #: languages/vue.php:1244
3487
  msgid "Forms Report"
3488
  msgstr ""
3489
 
3490
- #: languages/vue.php:1247
3491
  msgid "See Reports for Any Contact Form Plugin or Sign-up Form"
3492
  msgstr ""
3493
 
3494
- #: languages/vue.php:1250
3495
  msgid "See Your Top Converting Forms and Optimize"
3496
  msgstr ""
3497
 
3498
- #: languages/vue.php:1253
3499
  msgid "See Your Forms Impressions Count to Find the Best Placement"
3500
  msgstr ""
3501
 
3502
- #: languages/vue.php:1256
3503
  msgid "Real-Time Report"
3504
  msgstr ""
3505
 
3506
- #: languages/vue.php:1259
3507
  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."
3508
  msgstr ""
3509
 
3510
- #: languages/vue.php:1262
3511
  msgid "See Your Active Visitors and Track Their Behaviour to Optimize"
3512
  msgstr ""
3513
 
3514
- #: languages/vue.php:1265
3515
  msgid "See Your Top Pages Immediately After Making Changes"
3516
  msgstr ""
3517
 
3518
- #: languages/vue.php:1268
3519
  msgid "See Your Top Referral Sources and Adapt Faster"
3520
  msgstr ""
3521
 
3522
- #: languages/vue.php:1271
3523
  msgid "See Your Traffic Demographics"
3524
  msgstr ""
3525
 
3526
- #: languages/vue.php:1274
3527
  msgid "Get Fresh Reports Data Every 60 Seconds"
3528
  msgstr ""
3529
 
3530
- #: languages/vue.php:1277
3531
  msgid "See Where Your Visitors are Connecting From (country & city)"
3532
  msgstr ""
3533
 
3534
- #: languages/vue.php:1280
3535
  msgid "Custom Dimensions Report"
3536
  msgstr ""
3537
 
3538
- #: languages/vue.php:1283
3539
  msgid "Unlock the Dimensions Report and decide what data is important using your own custom tracking parameters"
3540
  msgstr ""
3541
 
3542
- #: languages/vue.php:1286
3543
  msgid "The Dimensions report allows you to easily see what's working right inside your WordPress dashboard."
3544
  msgstr ""
3545
 
3546
- #: languages/vue.php:1289
3547
  msgid "Author tracking to see which author’s posts generate the most traffic"
3548
  msgstr ""
3549
 
3550
- #: languages/vue.php:1292
3551
  msgid "Post Type tracking to see which WordPress post types perform better"
3552
  msgstr ""
3553
 
3554
- #: languages/vue.php:1295
3555
  msgid "Category tracking to see which sections of your sites are the most popular"
3556
  msgstr ""
3557
 
3558
- #: languages/vue.php:1298
3559
  msgid "SEO score tracking to see which blog SEO scores are the most popular"
3560
  msgstr ""
3561
 
3562
- #: languages/vue.php:1301
3563
  msgid "Focus Keyword tracking to see which of your content is doing well in search engines."
3564
  msgstr ""
3565
 
3566
- #: languages/vue.php:1304
3567
  msgid "Tag tracking to determine which topics are the most engaging to for your website visitors."
3568
  msgstr ""
3569
 
3570
- #: languages/vue.php:1307
3571
  msgid "Search Console Report"
3572
  msgstr ""
3573
 
3574
- #: languages/vue.php:1310
3575
  msgid "See exactly how people find tour website, which keywords they searched for, how many times the results were viewed, and more."
3576
  msgstr ""
3577
 
3578
- #: languages/vue.php:1313
3579
  msgid "See Your Top Google Search Terms and Optimize Content"
3580
  msgstr ""
3581
 
3582
- #: languages/vue.php:1316
3583
  msgid "See The Number of Clicks and Track Interests"
3584
  msgstr ""
3585
 
3586
- #: languages/vue.php:1319
3587
  msgid "See The Click-Through-Ratio and Improve SEO"
3588
  msgstr ""
3589
 
3590
- #: languages/vue.php:1322
3591
  msgid "See The Average Results Position and Focus on what works."
3592
  msgstr ""
3593
 
3594
- #: languages/vue.php:1325
3595
  msgid "Ecommerce Report"
3596
  msgstr ""
3597
 
3598
- #: languages/vue.php:1328
3599
  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."
3600
  msgstr ""
3601
 
3602
- #: languages/vue.php:1331
3603
  msgid "See Your Top Conversion Sources and Focus on what's Working"
3604
  msgstr ""
3605
 
3606
- #: languages/vue.php:1334
3607
  msgid "File imported"
3608
  msgstr ""
3609
 
3610
- #: languages/vue.php:1337
3611
  msgid "Settings successfully updated!"
3612
  msgstr ""
3613
 
3614
- #: languages/vue.php:1340
3615
  msgid "Error importing settings"
3616
  msgstr ""
3617
 
3618
- #: languages/vue.php:1343
3619
  msgid "Please choose a .json file generated by a ExactMetrics settings export."
3620
  msgstr ""
3621
 
3622
- #: languages/vue.php:1346
3623
  msgid "Import/Export"
3624
  msgstr ""
3625
 
3626
- #: languages/vue.php:1349
3627
  msgid "Import"
3628
  msgstr ""
3629
 
3630
- #: languages/vue.php:1352
3631
  msgid "Import settings from another ExactMetrics website."
3632
  msgstr ""
3633
 
3634
- #: languages/vue.php:1355
3635
  msgid "Export"
3636
  msgstr ""
3637
 
3638
- #: languages/vue.php:1358
3639
  msgid "Export settings to import into another ExactMetrics install."
3640
  msgstr ""
3641
 
3642
- #: languages/vue.php:1361
3643
  msgid "Import Settings"
3644
  msgstr ""
3645
 
3646
- #: languages/vue.php:1364
3647
  msgid "Export Settings"
3648
  msgstr ""
3649
 
3650
- #: languages/vue.php:1367
3651
  msgid "Please choose a file to import"
3652
  msgstr ""
3653
 
3654
- #: languages/vue.php:1370
3655
  msgid "Use the filepicker below to select the settings export file from another site."
3656
  msgstr ""
3657
 
3658
- #: languages/vue.php:1373
3659
  msgid "Use the button below to export a file with your ExactMetrics settings."
3660
  msgstr ""
3661
 
3662
- #: languages/vue.php:1376
3663
  msgid "Choose file"
3664
  msgstr ""
3665
 
3666
- #: languages/vue.php:1379
3667
  msgid "No file chosen"
3668
  msgstr ""
3669
 
3670
- #: languages/vue.php:1382
3671
  msgid "Uploading file..."
3672
  msgstr ""
3673
 
3674
- #: languages/vue.php:1385
3675
  msgid "Custom Campaign Parameters"
3676
  msgstr ""
3677
 
3678
- #: languages/vue.php:1388
3679
  msgid "The URL builder helps you add parameters to your URLs you use in custom web or email ad campaigns."
3680
  msgstr ""
3681
 
3682
- #: languages/vue.php:1391
3683
  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."
3684
  msgstr ""
3685
 
3686
  #. Translators: Marks the field as required.
3687
- #: languages/vue.php:1395
3688
  msgid "Website URL %s"
3689
  msgstr ""
3690
 
3691
  #. Translators: Display the current website url in italic.
3692
- #: languages/vue.php:1399
3693
  msgid "The full website URL (e.g. %1$s %2$s%3$s)"
3694
  msgstr ""
3695
 
3696
  #. Translators: Marks the field as required.
3697
- #: languages/vue.php:1403
3698
  msgid "Campaign Source %s"
3699
  msgstr ""
3700
 
3701
  #. Translators: Make the text italic.
3702
- #: languages/vue.php:1407
3703
  msgid "Enter a referrer (e.g. %1$sfacebook, newsletter, google%2$s)"
3704
  msgstr ""
3705
 
3706
  #. Translators: Make the text italic.
3707
- #: languages/vue.php:1411
3708
  msgid "Enter a marketing medium (e.g. %1$scpc, banner, email%2$s)"
3709
  msgstr ""
3710
 
3711
  #. Translators: Make the text italic.
3712
- #: languages/vue.php:1415
3713
  msgid "Enter a name to easily identify (e.g. %1$sspring_sale%2$s)"
3714
  msgstr ""
3715
 
3716
- #: languages/vue.php:1418
3717
  msgid "Enter the paid keyword"
3718
  msgstr ""
3719
 
3720
- #: languages/vue.php:1421
3721
  msgid "Enter something to differentiate ads"
3722
  msgstr ""
3723
 
3724
- #: languages/vue.php:1424
3725
  msgid "Use Fragment"
3726
  msgstr ""
3727
 
3728
  #. Translators: Make the text bold.
3729
- #: languages/vue.php:1428
3730
  msgid "Set the parameters in the fragment portion of the URL %1$s(not recommended)%2$s"
3731
  msgstr ""
3732
 
3733
- #: languages/vue.php:1431
3734
  msgid "URL to use"
3735
  msgstr ""
3736
 
3737
- #: languages/vue.php:1434
3738
  msgid "(Updates automatically)"
3739
  msgstr ""
3740
 
3741
- #: languages/vue.php:1437
3742
  msgid "Copy to Clipboard"
3743
  msgstr ""
3744
 
3745
- #: languages/vue.php:1440
3746
  msgid "More Information & Examples"
3747
  msgstr ""
3748
 
3749
- #: languages/vue.php:1443
3750
  msgid "The following table gives a detailed explanation and example of each of the campaign parameters."
3751
  msgstr ""
3752
 
3753
- #: languages/vue.php:1446
3754
  msgid "Campaign Source"
3755
  msgstr ""
3756
 
3757
- #: languages/vue.php:1449
3758
  msgid "Required. Use utm_source to identify a search engine, newsletter name, or other source."
3759
  msgstr ""
3760
 
3761
- #: languages/vue.php:1452
3762
  msgid "Campaign Medium"
3763
  msgstr ""
3764
 
3765
- #: languages/vue.php:1455
3766
  msgid "Use utm_medium to identify a medium such as email or cost-per-click."
3767
  msgstr ""
3768
 
3769
- #: languages/vue.php:1458
3770
  msgid "Campaign Name"
3771
  msgstr ""
3772
 
3773
- #: languages/vue.php:1461
3774
  msgid "Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign."
3775
  msgstr ""
3776
 
3777
- #: languages/vue.php:1464
3778
  msgid "Campaign Term"
3779
  msgstr ""
3780
 
3781
- #: languages/vue.php:1467
3782
  msgid "Used for paid search. Use utm_term to note the keywords for this ad."
3783
  msgstr ""
3784
 
3785
- #: languages/vue.php:1470
3786
  msgid "Campaign Content"
3787
  msgstr ""
3788
 
3789
- #: languages/vue.php:1473
3790
  msgid "Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL."
3791
  msgstr ""
3792
 
3793
  #. Translators: Example.
3794
- #: languages/vue.php:1477
3795
  msgid "Example: %s"
3796
  msgstr ""
3797
 
3798
  #. Translators: Examples.
3799
- #: languages/vue.php:1481
3800
  msgid "Examples: %s"
3801
  msgstr ""
3802
 
3803
- #: languages/vue.php:1484
3804
  msgid "About Campaigns"
3805
  msgstr ""
3806
 
3807
- #: languages/vue.php:1487
3808
  msgid "About Custom Campaigns"
3809
  msgstr ""
3810
 
3811
- #: languages/vue.php:1490
3812
  msgid "Best Practices for Creating Custom Campaigns"
3813
  msgstr ""
3814
 
3815
- #: languages/vue.php:1493
3816
  msgid "About the Referral Traffic Report"
3817
  msgstr ""
3818
 
3819
- #: languages/vue.php:1496
3820
  msgid "About Traffic Source Dimensions"
3821
  msgstr ""
3822
 
3823
- #: languages/vue.php:1499
3824
  msgid "AdWords Auto-Tagging"
3825
  msgstr ""
3826
 
3827
- #: languages/vue.php:1502
3828
  msgid "Additional Information"
3829
  msgstr ""
3830
 
3831
- #: languages/vue.php:1505
3832
  msgid "Unlock the Publisher Report and Focus on the Content That Matters"
3833
  msgstr ""
3834
 
3835
- #: languages/vue.php:1508
3836
  msgid "See Your Top Landing Pages to Improve Engagement"
3837
  msgstr ""
3838
 
3839
- #: languages/vue.php:1511
3840
  msgid "See Your Top Exit Pages to Reduce Abandonment"
3841
  msgstr ""
3842
 
3843
- #: languages/vue.php:1514
3844
  msgid "See Your Top Outbound Links to Find New Revenue Opportunities"
3845
  msgstr ""
3846
 
3847
- #: languages/vue.php:1517
3848
  msgid "See Your Top Affiliate Links and Focus on what’s working"
3849
  msgstr ""
3850
 
3851
- #: languages/vue.php:1520
3852
  msgid "See Your Top Downloads and Improve Conversions"
3853
  msgstr ""
3854
 
3855
- #: languages/vue.php:1523
3856
  msgid "See Audience Demographic Report (Age / Gender / Interests)"
3857
  msgstr ""
3858
 
3859
  #. Translators: Placeholders are used for making text bold and adding a link.
3860
- #: languages/vue.php:1527
3861
  msgid "You're using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s."
3862
  msgstr ""
3863
 
3864
- #: languages/vue.php:1530
3865
  msgid "Recommended Addons"
3866
  msgstr ""
3867
 
3868
  #. Translators: Add a link to upgrade and make the text green.
3869
- #: languages/vue.php:1534
3870
  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!"
3871
  msgstr ""
3872
 
3873
- #: languages/vue.php:1537
3874
  msgid "Upgrade to PRO Now"
3875
  msgstr ""
3876
 
3877
- #: languages/vue.php:1540
3878
  msgid "See who’s viewing and submitting your forms, so you can increase your converion rate. Lorem ipsum dolor sit amet, consectetur adipiscing elit."
3879
  msgstr ""
3880
 
3881
- #: languages/vue.php:1543
3882
  msgid "See All Your Important Store Metrics in One Place. Lorem ipsum dolor sit amet, consectetur adipiscing elit."
3883
  msgstr ""
3884
 
3885
- #: languages/vue.php:1546
3886
  msgid "... and more:"
3887
  msgstr ""
3888
 
3889
- #: languages/vue.php:1549
3890
  msgid "Dimensions- Track authors, categories, trags, searches, users and more."
3891
  msgstr ""
3892
 
3893
- #: languages/vue.php:1552
3894
  msgid "EU Compliance- Improve compliance with GDPR and other privacy regulations."
3895
  msgstr ""
3896
 
3897
- #: languages/vue.php:1555
3898
  msgid "AMP- ExactMetrics Google AMP Addon enables accurate tracking of all mobile visitors to your AMP-enabled pages."
3899
  msgstr ""
3900
 
3901
- #: languages/vue.php:1558
3902
  msgid "Facebook Instant Articles- Integrate Google Analytics and Facebook Instant Articles with just one click."
3903
  msgstr ""
3904
 
3905
- #: languages/vue.php:1561
3906
  msgid "eCommerce- Sales tracking for your WooCommerce, Easy Digital Downloads, LifterLMS or MemberPress stores."
3907
  msgstr ""
3908
 
3909
- #: languages/vue.php:1564
3910
  msgid "Google Optimize- Easily enable Google Optimize on your WordPress site."
3911
  msgstr ""
3912
 
3913
- #: languages/vue.php:1567
3914
  msgid "Forms- Enable tracking of your form views, submissions and conversion rates."
3915
  msgstr ""
3916
 
3917
- #: languages/vue.php:1570
3918
  msgid "Ads- See who’s clicking on your Google Adsense banner ads."
3919
  msgstr ""
3920
 
3921
- #: languages/vue.php:1576
3922
  msgid "Search Addons"
3923
  msgstr ""
3924
 
3925
  #. Translators: Error status and error text.
3926
- #: languages/vue.php:1580
3927
  msgid "Can't deactivate the license. Error: %1$s, %2$s"
3928
  msgstr ""
3929
 
3930
  #. Translators: Error status and error text.
3931
- #: languages/vue.php:1584
3932
  msgid "Can't upgrade to PRO please try again. Error: %1$s, %2$s"
3933
  msgstr ""
3934
 
3935
- #: languages/vue.php:1587
3936
  msgid "You appear to be offline."
3937
  msgstr ""
3938
 
3939
  #. Translators: Error status and error text.
3940
- #: languages/vue.php:1591
3941
  msgid "Can't load license details. Error: %1$s, %2$s"
3942
  msgstr ""
3943
 
3944
- #: languages/vue.php:1594
3945
  msgid "Error loading license details"
3946
  msgstr ""
3947
 
3948
  #. Translators: Error status and error text.
3949
- #: languages/vue.php:1598
3950
  msgid "Can't verify the license. Error: %1$s, %2$s"
3951
  msgstr ""
3952
 
3953
  #. Translators: Error status and error text.
3954
- #: languages/vue.php:1602
3955
  msgid "Can't validate the license. Error: %1$s, %2$s"
3956
  msgstr ""
3957
 
3958
- #: languages/vue.php:1605
3959
  msgid "Last 30 Days Analytics for "
3960
  msgstr ""
3961
 
3962
- #: languages/vue.php:1608
3963
  msgid "Your Website"
3964
  msgstr ""
3965
 
3966
- #: languages/vue.php:1611
3967
  msgid "Avg. Duration"
3968
  msgstr ""
3969
 
3970
- #: languages/vue.php:1614
3971
  msgid "More data is available"
3972
  msgstr ""
3973
 
3974
- #: languages/vue.php:1617
3975
  msgid "Want to see page-specific stats?"
3976
  msgstr ""
3977
 
3978
- #: languages/vue.php:1620
3979
  msgid "You appear to be offline. WPForms not installed."
3980
  msgstr ""
3981
 
3982
  #. Translators: Error status and error text.
3983
- #: languages/vue.php:1624
3984
  msgid "Can't activate addon. Error: %1$s, %2$s"
3985
  msgstr ""
3986
 
3987
- #: languages/vue.php:1627
3988
  msgid "You appear to be offline. Addon not activated."
3989
  msgstr ""
3990
 
3991
  #. Translators: Error status and error text.
3992
- #: languages/vue.php:1631
3993
  msgid "Can't deactivate addon. Error: %1$s, %2$s"
3994
  msgstr ""
3995
 
3996
- #: languages/vue.php:1634
3997
  msgid "You appear to be offline. Addon not deactivated."
3998
  msgstr ""
3999
 
4000
  #. Translators: Error status and error text.
4001
- #: languages/vue.php:1638
4002
  msgid "Can't install plugin. Error: %1$s, %2$s"
4003
  msgstr ""
4004
 
4005
- #: languages/vue.php:1641
4006
  msgid "You appear to be offline. Plugin not installed."
4007
  msgstr ""
4008
 
4009
  #. Translators: Error status and error text.
4010
- #: languages/vue.php:1645
4011
  msgid "Can't install addon. Error: %1$s, %2$s"
4012
  msgstr ""
4013
 
4014
- #: languages/vue.php:1648
4015
  msgid "You appear to be offline. Addon not installed."
4016
  msgstr ""
4017
 
4018
  #. Translators: Error status and error text.
4019
- #: languages/vue.php:1652
4020
  msgid "Can't install WPForms. Error: %1$s, %2$s"
4021
  msgstr ""
4022
 
4023
- #: languages/vue.php:1655
4024
  msgid "Installing Addon"
4025
  msgstr ""
4026
 
4027
- #: languages/vue.php:1658
4028
  msgid "Activating Addon"
4029
  msgstr ""
4030
 
4031
- #: languages/vue.php:1661
4032
  msgid "Addon Activated"
4033
  msgstr ""
4034
 
4035
- #: languages/vue.php:1664
4036
  msgid "Loading report data"
4037
  msgstr ""
4038
 
4039
- #: languages/vue.php:1667
4040
  msgid "Please activate manually"
4041
  msgstr ""
4042
 
4043
  #. Translators: Adds the error status and status text.
4044
- #: languages/vue.php:1671
4045
  msgid "Error: %1$s, %2$s"
4046
  msgstr ""
4047
 
4048
- #: languages/vue.php:1674
4049
  msgid "Error Activating Addon"
4050
  msgstr ""
4051
 
4052
- #: languages/vue.php:1680
4053
  msgid "Dismiss"
4054
  msgstr ""
4055
 
4056
- #: languages/vue.php:1683
4057
  msgid "Redirecting"
4058
  msgstr ""
4059
 
4060
- #: languages/vue.php:1686
4061
  msgid "Please wait"
4062
  msgstr ""
4063
 
4064
- #: languages/vue.php:1689
4065
  msgid "activate"
4066
  msgstr ""
4067
 
4068
- #: languages/vue.php:1692
4069
  msgid "install"
4070
  msgstr ""
4071
 
4072
- #: languages/vue.php:1695
4073
  msgid "Visit addons page"
4074
  msgstr ""
4075
 
4076
- #: languages/vue.php:1698
4077
  msgid "Report Unavailable"
4078
  msgstr ""
4079
 
4080
  #. Translators: Install/Activate the addon.
4081
- #: languages/vue.php:1702
4082
  msgid "%s Addon"
4083
  msgstr ""
4084
 
4085
- #: languages/vue.php:1705
4086
  msgid "Go Back To Reports"
4087
  msgstr ""
4088
 
4089
- #: languages/vue.php:1708
4090
  msgid "Enable Enhanced eCommerce"
4091
  msgstr ""
4092
 
4093
- #: languages/vue.php:1711
4094
  msgid "Help Us Improve"
4095
  msgstr ""
4096
 
4097
- #: languages/vue.php:1714
4098
  msgid "Help us better understand our users and their website needs."
4099
  msgstr ""
4100
 
4101
  #. Translators: Adds a link to the documentation.
4102
- #: languages/vue.php:1718
4103
  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"
4104
  msgstr ""
4105
 
4106
- #: languages/vue.php:1721
4107
  msgid "License Key"
4108
  msgstr ""
4109
 
4110
  #. Translators: Makes text bold and adds smiley.
4111
- #: languages/vue.php:1725
4112
  msgid "You’re using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s"
4113
  msgstr ""
4114
 
4115
  #. Translators: Makes text green.
4116
- #: languages/vue.php:1729
4117
  msgid "As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout."
4118
  msgstr ""
4119
 
4120
- #: languages/vue.php:1732
4121
  msgid "Unlock All Features and Upgrade to Pro"
4122
  msgstr ""
4123
 
4124
- #: languages/vue.php:1735
4125
- #: languages/vue.php:2127
4126
  msgid "Connect ExactMetrics"
4127
  msgstr ""
4128
 
4129
- #: languages/vue.php:1738
4130
  msgid "Website profile"
4131
  msgstr ""
4132
 
4133
- #: languages/vue.php:1741
4134
  msgid "Active profile"
4135
  msgstr ""
4136
 
4137
- #: languages/vue.php:1744
4138
  msgid "Your website profile has been set at the network level of your WordPress Multisite."
4139
  msgstr ""
4140
 
4141
- #: languages/vue.php:1747
4142
  msgid "If you would like to use a different profile for this subsite, you can authenticate below."
4143
  msgstr ""
4144
 
4145
- #: languages/vue.php:1750
4146
  msgid "Skip and Keep Connection"
4147
  msgstr ""
4148
 
4149
- #: languages/vue.php:1753
4150
  msgid "Authenticating"
4151
  msgstr ""
4152
 
4153
- #: languages/vue.php:1756
4154
  msgid "New"
4155
  msgstr ""
4156
 
4157
- #: languages/vue.php:1759
4158
  msgid "Returning"
4159
  msgstr ""
4160
 
4161
- #: languages/vue.php:1762
4162
  msgid "Desktop"
4163
  msgstr ""
4164
 
4165
- #: languages/vue.php:1765
4166
  msgid "Tablet"
4167
  msgstr ""
4168
 
4169
- #: languages/vue.php:1768
4170
  msgid "Mobile"
4171
  msgstr ""
4172
 
4173
- #: languages/vue.php:1771
4174
  msgid "Top 10 Countries"
4175
  msgstr ""
4176
 
4177
- #: languages/vue.php:1774
4178
  msgid "View Countries Report"
4179
  msgstr ""
4180
 
4181
- #: languages/vue.php:1777
4182
  msgid "Top 10 Referrals"
4183
  msgstr ""
4184
 
4185
- #: languages/vue.php:1780
4186
  msgid "View All Referral Sources"
4187
  msgstr ""
4188
 
4189
- #: languages/vue.php:1783
4190
  msgid "View Full Posts/Pages Report"
4191
  msgstr ""
4192
 
4193
- #: languages/vue.php:1786
4194
  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."
4195
  msgstr ""
4196
 
4197
- #: languages/vue.php:1789
4198
  msgid "This list shows the top countries your website visitors are from."
4199
  msgstr ""
4200
 
4201
- #: languages/vue.php:1792
4202
  msgid "This list shows the top websites that send your website traffic, known as referral traffic."
4203
  msgstr ""
4204
 
4205
- #: languages/vue.php:1795
4206
  msgid "No options available"
4207
  msgstr ""
4208
 
4209
- #: languages/vue.php:1798
4210
  msgid "Network Active"
4211
  msgstr ""
4212
 
4213
- #: languages/vue.php:1801
4214
  msgid "Active"
4215
  msgstr ""
4216
 
4217
- #: languages/vue.php:1804
4218
  msgid "Inactive"
4219
  msgstr ""
4220
 
4221
  #. Translators: Placeholder for the addon status (installed, active, etc).
4222
- #: languages/vue.php:1808
4223
  msgid "Status: %s"
4224
  msgstr ""
4225
 
4226
- #: languages/vue.php:1811
4227
  msgid "Not Installed"
4228
  msgstr ""
4229
 
4230
  #. Translators: The name of the field that is throwing a validation error.
4231
- #: languages/vue.php:1815
4232
  msgid "%s can't be empty."
4233
  msgstr ""
4234
 
4235
- #: languages/vue.php:1818
4236
  msgid "Duplicate values are not allowed."
4237
  msgstr ""
4238
 
4239
- #: languages/vue.php:1821
4240
  msgid "Add Another Link Path"
4241
  msgstr ""
4242
 
4243
- #: languages/vue.php:1824
4244
  msgid "Remove row"
4245
  msgstr ""
4246
 
4247
- #: languages/vue.php:1827
4248
  msgid "Proceed"
4249
  msgstr ""
4250
 
4251
- #: languages/vue.php:1830
4252
  msgid "Connection Information"
4253
  msgstr ""
4254
 
4255
- #: languages/vue.php:1833
4256
  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."
4257
  msgstr ""
4258
 
4259
- #: languages/vue.php:1836
4260
  msgid "Hostname"
4261
  msgstr ""
4262
 
4263
- #: languages/vue.php:1839
4264
  msgid "FTP Username"
4265
  msgstr ""
4266
 
4267
- #: languages/vue.php:1842
4268
  msgid "FTP Password"
4269
  msgstr ""
4270
 
4271
- #: languages/vue.php:1845
4272
  msgid "This password will not be stored on the server."
4273
  msgstr ""
4274
 
4275
- #: languages/vue.php:1848
4276
  msgid "Connection Type"
4277
  msgstr ""
4278
 
4279
- #: languages/vue.php:1851
4280
  msgid "Cancel"
4281
  msgstr ""
4282
 
4283
- #: languages/vue.php:1854
4284
  msgid "Reset to default"
4285
  msgstr ""
4286
 
4287
- #: languages/vue.php:1857
4288
  msgid "The value entered does not match the required format"
4289
  msgstr ""
4290
 
4291
- #: languages/vue.php:1860
4292
  msgid "Google AMP"
4293
  msgstr ""
4294
 
4295
- #: languages/vue.php:1863
4296
  msgid "Want to use track users visiting your AMP pages? By upgrading to ExactMetrics Pro, you can enable AMP page tracking."
4297
  msgstr ""
4298
 
4299
- #: languages/vue.php:1866
4300
  msgid "Facebook Instant Articles"
4301
  msgstr ""
4302
 
4303
- #: languages/vue.php:1869
4304
  msgid "Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to ExactMetrics Pro."
4305
  msgstr ""
4306
 
4307
- #: languages/vue.php:1872
4308
  msgid "Forms Tracking help you see who’s viewing your forms, so you can increase conversions."
4309
  msgstr ""
4310
 
4311
- #: languages/vue.php:1875
4312
  msgid "Custom Dimensions show you popular categories, best time to publish, focus keywords, etc."
4313
  msgstr ""
4314
 
4315
- #: languages/vue.php:1878
4316
  msgid "Make Google Analytics GDPR compliant with our EU Compliance addon."
4317
  msgstr ""
4318
 
4319
- #: languages/vue.php:1881
4320
  msgid "Get real-time Google Analytics report right inside your WordPress dashboard."
4321
  msgstr ""
4322
 
4323
- #: languages/vue.php:1884
4324
  msgid "Use Google Optimize to easily perform A/B split tests on your site."
4325
  msgstr ""
4326
 
4327
- #: languages/vue.php:1887
4328
  msgid "See all your important store metrics in one place with Enhanced Ecommerce Tracking."
4329
  msgstr ""
4330
 
4331
- #: languages/vue.php:1890
4332
  msgid "Unlock search console report to see your top performing keywords in Google."
4333
  msgstr ""
4334
 
4335
- #: languages/vue.php:1893
4336
  msgid "Get Page Insights to see important metrics for individual posts / pages in WordPress."
4337
  msgstr ""
4338
 
4339
- #: languages/vue.php:1896
4340
  msgid "Publishers Report shows your top performing pages, audience demographics, and more."
4341
  msgstr ""
4342
 
4343
- #: languages/vue.php:1899
4344
  msgid "Get Scroll-Depth tracking to see how far users scroll on your pages before leaving."
4345
  msgstr ""
4346
 
4347
- #: languages/vue.php:1902
4348
  msgid "Upgrade to Pro »"
4349
  msgstr ""
4350
 
4351
- #: languages/vue.php:1905
4352
  msgid "Pro Tip:"
4353
  msgstr ""
4354
 
4355
  #. Translators: Number of days.
4356
- #: languages/vue.php:1910
4357
  msgid "vs. Previous Day"
4358
  msgstr ""
4359
 
4360
- #: languages/vue.php:1914
4361
  msgid "No change"
4362
  msgstr ""
4363
 
4364
- #: languages/vue.php:1917
4365
  msgid "Ads Tracking"
4366
  msgstr ""
4367
 
4368
- #: languages/vue.php:1920
4369
  msgid "Add Ads tracking to see who's clicking on your Google Ads, so you can increase your revenue."
4370
  msgstr ""
4371
 
4372
- #: languages/vue.php:1923
4373
  msgid ""
4374
  "The EU Compliance addon allows you to improve compliance with GDPR\n"
4375
  " and other privacy regulations."
4376
  msgstr ""
4377
 
4378
- #: languages/vue.php:1927
4379
  msgid "EU Compliance"
4380
  msgstr ""
4381
 
4382
  #. Translators: Error status and error text.
4383
- #: languages/vue.php:1931
4384
  msgid "Can't load errors. Error: %1$s, %2$s"
4385
  msgstr ""
4386
 
4387
  #. Translators: Error status and error text.
4388
- #: languages/vue.php:1935
4389
  msgid "Can't load settings. Error: %1$s, %2$s"
4390
  msgstr ""
4391
 
4392
  #. Translators: Error status and error text.
4393
- #: languages/vue.php:1939
4394
  msgid "Can't save settings. Error: %1$s, %2$s"
4395
  msgstr ""
4396
 
4397
- #: languages/vue.php:1942
4398
  msgid "Network error encountered. Settings not saved."
4399
  msgstr ""
4400
 
4401
- #: languages/vue.php:1945
4402
  msgid "Scroll Tracking"
4403
  msgstr ""
4404
 
4405
- #: languages/vue.php:1948
4406
  msgid "Scroll depth tracking in web analytics is one of those things you simply must do, especially if you have a content-heavy site."
4407
  msgstr ""
4408
 
4409
- #: languages/vue.php:1951
4410
  msgid "Performance"
4411
  msgstr ""
4412
 
4413
- #: languages/vue.php:1954
4414
  msgid "Adjust the sample rate so you don't exceed Google Analytics' processing limit. Can also be used to enable Google Optimize for A/B testing and personalization."
4415
  msgstr ""
4416
 
4417
- #: languages/vue.php:1958
4418
  msgid "Miscellaneous"
4419
  msgstr ""
4420
 
4421
- #: languages/vue.php:1962
4422
  msgid "Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes."
4423
  msgstr ""
4424
 
4425
- #: languages/vue.php:1966
4426
  msgid "Hide Announcements"
4427
  msgstr ""
4428
 
4429
- #: languages/vue.php:1969
4430
  msgid "Usage Tracking"
4431
  msgstr ""
4432
 
4433
- #: languages/vue.php:1972
4434
  msgid "By allowing us to track usage data we can better help you because we know with which WordPress configurations, themes and plugins we should test."
4435
  msgstr ""
4436
 
4437
- #: languages/vue.php:1975
4438
  msgid "Allow usage tracking"
4439
  msgstr ""
4440
 
4441
  #. Translators: Adds a link to the documentation.
4442
- #: languages/vue.php:1979
4443
  msgid "Complete documentation on usage tracking is available %1$shere%2$s."
4444
  msgstr ""
4445
 
4446
- #: languages/vue.php:1982
4447
  msgid "Hide dashboard widget"
4448
  msgstr ""
4449
 
4450
- #: languages/vue.php:1985
4451
  msgid "Are you sure you want to hide the ExactMetrics Dashboard Widget? "
4452
  msgstr ""
4453
 
4454
- #: languages/vue.php:1988
4455
  msgid "Yes, hide it!"
4456
  msgstr ""
4457
 
4458
- #: languages/vue.php:1991
4459
  msgid "No, cancel!"
4460
  msgstr ""
4461
 
4462
- #: languages/vue.php:1994
4463
  msgid "ExactMetrics Widget Hidden"
4464
  msgstr ""
4465
 
4466
- #: languages/vue.php:1997
4467
  msgid "You can re-enable the ExactMetrics widget at any time using the \"Screen Options\" menu on the top right of this page"
4468
  msgstr ""
4469
 
4470
  #. Translators: Adds link to the account area to retreive license key.
4471
- #: languages/vue.php:2001
4472
  msgid "Already have a license key? Add it below to unlock ExactMetrics PRO. %1$sRetrieve your license key%2$s."
4473
  msgstr ""
4474
 
4475
- #: languages/vue.php:2004
4476
  msgid "Paste your license key here"
4477
  msgstr ""
4478
 
4479
- #: languages/vue.php:2007
4480
  msgid "Google Authentication"
4481
  msgstr ""
4482
 
4483
- #: languages/vue.php:2010
4484
  msgid "Verify"
4485
  msgstr ""
4486
 
4487
- #: languages/vue.php:2013
4488
  msgid "Setup Wizard"
4489
  msgstr ""
4490
 
4491
- #: languages/vue.php:2016
4492
  msgid "Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks)."
4493
  msgstr ""
4494
 
4495
- #: languages/vue.php:2019
4496
  msgid "Relaunch Setup Wizard"
4497
  msgstr ""
4498
 
4499
- #: languages/vue.php:2022
4500
  msgid "Connect ExactMetrics to Start Tracking Your Data"
4501
  msgstr ""
4502
 
4503
- #: languages/vue.php:2025
4504
  msgid "You're using ExactMetrics Lite – no license needed. Enjoy!"
4505
  msgstr ""
4506
 
4507
- #. Translators: Adds link to upgrade.
4508
- #: languages/vue.php:2030
4509
  msgid "To unlock more features consider %1$supgrading to PRO%2$s."
4510
  msgstr ""
4511
 
4512
- #: languages/vue.php:2034
4513
  msgid "Receive 50% off automatically applied at the checkout!"
4514
  msgstr ""
4515
 
4516
- #: languages/vue.php:2037
4517
  msgid "See all features"
4518
  msgstr ""
4519
 
4520
- #: languages/vue.php:2040
4521
  msgid "Complete Upgrade"
4522
  msgstr ""
4523
 
4524
- #: languages/vue.php:2043
4525
  msgid "Upgrade to Pro Version!"
4526
  msgstr ""
4527
 
4528
  #. Translators: Make text bold.
4529
- #: languages/vue.php:2047
4530
  msgid "%1$sExactMetrics%2$s can automatically upgrade the installed version to the Pro and walk you through the process."
4531
  msgstr ""
4532
 
4533
- #: languages/vue.php:2050
4534
  msgid "There was an error unlocking ExactMetrics PRO please try again or install manually."
4535
  msgstr ""
4536
 
4537
- #: languages/vue.php:2053
4538
  msgid "Activating..."
4539
  msgstr ""
4540
 
4541
- #: languages/vue.php:2056
4542
  msgid "Deactivating..."
4543
  msgstr ""
4544
 
4545
- #: languages/vue.php:2059
4546
  msgid "Deactivate"
4547
  msgstr ""
4548
 
4549
- #: languages/vue.php:2062
4550
  msgid "Upgrade"
4551
  msgstr ""
4552
 
4553
  #. Translators: Make text green.
4554
- #: languages/vue.php:2066
4555
  msgid "Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s"
4556
  msgstr ""
4557
 
4558
- #: languages/vue.php:2069
4559
  msgid "It's easy to double your traffic and sales when you know exactly how people find and use your website. ExactMetrics Pro shows you the stats that matter!"
4560
  msgstr ""
4561
 
4562
- #: languages/vue.php:2072
4563
  msgid "To unlock more features consider upgrading to PRO."
4564
  msgstr ""
4565
 
4566
- #: languages/vue.php:2075
4567
  msgid "Upgrade to"
4568
  msgstr ""
4569
 
4570
- #: languages/vue.php:2078
4571
  msgid "Last 30 days"
4572
  msgstr ""
4573
 
4574
  #. Translators: Add link to retrieve license key from account.
4575
- #: languages/vue.php:2082
4576
  msgid "Add your ExactMetrics license key from the email receipt or account area. %1$sRetrieve your license key%2$s."
4577
  msgstr ""
4578
 
4579
  #. Translators: Error status and error text.
4580
- #: languages/vue.php:2086
4581
  msgid "Can't deauthenticate. Error: %1$s, %2$s"
4582
  msgstr ""
4583
 
4584
- #: languages/vue.php:2089
4585
  msgid "You appear to be offline. Settings not saved."
4586
  msgstr ""
4587
 
4588
  #. Translators: Error status and error text.
4589
- #: languages/vue.php:2093
4590
  msgid "Can't load authentication details. Error: %1$s, %2$s"
4591
  msgstr ""
4592
 
4593
  #. Translators: Error status and error text.
4594
- #: languages/vue.php:2097
4595
  msgid "Can't authenticate. Error: %1$s, %2$s"
4596
  msgstr ""
4597
 
4598
  #. Translators: Error status and error text.
4599
- #: languages/vue.php:2101
4600
  msgid "Can't reauthenticate. Error: %1$s, %2$s"
4601
  msgstr ""
4602
 
4603
  #. Translators: Error status and error text.
4604
- #: languages/vue.php:2105
4605
  msgid "Can't verify credentials. Error: %1$s, %2$s"
4606
  msgstr ""
4607
 
4608
- #: languages/vue.php:2108
4609
  msgid "Show"
4610
  msgstr ""
4611
 
4612
  #. Translators: The number of results.
4613
- #: languages/vue.php:2112
4614
  msgid "%s results"
4615
  msgstr ""
4616
 
4617
- #: languages/vue.php:2115
4618
  msgid "Verifying Credentials"
4619
  msgstr ""
4620
 
4621
- #: languages/vue.php:2118
4622
  msgid "Your site is connected to ExactMetrics!"
4623
  msgstr ""
4624
 
4625