Google Analytics Dashboard for WP (GADWP) - Version 7.7.0

Version Description

Download this release

Release Info

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

Code changes from version 7.6.0 to 7.7.0

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: 7.6.0
8
  * Requires at least: 4.8.0
9
  * Requires PHP: 5.5
10
  * Author URI: https://exactmetrics.com
@@ -44,7 +44,7 @@ final class ExactMetrics_Lite {
44
  * @access public
45
  * @var string $version Plugin version.
46
  */
47
- public $version = '7.6.0';
48
 
49
  /**
50
  * 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: 7.7.0
8
  * Requires at least: 4.8.0
9
  * Requires PHP: 5.5
10
  * Author URI: https://exactmetrics.com
44
  * @access public
45
  * @var string $version Plugin version.
46
  */
47
+ public $version = '7.7.0';
48
 
49
  /**
50
  * Plugin file.
includes/admin/common.php CHANGED
@@ -262,6 +262,7 @@ function exactmetrics_admin_scripts() {
262
  'new_pretty_link_url' => admin_url( 'post-new.php?post_type=pretty-link' ),
263
  'wpmailsmtp_admin_url' => admin_url( 'admin.php?page=wp-mail-smtp' ),
264
  'load_headline_analyzer_settings' => exactmetrics_load_gutenberg_app() ? 'true' : 'false',
 
265
  )
266
  );
267
 
262
  'new_pretty_link_url' => admin_url( 'post-new.php?post_type=pretty-link' ),
263
  'wpmailsmtp_admin_url' => admin_url( 'admin.php?page=wp-mail-smtp' ),
264
  'load_headline_analyzer_settings' => exactmetrics_load_gutenberg_app() ? 'true' : 'false',
265
+ 'exit_url' => add_query_arg( 'page', 'exactmetrics_settings', admin_url( 'admin.php' ) ),
266
  )
267
  );
268
 
includes/admin/routes.php CHANGED
@@ -72,6 +72,7 @@ class ExactMetrics_Rest_Routes {
72
  'type' => ExactMetrics()->license->get_site_license_type(),
73
  'is_disabled' => ExactMetrics()->license->site_license_disabled(),
74
  'is_expired' => ExactMetrics()->license->site_license_expired(),
 
75
  'is_invalid' => ExactMetrics()->license->site_license_invalid(),
76
  );
77
  $network_license = array(
@@ -79,6 +80,7 @@ class ExactMetrics_Rest_Routes {
79
  'type' => ExactMetrics()->license->get_network_license_type(),
80
  'is_disabled' => ExactMetrics()->license->network_license_disabled(),
81
  'is_expired' => ExactMetrics()->license->network_license_expired(),
 
82
  'is_invalid' => ExactMetrics()->license->network_license_disabled(),
83
  );
84
 
@@ -396,7 +398,7 @@ class ExactMetrics_Rest_Routes {
396
  'active' => function_exists( 'wpforms' ),
397
  'icon' => plugin_dir_url( EXACTMETRICS_PLUGIN_FILE ) . 'assets/images/plugin-wpforms.png',
398
  'title' => 'WPForms',
399
- 'excerpt' => __( 'The best drag & drop WordPress form builder. Easily create beautiful contact forms, surveys, payment forms, and more with our 150+ form templates. Trusted by over 4 million websites as the best forms plugin', 'google-analytics-dashboard-for-wp' ),
400
  'installed' => array_key_exists( 'wpforms-lite/wpforms.php', $installed_plugins ),
401
  'basename' => 'wpforms-lite/wpforms.php',
402
  'slug' => 'wpforms-lite',
@@ -876,15 +878,41 @@ class ExactMetrics_Rest_Routes {
876
  if ( ! empty( $_REQUEST['isnetwork'] ) && $_REQUEST['isnetwork'] ) {
877
  define( 'WP_NETWORK_ADMIN', true );
878
  }
879
- $settings_page = admin_url( 'admin.php?page=exactmetrics_settings' );
 
 
880
 
881
  // Only for Pro users, require a license key to be entered first so we can link to things.
882
  if ( exactmetrics_is_pro_version() ) {
883
  if ( ! ExactMetrics()->license->is_site_licensed() && ! ExactMetrics()->license->is_network_licensed() ) {
884
- wp_send_json_error( array(
885
- 'message' => __( "You can't view ExactMetrics reports because you are not licensed.", 'google-analytics-dashboard-for-wp' ),
886
- 'footer' => '<a href="' . $settings_page . '">' . __( 'Add your license', 'google-analytics-dashboard-for-wp' ) . '</a>',
887
- ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
888
  } else if ( ExactMetrics()->license->is_site_licensed() && ! ExactMetrics()->license->site_license_has_error() ) {
889
  // Good to go: site licensed.
890
  } else if ( ExactMetrics()->license->is_network_licensed() && ! ExactMetrics()->license->network_license_has_error() ) {
72
  'type' => ExactMetrics()->license->get_site_license_type(),
73
  'is_disabled' => ExactMetrics()->license->site_license_disabled(),
74
  'is_expired' => ExactMetrics()->license->site_license_expired(),
75
+ 'expiry_date' => ExactMetrics()->license->get_license_expiry_date(),
76
  'is_invalid' => ExactMetrics()->license->site_license_invalid(),
77
  );
78
  $network_license = array(
80
  'type' => ExactMetrics()->license->get_network_license_type(),
81
  'is_disabled' => ExactMetrics()->license->network_license_disabled(),
82
  'is_expired' => ExactMetrics()->license->network_license_expired(),
83
+ 'expiry_date' => ExactMetrics()->license->get_license_expiry_date(),
84
  'is_invalid' => ExactMetrics()->license->network_license_disabled(),
85
  );
86
 
398
  'active' => function_exists( 'wpforms' ),
399
  'icon' => plugin_dir_url( EXACTMETRICS_PLUGIN_FILE ) . 'assets/images/plugin-wpforms.png',
400
  'title' => 'WPForms',
401
+ 'excerpt' => __( 'The best drag & drop WordPress form builder. Easily create beautiful contact forms, surveys, payment forms, and more with our 150+ form templates. Trusted by over 5 million websites as the best forms plugin. We also have 400+ form templates and over 100 million downloads for WPForms Lite.', 'google-analytics-dashboard-for-wp' ),
402
  'installed' => array_key_exists( 'wpforms-lite/wpforms.php', $installed_plugins ),
403
  'basename' => 'wpforms-lite/wpforms.php',
404
  'slug' => 'wpforms-lite',
878
  if ( ! empty( $_REQUEST['isnetwork'] ) && $_REQUEST['isnetwork'] ) {
879
  define( 'WP_NETWORK_ADMIN', true );
880
  }
881
+ $settings_page = admin_url( 'admin.php?page=exactmetrics_settings' );
882
+ $reactivation_url = exactmetrics_get_url( 'admin-notices', 'expired-license', "https://www.exactmetrics.com/my-account/" );
883
+ $learn_more_link = esc_url( 'https://www.exactmetrics.com/docs/faq/#licensedplugin' );
884
 
885
  // Only for Pro users, require a license key to be entered first so we can link to things.
886
  if ( exactmetrics_is_pro_version() ) {
887
  if ( ! ExactMetrics()->license->is_site_licensed() && ! ExactMetrics()->license->is_network_licensed() ) {
888
+ if ( ExactMetrics()->license->license_expired() ) {
889
+ $expiry_message_html = '<div style="display:flex;">';
890
+ $expiry_message_html .= '<div class="exactmetrics-expired-license-alert">';
891
+ $expiry_message_html .= '<h3>' . esc_html__( 'License Expired', 'google-analytics-dashboard-for-wp' ) . '</h3>';
892
+ $expiry_message_html .= '<h4>' . sprintf( esc_html__( 'Your license for ExactMetrics %1$s has expired.', 'google-analytics-dashboard-for-wp' ), ucfirst( ExactMetrics()->license->get_license_type() ) ) . '</h4>';
893
+ if ( '' !== ExactMetrics()->license->get_license_expiry_date() ) {
894
+ $expiry_message_html .= '<p class="exactmetrics-expired-date">' . sprintf( esc_html__( 'Expired %1$s', 'google-analytics-dashboard-for-wp' ), ExactMetrics()->license->get_license_expiry_date() ) . '</p>';
895
+ }
896
+ $expiry_message_html .= '<p>' . esc_html__( 'To ensure your site keeps tracking properly, and to view Reports you must have a valid ExactMetrics license.', 'google-analytics-dashboard-for-wp' ) . '</p>';
897
+ $expiry_message_html .= '</div>';
898
+ $expiry_message_html .= '<div class="exactmetrics-expired-license-alert-icon">';
899
+ $expiry_message_html .= '<svg width="137" height="119" viewBox="0 0 137 119" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M132.164 102.414L77.7891 7.9375C73.7109 0.914062 63.0625 0.6875 58.9844 7.9375L4.60938 102.414C0.53125 109.438 5.74219 118.5 14.125 118.5H122.648C131.031 118.5 136.242 109.664 132.164 102.414ZM68.5 82.7031C74.1641 82.7031 78.9219 87.4609 78.9219 93.125C78.9219 99.0156 74.1641 103.547 68.5 103.547C62.6094 103.547 58.0781 99.0156 58.0781 93.125C58.0781 87.4609 62.6094 82.7031 68.5 82.7031ZM58.5312 45.3203C58.3047 43.7344 59.6641 42.375 61.25 42.375H75.5234C77.1094 42.375 78.4688 43.7344 78.2422 45.3203L76.6562 76.1328C76.4297 77.7188 75.2969 78.625 73.9375 78.625H62.8359C61.4766 78.625 60.3438 77.7188 60.1172 76.1328L58.5312 45.3203Z" fill="#E64949"/></svg>';
900
+ $expiry_message_html .= '</div>';
901
+ $expiry_message_html .= '</div>';
902
+
903
+ $expiry_footer_html = '<div><a target="_blank" class="swal2-confirm swal2-styled" href="' . esc_url( $reactivation_url ) . '">' . __( 'Reactivate License', 'google-analytics-dashboard-for-wp' ) . '</a><br/>';
904
+ $expiry_footer_html .= '<a target="_blank" href="' . $learn_more_link . '">' . __( 'Learn More', 'google-analytics-dashboard-for-wp' ) . '</a></div>';
905
+ wp_send_json_error( array(
906
+ 'type' => 'expired_license',
907
+ 'message' => $expiry_message_html,
908
+ 'footer' => $expiry_footer_html,
909
+ ) );
910
+ } else {
911
+ wp_send_json_error( array(
912
+ 'message' => __( "You can't view ExactMetrics reports because you are not licensed.", 'google-analytics-dashboard-for-wp' ),
913
+ 'footer' => '<a href="' . $settings_page . '">' . __( 'Add your license', 'google-analytics-dashboard-for-wp' ) . '</a>',
914
+ ) );
915
+ }
916
  } else if ( ExactMetrics()->license->is_site_licensed() && ! ExactMetrics()->license->site_license_has_error() ) {
917
  // Good to go: site licensed.
918
  } else if ( ExactMetrics()->license->is_network_licensed() && ! ExactMetrics()->license->network_license_has_error() ) {
languages/google-analytics-dashboard-for-wp.pot CHANGED
@@ -2,20 +2,20 @@
2
  # This file is distributed under the same license as the ExactMetrics Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: ExactMetrics Pro 7.6.0\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/monsterinsights-temp\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2022-06-13T16:20:16+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.6.0\n"
15
  "X-Domain: google-analytics-dashboard-for-wp\n"
16
 
17
  #. Plugin Name of the plugin
18
- #: languages/vue.php:3479
19
  msgid "ExactMetrics Pro"
20
  msgstr ""
21
 
@@ -113,7 +113,7 @@ msgstr ""
113
  #: includes/admin/admin.php:34
114
  #: includes/admin/admin.php:42
115
  #: includes/admin/admin.php:222
116
- #: languages/vue.php:534
117
  msgid "Settings"
118
  msgstr ""
119
 
@@ -129,7 +129,7 @@ msgstr ""
129
 
130
  #: includes/admin/admin.php:39
131
  #: includes/admin/admin.php:130
132
- #: languages/vue.php:2296
133
  msgid "Reports"
134
  msgstr ""
135
 
@@ -139,7 +139,7 @@ msgstr ""
139
 
140
  #: includes/admin/admin.php:51
141
  #: languages/gutenberg.php:83
142
- #: languages/vue.php:992
143
  msgid "Popular Posts"
144
  msgstr ""
145
 
@@ -192,7 +192,7 @@ msgstr ""
192
  #: includes/admin/admin.php:76
193
  #: includes/admin/notifications/notification-upgrade-to-pro-high-traffic.php:41
194
  #: includes/admin/notifications/notification-upgrade-to-pro.php:33
195
- #: languages/vue.php:1041
196
  msgid "Upgrade to Pro"
197
  msgstr ""
198
 
@@ -220,7 +220,7 @@ msgstr ""
220
 
221
  #: includes/admin/admin.php:212
222
  #: includes/admin/admin.php:215
223
- #: languages/vue.php:1016
224
  msgid "Support"
225
  msgstr ""
226
 
@@ -232,7 +232,7 @@ msgstr ""
232
  #: includes/admin/notifications/notification-upgrade-for-google-optimize.php:32
233
  #: includes/admin/notifications/notification-upgrade-for-post-templates.php:32
234
  #: includes/admin/reports/abstract-report.php:418
235
- #: languages/vue.php:1148
236
  msgid "Get ExactMetrics Pro"
237
  msgstr ""
238
 
@@ -242,31 +242,32 @@ msgid "Please rate %1$sExactMetrics%2$s on %3$s %4$sWordPress.org%5$s to help us
242
  msgstr ""
243
 
244
  #: includes/admin/admin.php:324
245
- #: languages/vue.php:1139
246
  msgid "Please Setup Website Analytics to See Audience Insights"
247
  msgstr ""
248
 
249
  #: includes/admin/admin.php:325
250
- #: languages/vue.php:1145
251
  msgid "Connect ExactMetrics and Setup Website Analytics"
252
  msgstr ""
253
 
254
  #: includes/admin/admin.php:327
255
- #: includes/admin/common.php:895
256
- #: includes/admin/common.php:922
257
- #: includes/admin/common.php:955
258
  #: includes/admin/notifications/notification-audience.php:45
259
  #: includes/admin/notifications/notification-bounce-rate.php:47
260
  #: includes/admin/notifications/notification-headline-analyzer.php:39
261
  #: includes/admin/notifications/notification-mobile-device-low-traffic.php:41
262
  #: includes/admin/notifications/notification-returning-visitors.php:43
263
  #: includes/admin/notifications/notification-traffic-dropping.php:43
264
- #: languages/vue.php:333
 
265
  msgid "Learn More"
266
  msgstr ""
267
 
268
  #: includes/admin/admin.php:329
269
- #: languages/vue.php:1142
270
  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 3 million website owners use ExactMetrics to see the stats that matter and grow their business."
271
  msgstr ""
272
 
@@ -277,17 +278,17 @@ msgstr ""
277
 
278
  #. Translators: Adds a link to the license renewal.
279
  #: includes/admin/admin.php:350
280
- #: languages/vue.php:473
281
  msgid "Your license key for ExactMetrics has expired. %1$sPlease click here to renew your license key.%2$s"
282
  msgstr ""
283
 
284
  #: includes/admin/admin.php:352
285
- #: languages/vue.php:476
286
  msgid "Your license key for ExactMetrics has been disabled. Please use a different key."
287
  msgstr ""
288
 
289
  #: includes/admin/admin.php:354
290
- #: languages/vue.php:479
291
  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."
292
  msgstr ""
293
 
@@ -345,7 +346,7 @@ msgid "Your Measurement Protocol API Secret is currently left blank, so you won'
345
  msgstr ""
346
 
347
  #: includes/admin/ajax.php:55
348
- #: includes/admin/routes.php:971
349
  #: lite/includes/admin/onboarding-wizard.php:247
350
  msgid "You are not allowed to install plugins"
351
  msgstr ""
@@ -441,57 +442,57 @@ msgid "Could not deauthenticate."
441
  msgstr ""
442
 
443
  #. Translators: Placeholders are for links to fix the issue.
444
- #: includes/admin/common.php:757
445
  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."
446
  msgstr ""
447
 
448
- #: includes/admin/common.php:876
449
  msgid "ACTION REQUIRED: Your PHP version is putting your site at risk!"
450
  msgstr ""
451
 
452
- #: includes/admin/common.php:878
453
  msgid "ACTION REQUIRED: Speed your website up 400% with a single email!"
454
  msgstr ""
455
 
456
  #. Translators: Placeholder is for the current PHP version.
457
- #: includes/admin/common.php:885
458
  msgid "In the next major release of ExactMetrics we are planning to remove support for the version of PHP you are using (%s). This insecure version is no longer supported by WordPress itself, so you are already missing out on the latest features of WordPress along with critical updates for security and performance (modern PHP versions make websites much faster)."
459
  msgstr ""
460
 
461
  #. Translators: Placeholders add a link to an article.
462
- #: includes/admin/common.php:888
463
  msgid "To ensure ExactMetrics and other plugins on your site continue to function properly, and avoid putting your site at risk, please take a few minutes to ask your website hosting provider to upgrade the version of PHP to a modern PHP version (7.2 or newer). We provide helpful templates for how to ask them %1$shere%2$s."
464
  msgstr ""
465
 
466
  #. Translators: Placeholders add a link to an article.
467
- #: includes/admin/common.php:889
468
  msgid "Upgrading your PHP version will make sure you are able to continue using WordPress without issues in the future, keep your site secure, and will also make your website up to 400% faster!"
469
  msgstr ""
470
 
471
- #: includes/admin/common.php:909
472
  msgid "ACTION REQUIRED: Your WordPress version is putting your site at risk!"
473
  msgstr ""
474
 
475
  #. Translators: Placeholder is for the current WordPress version.
476
- #: includes/admin/common.php:912
477
  msgid "In the next major release of ExactMetrics we are planning to remove support for the version of WordPress you are using (version %s). This version is several years out of date, and most plugins do not support this version anymore, so you could be missing out on critical updates for performance and security already!"
478
  msgstr ""
479
 
480
- #: includes/admin/common.php:914
481
  msgid "The good news: updating WordPress has never been easier and only takes a few moments."
482
  msgstr ""
483
 
484
  #. Translators: Placeholders add links to articles.
485
- #: includes/admin/common.php:916
486
  msgid "To update, we recommend following this %1$sstep by step guide for updating WordPress%2$s from IsItWP and afterwards check out %3$sWhy You Should Always Use the Latest Version of WordPress%4$s on WPBeginner."
487
  msgstr ""
488
 
489
- #: includes/admin/common.php:950
490
  msgid "View 2021 Year in Review report!"
491
  msgstr ""
492
 
493
- #: includes/admin/common.php:951
494
- #: languages/vue.php:3324
495
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2022!"
496
  msgstr ""
497
 
@@ -512,7 +513,7 @@ msgstr ""
512
 
513
  #: includes/admin/exclude-page-metabox.php:147
514
  #: languages/gutenberg.php:354
515
- #: languages/vue.php:3111
516
  msgid "Upgrade"
517
  msgstr ""
518
 
@@ -540,8 +541,8 @@ msgid "Dismiss this notice"
540
  msgstr ""
541
 
542
  #: includes/admin/notification-event.php:256
543
- #: includes/admin/routes.php:873
544
- #: includes/admin/routes.php:1211
545
  msgid "You don't have permission to view ExactMetrics reports."
546
  msgstr ""
547
 
@@ -710,7 +711,7 @@ msgstr ""
710
  #: includes/admin/notifications/notification-upgrade-for-custom-dimensions.php:26
711
  #: includes/admin/notifications/notification-upgrade-for-events-reporting.php:26
712
  #: includes/admin/notifications/notification-upgrade-for-post-templates.php:26
713
- #: languages/vue.php:1729
714
  #: lite/includes/admin/helpers.php:85
715
  msgid "Upgrade to ExactMetrics Pro"
716
  msgstr ""
@@ -746,7 +747,7 @@ msgstr ""
746
  #: includes/admin/notifications/notification-upgrade-for-form-conversion.php:31
747
  #: includes/admin/notifications/notification-upgrade-for-search-console.php:32
748
  #: includes/admin/reports/abstract-report.php:415
749
- #: languages/vue.php:227
750
  msgid "Upgrade Now"
751
  msgstr ""
752
 
@@ -923,7 +924,7 @@ msgid "Please ask your webmaster to enable this addon."
923
  msgstr ""
924
 
925
  #: includes/admin/reports/overview.php:34
926
- #: languages/vue.php:435
927
  msgid "Overview"
928
  msgstr ""
929
 
@@ -971,117 +972,139 @@ msgstr ""
971
  msgid "I already did"
972
  msgstr ""
973
 
974
- #: includes/admin/routes.php:333
975
  msgid "Easy digital downloads plugin."
976
  msgstr ""
977
 
978
- #: includes/admin/routes.php:399
979
- msgid "The best drag & drop WordPress form builder. Easily create beautiful contact forms, surveys, payment forms, and more with our 150+ form templates. Trusted by over 4 million websites as the best forms plugin"
980
  msgstr ""
981
 
982
- #: includes/admin/routes.php:410
983
  msgid "The original WordPress SEO plugin and toolkit that improves your website’s search rankings. Comes with all the SEO features like Local SEO, WooCommerce SEO, sitemaps, SEO optimizer, schema, and more."
984
  msgstr ""
985
 
986
- #: includes/admin/routes.php:421
987
  msgid "Instantly get more subscribers, leads, and sales with the #1 conversion optimization toolkit. Create high converting popups, announcement bars, spin a wheel, and more with smart targeting and personalization."
988
  msgstr ""
989
 
990
- #: includes/admin/routes.php:432
991
  msgid "Improve your WordPress email deliverability and make sure that your website emails reach user’s inbox with the #1 SMTP plugin for WordPress. Over 2 million websites use it to fix WordPress email issues."
992
  msgstr ""
993
 
994
- #: includes/admin/routes.php:442
995
  msgid "The fastest drag & drop landing page builder for WordPress. Create custom landing pages without writing code, connect them with your CRM, collect subscribers, and grow your audience. Trusted by 1 million sites."
996
  msgstr ""
997
 
998
- #: includes/admin/routes.php:453
999
  msgid "Turn your website visitors into brand ambassadors! Easily grow your email list, website traffic, and social media followers with the most powerful giveaways & contests plugin for WordPress."
1000
  msgstr ""
1001
 
1002
- #: includes/admin/routes.php:464
1003
  msgid "Boost your sales and conversions by up to 15% with real-time social proof notifications. TrustPulse helps you show live user activity and purchases to help convince other users to purchase."
1004
  msgstr ""
1005
 
1006
- #: includes/admin/routes.php:474
1007
  msgid "Easily display Instagram content on your WordPress site without writing any code. Comes with multiple templates, ability to show content from multiple accounts, hashtags, and more. Trusted by 1 million websites."
1008
  msgstr ""
1009
 
1010
- #: includes/admin/routes.php:485
1011
  msgid "Easily display Facebook content on your WordPress site without writing any code. Comes with multiple templates, ability to show content from multiple accounts, hashtags, and more. Trusted by 1 million websites."
1012
  msgstr ""
1013
 
1014
- #: includes/admin/routes.php:496
1015
  msgid "Connect with your visitors after they leave your website with the leading web push notification software. Over 10,000+ businesses worldwide use PushEngage to send 9 billion notifications each month."
1016
  msgstr ""
1017
 
1018
- #: includes/admin/routes.php:506
1019
  msgid "Pretty Links helps you shrink, beautify, track, manage and share any URL on or off of your WordPress website. Create links that look how you want using your own domain name!"
1020
  msgstr ""
1021
 
1022
- #: includes/admin/routes.php:517
1023
  msgid "ThirstyAffiliates is a revolution in affiliate link management. Collect, collate and store your affiliate links for use in your posts and pages."
1024
  msgstr ""
1025
 
1026
- #: includes/admin/routes.php:529
1027
  msgid "Advanced Coupons for WooCommerce (Free Version) gives WooCommerce store owners extra coupon features so they can market their stores better."
1028
  msgstr ""
1029
 
1030
- #: includes/admin/routes.php:658
1031
  msgid "Invalid UA code"
1032
  msgstr ""
1033
 
1034
- #: includes/admin/routes.php:712
1035
  msgid "Invalid GAv4 code"
1036
  msgstr ""
1037
 
1038
- #: includes/admin/routes.php:740
1039
  msgid "Invalid dual tracking code"
1040
  msgstr ""
1041
 
1042
- #: includes/admin/routes.php:819
1043
  msgid "Please upload a valid .json file"
1044
  msgstr ""
1045
 
1046
- #: includes/admin/routes.php:828
1047
  msgid "Please upload a file to import"
1048
  msgstr ""
1049
 
1050
- #: includes/admin/routes.php:885
1051
- #: includes/admin/routes.php:1223
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1052
  msgid "You can't view ExactMetrics reports because you are not licensed."
1053
  msgstr ""
1054
 
1055
- #: includes/admin/routes.php:886
1056
- #: includes/admin/routes.php:1224
1057
  msgid "Add your license"
1058
  msgstr ""
1059
 
1060
- #: includes/admin/routes.php:893
1061
- #: includes/admin/routes.php:1231
1062
  msgid "You can't view ExactMetrics reports due to license key errors."
1063
  msgstr ""
1064
 
1065
- #: includes/admin/routes.php:901
1066
- #: includes/admin/routes.php:1239
1067
  msgid "You must authenticate with ExactMetrics before you can view reports."
1068
  msgstr ""
1069
 
1070
- #: includes/admin/routes.php:907
1071
- #: includes/admin/routes.php:1245
1072
  msgid "Unknown report. Try refreshing and retrying. Contact support if this issue persists."
1073
  msgstr ""
1074
 
1075
- #: includes/admin/routes.php:959
1076
- #: includes/admin/routes.php:1293
1077
  msgid "We encountered an error when fetching the report data."
1078
  msgstr ""
1079
 
1080
- #: includes/admin/routes.php:979
1081
  msgid "Missing plugin name."
1082
  msgstr ""
1083
 
1084
- #: includes/admin/routes.php:1123
1085
  msgid "Homepage"
1086
  msgstr ""
1087
 
@@ -1435,7 +1458,7 @@ msgid "Question"
1435
  msgstr ""
1436
 
1437
  #: includes/gutenberg/headline-tool/headline-tool.php:290
1438
- #: languages/vue.php:540
1439
  msgid "General"
1440
  msgstr ""
1441
 
@@ -4835,7 +4858,7 @@ msgid "Theme"
4835
  msgstr ""
4836
 
4837
  #: languages/gutenberg.php:77
4838
- #: languages/vue.php:525
4839
  msgid "Inline Popular Posts"
4840
  msgstr ""
4841
 
@@ -4872,7 +4895,7 @@ msgid "Comment Color"
4872
  msgstr ""
4873
 
4874
  #: languages/gutenberg.php:107
4875
- #: languages/vue.php:3067
4876
  msgid "Wide-Layout Options"
4877
  msgstr ""
4878
 
@@ -4881,12 +4904,12 @@ msgid "Choose Layout"
4881
  msgstr ""
4882
 
4883
  #: languages/gutenberg.php:113
4884
- #: languages/vue.php:3070
4885
  msgid "Adjust the number of columns displayed when the widget is placed in a wide container."
4886
  msgstr ""
4887
 
4888
  #: languages/gutenberg.php:116
4889
- #: languages/vue.php:3091
4890
  msgid "Post Count"
4891
  msgstr ""
4892
 
@@ -4895,7 +4918,7 @@ msgid "Number of posts displayed."
4895
  msgstr ""
4896
 
4897
  #: languages/gutenberg.php:122
4898
- #: languages/vue.php:3073
4899
  msgid "Display Options"
4900
  msgstr ""
4901
 
@@ -4908,7 +4931,7 @@ msgid "Display Widget Title"
4908
  msgstr ""
4909
 
4910
  #: languages/gutenberg.php:131
4911
- #: languages/vue.php:1951
4912
  msgid "Widget Title"
4913
  msgstr ""
4914
 
@@ -4917,17 +4940,17 @@ msgid "Only Show Posts From These Categories"
4917
  msgstr ""
4918
 
4919
  #: languages/gutenberg.php:137
4920
- #: languages/vue.php:3079
4921
  msgid "Display Author"
4922
  msgstr ""
4923
 
4924
  #: languages/gutenberg.php:140
4925
- #: languages/vue.php:3082
4926
  msgid "Display Date"
4927
  msgstr ""
4928
 
4929
  #: languages/gutenberg.php:143
4930
- #: languages/vue.php:3085
4931
  msgid "Display Comments"
4932
  msgstr ""
4933
 
@@ -5148,7 +5171,7 @@ msgid "Goal: "
5148
  msgstr ""
5149
 
5150
  #: languages/gutenberg.php:312
5151
- #: languages/vue.php:980
5152
  msgid "Headline Analyzer"
5153
  msgstr ""
5154
 
@@ -5161,19 +5184,19 @@ msgid "This headline analyzer is part of ExactMetrics to help you increase your
5161
  msgstr ""
5162
 
5163
  #: languages/gutenberg.php:321
5164
- #: languages/vue.php:108
5165
  #: lite/includes/admin/metaboxes.php:42
5166
  msgid "Last 30 days"
5167
  msgstr ""
5168
 
5169
  #: languages/gutenberg.php:324
5170
- #: languages/vue.php:96
5171
  #: lite/includes/admin/metaboxes.php:45
5172
  msgid "Yesterday"
5173
  msgstr ""
5174
 
5175
  #: languages/gutenberg.php:327
5176
- #: languages/vue.php:1299
5177
  #: lite/includes/admin/metaboxes.php:57
5178
  #: lite/includes/admin/metaboxes.php:111
5179
  msgid "Bounce Rate"
@@ -5229,33 +5252,33 @@ msgstr ""
5229
  msgid "Loading Settings"
5230
  msgstr ""
5231
 
5232
- #: languages/vue.php:14
5233
  msgid "Please wait..."
5234
  msgstr ""
5235
 
5236
- #: languages/vue.php:17
5237
  msgid "Saving Changes..."
5238
  msgstr ""
5239
 
5240
- #: languages/vue.php:20
5241
  msgid "Settings Updated"
5242
  msgstr ""
5243
 
5244
  #. Translators: Add a link to the onboarding wizard.
5245
- #: languages/vue.php:24
5246
  msgid "You need to %1$sconnect ExactMetrics%2$s first"
5247
  msgstr ""
5248
 
5249
- #: languages/vue.php:27
5250
  msgid "Could Not Save Changes"
5251
  msgstr ""
5252
 
5253
- #: languages/vue.php:30
5254
  msgid "Loading new report data"
5255
  msgstr ""
5256
 
5257
- #. Translators: Placeholder gets replaced with an arrow icon.
5258
- #: languages/vue.php:34
5259
  msgid "Continue %s"
5260
  msgstr ""
5261
 
@@ -5279,89 +5302,89 @@ msgstr ""
5279
  msgid "Unlock the Publishers Report and Focus on the Content That Matters"
5280
  msgstr ""
5281
 
5282
- #: languages/vue.php:53
5283
  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."
5284
  msgstr ""
5285
 
5286
- #: languages/vue.php:56
5287
  msgid "Unlock the eCommerce Report and See Your Important Store Metrics"
5288
  msgstr ""
5289
 
5290
- #: languages/vue.php:59
5291
  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."
5292
  msgstr ""
5293
 
5294
- #: languages/vue.php:62
5295
  msgid "Unlock the Dimensions Report and Track Your Own Custom Data"
5296
  msgstr ""
5297
 
5298
- #: languages/vue.php:65
5299
  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."
5300
  msgstr ""
5301
 
5302
- #: languages/vue.php:68
5303
  msgid "Unlock the Forms Report and Improve Conversions"
5304
  msgstr ""
5305
 
5306
- #: languages/vue.php:71
5307
  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."
5308
  msgstr ""
5309
 
5310
- #: languages/vue.php:74
5311
  msgid "Unlock the Search Console Report and See How People Find Your Website"
5312
  msgstr ""
5313
 
5314
- #: languages/vue.php:77
5315
  msgid "See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more."
5316
  msgstr ""
5317
 
5318
- #: languages/vue.php:80
5319
  msgid "Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time"
5320
  msgstr ""
5321
 
5322
- #: languages/vue.php:83
5323
  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."
5324
  msgstr ""
5325
 
5326
- #: languages/vue.php:86
5327
  msgid "Unlock the Site Speed Report and Improve the Performance of Your Site"
5328
  msgstr ""
5329
 
5330
- #: languages/vue.php:89
5331
  msgid "See How Your Homepage Performs According to Google’s Own Criteria and See How You Can Improve to Increase Your Ranking"
5332
  msgstr ""
5333
 
5334
- #: languages/vue.php:92
5335
  msgid "Today"
5336
  msgstr ""
5337
 
5338
- #: languages/vue.php:99
5339
  msgid "Last Week"
5340
  msgstr ""
5341
 
5342
- #: languages/vue.php:102
5343
  msgid "Last Month"
5344
  msgstr ""
5345
 
5346
- #: languages/vue.php:105
5347
  msgid "Last 7 days"
5348
  msgstr ""
5349
 
5350
- #: languages/vue.php:111
5351
  msgid "Loading settings"
5352
  msgstr ""
5353
 
5354
  #. Translators: Number of visitors.
5355
- #: languages/vue.php:115
5356
  msgid "See how %s visitors found your site!"
5357
  msgstr ""
5358
 
5359
  #. Translators: Number of visitors.
5360
- #: languages/vue.php:119
5361
  msgid "Your website was visited by %s users in the last 30 days."
5362
  msgstr ""
5363
 
5364
- #: languages/vue.php:122
5365
  msgid "See the full analytics report!"
5366
  msgstr ""
5367
 
@@ -5409,4436 +5432,4461 @@ msgstr ""
5409
  msgid "Getting Started"
5410
  msgstr ""
5411
 
5412
- #: languages/vue.php:164
5413
  msgid "Lite vs Pro"
5414
  msgstr ""
5415
 
5416
- #: languages/vue.php:167
5417
  msgid "Success! "
5418
  msgstr ""
5419
 
5420
- #: languages/vue.php:170
5421
  msgid "You're now using ExactMetrics Pro with all the features."
5422
  msgstr ""
5423
 
5424
  #. Translators: Placeholder gets replaced with an arrow icon.
5425
- #: languages/vue.php:174
5426
  msgid "Get Started %s"
5427
  msgstr ""
5428
 
5429
  #. Translators: Error status and error text.
5430
- #: languages/vue.php:178
5431
  msgid "Can't load report data. Error: %1$s, %2$s"
5432
  msgstr ""
5433
 
5434
- #: languages/vue.php:181
5435
  msgid "Error loading report data"
5436
  msgstr ""
5437
 
5438
- #. Translators: Makes the text bold.
5439
- #: languages/vue.php:185
5440
  msgid "%1$sUniversal Tracking%2$s – Setup universal website tracking across devices and campaigns with just a few clicks (without any code)."
5441
  msgstr ""
5442
 
5443
- #. Translators: Makes the text bold.
5444
- #: languages/vue.php:189
5445
  msgid "%1$sGoogle Analytics Dashboard%2$s - See your website analytics report right inside your WordPress dashboard with actionable insights."
5446
  msgstr ""
5447
 
5448
- #. Translators: Makes the text bold.
5449
- #: languages/vue.php:193
5450
  msgid "%1$sReal-time Stats%2$s - Get real-time stats inside WordPress to see who is online, what are they doing and more."
5451
  msgstr ""
5452
 
5453
  #. Translators: Makes text bold.
5454
- #: languages/vue.php:197
5455
  msgid "%1$sEnhanced Ecommerce Tracking%2$s - 1-click Google Analytics Enhanced eCommerce tracking for WooCommerce, Easy Digital Download & MemberPress."
5456
  msgstr ""
5457
 
5458
- #. Translators: Makes the text bold.
5459
- #: languages/vue.php:201
5460
  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."
5461
  msgstr ""
5462
 
5463
- #. Translators: Makes the text bold.
5464
- #: languages/vue.php:205
5465
  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."
5466
  msgstr ""
5467
 
5468
- #. Translators: Makes the text bold.
5469
- #: languages/vue.php:209
5470
  msgid "%1$sEU Compilance (GDPR Friendly)%2$s - Make Google Analytics compliant with GDPR and other privacy regulations automatically."
5471
  msgstr ""
5472
 
5473
  #. Translators: Makes text bold.
5474
- #: languages/vue.php:213
5475
  msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post types, users, and other events with 1-click."
5476
  msgstr ""
5477
 
5478
- #. Translators: Adds a link and an arrow icon.
5479
- #: languages/vue.php:217
5480
  msgid "%1$sSee All Features%2$s"
5481
  msgstr ""
5482
 
5483
- #: languages/vue.php:220
5484
  msgid "Pro Plan"
5485
  msgstr ""
5486
 
5487
- #: languages/vue.php:223
5488
  msgid "per year"
5489
  msgstr ""
5490
 
5491
- #: languages/vue.php:230
5492
  msgid "Upgrade to ExactMetrics Pro Now"
5493
  msgstr ""
5494
 
5495
- #: languages/vue.php:233
5496
  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!"
5497
  msgstr ""
5498
 
5499
- #: languages/vue.php:236
5500
  msgid "Daniel Monaghan - Experienced"
5501
  msgstr ""
5502
 
5503
- #: languages/vue.php:239
5504
  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."
5505
  msgstr ""
5506
 
5507
- #: languages/vue.php:242
5508
  msgid "Naomi Spirit - From This Day"
5509
  msgstr ""
5510
 
5511
- #: languages/vue.php:245
5512
  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!"
5513
  msgstr ""
5514
 
5515
- #: languages/vue.php:248
5516
  msgid "Julie Dupuis - Faraway Land Travel"
5517
  msgstr ""
5518
 
5519
- #: languages/vue.php:251
5520
  msgid "Guides and Documentation:"
5521
  msgstr ""
5522
 
5523
- #: languages/vue.php:255
5524
  msgid "Upgrade to PRO"
5525
  msgstr ""
5526
 
5527
- #: languages/vue.php:258
5528
  msgid "eCommerce Tracking"
5529
  msgstr ""
5530
 
5531
- #: languages/vue.php:262
5532
  msgid "Custom Dimensions"
5533
  msgstr ""
5534
 
5535
- #: languages/vue.php:265
5536
  msgid "Form Tracking"
5537
  msgstr ""
5538
 
5539
- #: languages/vue.php:268
5540
  msgid "AMP Support"
5541
  msgstr ""
5542
 
5543
- #: languages/vue.php:271
5544
  msgid "Author Tracking"
5545
  msgstr ""
5546
 
5547
- #: languages/vue.php:274
5548
  msgid "EU Compliance Addon"
5549
  msgstr ""
5550
 
5551
- #: languages/vue.php:277
5552
  msgid "Real Time Report"
5553
  msgstr ""
5554
 
5555
- #: languages/vue.php:280
5556
  msgid "Google Optimize"
5557
  msgstr ""
5558
 
5559
- #: languages/vue.php:283
5560
  #: lite/includes/admin/reports/report-queries.php:22
5561
  msgid "Search Console"
5562
  msgstr ""
5563
 
5564
- #: languages/vue.php:286
5565
  msgid "Custom Date Ranges"
5566
  msgstr ""
5567
 
5568
- #: languages/vue.php:289
5569
- #: languages/vue.php:919
5570
  msgid "Getting Started with ExactMetrics"
5571
  msgstr ""
5572
 
5573
- #: languages/vue.php:292
5574
- #: languages/vue.php:922
5575
  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."
5576
  msgstr ""
5577
 
5578
- #: languages/vue.php:295
5579
  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."
5580
  msgstr ""
5581
 
5582
- #: languages/vue.php:298
5583
  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!."
5584
  msgstr ""
5585
 
5586
- #: languages/vue.php:301
5587
  msgid "Launch the wizard!"
5588
  msgstr ""
5589
 
5590
- #: languages/vue.php:304
5591
  msgid "Welcome to"
5592
  msgstr ""
5593
 
5594
  #. Translators: Adds a line break.
5595
- #: languages/vue.php:308
5596
  msgid "Thank you for choosing ExactMetrics -%s The Most Powerful WordPress Analytics Plugin"
5597
  msgstr ""
5598
 
5599
- #. Translators: Makes the product name bold.
5600
- #: languages/vue.php:312
5601
  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."
5602
  msgstr ""
5603
 
5604
- #: languages/vue.php:315
5605
  msgid "ExactMetrics Features & Addons"
5606
  msgstr ""
5607
 
5608
- #: languages/vue.php:318
5609
  msgid "Here are the features that make ExactMetrics the most powerful and user-friendly WordPress analytics plugin in the market."
5610
  msgstr ""
5611
 
5612
  #. Translators: Placeholder is replaced with WPForms.
5613
- #: languages/vue.php:322
5614
  msgid "Recommended Plugin: %s"
5615
  msgstr ""
5616
 
5617
- #: languages/vue.php:325
5618
  msgid "Install"
5619
  msgstr ""
5620
 
5621
- #: languages/vue.php:328
5622
  msgid "Activate"
5623
  msgstr ""
5624
 
5625
- #: languages/vue.php:336
5626
  msgid "ExactMetrics encountered an error loading your report data"
5627
  msgstr ""
5628
 
5629
- #: languages/vue.php:339
5630
  msgid "There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating."
5631
  msgstr ""
5632
 
5633
- #: languages/vue.php:342
5634
- #: languages/vue.php:1842
5635
  msgid "Reconnect ExactMetrics"
5636
  msgstr ""
5637
 
5638
- #: languages/vue.php:345
5639
  msgid "Re-Authenticating"
5640
  msgstr ""
5641
 
5642
- #: languages/vue.php:348
5643
  msgid "Ok"
5644
  msgstr ""
5645
 
5646
- #: languages/vue.php:351
5647
- #: languages/vue.php:858
5648
  msgid "ExactMetrics Addons"
5649
  msgstr ""
5650
 
5651
- #: languages/vue.php:354
5652
  msgid "Search Addons"
5653
  msgstr ""
5654
 
5655
- #: languages/vue.php:357
5656
  msgid "Save Changes"
5657
  msgstr ""
5658
 
5659
- #: languages/vue.php:360
5660
  msgid "Exit Setup"
5661
  msgstr ""
5662
 
5663
- #: languages/vue.php:363
5664
  msgid "Time to Purchase"
5665
  msgstr ""
5666
 
5667
- #: languages/vue.php:366
5668
  msgid "This list shows how many days from first visit it took users to purchase products from your site."
5669
  msgstr ""
5670
 
5671
- #: languages/vue.php:369
5672
  msgid "Sessions to Purchase"
5673
  msgstr ""
5674
 
5675
- #: languages/vue.php:372
5676
  msgid "This list shows the number of sessions it took users before they purchased a product from your website."
5677
  msgstr ""
5678
 
5679
- #: languages/vue.php:375
5680
  msgid "New Customers"
5681
  msgstr ""
5682
 
5683
- #: languages/vue.php:378
5684
  msgid "This list shows the percentage of new customers who purchased a product from your website."
5685
  msgstr ""
5686
 
5687
- #: languages/vue.php:381
5688
  msgid "Abandoned Checkouts"
5689
  msgstr ""
5690
 
5691
- #: languages/vue.php:384
5692
  msgid "This list shows the percentage of carts that never went through the checkout process."
5693
  msgstr ""
5694
 
5695
- #: languages/vue.php:387
5696
  msgid "Top Posts/Pages"
5697
  msgstr ""
5698
 
5699
- #: languages/vue.php:390
5700
  msgid "This list shows the most viewed posts and pages on your website."
5701
  msgstr ""
5702
 
5703
- #: languages/vue.php:393
5704
  msgid "New vs. Returning Visitors"
5705
  msgstr ""
5706
 
5707
- #: languages/vue.php:396
5708
  msgid "This graph shows what percent of your user sessions come from new versus repeat visitors."
5709
  msgstr ""
5710
 
5711
- #: languages/vue.php:399
5712
  msgid "Device Breakdown"
5713
  msgstr ""
5714
 
5715
- #: languages/vue.php:402
5716
  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."
5717
  msgstr ""
5718
 
5719
- #: languages/vue.php:405
5720
  msgid "Top Landing Pages"
5721
  msgstr ""
5722
 
5723
- #: languages/vue.php:408
5724
  msgid "This list shows the top pages users first land on when visiting your website."
5725
  msgstr ""
5726
 
5727
- #: languages/vue.php:411
5728
  msgid "Top Exit Pages"
5729
  msgstr ""
5730
 
5731
- #: languages/vue.php:414
5732
  msgid "This list shows the top pages users exit your website from."
5733
  msgstr ""
5734
 
5735
- #: languages/vue.php:417
5736
  msgid "Top Outbound Links"
5737
  msgstr ""
5738
 
5739
- #: languages/vue.php:420
5740
  msgid "This list shows the top links clicked on your website that go to another website."
5741
  msgstr ""
5742
 
5743
- #: languages/vue.php:423
5744
  msgid "Top Affiliate Links"
5745
  msgstr ""
5746
 
5747
- #: languages/vue.php:426
5748
  msgid "This list shows the top affiliate links your visitors clicked on."
5749
  msgstr ""
5750
 
5751
- #: languages/vue.php:429
5752
  msgid "Top Download Links"
5753
  msgstr ""
5754
 
5755
- #: languages/vue.php:432
5756
  msgid "This list shows the download links your visitors clicked the most."
5757
  msgstr ""
5758
 
5759
- #: languages/vue.php:438
5760
  msgid "Top Products"
5761
  msgstr ""
5762
 
5763
- #: languages/vue.php:441
5764
  msgid "This list shows the top selling products on your website."
5765
  msgstr ""
5766
 
5767
- #: languages/vue.php:444
5768
  msgid "Top Conversion Sources"
5769
  msgstr ""
5770
 
5771
- #: languages/vue.php:447
5772
  msgid "This list shows the top referral websites in terms of product revenue."
5773
  msgstr ""
5774
 
5775
- #: languages/vue.php:450
5776
  msgid "Total Add/Remove"
5777
  msgstr ""
5778
 
5779
- #: languages/vue.php:453
5780
  msgid "Analytics"
5781
  msgstr ""
5782
 
5783
  #. Translators: Adds an arrow icon.
5784
- #: languages/vue.php:457
5785
  msgid "View All Reports %s"
5786
  msgstr ""
5787
 
5788
- #: languages/vue.php:460
5789
  msgid "You must connect with ExactMetrics before you can view reports."
5790
  msgstr ""
5791
 
5792
- #: languages/vue.php:463
5793
  msgid "ExactMetrics makes it \"effortless\" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
5794
  msgstr ""
5795
 
5796
- #: languages/vue.php:466
5797
  msgid "Launch Setup Wizard"
5798
  msgstr ""
5799
 
5800
- #: languages/vue.php:469
5801
  msgid "Please ask your webmaster to connect ExactMetrics to Google Analytics."
5802
  msgstr ""
5803
 
5804
- #: languages/vue.php:482
5805
  msgid "See Quick Links"
5806
  msgstr ""
5807
 
5808
- #: languages/vue.php:485
5809
  msgid "Suggest a Feature"
5810
  msgstr ""
5811
 
5812
- #: languages/vue.php:488
5813
  msgid "Join Our Community"
5814
  msgstr ""
5815
 
5816
- #: languages/vue.php:491
5817
  msgid "Support & Docs"
5818
  msgstr ""
5819
 
5820
- #: languages/vue.php:494
5821
  msgid "Upgrade to Pro &#187;"
5822
  msgstr ""
5823
 
5824
- #: languages/vue.php:497
5825
  #: lite/includes/admin/reports/report-publisher.php:22
5826
  msgid "Publishers"
5827
  msgstr ""
5828
 
5829
- #: languages/vue.php:500
5830
  #: lite/includes/admin/reports/report-ecommerce.php:22
5831
  msgid "eCommerce"
5832
  msgstr ""
5833
 
5834
- #: languages/vue.php:503
5835
  msgid "Dimensions Report"
5836
  msgstr ""
5837
 
5838
- #: languages/vue.php:506
5839
  #: lite/includes/admin/reports/report-forms.php:22
5840
  msgid "Forms"
5841
  msgstr ""
5842
 
5843
- #: languages/vue.php:509
5844
  msgid "Real-Time"
5845
  msgstr ""
5846
 
5847
- #: languages/vue.php:512
5848
  msgid "Site Speed Report"
5849
  msgstr ""
5850
 
5851
- #: languages/vue.php:516
5852
  msgid "2020 Year in Review"
5853
  msgstr ""
5854
 
5855
- #: languages/vue.php:519
5856
  msgid "Import Export"
5857
  msgstr ""
5858
 
5859
- #: languages/vue.php:522
5860
  msgid "PrettyLinks Integration"
5861
  msgstr ""
5862
 
5863
- #: languages/vue.php:528
5864
  msgid "Popular Posts Widget"
5865
  msgstr ""
5866
 
5867
- #: languages/vue.php:531
5868
  msgid "Popular Products"
5869
  msgstr ""
5870
 
5871
- #: languages/vue.php:537
5872
  msgid "Sub menu item for WooCommerce Analytics"
5873
  msgstr ""
5874
 
5875
- #: languages/vue.php:543
5876
  msgid "Engagement"
5877
  msgstr ""
5878
 
5879
- #: languages/vue.php:546
5880
  msgid "Publisher"
5881
  msgstr ""
5882
 
5883
- #: languages/vue.php:549
5884
  msgid "Conversions"
5885
  msgstr ""
5886
 
5887
- #: languages/vue.php:552
5888
  msgid "Advanced"
5889
  msgstr ""
5890
 
5891
- #: languages/vue.php:555
5892
  msgid "URL Builder"
5893
  msgstr ""
5894
 
5895
  #. Translators: Adds a link to documentation.
5896
- #: languages/vue.php:559
5897
  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"
5898
  msgstr ""
5899
 
5900
  #. Translators: Adds link to activate/install plugin and documentation.
5901
- #: languages/vue.php:563
5902
  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"
5903
  msgstr ""
5904
 
5905
  #. Translators: Adds a link to documentation.
5906
- #: languages/vue.php:567
5907
  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"
5908
  msgstr ""
5909
 
5910
  #. Translators: Adds link to activate/install plugin and documentation.
5911
- #: languages/vue.php:571
5912
  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"
5913
  msgstr ""
5914
 
5915
- #: languages/vue.php:574
5916
  msgid "Installing Addon"
5917
  msgstr ""
5918
 
5919
- #: languages/vue.php:577
5920
  msgid "Activating Addon"
5921
  msgstr ""
5922
 
5923
- #: languages/vue.php:580
5924
  msgid "Addon Activated"
5925
  msgstr ""
5926
 
5927
- #: languages/vue.php:583
5928
  msgid "Loading report data"
5929
  msgstr ""
5930
 
5931
- #: languages/vue.php:586
5932
  msgid "Please activate manually"
5933
  msgstr ""
5934
 
5935
  #. Translators: Adds the error status and status text.
5936
- #: languages/vue.php:590
5937
  msgid "Error: %1$s, %2$s"
5938
  msgstr ""
5939
 
5940
- #: languages/vue.php:593
5941
  msgid "Error Activating Addon"
5942
  msgstr ""
5943
 
5944
- #: languages/vue.php:596
5945
  #: lite/includes/admin/wp-site-health.php:372
5946
  #: lite/includes/admin/wp-site-health.php:398
5947
  #: lite/includes/admin/wp-site-health.php:425
5948
  msgid "View Addons"
5949
  msgstr ""
5950
 
5951
- #: languages/vue.php:599
5952
  msgid "Dismiss"
5953
  msgstr ""
5954
 
5955
- #: languages/vue.php:602
5956
  msgid "Redirecting"
5957
  msgstr ""
5958
 
5959
- #: languages/vue.php:605
5960
  msgid "Please wait"
5961
  msgstr ""
5962
 
5963
- #: languages/vue.php:608
5964
  msgid "activate"
5965
  msgstr ""
5966
 
5967
- #: languages/vue.php:611
5968
  msgid "install"
5969
  msgstr ""
5970
 
5971
- #: languages/vue.php:614
5972
  msgid "Visit addons page"
5973
  msgstr ""
5974
 
5975
- #: languages/vue.php:617
5976
  msgid "Report Unavailable"
5977
  msgstr ""
5978
 
5979
  #. Translators: Install/Activate the addon.
5980
- #: languages/vue.php:621
5981
  msgid "%s Addon"
5982
  msgstr ""
5983
 
5984
- #: languages/vue.php:624
5985
  msgid "Go Back To Reports"
5986
  msgstr ""
5987
 
5988
- #: languages/vue.php:627
5989
  msgid "Enable Enhanced eCommerce"
5990
  msgstr ""
5991
 
5992
  #. Translators: Placeholders are replaced with the current step number out of the total number of steps.
5993
- #: languages/vue.php:631
5994
  msgid "Step %1$s of %2$s"
5995
  msgstr ""
5996
 
5997
- #: languages/vue.php:634
5998
  msgid "Go back"
5999
  msgstr ""
6000
 
6001
- #: languages/vue.php:637
6002
  msgid "Welcome to ExactMetrics!"
6003
  msgstr ""
6004
 
6005
- #: languages/vue.php:640
6006
  msgid "Let's get you set up."
6007
  msgstr ""
6008
 
6009
- #: languages/vue.php:643
6010
  msgid "Save and Continue"
6011
  msgstr ""
6012
 
6013
- #: languages/vue.php:646
6014
  msgid "Which category best describes your website?"
6015
  msgstr ""
6016
 
6017
- #: languages/vue.php:649
6018
  msgid "We will recommend the optimal settings for ExactMetrics based on your choice."
6019
  msgstr ""
6020
 
6021
- #: languages/vue.php:652
6022
  msgid "Business Website"
6023
  msgstr ""
6024
 
6025
  #. Translators: Make text bold.
6026
- #: languages/vue.php:656
6027
  msgid "Publisher %1$s(Blog)%2$s"
6028
  msgstr ""
6029
 
6030
- #: languages/vue.php:659
6031
  msgid "Ecommerce"
6032
  msgstr ""
6033
 
6034
- #: languages/vue.php:662
6035
  msgid "Connect ExactMetrics to Your Website"
6036
  msgstr ""
6037
 
6038
- #: languages/vue.php:665
6039
  msgid "ExactMetrics connects Google Analytics to WordPress and shows you stats that matter."
6040
  msgstr ""
6041
 
6042
- #: languages/vue.php:669
6043
  msgid "Connect Google Analytics + WordPress"
6044
  msgstr ""
6045
 
6046
- #: languages/vue.php:673
6047
  msgid "You will be taken to the ExactMetrics website where you'll need to connect your Analytics account."
6048
  msgstr ""
6049
 
6050
- #: languages/vue.php:676
6051
  msgid "Whoops, something went wrong and we weren't able to connect to ExactMetrics. Please enter your Google UA code manually."
6052
  msgstr ""
6053
 
6054
- #: languages/vue.php:679
6055
  msgid "Manually enter your UA code"
6056
  msgstr ""
6057
 
6058
- #: languages/vue.php:682
6059
  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."
6060
  msgstr ""
6061
 
6062
- #: languages/vue.php:685
6063
  msgid "UA code can't be empty"
6064
  msgstr ""
6065
 
6066
- #: languages/vue.php:688
6067
  msgid "Saving UA code..."
6068
  msgstr ""
6069
 
6070
- #: languages/vue.php:691
6071
  msgid "ExactMetrics Recommends WPForms"
6072
  msgstr ""
6073
 
6074
- #: languages/vue.php:694
6075
  msgid "Built by the folks behind ExactMetrics, WPForms is the most beginner friendly form plugin in the market."
6076
  msgstr ""
6077
 
6078
- #: languages/vue.php:697
6079
  msgid "Used on over 4,000,000 websites!"
6080
  msgstr ""
6081
 
6082
- #: languages/vue.php:700
6083
  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!"
6084
  msgstr ""
6085
 
6086
- #: languages/vue.php:703
6087
  msgid "Skip this Step"
6088
  msgstr ""
6089
 
6090
- #: languages/vue.php:706
6091
  msgid "Continue & Install WPForms"
6092
  msgstr ""
6093
 
6094
- #: languages/vue.php:709
6095
  msgid "Installing..."
6096
  msgstr ""
6097
 
6098
- #: languages/vue.php:712
6099
  msgid "Recommended Settings"
6100
  msgstr ""
6101
 
6102
- #: languages/vue.php:715
6103
  msgid "ExactMetrics recommends the following settings based on your configuration."
6104
  msgstr ""
6105
 
6106
- #: languages/vue.php:718
6107
  msgid "Events Tracking"
6108
  msgstr ""
6109
 
6110
- #: languages/vue.php:721
6111
  msgid "Must have for all click tracking on site."
6112
  msgstr ""
6113
 
6114
- #: languages/vue.php:724
6115
  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."
6116
  msgstr ""
6117
 
6118
- #: languages/vue.php:727
6119
  msgid "Enhanced Link Attribution"
6120
  msgstr ""
6121
 
6122
- #: languages/vue.php:730
6123
  msgid "Improves the accuracy of your In-Page Analytics."
6124
  msgstr ""
6125
 
6126
- #: languages/vue.php:733
6127
  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."
6128
  msgstr ""
6129
 
6130
- #: languages/vue.php:736
6131
  msgid "Install Updates Automatically"
6132
  msgstr ""
6133
 
6134
- #: languages/vue.php:739
6135
  msgid "Get the latest features, bug fixes, and security updates as they are released."
6136
  msgstr ""
6137
 
6138
- #: languages/vue.php:742
6139
  msgid "To ensure you get the latest bug fixes 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."
6140
  msgstr ""
6141
 
6142
- #: languages/vue.php:745
6143
  msgid "File Download Tracking"
6144
  msgstr ""
6145
 
6146
- #: languages/vue.php:748
6147
  msgid "Helps you see file downloads data."
6148
  msgstr ""
6149
 
6150
- #: languages/vue.php:751
6151
  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."
6152
  msgstr ""
6153
 
6154
  #. Translators: Example path (/go/).
6155
- #: languages/vue.php:755
6156
  msgid "Path (example: %s)"
6157
  msgstr ""
6158
 
6159
- #: languages/vue.php:758
6160
  msgid "Path has to start with a / and have no spaces"
6161
  msgstr ""
6162
 
6163
  #. Translators: Example label (aff).
6164
- #: languages/vue.php:762
6165
  msgid "Label (example: %s)"
6166
  msgstr ""
6167
 
6168
- #: languages/vue.php:765
6169
  msgid "Label can't contain any spaces"
6170
  msgstr ""
6171
 
6172
- #: languages/vue.php:768
6173
  msgid "Helps you increase affiliate revenue."
6174
  msgstr ""
6175
 
6176
- #: languages/vue.php:771
6177
  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."
6178
  msgstr ""
6179
 
6180
- #: languages/vue.php:774
6181
  msgid "Affiliate Link Tracking"
6182
  msgstr ""
6183
 
6184
- #: languages/vue.php:777
6185
  msgid "Who Can See Reports"
6186
  msgstr ""
6187
 
6188
- #: languages/vue.php:780
6189
  msgid "These user roles will be able to access ExactMetrics' reports in the WordPress admin area."
6190
  msgstr ""
6191
 
6192
- #: languages/vue.php:783
6193
  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."
6194
  msgstr ""
6195
 
6196
- #: languages/vue.php:786
6197
  msgid "Save and continue"
6198
  msgstr ""
6199
 
6200
- #: languages/vue.php:789
6201
  msgid "Events Tracking is enabled the moment you set up ExactMetrics"
6202
  msgstr ""
6203
 
6204
- #: languages/vue.php:792
6205
  msgid "Enhanced Link Attribution is enabled the moment you set up ExactMetrics"
6206
  msgstr ""
6207
 
6208
- #: languages/vue.php:795
6209
  msgid "+ Add Role"
6210
  msgstr ""
6211
 
6212
  #. Translators: Placeholders are used for making text bold and adding a link.
6213
- #: languages/vue.php:799
6214
  msgid "You're using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s."
6215
  msgstr ""
6216
 
6217
- #: languages/vue.php:802
6218
  #: lite/includes/admin/reports/report-dimensions.php:22
6219
  msgid "Dimensions"
6220
  msgstr ""
6221
 
6222
- #: languages/vue.php:805
6223
  msgid "Site Speed"
6224
  msgstr ""
6225
 
6226
- #: languages/vue.php:808
6227
  msgid "License Key"
6228
  msgstr ""
6229
 
6230
  #. Translators: Add link to retrieve license key from account.
6231
- #: languages/vue.php:812
6232
  msgid "Add your ExactMetrics license key from the email receipt or account area. %1$sRetrieve your license key%2$s."
6233
  msgstr ""
6234
 
6235
- #: languages/vue.php:815
6236
  msgid "Google Authentication"
6237
  msgstr ""
6238
 
6239
- #: languages/vue.php:818
6240
  msgid "Miscellaneous"
6241
  msgstr ""
6242
 
6243
- #: languages/vue.php:821
6244
  msgid "Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes."
6245
  msgstr ""
6246
 
6247
- #: languages/vue.php:824
6248
  msgid "Hide Announcements"
6249
  msgstr ""
6250
 
6251
- #: languages/vue.php:827
6252
  msgid "You're using ExactMetrics Lite – no license needed. Enjoy!"
6253
  msgstr ""
6254
 
6255
  #. Translators: Adds link to upgrade.
6256
- #: languages/vue.php:831
6257
  msgid "To unlock more features consider %1$supgrading to PRO%2$s."
6258
  msgstr ""
6259
 
6260
- #: languages/vue.php:834
6261
  msgid "Receive 50% off automatically applied at the checkout!"
6262
  msgstr ""
6263
 
6264
- #: languages/vue.php:837
6265
  msgid "See all features"
6266
  msgstr ""
6267
 
6268
- #: languages/vue.php:840
6269
  msgid "Setup Wizard"
6270
  msgstr ""
6271
 
6272
- #: languages/vue.php:843
6273
  msgid "Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks)."
6274
  msgstr ""
6275
 
6276
- #: languages/vue.php:846
6277
  msgid "Relaunch Setup Wizard"
6278
  msgstr ""
6279
 
6280
- #: languages/vue.php:849
6281
  msgid "There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data."
6282
  msgstr ""
6283
 
6284
- #: languages/vue.php:852
6285
  msgid "No addons found."
6286
  msgstr ""
6287
 
6288
- #: languages/vue.php:855
6289
  msgid "Refresh Addons"
6290
  msgstr ""
6291
 
6292
  #. Translators: Adds a line break.
6293
- #: languages/vue.php:862
6294
  msgid "Upgrade to Pro to unlock addons and other great features."
6295
  msgstr ""
6296
 
6297
- #: languages/vue.php:865
6298
  msgid "As a valued ExactMetrics Lite user you receive 50% off, automaticaly applied at checkout!"
6299
  msgstr ""
6300
 
6301
- #: languages/vue.php:868
6302
  msgid "Refreshing Addons"
6303
  msgstr ""
6304
 
6305
- #: languages/vue.php:871
6306
  msgid "Get ExactMetrics Pro Today and Unlock all the Powerful Features"
6307
  msgstr ""
6308
 
6309
  #. Translators: Placeholders make the text green.
6310
- #: languages/vue.php:875
6311
  msgid "Bonus: ExactMetrics Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout."
6312
  msgstr ""
6313
 
6314
- #: languages/vue.php:878
6315
  msgid "How to Connect to Google Analytics"
6316
  msgstr ""
6317
 
6318
- #: languages/vue.php:881
6319
  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."
6320
  msgstr ""
6321
 
6322
- #: languages/vue.php:884
6323
  msgid "Guide and Checklist for Advanced Insights"
6324
  msgstr ""
6325
 
6326
- #: languages/vue.php:887
6327
  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."
6328
  msgstr ""
6329
 
6330
- #: languages/vue.php:890
6331
  msgid "GDPR Guide"
6332
  msgstr ""
6333
 
6334
- #: languages/vue.php:893
6335
  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. "
6336
  msgstr ""
6337
 
6338
- #: languages/vue.php:896
6339
  msgid "How to Install and Activate ExactMetrics Addons"
6340
  msgstr ""
6341
 
6342
- #: languages/vue.php:899
6343
  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."
6344
  msgstr ""
6345
 
6346
- #: languages/vue.php:902
6347
  msgid "Enabling eCommerce Tracking and Reports"
6348
  msgstr ""
6349
 
6350
- #: languages/vue.php:905
6351
  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."
6352
  msgstr ""
6353
 
6354
- #: languages/vue.php:908
6355
  msgid "Read Documentation"
6356
  msgstr ""
6357
 
6358
  #. Translators: Makes the text bold.
6359
- #: languages/vue.php:912
6360
  msgid "%1$sEnhanced eCommerce Tracking%2$s - 1-click Google Analyticks Enhanced Ecommerce trackin for WooCommerce, Easy Digital Download & MemberPress."
6361
  msgstr ""
6362
 
6363
  #. Translators: Makes the text bold.
6364
- #: languages/vue.php:916
6365
  msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post type, users, and other events with 1-click."
6366
  msgstr ""
6367
 
6368
- #: languages/vue.php:925
6369
  msgid "One-click Complete eCommerce tracking"
6370
  msgstr ""
6371
 
6372
- #: languages/vue.php:928
6373
  msgid "Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required"
6374
  msgstr ""
6375
 
6376
- #: languages/vue.php:931
6377
  msgid "Forms Tracking"
6378
  msgstr ""
6379
 
6380
- #: languages/vue.php:934
6381
  msgid "One-click Form Events Tracking"
6382
  msgstr ""
6383
 
6384
- #: languages/vue.php:937
6385
  msgid "WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin"
6386
  msgstr ""
6387
 
6388
- #: languages/vue.php:940
6389
  msgid "WordPress Admin Area Reports"
6390
  msgstr ""
6391
 
6392
- #: languages/vue.php:943
6393
  msgid "Standard Reports"
6394
  msgstr ""
6395
 
6396
- #: languages/vue.php:946
6397
  msgid "Overview Reports for the last 30 days."
6398
  msgstr ""
6399
 
6400
- #: languages/vue.php:949
6401
  msgid "Advanced Reports"
6402
  msgstr ""
6403
 
6404
- #: languages/vue.php:952
6405
  msgid "Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection"
6406
  msgstr ""
6407
 
6408
- #: languages/vue.php:955
6409
  msgid "Dashboard Widget"
6410
  msgstr ""
6411
 
6412
- #: languages/vue.php:958
6413
  msgid "Basic Widget"
6414
  msgstr ""
6415
 
6416
- #: languages/vue.php:961
6417
  msgid "Overview Report Synopsis"
6418
  msgstr ""
6419
 
6420
- #: languages/vue.php:964
6421
  msgid "Advanced Dashboard Widget"
6422
  msgstr ""
6423
 
6424
- #: languages/vue.php:967
6425
  msgid "Includes the complete Overview report, Publisher reports and 6 different eCommerce reports"
6426
  msgstr ""
6427
 
6428
- #: languages/vue.php:970
6429
  msgid "Publisher Reports"
6430
  msgstr ""
6431
 
6432
- #: languages/vue.php:973
6433
  msgid "Advanced Publisher Reports & Tracking"
6434
  msgstr ""
6435
 
6436
- #: languages/vue.php:976
6437
  msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
6438
  msgstr ""
6439
 
6440
- #: languages/vue.php:983
6441
  msgid "Email Summaries"
6442
  msgstr ""
6443
 
6444
- #: languages/vue.php:986
6445
  msgid "Included"
6446
  msgstr ""
6447
 
6448
- #: languages/vue.php:989
6449
  msgid "Get weekly traffic reports directly in your inbox."
6450
  msgstr ""
6451
 
6452
- #: languages/vue.php:995
6453
  msgid "Basic Options"
6454
  msgstr ""
6455
 
6456
- #: languages/vue.php:998
6457
  msgid "Order Popular Posts by comments or shares with 3 simple theme choices."
6458
  msgstr ""
6459
 
6460
- #: languages/vue.php:1001
6461
  msgid "Dynamic Popular Posts & Popular Products"
6462
  msgstr ""
6463
 
6464
- #: languages/vue.php:1004
6465
  msgid "Display Popular Posts based on your actual traffic data from Google Analytics and choose from over 20 advanced themes. Display Popular WooCommerce products using widgets or Gutenberg blocks."
6466
  msgstr ""
6467
 
6468
- #: languages/vue.php:1007
6469
  msgid "Not Available"
6470
  msgstr ""
6471
 
6472
- #: languages/vue.php:1010
6473
  msgid "Complete Custom Dimensions Tracking"
6474
  msgstr ""
6475
 
6476
- #: languages/vue.php:1013
6477
  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"
6478
  msgstr ""
6479
 
6480
- #: languages/vue.php:1019
6481
  msgid "Limited Support"
6482
  msgstr ""
6483
 
6484
- #: languages/vue.php:1022
6485
  msgid "Priority Support"
6486
  msgstr ""
6487
 
6488
- #: languages/vue.php:1025
6489
  msgid "Get the most out of ExactMetrics by upgrading to Pro and unlocking all of the powerful features."
6490
  msgstr ""
6491
 
6492
- #: languages/vue.php:1028
6493
  msgid "Feature"
6494
  msgstr ""
6495
 
6496
- #: languages/vue.php:1031
6497
  msgid "Lite"
6498
  msgstr ""
6499
 
6500
- #: languages/vue.php:1034
6501
  msgid "Pro"
6502
  msgstr ""
6503
 
6504
- #: languages/vue.php:1037
6505
  msgid "Bonus: ExactMetrics Lite users get 50% off regular price, automatically applied at checkout."
6506
  msgstr ""
6507
 
6508
- #: languages/vue.php:1044
6509
  msgid "Universal Tracking"
6510
  msgstr ""
6511
 
6512
- #: languages/vue.php:1047
6513
  msgid "Custom Google Analytics Link Tracking"
6514
  msgstr ""
6515
 
6516
- #: languages/vue.php:1050
6517
  msgid "Standard Tracking"
6518
  msgstr ""
6519
 
6520
- #: languages/vue.php:1053
6521
  msgid "Advanced Tracking"
6522
  msgstr ""
6523
 
6524
- #: languages/vue.php:1056
6525
  msgid "Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking"
6526
  msgstr ""
6527
 
6528
- #: languages/vue.php:1059
6529
  msgid "Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers"
6530
  msgstr ""
6531
 
6532
- #: languages/vue.php:1062
6533
  msgid "No-Code-Needed Tracking Features"
6534
  msgstr ""
6535
 
6536
- #: languages/vue.php:1065
6537
  msgid "Basic Tracking Options"
6538
  msgstr ""
6539
 
6540
- #: languages/vue.php:1068
6541
  msgid "Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking"
6542
  msgstr ""
6543
 
6544
- #: languages/vue.php:1071
6545
  msgid "Advanced Tracking Options"
6546
  msgstr ""
6547
 
6548
- #: languages/vue.php:1074
6549
  msgid "Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors"
6550
  msgstr ""
6551
 
6552
- #: languages/vue.php:1077
6553
  msgid "Inbox"
6554
  msgstr ""
6555
 
6556
- #: languages/vue.php:1080
6557
  msgid "Back to Inbox"
6558
  msgstr ""
6559
 
6560
- #: languages/vue.php:1083
6561
  msgid "View Dismissed"
6562
  msgstr ""
6563
 
6564
- #: languages/vue.php:1086
6565
  msgid "Notifications"
6566
  msgstr ""
6567
 
6568
- #: languages/vue.php:1089
6569
  msgid "Dismiss All"
6570
  msgstr ""
6571
 
6572
- #: languages/vue.php:1092
6573
  msgid "Dismissed"
6574
  msgstr ""
6575
 
6576
- #: languages/vue.php:1095
6577
  msgid "No Notifications"
6578
  msgstr ""
6579
 
6580
  #. Translators: Error status and error text.
6581
- #: languages/vue.php:1099
6582
  msgid "Can't load settings. Error: %1$s, %2$s"
6583
  msgstr ""
6584
 
6585
- #: languages/vue.php:1102
6586
  msgid "You appear to be offline."
6587
  msgstr ""
6588
 
6589
  #. Translators: Error status and error text.
6590
- #: languages/vue.php:1106
6591
  msgid "Can't save settings. Error: %1$s, %2$s"
6592
  msgstr ""
6593
 
6594
- #: languages/vue.php:1109
6595
  msgid "Network error encountered. Settings not saved."
6596
  msgstr ""
6597
 
6598
- #: languages/vue.php:1112
6599
  msgid "Show in widget mode"
6600
  msgstr ""
6601
 
6602
- #: languages/vue.php:1115
6603
  msgid "Show in full-width mode"
6604
  msgstr ""
6605
 
6606
- #: languages/vue.php:1118
6607
  msgid "Show Overview Reports"
6608
  msgstr ""
6609
 
6610
- #: languages/vue.php:1121
6611
  msgid "Show Publishers Reports"
6612
  msgstr ""
6613
 
6614
- #: languages/vue.php:1124
6615
  msgid "Show eCommerce Reports"
6616
  msgstr ""
6617
 
6618
- #: languages/vue.php:1127
6619
  msgid "Settings Menu"
6620
  msgstr ""
6621
 
6622
- #: languages/vue.php:1130
6623
  msgid "Available in PRO version"
6624
  msgstr ""
6625
 
6626
- #: languages/vue.php:1133
6627
  msgid "See All Reports"
6628
  msgstr ""
6629
 
6630
- #: languages/vue.php:1136
6631
  msgid "Go to the Analytics Dashboard"
6632
  msgstr ""
6633
 
6634
- #: languages/vue.php:1151
6635
  msgid "Cart Funnel"
6636
  msgstr ""
6637
 
6638
- #: languages/vue.php:1154
6639
  msgid "Customer Insights"
6640
  msgstr ""
6641
 
6642
- #: languages/vue.php:1157
6643
  msgid "Campaign Measurement"
6644
  msgstr ""
6645
 
6646
- #: languages/vue.php:1160
6647
  msgid "Customer Profiles"
6648
  msgstr ""
6649
 
6650
- #: languages/vue.php:1163
6651
  msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, revenue, and average order value, and more."
6652
  msgstr ""
6653
 
6654
- #: languages/vue.php:1166
6655
  msgid "Truly Understand Your%1$s Customers With %2$sExactMetrics%3$s"
6656
  msgstr ""
6657
 
6658
- #: languages/vue.php:1169
6659
  msgid "You never truly understand your customers until you used Enhanced %1$s eCommerce from ExactMetrics!"
6660
  msgstr ""
6661
 
6662
- #: languages/vue.php:1172
6663
  msgid "Track all-new metrics!"
6664
  msgstr ""
6665
 
6666
- #: languages/vue.php:1175
6667
  msgid "Get stats WooCommerce doesn’t give you like: Conversion Sources, Avg. Order Value, Revenue per Source, Total Add to Carts & More!"
6668
  msgstr ""
6669
 
6670
- #: languages/vue.php:1178
6671
  msgid "FEATURES"
6672
  msgstr ""
6673
 
6674
- #: languages/vue.php:1181
6675
  msgid "Get The Unique Metrics Neccessary for Growth"
6676
  msgstr ""
6677
 
6678
- #: languages/vue.php:1184
6679
  msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, %1$srevenue, and average order value, and more."
6680
  msgstr ""
6681
 
6682
- #: languages/vue.php:1187
6683
  msgid "Get Answers to the important questions %1$syou should know."
6684
  msgstr ""
6685
 
6686
- #: languages/vue.php:1190
6687
  msgid "Did the login/registration step of the checkout put users off?"
6688
  msgstr ""
6689
 
6690
- #: languages/vue.php:1193
6691
  msgid "Which ad campaign is driving the most revenue?"
6692
  msgstr ""
6693
 
6694
- #: languages/vue.php:1196
6695
  msgid "Who is my typical customer?"
6696
  msgstr ""
6697
 
6698
- #: languages/vue.php:1199
6699
  msgid "Level-up Your eCommerce store with %1$sExactMetrics + WooCommerce!%1$s"
6700
  msgstr ""
6701
 
6702
  #. Translators: Error status and error text.
6703
- #: languages/vue.php:1203
6704
  msgid "Can't deactivate the license. Error: %1$s, %2$s"
6705
  msgstr ""
6706
 
6707
  #. Translators: Error status and error text.
6708
- #: languages/vue.php:1207
6709
  msgid "Can't upgrade to PRO please try again. Error: %1$s, %2$s"
6710
  msgstr ""
6711
 
6712
  #. Translators: Error status and error text.
6713
- #: languages/vue.php:1211
6714
  msgid "Can't load license details. Error: %1$s, %2$s"
6715
  msgstr ""
6716
 
6717
- #: languages/vue.php:1214
6718
  msgid "Error loading license details"
6719
  msgstr ""
6720
 
6721
  #. Translators: Error status and error text.
6722
- #: languages/vue.php:1218
6723
  msgid "Can't verify the license. Error: %1$s, %2$s"
6724
  msgstr ""
6725
 
6726
  #. Translators: Error status and error text.
6727
- #: languages/vue.php:1222
6728
  msgid "Can't validate the license. Error: %1$s, %2$s"
6729
  msgstr ""
6730
 
6731
- #: languages/vue.php:1225
6732
  msgid "Reset to default"
6733
  msgstr ""
6734
 
6735
- #: languages/vue.php:1228
6736
  msgid "The value entered does not match the required format"
6737
  msgstr ""
6738
 
6739
- #: languages/vue.php:1231
6740
  msgid "Check out the newly added classic mode"
6741
  msgstr ""
6742
 
6743
  #. Translators: Placeholder adds a line break.
6744
- #: languages/vue.php:1235
6745
  msgid "You can customize your %sdate range only in the PRO version."
6746
  msgstr ""
6747
 
6748
- #: languages/vue.php:1238
6749
  msgid "Help Us Improve"
6750
  msgstr ""
6751
 
6752
- #: languages/vue.php:1241
6753
  msgid "Help us better understand our users and their website needs."
6754
  msgstr ""
6755
 
6756
  #. Translators: Adds a link to the documentation.
6757
- #: languages/vue.php:1245
6758
  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"
6759
  msgstr ""
6760
 
6761
  #. Translators: The name of the field that is throwing a validation error.
6762
- #: languages/vue.php:1249
6763
  msgid "%s can't be empty."
6764
  msgstr ""
6765
 
6766
- #: languages/vue.php:1252
6767
  msgid "Duplicate values are not allowed."
6768
  msgstr ""
6769
 
6770
- #: languages/vue.php:1255
6771
  msgid "You can add maximum 5 items."
6772
  msgstr ""
6773
 
6774
- #: languages/vue.php:1258
6775
  msgid "At least 0 item required."
6776
  msgstr ""
6777
 
6778
- #: languages/vue.php:1261
6779
  msgid "Add Another Link Path"
6780
  msgstr ""
6781
 
6782
- #: languages/vue.php:1264
6783
  msgid "Remove row"
6784
  msgstr ""
6785
 
6786
- #: languages/vue.php:1267
6787
  msgid "Sessions"
6788
  msgstr ""
6789
 
6790
  #. Translators: Line break.
6791
- #: languages/vue.php:1271
6792
  msgid "Unique %s Sessions"
6793
  msgstr ""
6794
 
6795
- #: languages/vue.php:1274
6796
  msgid "Pageviews"
6797
  msgstr ""
6798
 
6799
  #. Translators: Line break.
6800
- #: languages/vue.php:1278
6801
  msgid "Unique %s Pageviews"
6802
  msgstr ""
6803
 
6804
- #: languages/vue.php:1281
6805
  msgid "A session is the browsing session of a single user to your site."
6806
  msgstr ""
6807
 
6808
- #: languages/vue.php:1284
6809
  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."
6810
  msgstr ""
6811
 
6812
- #: languages/vue.php:1287
6813
  msgid "Total duration of all sessions (in seconds) / number of sessions."
6814
  msgstr ""
6815
 
6816
- #: languages/vue.php:1290
6817
  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."
6818
  msgstr ""
6819
 
6820
- #: languages/vue.php:1293
6821
  msgid "The number of distinct tracked users"
6822
  msgstr ""
6823
 
6824
- #: languages/vue.php:1296
6825
  msgid "Avg. Session Duration"
6826
  msgstr ""
6827
 
6828
- #: languages/vue.php:1302
6829
  msgid "Total Users"
6830
  msgstr ""
6831
 
6832
- #: languages/vue.php:1305
6833
  msgid "No options available"
6834
  msgstr ""
6835
 
6836
  #. Translators: Placeholders make the text highlighted.
6837
- #: languages/vue.php:1309
6838
  msgid "%1$sNeed%2$s to Grow FASTER??"
6839
  msgstr ""
6840
 
6841
- #: languages/vue.php:1312
6842
  msgid "Get additional, actionable insights by going Pro."
6843
  msgstr ""
6844
 
6845
- #: languages/vue.php:1315
6846
  msgid "Skip"
6847
  msgstr ""
6848
 
6849
- #: languages/vue.php:1318
6850
  msgid "See All Features"
6851
  msgstr ""
6852
 
6853
- #: languages/vue.php:1321
6854
  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."
6855
  msgstr ""
6856
 
6857
- #: languages/vue.php:1324
6858
  msgid "Our Pro plan includes:"
6859
  msgstr ""
6860
 
6861
  #. Translators: Error status and error text.
6862
- #: languages/vue.php:1328
6863
  msgid "Can't load errors. Error: %1$s, %2$s"
6864
  msgstr ""
6865
 
6866
- #: languages/vue.php:1331
6867
  msgid "Real-Time Report"
6868
  msgstr ""
6869
 
6870
- #: languages/vue.php:1334
6871
  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."
6872
  msgstr ""
6873
 
6874
  #. Translators: add link to blog.
6875
- #: languages/vue.php:1338
6876
  msgid "To comply with Google's API policies we've had to remove the real time report from the lite version. You can read about this decision and why it was made in %1$sthis blog post%2$s. To access the real time report in the WordPress backend, you will need to upgrade to Pro."
6877
  msgstr ""
6878
 
6879
- #: languages/vue.php:1342
6880
  msgid "Here's what you get:"
6881
  msgstr ""
6882
 
6883
- #: languages/vue.php:1345
6884
  msgid "See Your Active Visitors and Track Their Behaviour to Optimize"
6885
  msgstr ""
6886
 
6887
- #: languages/vue.php:1348
6888
  msgid "See Your Top Pages Immediately After Making Changes"
6889
  msgstr ""
6890
 
6891
- #: languages/vue.php:1351
6892
  msgid "See Your Top Referral Sources and Adapt Faster"
6893
  msgstr ""
6894
 
6895
- #: languages/vue.php:1354
6896
  msgid "See Your Traffic Demographics"
6897
  msgstr ""
6898
 
6899
- #: languages/vue.php:1357
6900
  msgid "Get Fresh Report Data Every 60 Seconds"
6901
  msgstr ""
6902
 
6903
- #: languages/vue.php:1360
6904
  msgid "See Where Your Visitors are Connecting From (country & city)"
6905
  msgstr ""
6906
 
6907
- #: languages/vue.php:1363
6908
  msgid "Forms Report"
6909
  msgstr ""
6910
 
6911
- #: languages/vue.php:1366
6912
  msgid "See Reports for Any Contact Form Plugin or Sign-up Form"
6913
  msgstr ""
6914
 
6915
- #: languages/vue.php:1369
6916
  msgid "See Your Top Converting Forms and Optimize"
6917
  msgstr ""
6918
 
6919
- #: languages/vue.php:1372
6920
  msgid "See Your Forms Impressions Count to Find the Best Placement"
6921
  msgstr ""
6922
 
6923
- #: languages/vue.php:1375
6924
  msgid "Awesome, You're All Set!"
6925
  msgstr ""
6926
 
6927
- #: languages/vue.php:1378
6928
  msgid "ExactMetrics is all set up and ready to use. We've verified that the tracking code is deployed properly and collecting data."
6929
  msgstr ""
6930
 
6931
  #. Translators: Make text bold.
6932
- #: languages/vue.php:1382
6933
  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."
6934
  msgstr ""
6935
 
6936
  #. Translators: Add link to blog.
6937
  #. Translators: Link to our blog.
6938
- #: languages/vue.php:1386
6939
- #: languages/vue.php:3591
6940
  msgid "%1$sSubscribe to the ExactMetrics blog%2$s for tips on how to get more traffic and grow your business."
6941
  msgstr ""
6942
 
6943
- #: languages/vue.php:1389
6944
  msgid "Finish Setup & Exit Wizard"
6945
  msgstr ""
6946
 
6947
- #: languages/vue.php:1392
6948
  msgid "Google Analytics"
6949
  msgstr ""
6950
 
6951
- #: languages/vue.php:1395
6952
  msgid "Subscribe"
6953
  msgstr ""
6954
 
6955
- #: languages/vue.php:1398
6956
  msgid "Checking your website..."
6957
  msgstr ""
6958
 
6959
- #: languages/vue.php:1401
6960
  msgid "Recommended Addons"
6961
  msgstr ""
6962
 
6963
  #. Translators: Add a link to upgrade and make the text green.
6964
- #: languages/vue.php:1405
6965
  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!"
6966
  msgstr ""
6967
 
6968
- #: languages/vue.php:1408
6969
  msgid "Upgrade to PRO Now"
6970
  msgstr ""
6971
 
6972
- #: languages/vue.php:1411
6973
  msgid "See who’s viewing and submitting your forms, so you can increase your conversion rate."
6974
  msgstr ""
6975
 
6976
- #: languages/vue.php:1414
6977
  msgid "See All Your Important Store Metrics in One Place."
6978
  msgstr ""
6979
 
6980
- #: languages/vue.php:1417
6981
  msgid "... and more:"
6982
  msgstr ""
6983
 
6984
- #: languages/vue.php:1420
6985
  msgid "Dimensions- Track authors, categories, trags, searches, users and more."
6986
  msgstr ""
6987
 
6988
- #: languages/vue.php:1423
6989
  msgid "EU Compliance- Improve compliance with GDPR and other privacy regulations."
6990
  msgstr ""
6991
 
6992
- #: languages/vue.php:1426
6993
  msgid "AMP- ExactMetrics Google AMP Addon enables accurate tracking of all mobile visitors to your AMP-enabled pages."
6994
  msgstr ""
6995
 
6996
- #: languages/vue.php:1429
6997
  msgid "Facebook Instant Articles- Integrate Google Analytics and Facebook Instant Articles with just one click."
6998
  msgstr ""
6999
 
7000
- #: languages/vue.php:1432
7001
  msgid "eCommerce- Sales tracking for your WooCommerce, Easy Digital Downloads, LifterLMS or MemberPress stores."
7002
  msgstr ""
7003
 
7004
- #: languages/vue.php:1435
7005
  msgid "Google Optimize- Easily enable Google Optimize on your WordPress site."
7006
  msgstr ""
7007
 
7008
- #: languages/vue.php:1438
7009
  msgid "Forms- Enable tracking of your form views, submissions and conversion rates."
7010
  msgstr ""
7011
 
7012
- #: languages/vue.php:1441
7013
  msgid "Ads- See who’s clicking on your Google Adsense banner ads."
7014
  msgstr ""
7015
 
7016
- #: languages/vue.php:1444
7017
  msgid "Hello and Welcome to ExactMetrics, the Best Google Analytics Plugin for WordPress."
7018
  msgstr ""
7019
 
7020
- #: languages/vue.php:1447
7021
  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."
7022
  msgstr ""
7023
 
7024
- #: languages/vue.php:1450
7025
  msgid "The ExactMetrics Team"
7026
  msgstr ""
7027
 
7028
- #: languages/vue.php:1453
7029
  msgid "Custom Dimensions Report"
7030
  msgstr ""
7031
 
7032
- #: languages/vue.php:1456
7033
  msgid "Unlock the Dimensions Report and decide what data is important using your own custom tracking parameters"
7034
  msgstr ""
7035
 
7036
- #: languages/vue.php:1459
7037
  msgid "The Dimensions report allows you to easily see what's working right inside your WordPress dashboard."
7038
  msgstr ""
7039
 
7040
- #: languages/vue.php:1462
7041
  msgid "Author tracking to see which author’s posts generate the most traffic"
7042
  msgstr ""
7043
 
7044
- #: languages/vue.php:1465
7045
  msgid "Post Type tracking to see which WordPress post types perform better"
7046
  msgstr ""
7047
 
7048
- #: languages/vue.php:1468
7049
  msgid "Category tracking to see which sections of your sites are the most popular"
7050
  msgstr ""
7051
 
7052
- #: languages/vue.php:1471
7053
  msgid "SEO score tracking to see which blog SEO scores are the most popular"
7054
  msgstr ""
7055
 
7056
- #: languages/vue.php:1474
7057
  msgid "Focus Keyword tracking to see which of your content is doing well in search engines."
7058
  msgstr ""
7059
 
7060
- #: languages/vue.php:1477
7061
  msgid "Tag tracking to determine which topics are the most engaging to for your website visitors."
7062
  msgstr ""
7063
 
7064
  #. Translators: add link to blog.
7065
- #: languages/vue.php:1481
7066
  msgid "One of the factors that help deliver an outstanding user experience is having a website that loads quickly. With the Site Speed report you'll be able to check your site's performance directly from your ExactMetrics dashboard."
7067
  msgstr ""
7068
 
7069
- #: languages/vue.php:1484
7070
  msgid "See Your Homepage's Overall Performance Score"
7071
  msgstr ""
7072
 
7073
- #: languages/vue.php:1487
7074
  msgid "Run an Audit on Your Homepage and See Your Server Response Time"
7075
  msgstr ""
7076
 
7077
- #: languages/vue.php:1490
7078
  msgid "Learn How Long It Takes for Your Viewers to Interact With Your Site"
7079
  msgstr ""
7080
 
7081
- #: languages/vue.php:1493
7082
  msgid "Learn How to Improve the Core Metrics that Google Uses to Rank Your Site"
7083
  msgstr ""
7084
 
7085
- #: languages/vue.php:1496
7086
  msgid "Hide dashboard widget"
7087
  msgstr ""
7088
 
7089
- #: languages/vue.php:1499
7090
  msgid "Are you sure you want to hide the ExactMetrics Dashboard Widget? "
7091
  msgstr ""
7092
 
7093
- #: languages/vue.php:1502
7094
  msgid "Yes, hide it!"
7095
  msgstr ""
7096
 
7097
- #: languages/vue.php:1505
7098
  msgid "No, cancel!"
7099
  msgstr ""
7100
 
7101
- #: languages/vue.php:1508
7102
  msgid "ExactMetrics Widget Hidden"
7103
  msgstr ""
7104
 
7105
- #: languages/vue.php:1511
7106
  msgid "You can re-enable the ExactMetrics widget at any time using the \"Screen Options\" menu on the top right of this page"
7107
  msgstr ""
7108
 
7109
  #. Translators: Error status and error text.
7110
- #: languages/vue.php:1515
7111
  msgid "Can't deauthenticate. Error: %1$s, %2$s"
7112
  msgstr ""
7113
 
7114
  #. Translators: Error status and error text.
7115
- #: languages/vue.php:1519
7116
  msgid "Can't load authentication details. Error: %1$s, %2$s"
7117
  msgstr ""
7118
 
7119
- #: languages/vue.php:1522
7120
  msgid "You appear to be offline. Settings not saved."
7121
  msgstr ""
7122
 
7123
  #. Translators: Error status and error text.
7124
- #: languages/vue.php:1526
7125
  msgid "Can't authenticate. Error: %1$s, %2$s"
7126
  msgstr ""
7127
 
7128
  #. Translators: Error status and error text.
7129
- #: languages/vue.php:1530
7130
  msgid "Can't reauthenticate. Error: %1$s, %2$s"
7131
  msgstr ""
7132
 
7133
  #. Translators: Error status and error text.
7134
- #: languages/vue.php:1534
7135
  msgid "Can't verify credentials. Error: %1$s, %2$s"
7136
  msgstr ""
7137
 
7138
- #: languages/vue.php:1537
7139
  msgid "Still Calculating..."
7140
  msgstr ""
7141
 
7142
- #: languages/vue.php:1540
7143
  msgid "Your 2020 Year in Review is still calculating. Please check back later to see how your website performed last year."
7144
  msgstr ""
7145
 
7146
- #: languages/vue.php:1543
7147
  msgid "Back to Overview Report"
7148
  msgstr ""
7149
 
7150
- #: languages/vue.php:1546
7151
  msgid "Your 2020 Analytics Report"
7152
  msgstr ""
7153
 
7154
- #: languages/vue.php:1549
7155
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2021!"
7156
  msgstr ""
7157
 
7158
- #: languages/vue.php:1552
7159
  msgid "Audience"
7160
  msgstr ""
7161
 
7162
- #: languages/vue.php:1555
7163
  msgid "Congrats"
7164
  msgstr ""
7165
 
7166
- #: languages/vue.php:1558
7167
  msgid "Your website was quite popular this year! "
7168
  msgstr ""
7169
 
7170
- #: languages/vue.php:1561
7171
  msgid "You had "
7172
  msgstr ""
7173
 
7174
- #: languages/vue.php:1564
7175
  msgid " visitors!"
7176
  msgstr ""
7177
 
7178
- #: languages/vue.php:1567
7179
  msgid " visitors"
7180
  msgstr ""
7181
 
7182
- #: languages/vue.php:1570
7183
  msgid "Total Visitors"
7184
  msgstr ""
7185
 
7186
- #: languages/vue.php:1573
7187
  msgid "Total Sessions"
7188
  msgstr ""
7189
 
7190
- #: languages/vue.php:1576
7191
  msgid "Visitors by Month"
7192
  msgstr ""
7193
 
7194
- #: languages/vue.php:1579
7195
  msgid "January 1, 2020 - December 31, 2020"
7196
  msgstr ""
7197
 
7198
- #: languages/vue.php:1582
7199
  msgid "A Tip for 2021"
7200
  msgstr ""
7201
 
7202
- #: languages/vue.php:1585
7203
  msgid "Demographics"
7204
  msgstr ""
7205
 
7206
- #: languages/vue.php:1588
7207
  msgid "#1"
7208
  msgstr ""
7209
 
7210
- #: languages/vue.php:1591
7211
  msgid "You Top 5 Countries"
7212
  msgstr ""
7213
 
7214
- #: languages/vue.php:1594
7215
  msgid "Let’s get to know your visitors a little better, shall we?"
7216
  msgstr ""
7217
 
7218
- #: languages/vue.php:1597
7219
  msgid "Gender"
7220
  msgstr ""
7221
 
7222
- #: languages/vue.php:1600
7223
  msgid "Female"
7224
  msgstr ""
7225
 
7226
- #: languages/vue.php:1603
7227
  msgid "Women"
7228
  msgstr ""
7229
 
7230
- #: languages/vue.php:1606
7231
  msgid "Male"
7232
  msgstr ""
7233
 
7234
- #: languages/vue.php:1609
7235
  msgid "Average Age"
7236
  msgstr ""
7237
 
7238
- #: languages/vue.php:1612
7239
  msgid "Behavior"
7240
  msgstr ""
7241
 
7242
- #: languages/vue.php:1615
7243
  msgid "Your Top 5 Pages"
7244
  msgstr ""
7245
 
7246
- #: languages/vue.php:1618
7247
  msgid "Time Spent on Site"
7248
  msgstr ""
7249
 
7250
- #: languages/vue.php:1621
7251
  msgid "minutes"
7252
  msgstr ""
7253
 
7254
- #: languages/vue.php:1624
7255
  msgid "Device Type"
7256
  msgstr ""
7257
 
7258
- #: languages/vue.php:1627
7259
  msgid "A Tip For 2021"
7260
  msgstr ""
7261
 
7262
- #: languages/vue.php:1630
7263
  msgid "Are you looking for a way to track your landing pages and see which one gets the most conversions on your website?"
7264
  msgstr ""
7265
 
7266
- #: languages/vue.php:1633
7267
  msgid "Read - How to Track Google Analytics Landing Page Conversions"
7268
  msgstr ""
7269
 
7270
- #: languages/vue.php:1636
7271
  msgid "So, where did all of these visitors come from?"
7272
  msgstr ""
7273
 
7274
- #: languages/vue.php:1639
7275
  msgid "Clicks"
7276
  msgstr ""
7277
 
7278
- #: languages/vue.php:1642
7279
  msgid "Your Top 5 Keywords"
7280
  msgstr ""
7281
 
7282
- #: languages/vue.php:1645
7283
  msgid "What keywords visitors searched for to find your site"
7284
  msgstr ""
7285
 
7286
- #: languages/vue.php:1648
7287
  msgid "Your Top 5 Referrals"
7288
  msgstr ""
7289
 
7290
- #: languages/vue.php:1651
7291
  msgid "The websites that link back to your website"
7292
  msgstr ""
7293
 
7294
- #: languages/vue.php:1654
7295
  msgid "Opportunity"
7296
  msgstr ""
7297
 
7298
- #: languages/vue.php:1657
7299
  msgid "Learn how to boost your SEO rankings using ExactMetrics so more visitors reach your articles and increase engagement."
7300
  msgstr ""
7301
 
7302
- #: languages/vue.php:1660
7303
  msgid "Read - 5 Ways to Skyrocket Your SEO Rankings with Google Analytics"
7304
  msgstr ""
7305
 
7306
- #: languages/vue.php:1663
7307
  msgid "Thank you for using ExactMetrics!"
7308
  msgstr ""
7309
 
7310
- #: languages/vue.php:1666
7311
  msgid "We’re grateful for your continued support. If there’s anything we can do to help you grow your business, please don’t hesitate to contact our team."
7312
  msgstr ""
7313
 
7314
- #: languages/vue.php:1669
7315
  msgid "Here's to an amazing 2021!"
7316
  msgstr ""
7317
 
7318
- #: languages/vue.php:1672
7319
  msgid "Enjoying ExactMetrics"
7320
  msgstr ""
7321
 
7322
- #: languages/vue.php:1675
7323
  msgid "Leave a five star review!"
7324
  msgstr ""
7325
 
7326
- #: languages/vue.php:1678
7327
  msgid "Syed Balkhi"
7328
  msgstr ""
7329
 
7330
- #: languages/vue.php:1681
7331
  msgid "Chris Christoff"
7332
  msgstr ""
7333
 
7334
- #: languages/vue.php:1684
7335
  msgid "Write Review"
7336
  msgstr ""
7337
 
7338
- #: languages/vue.php:1687
7339
  msgid "Did you know over 10 million websites use our plugins?"
7340
  msgstr ""
7341
 
7342
- #: languages/vue.php:1690
7343
  msgid "Try our other popular WordPress plugins to grow your website in 2021."
7344
  msgstr ""
7345
 
7346
- #: languages/vue.php:1693
7347
  msgid "Join our Communities!"
7348
  msgstr ""
7349
 
7350
- #: languages/vue.php:1696
7351
  msgid "Become a WordPress expert in 2021. Join our amazing communities and take your website to the next level."
7352
  msgstr ""
7353
 
7354
- #: languages/vue.php:1699
7355
  msgid "Facebook Group"
7356
  msgstr ""
7357
 
7358
- #: languages/vue.php:1702
7359
  msgid "Join our team of WordPress experts and other motivated website owners in the WPBeginner Engage Facebook Group."
7360
  msgstr ""
7361
 
7362
- #: languages/vue.php:1705
7363
  msgid "Join Now...It’s Free!"
7364
  msgstr ""
7365
 
7366
- #: languages/vue.php:1708
7367
  msgid "WordPress Tutorials by WPBeginner"
7368
  msgstr ""
7369
 
7370
- #: languages/vue.php:1711
7371
  msgid "WPBeginner is the largest free WordPress resource site for beginners and non-techy users."
7372
  msgstr ""
7373
 
7374
- #: languages/vue.php:1714
7375
  msgid "Visit WPBeginner"
7376
  msgstr ""
7377
 
7378
- #: languages/vue.php:1717
7379
  msgid "Follow Us!"
7380
  msgstr ""
7381
 
7382
- #: languages/vue.php:1720
7383
  msgid "Follow ExactMetrics on social media to stay up to date with latest updates, trends, and tutorials on how to make the most out of analytics."
7384
  msgstr ""
7385
 
7386
- #: languages/vue.php:1723
7387
  msgid "Copyright ExactMetrics, 2021"
7388
  msgstr ""
7389
 
7390
- #: languages/vue.php:1726
7391
  msgid "Upgrade to ExactMetrics Pro to Unlock Additional Actionable Insights"
7392
  msgstr ""
7393
 
7394
- #: languages/vue.php:1732
7395
  msgid "January"
7396
  msgstr ""
7397
 
7398
- #: languages/vue.php:1735
7399
  msgid "February"
7400
  msgstr ""
7401
 
7402
- #: languages/vue.php:1738
7403
  msgid "March"
7404
  msgstr ""
7405
 
7406
- #: languages/vue.php:1741
7407
  msgid "April"
7408
  msgstr ""
7409
 
7410
- #: languages/vue.php:1744
7411
  msgid "May"
7412
  msgstr ""
7413
 
7414
- #: languages/vue.php:1747
7415
  msgid "June"
7416
  msgstr ""
7417
 
7418
- #: languages/vue.php:1750
7419
  msgid "July"
7420
  msgstr ""
7421
 
7422
- #: languages/vue.php:1753
7423
  msgid "August"
7424
  msgstr ""
7425
 
7426
- #: languages/vue.php:1756
7427
  msgid "September"
7428
  msgstr ""
7429
 
7430
- #: languages/vue.php:1759
7431
  msgid "October"
7432
  msgstr ""
7433
 
7434
- #: languages/vue.php:1762
7435
  msgid "November"
7436
  msgstr ""
7437
 
7438
- #: languages/vue.php:1765
7439
  msgid "December"
7440
  msgstr ""
7441
 
7442
  #. Translators: Number of visitors.
7443
- #: languages/vue.php:1769
7444
  msgid "Your best month was <strong>%1$s</strong> with <strong>%2$s visitors!</strong>"
7445
  msgstr ""
7446
 
7447
- #: languages/vue.php:1772
7448
  msgid "See the top Traffic Sources and Top Pages for the Month of %s in the Overview Report to replicate your success."
7449
  msgstr ""
7450
 
7451
  #. Translators: Number of visitors.
7452
- #: languages/vue.php:1776
7453
  msgid "Your <strong>%1$s</strong> visitors came from <strong>%2$s</strong> different countries."
7454
  msgstr ""
7455
 
7456
  #. Translators: Number of visitors.
7457
- #: languages/vue.php:1780
7458
  msgid "%s Visitors"
7459
  msgstr ""
7460
 
7461
  #. Translators: Percent and Number of visitors.
7462
- #: languages/vue.php:1784
7463
  msgid "%1$s&#37 of your visitors were %2$s"
7464
  msgstr ""
7465
 
7466
  #. Translators: Number of visitors and their age.
7467
- #: languages/vue.php:1788
7468
  msgid "%1$s&#37 of your visitors were between the ages of %2$s"
7469
  msgstr ""
7470
 
7471
- #: languages/vue.php:1791
7472
  msgid "Your <strong>%1$s</strong> visitors viewed a total of <strong>%2$s</strong> pages. <span class='average-page-per-user' style='font-size: 20px;margin-top:25px;display:block;font-family:Lato'>That's an average of %3$s pages for each visitor!</span>"
7473
  msgstr ""
7474
 
7475
  #. Translators: Number of minutes spent on site.
7476
- #: languages/vue.php:1795
7477
  msgid "Each visitor spent an average of %s minutes on your website in 2020."
7478
  msgstr ""
7479
 
7480
  #. Translators: Name of device type.
7481
- #: languages/vue.php:1799
7482
  msgid "Most of your visitors viewed your website from their <strong>%s</strong> device."
7483
  msgstr ""
7484
 
7485
  #. Translators: Number of visitors and device percentage.
7486
- #: languages/vue.php:1803
7487
  msgid "%1$s&#37 of your visitors were on a %2$s device."
7488
  msgstr ""
7489
 
7490
- #: languages/vue.php:1806
7491
  msgid "Desktop"
7492
  msgstr ""
7493
 
7494
- #: languages/vue.php:1809
7495
  msgid "Tablet"
7496
  msgstr ""
7497
 
7498
- #: languages/vue.php:1812
7499
  msgid "Mobile"
7500
  msgstr ""
7501
 
7502
- #: languages/vue.php:1815
7503
  msgid "Force Deauthenticate"
7504
  msgstr ""
7505
 
7506
- #: languages/vue.php:1818
7507
  msgid "Disconnect ExactMetrics"
7508
  msgstr ""
7509
 
7510
- #: languages/vue.php:1821
7511
  msgid "Authenticating"
7512
  msgstr ""
7513
 
7514
- #: languages/vue.php:1824
7515
  msgid "Verifying Credentials"
7516
  msgstr ""
7517
 
7518
- #: languages/vue.php:1827
7519
  msgid "Your site is connected to ExactMetrics!"
7520
  msgstr ""
7521
 
7522
- #: languages/vue.php:1830
7523
  msgid "Deauthenticating"
7524
  msgstr ""
7525
 
7526
- #: languages/vue.php:1833
7527
  msgid "You've disconnected your site from ExactMetrics. Your site is no longer being tracked by Google Analytics and you won't see reports anymore."
7528
  msgstr ""
7529
 
7530
- #: languages/vue.php:1836
7531
- #: languages/vue.php:1914
7532
  msgid "Connect ExactMetrics"
7533
  msgstr ""
7534
 
7535
- #: languages/vue.php:1839
7536
  msgid "Verify Credentials"
7537
  msgstr ""
7538
 
7539
- #: languages/vue.php:1845
7540
  msgid "Website Profile"
7541
  msgstr ""
7542
 
7543
- #: languages/vue.php:1848
7544
  msgid "Active Profile"
7545
  msgstr ""
7546
 
7547
- #: languages/vue.php:1851
7548
  msgid "Your website profile has been set at the network level of your WordPress Multisite."
7549
  msgstr ""
7550
 
7551
- #: languages/vue.php:1854
7552
  msgid "If you would like to use a different profile for this subsite, you can authenticate below."
7553
  msgstr ""
7554
 
7555
- #: languages/vue.php:1858
7556
  msgid "Dual Tracking Profile"
7557
  msgstr ""
7558
 
7559
- #: languages/vue.php:1862
7560
  msgid "The dual tracking feature allows you to continue tracking this site into an existing GAv3 property so you can continue to use the GA reports you are used to already. Learn more about this feature %1$shere%2$s."
7561
  msgstr ""
7562
 
7563
- #: languages/vue.php:1866
7564
  msgid "Your Universal Analytics code should look like UA-XXXXXXXXXX where the X's are numbers."
7565
  msgstr ""
7566
 
7567
- #: languages/vue.php:1870
7568
  msgid "The dual tracking feature allows you to begin tracking this site into a GAv4 property to take advantage of the new GAv4 analysis tools. Learn more about this feature %1$shere%2$s."
7569
  msgstr ""
7570
 
7571
- #: languages/vue.php:1873
7572
  msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are numbers."
7573
  msgstr ""
7574
 
7575
- #: languages/vue.php:1877
7576
  msgid "Measurement Protocol API Secret"
7577
  msgstr ""
7578
 
7579
- #: languages/vue.php:1881
7580
  msgid "The Measurement Protocol API secret allows your site to send tracking data to Google Analytics. To retrieve your Measurement Protocol API Secret, follow %1$sthis guide%2$s."
7581
  msgstr ""
7582
 
7583
- #: languages/vue.php:1884
7584
  msgid "Classic mode"
7585
  msgstr ""
7586
 
7587
- #: languages/vue.php:1887
7588
  msgid "Proceed"
7589
  msgstr ""
7590
 
7591
- #: languages/vue.php:1890
7592
  msgid "Connection Information"
7593
  msgstr ""
7594
 
7595
- #: languages/vue.php:1893
7596
  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."
7597
  msgstr ""
7598
 
7599
- #: languages/vue.php:1896
7600
  msgid "Hostname"
7601
  msgstr ""
7602
 
7603
- #: languages/vue.php:1899
7604
  msgid "FTP Username"
7605
  msgstr ""
7606
 
7607
- #: languages/vue.php:1902
7608
  msgid "FTP Password"
7609
  msgstr ""
7610
 
7611
- #: languages/vue.php:1905
7612
  msgid "This password will not be stored on the server."
7613
  msgstr ""
7614
 
7615
- #: languages/vue.php:1908
7616
  msgid "Connection Type"
7617
  msgstr ""
7618
 
7619
- #: languages/vue.php:1911
7620
  msgid "Cancel"
7621
  msgstr ""
7622
 
7623
- #: languages/vue.php:1917
7624
  msgid "Website profile"
7625
  msgstr ""
7626
 
7627
- #: languages/vue.php:1920
7628
  msgid "Active profile"
7629
  msgstr ""
7630
 
7631
- #: languages/vue.php:1923
7632
  msgid "Skip and Keep Connection"
7633
  msgstr ""
7634
 
7635
- #. Translators: Replaced with the number of days
7636
- #: languages/vue.php:1927
7637
  msgid "vs. Previous Day"
7638
  msgstr ""
7639
 
7640
- #: languages/vue.php:1930
7641
  msgid "No change"
7642
  msgstr ""
7643
 
7644
- #: languages/vue.php:1933
7645
  msgid "Choose Theme"
7646
  msgstr ""
7647
 
7648
- #: languages/vue.php:1936
7649
  msgid "Widget Styling"
7650
  msgstr ""
7651
 
7652
- #: languages/vue.php:1939
7653
  msgid "Choose how you want to determine the colors, font sizes and spacing of the widget."
7654
  msgstr ""
7655
 
7656
- #: languages/vue.php:1942
7657
  msgid "Sort By"
7658
  msgstr ""
7659
 
7660
- #: languages/vue.php:1945
7661
  msgid "Choose how you'd like the widget to determine your popular posts."
7662
  msgstr ""
7663
 
7664
- #: languages/vue.php:1948
7665
  msgid "Display Title"
7666
  msgstr ""
7667
 
7668
- #: languages/vue.php:1954
7669
  msgid "Title your widget and set its display preferences."
7670
  msgstr ""
7671
 
7672
- #: languages/vue.php:1957
7673
  msgid "Include in Post Types"
7674
  msgstr ""
7675