Google Analytics for WordPress by MonsterInsights - Version 7.13.2

Version Description

= 7.0.0 =

This is a major release. Please back up your site before upgrading.

= 6.0.0 =

This is a major release. Please back up your site before upgrading.

Download this release

Release Info

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

Code changes from version 7.13.0 to 7.13.2

googleanalytics.php CHANGED
@@ -6,7 +6,7 @@
6
  * Author: MonsterInsights
7
  * Author URI: https://www.monsterinsights.com/?utm_source=liteplugin&utm_medium=pluginheader&utm_campaign=authoruri&utm_content=7%2E0%2E0
8
  *
9
- * Version: 7.13.0
10
  * Requires at least: 3.8.0
11
  * Requires PHP: 5.2
12
  *
@@ -69,7 +69,7 @@ final class MonsterInsights_Lite {
69
  * @access public
70
  * @var string $version Plugin version.
71
  */
72
- public $version = '7.13.0';
73
 
74
  /**
75
  * Plugin file.
6
  * Author: MonsterInsights
7
  * Author URI: https://www.monsterinsights.com/?utm_source=liteplugin&utm_medium=pluginheader&utm_campaign=authoruri&utm_content=7%2E0%2E0
8
  *
9
+ * Version: 7.13.2
10
  * Requires at least: 3.8.0
11
  * Requires PHP: 5.2
12
  *
69
  * @access public
70
  * @var string $version Plugin version.
71
  */
72
+ public $version = '7.13.2';
73
 
74
  /**
75
  * Plugin file.
includes/admin/notification-event.php CHANGED
@@ -286,8 +286,12 @@ class MonsterInsights_Notification_Event {
286
  */
287
  public function get_report( $report_name="overview", $report_start_from="-30 day", $report_end_to="-1 day" ) {
288
  // get overview report data
289
- $data = array();
290
- $report = MonsterInsights()->reporting->get_report( $report_name );
 
 
 
 
291
  $isnetwork = ! empty( $_REQUEST['isnetwork'] ) ? sanitize_text_field( wp_unslash( $_REQUEST['isnetwork'] ) ) : '';
292
  $args = array(
293
  'start' => $this->get_formatted_date( $report_start_from ),
286
  */
287
  public function get_report( $report_name="overview", $report_start_from="-30 day", $report_end_to="-1 day" ) {
288
  // get overview report data
289
+ $data = array();
290
+ $report = MonsterInsights()->reporting->get_report( $report_name );
291
+ if ( $report ) {
292
+ // Mark the report request as coming from Notifications.
293
+ $report->set_report_source( 'notifications' );
294
+ }
295
  $isnetwork = ! empty( $_REQUEST['isnetwork'] ) ? sanitize_text_field( wp_unslash( $_REQUEST['isnetwork'] ) ) : '';
296
  $args = array(
297
  'start' => $this->get_formatted_date( $report_start_from ),
includes/admin/notifications/notification-audience.php CHANGED
@@ -18,6 +18,11 @@ final class MonsterInsights_Notification_Audience extends MonsterInsights_Notifi
18
  * @since 7.12.3
19
  */
20
  public function get_notification_data() {
 
 
 
 
 
21
  require_once( ABSPATH . 'wp-admin/includes/translation-install.php' );
22
 
23
  $data = array();
18
  * @since 7.12.3
19
  */
20
  public function get_notification_data() {
21
+ if ( ! monsterinsights_is_pro_version() ) {
22
+ // Improve performance for lite users by disabling external API calls they can’t access.
23
+ // Since lite users can’t access this feature return early.
24
+ return false;
25
+ }
26
  require_once( ABSPATH . 'wp-admin/includes/translation-install.php' );
27
 
28
  $data = array();
includes/admin/notifications/notification-bounce-rate.php CHANGED
@@ -20,6 +20,11 @@ final class MonsterInsights_Notification_Bounce_Rate extends MonsterInsights_Not
20
  * @since 7.12.3
21
  */
22
  public function prepare_notification_data( $notification ) {
 
 
 
 
 
23
  $data = array();
24
  $report = $this->get_report( 'overview', $this->report_start_from, $this->report_end_to );
25
  $data['bounce_rate'] = isset( $report['data']['infobox']['bounce']['value'] ) ? $report['data']['infobox']['bounce']['value'] : 0;
20
  * @since 7.12.3
21
  */
22
  public function prepare_notification_data( $notification ) {
23
+ if ( ! monsterinsights_is_pro_version() ) {
24
+ // Improve performance for lite users by disabling external API calls they can’t access.
25
+ // Since lite users can’t access this feature return early.
26
+ return false;
27
+ }
28
  $data = array();
29
  $report = $this->get_report( 'overview', $this->report_start_from, $this->report_end_to );
30
  $data['bounce_rate'] = isset( $report['data']['infobox']['bounce']['value'] ) ? $report['data']['infobox']['bounce']['value'] : 0;
includes/admin/notifications/notification-mobile-device.php CHANGED
@@ -19,6 +19,11 @@ final class MonsterInsights_Notification_Mobile_Device extends MonsterInsights_N
19
  * @since 7.12.3
20
  */
21
  public function prepare_notification_data( $notification ) {
 
 
 
 
 
22
  $data = array();
23
  $report = $this->get_report( 'overview', $this->report_start_from, $this->report_end_to );
24
  $data['percentage_of_mobile_visitors'] = isset( $report['data']['devices']['mobile'] ) ? $report['data']['devices']['mobile'] : 0;
19
  * @since 7.12.3
20
  */
21
  public function prepare_notification_data( $notification ) {
22
+ if ( ! monsterinsights_is_pro_version() ) {
23
+ // Improve performance for lite users by disabling external API calls they can’t access.
24
+ // Since lite users can’t access this feature return early.
25
+ return false;
26
+ }
27
  $data = array();
28
  $report = $this->get_report( 'overview', $this->report_start_from, $this->report_end_to );
29
  $data['percentage_of_mobile_visitors'] = isset( $report['data']['devices']['mobile'] ) ? $report['data']['devices']['mobile'] : 0;
includes/admin/notifications/notification-returning-visitors.php CHANGED
@@ -20,6 +20,11 @@ final class MonsterInsights_Notification_Returning_Visitors extends MonsterInsig
20
  * @since 7.12.3
21
  */
22
  public function prepare_notification_data( $notification ) {
 
 
 
 
 
23
  $data = array();
24
  $report = $this->get_report( 'overview', $this->report_start_from, $this->report_end_to );
25
  $data['returning'] = isset( $report['data']['newvsreturn']['returning'] ) ? $report['data']['newvsreturn']['returning'] : 0;
20
  * @since 7.12.3
21
  */
22
  public function prepare_notification_data( $notification ) {
23
+ if ( ! monsterinsights_is_pro_version() ) {
24
+ // Improve performance for lite users by disabling external API calls they can’t access.
25
+ // Since lite users can’t access this feature return early.
26
+ return false;
27
+ }
28
  $data = array();
29
  $report = $this->get_report( 'overview', $this->report_start_from, $this->report_end_to );
30
  $data['returning'] = isset( $report['data']['newvsreturn']['returning'] ) ? $report['data']['newvsreturn']['returning'] : 0;
includes/admin/notifications/notification-traffic-dropping.php CHANGED
@@ -20,6 +20,11 @@ final class MonsterInsights_Notification_Traffic_Dropping extends MonsterInsight
20
  * @since 7.12.3
21
  */
22
  public function prepare_notification_data( $notification ) {
 
 
 
 
 
23
  $data = array();
24
  $report = $this->get_report();
25
  $data['prev_sessions_difference'] = isset( $report['data']['infobox']['sessions']['prev'] ) ? $report['data']['infobox']['sessions']['prev'] : 0;
20
  * @since 7.12.3
21
  */
22
  public function prepare_notification_data( $notification ) {
23
+ if ( ! monsterinsights_is_pro_version() ) {
24
+ // Improve performance for lite users by disabling external API calls they can’t access.
25
+ // Since lite users can’t access this feature return early.
26
+ return false;
27
+ }
28
  $data = array();
29
  $report = $this->get_report();
30
  $data['prev_sessions_difference'] = isset( $report['data']['infobox']['sessions']['prev'] ) ? $report['data']['infobox']['sessions']['prev'] : 0;
includes/admin/notifications/notification-visitors.php CHANGED
@@ -26,6 +26,11 @@ final class MonsterInsights_Notification_Visitors extends MonsterInsights_Notifi
26
  * @since 7.12.3
27
  */
28
  public function prepare_notification_data( $notification ) {
 
 
 
 
 
29
  $report = $this->get_report();
30
 
31
  if ( ! is_array( $report ) || empty( $report ) ) {
26
  * @since 7.12.3
27
  */
28
  public function prepare_notification_data( $notification ) {
29
+ if ( ! monsterinsights_is_pro_version() ) {
30
+ // Improve performance for lite users by disabling external API calls they can’t access.
31
+ // Since lite users can’t access this feature return early.
32
+ return false;
33
+ }
34
  $report = $this->get_report();
35
 
36
  if ( ! is_array( $report ) || empty( $report ) ) {
includes/admin/reports/abstract-report.php CHANGED
@@ -22,6 +22,7 @@ class MonsterInsights_Report {
22
  public $class;
23
  public $name;
24
  public $version = '1.0.0';
 
25
 
26
  /**
27
  * Primary class constructor.
@@ -218,6 +219,13 @@ class MonsterInsights_Report {
218
 
219
  $api = new MonsterInsights_API_Request( 'analytics/reports/' . $this->name . '/', $api_options, 'GET' );
220
 
 
 
 
 
 
 
 
221
  $additional_data = $this->additional_data();
222
 
223
  if ( ! empty( $additional_data ) ) {
@@ -438,6 +446,17 @@ class MonsterInsights_Report {
438
  public function prepare_report_data( $data ) {
439
  return $data;
440
  }
 
 
 
 
 
 
 
 
 
 
 
441
  }
442
 
443
  if ( ! class_exists( 'MonsterInsightsDateTime' ) ) {
22
  public $class;
23
  public $name;
24
  public $version = '1.0.0';
25
+ public $source = 'reports';
26
 
27
  /**
28
  * Primary class constructor.
219
 
220
  $api = new MonsterInsights_API_Request( 'analytics/reports/' . $this->name . '/', $api_options, 'GET' );
221
 
222
+ // Use a report source indicator for requests.
223
+ if ( ! empty( $this->source ) ) {
224
+ $api->set_additional_data( array(
225
+ 'source' => $this->source,
226
+ ) );
227
+ }
228
+
229
  $additional_data = $this->additional_data();
230
 
231
  if ( ! empty( $additional_data ) ) {
446
  public function prepare_report_data( $data ) {
447
  return $data;
448
  }
449
+
450
+ /**
451
+ * Set a report source to be sent with the request.
452
+ *
453
+ * @param string $source The source where the report is called from, defaults to reports.
454
+ */
455
+ public function set_report_source( $source ) {
456
+ if ( ! empty( $source ) && is_string( $source ) ) {
457
+ $this->source = $source;
458
+ }
459
+ }
460
  }
461
 
462
  if ( ! class_exists( 'MonsterInsightsDateTime' ) ) {
includes/install.php CHANGED
@@ -140,6 +140,10 @@ class MonsterInsights_Install {
140
  $this->v7130_upgrades();
141
  }
142
 
 
 
 
 
143
  // Do not use. See monsterinsights_after_install_routine comment below.
144
  do_action( 'monsterinsights_after_existing_upgrade_routine', $version );
145
  $version = get_option( 'monsterinsights_current_version', $version );
@@ -805,4 +809,14 @@ class MonsterInsights_Install {
805
  );
806
  }
807
  }
 
 
 
 
 
 
 
 
 
 
808
  }
140
  $this->v7130_upgrades();
141
  }
142
 
143
+ if ( version_compare( $version, '7.13.1', '<' ) ) {
144
+ $this->v7131_upgrades();
145
+ }
146
+
147
  // Do not use. See monsterinsights_after_install_routine comment below.
148
  do_action( 'monsterinsights_after_existing_upgrade_routine', $version );
149
  $version = get_option( 'monsterinsights_current_version', $version );
809
  );
810
  }
811
  }
812
+
813
+ /**
814
+ * Upgrade routine for version 7.13.1
815
+ */
816
+ public function v7131_upgrades() {
817
+
818
+ // Delete transient for GA data with wrong expiration date.
819
+ delete_transient( 'monsterinsights_popular_posts_ga_data' );
820
+
821
+ }
822
  }
languages/google-analytics-for-wordpress.pot CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Google Analytics for WordPress by MonsterInsights plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Google Analytics for WordPress by MonsterInsights 7.13.0\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/google-analytics-for-wordpress\n"
7
  "Last-Translator: MonsterInsights Team <support@monsterinsights.com>\n"
8
  "Language-Team: MonsterInsights Team <support@monsterinsights.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2020-11-04T10:07:02+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.2.0\n"
15
  "X-Domain: google-analytics-for-wordpress\n"
@@ -78,7 +78,7 @@ msgid "Theme:"
78
  msgstr ""
79
 
80
  #: lite/includes/popular-posts/class-popular-posts-widget-sidebar.php:258
81
- #: languages/vue.php:2083
82
  msgid "Theme Preview"
83
  msgstr ""
84
 
@@ -155,7 +155,7 @@ msgid "MonsterInsights integrates your WordPress website with Google Analytics."
155
  msgstr ""
156
 
157
  #: lite/includes/admin/wp-site-health.php:253
158
- #: languages/vue.php:441
159
  msgid "View Reports"
160
  msgstr ""
161
 
@@ -232,7 +232,7 @@ msgstr ""
232
  #: lite/includes/admin/wp-site-health.php:372
233
  #: lite/includes/admin/wp-site-health.php:398
234
  #: lite/includes/admin/wp-site-health.php:425
235
- #: languages/vue.php:1491
236
  msgid "View Addons"
237
  msgstr ""
238
 
@@ -365,7 +365,7 @@ msgid "%1$sBonus:%2$s You also get 50%% off discount for being a loyal MonsterIn
365
  msgstr ""
366
 
367
  #: lite/includes/admin/helpers.php:83
368
- #: languages/vue.php:1276
369
  msgid "Upgrade to MonsterInsights Pro"
370
  msgstr ""
371
 
@@ -384,12 +384,12 @@ msgid "You are not allowed to install plugins"
384
  msgstr ""
385
 
386
  #: lite/includes/admin/reports/report-queries.php:22
387
- #: languages/vue.php:544
388
  msgid "Search Console"
389
  msgstr ""
390
 
391
  #: lite/includes/admin/reports/report-ecommerce.php:22
392
- #: languages/vue.php:388
393
  msgid "eCommerce"
394
  msgstr ""
395
 
@@ -402,23 +402,23 @@ msgid "Real Time"
402
  msgstr ""
403
 
404
  #: lite/includes/admin/reports/report-publisher.php:22
405
- #: languages/vue.php:541
406
  msgid "Publishers"
407
  msgstr ""
408
 
409
  #: lite/includes/admin/reports/report-dimensions.php:22
410
- #: languages/vue.php:547
411
  msgid "Dimensions"
412
  msgstr ""
413
 
414
  #: lite/includes/admin/reports/report-forms.php:22
415
- #: languages/vue.php:550
416
  msgid "Forms"
417
  msgstr ""
418
 
419
  #: lite/includes/admin/welcome.php:56
420
  #: lite/includes/admin/welcome.php:57
421
- #: languages/vue.php:214
422
  msgid "Welcome to MonsterInsights"
423
  msgstr ""
424
 
@@ -671,7 +671,7 @@ msgid "Question"
671
  msgstr ""
672
 
673
  #: includes/gutenberg/headline-tool/headline-tool.php:302
674
- #: languages/vue.php:379
675
  msgid "General"
676
  msgstr ""
677
 
@@ -2953,7 +2953,7 @@ msgstr ""
2953
  msgid "%s Days"
2954
  msgstr ""
2955
 
2956
- #: includes/admin/notification-event.php:304
2957
  #: includes/admin/routes.php:614
2958
  #: includes/admin/routes.php:948
2959
  msgid "You don't have permission to view MonsterInsights reports."
@@ -3165,12 +3165,12 @@ msgid "MonsterInsights has detected that it's files are being blocked. This is u
3165
  msgstr ""
3166
 
3167
  #: includes/admin/common.php:869
3168
- #: languages/vue.php:2413
3169
  msgid "Your 2019 Analytics Report"
3170
  msgstr ""
3171
 
3172
  #: includes/admin/common.php:875
3173
- #: languages/vue.php:2416
3174
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2020!"
3175
  msgstr ""
3176
 
@@ -3182,14 +3182,14 @@ msgstr ""
3182
  #: includes/admin/admin.php:37
3183
  #: includes/admin/admin.php:45
3184
  #: includes/admin/admin.php:94
3185
- #: languages/vue.php:191
3186
  msgid "Insights"
3187
  msgstr ""
3188
 
3189
  #: includes/admin/admin.php:34
3190
  #: includes/admin/admin.php:42
3191
  #: includes/admin/admin.php:188
3192
- #: languages/vue.php:375
3193
  msgid "Settings"
3194
  msgstr ""
3195
 
@@ -3205,7 +3205,7 @@ msgstr ""
3205
 
3206
  #: includes/admin/admin.php:39
3207
  #: includes/admin/admin.php:98
3208
- #: languages/vue.php:1158
3209
  msgid "Reports"
3210
  msgstr ""
3211
 
@@ -3243,7 +3243,7 @@ msgstr ""
3243
 
3244
  #: includes/admin/admin.php:63
3245
  #: includes/admin/admin.php:106
3246
- #: languages/vue.php:327
3247
  msgid "About Us"
3248
  msgstr ""
3249
 
@@ -3270,13 +3270,13 @@ msgstr ""
3270
  #: includes/admin/notifications/notification-upgrade-for-email-summaries.php:33
3271
  #: includes/admin/notifications/notification-upgrade-for-search-console.php:33
3272
  #: includes/admin/notifications/notification-upgrade-for-form-conversion.php:33
3273
- #: includes/admin/reports/abstract-report.php:378
3274
  msgid "Get MonsterInsights Pro"
3275
  msgstr ""
3276
 
3277
  #: includes/admin/admin.php:178
3278
  #: includes/admin/admin.php:181
3279
- #: languages/vue.php:749
3280
  msgid "Support"
3281
  msgstr ""
3282
 
@@ -3286,28 +3286,28 @@ msgid "Please rate %1$sMonsterInsights%2$s on %3$s %4$sWordPress.org%5$s to help
3286
  msgstr ""
3287
 
3288
  #: includes/admin/admin.php:284
3289
- #: languages/vue.php:517
3290
  msgid "Please Setup Website Analytics to See Audience Insights"
3291
  msgstr ""
3292
 
3293
  #: includes/admin/admin.php:285
3294
- #: languages/vue.php:523
3295
  msgid "Connect MonsterInsights and Setup Website Analytics"
3296
  msgstr ""
3297
 
3298
  #: includes/admin/admin.php:287
3299
- #: includes/admin/notifications/notification-mobile-device.php:38
3300
- #: includes/admin/notifications/notification-returning-visitors.php:39
3301
- #: includes/admin/notifications/notification-traffic-dropping.php:34
3302
- #: includes/admin/notifications/notification-bounce-rate.php:38
3303
  #: includes/admin/notifications/notification-headline-analyzer.php:30
3304
- #: includes/admin/notifications/notification-audience.php:90
3305
- #: languages/vue.php:472
3306
  msgid "Learn More"
3307
  msgstr ""
3308
 
3309
  #: includes/admin/admin.php:289
3310
- #: languages/vue.php:520
3311
  msgid "MonsterInsights, WordPress analytics plugin, helps you connect your website with Google Analytics, so you can see how people find and use your website. Over 2 million website owners use MonsterInsights to see the stats that matter and grow their business."
3312
  msgstr ""
3313
 
@@ -3318,17 +3318,17 @@ msgstr ""
3318
 
3319
  #. Translators: Adds a link to the license renewal.
3320
  #: includes/admin/admin.php:310
3321
- #: languages/vue.php:2750
3322
  msgid "Your license key for MonsterInsights has expired. %1$sPlease click here to renew your license key.%2$s"
3323
  msgstr ""
3324
 
3325
  #: includes/admin/admin.php:312
3326
- #: languages/vue.php:2753
3327
  msgid "Your license key for MonsterInsights has been disabled. Please use a different key."
3328
  msgstr ""
3329
 
3330
  #: includes/admin/admin.php:314
3331
- #: languages/vue.php:2756
3332
  msgid "Your license key for MonsterInsights is invalid. The key no longer exists or the user associated with the key has been deleted. Please use a different key."
3333
  msgstr ""
3334
 
@@ -3423,31 +3423,31 @@ msgid "%sGoogle Optimize%s is a free A/B testing and personalization product by
3423
  msgstr ""
3424
 
3425
  #. Translators: Mobile device notification title
3426
- #: includes/admin/notifications/notification-mobile-device.php:28
3427
  msgid "Traffic from Mobile Devices is %s%%"
3428
  msgstr ""
3429
 
3430
  #. Translators: Mobile device notification content
3431
- #: includes/admin/notifications/notification-mobile-device.php:30
3432
  msgid "Traffic from mobile devices is considerably lower on your site compared to desktop devices. This could be an indicator that your site is not optimised for mobile devices.<br><br>Take a look now at %show your site looks%s on mobile and make sure all your content can be accessed correctly."
3433
  msgstr ""
3434
 
3435
- #: includes/admin/notifications/notification-mobile-device.php:34
3436
- #: includes/admin/notifications/notification-returning-visitors.php:35
3437
- #: includes/admin/notifications/notification-traffic-dropping.php:38
3438
- #: includes/admin/notifications/notification-visitors.php:43
3439
- #: includes/admin/notifications/notification-bounce-rate.php:34
3440
- #: includes/admin/notifications/notification-audience.php:86
3441
  msgid "View Report"
3442
  msgstr ""
3443
 
3444
  #. Translators: Returning visitors notification title
3445
- #: includes/admin/notifications/notification-returning-visitors.php:29
3446
  msgid "Only %s%% of your visitors return to your site"
3447
  msgstr ""
3448
 
3449
  #. Translators: Returning visitors notification content
3450
- #: includes/admin/notifications/notification-returning-visitors.php:31
3451
  msgid "For any website, returning visitors are important because they indicate how successful your marketing campaigns are, who are your loyal customers, and how powerful your brand is. %sIn this article%s, we’ll show you 7 proven ways to increase your returning visitor rate."
3452
  msgstr ""
3453
 
@@ -3460,24 +3460,24 @@ msgstr ""
3460
  msgid "Wouldn’t it be easy if you could get your website’s performance report in your email inbox every week? With our new feature, Email Summaries, you can now view all your important stats in a simple report that’s delivered straight to your inbox. <br><br>You get an overview of your site's performance without logging in to WordPress or going through different Analytics reports. %sUpgrade to MonsterInsights Pro%s to enable the Email Summaries feature."
3461
  msgstr ""
3462
 
3463
- #: includes/admin/notifications/notification-traffic-dropping.php:28
3464
  msgid "Your Website Traffic Is Dropping"
3465
  msgstr ""
3466
 
3467
  #. Translators: Traffic dropping notification content
3468
- #: includes/admin/notifications/notification-traffic-dropping.php:30
3469
  msgid "Your website traffic is decreasing and that’s a reason to take action now. Less traffic means less opportunities to make your brand known, make relationships and ultimately sell your service or product. <br><br>Follow the marketing hacks of %sthis article%s to start growing your traffic again."
3470
  msgstr ""
3471
 
3472
  #. Translators: visitors notification title
3473
  #. Translators: Number of visitors.
3474
- #: includes/admin/notifications/notification-visitors.php:37
3475
- #: languages/vue.php:198
3476
  msgid "See how %s visitors found your site!"
3477
  msgstr ""
3478
 
3479
  #. Translators: visitors notification content
3480
- #: includes/admin/notifications/notification-visitors.php:39
3481
  msgid "Your website has been visited by %s visitors in the past 30 days. Click the button below to view the full analytics report."
3482
  msgstr ""
3483
 
@@ -3512,12 +3512,12 @@ msgstr ""
3512
  msgid "Forms are one of the most important points of interaction on your website. When a visitor fills out a form on your site, they’re taking the next step in their customer journey. That’s why it’s so crucial that your WordPress forms are optimized for conversions. Upgrade to %sMonsterInsights Pro%s to track %sform conversions in Google Analytics.%s"
3513
  msgstr ""
3514
 
3515
- #: includes/admin/notifications/notification-bounce-rate.php:28
3516
  msgid "Your website bounce rate is higher than 70%"
3517
  msgstr ""
3518
 
3519
  #. Translators: Bounce rate notification content
3520
- #: includes/admin/notifications/notification-bounce-rate.php:30
3521
  msgid "Your website bounce rate is %s. High bounce rates can hurt your site’s conversions rates. A high bounce rate might mean that people aren’t finding what they’re looking for on your site. %sHere%s are some points to remember and steps to follow to get your bounce rates back to manageable levels."
3522
  msgstr ""
3523
 
@@ -3531,12 +3531,12 @@ msgid "Did you know that 36%% of SEO experts think the headline is the most impo
3531
  msgstr ""
3532
 
3533
  #. Translators: Audience notification title
3534
- #: includes/admin/notifications/notification-audience.php:80
3535
  msgid "%s%% of your Audience is from %s"
3536
  msgstr ""
3537
 
3538
  #. Translators: Audience notification content
3539
- #: includes/admin/notifications/notification-audience.php:82
3540
  msgid "Is your site properly translated? By adding translated content specific to your audience you could gain big boosts in pageviews, time spent on page and a reduced bounce rate.<br><br>If you need help choosing a translation plugin to get you started take a look at %sthis article%s for the best options available."
3541
  msgstr ""
3542
 
@@ -3563,108 +3563,108 @@ msgid "By upgrading to MonsterInsights Pro you get access to additional reports
3563
  msgstr ""
3564
 
3565
  #: includes/admin/notifications/notification-upgrade-to-pro.php:34
3566
- #: languages/vue.php:1963
3567
  msgid "Upgrade to Pro"
3568
  msgstr ""
3569
 
3570
  #: includes/admin/reports/overview.php:34
3571
- #: languages/vue.php:538
3572
  msgid "Overview"
3573
  msgstr ""
3574
 
3575
- #: includes/admin/reports/abstract-report.php:54
3576
  msgid "Access denied"
3577
  msgstr ""
3578
 
3579
  #. Translators: Placeholders add a link to the settings panel.
3580
- #: includes/admin/reports/abstract-report.php:61
3581
  msgid "Please %1$senable the dashboard%2$s to see report data."
3582
  msgstr ""
3583
 
3584
- #: includes/admin/reports/abstract-report.php:63
3585
  msgid "The dashboard is disabled."
3586
  msgstr ""
3587
 
3588
  #. Translators: Placeholders add a link to the settings panel.
3589
- #: includes/admin/reports/abstract-report.php:71
3590
  msgid "You do not have an active license. Please %1$scheck your license configuration.%2$s"
3591
  msgstr ""
3592
 
3593
  #. Translators: Placeholders add a link to the settings panel.
3594
- #: includes/admin/reports/abstract-report.php:81
3595
  msgid "Please %1$sauthenticate %2$swith Google Analytics to allow the plugin to fetch data."
3596
  msgstr ""
3597
 
3598
- #: includes/admin/reports/abstract-report.php:83
3599
  msgid "The Google oAuth authentication needs to be re-authenticated to view data."
3600
  msgstr ""
3601
 
3602
- #: includes/admin/reports/abstract-report.php:110
3603
  msgid "No data found"
3604
  msgstr ""
3605
 
3606
- #: includes/admin/reports/abstract-report.php:156
3607
  msgid "Invalid date range."
3608
  msgstr ""
3609
 
3610
- #: includes/admin/reports/abstract-report.php:258
3611
  msgid "You must authenticate with MonsterInsights to use reports."
3612
  msgstr ""
3613
 
3614
  #. Translators: Placeholders add the license level and the report title.
3615
- #: includes/admin/reports/abstract-report.php:308
3616
  msgid "You currently have a %1$s level license, but this report requires at least a %2$s level license to view the %3$s. Please upgrade to view this report."
3617
  msgstr ""
3618
 
3619
- #: includes/admin/reports/abstract-report.php:320
3620
  msgid "Ready to Get Analytics Super-Powers?"
3621
  msgstr ""
3622
 
3623
- #: includes/admin/reports/abstract-report.php:322
3624
  msgid "(And Crush Your Competition?)"
3625
  msgstr ""
3626
 
3627
  #. Translators: License level and smiley.
3628
- #: includes/admin/reports/abstract-report.php:328
3629
  msgid "Hey there! It looks like you've got the %1$s license installed on your site. That's awesome! %s"
3630
  msgstr ""
3631
 
3632
  #. Translators: Placeholders add the report title and license level.
3633
- #: includes/admin/reports/abstract-report.php:335
3634
  msgid "Do you want to access to %1$s reporting right now%2$s in your WordPress Dashboard? That comes with the %3$s level%4$s of our paid packages. You'll need to upgrade your license to get instant access."
3635
  msgstr ""
3636
 
3637
  #. Translators: Placeholdes add links to the account area and a guide.
3638
- #: includes/admin/reports/abstract-report.php:342
3639
  msgid "It's easy! To upgrade, navigate to %1$sMy Account%2$s on MonsterInsights.com, go to the licenses tab, and click upgrade. We also have a %3$sstep by step guide%4$s with pictures of this process."
3640
  msgstr ""
3641
 
3642
- #: includes/admin/reports/abstract-report.php:346
3643
- #: includes/admin/reports/abstract-report.php:369
3644
  msgid "If you have any questions, don't hesitate to reach out. We're here to help."
3645
  msgstr ""
3646
 
3647
  #. Translators: Placeholder adds a smiley face.
3648
- #: includes/admin/reports/abstract-report.php:351
3649
  msgid "Hey there! %s It looks like you've got the free version of MonsterInsights installed on your site. That's awesome!"
3650
  msgstr ""
3651
 
3652
  #. Translators: Placeholders make the text bold, add the license level and add a link to upgrade.
3653
- #: includes/admin/reports/abstract-report.php:358
3654
  msgid "Do you you want to access to %1$s reporting right now%2$s in your WordPress Dashboard? That comes with %3$s level%4$s of our paid packages. To get instant access, you'll want to buy a MonsterInsights license, which also gives you access to powerful addons, expanded reporting (including the ability to use custom date ranges), comprehensive tracking features (like UserID tracking) and access to our world-class support team."
3655
  msgstr ""
3656
 
3657
  #. Translators: Placeholders make the text bold, add the license level and add a link to upgrade.
3658
- #: includes/admin/reports/abstract-report.php:365
3659
  msgid "Upgrading is easy! To upgrade, navigate to %1$ssour pricing page%2$s, purchase the required license, and then follow the %3$sinstructions in the email receipt%4$s to upgrade. It only takes a few minutes to unlock the most powerful, yet easy to use analytics tracking system for WordPress."
3660
  msgstr ""
3661
 
3662
- #: includes/admin/reports/abstract-report.php:375
3663
- #: languages/vue.php:244
3664
  msgid "Upgrade Now"
3665
  msgstr ""
3666
 
3667
- #: includes/admin/reports/abstract-report.php:412
3668
  msgid "Please ask your webmaster to enable this addon."
3669
  msgstr ""
3670
 
@@ -4855,7 +4855,7 @@ msgid "Theme"
4855
  msgstr ""
4856
 
4857
  #: languages/gutenberg.php:77
4858
- #: languages/vue.php:366
4859
  msgid "Inline Popular Posts"
4860
  msgstr ""
4861
 
@@ -4892,7 +4892,7 @@ msgid "Comment Color"
4892
  msgstr ""
4893
 
4894
  #: languages/gutenberg.php:107
4895
- #: languages/vue.php:2113
4896
  msgid "Wide-Layout Options"
4897
  msgstr ""
4898
 
@@ -4901,12 +4901,12 @@ msgid "Choose Layout"
4901
  msgstr ""
4902
 
4903
  #: languages/gutenberg.php:113
4904
- #: languages/vue.php:2116
4905
  msgid "Adjust the number of columns displayed when the widget is placed in a wide container."
4906
  msgstr ""
4907
 
4908
  #: languages/gutenberg.php:116
4909
- #: languages/vue.php:2137
4910
  msgid "Post Count"
4911
  msgstr ""
4912
 
@@ -4915,7 +4915,7 @@ msgid "Number of posts displayed."
4915
  msgstr ""
4916
 
4917
  #: languages/gutenberg.php:122
4918
- #: languages/vue.php:2119
4919
  msgid "Display Options"
4920
  msgstr ""
4921
 
@@ -4928,7 +4928,7 @@ msgid "Display Widget Title"
4928
  msgstr ""
4929
 
4930
  #: languages/gutenberg.php:131
4931
- #: languages/vue.php:1447
4932
  msgid "Widget Title"
4933
  msgstr ""
4934
 
@@ -4937,17 +4937,17 @@ msgid "Only Show Posts From These Categories"
4937
  msgstr ""
4938
 
4939
  #: languages/gutenberg.php:137
4940
- #: languages/vue.php:2125
4941
  msgid "Display Author"
4942
  msgstr ""
4943
 
4944
  #: languages/gutenberg.php:140
4945
- #: languages/vue.php:2128
4946
  msgid "Display Date"
4947
  msgstr ""
4948
 
4949
  #: languages/gutenberg.php:143
4950
- #: languages/vue.php:2131
4951
  msgid "Display Comments"
4952
  msgstr ""
4953
 
@@ -5168,7 +5168,7 @@ msgid "Goal: "
5168
  msgstr ""
5169
 
5170
  #: languages/gutenberg.php:312
5171
- #: languages/vue.php:2334
5172
  msgid "Headline Analyzer"
5173
  msgstr ""
5174
 
@@ -5189,3725 +5189,3725 @@ msgid "2"
5189
  msgstr ""
5190
 
5191
  #: languages/vue.php:11
5192
- msgid "Error"
5193
  msgstr ""
5194
 
5195
  #: languages/vue.php:14
5196
- msgid "Please try again."
5197
  msgstr ""
5198
 
5199
  #: languages/vue.php:17
5200
- msgid "Today"
5201
- msgstr ""
5202
-
5203
- #: languages/vue.php:20
5204
- msgid "Yesterday"
5205
  msgstr ""
5206
 
5207
- #: languages/vue.php:23
5208
- msgid "Last Week"
 
5209
  msgstr ""
5210
 
5211
- #: languages/vue.php:26
5212
- msgid "Last Month"
5213
  msgstr ""
5214
 
5215
- #: languages/vue.php:29
5216
- msgid "Last 7 days"
5217
  msgstr ""
5218
 
5219
- #: languages/vue.php:32
5220
- msgid "Last 30 days"
5221
  msgstr ""
5222
 
 
5223
  #: languages/vue.php:35
5224
- msgid "Refreshing Report"
5225
- msgstr ""
5226
-
5227
- #: languages/vue.php:38
5228
- msgid "Loading new report data..."
5229
  msgstr ""
5230
 
5231
  #: languages/vue.php:41
5232
- msgid "Unlock the Publishers Report and Focus on the Content that Matters"
5233
  msgstr ""
5234
 
5235
  #: languages/vue.php:44
5236
- msgid "Stop guessing about what content your visitors are interested in. MonsterInsights Publisher Report shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions."
5237
  msgstr ""
5238
 
5239
  #: languages/vue.php:47
5240
- msgid "Unlock the Publishers Report and Focus on the Content That Matters"
5241
  msgstr ""
5242
 
5243
  #: languages/vue.php:50
5244
- 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."
5245
  msgstr ""
5246
 
5247
  #: languages/vue.php:53
5248
- msgid "See Your Top Landing Pages to Improve Enagement"
5249
  msgstr ""
5250
 
5251
  #: languages/vue.php:56
5252
- msgid "See Your Top Exit Pages to Reduce Abandonment"
5253
  msgstr ""
5254
 
5255
  #: languages/vue.php:59
5256
- msgid "See Your Top Outbound Links to Find New Revenue Opportunities"
5257
  msgstr ""
5258
 
5259
  #: languages/vue.php:62
5260
- msgid "See Your Top Affiliate Links and Focus on what's working"
5261
  msgstr ""
5262
 
5263
  #: languages/vue.php:65
5264
- msgid "See Your Top Downloads and Improve Conversions"
5265
  msgstr ""
5266
 
5267
  #: languages/vue.php:68
5268
- msgid "See Audience Demographic Report ( Age / Gender / Interests )"
5269
  msgstr ""
5270
 
5271
  #: languages/vue.php:71
5272
- msgid "Unlock the eCommerce Report and See Your Important Store Metrics"
5273
  msgstr ""
5274
 
5275
  #: languages/vue.php:74
5276
- msgid "Increase your sales & revenue with insights. MonsterInsights answers all your top eCommerce questions using metrics like total revenue, conversion rate, average order value, top products, top referral sources and more."
5277
  msgstr ""
5278
 
5279
  #: languages/vue.php:77
5280
- msgid "See Your Conversion Rate to Improve Funnel"
5281
  msgstr ""
5282
 
5283
  #: languages/vue.php:80
5284
- msgid "See The Number of Transactions and Make Data-Driven Decisions"
5285
  msgstr ""
5286
 
5287
  #: languages/vue.php:83
5288
- msgid "See The Total Revenue to Track Growth"
5289
  msgstr ""
5290
 
5291
  #: languages/vue.php:86
5292
- msgid "See Average Order Value to Find Offer Opportunities"
5293
  msgstr ""
5294
 
5295
  #: languages/vue.php:89
5296
- msgid "See Your Top Products to See Individual Performance"
5297
  msgstr ""
5298
 
5299
  #: languages/vue.php:92
5300
- msgid "See Your Top Conversion Sources and Focus on what's working"
5301
  msgstr ""
5302
 
5303
  #: languages/vue.php:95
5304
- msgid "See The Time it takes for Customers to Purchase"
5305
  msgstr ""
5306
 
5307
  #: languages/vue.php:98
5308
- msgid "See How Many Sessions are needed for a Purchase"
5309
  msgstr ""
5310
 
5311
  #: languages/vue.php:101
5312
- msgid "Unlock the Dimensions Report and Track Your Own Custom Data"
5313
  msgstr ""
5314
 
5315
- #: languages/vue.php:104
5316
- 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."
5317
  msgstr ""
5318
 
5319
- #: languages/vue.php:107
5320
- msgid "See Which Authors Generate the Most Traffic"
5321
  msgstr ""
5322
 
5323
- #: languages/vue.php:110
5324
- msgid "See Which Post Types Perform Better"
5325
  msgstr ""
5326
 
5327
- #: languages/vue.php:113
5328
- msgid "See Which Categories are the Most Popular"
5329
  msgstr ""
5330
 
5331
- #: languages/vue.php:116
5332
- msgid "See Your Blog's most popular SEO Scores"
5333
  msgstr ""
5334
 
5335
- #: languages/vue.php:119
5336
- msgid "See Which Focus Keyword is Performing Better in Search Engines"
5337
  msgstr ""
5338
 
5339
- #: languages/vue.php:122
5340
- msgid "Unlock the Forms Report and Improve Conversions"
5341
  msgstr ""
5342
 
5343
- #: languages/vue.php:125
5344
- 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."
5345
  msgstr ""
5346
 
5347
- #: languages/vue.php:128
5348
- msgid "See Reports for Any Contact Form Plugin or Sign-up Form"
5349
  msgstr ""
5350
 
5351
- #: languages/vue.php:131
5352
- msgid "See Your Top Converting Forms and Optimize"
5353
  msgstr ""
5354
 
5355
- #: languages/vue.php:134
5356
- msgid "See Your Forms Impressions Count to Find the Best Placement"
5357
  msgstr ""
5358
 
5359
- #: languages/vue.php:137
5360
- msgid "Unlock the Search Console Report and See How People Find Your Website"
5361
  msgstr ""
5362
 
5363
- #: languages/vue.php:140
5364
- msgid "See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more."
5365
  msgstr ""
5366
 
5367
- #: languages/vue.php:143
5368
- msgid "See Your Top Google Search Terms and Optimize Content"
5369
  msgstr ""
5370
 
5371
- #: languages/vue.php:146
5372
- msgid "See The Number of Clicks and Track Interests"
5373
  msgstr ""
5374
 
5375
- #: languages/vue.php:149
5376
- msgid "See The Click-Through-Ratio and Improve SEO"
5377
  msgstr ""
5378
 
5379
- #: languages/vue.php:152
5380
- msgid "See The Average Results Position and Focus on what works"
5381
  msgstr ""
5382
 
5383
- #: languages/vue.php:155
5384
- msgid "Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time"
5385
  msgstr ""
5386
 
5387
- #: languages/vue.php:158
5388
- 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."
5389
  msgstr ""
5390
 
5391
- #: languages/vue.php:161
5392
- msgid "See Your Active Visitors and Track Their Behaviour to Optimize"
5393
  msgstr ""
5394
 
5395
- #: languages/vue.php:164
5396
- msgid "See Your Top Pages Immediately After Making Changes"
5397
  msgstr ""
5398
 
5399
- #: languages/vue.php:167
5400
- msgid "See Your Top Referral Sources and Adapt Faster"
5401
  msgstr ""
5402
 
5403
- #: languages/vue.php:170
5404
- msgid "See Your Traffic Demographics and "
5405
  msgstr ""
5406
 
5407
- #: languages/vue.php:173
5408
- msgid "Get Fresh Reports Data Every 60 Seconds"
5409
  msgstr ""
5410
 
5411
- #: languages/vue.php:176
5412
- msgid "Loading new report data"
5413
  msgstr ""
5414
 
5415
- #: languages/vue.php:181
5416
- msgid "Please wait..."
5417
  msgstr ""
5418
 
5419
- #. Translators: Adds an arrow icon.
5420
- #: languages/vue.php:185
5421
- msgid "Continue %s"
5422
  msgstr ""
5423
 
5424
- #: languages/vue.php:188
5425
- msgid "Loading settings"
5426
  msgstr ""
5427
 
5428
- #: languages/vue.php:194
5429
- msgid "Overview Report"
5430
  msgstr ""
5431
 
5432
- #. Translators: Number of visitors.
5433
- #: languages/vue.php:202
5434
- msgid "Your website was visited by %s users in the last 30 days."
5435
  msgstr ""
5436
 
5437
- #: languages/vue.php:205
5438
- msgid "See the full analytics report!"
5439
  msgstr ""
5440
 
5441
- #: languages/vue.php:208
5442
- msgid "Congratulations! "
5443
  msgstr ""
5444
 
5445
- #: languages/vue.php:211
5446
- msgid "You Successfully Unlocked the most powerful Analytics plugin"
5447
  msgstr ""
5448
 
5449
- #: languages/vue.php:217
5450
- msgid "Thank you for choosing MonsterInsights - The Most Powerful WordPress Analytics Plugin"
5451
  msgstr ""
5452
 
5453
- #: languages/vue.php:220
5454
- msgid "MonsterInsights 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."
5455
  msgstr ""
5456
 
5457
- #: languages/vue.php:223
5458
- msgid "Launch the Wizard!"
 
5459
  msgstr ""
5460
 
5461
- #: languages/vue.php:226
5462
- msgid "Read the Full Guide"
 
5463
  msgstr ""
5464
 
5465
- #: languages/vue.php:229
5466
- msgid "MonsterInsights Features & Addons"
5467
  msgstr ""
5468
 
5469
- #: languages/vue.php:232
5470
- msgid "Here are the features that make MonsterInsights the most powerful and user-friendly WordPress analytics plugin in the market."
 
5471
  msgstr ""
5472
 
5473
- #: languages/vue.php:235
5474
- msgid "See All Features"
5475
  msgstr ""
5476
 
5477
- #: languages/vue.php:238
5478
- msgid "Upgrade to PRO"
5479
  msgstr ""
5480
 
5481
- #: languages/vue.php:241
5482
- msgid "per year"
 
5483
  msgstr ""
5484
 
5485
- #: languages/vue.php:247
5486
- msgid "Testimonials"
5487
  msgstr ""
5488
 
5489
- #: languages/vue.php:250
5490
- msgid "Universal Tracking"
 
5491
  msgstr ""
5492
 
5493
- #: languages/vue.php:253
5494
- msgid "Setup universal website tracking across devices and campaigns with just a few clicks (without any code)."
5495
  msgstr ""
5496
 
5497
- #: languages/vue.php:256
5498
- msgid "Google Analytics Dashboard"
5499
  msgstr ""
5500
 
5501
  #: languages/vue.php:259
5502
- msgid "See your website analytics report right inside your WordPress dashboard with actionable insights."
5503
- msgstr ""
5504
-
5505
- #: languages/vue.php:262
5506
- msgid "Real-time Stats"
5507
  msgstr ""
5508
 
5509
- #: languages/vue.php:265
5510
- msgid "Get real-time stats right inside WordPress to see who is online, what are they doing, and more."
5511
  msgstr ""
5512
 
5513
- #: languages/vue.php:268
5514
- msgid "Enhanced Ecommerce Tracking"
5515
  msgstr ""
5516
 
5517
- #: languages/vue.php:271
5518
- msgid "1-click Google Analytics Enhanced Ecommerce tracking for WooCommerce, Easy Digital Downloads & MemberPress."
5519
  msgstr ""
5520
 
5521
  #: languages/vue.php:274
5522
- msgid "Page Level Analytics"
5523
  msgstr ""
5524
 
5525
  #: languages/vue.php:277
5526
- msgid "Get detailed stats for each post and page, so you can see the most popular posts, pages, and sections of your site."
5527
  msgstr ""
5528
 
5529
  #: languages/vue.php:280
5530
- msgid "Affiliate Link & Ads Tracking"
5531
  msgstr ""
5532
 
5533
  #: languages/vue.php:283
5534
- msgid "Automatically track clicks on your affiliate links, banner ads, and other outbound links with our link tracking."
5535
  msgstr ""
5536
 
5537
- #: languages/vue.php:286
5538
- msgid "EU Compliance (GDPR Friendly)"
5539
  msgstr ""
5540
 
5541
- #: languages/vue.php:289
5542
- msgid "Make Google Analytics compliant with GDPR and other privacy regulations automatically."
 
5543
  msgstr ""
5544
 
5545
- #: languages/vue.php:292
5546
- msgid "Setup tracking for authors, categories, tags, searches, custom post types, users, and other events with 1-click."
5547
  msgstr ""
5548
 
5549
- #: languages/vue.php:295
5550
- msgid "Ecommerce Report"
5551
  msgstr ""
5552
 
5553
- #: languages/vue.php:299
5554
- msgid "Form Conversions"
5555
  msgstr ""
5556
 
5557
- #: languages/vue.php:302
5558
- msgid "Custom Dimensions"
5559
  msgstr ""
5560
 
5561
  #: languages/vue.php:306
5562
- msgid "Author Tracking"
5563
  msgstr ""
5564
 
5565
  #: languages/vue.php:309
5566
- msgid "Google Optimize"
5567
  msgstr ""
5568
 
5569
- #: languages/vue.php:312
5570
- msgid "Category / Tags Tracking"
5571
  msgstr ""
5572
 
5573
- #: languages/vue.php:315
5574
- msgid "WooCommerce"
5575
  msgstr ""
5576
 
5577
- #: languages/vue.php:318
5578
- msgid "Easy Digital Downloads"
5579
  msgstr ""
5580
 
5581
- #: languages/vue.php:321
5582
- msgid "MemberPress"
5583
  msgstr ""
5584
 
5585
- #: languages/vue.php:324
5586
- msgid "LifterLMS"
5587
  msgstr ""
5588
 
5589
- #: languages/vue.php:330
5590
- msgid "Getting Started"
5591
  msgstr ""
5592
 
5593
- #: languages/vue.php:334
5594
- msgid "Lite vs Pro"
5595
  msgstr ""
5596
 
5597
- #. Translators: Error status and error text.
5598
- #: languages/vue.php:338
5599
- msgid "Can't load report data. Error: %1$s, %2$s"
5600
  msgstr ""
5601
 
5602
- #: languages/vue.php:341
5603
- msgid "Error loading report data"
5604
  msgstr ""
5605
 
5606
- #: languages/vue.php:344
5607
- msgid "See Quick Links"
5608
  msgstr ""
5609
 
5610
- #: languages/vue.php:347
5611
- msgid "Suggest a Feature"
5612
  msgstr ""
5613
 
5614
- #: languages/vue.php:350
5615
- msgid "Join Our Community"
5616
- msgstr ""
5617
-
5618
- #: languages/vue.php:353
5619
- msgid "Support & Docs"
5620
- msgstr ""
5621
-
5622
- #: languages/vue.php:356
5623
- msgid "Upgrade to Pro &#187;"
5624
- msgstr ""
5625
-
5626
- #: languages/vue.php:360
5627
- msgid "Import Export"
5628
- msgstr ""
5629
-
5630
- #: languages/vue.php:363
5631
- msgid "PrettyLinks Integration"
5632
  msgstr ""
5633
 
5634
- #: languages/vue.php:369
5635
- msgid "Popular Posts Widget"
5636
  msgstr ""
5637
 
5638
- #: languages/vue.php:372
5639
- msgid "Popular Products"
5640
  msgstr ""
5641
 
5642
- #: languages/vue.php:383
5643
- msgid "Engagement"
5644
  msgstr ""
5645
 
5646
- #: languages/vue.php:392
5647
- msgid "Publisher"
5648
  msgstr ""
5649
 
5650
- #: languages/vue.php:396
5651
- msgid "Conversions"
5652
  msgstr ""
5653
 
5654
- #: languages/vue.php:400
5655
- msgid "Advanced"
5656
  msgstr ""
5657
 
5658
  #: languages/vue.php:404
5659
- msgid "URL Builder"
5660
  msgstr ""
5661
 
5662
  #: languages/vue.php:407
5663
- msgid "Save Changes"
5664
  msgstr ""
5665
 
5666
  #: languages/vue.php:410
5667
- msgid "MonsterInsights Addons"
5668
  msgstr ""
5669
 
5670
  #: languages/vue.php:413
5671
- msgid "Search Addons"
5672
  msgstr ""
5673
 
5674
- #: languages/vue.php:416
5675
- msgid "Exit Setup"
 
5676
  msgstr ""
5677
 
5678
- #: languages/vue.php:419
5679
- msgid "Publishers Report"
5680
  msgstr ""
5681
 
5682
- #: languages/vue.php:422
5683
- msgid "eCommerce Report"
5684
  msgstr ""
5685
 
5686
- #: languages/vue.php:425
5687
- msgid "Search Console Report"
5688
  msgstr ""
5689
 
5690
- #: languages/vue.php:428
5691
- msgid "Dimensions Report"
5692
  msgstr ""
5693
 
5694
  #: languages/vue.php:432
5695
- msgid "Forms Report"
5696
  msgstr ""
5697
 
5698
  #: languages/vue.php:435
5699
- msgid "Real-Time Report"
5700
  msgstr ""
5701
 
5702
  #: languages/vue.php:438
5703
- msgid "2019 Year in Review"
 
 
 
 
5704
  msgstr ""
5705
 
5706
  #: languages/vue.php:444
5707
- msgid "Congratulations!"
5708
  msgstr ""
5709
 
5710
- #. Translators: Add link to YouTube video and Onboarding Wizard.
5711
- #: languages/vue.php:448
5712
- msgid "MonsterInsights makes it easy to connect your website with Google Analytics and see all important website stats right inside your WordPress dashboard. In order to setup website analytics, please take a look at our %1$sGetting started video%2$s or use our %3$s to get you quickly set up."
5713
  msgstr ""
5714
 
5715
- #. Translators: Add link to YouTube video and Onboarding Wizard.
5716
- #: languages/vue.php:452
5717
- msgid "Onboarding Wizard"
5718
  msgstr ""
5719
 
5720
- #: languages/vue.php:455
5721
- msgid "You are now connected with MonsterInsights. We make it effortless for you to implement Google Analytics tracking and see the stats that matter, right inside the WordPress dashboard."
 
 
 
 
5722
  msgstr ""
5723
 
5724
- #. Translators: Number of days in interval.
5725
  #: languages/vue.php:459
5726
- msgid "Last %s days"
5727
  msgstr ""
5728
 
5729
- #. Translators: Placeholder is replaced with WPForms.
5730
- #: languages/vue.php:463
5731
- msgid "Recommended Plugin: %s"
5732
  msgstr ""
5733
 
5734
- #: languages/vue.php:466
5735
- msgid "Install"
5736
  msgstr ""
5737
 
5738
- #: languages/vue.php:469
5739
- msgid "Activate"
5740
  msgstr ""
5741
 
5742
- #: languages/vue.php:475
5743
- msgid "Inbox"
5744
  msgstr ""
5745
 
5746
- #: languages/vue.php:478
5747
- msgid "Back to Inbox"
5748
  msgstr ""
5749
 
5750
- #: languages/vue.php:481
5751
- msgid "View Dismissed"
5752
  msgstr ""
5753
 
5754
- #: languages/vue.php:484
5755
- msgid "Notifications"
5756
  msgstr ""
5757
 
5758
- #: languages/vue.php:487
5759
- msgid "Dismiss All"
5760
  msgstr ""
5761
 
5762
- #: languages/vue.php:490
5763
- msgid "Dismissed"
5764
  msgstr ""
5765
 
5766
- #: languages/vue.php:493
5767
- msgid "No Notifications"
5768
  msgstr ""
5769
 
5770
- #: languages/vue.php:496
5771
- msgid "MonsterInsights encountered an error loading your report data"
5772
  msgstr ""
5773
 
5774
- #: languages/vue.php:499
5775
- msgid "There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating."
5776
  msgstr ""
5777
 
5778
- #: languages/vue.php:503
5779
- msgid "Reconnect MonsterInsights"
 
 
 
 
5780
  msgstr ""
5781
 
5782
  #: languages/vue.php:507
5783
- msgid "Re-Authenticating"
5784
  msgstr ""
5785
 
5786
- #: languages/vue.php:511
5787
- msgid "Ok"
5788
  msgstr ""
5789
 
5790
- #: languages/vue.php:514
5791
- msgid "Powered by MonsterInsights"
 
 
 
 
 
 
 
 
 
 
 
 
 
5792
  msgstr ""
5793
 
5794
  #: languages/vue.php:526
5795
- msgid "You must connect with MonsterInsights before you can view reports."
5796
  msgstr ""
5797
 
5798
  #: languages/vue.php:529
5799
- msgid "MonsterInsights makes it \"effortless\" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
5800
  msgstr ""
5801
 
5802
  #: languages/vue.php:532
5803
- msgid "Launch Setup Wizard"
5804
  msgstr ""
5805
 
5806
  #: languages/vue.php:535
5807
- msgid "Please ask your webmaster to connect MonsterInsights to Google Analytics."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5808
  msgstr ""
5809
 
5810
  #: languages/vue.php:553
5811
- msgid "Real-Time"
5812
  msgstr ""
5813
 
5814
  #: languages/vue.php:556
5815
- msgid "License Key"
5816
  msgstr ""
5817
 
5818
- #. Translators: Add link to retrieve license key from account.
5819
- #: languages/vue.php:560
5820
- msgid "Add your MonsterInsights license key from the email receipt or account area. %1$sRetrieve your license key%2$s."
5821
  msgstr ""
5822
 
5823
- #: languages/vue.php:563
5824
- msgid "Google Authentication"
5825
  msgstr ""
5826
 
5827
- #: languages/vue.php:567
5828
- msgid "Connect Google Analytics + WordPress"
 
 
 
 
5829
  msgstr ""
5830
 
5831
  #: languages/vue.php:571
5832
- msgid "You will be taken to the MonsterInsights website where you'll need to connect your Analytics account."
5833
  msgstr ""
5834
 
5835
  #: languages/vue.php:574
5836
- msgid "Miscellaneous"
5837
  msgstr ""
5838
 
5839
  #: languages/vue.php:577
5840
- msgid "Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes."
5841
  msgstr ""
5842
 
5843
  #: languages/vue.php:580
5844
- msgid "Hide Announcements"
5845
  msgstr ""
5846
 
5847
  #: languages/vue.php:583
5848
- msgid "Setup Wizard"
5849
  msgstr ""
5850
 
5851
  #: languages/vue.php:586
5852
- msgid "Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks)."
5853
  msgstr ""
5854
 
5855
  #: languages/vue.php:589
5856
- msgid "There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data."
5857
  msgstr ""
5858
 
5859
  #: languages/vue.php:592
5860
- msgid "No addons found."
5861
  msgstr ""
5862
 
5863
  #: languages/vue.php:595
5864
- msgid "Refresh Addons"
5865
  msgstr ""
5866
 
5867
  #: languages/vue.php:598
5868
- msgid "Refreshing Addons"
5869
  msgstr ""
5870
 
5871
- #. Translators: Make text green.
5872
- #: languages/vue.php:602
5873
- msgid "Upgrade to Pro to unlock addons and other great features. As a valued MonsterInsights Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!"
5874
  msgstr ""
5875
 
5876
- #: languages/vue.php:605
5877
- msgid "Hello and welcome to MonsterInsights, the best Google Analytics plugin for WordPress. MonsterInsights shows you exactly which content gets the most visit, so you can analyze and optimize it for higher conversions."
5878
  msgstr ""
5879
 
5880
- #: languages/vue.php:608
5881
- msgid "Over the years, we found that in order to get the most out of Google Analytics, you needed a full time developer who could implement custom tracking, so that Google Analytics would integrate with things like WooCommerce, and track things which Google doesn't by default, like outbound links."
5882
  msgstr ""
5883
 
5884
- #: languages/vue.php:611
5885
- msgid "Our goal is to take the pain out of analytics, making it simple and easy, by eliminating the need to have to worry about code, putting the best reports directly into the area you already go to (your WordPress dashboard), and adding the most advanced insights and features without complicating our plugin with tons of settings. Quite simply, it should \"just work\"."
5886
  msgstr ""
5887
 
5888
- #: languages/vue.php:614
5889
- msgid "MonsterInsights is brought to you by the same team that's behind the largest WordPress resource site, WPBeginner, the most popular lead-generation software, OptinMonster, and the best WordPress forms plugin, WPForms."
5890
  msgstr ""
5891
 
5892
- #: languages/vue.php:617
5893
- msgid "Yup, we know a thing or two about building awesome products that customers love."
5894
  msgstr ""
5895
 
5896
- #: languages/vue.php:620
5897
- msgid "The MonsterInsights Team"
5898
  msgstr ""
5899
 
5900
- #: languages/vue.php:623
5901
- msgid "Time to Purchase"
5902
  msgstr ""
5903
 
5904
- #: languages/vue.php:626
5905
- msgid "This list shows how many days from first visit it took users to purchase products from your site."
5906
  msgstr ""
5907
 
5908
- #: languages/vue.php:629
5909
- msgid "Sessions to Purchase"
5910
  msgstr ""
5911
 
5912
- #: languages/vue.php:632
5913
- msgid "This list shows the number of sessions it took users before they purchased a product from your website."
5914
  msgstr ""
5915
 
 
5916
  #: languages/vue.php:635
5917
- msgid "Top Posts/Pages"
5918
  msgstr ""
5919
 
5920
  #: languages/vue.php:638
5921
- msgid "This list shows the most viewed posts and pages on your website."
5922
  msgstr ""
5923
 
5924
  #: languages/vue.php:641
5925
- msgid "New vs. Returning Visitors"
5926
  msgstr ""
5927
 
5928
  #: languages/vue.php:644
5929
- msgid "This graph shows what percent of your user sessions come from new versus repeat visitors."
5930
  msgstr ""
5931
 
5932
  #: languages/vue.php:647
5933
- msgid "Device Breakdown"
5934
  msgstr ""
5935
 
5936
  #: languages/vue.php:650
5937
- 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."
5938
  msgstr ""
5939
 
5940
  #: languages/vue.php:653
5941
- msgid "Top Landing Pages"
5942
  msgstr ""
5943
 
5944
  #: languages/vue.php:656
5945
- msgid "This list shows the top pages users first land on when visiting your website."
5946
  msgstr ""
5947
 
5948
  #: languages/vue.php:659
5949
- msgid "Top Exit Pages"
5950
  msgstr ""
5951
 
5952
  #: languages/vue.php:662
5953
- msgid "This list shows the top pages users exit your website from."
5954
  msgstr ""
5955
 
5956
  #: languages/vue.php:665
5957
- msgid "Top Outbound Links"
5958
  msgstr ""
5959
 
5960
  #: languages/vue.php:668
5961
- msgid "This list shows the top links clicked on your website that go to another website."
5962
  msgstr ""
5963
 
5964
  #: languages/vue.php:671
5965
- msgid "Top Affiliate Links"
5966
  msgstr ""
5967
 
5968
  #: languages/vue.php:674
5969
- msgid "This list shows the top affiliate links your visitors clicked on."
5970
  msgstr ""
5971
 
5972
  #: languages/vue.php:677
5973
- msgid "Top Download Links"
5974
  msgstr ""
5975
 
5976
  #: languages/vue.php:680
5977
- msgid "This list shows the download links your visitors clicked the most."
5978
- msgstr ""
5979
-
5980
- #: languages/vue.php:683
5981
- msgid "Top Products"
5982
  msgstr ""
5983
 
5984
  #: languages/vue.php:686
5985
- msgid "This list shows the top selling products on your website."
5986
  msgstr ""
5987
 
5988
  #: languages/vue.php:689
5989
- msgid "Top Conversion Sources"
5990
  msgstr ""
5991
 
5992
  #: languages/vue.php:692
5993
- msgid "This list shows the top referral websites in terms of product revenue."
5994
  msgstr ""
5995
 
5996
  #: languages/vue.php:695
5997
- msgid "Total Add/Remove"
5998
  msgstr ""
5999
 
6000
  #: languages/vue.php:698
6001
- msgid "WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin"
6002
  msgstr ""
6003
 
6004
  #: languages/vue.php:701
6005
- msgid "WordPress Admin Area Reports"
6006
  msgstr ""
6007
 
6008
  #: languages/vue.php:704
6009
- msgid "Standard Reports"
6010
  msgstr ""
6011
 
6012
- #: languages/vue.php:707
6013
- msgid "Overview Reports for the last 30 days."
6014
  msgstr ""
6015
 
6016
- #: languages/vue.php:710
6017
- msgid "Advanced Reports"
6018
  msgstr ""
6019
 
6020
- #: languages/vue.php:713
6021
- msgid "Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection"
6022
  msgstr ""
6023
 
6024
- #: languages/vue.php:716
6025
- msgid "Dashboard Widget"
6026
  msgstr ""
6027
 
6028
- #: languages/vue.php:719
6029
- msgid "Basic Widget"
6030
  msgstr ""
6031
 
6032
- #: languages/vue.php:722
6033
- msgid "Overview Report Synopsis"
6034
  msgstr ""
6035
 
6036
- #: languages/vue.php:725
6037
- msgid "Advanced Dashboard Widget"
6038
  msgstr ""
6039
 
6040
- #: languages/vue.php:728
6041
- msgid "Includes the complete Overview report, Publisher reports and 6 different eCommerce reports"
6042
  msgstr ""
6043
 
6044
- #: languages/vue.php:731
6045
- msgid "Publisher Reports"
6046
  msgstr ""
6047
 
6048
- #: languages/vue.php:734
6049
- msgid "Advanced Publisher Reports & Tracking"
6050
  msgstr ""
6051
 
6052
- #: languages/vue.php:737
6053
- msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
6054
  msgstr ""
6055
 
6056
- #: languages/vue.php:740
6057
- msgid "Not Available"
6058
  msgstr ""
6059
 
6060
- #: languages/vue.php:743
6061
- msgid "Complete Custom Dimensions Tracking"
6062
  msgstr ""
6063
 
6064
- #: languages/vue.php:746
6065
- 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"
6066
  msgstr ""
6067
 
6068
- #: languages/vue.php:752
6069
- msgid "Limited Support"
6070
  msgstr ""
6071
 
6072
- #: languages/vue.php:755
6073
- msgid "Priority Support"
6074
  msgstr ""
6075
 
6076
- #: languages/vue.php:758
6077
- msgid "Get the most out of MonsterInsights by upgrading to Pro and unlocking all of the powerful features."
6078
  msgstr ""
6079
 
6080
- #: languages/vue.php:761
6081
- msgid "Feature"
6082
  msgstr ""
6083
 
6084
- #: languages/vue.php:764
6085
- msgid "Lite"
6086
  msgstr ""
6087
 
6088
- #: languages/vue.php:767
6089
- msgid "Pro"
6090
  msgstr ""
6091
 
6092
- #: languages/vue.php:770
6093
- msgid "Get MonsterInsights Pro Today and Unlock all the Powerful Features"
6094
  msgstr ""
6095
 
6096
- #. Translators: Makes text green.
6097
  #: languages/vue.php:774
6098
- msgid "Bonus: MonsterInsights Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout."
6099
  msgstr ""
6100
 
6101
  #: languages/vue.php:777
6102
- msgid "Included"
6103
  msgstr ""
6104
 
6105
  #: languages/vue.php:780
6106
- msgid "Custom Google Analytics Link Tracking"
6107
  msgstr ""
6108
 
6109
  #: languages/vue.php:783
6110
- msgid "Standard Tracking"
6111
  msgstr ""
6112
 
6113
  #: languages/vue.php:786
6114
- msgid "Advanced Tracking"
6115
- msgstr ""
6116
-
6117
- #: languages/vue.php:789
6118
- msgid "Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking"
6119
  msgstr ""
6120
 
6121
- #: languages/vue.php:792
6122
- msgid "Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers"
 
6123
  msgstr ""
6124
 
6125
- #: languages/vue.php:795
6126
- msgid "No-Code-Needed Tracking Features"
 
6127
  msgstr ""
6128
 
6129
- #: languages/vue.php:798
6130
- msgid "Basic Tracking Options"
6131
  msgstr ""
6132
 
6133
- #: languages/vue.php:801
6134
- msgid "Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking"
6135
  msgstr ""
6136
 
 
6137
  #: languages/vue.php:804
6138
- msgid "Advanced Tracking Options"
6139
- msgstr ""
6140
-
6141
- #: languages/vue.php:807
6142
- msgid "Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors"
6143
- msgstr ""
6144
-
6145
- #: languages/vue.php:810
6146
- msgid "eCommerce Tracking"
6147
  msgstr ""
6148
 
6149
- #: languages/vue.php:813
6150
- msgid "One-click Complete eCommerce tracking"
 
6151
  msgstr ""
6152
 
6153
- #: languages/vue.php:816
6154
- msgid "Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required"
6155
  msgstr ""
6156
 
6157
- #: languages/vue.php:819
6158
- msgid "Forms Tracking"
6159
  msgstr ""
6160
 
6161
- #: languages/vue.php:822
6162
- msgid "One-click Form Events Tracking"
6163
  msgstr ""
6164
 
6165
- #: languages/vue.php:825
6166
- msgid "GDPR Guide"
6167
  msgstr ""
6168
 
6169
- #: languages/vue.php:828
6170
- msgid "Compliance with European data laws including GDPR can be confusing and time-consuming. In order to help MonsterInsights users comply with these laws, we’ve created an addon that automates a lot of the necessary configuration changes for you. "
6171
  msgstr ""
6172
 
6173
- #: languages/vue.php:831
6174
- msgid "How to Install and Activate MonsterInsights Addons"
 
6175
  msgstr ""
6176
 
6177
- #: languages/vue.php:834
6178
- msgid "The process for installing and activating addons is quick and easy after you install the MonsterInsights plugin. In this guide we’ll walk you through the process, step by step."
6179
  msgstr ""
6180
 
6181
- #: languages/vue.php:837
6182
- msgid "Enabling eCommerce Tracking and Reports"
6183
  msgstr ""
6184
 
6185
- #: languages/vue.php:840
6186
- msgid "Want to track your eCommerce sales data for your WooCommerce, MemberPress, or Easy Digital Downloads store with MonsterInsights? In this guide, we’ll show you how to enable eCommerce tracking in Google Analytics in just a few clicks."
6187
  msgstr ""
6188
 
6189
- #: languages/vue.php:843
6190
- msgid "Read Documentation"
6191
  msgstr ""
6192
 
6193
- #: languages/vue.php:846
6194
- msgid "Getting Started with MonsterInsights"
6195
  msgstr ""
6196
 
6197
- #: languages/vue.php:849
6198
- msgid "MonsterInsights 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."
6199
  msgstr ""
6200
 
6201
- #: languages/vue.php:852
6202
- 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."
6203
  msgstr ""
6204
 
6205
- #: languages/vue.php:855
6206
- 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!."
6207
  msgstr ""
6208
 
 
6209
  #: languages/vue.php:858
6210
- msgid "Launch the wizard!"
6211
  msgstr ""
6212
 
6213
  #: languages/vue.php:861
6214
- msgid "Get MonsterInsights Pro and Unlock all the Powerful Features"
6215
  msgstr ""
6216
 
6217
- #. Translators: Makes text bold.
6218
- #: languages/vue.php:865
6219
- msgid "Thanks for being a loyal MonsterInsights Lite user. %1$sUpgrade to MonsterInsights Pro%2$s to unlock all the awesome features and experience why MonsterInsights is consistently rated the best Google Analytics solution for WordPress."
6220
  msgstr ""
6221
 
6222
- #: languages/vue.php:868
6223
- msgid "Universal Tracking across devices and campaigns with just a few clicks."
6224
  msgstr ""
6225
 
6226
- #: languages/vue.php:871
6227
- msgid "See your website analytics reports inside the WordPress dashboard"
6228
  msgstr ""
6229
 
6230
- #: languages/vue.php:874
6231
- msgid "Get real-time stats right inside WordPress"
6232
  msgstr ""
6233
 
6234
- #: languages/vue.php:877
6235
- msgid "1-click Google Analytics Enhanced eCommerce tracking"
6236
  msgstr ""
6237
 
6238
- #: languages/vue.php:880
6239
- msgid "Get detailed stats for each post and page."
6240
  msgstr ""
6241
 
6242
- #: languages/vue.php:883
6243
- msgid "Automatically track clicks on your affiliate links and ads."
6244
  msgstr ""
6245
 
6246
- #: languages/vue.php:886
6247
- msgid "Make Google Analytics GDPR compliant automatically"
6248
  msgstr ""
6249
 
6250
- #: languages/vue.php:889
6251
- msgid "Setup tracking for authors, categories, tags, custom post types, users and more"
6252
  msgstr ""
6253
 
6254
- #: languages/vue.php:892
6255
- msgid "Enable Google Optimize for A/B testing, adjust sample speed & sample rate."
6256
  msgstr ""
6257
 
6258
- #: languages/vue.php:895
6259
- msgid "More advanced features"
6260
  msgstr ""
6261
 
6262
- #: languages/vue.php:898
6263
- msgid "How to Connect to Google Analytics"
6264
  msgstr ""
6265
 
6266
- #: languages/vue.php:901
6267
- msgid "After you install MonsterInsights, you’ll need to connect your WordPress site with your Google Analytics account. MonsterInsights makes the process easy, with no coding required."
6268
  msgstr ""
6269
 
6270
- #: languages/vue.php:904
6271
- msgid "Guide and Checklist for Advanced Insights"
6272
  msgstr ""
6273
 
6274
- #: languages/vue.php:907
6275
- 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 MonsterInsights’ advanced tracking."
6276
  msgstr ""
6277
 
 
6278
  #: languages/vue.php:910
6279
- msgid "Welcome to MonsterInsights!"
6280
  msgstr ""
6281
 
6282
  #: languages/vue.php:913
6283
- msgid "Let's get you set up."
6284
  msgstr ""
6285
 
6286
- #: languages/vue.php:916
6287
- msgid "Save and Continue"
 
6288
  msgstr ""
6289
 
6290
- #: languages/vue.php:919
6291
- msgid "Which category best describes your website?"
6292
  msgstr ""
6293
 
6294
- #: languages/vue.php:922
6295
- msgid "We will recommend the optimal settings for MonsterInsights based on your choice."
6296
  msgstr ""
6297
 
6298
- #: languages/vue.php:925
6299
- msgid "Business Website"
6300
  msgstr ""
6301
 
6302
- #. Translators: Make text bold.
6303
  #: languages/vue.php:929
6304
- msgid "Publisher %1$s(Blog)%2$s"
6305
  msgstr ""
6306
 
6307
  #: languages/vue.php:932
6308
- msgid "Ecommerce"
6309
  msgstr ""
6310
 
6311
  #: languages/vue.php:935
6312
- msgid "MonsterInsights Recommends WPForms"
6313
  msgstr ""
6314
 
6315
  #: languages/vue.php:938
6316
- msgid "Built by the folks behind MonsterInsights, WPForms is the most beginner friendly form plugin in the market."
6317
  msgstr ""
6318
 
6319
  #: languages/vue.php:941
6320
- msgid "Used on over 3,000,000 websites!"
6321
  msgstr ""
6322
 
6323
  #: languages/vue.php:944
6324
- 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!"
6325
  msgstr ""
6326
 
6327
  #: languages/vue.php:947
6328
- msgid "Skip this Step"
6329
  msgstr ""
6330
 
6331
  #: languages/vue.php:950
6332
- msgid "Continue & Install WPForms"
6333
  msgstr ""
6334
 
6335
  #: languages/vue.php:953
6336
- msgid "Installing..."
6337
  msgstr ""
6338
 
6339
  #: languages/vue.php:956
6340
- msgid "Recommended Settings"
6341
  msgstr ""
6342
 
6343
  #: languages/vue.php:959
6344
- msgid "MonsterInsights recommends the following settings based on your configuration."
6345
  msgstr ""
6346
 
6347
  #: languages/vue.php:962
6348
- msgid "Events Tracking"
6349
  msgstr ""
6350
 
6351
  #: languages/vue.php:965
6352
- msgid "Must have for all click tracking on site."
6353
  msgstr ""
6354
 
6355
  #: languages/vue.php:968
6356
- msgid "MonsterInsights 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."
6357
- msgstr ""
6358
-
6359
- #: languages/vue.php:971
6360
- msgid "Enhanced Link Attribution"
6361
  msgstr ""
6362
 
6363
- #: languages/vue.php:974
6364
- msgid "Improves the accuracy of your In-Page Analytics."
6365
  msgstr ""
6366
 
6367
- #: languages/vue.php:977
6368
- msgid "MonsterInsights 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."
6369
  msgstr ""
6370
 
6371
- #: languages/vue.php:980
6372
- msgid "Install Updates Automatically"
6373
  msgstr ""
6374
 
6375
  #: languages/vue.php:983
6376
- msgid "Get the latest features, bug fixes, and security updates as they are released."
6377
- msgstr ""
6378
-
6379
- #: languages/vue.php:986
6380
- msgid "To ensure you get the latest bugfixes and security updates and avoid needing to spend time logging into your WordPress site to update MonsterInsights, we offer the ability to automatically have MonsterInsights update itself."
6381
- msgstr ""
6382
-
6383
- #: languages/vue.php:989
6384
- msgid "File Download Tracking"
6385
- msgstr ""
6386
-
6387
- #: languages/vue.php:992
6388
- msgid "Helps you see file downloads data."
6389
  msgstr ""
6390
 
6391
- #: languages/vue.php:995
6392
- msgid "MonsterInsights 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? MonsterInsights makes this both easy, and code-free! You can customize the file types to track at any time from our settings panel."
6393
  msgstr ""
6394
 
6395
- #. Translators: Example path (/go/).
6396
- #: languages/vue.php:999
6397
- msgid "Path (example: %s)"
6398
  msgstr ""
6399
 
6400
- #: languages/vue.php:1002
6401
- msgid "Path has to start with a / and have no spaces"
6402
  msgstr ""
6403
 
6404
- #. Translators: Example label (aff).
6405
- #: languages/vue.php:1006
6406
- msgid "Label (example: %s)"
6407
  msgstr ""
6408
 
6409
- #: languages/vue.php:1009
6410
- msgid "Label can't contain any spaces"
6411
  msgstr ""
6412
 
 
6413
  #: languages/vue.php:1012
6414
- msgid "Helps you increase affiliate revenue."
6415
- msgstr ""
6416
-
6417
- #: languages/vue.php:1015
6418
- msgid "MonsterInsights 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."
6419
  msgstr ""
6420
 
6421
- #: languages/vue.php:1018
6422
- msgid "Affiliate Link Tracking"
6423
  msgstr ""
6424
 
6425
  #: languages/vue.php:1021
6426
- msgid "Who Can See Reports"
6427
- msgstr ""
6428
-
6429
- #: languages/vue.php:1024
6430
- msgid "These user roles will be able to access MonsterInsights's reports in the WordPress admin area."
6431
  msgstr ""
6432
 
6433
- #: languages/vue.php:1027
6434
- 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."
6435
  msgstr ""
6436
 
6437
- #: languages/vue.php:1030
6438
- msgid "Save and continue"
6439
  msgstr ""
6440
 
6441
- #: languages/vue.php:1033
6442
- msgid "Events Tracking is enabled the moment you set up MonsterInsights"
6443
  msgstr ""
6444
 
6445
- #: languages/vue.php:1036
6446
- msgid "Enhanced Link Attribution is enabled the moment you set up MonsterInsights"
6447
  msgstr ""
6448
 
6449
- #: languages/vue.php:1039
6450
- msgid "+ Add Role"
6451
  msgstr ""
6452
 
6453
- #: languages/vue.php:1042
6454
- msgid "Connect MonsterInsights to Your Website"
6455
  msgstr ""
6456
 
6457
  #: languages/vue.php:1045
6458
- msgid "MonsterInsights connects Google Analytics to WordPress and shows you stats that matter."
6459
  msgstr ""
6460
 
6461
  #: languages/vue.php:1048
6462
- msgid "Whoops, something went wrong and we weren't able to connect to MonsterInsights. Please enter your Google UA code manually."
6463
- msgstr ""
6464
-
6465
- #: languages/vue.php:1051
6466
- msgid "Manually enter your UA code"
6467
  msgstr ""
6468
 
6469
- #: languages/vue.php:1054
6470
- 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."
6471
  msgstr ""
6472
 
6473
- #: languages/vue.php:1057
6474
- msgid "UA code can't be empty"
6475
  msgstr ""
6476
 
6477
  #: languages/vue.php:1060
6478
- msgid "Saving UA code..."
6479
  msgstr ""
6480
 
6481
  #: languages/vue.php:1063
6482
- msgid "Awesome, You're All Set!"
6483
  msgstr ""
6484
 
6485
- #: languages/vue.php:1066
6486
- msgid "MonsterInsights is all set up and ready to use. We've verified that the tracking code is deployed properly and collecting data."
6487
  msgstr ""
6488
 
6489
- #. Translators: Make text bold.
6490
- #: languages/vue.php:1070
6491
- 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."
6492
  msgstr ""
6493
 
6494
- #. Translators: Link to our blog.
6495
  #: languages/vue.php:1074
6496
- msgid "%1$sSubscribe to the MonsterInsights blog%2$s for tips on how to get more traffic and grow your business."
6497
  msgstr ""
6498
 
6499
  #: languages/vue.php:1077
6500
- msgid "Finish Setup & Exit Wizard"
6501
  msgstr ""
6502
 
6503
- #: languages/vue.php:1080
6504
- msgid "Checking your website..."
6505
  msgstr ""
6506
 
6507
- #: languages/vue.php:1083
6508
- msgid "Recommended Addons"
6509
  msgstr ""
6510
 
6511
- #: languages/vue.php:1086
6512
- msgid "To unlock more features consider upgrading to PRO. As a valued MonsterInsights Lite user you receive 50% off, automatically applied at checkout!"
 
6513
  msgstr ""
6514
 
6515
- #: languages/vue.php:1089
6516
- msgid "Other Addons"
6517
  msgstr ""
6518
 
6519
- #: languages/vue.php:1092
6520
- msgid "View all MonsterInsights addons"
 
6521
  msgstr ""
6522
 
6523
- #. Translators: Placeholders are used for making text bold and adding a link.
6524
- #: languages/vue.php:1096
6525
- msgid "You're using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s."
6526
  msgstr ""
6527
 
6528
- #. Translators: placeholders make text small.
6529
- #: languages/vue.php:1101
6530
- msgid "Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s"
6531
  msgstr ""
6532
 
6533
- #. Translators: placeholders make text small.
6534
- #: languages/vue.php:1106
6535
- msgid "Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s"
6536
  msgstr ""
6537
 
6538
- #. Translators: placeholders make text small.
6539
  #: languages/vue.php:1111
6540
- msgid "None %1$s- Manually update everything.%2$s"
6541
  msgstr ""
6542
 
6543
- #. Translators: Adds a link to the general settings tab.
6544
  #: languages/vue.php:1115
6545
- msgid "It looks like you added a Google Analytics tracking code in the custom code area, this can potentially prevent proper tracking. If you want to use a manual UA please use the setting in the %1$sGeneral%2$s tab."
6546
- msgstr ""
6547
-
6548
- #: languages/vue.php:1118
6549
- msgid "Email Summaries"
6550
  msgstr ""
6551
 
6552
- #: languages/vue.php:1121
6553
- msgid "Export PDF Reports"
 
6554
  msgstr ""
6555
 
6556
- #: languages/vue.php:1124
6557
- msgid "Permissions"
 
6558
  msgstr ""
6559
 
6560
- #: languages/vue.php:1127
6561
- msgid "Allow These User Roles to See Reports"
6562
  msgstr ""
6563
 
6564
- #: languages/vue.php:1130
6565
- msgid "Users that have at least one of these roles will be able to view the reports."
6566
  msgstr ""
6567
 
 
6568
  #: languages/vue.php:1133
6569
- msgid "Allow These User Roles to Save Settings"
6570
  msgstr ""
6571
 
6572
  #: languages/vue.php:1136
6573
- msgid "Users that have at least one of these roles will be able to view and save the settings panel."
6574
  msgstr ""
6575
 
6576
  #: languages/vue.php:1139
6577
- msgid "Users that have at least one of these roles will be able to view and save the settings panel, along with any user with the manage_options capability."
6578
  msgstr ""
6579
 
6580
  #: languages/vue.php:1142
6581
- msgid "Exclude These User Roles From Tracking"
6582
  msgstr ""
6583
 
6584
  #: languages/vue.php:1145
6585
- msgid "Users that have at least one of these roles will not be tracked into Google Analytics."
6586
- msgstr ""
6587
-
6588
- #: languages/vue.php:1148
6589
- msgid "Performance"
6590
  msgstr ""
6591
 
6592
- #: languages/vue.php:1151
6593
- msgid "Custom code"
6594
  msgstr ""
6595
 
6596
- #. Translators: Adds a link to the Google reference.
6597
- #: languages/vue.php:1155
6598
- msgid "Not for the average user: this allows you to add a line of code, to be added before the %1$spageview is sent%2$s."
6599
  msgstr ""
6600
 
6601
- #: languages/vue.php:1162
6602
- msgid "Automatic Updates"
6603
  msgstr ""
6604
 
6605
- #: languages/vue.php:1165
6606
- msgid "You must have the \"unfiltered_html\" capability to view/edit this setting."
6607
  msgstr ""
6608
 
6609
- #: languages/vue.php:1168
6610
- msgid "Hide Admin Bar Reports"
6611
  msgstr ""
6612
 
6613
- #. Translators: placeholders make text small.
6614
- #: languages/vue.php:1172
6615
- msgid "Enabled %1$s- Show reports and dashboard widget.%2$s"
6616
  msgstr ""
6617
 
6618
- #. Translators: placeholders make text small.
6619
- #: languages/vue.php:1176
6620
- msgid "Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s"
6621
  msgstr ""
6622
 
6623
- #. Translators: placeholders make text small.
6624
- #: languages/vue.php:1180
6625
- msgid "Disabled %1$s- Hide reports and dashboard widget.%2$s"
6626
  msgstr ""
6627
 
6628
- #: languages/vue.php:1183
6629
- msgid "Choose Theme"
6630
  msgstr ""
6631
 
6632
- #: languages/vue.php:1186
6633
- msgid "Behavior"
6634
  msgstr ""
6635
 
6636
  #: languages/vue.php:1189
6637
- msgid "Widget Styling"
6638
  msgstr ""
6639
 
6640
  #: languages/vue.php:1192
6641
- msgid "Choose how you want to determine the colors, font sizes and spacing of the widget."
6642
  msgstr ""
6643
 
6644
  #: languages/vue.php:1195
6645
- msgid "Sort By"
6646
  msgstr ""
6647
 
6648
  #: languages/vue.php:1198
6649
- msgid "Choose how you'd like the widget to determine your popular posts."
6650
  msgstr ""
6651
 
6652
  #: languages/vue.php:1201
6653
- msgid "Placement"
6654
  msgstr ""
6655
 
6656
  #: languages/vue.php:1204
6657
- msgid "Choose how you'd like to place the widget."
6658
  msgstr ""
6659
 
6660
  #: languages/vue.php:1207
6661
- msgid "Insert After"
6662
  msgstr ""
6663
 
6664
  #: languages/vue.php:1210
6665
- msgid "Choose where in the post body the widget will be placed."
6666
  msgstr ""
6667
 
6668
  #: languages/vue.php:1213
6669
- msgid "Include in Post Types"
6670
  msgstr ""
6671
 
6672
  #: languages/vue.php:1216
6673
- msgid "Exclude from specific posts"
6674
  msgstr ""
6675
 
6676
- #. Translators: Placeholders make the text bold.
6677
- #: languages/vue.php:1220
6678
- msgid "Choose which Post Types the widget %1$sWILL%2$s be placed."
6679
  msgstr ""
6680
 
6681
- #. Translators: Placeholders make the text bold.
6682
- #: languages/vue.php:1224
6683
- msgid "Choose from which Posts the widget %1$sWILL NOT%2$s be placed."
6684
  msgstr ""
6685
 
6686
- #: languages/vue.php:1227
6687
- msgid "Customize Design"
6688
  msgstr ""
6689
 
6690
- #: languages/vue.php:1230
6691
- msgid "Loading Themes"
6692
  msgstr ""
6693
 
6694
- #: languages/vue.php:1233
6695
- msgid "words"
6696
  msgstr ""
6697
 
6698
- #: languages/vue.php:1236
6699
- msgid "Please select at least one post to display."
6700
  msgstr ""
6701
 
6702
- #. Translators: placeholders make text small.
6703
- #: languages/vue.php:1240
6704
- msgid "Default Styles %1$s- As seen above.%2$s"
6705
  msgstr ""
6706
 
6707
- #. Translators: placeholders make text small.
6708
- #: languages/vue.php:1244
6709
- msgid "No Styles %1$s- Use your own CSS.%2$s"
6710
  msgstr ""
6711
 
6712
- #. Translators: placeholders make text small.
6713
- #: languages/vue.php:1248
6714
- msgid "Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s"
6715
  msgstr ""
6716
 
6717
- #. Translators: placeholders make text small.
6718
- #: languages/vue.php:1252
6719
- msgid "SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s"
6720
  msgstr ""
6721
 
6722
- #. Translators: placeholders make text small.
6723
- #: languages/vue.php:1256
6724
- msgid "Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s"
6725
  msgstr ""
6726
 
6727
- #. Translators: placeholders make text small.
6728
- #: languages/vue.php:1260
6729
- msgid "Automatic %1$s- The widget is automatically placed inside the post body.%2$s"
6730
  msgstr ""
6731
 
6732
- #. Translators: placeholders make text small.
6733
- #: languages/vue.php:1264
6734
- msgid "Manual %1$s- Manually place the widget using Gutenberg blocks or using our shortcode.%2$s"
6735
  msgstr ""
6736
 
6737
- #: languages/vue.php:1267
6738
- msgid "See All Your Important Store Metrics in One Place"
6739
  msgstr ""
6740
 
6741
- #: languages/vue.php:1270
6742
- msgid "Get an Answer to All Your Top Ecommerce Questions From a Single Report"
6743
  msgstr ""
6744
 
6745
- #: languages/vue.php:1273
6746
- msgid "ONE-CLICK INTEGRATIONS"
6747
  msgstr ""
6748
 
6749
- #: languages/vue.php:1279
6750
- msgid "Enable Ecommerce Tracking and Grow Your Business with Confidence"
6751
  msgstr ""
6752
 
6753
- #: languages/vue.php:1282
6754
- msgid "MonsterInsights Ecommerce Addon makes it easy to setup enhanced eCommerce tracking, so you can see all your important eCommerce metrics like total revenue, conversion rate, average order value, top products, top referral sources, and more in a single report right inside your WordPress dashboard."
6755
  msgstr ""
6756
 
6757
- #: languages/vue.php:1285
6758
- msgid "Import/Export"
6759
  msgstr ""
6760
 
6761
- #: languages/vue.php:1288
6762
- msgid "Import"
6763
  msgstr ""
6764
 
6765
- #: languages/vue.php:1291
6766
- msgid "Import settings from another MonsterInsights website."
6767
  msgstr ""
6768
 
6769
- #: languages/vue.php:1294
6770
- msgid "Export"
6771
  msgstr ""
6772
 
6773
- #: languages/vue.php:1297
6774
- msgid "Export settings to import into another MonsterInsights install."
6775
  msgstr ""
6776
 
6777
- #: languages/vue.php:1300
6778
- msgid "Import Settings"
6779
  msgstr ""
6780
 
6781
- #: languages/vue.php:1303
6782
- msgid "Export Settings"
6783
  msgstr ""
6784
 
6785
- #: languages/vue.php:1306
6786
- msgid "Please choose a file to import"
6787
  msgstr ""
6788
 
6789
- #: languages/vue.php:1309
6790
- msgid "Use the filepicker below to select the settings export file from another site."
6791
  msgstr ""
6792
 
6793
- #: languages/vue.php:1312
6794
- msgid "Use the button below to export a file with your MonsterInsights settings."
6795
  msgstr ""
6796
 
6797
- #: languages/vue.php:1315
6798
- msgid "Uploading file..."
6799
  msgstr ""
6800
 
6801
- #: languages/vue.php:1318
6802
- msgid "File imported"
6803
  msgstr ""
6804
 
6805
- #: languages/vue.php:1321
6806
- msgid "Settings successfully updated!"
6807
  msgstr ""
6808
 
6809
- #: languages/vue.php:1324
6810
- msgid "Error importing settings"
6811
  msgstr ""
6812
 
6813
- #: languages/vue.php:1327
6814
- msgid "Please choose a .json file generated by a MonsterInsights settings export."
6815
  msgstr ""
6816
 
6817
- #: languages/vue.php:1330
6818
- msgid "Demographics"
6819
  msgstr ""
6820
 
6821
- #: languages/vue.php:1333
6822
- msgid "Enable Demographics and Interests Reports for Remarketing and Advertising"
6823
  msgstr ""
6824
 
6825
- #: languages/vue.php:1336
6826
- msgid "Anonymize IP Addresses"
6827
  msgstr ""
6828
 
6829
- #: languages/vue.php:1339
6830
- msgid "Link Attribution"
6831
  msgstr ""
6832
 
6833
- #: languages/vue.php:1342
6834
- msgid "Enable Enhanced Link Attribution"
6835
  msgstr ""
6836
 
6837
- #: languages/vue.php:1345
6838
- msgid "Enable Anchor Tracking"
6839
  msgstr ""
6840
 
6841
- #: languages/vue.php:1348
6842
- msgid "Enable allowAnchor"
6843
  msgstr ""
6844
 
6845
- #: languages/vue.php:1351
6846
- msgid "Enable allowLinker"
6847
  msgstr ""
6848
 
6849
- #: languages/vue.php:1354
6850
- msgid "Enable Tag Links in RSS"
6851
  msgstr ""
6852
 
6853
- #: languages/vue.php:1357
6854
- msgid "File Downloads"
6855
  msgstr ""
6856
 
6857
- #: languages/vue.php:1360
6858
- msgid "Extensions of Files to Track as Downloads"
6859
  msgstr ""
6860
 
6861
- #: languages/vue.php:1363
6862
- msgid "MonsterInsights will send an event to Google Analytics if a link to a file has one of the above extensions."
6863
  msgstr ""
6864
 
6865
- #. Translators: Add links to the documentation.
6866
- #: languages/vue.php:1367
6867
- msgid "Enable this setting to add the Demographics and Remarketing features to your Google Analytics tracking code. Make sure to enable Demographics and Remarketing in your Google Analytics account. We have a guide for how to do that in our %1$sknowledge base%2$s. For more information about Remarketing, we refer you to %3$sGoogle's documentation%4$s. Note that usage of this function is affected by privacy and cookie laws around the world. Be sure to follow the laws that affect your target audience."
6868
  msgstr ""
6869
 
6870
- #. Translators: Adds a link to the documentation.
6871
- #: languages/vue.php:1371
6872
- msgid "This adds %1$sanonymizeIp%2$s, telling Google Analytics to anonymize the information sent by the tracker objects by removing the last octet of the IP address prior to its storage."
6873
  msgstr ""
6874
 
6875
- #. Translators: Adds a link to the documentation.
6876
- #: languages/vue.php:1375
6877
- msgid "Adds the Enhanced Link Attribution (retain link) code to improve the accuracy of your In-Page Analytics report by automatically differentiating between multiple links to the same URL on a single page by using link element IDs."
6878
  msgstr ""
6879
 
6880
- #: languages/vue.php:1378
6881
- msgid "Many WordPress \"1-page\" style themes rely on anchor tags for navigation to show virtual pages. The problem is that to Google Analytics, these are all just a single page, and it makes it hard to get meaningful statistics about pages viewed. This feature allows proper tracking in those themes."
6882
  msgstr ""
6883
 
6884
- #. Translators: Adds a link to the documentation.
6885
- #: languages/vue.php:1382
6886
- msgid "This adds %1$sallowAnchor%2$s to the create command of the pageview hit tracking code, and makes RSS link tagging use a # as well."
6887
  msgstr ""
6888
 
6889
- #. Translators: Adds a link to the documentation.
6890
- #: languages/vue.php:1386
6891
- msgid "Enabling %1$scross-domain tracking (additional setup required)%2$s allows you to track users across multiple properties you own (such as example-1.com and example-2.com as a single session. It also allows you fix an issue so that when a user has to go to an off-site hosted payment gateway to finish a purchase it doesn't count it as referral traffic from that gateway but maintains the visit as part of the same session.) It is required that the other site includes a Google Analytics tracker with the same UA Code."
6892
  msgstr ""
6893
 
6894
- #. Translators: Adds a link to the documentation.
6895
- #: languages/vue.php:1390
6896
- msgid "Do not use this feature if you use FeedBurner, as FeedBurner can do this automatically and better than this plugin can. Check this %1$shelp page%2$s for info on how to enable this feature in FeedBurner."
6897
  msgstr ""
6898
 
6899
- #: languages/vue.php:1393
6900
- msgid "Add domain"
6901
  msgstr ""
6902
 
6903
- #. Translators: Example domain.
6904
- #: languages/vue.php:1397
6905
- msgid "Domain (example: %s)"
6906
  msgstr ""
6907
 
6908
- #. Translators: Current site domain to be avoided.
6909
- #: languages/vue.php:1401
6910
- msgid "Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s )."
6911
  msgstr ""
6912
 
6913
- #: languages/vue.php:1404
6914
- msgid "Cross Domain Tracking"
6915
  msgstr ""
6916
 
6917
- #. Translators: Adds a link to the documentation.
6918
- #: languages/vue.php:1408
6919
- msgid "Cross domain tracking makes it possible for Analytics to see sessions on two related sites as a single session. More info on specific setup steps can be found in our %1$sknowledge base%2$s."
6920
  msgstr ""
6921
 
6922
- #: languages/vue.php:1411
6923
- msgid "Caching"
6924
  msgstr ""
6925
 
6926
- #: languages/vue.php:1414
6927
- msgid "Enable Data Caching"
6928
  msgstr ""
6929
 
6930
- #: languages/vue.php:1417
6931
- msgid "Refresh Cache Every"
6932
  msgstr ""
6933
 
6934
- #: languages/vue.php:1420
6935
- msgid "Choose how often to refresh the cache."
6936
  msgstr ""
6937
 
6938
- #: languages/vue.php:1423
6939
- msgid "Enable Ajaxify"
6940
  msgstr ""
6941
 
6942
- #: languages/vue.php:1426
6943
- msgid "Ajaxify Widget"
 
6944
  msgstr ""
6945
 
6946
- #: languages/vue.php:1429
6947
- msgid "Use to bypass page caching."
 
6948
  msgstr ""
6949
 
6950
- #: languages/vue.php:1432
6951
- msgid "Empty Cache"
 
 
 
 
 
 
6952
  msgstr ""
6953
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6954
  #: languages/vue.php:1435
6955
- msgid "Click to manually wipe the cache right now."
6956
  msgstr ""
6957
 
6958
- #: languages/vue.php:1438
6959
- msgid "Popular posts cache emptied"
 
6960
  msgstr ""
6961
 
6962
- #: languages/vue.php:1441
6963
- msgid "Error emptying the popular posts cache. Please try again."
6964
  msgstr ""
6965
 
6966
- #: languages/vue.php:1444
6967
- msgid "Display Title"
6968
  msgstr ""
6969
 
6970
- #: languages/vue.php:1450
6971
- msgid "Title your widget and set it’s display preferences."
6972
  msgstr ""
6973
 
6974
- #: languages/vue.php:1453
6975
- msgid "Loading Settings"
6976
  msgstr ""
6977
 
6978
- #: languages/vue.php:1456
6979
- msgid "Saving Changes..."
6980
  msgstr ""
6981
 
6982
- #: languages/vue.php:1459
6983
- msgid "Settings Updated"
 
 
 
 
6984
  msgstr ""
6985
 
6986
- #. Translators: Adds a link to the settings panel.
6987
  #: languages/vue.php:1463
6988
- msgid "You need to %1$sconnect MonsterInsights%2$s first"
6989
  msgstr ""
6990
 
6991
  #: languages/vue.php:1466
6992
- msgid "Could Not Save Changes"
6993
  msgstr ""
6994
 
6995
  #: languages/vue.php:1469
6996
- msgid "Installing Addon"
6997
  msgstr ""
6998
 
6999
  #: languages/vue.php:1472
7000
- msgid "Activating Addon"
7001
  msgstr ""
7002
 
7003
  #: languages/vue.php:1475
7004
- msgid "Addon Activated"
7005
  msgstr ""
7006
 
7007
- #: languages/vue.php:1478
7008
- msgid "Loading report data"
 
7009
  msgstr ""
7010
 
7011
- #: languages/vue.php:1481
7012
- msgid "Please activate manually"
 
7013
  msgstr ""
7014
 
7015
- #. Translators: Adds the error status and status text.
7016
- #: languages/vue.php:1485
7017
- msgid "Error: %1$s, %2$s"
7018
  msgstr ""
7019
 
7020
- #: languages/vue.php:1488
7021
- msgid "Error Activating Addon"
7022
  msgstr ""
7023
 
7024
- #: languages/vue.php:1494
7025
- msgid "Dismiss"
7026
  msgstr ""
7027
 
7028
- #: languages/vue.php:1497
7029
- msgid "Redirecting"
7030
  msgstr ""
7031
 
7032
- #: languages/vue.php:1500
7033
- msgid "Please wait"
7034
  msgstr ""
7035
 
7036
- #: languages/vue.php:1503
7037
- msgid "activate"
7038
  msgstr ""
7039
 
7040
- #: languages/vue.php:1506
7041
- msgid "install"
7042
  msgstr ""
7043
 
7044
- #: languages/vue.php:1509
7045
- msgid "Visit addons page"
 
7046
  msgstr ""
7047
 
7048
- #: languages/vue.php:1512
7049
- msgid "Report Unavailable"
7050
  msgstr ""
7051
 
7052
- #. Translators: Install/Activate the addon.
7053
- #: languages/vue.php:1516
7054
- msgid "%s Addon"
7055
  msgstr ""
7056
 
7057
- #: languages/vue.php:1519
7058
- msgid "Go Back To Reports"
7059
  msgstr ""
7060
 
7061
- #: languages/vue.php:1522
7062
- msgid "Enable Enhanced eCommerce"
7063
  msgstr ""
7064
 
7065
- #: languages/vue.php:1525
7066
- msgid "See All Reports"
7067
  msgstr ""
7068
 
7069
- #: languages/vue.php:1528
7070
- msgid "Go to the Analytics Dashboard"
7071
  msgstr ""
7072
 
7073
- #: languages/vue.php:1531
7074
- msgid "Last 30 Days Insights for:"
7075
  msgstr ""
7076
 
 
7077
  #: languages/vue.php:1534
7078
- msgid "Your Website"
7079
  msgstr ""
7080
 
7081
  #: languages/vue.php:1537
7082
- msgid "Sessions"
7083
  msgstr ""
7084
 
 
7085
  #: languages/vue.php:1541
7086
- msgid "Pageviews"
7087
- msgstr ""
7088
-
7089
- #: languages/vue.php:1544
7090
- msgid "Avg. Duration"
7091
  msgstr ""
7092
 
7093
- #: languages/vue.php:1547
7094
- msgid "Bounce Rate"
7095
  msgstr ""
7096
 
7097
- #: languages/vue.php:1550
7098
- msgid "More data is available"
7099
  msgstr ""
7100
 
7101
- #: languages/vue.php:1553
7102
- msgid "Want to see page-specific stats?"
7103
  msgstr ""
7104
 
7105
- #: languages/vue.php:1556
7106
- msgid "Show Overview Reports"
7107
  msgstr ""
7108
 
7109
- #: languages/vue.php:1559
7110
- msgid "Show Publishers Reports"
7111
  msgstr ""
7112
 
7113
- #: languages/vue.php:1562
7114
- msgid "Show eCommerce Reports"
7115
  msgstr ""
7116
 
7117
- #: languages/vue.php:1565
7118
- msgid "Available in PRO version"
7119
  msgstr ""
7120
 
7121
- #. Translators: Placeholder adds a line break.
7122
- #: languages/vue.php:1569
7123
- msgid "Unique %s Sessions"
7124
  msgstr ""
7125
 
7126
- #. Translators: Placeholder adds a line break.
7127
- #: languages/vue.php:1573
7128
- msgid "Unique %s Pageviews"
7129
  msgstr ""
7130
 
7131
- #: languages/vue.php:1576
7132
- msgid "A session is the browsing session of a single user to your site."
7133
  msgstr ""
7134
 
7135
- #: languages/vue.php:1579
7136
- 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."
7137
  msgstr ""
7138
 
7139
- #: languages/vue.php:1582
7140
- msgid "Total duration of all sessions (in seconds) / number of sessions."
7141
  msgstr ""
7142
 
7143
- #: languages/vue.php:1585
7144
- 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."
7145
  msgstr ""
7146
 
7147
- #: languages/vue.php:1588
7148
- msgid "Avg. Session Duration"
7149
  msgstr ""
7150
 
7151
- #: languages/vue.php:1591
7152
- msgid "Proceed"
7153
  msgstr ""
7154
 
7155
- #: languages/vue.php:1594
7156
- msgid "Connection Information"
7157
  msgstr ""
7158
 
7159
- #: languages/vue.php:1597
7160
- 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."
7161
  msgstr ""
7162
 
7163
- #: languages/vue.php:1600
7164
- msgid "Hostname"
7165
  msgstr ""
7166
 
7167
- #: languages/vue.php:1603
7168
- msgid "FTP Username"
7169
  msgstr ""
7170
 
7171
- #: languages/vue.php:1606
7172
- msgid "FTP Password"
7173
  msgstr ""
7174
 
 
7175
  #: languages/vue.php:1609
7176
- msgid "This password will not be stored on the server."
7177
  msgstr ""
7178
 
7179
  #: languages/vue.php:1612
7180
- msgid "Connection Type"
7181
- msgstr ""
7182
-
7183
- #: languages/vue.php:1615
7184
- msgid "Cancel"
7185
  msgstr ""
7186
 
7187
- #: languages/vue.php:1618
7188
- msgid "Activating..."
 
7189
  msgstr ""
7190
 
7191
- #: languages/vue.php:1621
7192
- msgid "Deactivating..."
7193
  msgstr ""
7194
 
7195
- #: languages/vue.php:1624
7196
- msgid "Deactivate"
 
7197
  msgstr ""
7198
 
7199
- #. Translators: The status of the addon (installed/active/inactive).
7200
- #: languages/vue.php:1628
7201
- msgid "Status: %s"
7202
  msgstr ""
7203
 
7204
- #: languages/vue.php:1631
7205
- msgid "Not Installed"
 
7206
  msgstr ""
7207
 
7208
- #: languages/vue.php:1634
7209
- msgid "Network Active"
7210
  msgstr ""
7211
 
 
7212
  #: languages/vue.php:1637
7213
- msgid "Active"
7214
  msgstr ""
7215
 
7216
  #: languages/vue.php:1640
7217
- msgid "Inactive"
7218
- msgstr ""
7219
-
7220
- #: languages/vue.php:1643
7221
- msgid "Thank you for being a loyal MonsterInsights Lite user."
7222
  msgstr ""
7223
 
7224
- #: languages/vue.php:1646
7225
- msgid "Upgrade to MonsterInsights Pro and unlock all the awesome features."
 
7226
  msgstr ""
7227
 
7228
- #. Translators: Gets replaced with the coupon code.
7229
  #: languages/vue.php:1650
7230
- msgid "Use coupon code %s to get 50%% off."
7231
  msgstr ""
7232
 
7233
  #: languages/vue.php:1653
7234
- msgid "Dashboard widget"
7235
  msgstr ""
7236
 
7237
- #: languages/vue.php:1657
7238
- msgid "Affiliate Links"
7239
  msgstr ""
7240
 
7241
- #: languages/vue.php:1660
7242
- msgid "Enhanced Ecommerce"
7243
  msgstr ""
7244
 
7245
- #: languages/vue.php:1663
7246
- msgid "Banner Ads"
7247
  msgstr ""
7248
 
 
7249
  #: languages/vue.php:1666
7250
- msgid "Google AMP"
7251
  msgstr ""
7252
 
7253
  #: languages/vue.php:1669
7254
- msgid "SEO Score Tracking"
7255
  msgstr ""
7256
 
7257
  #: languages/vue.php:1672
7258
- msgid "Authenticating"
7259
  msgstr ""
7260
 
7261
  #: languages/vue.php:1675
7262
- msgid "Verifying Credentials"
7263
  msgstr ""
7264
 
7265
  #: languages/vue.php:1678
7266
- msgid "Your site is connected to MonsterInsights!"
7267
  msgstr ""
7268
 
7269
  #: languages/vue.php:1681
7270
- msgid "Deauthenticating"
7271
  msgstr ""
7272
 
7273
  #: languages/vue.php:1684
7274
- msgid "You've disconnected your site from MonsterInsights. Your site is no longer being tracked by Google Analytics and you won't see reports anymore."
7275
  msgstr ""
7276
 
7277
  #: languages/vue.php:1687
7278
- msgid "Connect MonsterInsights"
7279
  msgstr ""
7280
 
7281
  #: languages/vue.php:1690
7282
- msgid "Verify Credentials"
7283
  msgstr ""
7284
 
7285
  #: languages/vue.php:1693
7286
- msgid "Website Profile"
7287
  msgstr ""
7288
 
7289
  #: languages/vue.php:1696
7290
- msgid "Active Profile"
7291
  msgstr ""
7292
 
7293
  #: languages/vue.php:1699
7294
- msgid "Your website profile has been set at the network level of your WordPress Multisite."
7295
  msgstr ""
7296
 
7297
  #: languages/vue.php:1702
7298
- msgid "If you would like to use a different profile for this subsite, you can authenticate below."
7299
  msgstr ""
7300
 
7301
  #: languages/vue.php:1705
7302
- msgid "Or manually enter UA code (limited functionality)"
7303
  msgstr ""
7304
 
7305
  #: languages/vue.php:1708
7306
- msgid "Force Deauthenticate"
7307
  msgstr ""
7308
 
7309
  #: languages/vue.php:1711
7310
- msgid "Disconnect MonsterInsights"
7311
  msgstr ""
7312
 
7313
  #: languages/vue.php:1714
7314
- msgid "Show in widget mode"
7315
  msgstr ""
7316
 
7317
  #: languages/vue.php:1717
7318
- msgid "Show in full-width mode"
7319
  msgstr ""
7320
 
7321
- #. Translators: Current PHP version and recommended PHP version.
7322
  #: languages/vue.php:1721
7323
- msgid "MonsterInsights has detected that your site is running an outdated, insecure version of PHP (%1$s), which could be putting your site at risk for being hacked. WordPress stopped supporting your PHP version in April, 2019. Updating to the recommended version (PHP %2$s) only takes a few minutes and will make your website significantly faster and more secure."
7324
  msgstr ""
7325
 
7326
- #. Translators: Current WordPress version.
7327
- #: languages/vue.php:1725
7328
- msgid "MonsterInsights has detected that your site is running an outdated version of WordPress (%s). MonsterInsights will stop supporting WordPress versions lower than 4.9 in 2020. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
7329
  msgstr ""
7330
 
7331
- #: languages/vue.php:1728
7332
- msgid "Yikes! PHP Update Required"
7333
  msgstr ""
7334
 
7335
- #. Translators: Current PHP version and recommended PHP version.
7336
- #: languages/vue.php:1732
7337
- msgid "MonsterInsights has detected that your site is running an outdated, insecure version of PHP (%1$s), which could be putting your site at risk for being hacked. Updating to the recommended version (PHP %2$s) only takes a few minutes and will make your website significantly faster and more secure."
7338
  msgstr ""
7339
 
7340
- #: languages/vue.php:1735
7341
- msgid "Learn more about updating PHP"
 
7342
  msgstr ""
7343
 
7344
- #: languages/vue.php:1738
7345
- msgid "Yikes! WordPress Update Required"
7346
  msgstr ""
7347
 
7348
- #. Translators: Current WordPress version.
7349
- #: languages/vue.php:1742
7350
- msgid "MonsterInsights has detected that your site is running an outdated version of WordPress (%s). Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
7351
  msgstr ""
7352
 
7353
- #: languages/vue.php:1745
7354
- msgid "Learn more about updating WordPress"
7355
  msgstr ""
7356
 
7357
- #: languages/vue.php:1748
7358
- msgid "Custom Campaign Parameters"
 
7359
  msgstr ""
7360
 
 
7361
  #: languages/vue.php:1751
7362
- msgid "The URL builder helps you add parameters to your URLs you use in custom web or email ad campaigns."
7363
  msgstr ""
7364
 
7365
  #: languages/vue.php:1754
7366
- msgid "A custom campaign is any ad campaign not using the AdWords auto-tagging feature. When users click one of the custom links, the unique parameters are sent to your Analytics account, so you can identify the URLs that are the most effective in attracting users to your content."
7367
  msgstr ""
7368
 
7369
- #. Translators: Marks the field as required.
7370
- #: languages/vue.php:1758
7371
- msgid "Website URL %s"
7372
  msgstr ""
7373
 
7374
- #. Translators: Display the current website url in italic.
7375
- #: languages/vue.php:1762
7376
- msgid "The full website URL (e.g. %1$s %2$s%3$s)"
7377
  msgstr ""
7378
 
7379
- #. Translators: Marks the field as required.
7380
  #: languages/vue.php:1766
7381
- msgid "Campaign Source %s"
7382
- msgstr ""
7383
-
7384
- #. Translators: Make the text italic.
7385
- #: languages/vue.php:1770
7386
- msgid "Enter a referrer (e.g. %1$sfacebook, newsletter, google%2$s)"
7387
  msgstr ""
7388
 
7389
- #. Translators: Make the text italic.
7390
- #: languages/vue.php:1774
7391
- msgid "Enter a marketing medium (e.g. %1$scpc, banner, email%2$s)"
7392
  msgstr ""
7393
 
7394
- #. Translators: Make the text italic.
7395
  #: languages/vue.php:1778
7396
- msgid "Enter a name to easily identify (e.g. %1$sspring_sale%2$s)"
7397
  msgstr ""
7398
 
7399
  #: languages/vue.php:1781
7400
- msgid "Enter the paid keyword"
7401
  msgstr ""
7402
 
7403
  #: languages/vue.php:1784
7404
- msgid "Enter something to differentiate ads"
7405
  msgstr ""
7406
 
7407
  #: languages/vue.php:1787
7408
- msgid "Use Fragment"
7409
  msgstr ""
7410
 
7411
- #. Translators: Make the text bold.
7412
- #: languages/vue.php:1791
7413
- msgid "Set the parameters in the fragment portion of the URL %1$s(not recommended)%2$s"
7414
  msgstr ""
7415
 
7416
  #: languages/vue.php:1794
7417
- msgid "URL to use"
7418
- msgstr ""
7419
-
7420
- #: languages/vue.php:1797
7421
- msgid "(Updates automatically)"
7422
  msgstr ""
7423
 
7424
- #: languages/vue.php:1800
7425
- msgid "Copy to Clipboard"
7426
  msgstr ""
7427
 
7428
- #: languages/vue.php:1803
7429
- msgid "Copy to Pretty Links"
7430
  msgstr ""
7431
 
 
7432
  #: languages/vue.php:1806
7433
- msgid "Make your campaign links prettier!"
7434
  msgstr ""
7435
 
7436
  #: languages/vue.php:1809
7437
- msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable and totally shareable links."
7438
  msgstr ""
7439
 
7440
  #: languages/vue.php:1812
7441
- msgid "Download Pretty Links"
7442
  msgstr ""
7443
 
7444
  #: languages/vue.php:1815
7445
- msgid "More Information & Examples"
7446
  msgstr ""
7447
 
7448
  #: languages/vue.php:1818
7449
- msgid "The following table gives a detailed explanation and example of each of the campaign parameters."
7450
- msgstr ""
7451
-
7452
- #: languages/vue.php:1821
7453
- msgid "Campaign Source"
7454
- msgstr ""
7455
-
7456
- #: languages/vue.php:1824
7457
- msgid "Required. Use utm_source to identify a search engine, newsletter name, or other source."
7458
- msgstr ""
7459
-
7460
- #: languages/vue.php:1827
7461
- msgid "Campaign Medium"
7462
  msgstr ""
7463
 
7464
- #: languages/vue.php:1830
7465
- msgid "Use utm_medium to identify a medium such as email or cost-per-click."
7466
  msgstr ""
7467
 
7468
- #: languages/vue.php:1833
7469
- msgid "Campaign Name"
7470
  msgstr ""
7471
 
7472
- #: languages/vue.php:1836
7473
- msgid "Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign."
7474
  msgstr ""
7475
 
7476
- #: languages/vue.php:1839
7477
- msgid "Campaign Term"
7478
  msgstr ""
7479
 
7480
- #: languages/vue.php:1842
7481
- msgid "Used for paid search. Use utm_term to note the keywords for this ad."
7482
  msgstr ""
7483
 
7484
- #: languages/vue.php:1845
7485
- msgid "Campaign Content"
 
7486
  msgstr ""
7487
 
7488
- #: languages/vue.php:1848
7489
- msgid "Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL."
7490
  msgstr ""
7491
 
7492
- #. Translators: Example.
7493
- #: languages/vue.php:1852
7494
- msgid "Example: %s"
7495
  msgstr ""
7496
 
7497
- #. Translators: Examples.
7498
  #: languages/vue.php:1856
7499
- msgid "Examples: %s"
7500
  msgstr ""
7501
 
7502
  #: languages/vue.php:1859
7503
- msgid "About Campaigns"
7504
  msgstr ""
7505
 
7506
  #: languages/vue.php:1862
7507
- msgid "About Custom Campaigns"
7508
  msgstr ""
7509
 
7510
  #: languages/vue.php:1865
7511
- msgid "Best Practices for Creating Custom Campaigns"
7512
  msgstr ""
7513
 
7514
  #: languages/vue.php:1868
7515
- msgid "About the Referral Traffic Report"
7516
  msgstr ""
7517
 
7518
  #: languages/vue.php:1871
7519
- msgid "About Traffic Source Dimensions"
7520
  msgstr ""
7521
 
7522
  #: languages/vue.php:1874
7523
- msgid "AdWords Auto-Tagging"
7524
- msgstr ""
7525
-
7526
- #: languages/vue.php:1877
7527
- msgid "Additional Information"
7528
  msgstr ""
7529
 
7530
  #: languages/vue.php:1880
7531
- msgid "No options available"
7532
  msgstr ""
7533
 
7534
- #: languages/vue.php:1883
7535
- msgid "Make your MonsterInsights campaign links prettier with Pretty Links!"
 
7536
  msgstr ""
7537
 
7538
- #: languages/vue.php:1886
7539
- msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable, totally shareable links."
 
7540
  msgstr ""
7541
 
7542
- #: languages/vue.php:1889
7543
- msgid "Take your MonsterInsights campaign links from our URL Builder and shorten them with Pretty Links!"
7544
  msgstr ""
7545
 
7546
- #: languages/vue.php:1892
7547
- msgid "Over 200,000 websites use Pretty Links!"
7548
  msgstr ""
7549
 
7550
- #: languages/vue.php:1895
7551
- msgid "Install Pretty Links"
7552
  msgstr ""
7553
 
7554
- #: languages/vue.php:1898
7555
- msgid "Pretty Links Installed & Activated"
7556
  msgstr ""
7557
 
7558
- #: languages/vue.php:1901
7559
- msgid "Install Pretty Links from the WordPress.org plugin repository."
7560
  msgstr ""
7561
 
7562
- #: languages/vue.php:1904
7563
- msgid "Activate Pretty Links"
7564
  msgstr ""
7565
 
7566
- #: languages/vue.php:1907
7567
- msgid "Activating Pretty Links..."
7568
  msgstr ""
7569
 
7570
- #: languages/vue.php:1910
7571
- msgid "Create New Pretty Link"
7572
  msgstr ""
7573
 
7574
- #: languages/vue.php:1913
7575
- msgid "Create a New Pretty Link"
7576
  msgstr ""
7577
 
7578
- #: languages/vue.php:1916
7579
- msgid "Grab your campaign link and paste it into the Target URL field."
7580
  msgstr ""
7581
 
7582
- #: languages/vue.php:1919
7583
- msgid "Reset to default"
7584
  msgstr ""
7585
 
7586
- #: languages/vue.php:1922
7587
- msgid "The value entered does not match the required format"
7588
  msgstr ""
7589
 
7590
- #: languages/vue.php:1925
7591
- msgid "Help Us Improve"
7592
  msgstr ""
7593
 
7594
- #: languages/vue.php:1928
7595
- msgid "Help us better understand our users and their website needs."
7596
  msgstr ""
7597
 
7598
- #. Translators: Adds a link to the documentation.
7599
- #: languages/vue.php:1932
7600
- msgid "If enabled MonsterInsights will send some information about your WordPress site like what plugins and themes you use and which MonsterInsights 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"
7601
  msgstr ""
7602
 
7603
- #. Translators: The name of the field that is throwing a validation error.
7604
  #: languages/vue.php:1936
7605
- msgid "%s can't be empty."
7606
  msgstr ""
7607
 
7608
  #: languages/vue.php:1939
7609
- msgid "Duplicate values are not allowed."
7610
  msgstr ""
7611
 
7612
  #: languages/vue.php:1942
7613
- msgid "You can add maximum 5 items."
7614
  msgstr ""
7615
 
7616
  #: languages/vue.php:1945
7617
- msgid "At least 0 item required."
7618
  msgstr ""
7619
 
7620
  #: languages/vue.php:1948
7621
- msgid "Add Another Link Path"
7622
  msgstr ""
7623
 
7624
  #: languages/vue.php:1951
7625
- msgid "Remove row"
7626
  msgstr ""
7627
 
7628
  #: languages/vue.php:1954
7629
- msgid "Website profile"
7630
  msgstr ""
7631
 
7632
  #: languages/vue.php:1957
7633
- msgid "Active profile"
7634
  msgstr ""
7635
 
7636
- #: languages/vue.php:1960
7637
- msgid "Skip and Keep Connection"
 
7638
  msgstr ""
7639
 
7640
- #: languages/vue.php:1966
7641
- msgid "Usage Tracking"
 
7642
  msgstr ""
7643
 
7644
- #: languages/vue.php:1969
7645
- msgid "Allow Usage Tracking"
7646
  msgstr ""
7647
 
7648
- #: languages/vue.php:1972
7649
- msgid "By allowing us to track usage data we can better help you because we know with which WordPress configurations, themes and plugins we should test."
7650
  msgstr ""
7651
 
7652
- #. Translators: Add links to documentation.
7653
- #: languages/vue.php:1976
7654
- msgid "Complete documentation on usage tracking is available %1$shere%2$s."
7655
  msgstr ""
7656
 
7657
- #. Translators: Make text green and add smiley face.
7658
  #: languages/vue.php:1980
7659
- msgid "You're using %1$sMonsterInsights Lite%2$s - no license needed. Enjoy! %3$s"
7660
  msgstr ""
7661
 
7662
- #. Translators: Add link to upgrade.
7663
- #: languages/vue.php:1984
7664
- msgid "To unlock more features consider %1$supgrading to PRO%2$s."
7665
  msgstr ""
7666
 
7667
- #. Translators: Make text green.
7668
- #: languages/vue.php:1988
7669
- msgid "As a valued MonsterInsights Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!"
7670
  msgstr ""
7671
 
7672
- #: languages/vue.php:1991
7673
- msgid "Unlock PRO Features Now"
7674
  msgstr ""
7675
 
7676
- #: languages/vue.php:1994
7677
- msgid "Paste your license key here"
7678
  msgstr ""
7679
 
7680
- #: languages/vue.php:1997
7681
- msgid "Verify"
 
 
 
 
7682
  msgstr ""
7683
 
7684
- #. Translators: Add link to retrieve license from account area.
7685
  #: languages/vue.php:2001
7686
- msgid "Already purchased? Simply enter your license key below to connect with MonsterInsights PRO! %1$sRetrieve your license key%2$s."
7687
  msgstr ""
7688
 
7689
  #: languages/vue.php:2004
7690
- msgid "There was an error unlocking MonsterInsights PRO please try again or install manually."
7691
  msgstr ""
7692
 
7693
- #. Translators: Error status and error text.
7694
- #: languages/vue.php:2008
7695
- msgid "Can't load settings. Error: %1$s, %2$s"
7696
  msgstr ""
7697
 
7698
- #: languages/vue.php:2012
7699
- msgid "You appear to be offline."
7700
  msgstr ""
7701
 
7702
- #. Translators: Error status and error text.
7703
- #: languages/vue.php:2016
7704
- msgid "Can't save settings. Error: %1$s, %2$s"
7705
  msgstr ""
7706
 
7707
- #: languages/vue.php:2019
7708
- msgid "Network error encountered. Settings not saved."
 
7709
  msgstr ""
7710
 
 
7711
  #: languages/vue.php:2022
7712
- msgid "Scroll Tracking"
7713
  msgstr ""
7714
 
7715
  #: languages/vue.php:2025
7716
- msgid "Scroll depth tracking allows you to see how far your users scroll before they leave a page. This is great for publishers (bloggers), and eCommerce websites to boost conversions."
7717
- msgstr ""
7718
-
7719
- #: languages/vue.php:2028
7720
- msgid "Upgrade"
7721
  msgstr ""
7722
 
7723
- #: languages/vue.php:2031
7724
- msgid ""
7725
- "The EU Compliance addon allows you to improve compliance with GDPR\n"
7726
- " and other privacy regulations."
7727
  msgstr ""
7728
 
7729
- #: languages/vue.php:2035
7730
- msgid "EU Compliance"
 
7731
  msgstr ""
7732
 
7733
- #. Translators: Error status and error text.
7734
- #: languages/vue.php:2039
7735
- msgid "Can't load errors. Error: %1$s, %2$s"
7736
  msgstr ""
7737
 
7738
- #: languages/vue.php:2042
7739
- msgid "Only Show Posts from These Categories"
7740
  msgstr ""
7741
 
7742
- #: languages/vue.php:2045
7743
- msgid "Choose from which categories posts will be displayed in the widget. All categories will be used if left empty."
 
7744
  msgstr ""
7745
 
 
7746
  #: languages/vue.php:2048
7747
- msgid "Show"
7748
  msgstr ""
7749
 
7750
  #: languages/vue.php:2051
7751
- msgid "Select posts/search"
7752
  msgstr ""
7753
 
7754
- #: languages/vue.php:2054
7755
- msgid "Oops! No posts found."
 
7756
  msgstr ""
7757
 
7758
- #: languages/vue.php:2057
7759
- msgid "Search by post title"
 
7760
  msgstr ""
7761
 
7762
- #: languages/vue.php:2060
7763
- msgid "Can't load posts."
 
7764
  msgstr ""
7765
 
7766
- #: languages/vue.php:2063
7767
- msgid "SharedCount API Key"
 
7768
  msgstr ""
7769
 
7770
- #: languages/vue.php:2066
7771
- msgid "Insert your sharedcount API key found in your %1$sSettings%2$s panel. After, click Start Indexing."
 
7772
  msgstr ""
7773
 
7774
- #: languages/vue.php:2069
7775
- msgid "Start Indexing"
7776
  msgstr ""
7777
 
7778
- #: languages/vue.php:2072
7779
- msgid "%1$sIndex Progress: %2$s%%.%3$s You may leave this page during indexing."
7780
  msgstr ""
7781
 
7782
- #: languages/vue.php:2075
7783
- msgid "Indexing completed, counts will update automatically every day."
7784
  msgstr ""
7785
 
7786
- #. Translators: Page number of total pages. 1 & 2 make the first part of the text bold.
7787
- #: languages/vue.php:2079
7788
- msgid "%1$sPage %3$s%2$s of %4$s"
7789
  msgstr ""
7790
 
7791
  #: languages/vue.php:2086
7792
- msgid "Wide"
7793
  msgstr ""
7794
 
7795
  #: languages/vue.php:2089
7796
- msgid "Narrow"
7797
  msgstr ""
7798
 
7799
  #: languages/vue.php:2092
7800
- msgid "Title"
7801
  msgstr ""
7802
 
7803
  #: languages/vue.php:2095
7804
- msgid "Color"
7805
  msgstr ""
7806
 
7807
  #: languages/vue.php:2098
7808
- msgid "Size"
7809
  msgstr ""
7810
 
7811
  #: languages/vue.php:2101
7812
- msgid "Border"
7813
  msgstr ""
7814
 
7815
  #: languages/vue.php:2104
7816
- msgid "Author/Date"
7817
  msgstr ""
7818
 
7819
  #: languages/vue.php:2107
7820
- msgid "Label"
7821
  msgstr ""
7822
 
7823
- #: languages/vue.php:2110
7824
- msgid "Background"
 
7825
  msgstr ""
7826
 
7827
- #: languages/vue.php:2122
7828
- msgid "Choose which content you would like displayed in the widget."
7829
  msgstr ""
7830
 
7831
- #: languages/vue.php:2134
7832
- msgid "Comments"
7833
  msgstr ""
7834
 
7835
- #: languages/vue.php:2140
7836
- msgid "Choose how many posts you’d like displayed in the widget."
7837
  msgstr ""
7838
 
7839
- #: languages/vue.php:2143
7840
- msgid "This feature requires MonsterInsights Pro"
 
7841
  msgstr ""
7842
 
7843
- #: languages/vue.php:2146
7844
- msgid "By upgrading you will also get access to advanced eCommerce tracking, Custom Dimensions and more."
 
7845
  msgstr ""
7846
 
7847
- #: languages/vue.php:2149
7848
- msgid "Upgrade to Pro and Unlock Popular Products"
 
7849
  msgstr ""
7850
 
7851
- #: languages/vue.php:2152
7852
- msgid "View all Pro features"
7853
  msgstr ""
7854
 
7855
- #: languages/vue.php:2155
7856
- msgid "Days"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7857
  msgstr ""
7858
 
7859
- #. Translators: placeholders make text small.
7860
  #: languages/vue.php:2159
7861
- msgid "7 days"
7862
  msgstr ""
7863
 
7864
  #: languages/vue.php:2162
7865
- msgid "30 days"
7866
  msgstr ""
7867
 
7868
  #: languages/vue.php:2165
7869
- msgid "Custom"
7870
  msgstr ""
7871
 
7872
  #: languages/vue.php:2168
7873
- msgid "Popular Posts data can be fetched correctly"
7874
  msgstr ""
7875
 
7876
  #: languages/vue.php:2171
7877
- msgid "Please note: depending on when you set up the Custom Dimensions settings, it may take up to 7 days to see relevant Popular Posts data loading from Google Analytics."
7878
  msgstr ""
7879
 
7880
  #: languages/vue.php:2174
7881
- msgid "Close"
7882
  msgstr ""
7883
 
7884
- #: languages/vue.php:2178
7885
- msgid "Add Top 5 Posts from Google Analytics"
7886
  msgstr ""
7887
 
7888
- #: languages/vue.php:2181
7889
- msgid "In order to load the top posts from Google Analytics you will need to enable the Custom Dimensions addon and set up the Post Type custom dimension in both MonsterInsights and Google Analytics settings. Please use the button below to confirm your configuration is correct."
7890
  msgstr ""
7891
 
7892
- #: languages/vue.php:2184
7893
- msgid "Test Automated Posts"
7894
  msgstr ""
7895
 
7896
- #. Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc.
7897
- #: languages/vue.php:2188
7898
- msgid "Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics."
7899
  msgstr ""
7900
 
7901
  #: languages/vue.php:2192
7902
- msgid "Automated + Curated"
7903
  msgstr ""
7904
 
7905
- #. Translators: Placeholder adds a link to the Custom Dimensions settings.
7906
- #: languages/vue.php:2196
7907
- msgid "Automatically add the top 5 Posts from the past 30 days to your Curated list of Posts using %1$sCustom Dimensions%2$s. Also requires Sort By - Curated to be selected. Setup steps can be found in our %3$sknowledge base%4$s."
7908
  msgstr ""
7909
 
7910
- #. Translators: Placeholder gets replaced with current license version.
7911
- #: languages/vue.php:2200
7912
- msgid "Pro version is required. Your current license level is: %s"
7913
  msgstr ""
7914
 
7915
- #: languages/vue.php:2203
7916
- msgid "Verifying Popular Posts data"
 
7917
  msgstr ""
7918
 
 
7919
  #: languages/vue.php:2206
7920
- msgid "View notifications"
7921
  msgstr ""
7922
 
7923
  #: languages/vue.php:2209
7924
- msgid "Hide dashboard widget"
7925
- msgstr ""
7926
-
7927
- #: languages/vue.php:2212
7928
- msgid "Are you sure you want to hide the MonsterInsights Dashboard Widget? "
7929
  msgstr ""
7930
 
7931
- #: languages/vue.php:2215
7932
- msgid "Yes, hide it!"
 
7933
  msgstr ""
7934
 
7935
- #: languages/vue.php:2218
7936
- msgid "No, cancel!"
 
7937
  msgstr ""
7938
 
 
7939
  #: languages/vue.php:2221
7940
- msgid "MonsterInsights Widget Hidden"
7941
- msgstr ""
7942
-
7943
- #: languages/vue.php:2224
7944
- msgid "You can re-enable the MonsterInsights widget at any time using the \"Screen Options\" menu on the top right of this page"
7945
  msgstr ""
7946
 
7947
- #: languages/vue.php:2227
7948
- msgid "Right Now"
 
7949
  msgstr ""
7950
 
7951
- #: languages/vue.php:2230
7952
- msgid "Active users on site"
 
7953
  msgstr ""
7954
 
7955
- #: languages/vue.php:2233
7956
- msgid "The real-time graph of visitors over time is not currently available for this site. Please try again later."
7957
  msgstr ""
7958
 
7959
- #: languages/vue.php:2236
7960
- msgid "Important: this only includes users who are tracked in real-time. Not all users are tracked in real-time including (but not limited to) logged-in site administrators, certain mobile users, and users who match a Google Analytics filter."
7961
  msgstr ""
7962
 
7963
- #: languages/vue.php:2239
7964
- msgid "The real-time report automatically updates approximately every 60 seconds."
7965
  msgstr ""
7966
 
7967
- #. Translators: Number of seconds that have passed since the report was refreshed.
7968
- #: languages/vue.php:2243
7969
- msgid "The real-time report was last updated %s seconds ago."
7970
  msgstr ""
7971
 
7972
  #: languages/vue.php:2246
7973
- msgid "The latest data will be automatically shown on this page when it becomes available."
7974
  msgstr ""
7975
 
7976
  #: languages/vue.php:2249
7977
- msgid "There is no need to refresh the browser (doing so won't have any effect)."
7978
  msgstr ""
7979
 
7980
  #: languages/vue.php:2252
7981
- msgid "Pageviews Per Minute"
7982
- msgstr ""
7983
-
7984
- #: languages/vue.php:2255
7985
- msgid "Top Pages"
7986
  msgstr ""
7987
 
7988
- #: languages/vue.php:2258
7989
- msgid "No pageviews currently."
 
7990
  msgstr ""
7991
 
7992
- #: languages/vue.php:2261
7993
- msgid "Page"
 
7994
  msgstr ""
7995
 
7996
- #: languages/vue.php:2264
7997
- msgid "Pageview Count"
7998
  msgstr ""
7999
 
8000
- #: languages/vue.php:2267
8001
- msgid "Percent of Total"
8002
  msgstr ""
8003
 
8004
- #: languages/vue.php:2270
8005
- msgid "This is the number of active users currently on your site."
8006
  msgstr ""
8007
 
8008
- #: languages/vue.php:2273
8009
- msgid "This graph shows the number of pageviews for each of the last 30 minutes."
8010
  msgstr ""
8011
 
8012
- #: languages/vue.php:2276
8013
- msgid "This list shows the top pages users are currently viewing on your site."
8014
  msgstr ""
8015
 
8016
- #: languages/vue.php:2279
8017
- msgid "View All Real-Time Pageviews"
8018
  msgstr ""
8019
 
8020
- #: languages/vue.php:2282
8021
- msgid "View All Real-Time Traffic Sources"
8022
  msgstr ""
8023
 
8024
- #: languages/vue.php:2285
8025
- msgid "View All Real-Time Traffic by Country"
8026
  msgstr ""
8027
 
8028
- #: languages/vue.php:2288
8029
- msgid "View All Real-Time Traffic by City"
8030
  msgstr ""
8031
 
8032
- #: languages/vue.php:2291
8033
- msgid "Forms Tracking help you see who’s viewing your forms, so you can increase conversions."
8034
  msgstr ""
8035
 
8036
- #: languages/vue.php:2294
8037
- msgid "Custom Dimensions show you popular categories, best time to publish, focus keywords, etc."
8038
  msgstr ""
8039
 
8040
- #: languages/vue.php:2297
8041
- msgid "Make Google Analytics GDPR compliant with our EU Compliance addon."
8042
  msgstr ""
8043
 
8044
- #: languages/vue.php:2300
8045
- msgid "Get real-time Google Analytics report right inside your WordPress dashboard."
8046
  msgstr ""
8047
 
8048
- #: languages/vue.php:2303
8049
- msgid "Use Google Optimize to easily perform A/B split tests on your site."
8050
  msgstr ""
8051
 
8052
- #: languages/vue.php:2306
8053
- msgid "See all your important store metrics in one place with Enhanced Ecommerce Tracking."
8054
  msgstr ""
8055
 
8056
- #: languages/vue.php:2309
8057
- msgid "Unlock search console report to see your top performing keywords in Google."
8058
  msgstr ""
8059
 
8060
- #: languages/vue.php:2312
8061
- msgid "Get Page Insights to see important metrics for individual posts / pages in WordPress."
8062
  msgstr ""
8063
 
 
8064
  #: languages/vue.php:2315
8065
- msgid "Publishers Report shows your top performing pages, audience demographics, and more."
8066
  msgstr ""
8067
 
8068
- #: languages/vue.php:2318
8069
- msgid "Get Scroll-Depth tracking to see how far users scroll on your pages before leaving."
 
8070
  msgstr ""
8071
 
8072
- #: languages/vue.php:2321
8073
- msgid "Upgrade to Pro »"
 
8074
  msgstr ""
8075
 
8076
- #: languages/vue.php:2324
8077
- msgid "Pro Tip:"
 
8078
  msgstr ""
8079
 
8080
- #. Translators: Add links to documentation.
8081
- #: languages/vue.php:2328
8082
- msgid "This allows you to track custom affiliate links. A path of /go/ would match urls that start with that. The label is appended onto the end of the string \"outbound-link-\", to provide unique labels for these links in Google Analytics. Complete documentation on affiliate links is available %1$shere%2$s."
8083
  msgstr ""
8084
 
8085
- #: languages/vue.php:2331
8086
- msgid "Our affiliate link tracking works by setting path for internal links to track as outbound links."
 
8087
  msgstr ""
8088
 
8089
- #: languages/vue.php:2337
8090
- msgid "The MonsterInsights Headline Analyzer tool in the Gutenberg editor enables you to write irresistible SEO-friendly headlines that drive traffic, social media shares, and rank better in search results."
8091
  msgstr ""
8092
 
8093
- #: languages/vue.php:2340
8094
- msgid "Disable the Headline Analyzer"
8095
  msgstr ""
8096
 
8097
- #. Translators: Number of days.
8098
  #: languages/vue.php:2344
8099
- msgid "vs. Previous Day"
8100
  msgstr ""
8101
 
8102
- #: languages/vue.php:2347
8103
- msgid "No change"
 
8104
  msgstr ""
8105
 
8106
- #: languages/vue.php:2350
8107
- msgid "New"
8108
  msgstr ""
8109
 
8110
- #: languages/vue.php:2353
8111
- msgid "Returning"
8112
  msgstr ""
8113
 
8114
  #: languages/vue.php:2357
8115
- msgid "Desktop"
8116
  msgstr ""
8117
 
8118
- #: languages/vue.php:2361
8119
- msgid "Tablet"
8120
  msgstr ""
8121
 
8122
- #: languages/vue.php:2365
8123
- msgid "Mobile"
8124
  msgstr ""
8125
 
8126
- #: languages/vue.php:2368
8127
- msgid "Top 10 Countries"
8128
  msgstr ""
8129
 
8130
- #: languages/vue.php:2371
8131
- msgid "View Countries Report"
8132
  msgstr ""
8133
 
8134
- #: languages/vue.php:2374
8135
- msgid "Top 10 Referrals"
8136
  msgstr ""
8137
 
8138
- #: languages/vue.php:2377
8139
- msgid "View All Referral Sources"
8140
  msgstr ""
8141
 
8142
- #: languages/vue.php:2380
8143
- msgid "View Full Posts/Pages Report"
8144
  msgstr ""
8145
 
8146
- #: languages/vue.php:2383
8147
- 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."
8148
  msgstr ""
8149
 
8150
- #: languages/vue.php:2386
8151
- msgid "This list shows the top countries your website visitors are from."
8152
  msgstr ""
8153
 
8154
- #: languages/vue.php:2389
8155
- msgid "This list shows the top websites that send your website traffic, known as referral traffic."
8156
  msgstr ""
8157
 
8158
- #: languages/vue.php:2392
8159
- msgid "Export PDF Overview Report"
8160
  msgstr ""
8161
 
8162
- #: languages/vue.php:2395
8163
- msgid "See who's viewing and submitting your forms, so you can increase your conversion rate."
8164
  msgstr ""
8165
 
8166
- #: languages/vue.php:2398
8167
- msgid "Use Google Optimize to retarget your website visitors and perform A/B split tests with ease."
8168
  msgstr ""
8169
 
8170
- #: languages/vue.php:2401
8171
- msgid "Add Custom Dimensions and track who's the most popular author on your site, which post types get the most traffic, and more"
8172
  msgstr ""
8173
 
8174
- #: languages/vue.php:2404
8175
- msgid "Still Calculating..."
8176
  msgstr ""
8177
 
8178
- #: languages/vue.php:2407
8179
- msgid "Your 2019 Year in Review is still calculating. Please check back later to see how your website performed last year."
 
8180
  msgstr ""
8181
 
 
8182
  #: languages/vue.php:2410
8183
- msgid "Back to Overview Report"
 
 
 
 
 
 
 
 
8184
  msgstr ""
8185
 
8186
  #: languages/vue.php:2419
8187
- msgid "Audience"
8188
  msgstr ""
8189
 
8190
  #: languages/vue.php:2422
8191
- msgid "Congrats"
8192
  msgstr ""
8193
 
8194
  #: languages/vue.php:2425
8195
- msgid "Your website was quite popular this year! "
8196
  msgstr ""
8197
 
8198
  #: languages/vue.php:2428
8199
- msgid "You had "
8200
  msgstr ""
8201
 
8202
  #: languages/vue.php:2431
8203
- msgid " visitors!"
8204
- msgstr ""
8205
-
8206
- #: languages/vue.php:2434
8207
- msgid " visitors"
8208
  msgstr ""
8209
 
8210
- #: languages/vue.php:2437
8211
- msgid "Total Visitors"
 
8212
  msgstr ""
8213
 
8214
- #: languages/vue.php:2440
8215
- msgid "Total Sessions"
 
8216
  msgstr ""
8217
 
 
8218
  #: languages/vue.php:2443
8219
- msgid "Visitors by Month"
8220
  msgstr ""
8221
 
8222
  #: languages/vue.php:2446
8223
- msgid "January 1, 2019 - December 31, 2019"
8224
- msgstr ""
8225
-
8226
- #: languages/vue.php:2449
8227
- msgid "A Tip for 2020"
8228
  msgstr ""
8229
 
8230
- #: languages/vue.php:2452
8231
- msgid "See the top Traffic Sources and Top Pages for the Month of May in the Overview Report to replicate your success."
 
8232
  msgstr ""
8233
 
8234
- #: languages/vue.php:2455
8235
- msgid "#1"
 
8236
  msgstr ""
8237
 
8238
- #: languages/vue.php:2458
8239
- msgid "You Top 5 Countries"
8240
  msgstr ""
8241
 
8242
- #: languages/vue.php:2461
8243
- msgid "Let’s get to know your visitors a little better, shall we?"
8244
  msgstr ""
8245
 
8246
- #: languages/vue.php:2464
8247
- msgid "Gender"
8248
  msgstr ""
8249
 
8250
- #: languages/vue.php:2467
8251
- msgid "Female"
8252
  msgstr ""
8253
 
8254
- #: languages/vue.php:2470
8255
- msgid "Women"
8256
  msgstr ""
8257
 
8258
- #: languages/vue.php:2473
8259
- msgid "Male"
8260
  msgstr ""
8261
 
8262
- #: languages/vue.php:2476
8263
- msgid "Average Age"
8264
  msgstr ""
8265
 
8266
- #: languages/vue.php:2479
8267
- msgid "Your Top 5 Pages"
8268
  msgstr ""
8269
 
8270
- #: languages/vue.php:2482
8271
- msgid "Time Spent on Site"
8272
  msgstr ""
8273
 
8274
- #: languages/vue.php:2485
8275
- msgid "minutes"
8276
  msgstr ""
8277
 
8278
  #: languages/vue.php:2488
8279
- msgid "Device Type"
8280
  msgstr ""
8281
 
8282
  #: languages/vue.php:2491
8283
- msgid "A Tip For 2020"
 
 
8284
  msgstr ""
8285
 
8286
- #: languages/vue.php:2494
8287
- msgid "Take advantage of what you’ve already built. See how to get more traffic from existing content in our 32 Marketing Hacks to Grow Your Traffic."
8288
  msgstr ""
8289
 
8290
- #: languages/vue.php:2497
8291
- msgid "Read - 32 Marketing Hacks to Grow Your Traffic"
8292
  msgstr ""
8293
 
8294
- #: languages/vue.php:2500
8295
- msgid "So, where did all of these visitors come from?"
8296
  msgstr ""
8297
 
8298
- #: languages/vue.php:2503
8299
- msgid "Clicks"
8300
  msgstr ""
8301
 
8302
- #: languages/vue.php:2506
8303
- msgid "Your Top 5 Keywords"
8304
  msgstr ""
8305
 
8306
- #: languages/vue.php:2509
8307
- msgid "What keywords visitors searched for to find your site"
8308
  msgstr ""
8309
 
8310
- #: languages/vue.php:2512
8311
- msgid "Your Top 5 Referrals"
8312
  msgstr ""
8313
 
8314
- #: languages/vue.php:2515
8315
- msgid "The websites that link back to your website"
8316
  msgstr ""
8317
 
8318
- #: languages/vue.php:2518
8319
- msgid "Opportunity"
8320
  msgstr ""
8321
 
8322
- #: languages/vue.php:2521
8323
- msgid "Use referral sources to create new partnerships or expand existing ones. See our guide on how to spy on your competitors and ethically steal their traffic."
8324
  msgstr ""
8325
 
8326
- #: languages/vue.php:2524
8327
- msgid "Read - How to Ethically Steal Your Competitor’s Traffic"
8328
  msgstr ""
8329
 
8330
- #: languages/vue.php:2527
8331
- msgid "Thank you for using MonsterInsights!"
8332
  msgstr ""
8333
 
8334
- #: languages/vue.php:2530
8335
- 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."
8336
  msgstr ""
8337
 
8338
- #: languages/vue.php:2533
8339
- msgid "Here's to an amazing 2020!"
8340
  msgstr ""
8341
 
8342
- #: languages/vue.php:2536
8343
- msgid "Enjoying MonsterInsights"
 
8344
  msgstr ""
8345
 
8346
- #: languages/vue.php:2539
8347
- msgid "Leave a five star review!"
8348
  msgstr ""
8349
 
8350
- #: languages/vue.php:2542
8351
- msgid "Syed Balkhi"
8352
  msgstr ""
8353
 
8354
- #: languages/vue.php:2545
8355
- msgid "Chris Christoff"
8356
  msgstr ""
8357
 
8358
- #: languages/vue.php:2548
8359
- msgid "Write Review"
8360
  msgstr ""
8361
 
8362
- #: languages/vue.php:2551
8363
- msgid "Did you know over 10 million websites use our plugins?"
8364
  msgstr ""
8365
 
8366
- #: languages/vue.php:2554
8367
- msgid "Try our other popular WordPress plugins to grow your website in 2020."
8368
  msgstr ""
8369
 
8370
- #: languages/vue.php:2557
8371
- msgid "Join our Communities!"
8372
  msgstr ""
8373
 
8374
- #: languages/vue.php:2560
8375
- msgid "Become a WordPress expert in 2020. Join our amazing communities and take your website to the next level."
8376
  msgstr ""
8377
 
8378
- #: languages/vue.php:2563
8379
- msgid "Facebook Group"
8380
  msgstr ""
8381
 
8382
- #: languages/vue.php:2566
8383
- msgid "Join our team of WordPress experts and other motivated website owners in the WPBeginner Engage Facebook Group."
8384
  msgstr ""
8385
 
8386
- #: languages/vue.php:2569
8387
- msgid "Join Now...It’s Free!"
8388
  msgstr ""
8389
 
8390
- #: languages/vue.php:2572
8391
- msgid "WordPress Tutorials by WPBeginner"
8392
  msgstr ""
8393
 
8394
- #: languages/vue.php:2575
8395
- msgid "WPBeginner is the largest free WordPress resource site for beginners and non-techy users."
8396
  msgstr ""
8397
 
8398
- #: languages/vue.php:2578
8399
- msgid "Visit WPBeginner"
8400
  msgstr ""
8401
 
8402
- #: languages/vue.php:2581
8403
- msgid "Follow Us!"
8404
  msgstr ""
8405
 
8406
- #: languages/vue.php:2584
8407
- msgid "Follow MonsterInsights on social media to stay up to date with latest updates, trends, and tutorials on how to make the most out of analytics."
8408
  msgstr ""
8409
 
8410
- #: languages/vue.php:2587
8411
- msgid "Copyright MonsterInsights, 2020"
8412
  msgstr ""
8413
 
8414
- #: languages/vue.php:2590
8415
- msgid "Upgrade to MonsterInsights Pro to Unlock Additional Actionable Insights"
8416
  msgstr ""
8417
 
8418
- #: languages/vue.php:2593
8419
- msgid "January"
 
8420
  msgstr ""
8421
 
8422
- #: languages/vue.php:2596
8423
- msgid "February"
8424
  msgstr ""
8425
 
8426
- #: languages/vue.php:2599
8427
- msgid "March"
 
8428
  msgstr ""
8429
 
8430
- #: languages/vue.php:2602
8431
- msgid "April"
 
8432
  msgstr ""
8433
 
8434
- #: languages/vue.php:2605
8435
- msgid "May"
8436
  msgstr ""
8437
 
8438
- #: languages/vue.php:2608
8439
- msgid "June"
8440
  msgstr ""
8441
 
8442
- #: languages/vue.php:2611
8443
- msgid "July"
8444
  msgstr ""
8445
 
8446
- #: languages/vue.php:2614
8447
- msgid "August"
8448
  msgstr ""
8449
 
8450
- #: languages/vue.php:2617
8451
- msgid "September"
8452
  msgstr ""
8453
 
8454
- #: languages/vue.php:2620
8455
- msgid "October"
8456
  msgstr ""
8457
 
8458
- #: languages/vue.php:2623
8459
- msgid "November"
8460
  msgstr ""
8461
 
8462
- #: languages/vue.php:2626
8463
- msgid "December"
8464
  msgstr ""
8465
 
8466
- #. Translators: Number of visitors.
8467
- #: languages/vue.php:2630
8468
- msgid "Your best month was <strong>%1$s</strong> with <strong>%2$s visitors!</strong>"
8469
  msgstr ""
8470
 
8471
- #. Translators: Number of visitors.
8472
- #: languages/vue.php:2634
8473
- msgid "Your <strong>%1$s</strong> visitors came from <strong>%2$s</strong> different countries."
8474
  msgstr ""
8475
 
8476
- #. Translators: Number of visitors.
8477
- #: languages/vue.php:2638
8478
- msgid "%s Visitors"
8479
  msgstr ""
8480
 
8481
- #. Translators: Percent and Number of visitors.
8482
- #: languages/vue.php:2642
8483
- msgid "%1$s&#37 of your visitors were %2$s"
8484
  msgstr ""
8485
 
8486
- #. Translators: Number of visitors and their age.
8487
- #: languages/vue.php:2646
8488
- msgid "%1$s&#37 of your visitors were between the ages of %2$s"
8489
  msgstr ""
8490
 
8491
- #. Translators: Number of visitors and number of pages.
8492
- #: languages/vue.php:2650
8493
- 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>"
8494
  msgstr ""
8495
 
8496
- #. Translators: Number of minutes spent on site.
8497
- #: languages/vue.php:2654
8498
- msgid "Each visitor spent an average of %s minutes on your website in 2019."
8499
  msgstr ""
8500
 
8501
- #. Translators: Name of device type.
8502
- #: languages/vue.php:2658
8503
- msgid "Most of your visitors viewed your website from their <strong>%s</strong> device."
8504
  msgstr ""
8505
 
8506
- #. Translators: Number of visitors and device percentage.
8507
- #: languages/vue.php:2662
8508
- msgid "%1$s&#37 of your visitors were on a %2$s device."
8509
  msgstr ""
8510
 
8511
- #: languages/vue.php:2665
8512
- msgid "Display Method"
 
8513
  msgstr ""
8514
 
8515
- #: languages/vue.php:2668
8516
- msgid "There are two ways to manual include the widget in your posts."
 
8517
  msgstr ""
8518
 
8519
- #: languages/vue.php:2672
8520
- msgid "Using the Gutenberg Block"
8521
  msgstr ""
8522
 
8523
- #: languages/vue.php:2675
8524
- msgid "Using the Shortcode"
8525
  msgstr ""
8526
 
8527
- #: languages/vue.php:2678
8528
- msgid "Learn how to insert the widget using Gutenberg blocks."
8529
  msgstr ""
8530
 
8531
- #: languages/vue.php:2681
8532
- msgid "Learn how to insert the widget using out Shortcode."
 
8533
  msgstr ""
8534
 
8535
- #: languages/vue.php:2684
8536
- msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg"
8537
  msgstr ""
8538
 
8539
- #: languages/vue.php:2688
8540
- msgid "%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page."
8541
  msgstr ""
8542
 
8543
- #: languages/vue.php:2691
8544
- msgid "%1$sStep 2%2$s - Search for “Inline Popular Posts by MonsterInsights”."
8545
  msgstr ""
8546
 
8547
- #: languages/vue.php:2695
8548
- msgid "%1$sStep 3%2$s - Style the widget using the Block Settings sidebar."
8549
  msgstr ""
8550
 
8551
- #: languages/vue.php:2698
8552
- msgid "Shortcode"
8553
  msgstr ""
8554
 
8555
- #: languages/vue.php:2702
8556
- msgid "Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin."
8557
  msgstr ""
8558
 
8559
- #: languages/vue.php:2706
8560
- msgid "Copy Shortcode"
8561
  msgstr ""
8562
 
8563
- #: languages/vue.php:2709
8564
- msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using our Shortcode"
8565
  msgstr ""
8566
 
8567
- #. Translators: Adds a link to documentation.
8568
- #: languages/vue.php:2713
8569
- msgid "In order for the MonsterInsights Google AMP addon to work properly, please ask your webmaster to install the WordPress AMP plugin by Automattic. %1$sLearn More%2$s"
8570
  msgstr ""
8571
 
8572
- #. Translators: Adds link to activate/install plugin and documentation.
8573
- #: languages/vue.php:2717
8574
- msgid "In order for the MonsterInsights 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"
8575
  msgstr ""
8576
 
8577
- #. Translators: Adds a link to documentation.
8578
- #: languages/vue.php:2721
8579
- msgid "In order for the MonsterInsights 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"
8580
  msgstr ""
8581
 
8582
- #. Translators: Adds link to activate/install plugin and documentation.
8583
- #: languages/vue.php:2725
8584
- msgid "In order for the MonsterInsights 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"
8585
  msgstr ""
8586
 
8587
- #: languages/vue.php:2728
8588
- msgid "Multiple Entries"
8589
  msgstr ""
8590
 
8591
- #: languages/vue.php:2731
8592
- msgid "Total Number of Widgets to Show"
8593
  msgstr ""
8594
 
8595
- #: languages/vue.php:2734
8596
- msgid "Choose how many widgets will be placed in a single Post."
8597
  msgstr ""
8598
 
8599
- #: languages/vue.php:2737
8600
- msgid "Minimum Distance Between Widgets"
8601
  msgstr ""
8602
 
8603
- #: languages/vue.php:2740
8604
- msgid "Choose the distance between widgets."
8605
  msgstr ""
8606
 
8607
- #: languages/vue.php:2743
8608
- msgid "Minimum Word Count to Display Multiple Widgets"
8609
  msgstr ""
8610
 
8611
- #: languages/vue.php:2746
8612
- msgid "Choose the minimum word count for a Post to have multiple entries."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8613
  msgstr ""
8614
 
8615
- #: languages/vue.php:2759
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8616
  msgid "Pro version is required"
8617
  msgstr ""
8618
 
8619
  #. Translators: Placeholder adds a link to the Custom Dimensions settings.
8620
- #: languages/vue.php:2763
8621
  msgid "Automatically add the top 5 Posts from the past 30 days to your Curated list of Posts using Custom Dimensions (Pro version required. %1$sUpgrade now%2$s)."
8622
  msgstr ""
8623
 
8624
- #: languages/vue.php:2767
8625
- msgid "Sartorial taxidermy venmo you probably haven't heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu."
8626
  msgstr ""
8627
 
8628
- #: languages/vue.php:2771
8629
- msgid "Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan"
8630
  msgstr ""
8631
 
8632
- #: languages/vue.php:2775
8633
- msgid "Icon"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8634
  msgstr ""
8635
 
8636
  #. Translators: Minimum and maximum number that can be used.
8637
- #: languages/vue.php:2779
8638
  msgid "Please enter a value between %1$s and %2$s"
8639
  msgstr ""
8640
 
8641
  #. Translators: The minimum set value.
8642
- #: languages/vue.php:2783
8643
  msgid "Please enter a value higher than %s"
8644
  msgstr ""
8645
 
8646
  #. Translators: The maximum set value.
8647
- #: languages/vue.php:2787
8648
  msgid "Please enter a value lower than %s"
8649
  msgstr ""
8650
 
8651
- #: languages/vue.php:2790
8652
  msgid "Please enter a number"
8653
  msgstr ""
8654
 
8655
- #: languages/vue.php:2793
8656
  msgid "Value has to be a round number"
8657
  msgstr ""
8658
 
8659
- #: languages/vue.php:2796
 
 
 
 
8660
  msgid "Automatic Placement"
8661
  msgstr ""
8662
 
8663
- #: languages/vue.php:2799
8664
  msgid "Display using Gutenberg Blocks"
8665
  msgstr ""
8666
 
8667
- #: languages/vue.php:2802
8668
  msgid "Embed Options"
8669
  msgstr ""
8670
 
8671
- #: languages/vue.php:2805
8672
  msgid "All Embed Options can be used in conjunction with one another."
8673
  msgstr ""
8674
 
8675
- #: languages/vue.php:2808
 
 
 
 
8676
  msgid "Using Automatic Embed"
8677
  msgstr ""
8678
 
8679
- #: languages/vue.php:2811
8680
  msgid "Learn how to insert the Popular Posts Widget into your posts and pages using Gutenberg Blocks. To style this widget, use the Gutenberg Block settings."
8681
  msgstr ""
8682
 
8683
- #: languages/vue.php:2814
8684
  msgid "Enabling Automatic Placement will include the Popular Posts Widget after the last paragraph of any and all posts that match your Behavior settings. To style this widget use the Customize Design panel above."
8685
  msgstr ""
8686
 
8687
- #: languages/vue.php:2817
8688
  msgid "Learn how to insert the Popular Posts Widget using a shortcode. To style this widget use the Customize Design panel above."
8689
  msgstr ""
8690
 
8691
- #: languages/vue.php:2820
8692
  msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using Gutenberg"
8693
  msgstr ""
8694
 
8695
- #: languages/vue.php:2823
 
 
 
 
8696
  msgid "%1$sStep 2%2$s - Search for “Popular Posts”."
8697
  msgstr ""
8698
 
8699
- #: languages/vue.php:2826
 
 
 
 
8700
  msgid "%1$sStep 1%2$s - Navigate to your Appearance > Widgets page using the menu on the left side your screen. Must be logged in as Admin."
8701
  msgstr ""
8702
 
8703
- #: languages/vue.php:2829
8704
  msgid "%1$sStep 2%2$s - On the left, under Available Widgets, look for the Popular Posts - MonsterInsights widget and drag it into the desired Sidebar on the right."
8705
  msgstr ""
8706
 
8707
- #: languages/vue.php:2832
8708
  msgid "%1$sStep 3%2$s - The widget options should automatically expand allowing you to customize the design."
8709
  msgstr ""
8710
 
8711
- #: languages/vue.php:2835
8712
  msgid "Display using a Shortcode"
8713
  msgstr ""
8714
 
8715
- #: languages/vue.php:2838
 
 
 
 
 
 
 
 
8716
  msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using our Shortcode"
8717
  msgstr ""
8718
 
8719
- #: languages/vue.php:2841
8720
  msgid "Enable Automatic Placement"
8721
  msgstr ""
8722
 
8723
- #: languages/vue.php:2844
8724
  msgid "Display in a Sidebar"
8725
  msgstr ""
8726
 
8727
- #: languages/vue.php:2847
8728
  msgid "Learn how to insert the Popular Posts Widget into a Sidebar. To style this widget use the Customize Design panel above."
8729
  msgstr ""
8730
 
8731
- #: languages/vue.php:2850
8732
  msgid "Watch Video - How to Add the Popular Posts widget using Widgets"
8733
  msgstr ""
8734
 
8735
- #: languages/vue.php:2853
8736
- msgid "Adjust the sample rate so you don't exceed Google Analytics' processing limit. Can also be used to enable Google Optimize for A/B testing and personalization."
8737
- msgstr ""
8738
-
8739
- #: languages/vue.php:2856
8740
- msgid "Our email summaries feature sends a weekly summary of the most important site analytics information."
8741
- msgstr ""
8742
-
8743
- #: languages/vue.php:2859
8744
- msgid "Download the analytics reports instantly from the WordPress dashboard as PDF files and share them with anyone."
8745
- msgstr ""
8746
-
8747
- #: languages/vue.php:2862
8748
- msgid "Allow usage tracking"
8749
- msgstr ""
8750
-
8751
- #: languages/vue.php:2865
8752
- msgid "Unlock with %s"
8753
- msgstr ""
8754
-
8755
- #. Translators: Error status and error text.
8756
- #: languages/vue.php:2869
8757
- msgid "Can't deactivate the license. Error: %1$s, %2$s"
8758
- msgstr ""
8759
-
8760
- #. Translators: Error status and error text.
8761
- #: languages/vue.php:2873
8762
- msgid "Can't upgrade to PRO please try again. Error: %1$s, %2$s"
8763
- msgstr ""
8764
-
8765
- #. Translators: Error status and error text.
8766
- #: languages/vue.php:2877
8767
- msgid "Can't load license details. Error: %1$s, %2$s"
8768
- msgstr ""
8769
-
8770
- #: languages/vue.php:2880
8771
- msgid "Error loading license details"
8772
  msgstr ""
8773
 
8774
- #. Translators: Error status and error text.
8775
- #: languages/vue.php:2884
8776
- msgid "Can't verify the license. Error: %1$s, %2$s"
8777
  msgstr ""
8778
 
8779
- #. Translators: Error status and error text.
8780
- #: languages/vue.php:2888
8781
- msgid "Can't validate the license. Error: %1$s, %2$s"
8782
  msgstr ""
8783
 
8784
- #: languages/vue.php:2891
8785
- msgid "Facebook Instant Articles"
8786
  msgstr ""
8787
 
8788
- #: languages/vue.php:2894
8789
- msgid "Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to MonsterInsights Pro."
8790
  msgstr ""
8791
 
8792
- #: languages/vue.php:2897
8793
- msgid "Ads Tracking"
8794
  msgstr ""
8795
 
8796
- #: languages/vue.php:2900
8797
- msgid "Add Ads tracking to see who's clicking on your Google Ads, so you can increase your revenue."
8798
  msgstr ""
8799
 
8800
- #: languages/vue.php:2903
8801
- msgid "Want to use track users visiting your AMP pages? By upgrading to MonsterInsights Pro, you can enable AMP page tracking."
8802
  msgstr ""
8803
 
8804
- #: languages/vue.php:2906
8805
- msgid "Export PDF Report"
8806
  msgstr ""
8807
 
8808
- #: languages/vue.php:2909
8809
- msgid "You can export PDF reports only in the PRO version."
8810
  msgstr ""
8811
 
8812
- #. Translators: Make text green.
8813
- #: languages/vue.php:2913
8814
- msgid "Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s"
8815
  msgstr ""
8816
 
8817
- #: languages/vue.php:2916
8818
- msgid "Upgrade to MonsterInsights Pro to Unlock More Actionable Insights"
8819
  msgstr ""
8820
 
8821
- #: languages/vue.php:2919
8822
- msgid "It's easy to double your traffic and sales when you know exactly how people find and use your website. MonsterInsights Pro shows you the stats that matter!"
8823
  msgstr ""
8824
 
8825
- #: languages/vue.php:2922
8826
- msgid "Upgrade to MonsterInsights Pro and Save 50% OFF!"
8827
  msgstr ""
8828
 
8829
- #. Translators: Makes text bold.
8830
- #: languages/vue.php:2926
8831
- msgid "Use coupon code %1$sLITEUPGRADE%2$s"
8832
  msgstr ""
8833
 
8834
- #. Translators: Placeholder adds a line break.
8835
- #: languages/vue.php:2930
8836
- msgid "You can customize your %sdate range only in the PRO version."
8837
  msgstr ""
8838
 
8839
- #: languages/vue.php:2933
8840
- msgid "You appear to be offline. WPForms not installed."
8841
  msgstr ""
8842
 
8843
- #. Translators: Error status and error text.
8844
- #: languages/vue.php:2937
8845
- msgid "Can't activate addon. Error: %1$s, %2$s"
8846
  msgstr ""
8847
 
8848
- #: languages/vue.php:2940
8849
- msgid "You appear to be offline. Addon not activated."
8850
  msgstr ""
8851
 
8852
- #. Translators: Error status and error text.
8853
- #: languages/vue.php:2944
8854
- msgid "Can't deactivate addon. Error: %1$s, %2$s"
8855
  msgstr ""
8856
 
8857
- #: languages/vue.php:2947
8858
- msgid "You appear to be offline. Addon not deactivated."
8859
  msgstr ""
8860
 
8861
- #. Translators: Error status and error text.
8862
- #: languages/vue.php:2951
8863
- msgid "Can't install plugin. Error: %1$s, %2$s"
8864
  msgstr ""
8865
 
8866
- #: languages/vue.php:2954
8867
- msgid "You appear to be offline. Plugin not installed."
8868
  msgstr ""
8869
 
8870
- #. Translators: Error status and error text.
8871
- #: languages/vue.php:2958
8872
- msgid "Can't install addon. Error: %1$s, %2$s"
8873
  msgstr ""
8874
 
8875
- #: languages/vue.php:2961
8876
- msgid "You appear to be offline. Addon not installed."
8877
  msgstr ""
8878
 
8879
- #. Translators: Error status and error text.
8880
- #: languages/vue.php:2965
8881
- msgid "Can't install WPForms. Error: %1$s, %2$s"
8882
  msgstr ""
8883
 
8884
- #. Translators: Error status and error text.
8885
- #: languages/vue.php:2969
8886
- msgid "Can't deauthenticate. Error: %1$s, %2$s"
8887
  msgstr ""
8888
 
8889
- #: languages/vue.php:2972
8890
- msgid "You appear to be offline. Settings not saved."
8891
  msgstr ""
8892
 
8893
- #. Translators: Error status and error text.
8894
- #: languages/vue.php:2976
8895
- msgid "Can't load authentication details. Error: %1$s, %2$s"
8896
  msgstr ""
8897
 
8898
- #. Translators: Error status and error text.
8899
- #: languages/vue.php:2980
8900
- msgid "Can't authenticate. Error: %1$s, %2$s"
8901
  msgstr ""
8902
 
8903
- #. Translators: Error status and error text.
8904
- #: languages/vue.php:2984
8905
- msgid "Can't reauthenticate. Error: %1$s, %2$s"
8906
  msgstr ""
8907
 
8908
- #. Translators: Error status and error text.
8909
- #: languages/vue.php:2988
8910
- msgid "Can't verify credentials. Error: %1$s, %2$s"
8911
  msgstr ""
8912
 
8913
  #: googleanalytics.php:275
2
  # This file is distributed under the same license as the Google Analytics for WordPress by MonsterInsights plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Google Analytics for WordPress by MonsterInsights 7.13.2\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/google-analytics-for-wordpress\n"
7
  "Last-Translator: MonsterInsights Team <support@monsterinsights.com>\n"
8
  "Language-Team: MonsterInsights Team <support@monsterinsights.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2020-11-24T10:07:02+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.2.0\n"
15
  "X-Domain: google-analytics-for-wordpress\n"
78
  msgstr ""
79
 
80
  #: lite/includes/popular-posts/class-popular-posts-widget-sidebar.php:258
81
+ #: languages/vue.php:2501
82
  msgid "Theme Preview"
83
  msgstr ""
84
 
155
  msgstr ""
156
 
157
  #: lite/includes/admin/wp-site-health.php:253
158
+ #: languages/vue.php:1877
159
  msgid "View Reports"
160
  msgstr ""
161
 
232
  #: lite/includes/admin/wp-site-health.php:372
233
  #: lite/includes/admin/wp-site-health.php:398
234
  #: lite/includes/admin/wp-site-health.php:425
235
+ #: languages/vue.php:833
236
  msgid "View Addons"
237
  msgstr ""
238
 
365
  msgstr ""
366
 
367
  #: lite/includes/admin/helpers.php:83
368
+ #: languages/vue.php:1155
369
  msgid "Upgrade to MonsterInsights Pro"
370
  msgstr ""
371
 
384
  msgstr ""
385
 
386
  #: lite/includes/admin/reports/report-queries.php:22
387
+ #: languages/vue.php:322
388
  msgid "Search Console"
389
  msgstr ""
390
 
391
  #: lite/includes/admin/reports/report-ecommerce.php:22
392
+ #: languages/vue.php:319
393
  msgid "eCommerce"
394
  msgstr ""
395
 
402
  msgstr ""
403
 
404
  #: lite/includes/admin/reports/report-publisher.php:22
405
+ #: languages/vue.php:316
406
  msgid "Publishers"
407
  msgstr ""
408
 
409
  #: lite/includes/admin/reports/report-dimensions.php:22
410
+ #: languages/vue.php:325
411
  msgid "Dimensions"
412
  msgstr ""
413
 
414
  #: lite/includes/admin/reports/report-forms.php:22
415
+ #: languages/vue.php:328
416
  msgid "Forms"
417
  msgstr ""
418
 
419
  #: lite/includes/admin/welcome.php:56
420
  #: lite/includes/admin/welcome.php:57
421
+ #: languages/vue.php:683
422
  msgid "Welcome to MonsterInsights"
423
  msgstr ""
424
 
671
  msgstr ""
672
 
673
  #: includes/gutenberg/headline-tool/headline-tool.php:302
674
+ #: languages/vue.php:1772
675
  msgid "General"
676
  msgstr ""
677
 
2953
  msgid "%s Days"
2954
  msgstr ""
2955
 
2956
+ #: includes/admin/notification-event.php:308
2957
  #: includes/admin/routes.php:614
2958
  #: includes/admin/routes.php:948
2959
  msgid "You don't have permission to view MonsterInsights reports."
3165
  msgstr ""
3166
 
3167
  #: includes/admin/common.php:869
3168
+ #: languages/vue.php:1183
3169
  msgid "Your 2019 Analytics Report"
3170
  msgstr ""
3171
 
3172
  #: includes/admin/common.php:875
3173
+ #: languages/vue.php:1186
3174
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2020!"
3175
  msgstr ""
3176
 
3182
  #: includes/admin/admin.php:37
3183
  #: includes/admin/admin.php:45
3184
  #: includes/admin/admin.php:94
3185
+ #: languages/vue.php:249
3186
  msgid "Insights"
3187
  msgstr ""
3188
 
3189
  #: includes/admin/admin.php:34
3190
  #: includes/admin/admin.php:42
3191
  #: includes/admin/admin.php:188
3192
+ #: languages/vue.php:1769
3193
  msgid "Settings"
3194
  msgstr ""
3195
 
3205
 
3206
  #: includes/admin/admin.php:39
3207
  #: includes/admin/admin.php:98
3208
+ #: languages/vue.php:2114
3209
  msgid "Reports"
3210
  msgstr ""
3211
 
3243
 
3244
  #: includes/admin/admin.php:63
3245
  #: includes/admin/admin.php:106
3246
+ #: languages/vue.php:252
3247
  msgid "About Us"
3248
  msgstr ""
3249
 
3270
  #: includes/admin/notifications/notification-upgrade-for-email-summaries.php:33
3271
  #: includes/admin/notifications/notification-upgrade-for-search-console.php:33
3272
  #: includes/admin/notifications/notification-upgrade-for-form-conversion.php:33
3273
+ #: includes/admin/reports/abstract-report.php:386
3274
  msgid "Get MonsterInsights Pro"
3275
  msgstr ""
3276
 
3277
  #: includes/admin/admin.php:178
3278
  #: includes/admin/admin.php:181
3279
+ #: languages/vue.php:498
3280
  msgid "Support"
3281
  msgstr ""
3282
 
3286
  msgstr ""
3287
 
3288
  #: includes/admin/admin.php:284
3289
+ #: languages/vue.php:373
3290
  msgid "Please Setup Website Analytics to See Audience Insights"
3291
  msgstr ""
3292
 
3293
  #: includes/admin/admin.php:285
3294
+ #: languages/vue.php:379
3295
  msgid "Connect MonsterInsights and Setup Website Analytics"
3296
  msgstr ""
3297
 
3298
  #: includes/admin/admin.php:287
3299
+ #: includes/admin/notifications/notification-mobile-device.php:43
3300
+ #: includes/admin/notifications/notification-returning-visitors.php:44
3301
+ #: includes/admin/notifications/notification-traffic-dropping.php:39
3302
+ #: includes/admin/notifications/notification-bounce-rate.php:43
3303
  #: includes/admin/notifications/notification-headline-analyzer.php:30
3304
+ #: includes/admin/notifications/notification-audience.php:95
3305
+ #: languages/vue.php:382
3306
  msgid "Learn More"
3307
  msgstr ""
3308
 
3309
  #: includes/admin/admin.php:289
3310
+ #: languages/vue.php:376
3311
  msgid "MonsterInsights, WordPress analytics plugin, helps you connect your website with Google Analytics, so you can see how people find and use your website. Over 2 million website owners use MonsterInsights to see the stats that matter and grow their business."
3312
  msgstr ""
3313
 
3318
 
3319
  #. Translators: Adds a link to the license renewal.
3320
  #: includes/admin/admin.php:310
3321
+ #: languages/vue.php:1822
3322
  msgid "Your license key for MonsterInsights has expired. %1$sPlease click here to renew your license key.%2$s"
3323
  msgstr ""
3324
 
3325
  #: includes/admin/admin.php:312
3326
+ #: languages/vue.php:1825
3327
  msgid "Your license key for MonsterInsights has been disabled. Please use a different key."
3328
  msgstr ""
3329
 
3330
  #: includes/admin/admin.php:314
3331
+ #: languages/vue.php:1828
3332
  msgid "Your license key for MonsterInsights is invalid. The key no longer exists or the user associated with the key has been deleted. Please use a different key."
3333
  msgstr ""
3334
 
3423
  msgstr ""
3424
 
3425
  #. Translators: Mobile device notification title
3426
+ #: includes/admin/notifications/notification-mobile-device.php:33
3427
  msgid "Traffic from Mobile Devices is %s%%"
3428
  msgstr ""
3429
 
3430
  #. Translators: Mobile device notification content
3431
+ #: includes/admin/notifications/notification-mobile-device.php:35
3432
  msgid "Traffic from mobile devices is considerably lower on your site compared to desktop devices. This could be an indicator that your site is not optimised for mobile devices.<br><br>Take a look now at %show your site looks%s on mobile and make sure all your content can be accessed correctly."
3433
  msgstr ""
3434
 
3435
+ #: includes/admin/notifications/notification-mobile-device.php:39
3436
+ #: includes/admin/notifications/notification-returning-visitors.php:40
3437
+ #: includes/admin/notifications/notification-traffic-dropping.php:43
3438
+ #: includes/admin/notifications/notification-visitors.php:48
3439
+ #: includes/admin/notifications/notification-bounce-rate.php:39
3440
+ #: includes/admin/notifications/notification-audience.php:91
3441
  msgid "View Report"
3442
  msgstr ""
3443
 
3444
  #. Translators: Returning visitors notification title
3445
+ #: includes/admin/notifications/notification-returning-visitors.php:34
3446
  msgid "Only %s%% of your visitors return to your site"
3447
  msgstr ""
3448
 
3449
  #. Translators: Returning visitors notification content
3450
+ #: includes/admin/notifications/notification-returning-visitors.php:36
3451
  msgid "For any website, returning visitors are important because they indicate how successful your marketing campaigns are, who are your loyal customers, and how powerful your brand is. %sIn this article%s, we’ll show you 7 proven ways to increase your returning visitor rate."
3452
  msgstr ""
3453
 
3460
  msgid "Wouldn’t it be easy if you could get your website’s performance report in your email inbox every week? With our new feature, Email Summaries, you can now view all your important stats in a simple report that’s delivered straight to your inbox. <br><br>You get an overview of your site's performance without logging in to WordPress or going through different Analytics reports. %sUpgrade to MonsterInsights Pro%s to enable the Email Summaries feature."
3461
  msgstr ""
3462
 
3463
+ #: includes/admin/notifications/notification-traffic-dropping.php:33
3464
  msgid "Your Website Traffic Is Dropping"
3465
  msgstr ""
3466
 
3467
  #. Translators: Traffic dropping notification content
3468
+ #: includes/admin/notifications/notification-traffic-dropping.php:35
3469
  msgid "Your website traffic is decreasing and that’s a reason to take action now. Less traffic means less opportunities to make your brand known, make relationships and ultimately sell your service or product. <br><br>Follow the marketing hacks of %sthis article%s to start growing your traffic again."
3470
  msgstr ""
3471
 
3472
  #. Translators: visitors notification title
3473
  #. Translators: Number of visitors.
3474
+ #: includes/admin/notifications/notification-visitors.php:42
3475
+ #: languages/vue.php:239
3476
  msgid "See how %s visitors found your site!"
3477
  msgstr ""
3478
 
3479
  #. Translators: visitors notification content
3480
+ #: includes/admin/notifications/notification-visitors.php:44
3481
  msgid "Your website has been visited by %s visitors in the past 30 days. Click the button below to view the full analytics report."
3482
  msgstr ""
3483
 
3512
  msgid "Forms are one of the most important points of interaction on your website. When a visitor fills out a form on your site, they’re taking the next step in their customer journey. That’s why it’s so crucial that your WordPress forms are optimized for conversions. Upgrade to %sMonsterInsights Pro%s to track %sform conversions in Google Analytics.%s"
3513
  msgstr ""
3514
 
3515
+ #: includes/admin/notifications/notification-bounce-rate.php:33
3516
  msgid "Your website bounce rate is higher than 70%"
3517
  msgstr ""
3518
 
3519
  #. Translators: Bounce rate notification content
3520
+ #: includes/admin/notifications/notification-bounce-rate.php:35
3521
  msgid "Your website bounce rate is %s. High bounce rates can hurt your site’s conversions rates. A high bounce rate might mean that people aren’t finding what they’re looking for on your site. %sHere%s are some points to remember and steps to follow to get your bounce rates back to manageable levels."
3522
  msgstr ""
3523
 
3531
  msgstr ""
3532
 
3533
  #. Translators: Audience notification title
3534
+ #: includes/admin/notifications/notification-audience.php:85
3535
  msgid "%s%% of your Audience is from %s"
3536
  msgstr ""
3537
 
3538
  #. Translators: Audience notification content
3539
+ #: includes/admin/notifications/notification-audience.php:87
3540
  msgid "Is your site properly translated? By adding translated content specific to your audience you could gain big boosts in pageviews, time spent on page and a reduced bounce rate.<br><br>If you need help choosing a translation plugin to get you started take a look at %sthis article%s for the best options available."
3541
  msgstr ""
3542
 
3563
  msgstr ""
3564
 
3565
  #: includes/admin/notifications/notification-upgrade-to-pro.php:34
3566
+ #: languages/vue.php:1647
3567
  msgid "Upgrade to Pro"
3568
  msgstr ""
3569
 
3570
  #: includes/admin/reports/overview.php:34
3571
+ #: languages/vue.php:313
3572
  msgid "Overview"
3573
  msgstr ""
3574
 
3575
+ #: includes/admin/reports/abstract-report.php:55
3576
  msgid "Access denied"
3577
  msgstr ""
3578
 
3579
  #. Translators: Placeholders add a link to the settings panel.
3580
+ #: includes/admin/reports/abstract-report.php:62
3581
  msgid "Please %1$senable the dashboard%2$s to see report data."
3582
  msgstr ""
3583
 
3584
+ #: includes/admin/reports/abstract-report.php:64
3585
  msgid "The dashboard is disabled."
3586
  msgstr ""
3587
 
3588
  #. Translators: Placeholders add a link to the settings panel.
3589
+ #: includes/admin/reports/abstract-report.php:72
3590
  msgid "You do not have an active license. Please %1$scheck your license configuration.%2$s"
3591
  msgstr ""
3592
 
3593
  #. Translators: Placeholders add a link to the settings panel.
3594
+ #: includes/admin/reports/abstract-report.php:82
3595
  msgid "Please %1$sauthenticate %2$swith Google Analytics to allow the plugin to fetch data."
3596
  msgstr ""
3597
 
3598
+ #: includes/admin/reports/abstract-report.php:84
3599
  msgid "The Google oAuth authentication needs to be re-authenticated to view data."
3600
  msgstr ""
3601
 
3602
+ #: includes/admin/reports/abstract-report.php:111
3603
  msgid "No data found"
3604
  msgstr ""
3605
 
3606
+ #: includes/admin/reports/abstract-report.php:157
3607
  msgid "Invalid date range."
3608
  msgstr ""
3609
 
3610
+ #: includes/admin/reports/abstract-report.php:266
3611
  msgid "You must authenticate with MonsterInsights to use reports."
3612
  msgstr ""
3613
 
3614
  #. Translators: Placeholders add the license level and the report title.
3615
+ #: includes/admin/reports/abstract-report.php:316
3616
  msgid "You currently have a %1$s level license, but this report requires at least a %2$s level license to view the %3$s. Please upgrade to view this report."
3617
  msgstr ""
3618
 
3619
+ #: includes/admin/reports/abstract-report.php:328
3620
  msgid "Ready to Get Analytics Super-Powers?"
3621
  msgstr ""
3622
 
3623
+ #: includes/admin/reports/abstract-report.php:330
3624
  msgid "(And Crush Your Competition?)"
3625
  msgstr ""
3626
 
3627
  #. Translators: License level and smiley.
3628
+ #: includes/admin/reports/abstract-report.php:336
3629
  msgid "Hey there! It looks like you've got the %1$s license installed on your site. That's awesome! %s"
3630
  msgstr ""
3631
 
3632
  #. Translators: Placeholders add the report title and license level.
3633
+ #: includes/admin/reports/abstract-report.php:343
3634
  msgid "Do you want to access to %1$s reporting right now%2$s in your WordPress Dashboard? That comes with the %3$s level%4$s of our paid packages. You'll need to upgrade your license to get instant access."
3635
  msgstr ""
3636
 
3637
  #. Translators: Placeholdes add links to the account area and a guide.
3638
+ #: includes/admin/reports/abstract-report.php:350
3639
  msgid "It's easy! To upgrade, navigate to %1$sMy Account%2$s on MonsterInsights.com, go to the licenses tab, and click upgrade. We also have a %3$sstep by step guide%4$s with pictures of this process."
3640
  msgstr ""
3641
 
3642
+ #: includes/admin/reports/abstract-report.php:354
3643
+ #: includes/admin/reports/abstract-report.php:377
3644
  msgid "If you have any questions, don't hesitate to reach out. We're here to help."
3645
  msgstr ""
3646
 
3647
  #. Translators: Placeholder adds a smiley face.
3648
+ #: includes/admin/reports/abstract-report.php:359
3649
  msgid "Hey there! %s It looks like you've got the free version of MonsterInsights installed on your site. That's awesome!"
3650
  msgstr ""
3651
 
3652
  #. Translators: Placeholders make the text bold, add the license level and add a link to upgrade.
3653
+ #: includes/admin/reports/abstract-report.php:366
3654
  msgid "Do you you want to access to %1$s reporting right now%2$s in your WordPress Dashboard? That comes with %3$s level%4$s of our paid packages. To get instant access, you'll want to buy a MonsterInsights license, which also gives you access to powerful addons, expanded reporting (including the ability to use custom date ranges), comprehensive tracking features (like UserID tracking) and access to our world-class support team."
3655
  msgstr ""
3656
 
3657
  #. Translators: Placeholders make the text bold, add the license level and add a link to upgrade.
3658
+ #: includes/admin/reports/abstract-report.php:373
3659
  msgid "Upgrading is easy! To upgrade, navigate to %1$ssour pricing page%2$s, purchase the required license, and then follow the %3$sinstructions in the email receipt%4$s to upgrade. It only takes a few minutes to unlock the most powerful, yet easy to use analytics tracking system for WordPress."
3660
  msgstr ""
3661
 
3662
+ #: includes/admin/reports/abstract-report.php:383
3663
+ #: languages/vue.php:714
3664
  msgid "Upgrade Now"
3665
  msgstr ""
3666
 
3667
+ #: includes/admin/reports/abstract-report.php:420
3668
  msgid "Please ask your webmaster to enable this addon."
3669
  msgstr ""
3670
 
4855
  msgstr ""
4856
 
4857
  #: languages/gutenberg.php:77
4858
+ #: languages/vue.php:1760
4859
  msgid "Inline Popular Posts"
4860
  msgstr ""
4861
 
4892
  msgstr ""
4893
 
4894
  #: languages/gutenberg.php:107
4895
+ #: languages/vue.php:2537
4896
  msgid "Wide-Layout Options"
4897
  msgstr ""
4898
 
4901
  msgstr ""
4902
 
4903
  #: languages/gutenberg.php:113
4904
+ #: languages/vue.php:2540
4905
  msgid "Adjust the number of columns displayed when the widget is placed in a wide container."
4906
  msgstr ""
4907
 
4908
  #: languages/gutenberg.php:116
4909
+ #: languages/vue.php:2561
4910
  msgid "Post Count"
4911
  msgstr ""
4912
 
4915
  msgstr ""
4916
 
4917
  #: languages/gutenberg.php:122
4918
+ #: languages/vue.php:2543
4919
  msgid "Display Options"
4920
  msgstr ""
4921
 
4928
  msgstr ""
4929
 
4930
  #: languages/gutenberg.php:131
4931
+ #: languages/vue.php:2189
4932
  msgid "Widget Title"
4933
  msgstr ""
4934
 
4937
  msgstr ""
4938
 
4939
  #: languages/gutenberg.php:137
4940
+ #: languages/vue.php:2549
4941
  msgid "Display Author"
4942
  msgstr ""
4943
 
4944
  #: languages/gutenberg.php:140
4945
+ #: languages/vue.php:2552
4946
  msgid "Display Date"
4947
  msgstr ""
4948
 
4949
  #: languages/gutenberg.php:143
4950
+ #: languages/vue.php:2555
4951
  msgid "Display Comments"
4952
  msgstr ""
4953
 
5168
  msgstr ""
5169
 
5170
  #: languages/gutenberg.php:312
5171
+ #: languages/vue.php:1971
5172
  msgid "Headline Analyzer"
5173
  msgstr ""
5174
 
5189
  msgstr ""
5190
 
5191
  #: languages/vue.php:11
5192
+ msgid "Loading Settings"
5193
  msgstr ""
5194
 
5195
  #: languages/vue.php:14
5196
+ msgid "Saving Changes..."
5197
  msgstr ""
5198
 
5199
  #: languages/vue.php:17
5200
+ msgid "Settings Updated"
 
 
 
 
5201
  msgstr ""
5202
 
5203
+ #. Translators: Adds a link to the settings panel.
5204
+ #: languages/vue.php:21
5205
+ msgid "You need to %1$sconnect MonsterInsights%2$s first"
5206
  msgstr ""
5207
 
5208
+ #: languages/vue.php:24
5209
+ msgid "Could Not Save Changes"
5210
  msgstr ""
5211
 
5212
+ #: languages/vue.php:27
5213
+ msgid "Loading new report data"
5214
  msgstr ""
5215
 
5216
+ #: languages/vue.php:31
5217
+ msgid "Please wait..."
5218
  msgstr ""
5219
 
5220
+ #. Translators: Adds an arrow icon.
5221
  #: languages/vue.php:35
5222
+ msgid "Continue %s"
 
 
 
 
5223
  msgstr ""
5224
 
5225
  #: languages/vue.php:41
5226
+ msgid "Error"
5227
  msgstr ""
5228
 
5229
  #: languages/vue.php:44
5230
+ msgid "Please try again."
5231
  msgstr ""
5232
 
5233
  #: languages/vue.php:47
5234
+ msgid "Unlock the Publishers Report and Focus on the Content that Matters"
5235
  msgstr ""
5236
 
5237
  #: languages/vue.php:50
5238
+ msgid "Stop guessing about what content your visitors are interested in. MonsterInsights Publisher Report shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions."
5239
  msgstr ""
5240
 
5241
  #: languages/vue.php:53
5242
+ msgid "Unlock the Publishers Report and Focus on the Content That Matters"
5243
  msgstr ""
5244
 
5245
  #: languages/vue.php:56
5246
+ 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."
5247
  msgstr ""
5248
 
5249
  #: languages/vue.php:59
5250
+ msgid "Unlock the eCommerce Report and See Your Important Store Metrics"
5251
  msgstr ""
5252
 
5253
  #: languages/vue.php:62
5254
+ msgid "Increase your sales & revenue with insights. MonsterInsights answers all your top eCommerce questions using metrics like total revenue, conversion rate, average order value, top products, top referral sources and more."
5255
  msgstr ""
5256
 
5257
  #: languages/vue.php:65
5258
+ msgid "Unlock the Dimensions Report and Track Your Own Custom Data"
5259
  msgstr ""
5260
 
5261
  #: languages/vue.php:68
5262
+ 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."
5263
  msgstr ""
5264
 
5265
  #: languages/vue.php:71
5266
+ msgid "Unlock the Forms Report and Improve Conversions"
5267
  msgstr ""
5268
 
5269
  #: languages/vue.php:74
5270
+ 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."
5271
  msgstr ""
5272
 
5273
  #: languages/vue.php:77
5274
+ msgid "Unlock the Search Console Report and See How People Find Your Website"
5275
  msgstr ""
5276
 
5277
  #: languages/vue.php:80
5278
+ msgid "See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more."
5279
  msgstr ""
5280
 
5281
  #: languages/vue.php:83
5282
+ msgid "Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time"
5283
  msgstr ""
5284
 
5285
  #: languages/vue.php:86
5286
+ 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."
5287
  msgstr ""
5288
 
5289
  #: languages/vue.php:89
5290
+ msgid "Today"
5291
  msgstr ""
5292
 
5293
  #: languages/vue.php:92
5294
+ msgid "Yesterday"
5295
  msgstr ""
5296
 
5297
  #: languages/vue.php:95
5298
+ msgid "Last Week"
5299
  msgstr ""
5300
 
5301
  #: languages/vue.php:98
5302
+ msgid "Last Month"
5303
  msgstr ""
5304
 
5305
  #: languages/vue.php:101
5306
+ msgid "Last 7 days"
5307
  msgstr ""
5308
 
5309
+ #: languages/vue.php:105
5310
+ msgid "Last 30 days"
5311
  msgstr ""
5312
 
5313
+ #: languages/vue.php:108
5314
+ msgid "Refreshing Report"
5315
  msgstr ""
5316
 
5317
+ #: languages/vue.php:111
5318
+ msgid "Loading new report data..."
5319
  msgstr ""
5320
 
5321
+ #: languages/vue.php:114
5322
+ msgid "See Your Top Landing Pages to Improve Enagement"
5323
  msgstr ""
5324
 
5325
+ #: languages/vue.php:117
5326
+ msgid "See Your Top Exit Pages to Reduce Abandonment"
5327
  msgstr ""
5328
 
5329
+ #: languages/vue.php:120
5330
+ msgid "See Your Top Outbound Links to Find New Revenue Opportunities"
5331
  msgstr ""
5332
 
5333
+ #: languages/vue.php:123
5334
+ msgid "See Your Top Affiliate Links and Focus on what's working"
5335
  msgstr ""
5336
 
5337
+ #: languages/vue.php:126
5338
+ msgid "See Your Top Downloads and Improve Conversions"
5339
  msgstr ""
5340
 
5341
+ #: languages/vue.php:129
5342
+ msgid "See Audience Demographic Report ( Age / Gender / Interests )"
5343
  msgstr ""
5344
 
5345
+ #: languages/vue.php:132
5346
+ msgid "See Your Conversion Rate to Improve Funnel"
5347
  msgstr ""
5348
 
5349
+ #: languages/vue.php:135
5350
+ msgid "See The Number of Transactions and Make Data-Driven Decisions"
5351
  msgstr ""
5352
 
5353
+ #: languages/vue.php:138
5354
+ msgid "See The Total Revenue to Track Growth"
5355
  msgstr ""
5356
 
5357
+ #: languages/vue.php:141
5358
+ msgid "See Average Order Value to Find Offer Opportunities"
5359
  msgstr ""
5360
 
5361
+ #: languages/vue.php:144
5362
+ msgid "See Your Top Products to See Individual Performance"
5363
  msgstr ""
5364
 
5365
+ #: languages/vue.php:147
5366
+ msgid "See Your Top Conversion Sources and Focus on what's working"
5367
  msgstr ""
5368
 
5369
+ #: languages/vue.php:150
5370
+ msgid "See The Time it takes for Customers to Purchase"
5371
  msgstr ""
5372
 
5373
+ #: languages/vue.php:153
5374
+ msgid "See How Many Sessions are needed for a Purchase"
5375
  msgstr ""
5376
 
5377
+ #: languages/vue.php:156
5378
+ msgid "See Which Authors Generate the Most Traffic"
5379
  msgstr ""
5380
 
5381
+ #: languages/vue.php:159
5382
+ msgid "See Which Post Types Perform Better"
5383
  msgstr ""
5384
 
5385
+ #: languages/vue.php:162
5386
+ msgid "See Which Categories are the Most Popular"
5387
  msgstr ""
5388
 
5389
+ #: languages/vue.php:165
5390
+ msgid "See Your Blog's most popular SEO Scores"
5391
  msgstr ""
5392
 
5393
+ #: languages/vue.php:168
5394
+ msgid "See Which Focus Keyword is Performing Better in Search Engines"
5395
  msgstr ""
5396
 
5397
+ #: languages/vue.php:171
5398
+ msgid "See Reports for Any Contact Form Plugin or Sign-up Form"
5399
  msgstr ""
5400
 
5401
+ #: languages/vue.php:174
5402
+ msgid "See Your Top Converting Forms and Optimize"
5403
  msgstr ""
5404
 
5405
+ #: languages/vue.php:177
5406
+ msgid "See Your Forms Impressions Count to Find the Best Placement"
5407
  msgstr ""
5408
 
5409
+ #: languages/vue.php:180
5410
+ msgid "See Your Top Google Search Terms and Optimize Content"
5411
  msgstr ""
5412
 
5413
+ #: languages/vue.php:183
5414
+ msgid "See The Number of Clicks and Track Interests"
 
5415
  msgstr ""
5416
 
5417
+ #: languages/vue.php:186
5418
+ msgid "See The Click-Through-Ratio and Improve SEO"
5419
  msgstr ""
5420
 
5421
+ #: languages/vue.php:189
5422
+ msgid "See The Average Results Position and Focus on what works"
5423
  msgstr ""
5424
 
5425
+ #: languages/vue.php:192
5426
+ msgid "See Your Active Visitors and Track Their Behaviour to Optimize"
 
5427
  msgstr ""
5428
 
5429
+ #: languages/vue.php:195
5430
+ msgid "See Your Top Pages Immediately After Making Changes"
5431
  msgstr ""
5432
 
5433
+ #: languages/vue.php:198
5434
+ msgid "See Your Top Referral Sources and Adapt Faster"
5435
  msgstr ""
5436
 
5437
+ #: languages/vue.php:201
5438
+ msgid "See Your Traffic Demographics and "
5439
  msgstr ""
5440
 
5441
+ #: languages/vue.php:204
5442
+ msgid "Get Fresh Reports Data Every 60 Seconds"
5443
  msgstr ""
5444
 
5445
+ #: languages/vue.php:207
5446
+ msgid "Loading settings"
5447
  msgstr ""
5448
 
5449
+ #. Translators: Current PHP version and recommended PHP version.
5450
+ #: languages/vue.php:211
5451
+ msgid "MonsterInsights has detected that your site is running an outdated, insecure version of PHP (%1$s), which could be putting your site at risk for being hacked. WordPress stopped supporting your PHP version in April, 2019. Updating to the recommended version (PHP %2$s) only takes a few minutes and will make your website significantly faster and more secure."
5452
  msgstr ""
5453
 
5454
+ #. Translators: Current WordPress version.
5455
+ #: languages/vue.php:215
5456
+ msgid "MonsterInsights has detected that your site is running an outdated version of WordPress (%s). MonsterInsights will stop supporting WordPress versions lower than 4.9 in 2020. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
5457
  msgstr ""
5458
 
5459
+ #: languages/vue.php:218
5460
+ msgid "Yikes! PHP Update Required"
5461
  msgstr ""
5462
 
5463
+ #. Translators: Current PHP version and recommended PHP version.
5464
+ #: languages/vue.php:222
5465
+ msgid "MonsterInsights has detected that your site is running an outdated, insecure version of PHP (%1$s), which could be putting your site at risk for being hacked. Updating to the recommended version (PHP %2$s) only takes a few minutes and will make your website significantly faster and more secure."
5466
  msgstr ""
5467
 
5468
+ #: languages/vue.php:225
5469
+ msgid "Learn more about updating PHP"
5470
  msgstr ""
5471
 
5472
+ #: languages/vue.php:228
5473
+ msgid "Yikes! WordPress Update Required"
5474
  msgstr ""
5475
 
5476
+ #. Translators: Current WordPress version.
5477
+ #: languages/vue.php:232
5478
+ msgid "MonsterInsights has detected that your site is running an outdated version of WordPress (%s). Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
5479
  msgstr ""
5480
 
5481
+ #: languages/vue.php:235
5482
+ msgid "Learn more about updating WordPress"
5483
  msgstr ""
5484
 
5485
+ #. Translators: Number of visitors.
5486
+ #: languages/vue.php:243
5487
+ msgid "Your website was visited by %s users in the last 30 days."
5488
  msgstr ""
5489
 
5490
+ #: languages/vue.php:246
5491
+ msgid "See the full analytics report!"
5492
  msgstr ""
5493
 
5494
+ #: languages/vue.php:255
5495
+ msgid "Getting Started"
5496
  msgstr ""
5497
 
5498
  #: languages/vue.php:259
5499
+ msgid "Lite vs Pro"
 
 
 
 
5500
  msgstr ""
5501
 
5502
+ #: languages/vue.php:264
5503
+ msgid "Overview Report"
5504
  msgstr ""
5505
 
5506
+ #: languages/vue.php:267
5507
+ msgid "Publishers Report"
5508
  msgstr ""
5509
 
5510
+ #: languages/vue.php:270
5511
+ msgid "eCommerce Report"
5512
  msgstr ""
5513
 
5514
  #: languages/vue.php:274
5515
+ msgid "Search Console Report"
5516
  msgstr ""
5517
 
5518
  #: languages/vue.php:277
5519
+ msgid "Dimensions Report"
5520
  msgstr ""
5521
 
5522
  #: languages/vue.php:280
5523
+ msgid "Forms Report"
5524
  msgstr ""
5525
 
5526
  #: languages/vue.php:283
5527
+ msgid "Real-Time Report"
5528
  msgstr ""
5529
 
5530
+ #: languages/vue.php:287
5531
+ msgid "2019 Year in Review"
5532
  msgstr ""
5533
 
5534
+ #. Translators: Error status and error text.
5535
+ #: languages/vue.php:291
5536
+ msgid "Can't load report data. Error: %1$s, %2$s"
5537
  msgstr ""
5538
 
5539
+ #: languages/vue.php:294
5540
+ msgid "Error loading report data"
5541
  msgstr ""
5542
 
5543
+ #: languages/vue.php:297
5544
+ msgid "See Quick Links"
5545
  msgstr ""
5546
 
5547
+ #: languages/vue.php:300
5548
+ msgid "Suggest a Feature"
5549
  msgstr ""
5550
 
5551
+ #: languages/vue.php:303
5552
+ msgid "Join Our Community"
5553
  msgstr ""
5554
 
5555
  #: languages/vue.php:306
5556
+ msgid "Support & Docs"
5557
  msgstr ""
5558
 
5559
  #: languages/vue.php:309
5560
+ msgid "Upgrade to Pro &#187;"
5561
  msgstr ""
5562
 
5563
+ #: languages/vue.php:331
5564
+ msgid "Real-Time"
5565
  msgstr ""
5566
 
5567
+ #: languages/vue.php:334
5568
+ msgid "Inbox"
5569
  msgstr ""
5570
 
5571
+ #: languages/vue.php:337
5572
+ msgid "Back to Inbox"
5573
  msgstr ""
5574
 
5575
+ #: languages/vue.php:340
5576
+ msgid "View Dismissed"
5577
  msgstr ""
5578
 
5579
+ #: languages/vue.php:343
5580
+ msgid "Notifications"
5581
  msgstr ""
5582
 
5583
+ #: languages/vue.php:346
5584
+ msgid "Dismiss All"
5585
  msgstr ""
5586
 
5587
+ #: languages/vue.php:349
5588
+ msgid "Dismissed"
5589
  msgstr ""
5590
 
5591
+ #: languages/vue.php:352
5592
+ msgid "No Notifications"
 
5593
  msgstr ""
5594
 
5595
+ #: languages/vue.php:355
5596
+ msgid "Powered by MonsterInsights"
5597
  msgstr ""
5598
 
5599
+ #: languages/vue.php:358
5600
+ msgid "You must connect with MonsterInsights before you can view reports."
5601
  msgstr ""
5602
 
5603
+ #: languages/vue.php:361
5604
+ msgid "MonsterInsights makes it \"effortless\" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
5605
  msgstr ""
5606
 
5607
+ #: languages/vue.php:364
5608
+ msgid "Launch Setup Wizard"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5609
  msgstr ""
5610
 
5611
+ #: languages/vue.php:367
5612
+ msgid "Please ask your webmaster to connect MonsterInsights to Google Analytics."
5613
  msgstr ""
5614
 
5615
+ #: languages/vue.php:370
5616
+ msgid "Exit Setup"
5617
  msgstr ""
5618
 
5619
+ #: languages/vue.php:385
5620
+ msgid "MonsterInsights encountered an error loading your report data"
5621
  msgstr ""
5622
 
5623
+ #: languages/vue.php:388
5624
+ msgid "There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating."
5625
  msgstr ""
5626
 
5627
+ #: languages/vue.php:393
5628
+ msgid "Reconnect MonsterInsights"
5629
  msgstr ""
5630
 
5631
+ #: languages/vue.php:398
5632
+ msgid "Re-Authenticating"
5633
  msgstr ""
5634
 
5635
  #: languages/vue.php:404
5636
+ msgid "Ok"
5637
  msgstr ""
5638
 
5639
  #: languages/vue.php:407
5640
+ msgid "MonsterInsights Addons"
5641
  msgstr ""
5642
 
5643
  #: languages/vue.php:410
5644
+ msgid "Search Addons"
5645
  msgstr ""
5646
 
5647
  #: languages/vue.php:413
5648
+ msgid "License Key"
5649
  msgstr ""
5650
 
5651
+ #. Translators: Add link to retrieve license key from account.
5652
+ #: languages/vue.php:417
5653
+ msgid "Add your MonsterInsights license key from the email receipt or account area. %1$sRetrieve your license key%2$s."
5654
  msgstr ""
5655
 
5656
+ #: languages/vue.php:420
5657
+ msgid "Google Authentication"
5658
  msgstr ""
5659
 
5660
+ #: languages/vue.php:423
5661
+ msgid "Connect Google Analytics + WordPress"
5662
  msgstr ""
5663
 
5664
+ #: languages/vue.php:426
5665
+ msgid "You will be taken to the MonsterInsights website where you'll need to connect your Analytics account."
5666
  msgstr ""
5667
 
5668
+ #: languages/vue.php:429
5669
+ msgid "Miscellaneous"
5670
  msgstr ""
5671
 
5672
  #: languages/vue.php:432
5673
+ msgid "Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes."
5674
  msgstr ""
5675
 
5676
  #: languages/vue.php:435
5677
+ msgid "Hide Announcements"
5678
  msgstr ""
5679
 
5680
  #: languages/vue.php:438
5681
+ msgid "Setup Wizard"
5682
+ msgstr ""
5683
+
5684
+ #: languages/vue.php:441
5685
+ msgid "Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks)."
5686
  msgstr ""
5687
 
5688
  #: languages/vue.php:444
5689
+ msgid "WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin"
5690
  msgstr ""
5691
 
5692
+ #: languages/vue.php:447
5693
+ msgid "WordPress Admin Area Reports"
 
5694
  msgstr ""
5695
 
5696
+ #: languages/vue.php:450
5697
+ msgid "Standard Reports"
 
5698
  msgstr ""
5699
 
5700
+ #: languages/vue.php:453
5701
+ msgid "Overview Reports for the last 30 days."
5702
+ msgstr ""
5703
+
5704
+ #: languages/vue.php:456
5705
+ msgid "Advanced Reports"
5706
  msgstr ""
5707
 
 
5708
  #: languages/vue.php:459
5709
+ msgid "Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection"
5710
  msgstr ""
5711
 
5712
+ #: languages/vue.php:462
5713
+ msgid "Dashboard Widget"
 
5714
  msgstr ""
5715
 
5716
+ #: languages/vue.php:465
5717
+ msgid "Basic Widget"
5718
  msgstr ""
5719
 
5720
+ #: languages/vue.php:468
5721
+ msgid "Overview Report Synopsis"
5722
  msgstr ""
5723
 
5724
+ #: languages/vue.php:471
5725
+ msgid "Advanced Dashboard Widget"
5726
  msgstr ""
5727
 
5728
+ #: languages/vue.php:474
5729
+ msgid "Includes the complete Overview report, Publisher reports and 6 different eCommerce reports"
5730
  msgstr ""
5731
 
5732
+ #: languages/vue.php:477
5733
+ msgid "Publisher Reports"
5734
  msgstr ""
5735
 
5736
+ #: languages/vue.php:480
5737
+ msgid "Advanced Publisher Reports & Tracking"
5738
  msgstr ""
5739
 
5740
+ #: languages/vue.php:483
5741
+ msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
5742
  msgstr ""
5743
 
5744
+ #: languages/vue.php:486
5745
+ msgid "Custom Dimensions"
5746
  msgstr ""
5747
 
5748
+ #: languages/vue.php:489
5749
+ msgid "Not Available"
5750
  msgstr ""
5751
 
5752
+ #: languages/vue.php:492
5753
+ msgid "Complete Custom Dimensions Tracking"
5754
  msgstr ""
5755
 
5756
+ #: languages/vue.php:495
5757
+ 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"
5758
  msgstr ""
5759
 
5760
+ #: languages/vue.php:501
5761
+ msgid "Limited Support"
5762
+ msgstr ""
5763
+
5764
+ #: languages/vue.php:504
5765
+ msgid "Priority Support"
5766
  msgstr ""
5767
 
5768
  #: languages/vue.php:507
5769
+ msgid "Get the most out of MonsterInsights by upgrading to Pro and unlocking all of the powerful features."
5770
  msgstr ""
5771
 
5772
+ #: languages/vue.php:510
5773
+ msgid "Feature"
5774
  msgstr ""
5775
 
5776
+ #: languages/vue.php:513
5777
+ msgid "Lite"
5778
+ msgstr ""
5779
+
5780
+ #: languages/vue.php:516
5781
+ msgid "Pro"
5782
+ msgstr ""
5783
+
5784
+ #: languages/vue.php:519
5785
+ msgid "Get MonsterInsights Pro Today and Unlock all the Powerful Features"
5786
+ msgstr ""
5787
+
5788
+ #. Translators: Makes text green.
5789
+ #: languages/vue.php:523
5790
+ msgid "Bonus: MonsterInsights Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout."
5791
  msgstr ""
5792
 
5793
  #: languages/vue.php:526
5794
+ msgid "Universal Tracking"
5795
  msgstr ""
5796
 
5797
  #: languages/vue.php:529
5798
+ msgid "Included"
5799
  msgstr ""
5800
 
5801
  #: languages/vue.php:532
5802
+ msgid "Custom Google Analytics Link Tracking"
5803
  msgstr ""
5804
 
5805
  #: languages/vue.php:535
5806
+ msgid "Standard Tracking"
5807
+ msgstr ""
5808
+
5809
+ #: languages/vue.php:538
5810
+ msgid "Advanced Tracking"
5811
+ msgstr ""
5812
+
5813
+ #: languages/vue.php:541
5814
+ msgid "Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking"
5815
+ msgstr ""
5816
+
5817
+ #: languages/vue.php:544
5818
+ msgid "Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers"
5819
+ msgstr ""
5820
+
5821
+ #: languages/vue.php:547
5822
+ msgid "No-Code-Needed Tracking Features"
5823
+ msgstr ""
5824
+
5825
+ #: languages/vue.php:550
5826
+ msgid "Basic Tracking Options"
5827
  msgstr ""
5828
 
5829
  #: languages/vue.php:553
5830
+ msgid "Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking"
5831
  msgstr ""
5832
 
5833
  #: languages/vue.php:556
5834
+ msgid "Advanced Tracking Options"
5835
  msgstr ""
5836
 
5837
+ #: languages/vue.php:559
5838
+ msgid "Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors"
 
5839
  msgstr ""
5840
 
5841
+ #: languages/vue.php:562
5842
+ msgid "eCommerce Tracking"
5843
  msgstr ""
5844
 
5845
+ #: languages/vue.php:565
5846
+ msgid "One-click Complete eCommerce tracking"
5847
+ msgstr ""
5848
+
5849
+ #: languages/vue.php:568
5850
+ msgid "Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required"
5851
  msgstr ""
5852
 
5853
  #: languages/vue.php:571
5854
+ msgid "Forms Tracking"
5855
  msgstr ""
5856
 
5857
  #: languages/vue.php:574
5858
+ msgid "One-click Form Events Tracking"
5859
  msgstr ""
5860
 
5861
  #: languages/vue.php:577
5862
+ msgid "Hello and welcome to MonsterInsights, the best Google Analytics plugin for WordPress. MonsterInsights shows you exactly which content gets the most visit, so you can analyze and optimize it for higher conversions."
5863
  msgstr ""
5864
 
5865
  #: languages/vue.php:580
5866
+ msgid "Over the years, we found that in order to get the most out of Google Analytics, you needed a full time developer who could implement custom tracking, so that Google Analytics would integrate with things like WooCommerce, and track things which Google doesn't by default, like outbound links."
5867
  msgstr ""
5868
 
5869
  #: languages/vue.php:583
5870
+ msgid "Our goal is to take the pain out of analytics, making it simple and easy, by eliminating the need to have to worry about code, putting the best reports directly into the area you already go to (your WordPress dashboard), and adding the most advanced insights and features without complicating our plugin with tons of settings. Quite simply, it should \"just work\"."
5871
  msgstr ""
5872
 
5873
  #: languages/vue.php:586
5874
+ msgid "MonsterInsights is brought to you by the same team that's behind the largest WordPress resource site, WPBeginner, the most popular lead-generation software, OptinMonster, and the best WordPress forms plugin, WPForms."
5875
  msgstr ""
5876
 
5877
  #: languages/vue.php:589
5878
+ msgid "Yup, we know a thing or two about building awesome products that customers love."
5879
  msgstr ""
5880
 
5881
  #: languages/vue.php:592
5882
+ msgid "The MonsterInsights Team"
5883
  msgstr ""
5884
 
5885
  #: languages/vue.php:595
5886
+ msgid "GDPR Guide"
5887
  msgstr ""
5888
 
5889
  #: languages/vue.php:598
5890
+ msgid "Compliance with European data laws including GDPR can be confusing and time-consuming. In order to help MonsterInsights users comply with these laws, we’ve created an addon that automates a lot of the necessary configuration changes for you. "
5891
  msgstr ""
5892
 
5893
+ #: languages/vue.php:601
5894
+ msgid "How to Install and Activate MonsterInsights Addons"
 
5895
  msgstr ""
5896
 
5897
+ #: languages/vue.php:604
5898
+ msgid "The process for installing and activating addons is quick and easy after you install the MonsterInsights plugin. In this guide we’ll walk you through the process, step by step."
5899
  msgstr ""
5900
 
5901
+ #: languages/vue.php:607
5902
+ msgid "Enabling eCommerce Tracking and Reports"
5903
  msgstr ""
5904
 
5905
+ #: languages/vue.php:610
5906
+ msgid "Want to track your eCommerce sales data for your WooCommerce, MemberPress, or Easy Digital Downloads store with MonsterInsights? In this guide, we’ll show you how to enable eCommerce tracking in Google Analytics in just a few clicks."
5907
  msgstr ""
5908
 
5909
+ #: languages/vue.php:613
5910
+ msgid "Read Documentation"
5911
  msgstr ""
5912
 
5913
+ #: languages/vue.php:616
5914
+ msgid "Getting Started with MonsterInsights"
5915
  msgstr ""
5916
 
5917
+ #: languages/vue.php:619
5918
+ msgid "MonsterInsights 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."
5919
  msgstr ""
5920
 
5921
+ #: languages/vue.php:622
5922
+ 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."
5923
  msgstr ""
5924
 
5925
+ #: languages/vue.php:625
5926
+ 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!."
5927
  msgstr ""
5928
 
5929
+ #: languages/vue.php:628
5930
+ msgid "Launch the wizard!"
5931
  msgstr ""
5932
 
5933
+ #: languages/vue.php:631
5934
+ msgid "Get MonsterInsights Pro and Unlock all the Powerful Features"
5935
  msgstr ""
5936
 
5937
+ #. Translators: Makes text bold.
5938
  #: languages/vue.php:635
5939
+ msgid "Thanks for being a loyal MonsterInsights Lite user. %1$sUpgrade to MonsterInsights Pro%2$s to unlock all the awesome features and experience why MonsterInsights is consistently rated the best Google Analytics solution for WordPress."
5940
  msgstr ""
5941
 
5942
  #: languages/vue.php:638
5943
+ msgid "Universal Tracking across devices and campaigns with just a few clicks."
5944
  msgstr ""
5945
 
5946
  #: languages/vue.php:641
5947
+ msgid "See your website analytics reports inside the WordPress dashboard"
5948
  msgstr ""
5949
 
5950
  #: languages/vue.php:644
5951
+ msgid "Get real-time stats right inside WordPress"
5952
  msgstr ""
5953
 
5954
  #: languages/vue.php:647
5955
+ msgid "1-click Google Analytics Enhanced eCommerce tracking"
5956
  msgstr ""
5957
 
5958
  #: languages/vue.php:650
5959
+ msgid "Get detailed stats for each post and page."
5960
  msgstr ""
5961
 
5962
  #: languages/vue.php:653
5963
+ msgid "Automatically track clicks on your affiliate links and ads."
5964
  msgstr ""
5965
 
5966
  #: languages/vue.php:656
5967
+ msgid "Make Google Analytics GDPR compliant automatically"
5968
  msgstr ""
5969
 
5970
  #: languages/vue.php:659
5971
+ msgid "Setup tracking for authors, categories, tags, custom post types, users and more"
5972
  msgstr ""
5973
 
5974
  #: languages/vue.php:662
5975
+ msgid "Enable Google Optimize for A/B testing, adjust sample speed & sample rate."
5976
  msgstr ""
5977
 
5978
  #: languages/vue.php:665
5979
+ msgid "More advanced features"
5980
  msgstr ""
5981
 
5982
  #: languages/vue.php:668
5983
+ msgid "How to Connect to Google Analytics"
5984
  msgstr ""
5985
 
5986
  #: languages/vue.php:671
5987
+ msgid "After you install MonsterInsights, you’ll need to connect your WordPress site with your Google Analytics account. MonsterInsights makes the process easy, with no coding required."
5988
  msgstr ""
5989
 
5990
  #: languages/vue.php:674
5991
+ msgid "Guide and Checklist for Advanced Insights"
5992
  msgstr ""
5993
 
5994
  #: languages/vue.php:677
5995
+ 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 MonsterInsights’ advanced tracking."
5996
  msgstr ""
5997
 
5998
  #: languages/vue.php:680
5999
+ msgid "Save Changes"
 
 
 
 
6000
  msgstr ""
6001
 
6002
  #: languages/vue.php:686
6003
+ msgid "Thank you for choosing MonsterInsights - The Most Powerful WordPress Analytics Plugin"
6004
  msgstr ""
6005
 
6006
  #: languages/vue.php:689
6007
+ msgid "MonsterInsights 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."
6008
  msgstr ""
6009
 
6010
  #: languages/vue.php:692
6011
+ msgid "Launch the Wizard!"
6012
  msgstr ""
6013
 
6014
  #: languages/vue.php:695
6015
+ msgid "Read the Full Guide"
6016
  msgstr ""
6017
 
6018
  #: languages/vue.php:698
6019
+ msgid "MonsterInsights Features & Addons"
6020
  msgstr ""
6021
 
6022
  #: languages/vue.php:701
6023
+ msgid "Here are the features that make MonsterInsights the most powerful and user-friendly WordPress analytics plugin in the market."
6024
  msgstr ""
6025
 
6026
  #: languages/vue.php:704
6027
+ msgid "See All Features"
6028
  msgstr ""
6029
 
6030
+ #: languages/vue.php:708
6031
+ msgid "Upgrade to PRO"
6032
  msgstr ""
6033
 
6034
+ #: languages/vue.php:711
6035
+ msgid "per year"
6036
  msgstr ""
6037
 
6038
+ #: languages/vue.php:717
6039
+ msgid "Testimonials"
6040
  msgstr ""
6041
 
6042
+ #: languages/vue.php:720
6043
+ msgid "Setup universal website tracking across devices and campaigns with just a few clicks (without any code)."
6044
  msgstr ""
6045
 
6046
+ #: languages/vue.php:723
6047
+ msgid "Google Analytics Dashboard"
6048
  msgstr ""
6049
 
6050
+ #: languages/vue.php:726
6051
+ msgid "See your website analytics report right inside your WordPress dashboard with actionable insights."
6052
  msgstr ""
6053
 
6054
+ #: languages/vue.php:729
6055
+ msgid "Real-time Stats"
6056
  msgstr ""
6057
 
6058
+ #: languages/vue.php:732
6059
+ msgid "Get real-time stats right inside WordPress to see who is online, what are they doing, and more."
6060
  msgstr ""
6061
 
6062
+ #: languages/vue.php:735
6063
+ msgid "Enhanced Ecommerce Tracking"
6064
  msgstr ""
6065
 
6066
+ #: languages/vue.php:738
6067
+ msgid "1-click Google Analytics Enhanced Ecommerce tracking for WooCommerce, Easy Digital Downloads & MemberPress."
6068
  msgstr ""
6069
 
6070
+ #: languages/vue.php:741
6071
+ msgid "Page Level Analytics"
6072
  msgstr ""
6073
 
6074
+ #: languages/vue.php:744
6075
+ msgid "Get detailed stats for each post and page, so you can see the most popular posts, pages, and sections of your site."
6076
  msgstr ""
6077
 
6078
+ #: languages/vue.php:747
6079
+ msgid "Affiliate Link & Ads Tracking"
6080
  msgstr ""
6081
 
6082
+ #: languages/vue.php:750
6083
+ msgid "Automatically track clicks on your affiliate links, banner ads, and other outbound links with our link tracking."
6084
  msgstr ""
6085
 
6086
+ #: languages/vue.php:753
6087
+ msgid "EU Compliance (GDPR Friendly)"
6088
  msgstr ""
6089
 
6090
+ #: languages/vue.php:756
6091
+ msgid "Make Google Analytics compliant with GDPR and other privacy regulations automatically."
6092
  msgstr ""
6093
 
6094
+ #: languages/vue.php:759
6095
+ msgid "Setup tracking for authors, categories, tags, searches, custom post types, users, and other events with 1-click."
6096
  msgstr ""
6097
 
6098
+ #: languages/vue.php:762
6099
+ msgid "Ecommerce Report"
6100
  msgstr ""
6101
 
6102
+ #: languages/vue.php:765
6103
+ msgid "Form Conversions"
6104
  msgstr ""
6105
 
6106
+ #: languages/vue.php:768
6107
+ msgid "Author Tracking"
6108
  msgstr ""
6109
 
6110
+ #: languages/vue.php:771
6111
+ msgid "Google Optimize"
6112
  msgstr ""
6113
 
 
6114
  #: languages/vue.php:774
6115
+ msgid "Category / Tags Tracking"
6116
  msgstr ""
6117
 
6118
  #: languages/vue.php:777
6119
+ msgid "WooCommerce"
6120
  msgstr ""
6121
 
6122
  #: languages/vue.php:780
6123
+ msgid "Easy Digital Downloads"
6124
  msgstr ""
6125
 
6126
  #: languages/vue.php:783
6127
+ msgid "MemberPress"
6128
  msgstr ""
6129
 
6130
  #: languages/vue.php:786
6131
+ msgid "LifterLMS"
 
 
 
 
6132
  msgstr ""
6133
 
6134
+ #. Translators: Adds a link to documentation.
6135
+ #: languages/vue.php:790
6136
+ msgid "In order for the MonsterInsights Google AMP addon to work properly, please ask your webmaster to install the WordPress AMP plugin by Automattic. %1$sLearn More%2$s"
6137
  msgstr ""
6138
 
6139
+ #. Translators: Adds link to activate/install plugin and documentation.
6140
+ #: languages/vue.php:794
6141
+ msgid "In order for the MonsterInsights 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"
6142
  msgstr ""
6143
 
6144
+ #: languages/vue.php:797
6145
+ msgid "Activate"
6146
  msgstr ""
6147
 
6148
+ #: languages/vue.php:800
6149
+ msgid "Install"
6150
  msgstr ""
6151
 
6152
+ #. Translators: Adds a link to documentation.
6153
  #: languages/vue.php:804
6154
+ msgid "In order for the MonsterInsights 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"
 
 
 
 
 
 
 
 
6155
  msgstr ""
6156
 
6157
+ #. Translators: Adds link to activate/install plugin and documentation.
6158
+ #: languages/vue.php:808
6159
+ msgid "In order for the MonsterInsights 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"
6160
  msgstr ""
6161
 
6162
+ #: languages/vue.php:811
6163
+ msgid "Installing Addon"
6164
  msgstr ""
6165
 
6166
+ #: languages/vue.php:814
6167
+ msgid "Activating Addon"
6168
  msgstr ""
6169
 
6170
+ #: languages/vue.php:817
6171
+ msgid "Addon Activated"
6172
  msgstr ""
6173
 
6174
+ #: languages/vue.php:820
6175
+ msgid "Loading report data"
6176
  msgstr ""
6177
 
6178
+ #: languages/vue.php:823
6179
+ msgid "Please activate manually"
6180
  msgstr ""
6181
 
6182
+ #. Translators: Adds the error status and status text.
6183
+ #: languages/vue.php:827
6184
+ msgid "Error: %1$s, %2$s"
6185
  msgstr ""
6186
 
6187
+ #: languages/vue.php:830
6188
+ msgid "Error Activating Addon"
6189
  msgstr ""
6190
 
6191
+ #: languages/vue.php:836
6192
+ msgid "Dismiss"
6193
  msgstr ""
6194
 
6195
+ #: languages/vue.php:839
6196
+ msgid "Redirecting"
6197
  msgstr ""
6198
 
6199
+ #: languages/vue.php:842
6200
+ msgid "Please wait"
6201
  msgstr ""
6202
 
6203
+ #: languages/vue.php:845
6204
+ msgid "activate"
6205
  msgstr ""
6206
 
6207
+ #: languages/vue.php:848
6208
+ msgid "install"
6209
  msgstr ""
6210
 
6211
+ #: languages/vue.php:851
6212
+ msgid "Visit addons page"
6213
  msgstr ""
6214
 
6215
+ #: languages/vue.php:854
6216
+ msgid "Report Unavailable"
6217
  msgstr ""
6218
 
6219
+ #. Translators: Install/Activate the addon.
6220
  #: languages/vue.php:858
6221
+ msgid "%s Addon"
6222
  msgstr ""
6223
 
6224
  #: languages/vue.php:861
6225
+ msgid "Go Back To Reports"
6226
  msgstr ""
6227
 
6228
+ #: languages/vue.php:864
6229
+ msgid "Enable Enhanced eCommerce"
 
6230
  msgstr ""
6231
 
6232
+ #: languages/vue.php:867
6233
+ msgid "Recommended Settings"
6234
  msgstr ""
6235
 
6236
+ #: languages/vue.php:870
6237
+ msgid "MonsterInsights recommends the following settings based on your configuration."
6238
  msgstr ""
6239
 
6240
+ #: languages/vue.php:873
6241
+ msgid "Events Tracking"
6242
  msgstr ""
6243
 
6244
+ #: languages/vue.php:876
6245
+ msgid "Must have for all click tracking on site."
6246
  msgstr ""
6247
 
6248
+ #: languages/vue.php:879
6249
+ msgid "MonsterInsights 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."
6250
  msgstr ""
6251
 
6252
+ #: languages/vue.php:882
6253
+ msgid "Enhanced Link Attribution"
6254
  msgstr ""
6255
 
6256
+ #: languages/vue.php:885
6257
+ msgid "Improves the accuracy of your In-Page Analytics."
6258
  msgstr ""
6259
 
6260
+ #: languages/vue.php:888
6261
+ msgid "MonsterInsights 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."
6262
  msgstr ""
6263
 
6264
+ #: languages/vue.php:891
6265
+ msgid "Install Updates Automatically"
6266
  msgstr ""
6267
 
6268
+ #: languages/vue.php:894
6269
+ msgid "Get the latest features, bug fixes, and security updates as they are released."
6270
  msgstr ""
6271
 
6272
+ #: languages/vue.php:897
6273
+ msgid "To ensure you get the latest bugfixes and security updates and avoid needing to spend time logging into your WordPress site to update MonsterInsights, we offer the ability to automatically have MonsterInsights update itself."
6274
  msgstr ""
6275
 
6276
+ #: languages/vue.php:900
6277
+ msgid "File Download Tracking"
6278
  msgstr ""
6279
 
6280
+ #: languages/vue.php:903
6281
+ msgid "Helps you see file downloads data."
6282
  msgstr ""
6283
 
6284
+ #: languages/vue.php:906
6285
+ msgid "MonsterInsights 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? MonsterInsights makes this both easy, and code-free! You can customize the file types to track at any time from our settings panel."
6286
  msgstr ""
6287
 
6288
+ #. Translators: Example path (/go/).
6289
  #: languages/vue.php:910
6290
+ msgid "Path (example: %s)"
6291
  msgstr ""
6292
 
6293
  #: languages/vue.php:913
6294
+ msgid "Path has to start with a / and have no spaces"
6295
  msgstr ""
6296
 
6297
+ #. Translators: Example label (aff).
6298
+ #: languages/vue.php:917
6299
+ msgid "Label (example: %s)"
6300
  msgstr ""
6301
 
6302
+ #: languages/vue.php:920
6303
+ msgid "Label can't contain any spaces"
6304
  msgstr ""
6305
 
6306
+ #: languages/vue.php:923
6307
+ msgid "Helps you increase affiliate revenue."
6308
  msgstr ""
6309
 
6310
+ #: languages/vue.php:926
6311
+ msgid "MonsterInsights 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."
6312
  msgstr ""
6313
 
 
6314
  #: languages/vue.php:929
6315
+ msgid "Affiliate Link Tracking"
6316
  msgstr ""
6317
 
6318
  #: languages/vue.php:932
6319
+ msgid "Who Can See Reports"
6320
  msgstr ""
6321
 
6322
  #: languages/vue.php:935
6323
+ msgid "These user roles will be able to access MonsterInsights's reports in the WordPress admin area."
6324
  msgstr ""
6325
 
6326
  #: languages/vue.php:938
6327
+ 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."
6328
  msgstr ""
6329
 
6330
  #: languages/vue.php:941
6331
+ msgid "Save and continue"
6332
  msgstr ""
6333
 
6334
  #: languages/vue.php:944
6335
+ msgid "Events Tracking is enabled the moment you set up MonsterInsights"
6336
  msgstr ""
6337
 
6338
  #: languages/vue.php:947
6339
+ msgid "Enhanced Link Attribution is enabled the moment you set up MonsterInsights"
6340
  msgstr ""
6341
 
6342
  #: languages/vue.php:950
6343
+ msgid "+ Add Role"
6344
  msgstr ""
6345
 
6346
  #: languages/vue.php:953
6347
+ msgid "MonsterInsights Recommends WPForms"
6348
  msgstr ""
6349
 
6350
  #: languages/vue.php:956
6351
+ msgid "Built by the folks behind MonsterInsights, WPForms is the most beginner friendly form plugin in the market."
6352
  msgstr ""
6353
 
6354
  #: languages/vue.php:959
6355
+ msgid "Used on over 3,000,000 websites!"
6356
  msgstr ""
6357
 
6358
  #: languages/vue.php:962
6359
+ 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!"
6360
  msgstr ""
6361
 
6362
  #: languages/vue.php:965
6363
+ msgid "Skip this Step"
6364
  msgstr ""
6365
 
6366
  #: languages/vue.php:968
6367
+ msgid "Continue & Install WPForms"
 
 
 
 
6368
  msgstr ""
6369
 
6370
+ #: languages/vue.php:973
6371
+ msgid "Installing..."
6372
  msgstr ""
6373
 
6374
+ #: languages/vue.php:976
6375
+ msgid "New"
6376
  msgstr ""
6377
 
6378
+ #: languages/vue.php:979
6379
+ msgid "Returning"
6380
  msgstr ""
6381
 
6382
  #: languages/vue.php:983
6383
+ msgid "Desktop"
 
 
 
 
 
 
 
 
 
 
 
 
6384
  msgstr ""
6385
 
6386
+ #: languages/vue.php:987
6387
+ msgid "Tablet"
6388
  msgstr ""
6389
 
6390
+ #: languages/vue.php:991
6391
+ msgid "Mobile"
 
6392
  msgstr ""
6393
 
6394
+ #: languages/vue.php:996
6395
+ msgid "Sessions"
6396
  msgstr ""
6397
 
6398
+ #. Translators: Line break.
6399
+ #: languages/vue.php:1001
6400
+ msgid "Unique %s Sessions"
6401
  msgstr ""
6402
 
6403
+ #: languages/vue.php:1007
6404
+ msgid "Pageviews"
6405
  msgstr ""
6406
 
6407
+ #. Translators: Line break.
6408
  #: languages/vue.php:1012
6409
+ msgid "Unique %s Pageviews"
 
 
 
 
6410
  msgstr ""
6411
 
6412
+ #: languages/vue.php:1016
6413
+ msgid "Avg. Session Duration"
6414
  msgstr ""
6415
 
6416
  #: languages/vue.php:1021
6417
+ msgid "Bounce Rate"
 
 
 
 
6418
  msgstr ""
6419
 
6420
+ #: languages/vue.php:1025
6421
+ msgid "New vs. Returning Visitors"
6422
  msgstr ""
6423
 
6424
+ #: languages/vue.php:1029
6425
+ msgid "Device Breakdown"
6426
  msgstr ""
6427
 
6428
+ #: languages/vue.php:1032
6429
+ msgid "Top 10 Countries"
6430
  msgstr ""
6431
 
6432
+ #: languages/vue.php:1035
6433
+ msgid "View Countries Report"
6434
  msgstr ""
6435
 
6436
+ #: languages/vue.php:1038
6437
+ msgid "Top 10 Referrals"
6438
  msgstr ""
6439
 
6440
+ #: languages/vue.php:1041
6441
+ msgid "View All Referral Sources"
6442
  msgstr ""
6443
 
6444
  #: languages/vue.php:1045
6445
+ msgid "Top Posts/Pages"
6446
  msgstr ""
6447
 
6448
  #: languages/vue.php:1048
6449
+ msgid "View Full Posts/Pages Report"
 
 
 
 
6450
  msgstr ""
6451
 
6452
+ #: languages/vue.php:1052
6453
+ msgid "A session is the browsing session of a single user to your site."
6454
  msgstr ""
6455
 
6456
+ #: languages/vue.php:1056
6457
+ 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."
6458
  msgstr ""
6459
 
6460
  #: languages/vue.php:1060
6461
+ msgid "Total duration of all sessions (in seconds) / number of sessions."
6462
  msgstr ""
6463
 
6464
  #: languages/vue.php:1063
6465
+ 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."
6466
  msgstr ""
6467
 
6468
+ #: languages/vue.php:1067
6469
+ msgid "This graph shows what percent of your user sessions come from new versus repeat visitors."
6470
  msgstr ""
6471
 
6472
+ #: languages/vue.php:1071
6473
+ 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."
 
6474
  msgstr ""
6475
 
 
6476
  #: languages/vue.php:1074
6477
+ msgid "This list shows the top countries your website visitors are from."
6478
  msgstr ""
6479
 
6480
  #: languages/vue.php:1077
6481
+ msgid "This list shows the top websites that send your website traffic, known as referral traffic."
6482
  msgstr ""
6483
 
6484
+ #: languages/vue.php:1081
6485
+ msgid "This list shows the most viewed posts and pages on your website."
6486
  msgstr ""
6487
 
6488
+ #: languages/vue.php:1084
6489
+ msgid "Export PDF Overview Report"
6490
  msgstr ""
6491
 
6492
+ #. Translators: Error status and error text.
6493
+ #: languages/vue.php:1088
6494
+ msgid "Can't load settings. Error: %1$s, %2$s"
6495
  msgstr ""
6496
 
6497
+ #: languages/vue.php:1092
6498
+ msgid "You appear to be offline."
6499
  msgstr ""
6500
 
6501
+ #. Translators: Error status and error text.
6502
+ #: languages/vue.php:1097
6503
+ msgid "Can't save settings. Error: %1$s, %2$s"
6504
  msgstr ""
6505
 
6506
+ #: languages/vue.php:1100
6507
+ msgid "Network error encountered. Settings not saved."
 
6508
  msgstr ""
6509
 
6510
+ #. Translators: Error status and error text.
6511
+ #: languages/vue.php:1104
6512
+ msgid "Can't deauthenticate. Error: %1$s, %2$s"
6513
  msgstr ""
6514
 
6515
+ #: languages/vue.php:1107
6516
+ msgid "You appear to be offline. Settings not saved."
 
6517
  msgstr ""
6518
 
6519
+ #. Translators: Error status and error text.
6520
  #: languages/vue.php:1111
6521
+ msgid "Can't load authentication details. Error: %1$s, %2$s"
6522
  msgstr ""
6523
 
6524
+ #. Translators: Error status and error text.
6525
  #: languages/vue.php:1115
6526
+ msgid "Can't authenticate. Error: %1$s, %2$s"
 
 
 
 
6527
  msgstr ""
6528
 
6529
+ #. Translators: Error status and error text.
6530
+ #: languages/vue.php:1119
6531
+ msgid "Can't reauthenticate. Error: %1$s, %2$s"
6532
  msgstr ""
6533
 
6534
+ #. Translators: Error status and error text.
6535
+ #: languages/vue.php:1123
6536
+ msgid "Can't verify credentials. Error: %1$s, %2$s"
6537
  msgstr ""
6538
 
6539
+ #: languages/vue.php:1126
6540
+ msgid "Thank you for being a loyal MonsterInsights Lite user."
6541
  msgstr ""
6542
 
6543
+ #: languages/vue.php:1129
6544
+ msgid "Upgrade to MonsterInsights Pro and unlock all the awesome features."
6545
  msgstr ""
6546
 
6547
+ #. Translators: Gets replaced with the coupon code.
6548
  #: languages/vue.php:1133
6549
+ msgid "Use coupon code %s to get 50%% off."
6550
  msgstr ""
6551
 
6552
  #: languages/vue.php:1136
6553
+ msgid "Dashboard widget"
6554
  msgstr ""
6555
 
6556
  #: languages/vue.php:1139
6557
+ msgid "Affiliate Links"
6558
  msgstr ""
6559
 
6560
  #: languages/vue.php:1142
6561
+ msgid "Enhanced Ecommerce"
6562
  msgstr ""
6563
 
6564
  #: languages/vue.php:1145
6565
+ msgid "Banner Ads"
 
 
 
 
6566
  msgstr ""
6567
 
6568
+ #: languages/vue.php:1149
6569
+ msgid "Google AMP"
6570
  msgstr ""
6571
 
6572
+ #: languages/vue.php:1152
6573
+ msgid "SEO Score Tracking"
 
6574
  msgstr ""
6575
 
6576
+ #: languages/vue.php:1158
6577
+ msgid "Recommended Addons"
6578
  msgstr ""
6579
 
6580
+ #: languages/vue.php:1161
6581
+ msgid "To unlock more features consider upgrading to PRO. As a valued MonsterInsights Lite user you receive 50% off, automatically applied at checkout!"
6582
  msgstr ""
6583
 
6584
+ #: languages/vue.php:1164
6585
+ msgid "Other Addons"
6586
  msgstr ""
6587
 
6588
+ #: languages/vue.php:1167
6589
+ msgid "View all MonsterInsights addons"
 
6590
  msgstr ""
6591
 
6592
+ #. Translators: Placeholders are used for making text bold and adding a link.
6593
+ #: languages/vue.php:1171
6594
+ msgid "You're using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s."
6595
  msgstr ""
6596
 
6597
+ #: languages/vue.php:1174
6598
+ msgid "Still Calculating..."
 
6599
  msgstr ""
6600
 
6601
+ #: languages/vue.php:1177
6602
+ msgid "Your 2019 Year in Review is still calculating. Please check back later to see how your website performed last year."
6603
  msgstr ""
6604
 
6605
+ #: languages/vue.php:1180
6606
+ msgid "Back to Overview Report"
6607
  msgstr ""
6608
 
6609
  #: languages/vue.php:1189
6610
+ msgid "Audience"
6611
  msgstr ""
6612
 
6613
  #: languages/vue.php:1192
6614
+ msgid "Congrats"
6615
  msgstr ""
6616
 
6617
  #: languages/vue.php:1195
6618
+ msgid "Your website was quite popular this year! "
6619
  msgstr ""
6620
 
6621
  #: languages/vue.php:1198
6622
+ msgid "You had "
6623
  msgstr ""
6624
 
6625
  #: languages/vue.php:1201
6626
+ msgid " visitors!"
6627
  msgstr ""
6628
 
6629
  #: languages/vue.php:1204
6630
+ msgid " visitors"
6631
  msgstr ""
6632
 
6633
  #: languages/vue.php:1207
6634
+ msgid "Total Visitors"
6635
  msgstr ""
6636
 
6637
  #: languages/vue.php:1210
6638
+ msgid "Total Sessions"
6639
  msgstr ""
6640
 
6641
  #: languages/vue.php:1213
6642
+ msgid "Visitors by Month"
6643
  msgstr ""
6644
 
6645
  #: languages/vue.php:1216
6646
+ msgid "January 1, 2019 - December 31, 2019"
6647
  msgstr ""
6648
 
6649
+ #: languages/vue.php:1219
6650
+ msgid "A Tip for 2020"
 
6651
  msgstr ""
6652
 
6653
+ #: languages/vue.php:1222
6654
+ msgid "See the top Traffic Sources and Top Pages for the Month of May in the Overview Report to replicate your success."
 
6655
  msgstr ""
6656
 
6657
+ #: languages/vue.php:1226
6658
+ msgid "Demographics"
6659
  msgstr ""
6660
 
6661
+ #: languages/vue.php:1229
6662
+ msgid "#1"
6663
  msgstr ""
6664
 
6665
+ #: languages/vue.php:1232
6666
+ msgid "You Top 5 Countries"
6667
  msgstr ""
6668
 
6669
+ #: languages/vue.php:1235
6670
+ msgid "Let’s get to know your visitors a little better, shall we?"
6671
  msgstr ""
6672
 
6673
+ #: languages/vue.php:1238
6674
+ msgid "Gender"
 
6675
  msgstr ""
6676
 
6677
+ #: languages/vue.php:1241
6678
+ msgid "Female"
 
6679
  msgstr ""
6680
 
6681
+ #: languages/vue.php:1244
6682
+ msgid "Women"
 
6683
  msgstr ""
6684
 
6685
+ #: languages/vue.php:1247
6686
+ msgid "Male"
 
6687
  msgstr ""
6688
 
6689
+ #: languages/vue.php:1250
6690
+ msgid "Average Age"
 
6691
  msgstr ""
6692
 
6693
+ #: languages/vue.php:1253
6694
+ msgid "Behavior"
 
6695
  msgstr ""
6696
 
6697
+ #: languages/vue.php:1256
6698
+ msgid "Your Top 5 Pages"
 
6699
  msgstr ""
6700
 
6701
+ #: languages/vue.php:1259
6702
+ msgid "Time Spent on Site"
6703
  msgstr ""
6704
 
6705
+ #: languages/vue.php:1262
6706
+ msgid "minutes"
6707
  msgstr ""
6708
 
6709
+ #: languages/vue.php:1265
6710
+ msgid "Device Type"
6711
  msgstr ""
6712
 
6713
+ #: languages/vue.php:1268
6714
+ msgid "A Tip For 2020"
6715
  msgstr ""
6716
 
6717
+ #: languages/vue.php:1271
6718
+ msgid "Take advantage of what you’ve already built. See how to get more traffic from existing content in our 32 Marketing Hacks to Grow Your Traffic."
6719
  msgstr ""
6720
 
6721
+ #: languages/vue.php:1274
6722
+ msgid "Read - 32 Marketing Hacks to Grow Your Traffic"
6723
  msgstr ""
6724
 
6725
+ #: languages/vue.php:1277
6726
+ msgid "So, where did all of these visitors come from?"
6727
  msgstr ""
6728
 
6729
+ #: languages/vue.php:1280
6730
+ msgid "Clicks"
6731
  msgstr ""
6732
 
6733
+ #: languages/vue.php:1283
6734
+ msgid "Your Top 5 Keywords"
6735
  msgstr ""
6736
 
6737
+ #: languages/vue.php:1286
6738
+ msgid "What keywords visitors searched for to find your site"
6739
  msgstr ""
6740
 
6741
+ #: languages/vue.php:1289
6742
+ msgid "Your Top 5 Referrals"
6743
  msgstr ""
6744
 
6745
+ #: languages/vue.php:1292
6746
+ msgid "The websites that link back to your website"
6747
  msgstr ""
6748
 
6749
+ #: languages/vue.php:1295
6750
+ msgid "Opportunity"
6751
  msgstr ""
6752
 
6753
+ #: languages/vue.php:1298
6754
+ msgid "Use referral sources to create new partnerships or expand existing ones. See our guide on how to spy on your competitors and ethically steal their traffic."
6755
  msgstr ""
6756
 
6757
+ #: languages/vue.php:1301
6758
+ msgid "Read - How to Ethically Steal Your Competitor’s Traffic"
6759
  msgstr ""
6760
 
6761
+ #: languages/vue.php:1304
6762
+ msgid "Thank you for using MonsterInsights!"
6763
  msgstr ""
6764
 
6765
+ #: languages/vue.php:1307
6766
+ 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."
6767
  msgstr ""
6768
 
6769
+ #: languages/vue.php:1310
6770
+ msgid "Here's to an amazing 2020!"
6771
  msgstr ""
6772
 
6773
+ #: languages/vue.php:1313
6774
+ msgid "Enjoying MonsterInsights"
6775
  msgstr ""
6776
 
6777
+ #: languages/vue.php:1316
6778
+ msgid "Leave a five star review!"
6779
  msgstr ""
6780
 
6781
+ #: languages/vue.php:1319
6782
+ msgid "Syed Balkhi"
6783
  msgstr ""
6784
 
6785
+ #: languages/vue.php:1322
6786
+ msgid "Chris Christoff"
6787
  msgstr ""
6788
 
6789
+ #: languages/vue.php:1325
6790
+ msgid "Write Review"
6791
  msgstr ""
6792
 
6793
+ #: languages/vue.php:1328
6794
+ msgid "Did you know over 10 million websites use our plugins?"
6795
  msgstr ""
6796
 
6797
+ #: languages/vue.php:1331
6798
+ msgid "Try our other popular WordPress plugins to grow your website in 2020."
6799
  msgstr ""
6800
 
6801
+ #: languages/vue.php:1334
6802
+ msgid "Join our Communities!"
6803
  msgstr ""
6804
 
6805
+ #: languages/vue.php:1337
6806
+ msgid "Become a WordPress expert in 2020. Join our amazing communities and take your website to the next level."
6807
  msgstr ""
6808
 
6809
+ #: languages/vue.php:1340
6810
+ msgid "Facebook Group"
6811
  msgstr ""
6812
 
6813
+ #: languages/vue.php:1343
6814
+ msgid "Join our team of WordPress experts and other motivated website owners in the WPBeginner Engage Facebook Group."
6815
  msgstr ""
6816
 
6817
+ #: languages/vue.php:1346
6818
+ msgid "Join Now...It’s Free!"
6819
  msgstr ""
6820
 
6821
+ #: languages/vue.php:1349
6822
+ msgid "WordPress Tutorials by WPBeginner"
6823
  msgstr ""
6824
 
6825
+ #: languages/vue.php:1352
6826
+ msgid "WPBeginner is the largest free WordPress resource site for beginners and non-techy users."
6827
  msgstr ""
6828
 
6829
+ #: languages/vue.php:1355
6830
+ msgid "Visit WPBeginner"
 
6831
  msgstr ""
6832
 
6833
+ #: languages/vue.php:1358
6834
+ msgid "Follow Us!"
 
6835
  msgstr ""
6836
 
6837
+ #: languages/vue.php:1361
6838
+ msgid "Follow MonsterInsights on social media to stay up to date with latest updates, trends, and tutorials on how to make the most out of analytics."
 
6839
  msgstr ""
6840
 
6841
+ #: languages/vue.php:1364
6842
+ msgid "Copyright MonsterInsights, 2020"
6843
  msgstr ""
6844
 
6845
+ #: languages/vue.php:1367
6846
+ msgid "Upgrade to MonsterInsights Pro to Unlock Additional Actionable Insights"
 
6847
  msgstr ""
6848
 
6849
+ #: languages/vue.php:1370
6850
+ msgid "January"
 
6851
  msgstr ""
6852
 
6853
+ #: languages/vue.php:1373
6854
+ msgid "February"
 
6855
  msgstr ""
6856
 
6857
+ #: languages/vue.php:1376
6858
+ msgid "March"
6859
  msgstr ""
6860
 
6861
+ #: languages/vue.php:1379
6862
+ msgid "April"
 
6863
  msgstr ""
6864
 
6865
+ #: languages/vue.php:1382
6866
+ msgid "May"
 
6867
  msgstr ""
6868
 
6869
+ #: languages/vue.php:1385
6870
+ msgid "June"
6871
  msgstr ""
6872
 
6873
+ #: languages/vue.php:1388
6874
+ msgid "July"
 
6875
  msgstr ""
6876
 
6877
+ #: languages/vue.php:1391
6878
+ msgid "August"
6879
  msgstr ""
6880
 
6881
+ #: languages/vue.php:1394
6882
+ msgid "September"
6883
  msgstr ""
6884
 
6885
+ #: languages/vue.php:1397
6886
+ msgid "October"
6887
  msgstr ""
6888
 
6889
+ #: languages/vue.php:1400
6890
+ msgid "November"
6891
  msgstr ""
6892
 
6893
+ #: languages/vue.php:1403
6894
+ msgid "December"
6895
  msgstr ""
6896
 
6897
+ #. Translators: Number of visitors.
6898
+ #: languages/vue.php:1407
6899
+ msgid "Your best month was <strong>%1$s</strong> with <strong>%2$s visitors!</strong>"
6900
  msgstr ""
6901
 
6902
+ #. Translators: Number of visitors.
6903
+ #: languages/vue.php:1411
6904
+ msgid "Your <strong>%1$s</strong> visitors came from <strong>%2$s</strong> different countries."
6905
  msgstr ""
6906
 
6907
+ #. Translators: Number of visitors.
6908
+ #: languages/vue.php:1415
6909
+ msgid "%s Visitors"
6910
+ msgstr ""
6911
+
6912
+ #. Translators: Percent and Number of visitors.
6913
+ #: languages/vue.php:1419
6914
+ msgid "%1$s&#37 of your visitors were %2$s"
6915
  msgstr ""
6916
 
6917
+ #. Translators: Number of visitors and their age.
6918
+ #: languages/vue.php:1423
6919
+ msgid "%1$s&#37 of your visitors were between the ages of %2$s"
6920
+ msgstr ""
6921
+
6922
+ #. Translators: Number of visitors and number of pages.
6923
+ #: languages/vue.php:1427
6924
+ 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>"
6925
+ msgstr ""
6926
+
6927
+ #. Translators: Number of minutes spent on site.
6928
+ #: languages/vue.php:1431
6929
+ msgid "Each visitor spent an average of %s minutes on your website in 2019."
6930
+ msgstr ""
6931
+
6932
+ #. Translators: Name of device type.
6933
  #: languages/vue.php:1435
6934
+ msgid "Most of your visitors viewed your website from their <strong>%s</strong> device."
6935
  msgstr ""
6936
 
6937
+ #. Translators: Number of visitors and device percentage.
6938
+ #: languages/vue.php:1439
6939
+ msgid "%1$s&#37 of your visitors were on a %2$s device."
6940
  msgstr ""
6941
 
6942
+ #: languages/vue.php:1442
6943
+ msgid "Reset to default"
6944
  msgstr ""
6945
 
6946
+ #: languages/vue.php:1445
6947
+ msgid "The value entered does not match the required format"
6948
  msgstr ""
6949
 
6950
+ #: languages/vue.php:1448
6951
+ msgid "Connect MonsterInsights to Your Website"
6952
  msgstr ""
6953
 
6954
+ #: languages/vue.php:1451
6955
+ msgid "MonsterInsights connects Google Analytics to WordPress and shows you stats that matter."
6956
  msgstr ""
6957
 
6958
+ #: languages/vue.php:1454
6959
+ msgid "Whoops, something went wrong and we weren't able to connect to MonsterInsights. Please enter your Google UA code manually."
6960
  msgstr ""
6961
 
6962
+ #: languages/vue.php:1457
6963
+ msgid "Manually enter your UA code"
6964
+ msgstr ""
6965
+
6966
+ #: languages/vue.php:1460
6967
+ 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."
6968
  msgstr ""
6969
 
 
6970
  #: languages/vue.php:1463
6971
+ msgid "Save and Continue"
6972
  msgstr ""
6973
 
6974
  #: languages/vue.php:1466
6975
+ msgid "UA code can't be empty"
6976
  msgstr ""
6977
 
6978
  #: languages/vue.php:1469
6979
+ msgid "Saving UA code..."
6980
  msgstr ""
6981
 
6982
  #: languages/vue.php:1472
6983
+ msgid "Awesome, You're All Set!"
6984
  msgstr ""
6985
 
6986
  #: languages/vue.php:1475
6987
+ msgid "MonsterInsights is all set up and ready to use. We've verified that the tracking code is deployed properly and collecting data."
6988
  msgstr ""
6989
 
6990
+ #. Translators: Make text bold.
6991
+ #: languages/vue.php:1479
6992
+ 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."
6993
  msgstr ""
6994
 
6995
+ #. Translators: Link to our blog.
6996
+ #: languages/vue.php:1483
6997
+ msgid "%1$sSubscribe to the MonsterInsights blog%2$s for tips on how to get more traffic and grow your business."
6998
  msgstr ""
6999
 
7000
+ #: languages/vue.php:1486
7001
+ msgid "Finish Setup & Exit Wizard"
 
7002
  msgstr ""
7003
 
7004
+ #: languages/vue.php:1489
7005
+ msgid "Checking your website..."
7006
  msgstr ""
7007
 
7008
+ #: languages/vue.php:1492
7009
+ msgid "Welcome to MonsterInsights!"
7010
  msgstr ""
7011
 
7012
+ #: languages/vue.php:1495
7013
+ msgid "Let's get you set up."
7014
  msgstr ""
7015
 
7016
+ #: languages/vue.php:1498
7017
+ msgid "Which category best describes your website?"
7018
  msgstr ""
7019
 
7020
+ #: languages/vue.php:1501
7021
+ msgid "We will recommend the optimal settings for MonsterInsights based on your choice."
7022
  msgstr ""
7023
 
7024
+ #: languages/vue.php:1504
7025
+ msgid "Business Website"
7026
  msgstr ""
7027
 
7028
+ #. Translators: Make text bold.
7029
+ #: languages/vue.php:1508
7030
+ msgid "Publisher %1$s(Blog)%2$s"
7031
  msgstr ""
7032
 
7033
+ #: languages/vue.php:1511
7034
+ msgid "Ecommerce"
7035
  msgstr ""
7036
 
7037
+ #. Translators: The name of the field that is throwing a validation error.
7038
+ #: languages/vue.php:1515
7039
+ msgid "%s can't be empty."
7040
  msgstr ""
7041
 
7042
+ #: languages/vue.php:1518
7043
+ msgid "Duplicate values are not allowed."
7044
  msgstr ""
7045
 
7046
+ #: languages/vue.php:1521
7047
+ msgid "You can add maximum 5 items."
7048
  msgstr ""
7049
 
7050
+ #: languages/vue.php:1524
7051
+ msgid "At least 0 item required."
7052
  msgstr ""
7053
 
7054
+ #: languages/vue.php:1527
7055
+ msgid "Add Another Link Path"
7056
  msgstr ""
7057
 
7058
+ #: languages/vue.php:1530
7059
+ msgid "Remove row"
7060
  msgstr ""
7061
 
7062
+ #. Translators: Number of days.
7063
  #: languages/vue.php:1534
7064
+ msgid "vs. Previous Day"
7065
  msgstr ""
7066
 
7067
  #: languages/vue.php:1537
7068
+ msgid "No change"
7069
  msgstr ""
7070
 
7071
+ #. Translators: Error status and error text.
7072
  #: languages/vue.php:1541
7073
+ msgid "Can't load errors. Error: %1$s, %2$s"
 
 
 
 
7074
  msgstr ""
7075
 
7076
+ #: languages/vue.php:1545
7077
+ msgid "Authenticating"
7078
  msgstr ""
7079
 
7080
+ #: languages/vue.php:1548
7081
+ msgid "Verifying Credentials"
7082
  msgstr ""
7083
 
7084
+ #: languages/vue.php:1551
7085
+ msgid "Your site is connected to MonsterInsights!"
7086
  msgstr ""
7087
 
7088
+ #: languages/vue.php:1554
7089
+ msgid "Deauthenticating"
7090
  msgstr ""
7091
 
7092
+ #: languages/vue.php:1557
7093
+ msgid "You've disconnected your site from MonsterInsights. Your site is no longer being tracked by Google Analytics and you won't see reports anymore."
7094
  msgstr ""
7095
 
7096
+ #: languages/vue.php:1561
7097
+ msgid "Connect MonsterInsights"
7098
  msgstr ""
7099
 
7100
+ #: languages/vue.php:1564
7101
+ msgid "Verify Credentials"
7102
  msgstr ""
7103
 
7104
+ #: languages/vue.php:1567
7105
+ msgid "Website Profile"
 
7106
  msgstr ""
7107
 
7108
+ #: languages/vue.php:1570
7109
+ msgid "Active Profile"
 
7110
  msgstr ""
7111
 
7112
+ #: languages/vue.php:1574
7113
+ msgid "Your website profile has been set at the network level of your WordPress Multisite."
7114
  msgstr ""
7115
 
7116
+ #: languages/vue.php:1578
7117
+ msgid "If you would like to use a different profile for this subsite, you can authenticate below."
7118
  msgstr ""
7119
 
7120
+ #: languages/vue.php:1581
7121
+ msgid "Or manually enter UA code (limited functionality)"
7122
  msgstr ""
7123
 
7124
+ #: languages/vue.php:1584
7125
+ msgid "Force Deauthenticate"
7126
  msgstr ""
7127
 
7128
+ #: languages/vue.php:1587
7129
+ msgid "Disconnect MonsterInsights"
7130
  msgstr ""
7131
 
7132
+ #: languages/vue.php:1590
7133
+ msgid "Congratulations! "
7134
  msgstr ""
7135
 
7136
+ #: languages/vue.php:1593
7137
+ msgid "You Successfully Unlocked the most powerful Analytics plugin"
7138
  msgstr ""
7139
 
7140
+ #: languages/vue.php:1596
7141
+ msgid "There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data."
7142
  msgstr ""
7143
 
7144
+ #: languages/vue.php:1599
7145
+ msgid "No addons found."
7146
  msgstr ""
7147
 
7148
+ #: languages/vue.php:1602
7149
+ msgid "Refresh Addons"
7150
  msgstr ""
7151
 
7152
+ #: languages/vue.php:1605
7153
+ msgid "Refreshing Addons"
7154
  msgstr ""
7155
 
7156
+ #. Translators: Make text green.
7157
  #: languages/vue.php:1609
7158
+ msgid "Upgrade to Pro to unlock addons and other great features. As a valued MonsterInsights Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!"
7159
  msgstr ""
7160
 
7161
  #: languages/vue.php:1612
7162
+ msgid "You appear to be offline. WPForms not installed."
 
 
 
 
7163
  msgstr ""
7164
 
7165
+ #. Translators: Error status and error text.
7166
+ #: languages/vue.php:1616
7167
+ msgid "Can't activate addon. Error: %1$s, %2$s"
7168
  msgstr ""
7169
 
7170
+ #: languages/vue.php:1619
7171
+ msgid "You appear to be offline. Addon not activated."
7172
  msgstr ""
7173
 
7174
+ #. Translators: Error status and error text.
7175
+ #: languages/vue.php:1623
7176
+ msgid "Can't deactivate addon. Error: %1$s, %2$s"
7177
  msgstr ""
7178
 
7179
+ #: languages/vue.php:1626
7180
+ msgid "You appear to be offline. Addon not deactivated."
 
7181
  msgstr ""
7182
 
7183
+ #. Translators: Error status and error text.
7184
+ #: languages/vue.php:1630
7185
+ msgid "Can't install plugin. Error: %1$s, %2$s"
7186
  msgstr ""
7187
 
7188
+ #: languages/vue.php:1633
7189
+ msgid "You appear to be offline. Plugin not installed."
7190
  msgstr ""
7191
 
7192
+ #. Translators: Error status and error text.
7193
  #: languages/vue.php:1637
7194
+ msgid "Can't install addon. Error: %1$s, %2$s"
7195
  msgstr ""
7196
 
7197
  #: languages/vue.php:1640
7198
+ msgid "You appear to be offline. Addon not installed."
 
 
 
 
7199
  msgstr ""
7200
 
7201
+ #. Translators: Error status and error text.
7202
+ #: languages/vue.php:1644
7203
+ msgid "Can't install WPForms. Error: %1$s, %2$s"
7204
  msgstr ""
7205
 
 
7206
  #: languages/vue.php:1650
7207
+ msgid "Right Now"
7208
  msgstr ""
7209
 
7210
  #: languages/vue.php:1653
7211
+ msgid "Active users on site"
7212
  msgstr ""
7213
 
7214
+ #: languages/vue.php:1656
7215
+ msgid "The real-time graph of visitors over time is not currently available for this site. Please try again later."
7216
  msgstr ""
7217
 
7218
+ #: languages/vue.php:1659
7219
+ msgid "Important: this only includes users who are tracked in real-time. Not all users are tracked in real-time including (but not limited to) logged-in site administrators, certain mobile users, and users who match a Google Analytics filter."
7220
  msgstr ""
7221
 
7222
+ #: languages/vue.php:1662
7223
+ msgid "The real-time report automatically updates approximately every 60 seconds."
7224
  msgstr ""
7225
 
7226
+ #. Translators: Number of seconds that have passed since the report was refreshed.
7227
  #: languages/vue.php:1666
7228
+ msgid "The real-time report was last updated %s seconds ago."
7229
  msgstr ""
7230
 
7231
  #: languages/vue.php:1669
7232
+ msgid "The latest data will be automatically shown on this page when it becomes available."
7233
  msgstr ""
7234
 
7235
  #: languages/vue.php:1672
7236
+ msgid "There is no need to refresh the browser (doing so won't have any effect)."
7237
  msgstr ""
7238
 
7239
  #: languages/vue.php:1675
7240
+ msgid "Pageviews Per Minute"
7241
  msgstr ""
7242
 
7243
  #: languages/vue.php:1678
7244
+ msgid "Top Pages"
7245
  msgstr ""
7246
 
7247
  #: languages/vue.php:1681
7248
+ msgid "No pageviews currently."
7249
  msgstr ""
7250
 
7251
  #: languages/vue.php:1684
7252
+ msgid "Page"
7253
  msgstr ""
7254
 
7255
  #: languages/vue.php:1687
7256
+ msgid "Pageview Count"
7257
  msgstr ""
7258
 
7259
  #: languages/vue.php:1690
7260
+ msgid "Percent of Total"
7261
  msgstr ""
7262
 
7263
  #: languages/vue.php:1693
7264
+ msgid "This is the number of active users currently on your site."
7265
  msgstr ""
7266
 
7267
  #: languages/vue.php:1696
7268
+ msgid "This graph shows the number of pageviews for each of the last 30 minutes."
7269
  msgstr ""
7270
 
7271
  #: languages/vue.php:1699
7272
+ msgid "This list shows the top pages users are currently viewing on your site."
7273
  msgstr ""
7274
 
7275
  #: languages/vue.php:1702
7276
+ msgid "View All Real-Time Pageviews"
7277
  msgstr ""
7278
 
7279
  #: languages/vue.php:1705
7280
+ msgid "View All Real-Time Traffic Sources"
7281
  msgstr ""
7282
 
7283
  #: languages/vue.php:1708
7284
+ msgid "View All Real-Time Traffic by Country"
7285
  msgstr ""
7286
 
7287
  #: languages/vue.php:1711
7288
+ msgid "View All Real-Time Traffic by City"
7289
  msgstr ""
7290
 
7291
  #: languages/vue.php:1714
7292
+ msgid "Help Us Improve"
7293
  msgstr ""
7294
 
7295
  #: languages/vue.php:1717
7296
+ msgid "Help us better understand our users and their website needs."
7297
  msgstr ""
7298
 
7299
+ #. Translators: Adds a link to the documentation.
7300
  #: languages/vue.php:1721
7301
+ msgid "If enabled MonsterInsights will send some information about your WordPress site like what plugins and themes you use and which MonsterInsights 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"
7302
  msgstr ""
7303
 
7304
+ #: languages/vue.php:1724
7305
+ msgid "Show"
 
7306
  msgstr ""
7307
 
7308
+ #: languages/vue.php:1727
7309
+ msgid "Export PDF Report"
7310
  msgstr ""
7311
 
7312
+ #: languages/vue.php:1730
7313
+ msgid "You can export PDF reports only in the PRO version."
 
7314
  msgstr ""
7315
 
7316
+ #. Translators: Make text green.
7317
+ #: languages/vue.php:1734
7318
+ msgid "Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s"
7319
  msgstr ""
7320
 
7321
+ #: languages/vue.php:1737
7322
+ msgid "Upgrade to MonsterInsights Pro to Unlock More Actionable Insights"
7323
  msgstr ""
7324
 
7325
+ #: languages/vue.php:1740
7326
+ msgid "It's easy to double your traffic and sales when you know exactly how people find and use your website. MonsterInsights Pro shows you the stats that matter!"
 
7327
  msgstr ""
7328
 
7329
+ #: languages/vue.php:1743
7330
+ msgid "Upgrade to MonsterInsights Pro and Save 50% OFF!"
7331
  msgstr ""
7332
 
7333
+ #. Translators: Makes text bold.
7334
+ #: languages/vue.php:1747
7335
+ msgid "Use coupon code %1$sLITEUPGRADE%2$s"
7336
  msgstr ""
7337
 
7338
+ #. Translators: Placeholder adds a line break.
7339
  #: languages/vue.php:1751
7340
+ msgid "You can customize your %sdate range only in the PRO version."
7341
  msgstr ""
7342
 
7343
  #: languages/vue.php:1754
7344
+ msgid "Import Export"
7345
  msgstr ""
7346
 
7347
+ #: languages/vue.php:1757
7348
+ msgid "PrettyLinks Integration"
 
7349
  msgstr ""
7350
 
7351
+ #: languages/vue.php:1763
7352
+ msgid "Popular Posts Widget"
 
7353
  msgstr ""
7354
 
 
7355
  #: languages/vue.php:1766
7356
+ msgid "Popular Products"
 
 
 
 
 
7357
  msgstr ""
7358
 
7359
+ #: languages/vue.php:1775
7360
+ msgid "Engagement"
 
7361
  msgstr ""
7362
 
 
7363
  #: languages/vue.php:1778
7364
+ msgid "Publisher"
7365
  msgstr ""
7366
 
7367
  #: languages/vue.php:1781
7368
+ msgid "Conversions"
7369
  msgstr ""
7370
 
7371
  #: languages/vue.php:1784
7372
+ msgid "Advanced"
7373
  msgstr ""
7374
 
7375
  #: languages/vue.php:1787
7376
+ msgid "URL Builder"
7377
  msgstr ""
7378
 
7379
+ #: languages/vue.php:1790
7380
+ msgid "No options available"
 
7381
  msgstr ""
7382
 
7383
  #: languages/vue.php:1794
7384
+ msgid "Activating..."
 
 
 
 
7385
  msgstr ""
7386
 
7387
+ #: languages/vue.php:1798
7388
+ msgid "Deactivating..."
7389
  msgstr ""
7390
 
7391
+ #: languages/vue.php:1802
7392
+ msgid "Deactivate"
7393
  msgstr ""
7394
 
7395
+ #. Translators: The status of the addon (installed/active/inactive).
7396
  #: languages/vue.php:1806
7397
+ msgid "Status: %s"
7398
  msgstr ""
7399
 
7400
  #: languages/vue.php:1809
7401
+ msgid "Not Installed"
7402
  msgstr ""
7403
 
7404
  #: languages/vue.php:1812
7405
+ msgid "Network Active"
7406
  msgstr ""
7407
 
7408
  #: languages/vue.php:1815
7409
+ msgid "Active"
7410
  msgstr ""
7411
 
7412
  #: languages/vue.php:1818
7413
+ msgid "Inactive"
 
 
 
 
 
 
 
 
 
 
 
 
7414
  msgstr ""
7415
 
7416
+ #: languages/vue.php:1831
7417
+ msgid "Last 30 Days Insights for:"
7418
  msgstr ""
7419
 
7420
+ #: languages/vue.php:1834
7421
+ msgid "Your Website"
7422
  msgstr ""
7423
 
7424
+ #: languages/vue.php:1837
7425
+ msgid "Avg. Duration"
7426
  msgstr ""
7427
 
7428
+ #: languages/vue.php:1840
7429
+ msgid "More data is available"
7430
  msgstr ""
7431
 
7432
+ #: languages/vue.php:1843
7433
+ msgid "Want to see page-specific stats?"
7434
  msgstr ""
7435
 
7436
+ #. Translators: Placeholder is replaced with WPForms.
7437
+ #: languages/vue.php:1847
7438
+ msgid "Recommended Plugin: %s"
7439
  msgstr ""
7440
 
7441
+ #: languages/vue.php:1850
7442
+ msgid "Proceed"
7443
  msgstr ""
7444
 
7445
+ #: languages/vue.php:1853
7446
+ msgid "Connection Information"
 
7447
  msgstr ""
7448
 
 
7449
  #: languages/vue.php:1856
7450
+ 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."
7451
  msgstr ""
7452
 
7453
  #: languages/vue.php:1859
7454
+ msgid "Hostname"
7455
  msgstr ""
7456
 
7457
  #: languages/vue.php:1862
7458
+ msgid "FTP Username"
7459
  msgstr ""
7460
 
7461
  #: languages/vue.php:1865
7462
+ msgid "FTP Password"
7463
  msgstr ""
7464
 
7465
  #: languages/vue.php:1868
7466
+ msgid "This password will not be stored on the server."
7467
  msgstr ""
7468
 
7469
  #: languages/vue.php:1871
7470
+ msgid "Connection Type"
7471
  msgstr ""
7472
 
7473
  #: languages/vue.php:1874
7474
+ msgid "Cancel"
 
 
 
 
7475
  msgstr ""
7476
 
7477
  #: languages/vue.php:1880
7478
+ msgid "Congratulations!"
7479
  msgstr ""
7480
 
7481
+ #. Translators: Add link to YouTube video and Onboarding Wizard.
7482
+ #: languages/vue.php:1884
7483
+ msgid "MonsterInsights makes it easy to connect your website with Google Analytics and see all important website stats right inside your WordPress dashboard. In order to setup website analytics, please take a look at our %1$sGetting started video%2$s or use our %3$s to get you quickly set up."
7484
  msgstr ""
7485
 
7486
+ #. Translators: Add link to YouTube video and Onboarding Wizard.
7487
+ #: languages/vue.php:1888
7488
+ msgid "Onboarding Wizard"
7489
  msgstr ""
7490
 
7491
+ #: languages/vue.php:1891
7492
+ msgid "You are now connected with MonsterInsights. We make it effortless for you to implement Google Analytics tracking and see the stats that matter, right inside the WordPress dashboard."
7493
  msgstr ""
7494
 
7495
+ #: languages/vue.php:1894
7496
+ msgid "Time to Purchase"
7497
  msgstr ""
7498
 
7499
+ #: languages/vue.php:1897
7500
+ msgid "This list shows how many days from first visit it took users to purchase products from your site."
7501
  msgstr ""
7502
 
7503
+ #: languages/vue.php:1900
7504
+ msgid "Sessions to Purchase"
7505
  msgstr ""
7506
 
7507
+ #: languages/vue.php:1903
7508
+ msgid "This list shows the number of sessions it took users before they purchased a product from your website."
7509
  msgstr ""
7510
 
7511
+ #: languages/vue.php:1906
7512
+ msgid "Top Landing Pages"
7513
  msgstr ""
7514
 
7515
+ #: languages/vue.php:1909
7516
+ msgid "This list shows the top pages users first land on when visiting your website."
7517
  msgstr ""
7518
 
7519
+ #: languages/vue.php:1912
7520
+ msgid "Top Exit Pages"
7521
  msgstr ""
7522
 
7523
+ #: languages/vue.php:1915
7524
+ msgid "This list shows the top pages users exit your website from."
7525
  msgstr ""
7526
 
7527
+ #: languages/vue.php:1918
7528
+ msgid "Top Outbound Links"
7529
  msgstr ""
7530
 
7531
+ #: languages/vue.php:1921
7532
+ msgid "This list shows the top links clicked on your website that go to another website."
7533
  msgstr ""
7534
 
7535
+ #: languages/vue.php:1924
7536
+ msgid "Top Affiliate Links"
7537
  msgstr ""
7538
 
7539
+ #: languages/vue.php:1927
7540
+ msgid "This list shows the top affiliate links your visitors clicked on."
7541
  msgstr ""
7542
 
7543
+ #: languages/vue.php:1930
7544
+ msgid "Top Download Links"
7545
  msgstr ""
7546
 
7547
+ #: languages/vue.php:1933
7548
+ msgid "This list shows the download links your visitors clicked the most."
 
7549
  msgstr ""
7550
 
 
7551
  #: languages/vue.php:1936
7552
+ msgid "Top Products"
7553
  msgstr ""
7554
 
7555
  #: languages/vue.php:1939
7556
+ msgid "This list shows the top selling products on your website."
7557
  msgstr ""
7558
 
7559
  #: languages/vue.php:1942
7560
+ msgid "Top Conversion Sources"
7561
  msgstr ""
7562
 
7563
  #: languages/vue.php:1945
7564
+ msgid "This list shows the top referral websites in terms of product revenue."
7565
  msgstr ""
7566
 
7567
  #: languages/vue.php:1948
7568
+ msgid "Total Add/Remove"
7569
  msgstr ""
7570
 
7571
  #: languages/vue.php:1951
7572
+ msgid "Website profile"
7573
  msgstr ""
7574
 
7575
  #: languages/vue.php:1954
7576
+ msgid "Active profile"
7577
  msgstr ""
7578
 
7579
  #: languages/vue.php:1957
7580
+ msgid "Skip and Keep Connection"
7581
  msgstr ""
7582
 
7583
+ #. Translators: Number of days in interval.
7584
+ #: languages/vue.php:1961
7585
+ msgid "Last %s days"
7586
  msgstr ""
7587
 
7588
+ #. Translators: Add links to documentation.
7589
+ #: languages/vue.php:1965
7590
+ msgid "This allows you to track custom affiliate links. A path of /go/ would match urls that start with that. The label is appended onto the end of the string \"outbound-link-\", to provide unique labels for these links in Google Analytics. Complete documentation on affiliate links is available %1$shere%2$s."
7591
  msgstr ""
7592
 
7593
+ #: languages/vue.php:1968
7594
+ msgid "Our affiliate link tracking works by setting path for internal links to track as outbound links."
7595
  msgstr ""
7596
 
7597
+ #: languages/vue.php:1974
7598
+ msgid "The MonsterInsights Headline Analyzer tool in the Gutenberg editor enables you to write irresistible SEO-friendly headlines that drive traffic, social media shares, and rank better in search results."
7599
  msgstr ""
7600
 
7601
+ #: languages/vue.php:1977
7602
+ msgid "Disable the Headline Analyzer"
 
7603
  msgstr ""
7604
 
 
7605
  #: languages/vue.php:1980
7606
+ msgid "Enable Demographics and Interests Reports for Remarketing and Advertising"
7607
  msgstr ""
7608
 
7609
+ #: languages/vue.php:1983
7610
+ msgid "Anonymize IP Addresses"
 
7611
  msgstr ""
7612
 
7613
+ #: languages/vue.php:1986
7614
+ msgid "Link Attribution"
 
7615
  msgstr ""
7616
 
7617
+ #: languages/vue.php:1989
7618
+ msgid "Enable Enhanced Link Attribution"
7619
  msgstr ""
7620
 
7621
+ #: languages/vue.php:1992
7622
+ msgid "Enable Anchor Tracking"
7623
  msgstr ""
7624
 
7625
+ #: languages/vue.php:1995
7626
+ msgid "Enable allowAnchor"
7627
+ msgstr ""
7628
+
7629
+ #: languages/vue.php:1998
7630
+ msgid "Enable allowLinker"
7631
  msgstr ""
7632
 
 
7633
  #: languages/vue.php:2001
7634
+ msgid "Enable Tag Links in RSS"
7635
  msgstr ""
7636
 
7637
  #: languages/vue.php:2004
7638
+ msgid "File Downloads"
7639
  msgstr ""
7640
 
7641
+ #: languages/vue.php:2007
7642
+ msgid "Extensions of Files to Track as Downloads"
 
7643
  msgstr ""
7644
 
7645
+ #: languages/vue.php:2010
7646
+ msgid "MonsterInsights will send an event to Google Analytics if a link to a file has one of the above extensions."
7647
  msgstr ""
7648
 
7649
+ #. Translators: Add links to the documentation.
7650
+ #: languages/vue.php:2014
7651
+ msgid "Enable this setting to add the Demographics and Remarketing features to your Google Analytics tracking code. Make sure to enable Demographics and Remarketing in your Google Analytics account. We have a guide for how to do that in our %1$sknowledge base%2$s. For more information about Remarketing, we refer you to %3$sGoogle's documentation%4$s. Note that usage of this function is affected by privacy and cookie laws around the world. Be sure to follow the laws that affect your target audience."
7652
  msgstr ""
7653
 
7654
+ #. Translators: Adds a link to the documentation.
7655
+ #: languages/vue.php:2018
7656
+ msgid "This adds %1$sanonymizeIp%2$s, telling Google Analytics to anonymize the information sent by the tracker objects by removing the last octet of the IP address prior to its storage."
7657
  msgstr ""
7658
 
7659
+ #. Translators: Adds a link to the documentation.
7660
  #: languages/vue.php:2022
7661
+ msgid "Adds the Enhanced Link Attribution (retain link) code to improve the accuracy of your In-Page Analytics report by automatically differentiating between multiple links to the same URL on a single page by using link element IDs."
7662
  msgstr ""
7663
 
7664
  #: languages/vue.php:2025
7665
+ msgid "Many WordPress \"1-page\" style themes rely on anchor tags for navigation to show virtual pages. The problem is that to Google Analytics, these are all just a single page, and it makes it hard to get meaningful statistics about pages viewed. This feature allows proper tracking in those themes."
 
 
 
 
7666
  msgstr ""
7667
 
7668
+ #. Translators: Adds a link to the documentation.
7669
+ #: languages/vue.php:2029
7670
+ msgid "This adds %1$sallowAnchor%2$s to the create command of the pageview hit tracking code, and makes RSS link tagging use a # as well."
 
7671
  msgstr ""
7672
 
7673
+ #. Translators: Adds a link to the documentation.
7674
+ #: languages/vue.php:2033
7675
+ msgid "Enabling %1$scross-domain tracking (additional setup required)%2$s allows you to track users across multiple properties you own (such as example-1.com and example-2.com as a single session. It also allows you fix an issue so that when a user has to go to an off-site hosted payment gateway to finish a purchase it doesn't count it as referral traffic from that gateway but maintains the visit as part of the same session.) It is required that the other site includes a Google Analytics tracker with the same UA Code."
7676
  msgstr ""
7677
 
7678
+ #. Translators: Adds a link to the documentation.
7679
+ #: languages/vue.php:2037
7680
+ msgid "Do not use this feature if you use FeedBurner, as FeedBurner can do this automatically and better than this plugin can. Check this %1$shelp page%2$s for info on how to enable this feature in FeedBurner."
7681
  msgstr ""
7682
 
7683
+ #: languages/vue.php:2040
7684
+ msgid "Add domain"
7685
  msgstr ""
7686
 
7687
+ #. Translators: Example domain.
7688
+ #: languages/vue.php:2044
7689
+ msgid "Domain (example: %s)"
7690
  msgstr ""
7691
 
7692
+ #. Translators: Current site domain to be avoided.
7693
  #: languages/vue.php:2048
7694
+ msgid "Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s )."
7695
  msgstr ""
7696
 
7697
  #: languages/vue.php:2051
7698
+ msgid "Cross Domain Tracking"
7699
  msgstr ""
7700
 
7701
+ #. Translators: Adds a link to the documentation.
7702
+ #: languages/vue.php:2055
7703
+ msgid "Cross domain tracking makes it possible for Analytics to see sessions on two related sites as a single session. More info on specific setup steps can be found in our %1$sknowledge base%2$s."
7704
  msgstr ""
7705
 
7706
+ #. Translators: placeholders make text small.
7707
+ #: languages/vue.php:2059
7708
+ msgid "Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s"
7709
  msgstr ""
7710
 
7711
+ #. Translators: placeholders make text small.
7712
+ #: languages/vue.php:2063
7713
+ msgid "Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s"
7714
  msgstr ""
7715
 
7716
+ #. Translators: placeholders make text small.
7717
+ #: languages/vue.php:2067
7718
+ msgid "None %1$s- Manually update everything.%2$s"
7719
  msgstr ""
7720
 
7721
+ #. Translators: Adds a link to the general settings tab.
7722
+ #: languages/vue.php:2071
7723
+ msgid "It looks like you added a Google Analytics tracking code in the custom code area, this can potentially prevent proper tracking. If you want to use a manual UA please use the setting in the %1$sGeneral%2$s tab."
7724
  msgstr ""
7725
 
7726
+ #: languages/vue.php:2074
7727
+ msgid "Email Summaries"
7728
  msgstr ""
7729
 
7730
+ #: languages/vue.php:2077
7731
+ msgid "Export PDF Reports"
7732
  msgstr ""
7733
 
7734
+ #: languages/vue.php:2080
7735
+ msgid "Permissions"
7736
  msgstr ""
7737
 
7738
+ #: languages/vue.php:2083
7739
+ msgid "Allow These User Roles to See Reports"
 
7740
  msgstr ""
7741
 
7742
  #: languages/vue.php:2086
7743
+ msgid "Users that have at least one of these roles will be able to view the reports."
7744
  msgstr ""
7745
 
7746
  #: languages/vue.php:2089
7747
+ msgid "Allow These User Roles to Save Settings"
7748
  msgstr ""
7749
 
7750
  #: languages/vue.php:2092
7751
+ msgid "Users that have at least one of these roles will be able to view and save the settings panel."
7752
  msgstr ""
7753
 
7754
  #: languages/vue.php:2095
7755
+ msgid "Users that have at least one of these roles will be able to view and save the settings panel, along with any user with the manage_options capability."
7756
  msgstr ""
7757
 
7758
  #: languages/vue.php:2098
7759
+ msgid "Exclude These User Roles From Tracking"
7760
  msgstr ""
7761
 
7762
  #: languages/vue.php:2101
7763
+ msgid "Users that have at least one of these roles will not be tracked into Google Analytics."
7764
  msgstr ""
7765
 
7766
  #: languages/vue.php:2104
7767
+ msgid "Performance"
7768
  msgstr ""
7769
 
7770
  #: languages/vue.php:2107
7771
+ msgid "Custom code"
7772
  msgstr ""
7773
 
7774
+ #. Translators: Adds a link to the Google reference.
7775
+ #: languages/vue.php:2111
7776
+ msgid "Not for the average user: this allows you to add a line of code, to be added before the %1$spageview is sent%2$s."
7777
  msgstr ""
7778
 
7779
+ #: languages/vue.php:2117
7780
+ msgid "Automatic Updates"
7781
  msgstr ""
7782
 
7783
+ #: languages/vue.php:2120
7784
+ msgid "You must have the \"unfiltered_html\" capability to view/edit this setting."
7785
  msgstr ""
7786
 
7787
+ #: languages/vue.php:2123
7788
+ msgid "Hide Admin Bar Reports"
7789
  msgstr ""
7790
 
7791
+ #. Translators: placeholders make text small.
7792
+ #: languages/vue.php:2127
7793
+ msgid "Enabled %1$s- Show reports and dashboard widget.%2$s"
7794
  msgstr ""
7795
 
7796
+ #. Translators: placeholders make text small.
7797
+ #: languages/vue.php:2131
7798
+ msgid "Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s"
7799
  msgstr ""
7800
 
7801
+ #. Translators: placeholders make text small.
7802
+ #: languages/vue.php:2135
7803
+ msgid "Disabled %1$s- Hide reports and dashboard widget.%2$s"
7804
  msgstr ""
7805
 
7806
+ #: languages/vue.php:2138
7807
+ msgid "Caching"
7808
  msgstr ""
7809
 
7810
+ #: languages/vue.php:2141
7811
+ msgid "Enable Data Caching"
7812
+ msgstr ""
7813
+
7814
+ #: languages/vue.php:2144
7815
+ msgid "Refresh Cache Every"
7816
+ msgstr ""
7817
+
7818
+ #: languages/vue.php:2147
7819
+ msgid "Choose how often to refresh the cache."
7820
+ msgstr ""
7821
+
7822
+ #: languages/vue.php:2150
7823
+ msgid "Enable Ajaxify"
7824
+ msgstr ""
7825
+
7826
+ #: languages/vue.php:2153
7827
+ msgid "Ajaxify Widget"
7828
+ msgstr ""
7829
+
7830
+ #: languages/vue.php:2156
7831
+ msgid "Use to bypass page caching."
7832
  msgstr ""
7833
 
 
7834
  #: languages/vue.php:2159
7835
+ msgid "Empty Cache"
7836
  msgstr ""
7837
 
7838
  #: languages/vue.php:2162
7839
+ msgid "Click to manually wipe the cache right now."
7840
  msgstr ""
7841
 
7842
  #: languages/vue.php:2165
7843
+ msgid "Popular posts cache emptied"
7844
  msgstr ""
7845
 
7846
  #: languages/vue.php:2168
7847
+ msgid "Error emptying the popular posts cache. Please try again."
7848
  msgstr ""
7849
 
7850
  #: languages/vue.php:2171
7851
+ msgid "Choose Theme"
7852
  msgstr ""
7853
 
7854
  #: languages/vue.php:2174
7855
+ msgid "Widget Styling"
7856
  msgstr ""
7857
 
7858
+ #: languages/vue.php:2177
7859
+ msgid "Choose how you want to determine the colors, font sizes and spacing of the widget."
7860
  msgstr ""
7861
 
7862
+ #: languages/vue.php:2180
7863
+ msgid "Sort By"
7864
  msgstr ""
7865
 
7866
+ #: languages/vue.php:2183
7867
+ msgid "Choose how you'd like the widget to determine your popular posts."
7868
  msgstr ""
7869
 
7870
+ #: languages/vue.php:2186
7871
+ msgid "Display Title"
 
7872
  msgstr ""
7873
 
7874
  #: languages/vue.php:2192
7875
+ msgid "Title your widget and set it’s display preferences."
7876
  msgstr ""
7877
 
7878
+ #: languages/vue.php:2195
7879
+ msgid "Include in Post Types"
 
7880
  msgstr ""
7881
 
7882
+ #: languages/vue.php:2198
7883
+ msgid "Exclude from specific posts"
 
7884
  msgstr ""
7885
 
7886
+ #. Translators: Placeholders make the text bold.
7887
+ #: languages/vue.php:2202
7888
+ msgid "Choose which Post Types the widget %1$sWILL%2$s be placed."
7889
  msgstr ""
7890
 
7891
+ #. Translators: Placeholders make the text bold.
7892
  #: languages/vue.php:2206
7893
+ msgid "Choose from which Posts the widget %1$sWILL NOT%2$s be placed."
7894
  msgstr ""
7895
 
7896
  #: languages/vue.php:2209
7897
+ msgid "Loading Themes"
 
 
 
 
7898
  msgstr ""
7899
 
7900
+ #. Translators: placeholders make text small.
7901
+ #: languages/vue.php:2213
7902
+ msgid "Default Styles %1$s- As seen above.%2$s"
7903
  msgstr ""
7904
 
7905
+ #. Translators: placeholders make text small.
7906
+ #: languages/vue.php:2217
7907
+ msgid "No Styles %1$s- Use your own CSS.%2$s"
7908
  msgstr ""
7909
 
7910
+ #. Translators: placeholders make text small.
7911
  #: languages/vue.php:2221
7912
+ msgid "Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s"
 
 
 
 
7913
  msgstr ""
7914
 
7915
+ #. Translators: placeholders make text small.
7916
+ #: languages/vue.php:2225
7917
+ msgid "SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s"
7918
  msgstr ""
7919
 
7920
+ #. Translators: placeholders make text small.
7921
+ #: languages/vue.php:2229
7922
+ msgid "Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s"
7923
  msgstr ""
7924
 
7925
+ #: languages/vue.php:2232
7926
+ msgid "Placement"
7927
  msgstr ""
7928
 
7929
+ #: languages/vue.php:2235
7930
+ msgid "Choose how you'd like to place the widget."
7931
  msgstr ""
7932
 
7933
+ #: languages/vue.php:2238
7934
+ msgid "Insert After"
7935
  msgstr ""
7936
 
7937
+ #: languages/vue.php:2241
7938
+ msgid "Choose where in the post body the widget will be placed."
 
7939
  msgstr ""
7940
 
7941
  #: languages/vue.php:2246
7942
+ msgid "Customize Design"
7943
  msgstr ""
7944
 
7945
  #: languages/vue.php:2249
7946
+ msgid "words"
7947
  msgstr ""
7948
 
7949
  #: languages/vue.php:2252
7950
+ msgid "Please select at least one post to display."
 
 
 
 
7951
  msgstr ""
7952
 
7953
+ #. Translators: placeholders make text small.
7954
+ #: languages/vue.php:2256
7955
+ msgid "Automatic %1$s- The widget is automatically placed inside the post body.%2$s"
7956
  msgstr ""
7957
 
7958
+ #. Translators: placeholders make text small.
7959
+ #: languages/vue.php:2260
7960
+ msgid "Manual %1$s- Manually place the widget using Gutenberg blocks or using our shortcode.%2$s"
7961
  msgstr ""
7962
 
7963
+ #: languages/vue.php:2263
7964
+ msgid "View notifications"
7965
  msgstr ""
7966
 
7967
+ #: languages/vue.php:2266
7968
+ msgid "Make your MonsterInsights campaign links prettier with Pretty Links!"
7969
  msgstr ""
7970
 
7971
+ #: languages/vue.php:2269
7972
+ msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable, totally shareable links."
7973
  msgstr ""
7974
 
7975
+ #: languages/vue.php:2272
7976
+ msgid "Take your MonsterInsights campaign links from our URL Builder and shorten them with Pretty Links!"
7977
  msgstr ""
7978
 
7979
+ #: languages/vue.php:2275
7980
+ msgid "Over 200,000 websites use Pretty Links!"
7981
  msgstr ""
7982
 
7983
+ #: languages/vue.php:2278
7984
+ msgid "Install Pretty Links"
7985
  msgstr ""
7986
 
7987
+ #: languages/vue.php:2281
7988
+ msgid "Pretty Links Installed & Activated"
7989
  msgstr ""
7990
 
7991
+ #: languages/vue.php:2284
7992
+ msgid "Download Pretty Links"
7993
  msgstr ""
7994
 
7995
+ #: languages/vue.php:2287
7996
+ msgid "Install Pretty Links from the WordPress.org plugin repository."
7997
  msgstr ""
7998
 
7999
+ #: languages/vue.php:2290
8000
+ msgid "Activate Pretty Links"
8001
  msgstr ""
8002
 
8003
+ #: languages/vue.php:2293
8004
+ msgid "Activating Pretty Links..."
8005
  msgstr ""
8006
 
8007
+ #: languages/vue.php:2296
8008
+ msgid "Create New Pretty Link"
8009
  msgstr ""
8010
 
8011
+ #: languages/vue.php:2299
8012
+ msgid "Create a New Pretty Link"
8013
  msgstr ""
8014
 
8015
+ #: languages/vue.php:2302
8016
+ msgid "Grab your campaign link and paste it into the Target URL field."
8017
  msgstr ""
8018
 
8019
+ #: languages/vue.php:2305
8020
+ msgid "Custom Campaign Parameters"
8021
  msgstr ""
8022
 
8023
+ #: languages/vue.php:2308
8024
+ msgid "The URL builder helps you add parameters to your URLs you use in custom web or email ad campaigns."
8025
  msgstr ""
8026
 
8027
+ #: languages/vue.php:2311
8028
+ msgid "A custom campaign is any ad campaign not using the AdWords auto-tagging feature. When users click one of the custom links, the unique parameters are sent to your Analytics account, so you can identify the URLs that are the most effective in attracting users to your content."
8029
  msgstr ""
8030
 
8031
+ #. Translators: Marks the field as required.
8032
  #: languages/vue.php:2315
8033
+ msgid "Website URL %s"
8034
  msgstr ""
8035
 
8036
+ #. Translators: Display the current website url in italic.
8037
+ #: languages/vue.php:2319
8038
+ msgid "The full website URL (e.g. %1$s %2$s%3$s)"
8039
  msgstr ""
8040
 
8041
+ #. Translators: Marks the field as required.
8042
+ #: languages/vue.php:2323
8043
+ msgid "Campaign Source %s"
8044
  msgstr ""
8045
 
8046
+ #. Translators: Make the text italic.
8047
+ #: languages/vue.php:2327
8048
+ msgid "Enter a referrer (e.g. %1$sfacebook, newsletter, google%2$s)"
8049
  msgstr ""
8050
 
8051
+ #. Translators: Make the text italic.
8052
+ #: languages/vue.php:2331
8053
+ msgid "Enter a marketing medium (e.g. %1$scpc, banner, email%2$s)"
8054
  msgstr ""
8055
 
8056
+ #. Translators: Make the text italic.
8057
+ #: languages/vue.php:2335
8058
+ msgid "Enter a name to easily identify (e.g. %1$sspring_sale%2$s)"
8059
  msgstr ""
8060
 
8061
+ #: languages/vue.php:2338
8062
+ msgid "Enter the paid keyword"
8063
  msgstr ""
8064
 
8065
+ #: languages/vue.php:2341
8066
+ msgid "Enter something to differentiate ads"
8067
  msgstr ""
8068
 
 
8069
  #: languages/vue.php:2344
8070
+ msgid "Use Fragment"
8071
  msgstr ""
8072
 
8073
+ #. Translators: Make the text bold.
8074
+ #: languages/vue.php:2348
8075
+ msgid "Set the parameters in the fragment portion of the URL %1$s(not recommended)%2$s"
8076
  msgstr ""
8077
 
8078
+ #: languages/vue.php:2351
8079
+ msgid "URL to use"
8080
  msgstr ""
8081
 
8082
+ #: languages/vue.php:2354
8083
+ msgid "(Updates automatically)"
8084
  msgstr ""
8085
 
8086
  #: languages/vue.php:2357
8087
+ msgid "Copy to Clipboard"
8088
  msgstr ""
8089
 
8090
+ #: languages/vue.php:2360
8091
+ msgid "Copy to Pretty Links"
8092
  msgstr ""
8093
 
8094
+ #: languages/vue.php:2363
8095
+ msgid "Make your campaign links prettier!"
8096
  msgstr ""
8097
 
8098
+ #: languages/vue.php:2366
8099
+ msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable and totally shareable links."
8100
  msgstr ""
8101
 
8102
+ #: languages/vue.php:2369
8103
+ msgid "More Information & Examples"
8104
  msgstr ""
8105
 
8106
+ #: languages/vue.php:2372
8107
+ msgid "The following table gives a detailed explanation and example of each of the campaign parameters."
8108
  msgstr ""
8109
 
8110
+ #: languages/vue.php:2375
8111
+ msgid "Campaign Source"
8112
  msgstr ""
8113
 
8114
+ #: languages/vue.php:2378
8115
+ msgid "Required. Use utm_source to identify a search engine, newsletter name, or other source."
8116
  msgstr ""
8117
 
8118
+ #: languages/vue.php:2381
8119
+ msgid "Campaign Medium"
8120
  msgstr ""
8121
 
8122
+ #: languages/vue.php:2384
8123
+ msgid "Use utm_medium to identify a medium such as email or cost-per-click."
8124
  msgstr ""
8125
 
8126
+ #: languages/vue.php:2387
8127
+ msgid "Campaign Name"
8128
  msgstr ""
8129
 
8130
+ #: languages/vue.php:2390
8131
+ msgid "Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign."
8132
  msgstr ""
8133
 
8134
+ #: languages/vue.php:2393
8135
+ msgid "Campaign Term"
8136
  msgstr ""
8137
 
8138
+ #: languages/vue.php:2396
8139
+ msgid "Used for paid search. Use utm_term to note the keywords for this ad."
8140
  msgstr ""
8141
 
8142
+ #: languages/vue.php:2399
8143
+ msgid "Campaign Content"
8144
  msgstr ""
8145
 
8146
+ #: languages/vue.php:2402
8147
+ msgid "Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL."
8148
  msgstr ""
8149
 
8150
+ #. Translators: Example.
8151
+ #: languages/vue.php:2406
8152
+ msgid "Example: %s"
8153
  msgstr ""
8154
 
8155
+ #. Translators: Examples.
8156
  #: languages/vue.php:2410
8157
+ msgid "Examples: %s"
8158
+ msgstr ""
8159
+
8160
+ #: languages/vue.php:2413
8161
+ msgid "About Campaigns"
8162
+ msgstr ""
8163
+
8164
+ #: languages/vue.php:2416
8165
+ msgid "About Custom Campaigns"
8166
  msgstr ""
8167
 
8168
  #: languages/vue.php:2419
8169
+ msgid "Best Practices for Creating Custom Campaigns"
8170
  msgstr ""
8171
 
8172
  #: languages/vue.php:2422
8173
+ msgid "About the Referral Traffic Report"
8174
  msgstr ""
8175
 
8176
  #: languages/vue.php:2425
8177
+ msgid "About Traffic Source Dimensions"
8178
  msgstr ""
8179
 
8180
  #: languages/vue.php:2428
8181
+ msgid "AdWords Auto-Tagging"
8182
  msgstr ""
8183
 
8184
  #: languages/vue.php:2431
8185
+ msgid "Additional Information"
 
 
 
 
8186
  msgstr ""
8187
 
8188
+ #. Translators: Error status and error text.
8189
+ #: languages/vue.php:2435
8190
+ msgid "Can't deactivate the license. Error: %1$s, %2$s"
8191
  msgstr ""
8192
 
8193
+ #. Translators: Error status and error text.
8194
+ #: languages/vue.php:2439
8195
+ msgid "Can't upgrade to PRO please try again. Error: %1$s, %2$s"
8196
  msgstr ""
8197
 
8198
+ #. Translators: Error status and error text.
8199
  #: languages/vue.php:2443
8200
+ msgid "Can't load license details. Error: %1$s, %2$s"
8201
  msgstr ""
8202
 
8203
  #: languages/vue.php:2446
8204
+ msgid "Error loading license details"
 
 
 
 
8205
  msgstr ""
8206
 
8207
+ #. Translators: Error status and error text.
8208
+ #: languages/vue.php:2450
8209
+ msgid "Can't verify the license. Error: %1$s, %2$s"
8210
  msgstr ""
8211
 
8212
+ #. Translators: Error status and error text.
8213
+ #: languages/vue.php:2454
8214
+ msgid "Can't validate the license. Error: %1$s, %2$s"
8215
  msgstr ""
8216
 
8217
+ #: languages/vue.php:2457
8218
+ msgid "See who's viewing and submitting your forms, so you can increase your conversion rate."
8219
  msgstr ""
8220
 
8221
+ #: languages/vue.php:2460
8222
+ msgid "Use Google Optimize to retarget your website visitors and perform A/B split tests with ease."
8223
  msgstr ""
8224
 
8225
+ #: languages/vue.php:2463
8226
+ msgid "Add Custom Dimensions and track who's the most popular author on your site, which post types get the most traffic, and more"
8227
  msgstr ""
8228
 
8229
+ #: languages/vue.php:2466
8230
+ msgid "See All Your Important Store Metrics in One Place"
8231
  msgstr ""
8232
 
8233
+ #: languages/vue.php:2469
8234
+ msgid "Get an Answer to All Your Top Ecommerce Questions From a Single Report"
8235
  msgstr ""
8236
 
8237
+ #: languages/vue.php:2472
8238
+ msgid "ONE-CLICK INTEGRATIONS"
8239
  msgstr ""
8240
 
8241
+ #: languages/vue.php:2475
8242
+ msgid "Enable Ecommerce Tracking and Grow Your Business with Confidence"
8243
  msgstr ""
8244
 
8245
+ #: languages/vue.php:2478
8246
+ msgid "MonsterInsights Ecommerce Addon makes it easy to setup enhanced eCommerce tracking, so you can see all your important eCommerce metrics like total revenue, conversion rate, average order value, top products, top referral sources, and more in a single report right inside your WordPress dashboard."
8247
  msgstr ""
8248
 
8249
+ #: languages/vue.php:2481
8250
+ msgid "Show in widget mode"
8251
  msgstr ""
8252
 
8253
+ #: languages/vue.php:2484
8254
+ msgid "Show in full-width mode"
8255
  msgstr ""
8256
 
8257
  #: languages/vue.php:2488
8258
+ msgid "Upgrade"
8259
  msgstr ""
8260
 
8261
  #: languages/vue.php:2491
8262
+ msgid ""
8263
+ "The EU Compliance addon allows you to improve compliance with GDPR\n"
8264
+ " and other privacy regulations."
8265
  msgstr ""
8266
 
8267
+ #: languages/vue.php:2495
8268
+ msgid "EU Compliance"
8269
  msgstr ""
8270
 
8271
+ #: languages/vue.php:2498
8272
+ msgid "Adjust the sample rate so you don't exceed Google Analytics' processing limit. Can also be used to enable Google Optimize for A/B testing and personalization."
8273
  msgstr ""
8274
 
8275
+ #: languages/vue.php:2504
8276
+ msgid "Wide"
8277
  msgstr ""
8278
 
8279
+ #: languages/vue.php:2507
8280
+ msgid "Narrow"
8281
  msgstr ""
8282
 
8283
+ #: languages/vue.php:2511
8284
+ msgid "Title"
8285
  msgstr ""
8286
 
8287
+ #: languages/vue.php:2515
8288
+ msgid "Color"
8289
  msgstr ""
8290
 
8291
+ #: languages/vue.php:2519
8292
+ msgid "Size"
8293
  msgstr ""
8294
 
8295
+ #: languages/vue.php:2523
8296
+ msgid "Border"
8297
  msgstr ""
8298
 
8299
+ #: languages/vue.php:2526
8300
+ msgid "Author/Date"
8301
  msgstr ""
8302
 
8303
+ #: languages/vue.php:2530
8304
+ msgid "Label"
8305
  msgstr ""
8306
 
8307
+ #: languages/vue.php:2534
8308
+ msgid "Background"
8309
  msgstr ""
8310
 
8311
+ #: languages/vue.php:2546
8312
+ msgid "Choose which content you would like displayed in the widget."
8313
  msgstr ""
8314
 
8315
+ #: languages/vue.php:2558
8316
+ msgid "Comments"
8317
  msgstr ""
8318
 
8319
+ #: languages/vue.php:2564
8320
+ msgid "Choose how many posts you’d like displayed in the widget."
8321
  msgstr ""
8322
 
8323
+ #. Translators: Page number of total pages. 1 & 2 make the first part of the text bold.
8324
+ #: languages/vue.php:2568
8325
+ msgid "%1$sPage %3$s%2$s of %4$s"
8326
  msgstr ""
8327
 
8328
+ #: languages/vue.php:2571
8329
+ msgid "SharedCount API Key"
8330
  msgstr ""
8331
 
8332
+ #: languages/vue.php:2574
8333
+ msgid "Insert your sharedcount API key found in your %1$sSettings%2$s panel. After, click Start Indexing."
8334
  msgstr ""
8335
 
8336
+ #: languages/vue.php:2577
8337
+ msgid "Start Indexing"
8338
  msgstr ""
8339
 
8340
+ #: languages/vue.php:2580
8341
+ msgid "%1$sIndex Progress: %2$s%%.%3$s You may leave this page during indexing."
8342
  msgstr ""
8343
 
8344
+ #: languages/vue.php:2583
8345
+ msgid "Indexing completed, counts will update automatically every day."
8346
  msgstr ""
8347
 
8348
+ #: languages/vue.php:2586
8349
+ msgid "Select posts/search"
8350
  msgstr ""
8351
 
8352
+ #: languages/vue.php:2589
8353
+ msgid "Oops! No posts found."
8354
  msgstr ""
8355
 
8356
+ #: languages/vue.php:2592
8357
+ msgid "Search by post title"
8358
  msgstr ""
8359
 
8360
+ #: languages/vue.php:2595
8361
+ msgid "Can't load posts."
8362
  msgstr ""
8363
 
8364
+ #: languages/vue.php:2598
8365
+ msgid "Sartorial taxidermy venmo you probably haven't heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu."
8366
  msgstr ""
8367
 
8368
+ #: languages/vue.php:2601
8369
+ msgid "Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan"
8370
  msgstr ""
8371
 
8372
+ #: languages/vue.php:2604
8373
+ msgid "Icon"
8374
  msgstr ""
8375
 
8376
+ #: languages/vue.php:2607
8377
+ msgid "Popular Posts data can be fetched correctly"
8378
  msgstr ""
8379
 
8380
+ #: languages/vue.php:2610
8381
+ msgid "Please note: depending on when you set up the Custom Dimensions settings, it may take up to 7 days to see relevant Popular Posts data loading from Google Analytics."
8382
  msgstr ""
8383
 
8384
+ #: languages/vue.php:2613
8385
+ msgid "Close"
8386
  msgstr ""
8387
 
8388
+ #: languages/vue.php:2616
8389
+ msgid "Add Top 5 Posts from Google Analytics"
8390
  msgstr ""
8391
 
8392
+ #: languages/vue.php:2619
8393
+ msgid "In order to load the top posts from Google Analytics you will need to enable the Custom Dimensions addon and set up the Post Type custom dimension in both MonsterInsights and Google Analytics settings. Please use the button below to confirm your configuration is correct."
8394
  msgstr ""
8395
 
8396
+ #: languages/vue.php:2622
8397
+ msgid "Test Automated Posts"
8398
  msgstr ""
8399
 
8400
+ #. Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc.
8401
+ #: languages/vue.php:2626
8402
+ msgid "Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics."
8403
  msgstr ""
8404
 
8405
+ #: languages/vue.php:2629
8406
+ msgid "Automated + Curated"
8407
  msgstr ""
8408
 
8409
+ #. Translators: Placeholder adds a link to the Custom Dimensions settings.
8410
+ #: languages/vue.php:2633
8411
+ msgid "Automatically add the top 5 Posts from the past 30 days to your Curated list of Posts using %1$sCustom Dimensions%2$s. Also requires Sort By - Curated to be selected. Setup steps can be found in our %3$sknowledge base%4$s."
8412
  msgstr ""
8413
 
8414
+ #. Translators: Placeholder gets replaced with current license version.
8415
+ #: languages/vue.php:2637
8416
+ msgid "Pro version is required. Your current license level is: %s"
8417
  msgstr ""
8418
 
8419
+ #: languages/vue.php:2640
8420
+ msgid "Verifying Popular Posts data"
8421
  msgstr ""
8422
 
8423
+ #: languages/vue.php:2643
8424
+ msgid "Import/Export"
8425
  msgstr ""
8426
 
8427
+ #: languages/vue.php:2646
8428
+ msgid "Import"
8429
  msgstr ""
8430
 
8431
+ #: languages/vue.php:2649
8432
+ msgid "Import settings from another MonsterInsights website."
8433
  msgstr ""
8434
 
8435
+ #: languages/vue.php:2652
8436
+ msgid "Export"
8437
  msgstr ""
8438
 
8439
+ #: languages/vue.php:2655
8440
+ msgid "Export settings to import into another MonsterInsights install."
8441
  msgstr ""
8442
 
8443
+ #: languages/vue.php:2658
8444
+ msgid "Import Settings"
8445
  msgstr ""
8446
 
8447
+ #: languages/vue.php:2661
8448
+ msgid "Export Settings"
8449
  msgstr ""
8450
 
8451
+ #: languages/vue.php:2664
8452
+ msgid "Please choose a file to import"
 
8453
  msgstr ""
8454
 
8455
+ #: languages/vue.php:2667
8456
+ msgid "Use the filepicker below to select the settings export file from another site."
 
8457
  msgstr ""
8458
 
8459
+ #: languages/vue.php:2670
8460
+ msgid "Use the button below to export a file with your MonsterInsights settings."
 
8461
  msgstr ""
8462
 
8463
+ #: languages/vue.php:2673
8464
+ msgid "Uploading file..."
 
8465
  msgstr ""
8466
 
8467
+ #: languages/vue.php:2676
8468
+ msgid "File imported"
 
8469
  msgstr ""
8470
 
8471
+ #: languages/vue.php:2679
8472
+ msgid "Settings successfully updated!"
 
8473
  msgstr ""
8474
 
8475
+ #: languages/vue.php:2682
8476
+ msgid "Error importing settings"
 
8477
  msgstr ""
8478
 
8479
+ #: languages/vue.php:2685
8480
+ msgid "Please choose a .json file generated by a MonsterInsights settings export."
 
8481
  msgstr ""
8482
 
8483
+ #. Translators: Make text green and add smiley face.
8484
+ #: languages/vue.php:2689
8485
+ msgid "You're using %1$sMonsterInsights Lite%2$s - no license needed. Enjoy! %3$s"
8486
  msgstr ""
8487
 
8488
+ #. Translators: Add link to upgrade.
8489
+ #: languages/vue.php:2693
8490
+ msgid "To unlock more features consider %1$supgrading to PRO%2$s."
8491
  msgstr ""
8492
 
8493
+ #. Translators: Make text green.
8494
+ #: languages/vue.php:2697
8495
+ msgid "As a valued MonsterInsights Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!"
8496
  msgstr ""
8497
 
8498
+ #: languages/vue.php:2700
8499
+ msgid "Unlock PRO Features Now"
8500
  msgstr ""
8501
 
8502
+ #: languages/vue.php:2703
8503
+ msgid "Paste your license key here"
8504
  msgstr ""
8505
 
8506
+ #: languages/vue.php:2706
8507
+ msgid "Verify"
8508
  msgstr ""
8509
 
8510
+ #. Translators: Add link to retrieve license from account area.
8511
+ #: languages/vue.php:2710
8512
+ msgid "Already purchased? Simply enter your license key below to connect with MonsterInsights PRO! %1$sRetrieve your license key%2$s."
8513
  msgstr ""
8514
 
8515
+ #: languages/vue.php:2713
8516
+ msgid "There was an error unlocking MonsterInsights PRO please try again or install manually."
8517
  msgstr ""
8518
 
8519
+ #: languages/vue.php:2716
8520
+ msgid "See All Reports"
8521
  msgstr ""
8522
 
8523
+ #: languages/vue.php:2719
8524
+ msgid "Go to the Analytics Dashboard"
8525
  msgstr ""
8526
 
8527
+ #: languages/vue.php:2722
8528
+ msgid "Facebook Instant Articles"
8529
  msgstr ""
8530
 
8531
+ #: languages/vue.php:2725
8532
+ msgid "Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to MonsterInsights Pro."
8533
  msgstr ""
8534
 
8535
+ #: languages/vue.php:2728
8536
+ msgid "Ads Tracking"
8537
  msgstr ""
8538
 
8539
+ #: languages/vue.php:2731
8540
+ msgid "Add Ads tracking to see who's clicking on your Google Ads, so you can increase your revenue."
8541
  msgstr ""
8542
 
8543
+ #: languages/vue.php:2734
8544
+ msgid "Want to use track users visiting your AMP pages? By upgrading to MonsterInsights Pro, you can enable AMP page tracking."
8545
  msgstr ""
8546
 
8547
+ #: languages/vue.php:2737
8548
+ msgid "Show Overview Reports"
 
8549
  msgstr ""
8550
 
8551
+ #: languages/vue.php:2740
8552
+ msgid "Show Publishers Reports"
 
8553
  msgstr ""
8554
 
8555
+ #: languages/vue.php:2743
8556
+ msgid "Show eCommerce Reports"
 
8557
  msgstr ""
8558
 
8559
+ #: languages/vue.php:2746
8560
+ msgid "Available in PRO version"
 
8561
  msgstr ""
8562
 
8563
+ #: languages/vue.php:2749
8564
+ 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."
8565
  msgstr ""
8566
 
8567
+ #: languages/vue.php:2752
8568
+ msgid "Scroll Tracking"
8569
  msgstr ""
8570
 
8571
+ #: languages/vue.php:2755
8572
+ msgid "Scroll depth tracking allows you to see how far your users scroll before they leave a page. This is great for publishers (bloggers), and eCommerce websites to boost conversions."
8573
  msgstr ""
8574
 
8575
+ #: languages/vue.php:2758
8576
+ msgid "Our email summaries feature sends a weekly summary of the most important site analytics information."
8577
  msgstr ""
8578
 
8579
+ #: languages/vue.php:2761
8580
+ msgid "Download the analytics reports instantly from the WordPress dashboard as PDF files and share them with anyone."
8581
  msgstr ""
8582
 
8583
+ #: languages/vue.php:2764
8584
+ msgid "Usage Tracking"
8585
  msgstr ""
8586
 
8587
+ #: languages/vue.php:2767
8588
+ msgid "By allowing us to track usage data we can better help you because we know with which WordPress configurations, themes and plugins we should test."
8589
+ msgstr ""
8590
+
8591
+ #: languages/vue.php:2770
8592
+ msgid "Allow usage tracking"
8593
+ msgstr ""
8594
+
8595
+ #. Translators: Add links to documentation.
8596
+ #: languages/vue.php:2774
8597
+ msgid "Complete documentation on usage tracking is available %1$shere%2$s."
8598
+ msgstr ""
8599
+
8600
+ #: languages/vue.php:2777
8601
+ msgid "Only Show Posts from These Categories"
8602
+ msgstr ""
8603
+
8604
+ #: languages/vue.php:2780
8605
+ msgid "Choose from which categories posts will be displayed in the widget. All categories will be used if left empty."
8606
  msgstr ""
8607
 
8608
+ #: languages/vue.php:2783
8609
+ msgid "Days"
8610
+ msgstr ""
8611
+
8612
+ #. Translators: placeholders make text small.
8613
+ #: languages/vue.php:2787
8614
+ msgid "7 days"
8615
+ msgstr ""
8616
+
8617
+ #: languages/vue.php:2790
8618
+ msgid "30 days"
8619
+ msgstr ""
8620
+
8621
+ #: languages/vue.php:2793
8622
+ msgid "Custom"
8623
+ msgstr ""
8624
+
8625
+ #: languages/vue.php:2796
8626
  msgid "Pro version is required"
8627
  msgstr ""
8628
 
8629
  #. Translators: Placeholder adds a link to the Custom Dimensions settings.
8630
+ #: languages/vue.php:2800
8631
  msgid "Automatically add the top 5 Posts from the past 30 days to your Curated list of Posts using Custom Dimensions (Pro version required. %1$sUpgrade now%2$s)."
8632
  msgstr ""
8633
 
8634
+ #: languages/vue.php:2803
8635
+ msgid "Multiple Entries"
8636
  msgstr ""
8637
 
8638
+ #: languages/vue.php:2806
8639
+ msgid "Total Number of Widgets to Show"
8640
  msgstr ""
8641
 
8642
+ #: languages/vue.php:2809
8643
+ msgid "Choose how many widgets will be placed in a single Post."
8644
+ msgstr ""
8645
+
8646
+ #: languages/vue.php:2812
8647
+ msgid "Minimum Distance Between Widgets"
8648
+ msgstr ""
8649
+
8650
+ #: languages/vue.php:2815
8651
+ msgid "Choose the distance between widgets."
8652
+ msgstr ""
8653
+
8654
+ #: languages/vue.php:2818
8655
+ msgid "Minimum Word Count to Display Multiple Widgets"
8656
+ msgstr ""
8657
+
8658
+ #: languages/vue.php:2821
8659
+ msgid "Choose the minimum word count for a Post to have multiple entries."
8660
  msgstr ""
8661
 
8662
  #. Translators: Minimum and maximum number that can be used.
8663
+ #: languages/vue.php:2825
8664
  msgid "Please enter a value between %1$s and %2$s"
8665
  msgstr ""
8666
 
8667
  #. Translators: The minimum set value.
8668
+ #: languages/vue.php:2829
8669
  msgid "Please enter a value higher than %s"
8670
  msgstr ""
8671
 
8672
  #. Translators: The maximum set value.
8673
+ #: languages/vue.php:2833
8674
  msgid "Please enter a value lower than %s"
8675
  msgstr ""
8676
 
8677
+ #: languages/vue.php:2836
8678
  msgid "Please enter a number"
8679
  msgstr ""
8680
 
8681
+ #: languages/vue.php:2839
8682
  msgid "Value has to be a round number"
8683
  msgstr ""
8684
 
8685
+ #: languages/vue.php:2842
8686
+ msgid "Unlock with %s"
8687
+ msgstr ""
8688
+
8689
+ #: languages/vue.php:2845
8690
  msgid "Automatic Placement"
8691
  msgstr ""
8692
 
8693
+ #: languages/vue.php:2848
8694
  msgid "Display using Gutenberg Blocks"
8695
  msgstr ""
8696
 
8697
+ #: languages/vue.php:2851
8698
  msgid "Embed Options"
8699
  msgstr ""
8700
 
8701
+ #: languages/vue.php:2854
8702
  msgid "All Embed Options can be used in conjunction with one another."
8703
  msgstr ""
8704
 
8705
+ #: languages/vue.php:2857
8706
+ msgid "Using the Gutenberg Block"
8707
+ msgstr ""
8708
+
8709
+ #: languages/vue.php:2860
8710
  msgid "Using Automatic Embed"
8711
  msgstr ""
8712
 
8713
+ #: languages/vue.php:2863
8714
  msgid "Learn how to insert the Popular Posts Widget into your posts and pages using Gutenberg Blocks. To style this widget, use the Gutenberg Block settings."
8715
  msgstr ""
8716
 
8717
+ #: languages/vue.php:2866
8718
  msgid "Enabling Automatic Placement will include the Popular Posts Widget after the last paragraph of any and all posts that match your Behavior settings. To style this widget use the Customize Design panel above."
8719
  msgstr ""
8720
 
8721
+ #: languages/vue.php:2869
8722
  msgid "Learn how to insert the Popular Posts Widget using a shortcode. To style this widget use the Customize Design panel above."
8723
  msgstr ""
8724
 
8725
+ #: languages/vue.php:2872
8726
  msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using Gutenberg"
8727
  msgstr ""
8728
 
8729
+ #: languages/vue.php:2875
8730
+ msgid "%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page."
8731
+ msgstr ""
8732
+
8733
+ #: languages/vue.php:2878
8734
  msgid "%1$sStep 2%2$s - Search for “Popular Posts”."
8735
  msgstr ""
8736
 
8737
+ #: languages/vue.php:2881
8738
+ msgid "%1$sStep 3%2$s - Style the widget using the Block Settings sidebar."
8739
+ msgstr ""
8740
+
8741
+ #: languages/vue.php:2884
8742
  msgid "%1$sStep 1%2$s - Navigate to your Appearance > Widgets page using the menu on the left side your screen. Must be logged in as Admin."
8743
  msgstr ""
8744
 
8745
+ #: languages/vue.php:2887
8746
  msgid "%1$sStep 2%2$s - On the left, under Available Widgets, look for the Popular Posts - MonsterInsights widget and drag it into the desired Sidebar on the right."
8747
  msgstr ""
8748
 
8749
+ #: languages/vue.php:2890
8750
  msgid "%1$sStep 3%2$s - The widget options should automatically expand allowing you to customize the design."
8751
  msgstr ""
8752
 
8753
+ #: languages/vue.php:2893
8754
  msgid "Display using a Shortcode"
8755
  msgstr ""
8756
 
8757
+ #: languages/vue.php:2896
8758
+ msgid "Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin."
8759
+ msgstr ""
8760
+
8761
+ #: languages/vue.php:2899
8762
+ msgid "Copy Shortcode"
8763
+ msgstr ""
8764
+
8765
+ #: languages/vue.php:2902
8766
  msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using our Shortcode"
8767
  msgstr ""
8768
 
8769
+ #: languages/vue.php:2905
8770
  msgid "Enable Automatic Placement"
8771
  msgstr ""
8772
 
8773
+ #: languages/vue.php:2908
8774
  msgid "Display in a Sidebar"
8775
  msgstr ""
8776
 
8777
+ #: languages/vue.php:2911
8778
  msgid "Learn how to insert the Popular Posts Widget into a Sidebar. To style this widget use the Customize Design panel above."
8779
  msgstr ""
8780
 
8781
+ #: languages/vue.php:2914
8782
  msgid "Watch Video - How to Add the Popular Posts widget using Widgets"
8783
  msgstr ""
8784
 
8785
+ #: languages/vue.php:2917
8786
+ msgid "Display Method"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8787
  msgstr ""
8788
 
8789
+ #: languages/vue.php:2920
8790
+ msgid "There are two ways to manual include the widget in your posts."
 
8791
  msgstr ""
8792
 
8793
+ #: languages/vue.php:2923
8794
+ msgid "Using the Shortcode"
 
8795
  msgstr ""
8796
 
8797
+ #: languages/vue.php:2926
8798
+ msgid "Learn how to insert the widget using Gutenberg blocks."
8799
  msgstr ""
8800
 
8801
+ #: languages/vue.php:2929
8802
+ msgid "Learn how to insert the widget using out Shortcode."
8803
  msgstr ""
8804
 
8805
+ #: languages/vue.php:2932
8806
+ msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg"
8807
  msgstr ""
8808
 
8809
+ #: languages/vue.php:2935
8810
+ msgid "%1$sStep 2%2$s - Search for “Inline Popular Posts by MonsterInsights”."
8811
  msgstr ""
8812
 
8813
+ #: languages/vue.php:2938
8814
+ msgid "Shortcode"
8815
  msgstr ""
8816
 
8817
+ #: languages/vue.php:2941
8818
+ msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using our Shortcode"
8819
  msgstr ""
8820
 
8821
+ #: languages/vue.php:2944
8822
+ msgid "Allow Usage Tracking"
8823
  msgstr ""
8824
 
8825
+ #: languages/vue.php:2947
8826
+ msgid "Hide dashboard widget"
 
8827
  msgstr ""
8828
 
8829
+ #: languages/vue.php:2950
8830
+ msgid "Are you sure you want to hide the MonsterInsights Dashboard Widget? "
8831
  msgstr ""
8832
 
8833
+ #: languages/vue.php:2953
8834
+ msgid "Yes, hide it!"
8835
  msgstr ""
8836
 
8837
+ #: languages/vue.php:2956
8838
+ msgid "No, cancel!"
8839
  msgstr ""
8840
 
8841
+ #: languages/vue.php:2959
8842
+ msgid "MonsterInsights Widget Hidden"
 
8843
  msgstr ""
8844
 
8845
+ #: languages/vue.php:2962
8846
+ msgid "You can re-enable the MonsterInsights widget at any time using the \"Screen Options\" menu on the top right of this page"
 
8847
  msgstr ""
8848
 
8849
+ #: languages/vue.php:2965
8850
+ msgid "This feature requires MonsterInsights Pro"
8851
  msgstr ""
8852
 
8853
+ #: languages/vue.php:2968
8854
+ msgid "By upgrading you will also get access to advanced eCommerce tracking, Custom Dimensions and more."
 
8855
  msgstr ""
8856
 
8857
+ #: languages/vue.php:2971
8858
+ msgid "Upgrade to Pro and Unlock Popular Products"
8859
  msgstr ""
8860
 
8861
+ #: languages/vue.php:2974
8862
+ msgid "View all Pro features"
 
8863
  msgstr ""
8864
 
8865
+ #: languages/vue.php:2977
8866
+ msgid "Forms Tracking help you see who’s viewing your forms, so you can increase conversions."
8867
  msgstr ""
8868
 
8869
+ #: languages/vue.php:2980
8870
+ msgid "Custom Dimensions show you popular categories, best time to publish, focus keywords, etc."
 
8871
  msgstr ""
8872
 
8873
+ #: languages/vue.php:2983
8874
+ msgid "Make Google Analytics GDPR compliant with our EU Compliance addon."
8875
  msgstr ""
8876
 
8877
+ #: languages/vue.php:2986
8878
+ msgid "Get real-time Google Analytics report right inside your WordPress dashboard."
 
8879
  msgstr ""
8880
 
8881
+ #: languages/vue.php:2989
8882
+ msgid "Use Google Optimize to easily perform A/B split tests on your site."
8883
  msgstr ""
8884
 
8885
+ #: languages/vue.php:2992
8886
+ msgid "See all your important store metrics in one place with Enhanced Ecommerce Tracking."
 
8887
  msgstr ""
8888
 
8889
+ #: languages/vue.php:2995
8890
+ msgid "Unlock search console report to see your top performing keywords in Google."
 
8891
  msgstr ""
8892
 
8893
+ #: languages/vue.php:2998
8894
+ msgid "Get Page Insights to see important metrics for individual posts / pages in WordPress."
8895
  msgstr ""
8896
 
8897
+ #: languages/vue.php:3001
8898
+ msgid "Publishers Report shows your top performing pages, audience demographics, and more."
 
8899
  msgstr ""
8900
 
8901
+ #: languages/vue.php:3004
8902
+ msgid "Get Scroll-Depth tracking to see how far users scroll on your pages before leaving."
 
8903
  msgstr ""
8904
 
8905
+ #: languages/vue.php:3007
8906
+ msgid "Upgrade to Pro »"
 
8907
  msgstr ""
8908
 
8909
+ #: languages/vue.php:3010
8910
+ msgid "Pro Tip:"
 
8911
  msgstr ""
8912
 
8913
  #: googleanalytics.php:275
languages/vue.php CHANGED
@@ -7,28 +7,101 @@ $generated_i18n_strings = array(
7
  // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:97
8
  __( '2', 'google-analytics-for-wordpress' ),
9
 
10
- // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:150
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
  __( 'Error', 'google-analytics-for-wordpress' ),
12
 
13
- // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:151
14
  __( 'Please try again.', 'google-analytics-for-wordpress' ),
15
 
16
- // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:219
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
  __( 'Today', 'google-analytics-for-wordpress' ),
18
 
19
- // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:225
20
  __( 'Yesterday', 'google-analytics-for-wordpress' ),
21
 
22
- // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:231
23
  __( 'Last Week', 'google-analytics-for-wordpress' ),
24
 
25
- // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:237
26
  __( 'Last Month', 'google-analytics-for-wordpress' ),
27
 
28
- // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:243
29
  __( 'Last 7 days', 'google-analytics-for-wordpress' ),
30
 
31
- // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:249
 
32
  __( 'Last 30 days', 'google-analytics-for-wordpress' ),
33
 
34
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:188
@@ -37,18 +110,6 @@ $generated_i18n_strings = array(
37
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:189
38
  __( 'Loading new report data...', 'google-analytics-for-wordpress' ),
39
 
40
- // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:181
41
- __( 'Unlock the Publishers Report and Focus on the Content that Matters', 'google-analytics-for-wordpress' ),
42
-
43
- // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:182
44
- __( 'Stop guessing about what content your visitors are interested in. MonsterInsights Publisher Report shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions.', 'google-analytics-for-wordpress' ),
45
-
46
- // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:185
47
- __( 'Unlock the Publishers Report and Focus on the Content That Matters', 'google-analytics-for-wordpress' ),
48
-
49
- // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:186
50
- __( '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.', 'google-analytics-for-wordpress' ),
51
-
52
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:251
53
  __( 'See Your Top Landing Pages to Improve Enagement', 'google-analytics-for-wordpress' ),
54
 
@@ -67,12 +128,6 @@ $generated_i18n_strings = array(
67
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:256
68
  __( 'See Audience Demographic Report ( Age / Gender / Interests )', 'google-analytics-for-wordpress' ),
69
 
70
- // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:189
71
- __( 'Unlock the eCommerce Report and See Your Important Store Metrics', 'google-analytics-for-wordpress' ),
72
-
73
- // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:190
74
- __( 'Increase your sales & revenue with insights. MonsterInsights answers all your top eCommerce questions using metrics like total revenue, conversion rate, average order value, top products, top referral sources and more.', 'google-analytics-for-wordpress' ),
75
-
76
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:263
77
  __( 'See Your Conversion Rate to Improve Funnel', 'google-analytics-for-wordpress' ),
78
 
@@ -97,12 +152,6 @@ $generated_i18n_strings = array(
97
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:270
98
  __( 'See How Many Sessions are needed for a Purchase', 'google-analytics-for-wordpress' ),
99
 
100
- // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:193
101
- __( 'Unlock the Dimensions Report and Track Your Own Custom Data', 'google-analytics-for-wordpress' ),
102
-
103
- // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:194
104
- __( '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.', 'google-analytics-for-wordpress' ),
105
-
106
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:277
107
  __( 'See Which Authors Generate the Most Traffic', 'google-analytics-for-wordpress' ),
108
 
@@ -118,12 +167,6 @@ $generated_i18n_strings = array(
118
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:281
119
  __( 'See Which Focus Keyword is Performing Better in Search Engines', 'google-analytics-for-wordpress' ),
120
 
121
- // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:197
122
- __( 'Unlock the Forms Report and Improve Conversions', 'google-analytics-for-wordpress' ),
123
-
124
- // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:198
125
- __( '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.', 'google-analytics-for-wordpress' ),
126
-
127
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:288
128
  __( 'See Reports for Any Contact Form Plugin or Sign-up Form', 'google-analytics-for-wordpress' ),
129
 
@@ -133,12 +176,6 @@ $generated_i18n_strings = array(
133
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:290
134
  __( 'See Your Forms Impressions Count to Find the Best Placement', 'google-analytics-for-wordpress' ),
135
 
136
- // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:201
137
- __( 'Unlock the Search Console Report and See How People Find Your Website', 'google-analytics-for-wordpress' ),
138
-
139
- // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:202
140
- __( 'See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more.', 'google-analytics-for-wordpress' ),
141
-
142
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:297
143
  __( 'See Your Top Google Search Terms and Optimize Content', 'google-analytics-for-wordpress' ),
144
 
@@ -151,12 +188,6 @@ $generated_i18n_strings = array(
151
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:300
152
  __( 'See The Average Results Position and Focus on what works', 'google-analytics-for-wordpress' ),
153
 
154
- // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:205
155
- __( 'Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time', 'google-analytics-for-wordpress' ),
156
-
157
- // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:206
158
- __( '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.', 'google-analytics-for-wordpress' ),
159
-
160
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:307
161
  __( 'See Your Active Visitors and Track Their Behaviour to Optimize', 'google-analytics-for-wordpress' ),
162
 
@@ -172,26 +203,36 @@ $generated_i18n_strings = array(
172
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:311
173
  __( 'Get Fresh Reports Data Every 60 Seconds', 'google-analytics-for-wordpress' ),
174
 
175
- // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:129
176
- __( 'Loading new report data', 'google-analytics-for-wordpress' ),
177
 
178
- // Reference: src/components/TheAppFTPForm.vue:110
179
- // Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:53
180
- // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:130
181
- __( 'Please wait...', 'google-analytics-for-wordpress' ),
182
 
183
- // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:143
184
- /* Translators: Adds an arrow icon. */
185
- __( 'Continue %s', 'google-analytics-for-wordpress' ),
186
 
187
- // Reference: src/plugins/monsterinsights-wizard-helper-plugin.js:13
188
- __( 'Loading settings', 'google-analytics-for-wordpress' ),
189
 
190
- // Reference: src/modules/frontend/monsterinsights-frontend.vue:36
191
- __( 'Insights', 'google-analytics-for-wordpress' ),
 
192
 
193
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:238
194
- __( 'Overview Report', 'google-analytics-for-wordpress' ),
 
 
 
 
 
 
 
 
 
 
195
 
196
  // Reference: src/modules/widget/components/WidgetReminder.vue:33
197
  /* Translators: Number of visitors. */
@@ -204,134 +245,46 @@ $generated_i18n_strings = array(
204
  // Reference: src/modules/widget/components/WidgetReminder.vue:36
205
  __( 'See the full analytics report!', 'google-analytics-for-wordpress' ),
206
 
207
- // Reference: src/modules/settings/monsterinsights-site.vue:80
208
- __( 'Congratulations! ', 'google-analytics-for-wordpress' ),
209
-
210
- // Reference: src/modules/settings/monsterinsights-site.vue:81
211
- __( 'You Successfully Unlocked the most powerful Analytics plugin', 'google-analytics-for-wordpress' ),
212
-
213
- // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:125
214
- __( 'Welcome to MonsterInsights', 'google-analytics-for-wordpress' ),
215
-
216
- // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:126
217
- __( 'Thank you for choosing MonsterInsights - The Most Powerful WordPress Analytics Plugin', 'google-analytics-for-wordpress' ),
218
-
219
- // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:127
220
- __( 'MonsterInsights 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.', 'google-analytics-for-wordpress' ),
221
-
222
- // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:128
223
- __( 'Launch the Wizard!', 'google-analytics-for-wordpress' ),
224
-
225
- // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:129
226
- __( 'Read the Full Guide', 'google-analytics-for-wordpress' ),
227
-
228
- // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:130
229
- __( 'MonsterInsights Features & Addons', 'google-analytics-for-wordpress' ),
230
-
231
- // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:131
232
- __( 'Here are the features that make MonsterInsights the most powerful and user-friendly WordPress analytics plugin in the market.', 'google-analytics-for-wordpress' ),
233
-
234
- // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:132
235
- __( 'See All Features', 'google-analytics-for-wordpress' ),
236
-
237
- // Reference: src/modules/reports/components/reports-overview/monsterinsights-ReportOverviewDatePicker-Lite.vue:51
238
- __( 'Upgrade to PRO', 'google-analytics-for-wordpress' ),
239
-
240
- // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:134
241
- __( 'per year', 'google-analytics-for-wordpress' ),
242
-
243
- // Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:97
244
- __( 'Upgrade Now', 'google-analytics-for-wordpress' ),
245
-
246
- // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:136
247
- __( 'Testimonials', 'google-analytics-for-wordpress' ),
248
-
249
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:62
250
- __( 'Universal Tracking', 'google-analytics-for-wordpress' ),
251
-
252
- // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:141
253
- __( 'Setup universal website tracking across devices and campaigns with just a few clicks (without any code).', 'google-analytics-for-wordpress' ),
254
-
255
- // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:145
256
- __( 'Google Analytics Dashboard', 'google-analytics-for-wordpress' ),
257
-
258
- // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:146
259
- __( 'See your website analytics report right inside your WordPress dashboard with actionable insights.', 'google-analytics-for-wordpress' ),
260
-
261
- // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:150
262
- __( 'Real-time Stats', 'google-analytics-for-wordpress' ),
263
-
264
- // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:151
265
- __( 'Get real-time stats right inside WordPress to see who is online, what are they doing, and more.', 'google-analytics-for-wordpress' ),
266
-
267
- // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:155
268
- __( 'Enhanced Ecommerce Tracking', 'google-analytics-for-wordpress' ),
269
-
270
- // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:156
271
- __( '1-click Google Analytics Enhanced Ecommerce tracking for WooCommerce, Easy Digital Downloads & MemberPress.', 'google-analytics-for-wordpress' ),
272
-
273
- // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:160
274
- __( 'Page Level Analytics', 'google-analytics-for-wordpress' ),
275
-
276
- // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:161
277
- __( 'Get detailed stats for each post and page, so you can see the most popular posts, pages, and sections of your site.', 'google-analytics-for-wordpress' ),
278
-
279
- // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:165
280
- __( 'Affiliate Link & Ads Tracking', 'google-analytics-for-wordpress' ),
281
-
282
- // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:166
283
- __( 'Automatically track clicks on your affiliate links, banner ads, and other outbound links with our link tracking.', 'google-analytics-for-wordpress' ),
284
-
285
- // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:170
286
- __( 'EU Compliance (GDPR Friendly)', 'google-analytics-for-wordpress' ),
287
-
288
- // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:171
289
- __( 'Make Google Analytics compliant with GDPR and other privacy regulations automatically.', 'google-analytics-for-wordpress' ),
290
-
291
- // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:176
292
- __( 'Setup tracking for authors, categories, tags, searches, custom post types, users, and other events with 1-click.', 'google-analytics-for-wordpress' ),
293
-
294
- // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:181
295
- __( 'Ecommerce Report', 'google-analytics-for-wordpress' ),
296
-
297
- // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:30
298
- // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:182
299
- __( 'Form Conversions', 'google-analytics-for-wordpress' ),
300
 
301
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:129
302
- __( 'Custom Dimensions', 'google-analytics-for-wordpress' ),
303
 
304
- // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:29
305
- // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:184
306
- __( 'Author Tracking', 'google-analytics-for-wordpress' ),
307
 
308
- // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:185
309
- __( 'Google Optimize', 'google-analytics-for-wordpress' ),
 
310
 
311
- // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:186
312
- __( 'Category / Tags Tracking', 'google-analytics-for-wordpress' ),
 
 
313
 
314
- // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:187
315
- __( 'WooCommerce', 'google-analytics-for-wordpress' ),
316
 
317
- // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:188
318
- __( 'Easy Digital Downloads', 'google-analytics-for-wordpress' ),
319
 
320
- // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:189
321
- __( 'MemberPress', 'google-analytics-for-wordpress' ),
 
322
 
323
- // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:190
324
- __( 'LifterLMS', 'google-analytics-for-wordpress' ),
325
 
326
- // Reference: src/modules/settings/routes/site.js:122
327
- __( 'About Us', 'google-analytics-for-wordpress' ),
328
 
329
- // Reference: src/modules/settings/routes/site.js:130
330
- __( 'Getting Started', 'google-analytics-for-wordpress' ),
331
 
332
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:52
333
- // Reference: src/modules/settings/routes/site.js:139
334
- __( 'Lite vs Pro', 'google-analytics-for-wordpress' ),
335
 
336
  // Reference: src/modules/reports/api/index.js:21
337
  /* Translators: Error status and error text. */
@@ -355,121 +308,27 @@ $generated_i18n_strings = array(
355
  // Reference: src/components/TheQuickLinks.vue:78
356
  __( 'Upgrade to Pro &#187;', 'google-analytics-for-wordpress' ),
357
 
358
- // Reference: src/modules/settings/routes/site.js:100
359
- // Reference: src/modules/tools/components/ToolsNavigation.vue:14
360
- __( 'Import Export', 'google-analytics-for-wordpress' ),
361
 
362
- // Reference: src/modules/settings/routes/site.js:108
363
- __( 'PrettyLinks Integration', 'google-analytics-for-wordpress' ),
364
-
365
- // Reference: src/modules/settings/routes/site.js:154
366
- __( 'Inline Popular Posts', 'google-analytics-for-wordpress' ),
367
-
368
- // Reference: src/modules/settings/routes/site.js:162
369
- __( 'Popular Posts Widget', 'google-analytics-for-wordpress' ),
370
-
371
- // Reference: src/modules/settings/routes/site.js:171
372
- __( 'Popular Products', 'google-analytics-for-wordpress' ),
373
-
374
- // Reference: src/modules/settings/routes/site.js:180
375
- __( 'Settings', 'google-analytics-for-wordpress' ),
376
-
377
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabsNavigation.vue:63
378
- // Reference: src/modules/settings/routes/site.js:35
379
- __( 'General', 'google-analytics-for-wordpress' ),
380
-
381
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabsNavigation.vue:64
382
- // Reference: src/modules/settings/routes/site.js:43
383
- __( 'Engagement', 'google-analytics-for-wordpress' ),
384
 
385
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportEcommerce-Lite.vue:22
386
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabsNavigation.vue:65
387
- // Reference: src/modules/settings/routes/site.js:51
388
  __( 'eCommerce', 'google-analytics-for-wordpress' ),
389
 
390
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabsNavigation.vue:66
391
- // Reference: src/modules/settings/routes/site.js:59
392
- __( 'Publisher', 'google-analytics-for-wordpress' ),
393
-
394
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabsNavigation.vue:67
395
- // Reference: src/modules/settings/routes/site.js:67
396
- __( 'Conversions', 'google-analytics-for-wordpress' ),
397
-
398
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabsNavigation.vue:68
399
- // Reference: src/modules/settings/routes/site.js:75
400
- __( 'Advanced', 'google-analytics-for-wordpress' ),
401
-
402
- // Reference: src/modules/settings/routes/site.js:92
403
- // Reference: src/modules/tools/components/ToolsNavigation.vue:15
404
- __( 'URL Builder', 'google-analytics-for-wordpress' ),
405
-
406
- // Reference: src/modules/settings/components/SettingsButtonSave.vue:46
407
- __( 'Save Changes', 'google-analytics-for-wordpress' ),
408
-
409
- // Reference: src/modules/addons/components/AddonsNavigation.vue:18
410
- __( 'MonsterInsights Addons', 'google-analytics-for-wordpress' ),
411
-
412
- // Reference: src/modules/addons/components/AddonsNavigation.vue:19
413
- __( 'Search Addons', 'google-analytics-for-wordpress' ),
414
-
415
- // Reference: src/modules/wizard-onboarding/components/TheWizardHeader.vue:24
416
- __( 'Exit Setup', 'google-analytics-for-wordpress' ),
417
-
418
- // Reference: src/modules/reports/routes/index.js:32
419
- __( 'Publishers Report', 'google-analytics-for-wordpress' ),
420
-
421
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportEcommerce-Lite.vue:23
422
- __( 'eCommerce Report', 'google-analytics-for-wordpress' ),
423
-
424
- // Reference: src/modules/reports/routes/index.js:48
425
- __( 'Search Console Report', 'google-analytics-for-wordpress' ),
426
-
427
- // Reference: src/modules/reports/routes/index.js:56
428
- __( 'Dimensions Report', 'google-analytics-for-wordpress' ),
429
-
430
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportForms-Lite.vue:25
431
- // Reference: src/modules/reports/routes/index.js:64
432
- __( 'Forms Report', 'google-analytics-for-wordpress' ),
433
-
434
- // Reference: src/modules/reports/routes/index.js:72
435
- __( 'Real-Time Report', 'google-analytics-for-wordpress' ),
436
-
437
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:263
438
- __( '2019 Year in Review', 'google-analytics-for-wordpress' ),
439
-
440
- // Reference: src/modules/settings/components/SettingsFirstTImeNotice.vue:40
441
- __( 'View Reports', 'google-analytics-for-wordpress' ),
442
-
443
- // Reference: src/modules/settings/components/SettingsFirstTImeNotice.vue:42
444
- __( 'Congratulations!', 'google-analytics-for-wordpress' ),
445
-
446
- // Reference: src/modules/settings/components/SettingsFirstTImeNotice.vue:44
447
- /* Translators: Add link to YouTube video and Onboarding Wizard. */
448
- __( 'MonsterInsights makes it easy to connect your website with Google Analytics and see all important website stats right inside your WordPress dashboard. In order to setup website analytics, please take a look at our %1$sGetting started video%2$s or use our %3$s to get you quickly set up.', 'google-analytics-for-wordpress' ),
449
-
450
- // Reference: src/modules/settings/components/SettingsFirstTImeNotice.vue:44
451
- /* Translators: Add link to YouTube video and Onboarding Wizard. */
452
- __( 'Onboarding Wizard', 'google-analytics-for-wordpress' ),
453
-
454
- // Reference: src/modules/settings/components/SettingsFirstTImeNotice.vue:45
455
- __( 'You are now connected with MonsterInsights. We make it effortless for you to implement Google Analytics tracking and see the stats that matter, right inside the WordPress dashboard.', 'google-analytics-for-wordpress' ),
456
-
457
- // Reference: src/modules/widget/components/monsterinsights-WidgetSettings-Lite.vue:19
458
- /* Translators: Number of days in interval. */
459
- __( 'Last %s days', 'google-analytics-for-wordpress' ),
460
-
461
- // Reference: src/modules/widget/components/WidgetFooter.vue:19
462
- /* Translators: Placeholder is replaced with WPForms. */
463
- __( 'Recommended Plugin: %s', 'google-analytics-for-wordpress' ),
464
 
465
- // Reference: src/modules/widget/components/WidgetFooter.vue:20
466
- __( 'Install', 'google-analytics-for-wordpress' ),
467
 
468
- // Reference: src/modules/widget/components/WidgetFooter.vue:21
469
- __( 'Activate', 'google-analytics-for-wordpress' ),
470
 
471
- // Reference: src/modules/widget/components/WidgetFooter.vue:22
472
- __( 'Learn More', 'google-analytics-for-wordpress' ),
473
 
474
  // Reference: src/modules/notifications/components/monsterinsights-Notifications.vue:75
475
  __( 'Inbox', 'google-analytics-for-wordpress' ),
@@ -492,26 +351,23 @@ $generated_i18n_strings = array(
492
  // Reference: src/modules/notifications/components/monsterinsights-Notifications.vue:81
493
  __( 'No Notifications', 'google-analytics-for-wordpress' ),
494
 
495
- // Reference: src/modules/reports/components/ReportReAuth.vue:19
496
- __( 'MonsterInsights encountered an error loading your report data', 'google-analytics-for-wordpress' ),
497
 
498
- // Reference: src/modules/reports/components/ReportReAuth.vue:20
499
- __( 'There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating.', 'google-analytics-for-wordpress' ),
500
 
501
- // Reference: src/modules/reports/components/ReportReAuth.vue:21
502
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:69
503
- __( 'Reconnect MonsterInsights', 'google-analytics-for-wordpress' ),
504
 
505
- // Reference: src/modules/reports/components/ReportReAuth.vue:30
506
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:143
507
- __( 'Re-Authenticating', 'google-analytics-for-wordpress' ),
508
 
509
- // Reference: src/modules/reports/components/ReportReAuth.vue:47
510
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:229
511
- __( 'Ok', 'google-analytics-for-wordpress' ),
512
 
513
- // Reference: src/modules/frontend/components/FrontendPoweredBy.vue:12
514
- __( 'Powered by MonsterInsights', 'google-analytics-for-wordpress' ),
515
 
516
  // Reference: src/modules/frontend/components/FrontendNoAuth.vue:24
517
  __( 'Please Setup Website Analytics to See Audience Insights', 'google-analytics-for-wordpress' ),
@@ -522,35 +378,36 @@ $generated_i18n_strings = array(
522
  // Reference: src/modules/frontend/components/FrontendNoAuth.vue:26
523
  __( 'Connect MonsterInsights and Setup Website Analytics', 'google-analytics-for-wordpress' ),
524
 
525
- // Reference: src/modules/reports/components/ReportNoAuth.vue:25
526
- __( 'You must connect with MonsterInsights before you can view reports.', 'google-analytics-for-wordpress' ),
527
-
528
- // Reference: src/modules/reports/components/ReportNoAuth.vue:26
529
- __( 'MonsterInsights makes it "effortless" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard.', 'google-analytics-for-wordpress' ),
530
-
531
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:98
532
- __( 'Launch Setup Wizard', 'google-analytics-for-wordpress' ),
533
 
534
- // Reference: src/modules/reports/components/ReportNoAuth.vue:28
535
- __( 'Please ask your webmaster to connect MonsterInsights to Google Analytics.', 'google-analytics-for-wordpress' ),
536
 
537
- // Reference: src/modules/widget/store/index.js:76
538
- __( 'Overview', 'google-analytics-for-wordpress' ),
539
 
540
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportPublishers-Lite.vue:25
541
- __( 'Publishers', 'google-analytics-for-wordpress' ),
 
 
542
 
543
- // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:43
544
- __( 'Search Console', 'google-analytics-for-wordpress' ),
 
 
545
 
546
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportDimensions-Lite.vue:22
547
- __( 'Dimensions', 'google-analytics-for-wordpress' ),
 
 
 
548
 
549
- // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:45
550
- __( 'Forms', 'google-analytics-for-wordpress' ),
551
 
552
- // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:46
553
- __( 'Real-Time', 'google-analytics-for-wordpress' ),
554
 
555
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:91
556
  __( 'License Key', 'google-analytics-for-wordpress' ),
@@ -563,11 +420,9 @@ $generated_i18n_strings = array(
563
  __( 'Google Authentication', 'google-analytics-for-wordpress' ),
564
 
565
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:93
566
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:50
567
  __( 'Connect Google Analytics + WordPress', 'google-analytics-for-wordpress' ),
568
 
569
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:94
570
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:51
571
  __( 'You will be taken to the MonsterInsights website where you\'ll need to connect your Analytics account.', 'google-analytics-for-wordpress' ),
572
 
573
  // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:35
@@ -585,180 +440,74 @@ $generated_i18n_strings = array(
585
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:97
586
  __( 'Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks).', 'google-analytics-for-wordpress' ),
587
 
588
- // Reference: src/modules/addons/monsterinsights-addons-Lite.vue:40
589
- __( 'There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data.', 'google-analytics-for-wordpress' ),
590
-
591
- // Reference: src/modules/addons/monsterinsights-addons-Lite.vue:41
592
- __( 'No addons found.', 'google-analytics-for-wordpress' ),
593
 
594
- // Reference: src/modules/addons/monsterinsights-addons-Lite.vue:42
595
- __( 'Refresh Addons', 'google-analytics-for-wordpress' ),
596
 
597
- // Reference: src/modules/addons/monsterinsights-addons-Lite.vue:65
598
- __( 'Refreshing Addons', 'google-analytics-for-wordpress' ),
599
 
600
- // Reference: src/modules/addons/monsterinsights-addons-Lite.vue:76
601
- /* Translators: Make text green. */
602
- __( 'Upgrade to Pro to unlock addons and other great features. As a valued MonsterInsights Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!', 'google-analytics-for-wordpress' ),
603
 
604
- // Reference: src/modules/about/components/monsterinsights-AboutTabAboutUs.vue:31
605
- __( 'Hello and welcome to MonsterInsights, the best Google Analytics plugin for WordPress. MonsterInsights shows you exactly which content gets the most visit, so you can analyze and optimize it for higher conversions.', 'google-analytics-for-wordpress' ),
606
 
607
- // Reference: src/modules/about/components/monsterinsights-AboutTabAboutUs.vue:32
608
- __( 'Over the years, we found that in order to get the most out of Google Analytics, you needed a full time developer who could implement custom tracking, so that Google Analytics would integrate with things like WooCommerce, and track things which Google doesn\'t by default, like outbound links.', 'google-analytics-for-wordpress' ),
609
 
610
- // Reference: src/modules/about/components/monsterinsights-AboutTabAboutUs.vue:33
611
- __( 'Our goal is to take the pain out of analytics, making it simple and easy, by eliminating the need to have to worry about code, putting the best reports directly into the area you already go to (your WordPress dashboard), and adding the most advanced insights and features without complicating our plugin with tons of settings. Quite simply, it should "just work".', 'google-analytics-for-wordpress' ),
612
 
613
- // Reference: src/modules/about/components/monsterinsights-AboutTabAboutUs.vue:34
614
- __( 'MonsterInsights is brought to you by the same team that\'s behind the largest WordPress resource site, WPBeginner, the most popular lead-generation software, OptinMonster, and the best WordPress forms plugin, WPForms.', 'google-analytics-for-wordpress' ),
615
 
616
- // Reference: src/modules/about/components/monsterinsights-AboutTabAboutUs.vue:35
617
- __( 'Yup, we know a thing or two about building awesome products that customers love.', 'google-analytics-for-wordpress' ),
618
 
619
- // Reference: src/modules/about/components/monsterinsights-AboutTabAboutUs.vue:36
620
- __( 'The MonsterInsights Team', 'google-analytics-for-wordpress' ),
621
 
622
- // Reference: src/modules/widget/store/index.js:102
623
- __( 'Time to Purchase', 'google-analytics-for-wordpress' ),
624
 
625
- // Reference: src/modules/widget/store/index.js:103
626
- __( 'This list shows how many days from first visit it took users to purchase products from your site.', 'google-analytics-for-wordpress' ),
627
 
628
- // Reference: src/modules/widget/store/index.js:109
629
- __( 'Sessions to Purchase', 'google-analytics-for-wordpress' ),
630
 
631
- // Reference: src/modules/widget/store/index.js:110
632
- __( 'This list shows the number of sessions it took users before they purchased a product from your website.', 'google-analytics-for-wordpress' ),
633
 
634
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:253
635
- __( 'Top Posts/Pages', 'google-analytics-for-wordpress' ),
636
 
637
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:264
638
- __( 'This list shows the most viewed posts and pages on your website.', 'google-analytics-for-wordpress' ),
639
 
640
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:247
641
- __( 'New vs. Returning Visitors', 'google-analytics-for-wordpress' ),
642
 
643
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:260
644
- __( 'This graph shows what percent of your user sessions come from new versus repeat visitors.', 'google-analytics-for-wordpress' ),
645
 
646
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:248
647
- __( 'Device Breakdown', 'google-analytics-for-wordpress' ),
648
 
649
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:261
650
- __( '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.', 'google-analytics-for-wordpress' ),
651
 
652
- // Reference: src/modules/widget/store/index.js:41
653
- __( 'Top Landing Pages', 'google-analytics-for-wordpress' ),
654
 
655
- // Reference: src/modules/widget/store/index.js:42
656
- __( 'This list shows the top pages users first land on when visiting your website.', 'google-analytics-for-wordpress' ),
657
 
658
- // Reference: src/modules/widget/store/index.js:48
659
- __( 'Top Exit Pages', 'google-analytics-for-wordpress' ),
660
-
661
- // Reference: src/modules/widget/store/index.js:49
662
- __( 'This list shows the top pages users exit your website from.', 'google-analytics-for-wordpress' ),
663
-
664
- // Reference: src/modules/widget/store/index.js:55
665
- __( 'Top Outbound Links', 'google-analytics-for-wordpress' ),
666
-
667
- // Reference: src/modules/widget/store/index.js:56
668
- __( 'This list shows the top links clicked on your website that go to another website.', 'google-analytics-for-wordpress' ),
669
-
670
- // Reference: src/modules/widget/store/index.js:62
671
- __( 'Top Affiliate Links', 'google-analytics-for-wordpress' ),
672
-
673
- // Reference: src/modules/widget/store/index.js:63
674
- __( 'This list shows the top affiliate links your visitors clicked on.', 'google-analytics-for-wordpress' ),
675
-
676
- // Reference: src/modules/widget/store/index.js:69
677
- __( 'Top Download Links', 'google-analytics-for-wordpress' ),
678
-
679
- // Reference: src/modules/widget/store/index.js:70
680
- __( 'This list shows the download links your visitors clicked the most.', 'google-analytics-for-wordpress' ),
681
-
682
- // Reference: src/modules/widget/store/index.js:82
683
- __( 'Top Products', 'google-analytics-for-wordpress' ),
684
-
685
- // Reference: src/modules/widget/store/index.js:83
686
- __( 'This list shows the top selling products on your website.', 'google-analytics-for-wordpress' ),
687
-
688
- // Reference: src/modules/widget/store/index.js:89
689
- __( 'Top Conversion Sources', 'google-analytics-for-wordpress' ),
690
-
691
- // Reference: src/modules/widget/store/index.js:90
692
- __( 'This list shows the top referral websites in terms of product revenue.', 'google-analytics-for-wordpress' ),
693
-
694
- // Reference: src/modules/widget/store/index.js:96
695
- __( 'Total Add/Remove', 'google-analytics-for-wordpress' ),
696
-
697
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:100
698
- __( 'WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin', 'google-analytics-for-wordpress' ),
699
-
700
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:103
701
- __( 'WordPress Admin Area Reports', 'google-analytics-for-wordpress' ),
702
-
703
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:106
704
- __( 'Standard Reports', 'google-analytics-for-wordpress' ),
705
-
706
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:107
707
- __( 'Overview Reports for the last 30 days.', 'google-analytics-for-wordpress' ),
708
-
709
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:108
710
- __( 'Advanced Reports', 'google-analytics-for-wordpress' ),
711
-
712
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:109
713
- __( 'Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection', 'google-analytics-for-wordpress' ),
714
-
715
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:112
716
- __( 'Dashboard Widget', 'google-analytics-for-wordpress' ),
717
-
718
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:115
719
- __( 'Basic Widget', 'google-analytics-for-wordpress' ),
720
-
721
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:116
722
- __( 'Overview Report Synopsis', 'google-analytics-for-wordpress' ),
723
-
724
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:117
725
- __( 'Advanced Dashboard Widget', 'google-analytics-for-wordpress' ),
726
-
727
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:118
728
- __( 'Includes the complete Overview report, Publisher reports and 6 different eCommerce reports', 'google-analytics-for-wordpress' ),
729
-
730
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:121
731
- __( 'Publisher Reports', 'google-analytics-for-wordpress' ),
732
-
733
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:125
734
- __( 'Advanced Publisher Reports & Tracking', 'google-analytics-for-wordpress' ),
735
-
736
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:126
737
- __( 'View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more', 'google-analytics-for-wordpress' ),
738
-
739
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:132
740
- __( 'Not Available', 'google-analytics-for-wordpress' ),
741
-
742
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:133
743
- __( 'Complete Custom Dimensions Tracking', 'google-analytics-for-wordpress' ),
744
-
745
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:134
746
- __( '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', 'google-analytics-for-wordpress' ),
747
-
748
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:137
749
- __( 'Support', 'google-analytics-for-wordpress' ),
750
-
751
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:140
752
- __( 'Limited Support', 'google-analytics-for-wordpress' ),
753
-
754
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:141
755
- __( 'Priority Support', 'google-analytics-for-wordpress' ),
756
-
757
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:53
758
- __( 'Get the most out of MonsterInsights by upgrading to Pro and unlocking all of the powerful features.', 'google-analytics-for-wordpress' ),
759
-
760
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:54
761
- __( 'Feature', 'google-analytics-for-wordpress' ),
762
 
763
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:55
764
  __( 'Lite', 'google-analytics-for-wordpress' ),
@@ -773,6 +522,9 @@ $generated_i18n_strings = array(
773
  /* Translators: Makes text green. */
774
  __( 'Bonus: MonsterInsights Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout.', 'google-analytics-for-wordpress' ),
775
 
 
 
 
776
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:64
777
  __( 'Included', 'google-analytics-for-wordpress' ),
778
 
@@ -821,6 +573,24 @@ $generated_i18n_strings = array(
821
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:99
822
  __( 'One-click Form Events Tracking', 'google-analytics-for-wordpress' ),
823
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
824
  // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:104
825
  __( 'GDPR Guide', 'google-analytics-for-wordpress' ),
826
 
@@ -906,769 +676,872 @@ $generated_i18n_strings = array(
906
  // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:99
907
  __( '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 MonsterInsights’ advanced tracking.', 'google-analytics-for-wordpress' ),
908
 
909
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:32
910
- __( 'Welcome to MonsterInsights!', 'google-analytics-for-wordpress' ),
911
 
912
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:33
913
- __( 'Let\'s get you set up.', 'google-analytics-for-wordpress' ),
914
 
915
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:55
916
- __( 'Save and Continue', 'google-analytics-for-wordpress' ),
917
 
918
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:35
919
- __( 'Which category best describes your website?', 'google-analytics-for-wordpress' ),
920
 
921
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:36
922
- __( 'We will recommend the optimal settings for MonsterInsights based on your choice.', 'google-analytics-for-wordpress' ),
923
 
924
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:40
925
- __( 'Business Website', 'google-analytics-for-wordpress' ),
926
 
927
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:45
928
- /* Translators: Make text bold. */
929
- __( 'Publisher %1$s(Blog)%2$s', 'google-analytics-for-wordpress' ),
930
 
931
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:49
932
- __( 'Ecommerce', 'google-analytics-for-wordpress' ),
933
 
934
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:40
935
- __( 'MonsterInsights Recommends WPForms', 'google-analytics-for-wordpress' ),
936
 
937
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:41
938
- __( 'Built by the folks behind MonsterInsights, WPForms is the most beginner friendly form plugin in the market.', 'google-analytics-for-wordpress' ),
 
939
 
940
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:42
941
- __( 'Used on over 3,000,000 websites!', 'google-analytics-for-wordpress' ),
942
 
943
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:43
944
- __( 'WPForms allow you to create beautiful contact forms, subscription forms, payment forms, and other types of forms for your site in minutes, not hours!', 'google-analytics-for-wordpress' ),
945
 
946
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:44
947
- __( 'Skip this Step', 'google-analytics-for-wordpress' ),
948
 
949
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:45
950
- __( 'Continue & Install WPForms', 'google-analytics-for-wordpress' ),
951
 
952
- // Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:106
953
- __( 'Installing...', 'google-analytics-for-wordpress' ),
954
 
955
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:53
956
- __( 'Recommended Settings', 'google-analytics-for-wordpress' ),
957
 
958
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:54
959
- __( 'MonsterInsights recommends the following settings based on your configuration.', 'google-analytics-for-wordpress' ),
960
 
961
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:55
962
- __( 'Events Tracking', 'google-analytics-for-wordpress' ),
963
 
964
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:56
965
- __( 'Must have for all click tracking on site.', 'google-analytics-for-wordpress' ),
966
 
967
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:57
968
- __( 'MonsterInsights 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.', 'google-analytics-for-wordpress' ),
969
 
970
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:58
971
- __( 'Enhanced Link Attribution', 'google-analytics-for-wordpress' ),
972
 
973
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:59
974
- __( 'Improves the accuracy of your In-Page Analytics.', 'google-analytics-for-wordpress' ),
975
 
976
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:60
977
- __( 'MonsterInsights 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.', 'google-analytics-for-wordpress' ),
978
 
979
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:61
980
- __( 'Install Updates Automatically', 'google-analytics-for-wordpress' ),
981
 
982
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:62
983
- __( 'Get the latest features, bug fixes, and security updates as they are released.', 'google-analytics-for-wordpress' ),
984
 
985
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:63
986
- __( 'To ensure you get the latest bugfixes and security updates and avoid needing to spend time logging into your WordPress site to update MonsterInsights, we offer the ability to automatically have MonsterInsights update itself.', 'google-analytics-for-wordpress' ),
987
 
988
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:64
989
- __( 'File Download Tracking', 'google-analytics-for-wordpress' ),
990
 
991
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:65
992
- __( 'Helps you see file downloads data.', 'google-analytics-for-wordpress' ),
993
 
994
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:66
995
- __( 'MonsterInsights 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? MonsterInsights makes this both easy, and code-free! You can customize the file types to track at any time from our settings panel.', 'google-analytics-for-wordpress' ),
996
 
997
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:50
998
- /* Translators: Example path (/go/). */
999
- __( 'Path (example: %s)', 'google-analytics-for-wordpress' ),
1000
 
1001
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:52
1002
- __( 'Path has to start with a / and have no spaces', 'google-analytics-for-wordpress' ),
1003
 
1004
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:57
1005
- /* Translators: Example label (aff). */
1006
- __( 'Label (example: %s)', 'google-analytics-for-wordpress' ),
1007
 
1008
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:59
1009
- __( 'Label can\'t contain any spaces', 'google-analytics-for-wordpress' ),
1010
 
1011
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:83
1012
- __( 'Helps you increase affiliate revenue.', 'google-analytics-for-wordpress' ),
1013
-
1014
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:84
1015
- __( 'MonsterInsights 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.', 'google-analytics-for-wordpress' ),
1016
 
1017
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:85
1018
- __( 'Affiliate Link Tracking', 'google-analytics-for-wordpress' ),
1019
 
1020
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:86
1021
- __( 'Who Can See Reports', 'google-analytics-for-wordpress' ),
1022
 
1023
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:87
1024
- __( 'These user roles will be able to access MonsterInsights\'s reports in the WordPress admin area.', 'google-analytics-for-wordpress' ),
 
1025
 
1026
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:69
1027
- __( '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.', 'google-analytics-for-wordpress' ),
 
1028
 
1029
- // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:49
1030
- __( 'Save and continue', 'google-analytics-for-wordpress' ),
1031
 
1032
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:91
1033
- __( 'Events Tracking is enabled the moment you set up MonsterInsights', 'google-analytics-for-wordpress' ),
1034
 
1035
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:92
1036
- __( 'Enhanced Link Attribution is enabled the moment you set up MonsterInsights', 'google-analytics-for-wordpress' ),
 
1037
 
1038
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:93
1039
- __( '+ Add Role', 'google-analytics-for-wordpress' ),
 
1040
 
1041
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:48
1042
- __( 'Connect MonsterInsights to Your Website', 'google-analytics-for-wordpress' ),
1043
 
1044
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:49
1045
- __( 'MonsterInsights connects Google Analytics to WordPress and shows you stats that matter.', 'google-analytics-for-wordpress' ),
1046
 
1047
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:52
1048
- __( 'Whoops, something went wrong and we weren\'t able to connect to MonsterInsights. Please enter your Google UA code manually.', 'google-analytics-for-wordpress' ),
1049
 
1050
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:53
1051
- __( 'Manually enter your UA code', 'google-analytics-for-wordpress' ),
1052
 
1053
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:54
1054
- __( '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.', 'google-analytics-for-wordpress' ),
1055
 
1056
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:81
1057
- __( 'UA code can\'t be empty', 'google-analytics-for-wordpress' ),
 
1058
 
1059
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:93
1060
- __( 'Saving UA code...', 'google-analytics-for-wordpress' ),
1061
 
1062
- // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:31
1063
- __( 'Awesome, You\'re All Set!', 'google-analytics-for-wordpress' ),
1064
 
1065
- // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:32
1066
- __( 'MonsterInsights is all set up and ready to use. We\'ve verified that the tracking code is deployed properly and collecting data.', 'google-analytics-for-wordpress' ),
1067
 
1068
- // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:34
1069
- /* Translators: Make text bold. */
1070
- __( '%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.', 'google-analytics-for-wordpress' ),
1071
 
1072
- // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:36
1073
- /* Translators: Link to our blog. */
1074
- __( '%1$sSubscribe to the MonsterInsights blog%2$s for tips on how to get more traffic and grow your business.', 'google-analytics-for-wordpress' ),
1075
 
1076
- // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:37
1077
- __( 'Finish Setup & Exit Wizard', 'google-analytics-for-wordpress' ),
1078
 
1079
- // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:50
1080
- __( 'Checking your website...', 'google-analytics-for-wordpress' ),
1081
 
1082
- // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:45
1083
- __( 'Recommended Addons', 'google-analytics-for-wordpress' ),
1084
 
1085
- // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:46
1086
- __( 'To unlock more features consider upgrading to PRO. As a valued MonsterInsights Lite user you receive 50% off, automatically applied at checkout!', 'google-analytics-for-wordpress' ),
1087
 
1088
- // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:47
1089
- __( 'Other Addons', 'google-analytics-for-wordpress' ),
 
1090
 
1091
- // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:48
1092
- __( 'View all MonsterInsights addons', 'google-analytics-for-wordpress' ),
1093
 
1094
- // Reference: src/components/TheFloatingBar-Lite.vue:29
1095
- /* Translators: Placeholders are used for making text bold and adding a link. */
1096
- __( 'You\'re using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s.', 'google-analytics-for-wordpress' ),
1097
 
1098
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:105
1099
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:78
1100
- /* Translators: placeholders make text small. */
1101
- __( 'Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s', 'google-analytics-for-wordpress' ),
1102
 
1103
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:110
1104
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:83
1105
- /* Translators: placeholders make text small. */
1106
- __( 'Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s', 'google-analytics-for-wordpress' ),
1107
 
1108
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:115
1109
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:88
1110
- /* Translators: placeholders make text small. */
1111
- __( 'None %1$s- Manually update everything.%2$s', 'google-analytics-for-wordpress' ),
1112
 
1113
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:162
1114
- /* Translators: Adds a link to the general settings tab. */
1115
- __( 'It looks like you added a Google Analytics tracking code in the custom code area, this can potentially prevent proper tracking. If you want to use a manual UA please use the setting in the %1$sGeneral%2$s tab.', 'google-analytics-for-wordpress' ),
1116
 
1117
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:64
1118
- __( 'Email Summaries', 'google-analytics-for-wordpress' ),
1119
 
1120
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:65
1121
- __( 'Export PDF Reports', 'google-analytics-for-wordpress' ),
1122
 
1123
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:66
1124
- __( 'Permissions', 'google-analytics-for-wordpress' ),
1125
 
1126
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:67
1127
- __( 'Allow These User Roles to See Reports', 'google-analytics-for-wordpress' ),
1128
 
1129
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:68
1130
- __( 'Users that have at least one of these roles will be able to view the reports.', 'google-analytics-for-wordpress' ),
1131
 
1132
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:70
1133
- __( 'Allow These User Roles to Save Settings', 'google-analytics-for-wordpress' ),
1134
 
1135
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:71
1136
- __( 'Users that have at least one of these roles will be able to view and save the settings panel.', 'google-analytics-for-wordpress' ),
1137
 
1138
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:72
1139
- __( 'Users that have at least one of these roles will be able to view and save the settings panel, along with any user with the manage_options capability.', 'google-analytics-for-wordpress' ),
1140
 
1141
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:73
1142
- __( 'Exclude These User Roles From Tracking', 'google-analytics-for-wordpress' ),
1143
 
1144
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:75
1145
- __( 'Users that have at least one of these roles will not be tracked into Google Analytics.', 'google-analytics-for-wordpress' ),
1146
 
1147
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:76
1148
- __( 'Performance', 'google-analytics-for-wordpress' ),
 
1149
 
1150
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:77
1151
- __( 'Custom code', 'google-analytics-for-wordpress' ),
1152
 
1153
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:79
1154
- /* Translators: Adds a link to the Google reference. */
1155
- __( 'Not for the average user: this allows you to add a line of code, to be added before the %1$spageview is sent%2$s.', 'google-analytics-for-wordpress' ),
1156
 
1157
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:80
1158
- __( 'Reports', 'google-analytics-for-wordpress' ),
1159
 
1160
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:81
1161
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:95
1162
- __( 'Automatic Updates', 'google-analytics-for-wordpress' ),
1163
 
1164
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:82
1165
- __( 'You must have the "unfiltered_html" capability to view/edit this setting.', 'google-analytics-for-wordpress' ),
1166
 
1167
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:83
1168
- __( 'Hide Admin Bar Reports', 'google-analytics-for-wordpress' ),
1169
 
1170
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:88
1171
- /* Translators: placeholders make text small. */
1172
- __( 'Enabled %1$s- Show reports and dashboard widget.%2$s', 'google-analytics-for-wordpress' ),
1173
 
1174
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:93
1175
- /* Translators: placeholders make text small. */
1176
- __( 'Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s', 'google-analytics-for-wordpress' ),
1177
 
1178
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:98
1179
- /* Translators: placeholders make text small. */
1180
- __( 'Disabled %1$s- Hide reports and dashboard widget.%2$s', 'google-analytics-for-wordpress' ),
1181
 
1182
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:105
1183
- __( 'Choose Theme', 'google-analytics-for-wordpress' ),
1184
 
1185
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:286
1186
- __( 'Behavior', 'google-analytics-for-wordpress' ),
1187
 
1188
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:107
1189
- __( 'Widget Styling', 'google-analytics-for-wordpress' ),
1190
 
1191
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:108
1192
- __( 'Choose how you want to determine the colors, font sizes and spacing of the widget.', 'google-analytics-for-wordpress' ),
1193
 
1194
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:109
1195
- __( 'Sort By', 'google-analytics-for-wordpress' ),
1196
 
1197
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:110
1198
- __( 'Choose how you\'d like the widget to determine your popular posts.', 'google-analytics-for-wordpress' ),
1199
 
1200
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:111
1201
- __( 'Placement', 'google-analytics-for-wordpress' ),
1202
 
1203
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:112
1204
- __( 'Choose how you\'d like to place the widget.', 'google-analytics-for-wordpress' ),
1205
 
1206
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:113
1207
- __( 'Insert After', 'google-analytics-for-wordpress' ),
1208
 
1209
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:114
1210
- __( 'Choose where in the post body the widget will be placed.', 'google-analytics-for-wordpress' ),
1211
 
1212
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:115
1213
- __( 'Include in Post Types', 'google-analytics-for-wordpress' ),
 
 
1214
 
1215
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:116
1216
- __( 'Exclude from specific posts', 'google-analytics-for-wordpress' ),
1217
 
1218
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:118
1219
- /* Translators: Placeholders make the text bold. */
1220
- __( 'Choose which Post Types the widget %1$sWILL%2$s be placed.', 'google-analytics-for-wordpress' ),
1221
 
1222
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:120
1223
- /* Translators: Placeholders make the text bold. */
1224
- __( 'Choose from which Posts the widget %1$sWILL NOT%2$s be placed.', 'google-analytics-for-wordpress' ),
1225
 
1226
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:136
1227
- __( 'Customize Design', 'google-analytics-for-wordpress' ),
 
1228
 
1229
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:122
1230
- __( 'Loading Themes', 'google-analytics-for-wordpress' ),
 
1231
 
1232
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:123
1233
- __( 'words', 'google-analytics-for-wordpress' ),
 
 
1234
 
1235
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:124
1236
- __( 'Please select at least one post to display.', 'google-analytics-for-wordpress' ),
 
 
1237
 
1238
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:129
1239
- /* Translators: placeholders make text small. */
1240
- __( 'Default Styles %1$s- As seen above.%2$s', 'google-analytics-for-wordpress' ),
 
 
1241
 
1242
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:134
1243
- /* Translators: placeholders make text small. */
1244
- __( 'No Styles %1$s- Use your own CSS.%2$s', 'google-analytics-for-wordpress' ),
 
1245
 
1246
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:141
1247
- /* Translators: placeholders make text small. */
1248
- __( 'Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s', 'google-analytics-for-wordpress' ),
1249
 
1250
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:146
1251
- /* Translators: placeholders make text small. */
1252
- __( 'SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s', 'google-analytics-for-wordpress' ),
 
1253
 
1254
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:151
1255
- /* Translators: placeholders make text small. */
1256
- __( 'Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s', 'google-analytics-for-wordpress' ),
1257
 
1258
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:158
1259
- /* Translators: placeholders make text small. */
1260
- __( 'Automatic %1$s- The widget is automatically placed inside the post body.%2$s', 'google-analytics-for-wordpress' ),
1261
 
1262
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:163
1263
- /* Translators: placeholders make text small. */
1264
- __( 'Manual %1$s- Manually place the widget using Gutenberg blocks or using our shortcode.%2$s', 'google-analytics-for-wordpress' ),
1265
 
1266
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEcommerce-Lite.vue:30
1267
- __( 'See All Your Important Store Metrics in One Place', 'google-analytics-for-wordpress' ),
1268
 
1269
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEcommerce-Lite.vue:31
1270
- __( 'Get an Answer to All Your Top Ecommerce Questions From a Single Report', 'google-analytics-for-wordpress' ),
1271
 
1272
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEcommerce-Lite.vue:32
1273
- __( 'ONE-CLICK INTEGRATIONS', 'google-analytics-for-wordpress' ),
1274
 
1275
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:327
1276
- __( 'Upgrade to MonsterInsights Pro', 'google-analytics-for-wordpress' ),
 
1277
 
1278
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEcommerce-Lite.vue:34
1279
- __( 'Enable Ecommerce Tracking and Grow Your Business with Confidence', 'google-analytics-for-wordpress' ),
1280
 
1281
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEcommerce-Lite.vue:35
1282
- __( 'MonsterInsights Ecommerce Addon makes it easy to setup enhanced eCommerce tracking, so you can see all your important eCommerce metrics like total revenue, conversion rate, average order value, top products, top referral sources, and more in a single report right inside your WordPress dashboard.', 'google-analytics-for-wordpress' ),
 
1283
 
1284
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:42
1285
- __( 'Import/Export', 'google-analytics-for-wordpress' ),
 
1286
 
1287
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:43
1288
- __( 'Import', 'google-analytics-for-wordpress' ),
 
1289
 
1290
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:44
1291
- __( 'Import settings from another MonsterInsights website.', 'google-analytics-for-wordpress' ),
1292
 
1293
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:45
1294
- __( 'Export', 'google-analytics-for-wordpress' ),
 
1295
 
1296
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:46
1297
- __( 'Export settings to import into another MonsterInsights install.', 'google-analytics-for-wordpress' ),
 
1298
 
1299
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:47
1300
- __( 'Import Settings', 'google-analytics-for-wordpress' ),
1301
 
1302
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:48
1303
- __( 'Export Settings', 'google-analytics-for-wordpress' ),
1304
 
1305
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:49
1306
- __( 'Please choose a file to import', 'google-analytics-for-wordpress' ),
 
1307
 
1308
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:50
1309
- __( 'Use the filepicker below to select the settings export file from another site.', 'google-analytics-for-wordpress' ),
1310
 
1311
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:51
1312
- __( 'Use the button below to export a file with your MonsterInsights settings.', 'google-analytics-for-wordpress' ),
 
1313
 
1314
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:64
1315
- __( 'Uploading file...', 'google-analytics-for-wordpress' ),
 
1316
 
1317
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:79
1318
- __( 'File imported', 'google-analytics-for-wordpress' ),
 
 
1319
 
1320
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:80
1321
- __( 'Settings successfully updated!', 'google-analytics-for-wordpress' ),
1322
 
1323
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:86
1324
- __( 'Error importing settings', 'google-analytics-for-wordpress' ),
 
1325
 
1326
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:87
1327
- __( 'Please choose a .json file generated by a MonsterInsights settings export.', 'google-analytics-for-wordpress' ),
1328
 
1329
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:277
1330
- __( 'Demographics', 'google-analytics-for-wordpress' ),
 
1331
 
1332
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:60
1333
- __( 'Enable Demographics and Interests Reports for Remarketing and Advertising', 'google-analytics-for-wordpress' ),
 
1334
 
1335
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:61
1336
- __( 'Anonymize IP Addresses', 'google-analytics-for-wordpress' ),
 
1337
 
1338
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:62
1339
- __( 'Link Attribution', 'google-analytics-for-wordpress' ),
 
1340
 
1341
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:63
1342
- __( 'Enable Enhanced Link Attribution', 'google-analytics-for-wordpress' ),
1343
 
1344
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:64
1345
- __( 'Enable Anchor Tracking', 'google-analytics-for-wordpress' ),
1346
 
1347
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:65
1348
- __( 'Enable allowAnchor', 'google-analytics-for-wordpress' ),
 
1349
 
1350
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:66
1351
- __( 'Enable allowLinker', 'google-analytics-for-wordpress' ),
1352
 
1353
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:67
1354
- __( 'Enable Tag Links in RSS', 'google-analytics-for-wordpress' ),
1355
 
1356
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:68
1357
- __( 'File Downloads', 'google-analytics-for-wordpress' ),
1358
 
1359
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:69
1360
- __( 'Extensions of Files to Track as Downloads', 'google-analytics-for-wordpress' ),
1361
 
1362
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:70
1363
- __( 'MonsterInsights will send an event to Google Analytics if a link to a file has one of the above extensions.', 'google-analytics-for-wordpress' ),
 
1364
 
1365
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:72
1366
- /* Translators: Add links to the documentation. */
1367
- __( 'Enable this setting to add the Demographics and Remarketing features to your Google Analytics tracking code. Make sure to enable Demographics and Remarketing in your Google Analytics account. We have a guide for how to do that in our %1$sknowledge base%2$s. For more information about Remarketing, we refer you to %3$sGoogle\'s documentation%4$s. Note that usage of this function is affected by privacy and cookie laws around the world. Be sure to follow the laws that affect your target audience.', 'google-analytics-for-wordpress' ),
1368
 
1369
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:74
1370
- /* Translators: Adds a link to the documentation. */
1371
- __( 'This adds %1$sanonymizeIp%2$s, telling Google Analytics to anonymize the information sent by the tracker objects by removing the last octet of the IP address prior to its storage.', 'google-analytics-for-wordpress' ),
1372
 
1373
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:76
1374
- /* Translators: Adds a link to the documentation. */
1375
- __( 'Adds the Enhanced Link Attribution (retain link) code to improve the accuracy of your In-Page Analytics report by automatically differentiating between multiple links to the same URL on a single page by using link element IDs.', 'google-analytics-for-wordpress' ),
1376
 
1377
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:77
1378
- __( 'Many WordPress "1-page" style themes rely on anchor tags for navigation to show virtual pages. The problem is that to Google Analytics, these are all just a single page, and it makes it hard to get meaningful statistics about pages viewed. This feature allows proper tracking in those themes.', 'google-analytics-for-wordpress' ),
1379
 
1380
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:79
1381
- /* Translators: Adds a link to the documentation. */
1382
- __( 'This adds %1$sallowAnchor%2$s to the create command of the pageview hit tracking code, and makes RSS link tagging use a # as well.', 'google-analytics-for-wordpress' ),
1383
 
1384
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:81
1385
- /* Translators: Adds a link to the documentation. */
1386
- __( 'Enabling %1$scross-domain tracking (additional setup required)%2$s allows you to track users across multiple properties you own (such as example-1.com and example-2.com as a single session. It also allows you fix an issue so that when a user has to go to an off-site hosted payment gateway to finish a purchase it doesn\'t count it as referral traffic from that gateway but maintains the visit as part of the same session.) It is required that the other site includes a Google Analytics tracker with the same UA Code.', 'google-analytics-for-wordpress' ),
1387
 
1388
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:83
1389
- /* Translators: Adds a link to the documentation. */
1390
- __( 'Do not use this feature if you use FeedBurner, as FeedBurner can do this automatically and better than this plugin can. Check this %1$shelp page%2$s for info on how to enable this feature in FeedBurner.', 'google-analytics-for-wordpress' ),
1391
 
1392
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:84
1393
- __( 'Add domain', 'google-analytics-for-wordpress' ),
1394
 
1395
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:89
1396
- /* Translators: Example domain. */
1397
- __( 'Domain (example: %s)', 'google-analytics-for-wordpress' ),
1398
 
1399
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:92
1400
- /* Translators: Current site domain to be avoided. */
1401
- __( 'Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s ).', 'google-analytics-for-wordpress' ),
1402
 
1403
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:96
1404
- __( 'Cross Domain Tracking', 'google-analytics-for-wordpress' ),
1405
 
1406
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:98
1407
- /* Translators: Adds a link to the documentation. */
1408
- __( 'Cross domain tracking makes it possible for Analytics to see sessions on two related sites as a single session. More info on specific setup steps can be found in our %1$sknowledge base%2$s.', 'google-analytics-for-wordpress' ),
1409
 
1410
- // Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:45
1411
- __( 'Caching', 'google-analytics-for-wordpress' ),
1412
 
1413
- // Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:46
1414
- __( 'Enable Data Caching', 'google-analytics-for-wordpress' ),
1415
 
1416
- // Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:47
1417
- __( 'Refresh Cache Every', 'google-analytics-for-wordpress' ),
1418
 
1419
- // Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:48
1420
- __( 'Choose how often to refresh the cache.', 'google-analytics-for-wordpress' ),
1421
 
1422
- // Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:49
1423
- __( 'Enable Ajaxify', 'google-analytics-for-wordpress' ),
1424
 
1425
- // Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:50
1426
- __( 'Ajaxify Widget', 'google-analytics-for-wordpress' ),
1427
 
1428
- // Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:51
1429
- __( 'Use to bypass page caching.', 'google-analytics-for-wordpress' ),
1430
 
1431
- // Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:52
1432
- __( 'Empty Cache', 'google-analytics-for-wordpress' ),
1433
 
1434
- // Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:54
1435
- __( 'Click to manually wipe the cache right now.', 'google-analytics-for-wordpress' ),
1436
 
1437
- // Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:88
1438
- __( 'Popular posts cache emptied', 'google-analytics-for-wordpress' ),
1439
 
1440
- // Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:92
1441
- __( 'Error emptying the popular posts cache. Please try again.', 'google-analytics-for-wordpress' ),
1442
 
1443
- // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:106
1444
- __( 'Display Title', 'google-analytics-for-wordpress' ),
1445
 
1446
- // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:107
1447
- __( 'Widget Title', 'google-analytics-for-wordpress' ),
 
1448
 
1449
- // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:108
1450
- __( 'Title your widget and set it’s display preferences.', 'google-analytics-for-wordpress' ),
1451
 
1452
- // Reference: src/plugins/monsterinsights-settings-helper-plugin.js:111
1453
- __( 'Loading Settings', 'google-analytics-for-wordpress' ),
1454
 
1455
- // Reference: src/plugins/monsterinsights-settings-helper-plugin.js:19
1456
- __( 'Saving Changes...', 'google-analytics-for-wordpress' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1457
 
1458
- // Reference: src/plugins/monsterinsights-settings-helper-plugin.js:48
1459
- __( 'Settings Updated', 'google-analytics-for-wordpress' ),
1460
 
1461
- // Reference: src/plugins/monsterinsights-settings-helper-plugin.js:6
1462
- /* Translators: Adds a link to the settings panel. */
1463
- __( 'You need to %1$sconnect MonsterInsights%2$s first', 'google-analytics-for-wordpress' ),
1464
 
1465
- // Reference: src/plugins/monsterinsights-settings-helper-plugin.js:82
1466
- __( 'Could Not Save Changes', 'google-analytics-for-wordpress' ),
1467
 
1468
- // Reference: src/modules/reports/store/actions.js:132
1469
- __( 'Installing Addon', 'google-analytics-for-wordpress' ),
1470
 
1471
- // Reference: src/modules/reports/store/actions.js:155
1472
- __( 'Activating Addon', 'google-analytics-for-wordpress' ),
1473
 
1474
- // Reference: src/modules/reports/store/actions.js:170
1475
- __( 'Addon Activated', 'google-analytics-for-wordpress' ),
1476
 
1477
- // Reference: src/modules/reports/store/actions.js:171
1478
- __( 'Loading report data', 'google-analytics-for-wordpress' ),
1479
 
1480
- // Reference: src/modules/reports/store/actions.js:188
1481
- __( 'Please activate manually', 'google-analytics-for-wordpress' ),
1482
 
1483
- // Reference: src/modules/reports/store/actions.js:191
1484
- /* Translators: Adds the error status and status text. */
1485
- __( 'Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
1486
 
1487
- // Reference: src/modules/reports/store/actions.js:197
1488
- __( 'Error Activating Addon', 'google-analytics-for-wordpress' ),
1489
 
1490
- // Reference: src/modules/reports/store/actions.js:203
1491
- __( 'View Addons', 'google-analytics-for-wordpress' ),
1492
 
1493
- // Reference: src/modules/notifications/components/Notification.vue:34
1494
- __( 'Dismiss', 'google-analytics-for-wordpress' ),
1495
 
1496
- // Reference: src/modules/reports/store/actions.js:211
1497
- __( 'Redirecting', 'google-analytics-for-wordpress' ),
1498
 
1499
- // Reference: src/modules/reports/store/actions.js:212
1500
- __( 'Please wait', 'google-analytics-for-wordpress' ),
1501
 
1502
- // Reference: src/modules/reports/store/actions.js:52
1503
- __( 'activate', 'google-analytics-for-wordpress' ),
1504
 
1505
- // Reference: src/modules/reports/store/actions.js:52
1506
- __( 'install', 'google-analytics-for-wordpress' ),
1507
 
1508
- // Reference: src/modules/reports/store/actions.js:56
1509
- __( 'Visit addons page', 'google-analytics-for-wordpress' ),
1510
 
1511
- // Reference: src/modules/reports/store/actions.js:64
1512
- __( 'Report Unavailable', 'google-analytics-for-wordpress' ),
1513
 
1514
- // Reference: src/modules/reports/store/actions.js:71
1515
- /* Translators: Install/Activate the addon. */
1516
- __( '%s Addon', 'google-analytics-for-wordpress' ),
1517
 
1518
- // Reference: src/modules/reports/store/actions.js:90
1519
- __( 'Go Back To Reports', 'google-analytics-for-wordpress' ),
1520
 
1521
- // Reference: src/modules/reports/store/actions.js:91
1522
- __( 'Enable Enhanced eCommerce', 'google-analytics-for-wordpress' ),
1523
 
1524
- // Reference: src/modules/widget/components/WidgetReportsLink.vue:17
1525
- __( 'See All Reports', 'google-analytics-for-wordpress' ),
1526
 
1527
- // Reference: src/modules/widget/components/WidgetReportsLink.vue:18
1528
- __( 'Go to the Analytics Dashboard', 'google-analytics-for-wordpress' ),
1529
 
1530
- // Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:28
1531
- __( 'Last 30 Days Insights for:', 'google-analytics-for-wordpress' ),
1532
 
1533
- // Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:29
1534
- __( 'Your Website', 'google-analytics-for-wordpress' ),
1535
 
1536
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:239
1537
- __( 'Sessions', 'google-analytics-for-wordpress' ),
1538
 
1539
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:300
1540
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:242
1541
- __( 'Pageviews', 'google-analytics-for-wordpress' ),
1542
 
1543
- // Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:32
1544
- __( 'Avg. Duration', 'google-analytics-for-wordpress' ),
1545
 
1546
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:246
1547
- __( 'Bounce Rate', 'google-analytics-for-wordpress' ),
 
1548
 
1549
- // Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:42
1550
- __( 'More data is available', 'google-analytics-for-wordpress' ),
 
1551
 
1552
- // Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:44
1553
- __( 'Want to see page-specific stats?', 'google-analytics-for-wordpress' ),
 
1554
 
1555
- // Reference: src/modules/widget/components/settings/WidgetSettingsReports-Lite.vue:68
1556
- __( 'Show Overview Reports', 'google-analytics-for-wordpress' ),
 
1557
 
1558
- // Reference: src/modules/widget/components/settings/WidgetSettingsReports-Lite.vue:69
1559
- __( 'Show Publishers Reports', 'google-analytics-for-wordpress' ),
 
1560
 
1561
- // Reference: src/modules/widget/components/settings/WidgetSettingsReports-Lite.vue:70
1562
- __( 'Show eCommerce Reports', 'google-analytics-for-wordpress' ),
 
1563
 
1564
- // Reference: src/modules/widget/components/settings/WidgetSettingsReports-Lite.vue:72
1565
- __( 'Available in PRO version', 'google-analytics-for-wordpress' ),
 
1566
 
1567
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:241
1568
- /* Translators: Placeholder adds a line break. */
1569
- __( 'Unique %s Sessions', 'google-analytics-for-wordpress' ),
1570
 
1571
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:244
1572
- /* Translators: Placeholder adds a line break. */
1573
- __( 'Unique %s Pageviews', 'google-analytics-for-wordpress' ),
1574
 
1575
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:256
1576
- __( 'A session is the browsing session of a single user to your site.', 'google-analytics-for-wordpress' ),
1577
 
1578
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:257
1579
- __( '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.', 'google-analytics-for-wordpress' ),
1580
 
1581
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:258
1582
- __( 'Total duration of all sessions (in seconds) / number of sessions.', 'google-analytics-for-wordpress' ),
1583
 
1584
- // Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:71
1585
- __( '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.', 'google-analytics-for-wordpress' ),
1586
 
1587
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:245
1588
- __( 'Avg. Session Duration', 'google-analytics-for-wordpress' ),
1589
 
1590
- // Reference: src/components/TheAppFTPForm.vue:100
1591
- __( 'Proceed', 'google-analytics-for-wordpress' ),
1592
 
1593
- // Reference: src/components/TheAppFTPForm.vue:92
1594
- __( 'Connection Information', 'google-analytics-for-wordpress' ),
1595
 
1596
- // Reference: src/components/TheAppFTPForm.vue:93
1597
- __( '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.', 'google-analytics-for-wordpress' ),
1598
 
1599
- // Reference: src/components/TheAppFTPForm.vue:94
1600
- __( 'Hostname', 'google-analytics-for-wordpress' ),
1601
 
1602
- // Reference: src/components/TheAppFTPForm.vue:95
1603
- __( 'FTP Username', 'google-analytics-for-wordpress' ),
1604
 
1605
- // Reference: src/components/TheAppFTPForm.vue:96
1606
- __( 'FTP Password', 'google-analytics-for-wordpress' ),
1607
 
1608
- // Reference: src/components/TheAppFTPForm.vue:97
1609
- __( 'This password will not be stored on the server.', 'google-analytics-for-wordpress' ),
1610
 
1611
- // Reference: src/components/TheAppFTPForm.vue:98
1612
- __( 'Connection Type', 'google-analytics-for-wordpress' ),
 
1613
 
1614
- // Reference: src/components/TheAppFTPForm.vue:99
1615
- __( 'Cancel', 'google-analytics-for-wordpress' ),
 
1616
 
1617
- // Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:100
1618
- __( 'Activating...', 'google-analytics-for-wordpress' ),
1619
 
1620
- // Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:103
1621
- __( 'Deactivating...', 'google-analytics-for-wordpress' ),
1622
 
1623
- // Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:109
1624
- __( 'Deactivate', 'google-analytics-for-wordpress' ),
1625
 
1626
- // Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:43
1627
- /* Translators: The status of the addon (installed/active/inactive). */
1628
- __( 'Status: %s', 'google-analytics-for-wordpress' ),
1629
 
1630
- // Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:81
1631
- __( 'Not Installed', 'google-analytics-for-wordpress' ),
1632
 
1633
- // Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:87
1634
- __( 'Network Active', 'google-analytics-for-wordpress' ),
1635
 
1636
- // Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:87
1637
- __( 'Active', 'google-analytics-for-wordpress' ),
1638
 
1639
- // Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:89
1640
- __( 'Inactive', 'google-analytics-for-wordpress' ),
 
1641
 
1642
- // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:19
1643
- __( 'Thank you for being a loyal MonsterInsights Lite user.', 'google-analytics-for-wordpress' ),
 
 
 
 
1644
 
1645
- // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:20
1646
- __( 'Upgrade to MonsterInsights Pro and unlock all the awesome features.', 'google-analytics-for-wordpress' ),
1647
 
1648
- // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:22
1649
- /* Translators: Gets replaced with the coupon code. */
1650
- __( 'Use coupon code %s to get 50%% off.', 'google-analytics-for-wordpress' ),
1651
 
1652
- // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:24
1653
- __( 'Dashboard widget', 'google-analytics-for-wordpress' ),
1654
 
1655
- // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:25
1656
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:62
1657
- __( 'Affiliate Links', 'google-analytics-for-wordpress' ),
1658
 
1659
- // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:27
1660
- __( 'Enhanced Ecommerce', 'google-analytics-for-wordpress' ),
1661
 
1662
- // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:28
1663
- __( 'Banner Ads', 'google-analytics-for-wordpress' ),
 
1664
 
1665
- // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:31
1666
- __( 'Google AMP', 'google-analytics-for-wordpress' ),
1667
 
1668
- // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:32
1669
- __( 'SEO Score Tracking', 'google-analytics-for-wordpress' ),
 
1670
 
1671
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:116
 
1672
  __( 'Authenticating', 'google-analytics-for-wordpress' ),
1673
 
1674
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:170
@@ -1684,6 +1557,7 @@ $generated_i18n_strings = array(
1684
  __( 'You\'ve disconnected your site from MonsterInsights. Your site is no longer being tracked by Google Analytics and you won\'t see reports anymore.', 'google-analytics-for-wordpress' ),
1685
 
1686
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:67
 
1687
  __( 'Connect MonsterInsights', 'google-analytics-for-wordpress' ),
1688
 
1689
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:68
@@ -1696,9 +1570,11 @@ $generated_i18n_strings = array(
1696
  __( 'Active Profile', 'google-analytics-for-wordpress' ),
1697
 
1698
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:72
 
1699
  __( 'Your website profile has been set at the network level of your WordPress Multisite.', 'google-analytics-for-wordpress' ),
1700
 
1701
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:73
 
1702
  __( 'If you would like to use a different profile for this subsite, you can authenticate below.', 'google-analytics-for-wordpress' ),
1703
 
1704
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:76
@@ -1710,686 +1586,872 @@ $generated_i18n_strings = array(
1710
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:85
1711
  __( 'Disconnect MonsterInsights', 'google-analytics-for-wordpress' ),
1712
 
1713
- // Reference: src/modules/widget/components/settings/WidgetSettingsWidth.vue:40
1714
- __( 'Show in widget mode', 'google-analytics-for-wordpress' ),
1715
 
1716
- // Reference: src/modules/widget/components/settings/WidgetSettingsWidth.vue:40
1717
- __( 'Show in full-width mode', 'google-analytics-for-wordpress' ),
1718
 
1719
- // Reference: src/plugins/monsterinsights-compatibility-plugin.js:13
1720
- /* Translators: Current PHP version and recommended PHP version. */
1721
- __( 'MonsterInsights has detected that your site is running an outdated, insecure version of PHP (%1$s), which could be putting your site at risk for being hacked. WordPress stopped supporting your PHP version in April, 2019. Updating to the recommended version (PHP %2$s) only takes a few minutes and will make your website significantly faster and more secure.', 'google-analytics-for-wordpress' ),
1722
 
1723
- // Reference: src/plugins/monsterinsights-compatibility-plugin.js:27
1724
- /* Translators: Current WordPress version. */
1725
- __( 'MonsterInsights has detected that your site is running an outdated version of WordPress (%s). MonsterInsights will stop supporting WordPress versions lower than 4.9 in 2020. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install.', 'google-analytics-for-wordpress' ),
1726
 
1727
- // Reference: src/plugins/monsterinsights-compatibility-plugin.js:39
1728
- __( 'Yikes! PHP Update Required', 'google-analytics-for-wordpress' ),
1729
 
1730
- // Reference: src/plugins/monsterinsights-compatibility-plugin.js:41
1731
- /* Translators: Current PHP version and recommended PHP version. */
1732
- __( 'MonsterInsights has detected that your site is running an outdated, insecure version of PHP (%1$s), which could be putting your site at risk for being hacked. Updating to the recommended version (PHP %2$s) only takes a few minutes and will make your website significantly faster and more secure.', 'google-analytics-for-wordpress' ),
1733
 
1734
- // Reference: src/plugins/monsterinsights-compatibility-plugin.js:45
1735
- __( 'Learn more about updating PHP', 'google-analytics-for-wordpress' ),
 
1736
 
1737
- // Reference: src/plugins/monsterinsights-compatibility-plugin.js:53
1738
- __( 'Yikes! WordPress Update Required', 'google-analytics-for-wordpress' ),
1739
 
1740
- // Reference: src/plugins/monsterinsights-compatibility-plugin.js:55
1741
- /* Translators: Current WordPress version. */
1742
- __( 'MonsterInsights has detected that your site is running an outdated version of WordPress (%s). Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install.', 'google-analytics-for-wordpress' ),
1743
 
1744
- // Reference: src/plugins/monsterinsights-compatibility-plugin.js:59
1745
- __( 'Learn more about updating WordPress', 'google-analytics-for-wordpress' ),
1746
 
1747
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:162
1748
- __( 'Custom Campaign Parameters', 'google-analytics-for-wordpress' ),
 
1749
 
1750
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:163
1751
- __( 'The URL builder helps you add parameters to your URLs you use in custom web or email ad campaigns.', 'google-analytics-for-wordpress' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1752
 
1753
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:164
1754
- __( 'A custom campaign is any ad campaign not using the AdWords auto-tagging feature. When users click one of the custom links, the unique parameters are sent to your Analytics account, so you can identify the URLs that are the most effective in attracting users to your content.', 'google-analytics-for-wordpress' ),
 
1755
 
1756
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:166
1757
- /* Translators: Marks the field as required. */
1758
- __( 'Website URL %s', 'google-analytics-for-wordpress' ),
1759
 
1760
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:168
1761
- /* Translators: Display the current website url in italic. */
1762
- __( 'The full website URL (e.g. %1$s %2$s%3$s)', 'google-analytics-for-wordpress' ),
1763
 
1764
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:170
1765
- /* Translators: Marks the field as required. */
1766
- __( 'Campaign Source %s', 'google-analytics-for-wordpress' ),
1767
 
1768
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:172
1769
- /* Translators: Make the text italic. */
1770
- __( 'Enter a referrer (e.g. %1$sfacebook, newsletter, google%2$s)', 'google-analytics-for-wordpress' ),
1771
 
1772
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:175
1773
- /* Translators: Make the text italic. */
1774
- __( 'Enter a marketing medium (e.g. %1$scpc, banner, email%2$s)', 'google-analytics-for-wordpress' ),
1775
 
1776
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:178
1777
- /* Translators: Make the text italic. */
1778
- __( 'Enter a name to easily identify (e.g. %1$sspring_sale%2$s)', 'google-analytics-for-wordpress' ),
1779
 
1780
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:180
1781
- __( 'Enter the paid keyword', 'google-analytics-for-wordpress' ),
1782
 
1783
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:182
1784
- __( 'Enter something to differentiate ads', 'google-analytics-for-wordpress' ),
1785
 
1786
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:183
1787
- __( 'Use Fragment', 'google-analytics-for-wordpress' ),
1788
 
1789
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:185
1790
- /* Translators: Make the text bold. */
1791
- __( 'Set the parameters in the fragment portion of the URL %1$s(not recommended)%2$s', 'google-analytics-for-wordpress' ),
1792
 
1793
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:186
1794
- __( 'URL to use', 'google-analytics-for-wordpress' ),
1795
 
1796
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:187
1797
- __( '(Updates automatically)', 'google-analytics-for-wordpress' ),
1798
 
1799
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:188
1800
- __( 'Copy to Clipboard', 'google-analytics-for-wordpress' ),
1801
 
1802
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:189
1803
- __( 'Copy to Pretty Links', 'google-analytics-for-wordpress' ),
 
1804
 
1805
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:190
1806
- __( 'Make your campaign links prettier!', 'google-analytics-for-wordpress' ),
1807
 
1808
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:191
1809
- __( 'Pretty Links turns those ugly, long campaign links into clean, memorable, speakable and totally shareable links.', 'google-analytics-for-wordpress' ),
1810
 
1811
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:192
1812
- __( 'Download Pretty Links', 'google-analytics-for-wordpress' ),
1813
 
1814
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:193
1815
- __( 'More Information & Examples', 'google-analytics-for-wordpress' ),
1816
 
1817
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:194
1818
- __( 'The following table gives a detailed explanation and example of each of the campaign parameters.', 'google-analytics-for-wordpress' ),
1819
 
1820
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:202
1821
- __( 'Campaign Source', 'google-analytics-for-wordpress' ),
1822
 
1823
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:203
1824
- __( 'Required. Use utm_source to identify a search engine, newsletter name, or other source.', 'google-analytics-for-wordpress' ),
1825
 
1826
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:204
1827
- __( 'Campaign Medium', 'google-analytics-for-wordpress' ),
1828
 
1829
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:205
1830
- __( 'Use utm_medium to identify a medium such as email or cost-per-click.', 'google-analytics-for-wordpress' ),
1831
 
1832
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:206
1833
- __( 'Campaign Name', 'google-analytics-for-wordpress' ),
1834
 
1835
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:207
1836
- __( 'Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign.', 'google-analytics-for-wordpress' ),
1837
 
1838
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:208
1839
- __( 'Campaign Term', 'google-analytics-for-wordpress' ),
 
1840
 
1841
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:209
1842
- __( 'Used for paid search. Use utm_term to note the keywords for this ad.', 'google-analytics-for-wordpress' ),
 
1843
 
1844
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:210
1845
- __( 'Campaign Content', 'google-analytics-for-wordpress' ),
1846
 
1847
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:211
1848
- __( 'Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL.', 'google-analytics-for-wordpress' ),
1849
 
1850
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:213
1851
- /* Translators: Example. */
1852
- __( 'Example: %s', 'google-analytics-for-wordpress' ),
1853
 
1854
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:215
1855
- /* Translators: Examples. */
1856
- __( 'Examples: %s', 'google-analytics-for-wordpress' ),
1857
 
1858
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:218
1859
- __( 'About Campaigns', 'google-analytics-for-wordpress' ),
1860
 
1861
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:222
1862
- __( 'About Custom Campaigns', 'google-analytics-for-wordpress' ),
1863
 
1864
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:226
1865
- __( 'Best Practices for Creating Custom Campaigns', 'google-analytics-for-wordpress' ),
1866
 
1867
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:230
1868
- __( 'About the Referral Traffic Report', 'google-analytics-for-wordpress' ),
1869
 
1870
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:234
1871
- __( 'About Traffic Source Dimensions', 'google-analytics-for-wordpress' ),
1872
 
1873
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:238
1874
- __( 'AdWords Auto-Tagging', 'google-analytics-for-wordpress' ),
1875
 
1876
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:242
1877
- __( 'Additional Information', 'google-analytics-for-wordpress' ),
1878
 
1879
- // Reference: src/modules/settings/components/input/SettingsInputSelect.vue:62
1880
- __( 'No options available', 'google-analytics-for-wordpress' ),
1881
 
1882
- // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:83
1883
- __( 'Make your MonsterInsights campaign links prettier with Pretty Links!', 'google-analytics-for-wordpress' ),
1884
 
1885
- // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:84
1886
- __( 'Pretty Links turns those ugly, long campaign links into clean, memorable, speakable, totally shareable links.', 'google-analytics-for-wordpress' ),
1887
 
1888
- // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:85
1889
- __( 'Take your MonsterInsights campaign links from our URL Builder and shorten them with Pretty Links!', 'google-analytics-for-wordpress' ),
1890
 
1891
- // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:86
1892
- __( 'Over 200,000 websites use Pretty Links!', 'google-analytics-for-wordpress' ),
1893
 
1894
- // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:87
1895
- __( 'Install Pretty Links', 'google-analytics-for-wordpress' ),
1896
 
1897
- // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:88
1898
- __( 'Pretty Links Installed & Activated', 'google-analytics-for-wordpress' ),
1899
 
1900
- // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:90
1901
- __( 'Install Pretty Links from the WordPress.org plugin repository.', 'google-analytics-for-wordpress' ),
1902
 
1903
- // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:91
1904
- __( 'Activate Pretty Links', 'google-analytics-for-wordpress' ),
1905
 
1906
- // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:92
1907
- __( 'Activating Pretty Links...', 'google-analytics-for-wordpress' ),
1908
 
1909
- // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:93
1910
- __( 'Create New Pretty Link', 'google-analytics-for-wordpress' ),
1911
 
1912
- // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:94
1913
- __( 'Create a New Pretty Link', 'google-analytics-for-wordpress' ),
1914
 
1915
- // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:95
1916
- __( 'Grab your campaign link and paste it into the Target URL field.', 'google-analytics-for-wordpress' ),
 
1917
 
1918
- // Reference: src/modules/settings/components/input/SettingsInputNumber.vue:56
1919
- __( 'Reset to default', 'google-analytics-for-wordpress' ),
 
1920
 
1921
- // Reference: src/modules/settings/components/input/SettingsInputText.vue:47
1922
- __( 'The value entered does not match the required format', 'google-analytics-for-wordpress' ),
1923
 
1924
- // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingImprove-Lite.vue:17
1925
- __( 'Help Us Improve', 'google-analytics-for-wordpress' ),
1926
 
1927
- // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingImprove-Lite.vue:18
1928
- __( 'Help us better understand our users and their website needs.', 'google-analytics-for-wordpress' ),
1929
 
1930
- // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingImprove-Lite.vue:20
1931
- /* Translators: Adds a link to the documentation. */
1932
- __( 'If enabled MonsterInsights will send some information about your WordPress site like what plugins and themes you use and which MonsterInsights 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', 'google-analytics-for-wordpress' ),
1933
 
1934
- // Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:171
1935
- /* Translators: The name of the field that is throwing a validation error. */
1936
- __( '%s can\'t be empty.', 'google-analytics-for-wordpress' ),
1937
 
1938
- // Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:192
1939
- __( 'Duplicate values are not allowed.', 'google-analytics-for-wordpress' ),
1940
 
1941
- // Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:54
1942
- __( 'You can add maximum 5 items.', 'google-analytics-for-wordpress' ),
1943
 
1944
- // Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:58
1945
- __( 'At least 0 item required.', 'google-analytics-for-wordpress' ),
1946
 
1947
- // Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:63
1948
- __( 'Add Another Link Path', 'google-analytics-for-wordpress' ),
1949
 
1950
- // Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:64
1951
- __( 'Remove row', 'google-analytics-for-wordpress' ),
1952
 
1953
- // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:48
1954
- __( 'Website profile', 'google-analytics-for-wordpress' ),
1955
 
1956
- // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:49
1957
- __( 'Active profile', 'google-analytics-for-wordpress' ),
1958
 
1959
- // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:52
1960
- __( 'Skip and Keep Connection', 'google-analytics-for-wordpress' ),
1961
 
1962
- // Reference: src/modules/wizard-onboarding/components/OnboardingAddon-Lite.vue:27
1963
- __( 'Upgrade to Pro', 'google-analytics-for-wordpress' ),
1964
 
1965
- // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:39
1966
- __( 'Usage Tracking', 'google-analytics-for-wordpress' ),
1967
 
1968
- // Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:28
1969
- __( 'Allow Usage Tracking', 'google-analytics-for-wordpress' ),
 
1970
 
1971
- // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:40
1972
- __( 'By allowing us to track usage data we can better help you because we know with which WordPress configurations, themes and plugins we should test.', 'google-analytics-for-wordpress' ),
 
1973
 
1974
- // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:43
1975
- /* Translators: Add links to documentation. */
1976
- __( 'Complete documentation on usage tracking is available %1$shere%2$s.', 'google-analytics-for-wordpress' ),
1977
 
1978
- // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:30
1979
- /* Translators: Make text green and add smiley face. */
1980
- __( 'You\'re using %1$sMonsterInsights Lite%2$s - no license needed. Enjoy! %3$s', 'google-analytics-for-wordpress' ),
1981
 
1982
- // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:32
1983
- /* Translators: Add link to upgrade. */
1984
- __( 'To unlock more features consider %1$supgrading to PRO%2$s.', 'google-analytics-for-wordpress' ),
1985
 
1986
- // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:34
1987
- /* Translators: Make text green. */
1988
- __( 'As a valued MonsterInsights Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!', 'google-analytics-for-wordpress' ),
1989
 
1990
- // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:35
1991
- __( 'Unlock PRO Features Now', 'google-analytics-for-wordpress' ),
 
1992
 
1993
- // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:36
1994
- __( 'Paste your license key here', 'google-analytics-for-wordpress' ),
1995
 
1996
- // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:37
1997
- __( 'Verify', 'google-analytics-for-wordpress' ),
 
1998
 
1999
- // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:39
2000
- /* Translators: Add link to retrieve license from account area. */
2001
- __( 'Already purchased? Simply enter your license key below to connect with MonsterInsights PRO! %1$sRetrieve your license key%2$s.', 'google-analytics-for-wordpress' ),
2002
 
2003
- // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:69
2004
- __( 'There was an error unlocking MonsterInsights PRO please try again or install manually.', 'google-analytics-for-wordpress' ),
2005
 
2006
- // Reference: src/modules/settings/api/index.js:19
2007
- /* Translators: Error status and error text. */
2008
- __( 'Can\'t load settings. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2009
 
2010
- // Reference: src/modules/license/api/index.js:149
2011
- // Reference: src/modules/settings/api/index.js:23
2012
- __( 'You appear to be offline.', 'google-analytics-for-wordpress' ),
2013
 
2014
- // Reference: src/modules/settings/api/index.js:73
2015
- /* Translators: Error status and error text. */
2016
- __( 'Can\'t save settings. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2017
 
2018
- // Reference: src/modules/settings/api/index.js:77
2019
- __( 'Network error encountered. Settings not saved.', 'google-analytics-for-wordpress' ),
 
2020
 
2021
- // Reference: src/modules/settings/components/input/tab-engagement/SettingsInputScroll-Lite.vue:18
2022
- __( 'Scroll Tracking', 'google-analytics-for-wordpress' ),
 
2023
 
2024
- // Reference: src/modules/settings/components/input/tab-engagement/SettingsInputScroll-Lite.vue:19
2025
- __( 'Scroll depth tracking allows you to see how far your users scroll before they leave a page. This is great for publishers (bloggers), and eCommerce websites to boost conversions.', 'google-analytics-for-wordpress' ),
2026
 
2027
- // Reference: src/modules/popular-posts/components/PopularPostsUpgradeOverlay.vue:24
2028
- __( 'Upgrade', 'google-analytics-for-wordpress' ),
2029
 
2030
- // Reference: src/modules/settings/components/input/tab-engagement/SettingsInputEUCompliance-Lite.vue:20
2031
- __( 'The EU Compliance addon allows you to improve compliance with GDPR
2032
- and other privacy regulations.', 'google-analytics-for-wordpress' ),
2033
 
2034
- // Reference: src/modules/settings/components/input/tab-engagement/SettingsInputEUCompliance-Lite.vue:21
2035
- __( 'EU Compliance', 'google-analytics-for-wordpress' ),
2036
 
2037
- // Reference: src/modules/wizard-onboarding/api/index.js:18
2038
- /* Translators: Error status and error text. */
2039
- __( 'Can\'t load errors. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2040
 
2041
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetCategory-Lite.vue:24
2042
- __( 'Only Show Posts from These Categories', 'google-analytics-for-wordpress' ),
2043
 
2044
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetCategory-Lite.vue:25
2045
- __( 'Choose from which categories posts will be displayed in the widget. All categories will be used if left empty.', 'google-analytics-for-wordpress' ),
2046
 
2047
- // Reference: src/modules/reports/components/ReportTableBox.vue:65
2048
- __( 'Show', 'google-analytics-for-wordpress' ),
2049
 
2050
- // Reference: src/modules/popular-posts/components/input/PopularPostsPostsPicker.vue:45
2051
- __( 'Select posts/search', 'google-analytics-for-wordpress' ),
2052
 
2053
- // Reference: src/modules/popular-posts/components/input/PopularPostsPostsPicker.vue:55
2054
- __( 'Oops! No posts found.', 'google-analytics-for-wordpress' ),
2055
 
2056
- // Reference: src/modules/popular-posts/components/input/PopularPostsPostsPicker.vue:56
2057
- __( 'Search by post title', 'google-analytics-for-wordpress' ),
2058
 
2059
- // Reference: src/modules/popular-posts/components/input/PopularPostsPostsPicker.vue:92
2060
- __( 'Can\'t load posts.', 'google-analytics-for-wordpress' ),
2061
 
2062
- // Reference: src/modules/popular-posts/components/input/PopularPostsSharedCount.vue:31
2063
- __( 'SharedCount API Key', 'google-analytics-for-wordpress' ),
 
2064
 
2065
- // Reference: src/modules/popular-posts/components/input/PopularPostsSharedCount.vue:32
2066
- __( 'Insert your sharedcount API key found in your %1$sSettings%2$s panel. After, click Start Indexing.', 'google-analytics-for-wordpress' ),
2067
 
2068
- // Reference: src/modules/popular-posts/components/input/PopularPostsSharedCount.vue:33
2069
- __( 'Start Indexing', 'google-analytics-for-wordpress' ),
2070
 
2071
- // Reference: src/modules/popular-posts/components/input/PopularPostsSharedCount.vue:37
2072
- __( '%1$sIndex Progress: %2$s%%.%3$s You may leave this page during indexing.', 'google-analytics-for-wordpress' ),
2073
 
2074
- // Reference: src/modules/popular-posts/components/input/PopularPostsSharedCount.vue:38
2075
- __( 'Indexing completed, counts will update automatically every day.', 'google-analytics-for-wordpress' ),
2076
 
2077
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemePicker.vue:70
2078
- /* Translators: Page number of total pages. 1 & 2 make the first part of the text bold. */
2079
- __( '%1$sPage %3$s%2$s of %4$s', 'google-analytics-for-wordpress' ),
2080
 
2081
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:99
2082
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:46
2083
- __( 'Theme Preview', 'google-analytics-for-wordpress' ),
2084
 
2085
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:61
2086
- __( 'Wide', 'google-analytics-for-wordpress' ),
 
2087
 
2088
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:62
2089
- __( 'Narrow', 'google-analytics-for-wordpress' ),
2090
 
2091
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:137
2092
- __( 'Title', 'google-analytics-for-wordpress' ),
2093
 
2094
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:138
2095
- __( 'Color', 'google-analytics-for-wordpress' ),
2096
 
2097
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:139
2098
- __( 'Size', 'google-analytics-for-wordpress' ),
2099
 
2100
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:140
2101
- __( 'Border', 'google-analytics-for-wordpress' ),
2102
 
2103
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:141
2104
- __( 'Author/Date', 'google-analytics-for-wordpress' ),
2105
 
2106
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:142
2107
- __( 'Label', 'google-analytics-for-wordpress' ),
2108
 
2109
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:143
2110
- __( 'Background', 'google-analytics-for-wordpress' ),
2111
 
2112
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:144
2113
- __( 'Wide-Layout Options', 'google-analytics-for-wordpress' ),
2114
 
2115
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:145
2116
- __( 'Adjust the number of columns displayed when the widget is placed in a wide container.', 'google-analytics-for-wordpress' ),
2117
 
2118
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:146
2119
- __( 'Display Options', 'google-analytics-for-wordpress' ),
2120
 
2121
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:147
2122
- __( 'Choose which content you would like displayed in the widget.', 'google-analytics-for-wordpress' ),
2123
 
2124
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:148
2125
- __( 'Display Author', 'google-analytics-for-wordpress' ),
2126
 
2127
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:149
2128
- __( 'Display Date', 'google-analytics-for-wordpress' ),
2129
 
2130
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:150
2131
- __( 'Display Comments', 'google-analytics-for-wordpress' ),
2132
 
2133
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:151
2134
- __( 'Comments', 'google-analytics-for-wordpress' ),
2135
 
2136
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:152
2137
- __( 'Post Count', 'google-analytics-for-wordpress' ),
2138
 
2139
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:153
2140
- __( 'Choose how many posts you’d like displayed in the widget.', 'google-analytics-for-wordpress' ),
2141
 
2142
- // Reference: src/modules/popular-posts/components/PopularPostsProductsUpsell.vue:19
2143
- __( 'This feature requires MonsterInsights Pro', 'google-analytics-for-wordpress' ),
2144
 
2145
- // Reference: src/modules/popular-posts/components/PopularPostsProductsUpsell.vue:20
2146
- __( 'By upgrading you will also get access to advanced eCommerce tracking, Custom Dimensions and more.', 'google-analytics-for-wordpress' ),
2147
 
2148
- // Reference: src/modules/popular-posts/components/PopularPostsProductsUpsell.vue:21
2149
- __( 'Upgrade to Pro and Unlock Popular Products', 'google-analytics-for-wordpress' ),
2150
 
2151
- // Reference: src/modules/popular-posts/components/PopularPostsProductsUpsell.vue:22
2152
- __( 'View all Pro features', 'google-analytics-for-wordpress' ),
 
2153
 
2154
- // Reference: src/modules/popular-posts/components/input/PopularPostsCacheInterval-Lite.vue:14
2155
- __( 'Days', 'google-analytics-for-wordpress' ),
 
2156
 
2157
- // Reference: src/modules/popular-posts/components/input/PopularPostsCacheInterval-Lite.vue:19
 
 
 
2158
  /* Translators: placeholders make text small. */
2159
- __( '7 days', 'google-analytics-for-wordpress' ),
2160
 
2161
- // Reference: src/modules/popular-posts/components/input/PopularPostsCacheInterval-Lite.vue:23
2162
- __( '30 days', 'google-analytics-for-wordpress' ),
 
2163
 
2164
- // Reference: src/modules/popular-posts/components/input/PopularPostsCacheInterval-Lite.vue:28
2165
- __( 'Custom', 'google-analytics-for-wordpress' ),
 
2166
 
2167
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:107
2168
- __( 'Popular Posts data can be fetched correctly', 'google-analytics-for-wordpress' ),
 
2169
 
2170
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:108
2171
- __( 'Please note: depending on when you set up the Custom Dimensions settings, it may take up to 7 days to see relevant Popular Posts data loading from Google Analytics.', 'google-analytics-for-wordpress' ),
 
2172
 
2173
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:112
2174
- __( 'Close', 'google-analytics-for-wordpress' ),
2175
 
2176
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:28
2177
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:48
2178
- __( 'Add Top 5 Posts from Google Analytics', 'google-analytics-for-wordpress' ),
2179
 
2180
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:49
2181
- __( 'In order to load the top posts from Google Analytics you will need to enable the Custom Dimensions addon and set up the Post Type custom dimension in both MonsterInsights and Google Analytics settings. Please use the button below to confirm your configuration is correct.', 'google-analytics-for-wordpress' ),
2182
 
2183
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:50
2184
- __( 'Test Automated Posts', 'google-analytics-for-wordpress' ),
2185
 
2186
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:52
2187
- /* Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc. */
2188
- __( 'Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics.', 'google-analytics-for-wordpress' ),
 
2189
 
2190
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:30
2191
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:53
2192
- __( 'Automated + Curated', 'google-analytics-for-wordpress' ),
2193
 
2194
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:55
2195
- /* Translators: Placeholder adds a link to the Custom Dimensions settings. */
2196
- __( 'Automatically add the top 5 Posts from the past 30 days to your Curated list of Posts using %1$sCustom Dimensions%2$s. Also requires Sort By - Curated to be selected. Setup steps can be found in our %3$sknowledge base%4$s.', 'google-analytics-for-wordpress' ),
2197
 
2198
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:57
2199
- /* Translators: Placeholder gets replaced with current license version. */
2200
- __( 'Pro version is required. Your current license level is: %s', 'google-analytics-for-wordpress' ),
2201
 
2202
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:95
2203
- __( 'Verifying Popular Posts data', 'google-analytics-for-wordpress' ),
 
2204
 
2205
  // Reference: src/modules/notifications/components/NotificationsIndicator.vue:19
2206
  __( 'View notifications', 'google-analytics-for-wordpress' ),
2207
 
2208
- // Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:14
2209
- __( 'Hide dashboard widget', 'google-analytics-for-wordpress' ),
2210
-
2211
- // Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:31
2212
- __( 'Are you sure you want to hide the MonsterInsights Dashboard Widget? ', 'google-analytics-for-wordpress' ),
2213
 
2214
- // Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:33
2215
- __( 'Yes, hide it!', 'google-analytics-for-wordpress' ),
2216
 
2217
- // Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:34
2218
- __( 'No, cancel!', 'google-analytics-for-wordpress' ),
2219
 
2220
- // Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:40
2221
- __( 'MonsterInsights Widget Hidden', 'google-analytics-for-wordpress' ),
2222
 
2223
- // Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:41
2224
- __( 'You can re-enable the MonsterInsights widget at any time using the "Screen Options" menu on the top right of this page', 'google-analytics-for-wordpress' ),
2225
 
2226
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:52
2227
- __( 'Right Now', 'google-analytics-for-wordpress' ),
2228
 
2229
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:53
2230
- __( 'Active users on site', 'google-analytics-for-wordpress' ),
2231
 
2232
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:54
2233
- __( 'The real-time graph of visitors over time is not currently available for this site. Please try again later.', 'google-analytics-for-wordpress' ),
2234
 
2235
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:55
2236
- __( 'Important: this only includes users who are tracked in real-time. Not all users are tracked in real-time including (but not limited to) logged-in site administrators, certain mobile users, and users who match a Google Analytics filter.', 'google-analytics-for-wordpress' ),
2237
 
2238
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:56
2239
- __( 'The real-time report automatically updates approximately every 60 seconds.', 'google-analytics-for-wordpress' ),
2240
 
2241
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:58
2242
- /* Translators: Number of seconds that have passed since the report was refreshed. */
2243
- __( 'The real-time report was last updated %s seconds ago.', 'google-analytics-for-wordpress' ),
2244
 
2245
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:59
2246
- __( 'The latest data will be automatically shown on this page when it becomes available.', 'google-analytics-for-wordpress' ),
2247
 
2248
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:60
2249
- __( 'There is no need to refresh the browser (doing so won\'t have any effect).', 'google-analytics-for-wordpress' ),
2250
 
2251
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:61
2252
- __( 'Pageviews Per Minute', 'google-analytics-for-wordpress' ),
2253
 
2254
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:64
2255
- __( 'Top Pages', 'google-analytics-for-wordpress' ),
2256
 
2257
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:65
2258
- __( 'No pageviews currently.', 'google-analytics-for-wordpress' ),
2259
 
2260
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:67
2261
- __( 'Page', 'google-analytics-for-wordpress' ),
 
2262
 
2263
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:68
2264
- __( 'Pageview Count', 'google-analytics-for-wordpress' ),
 
2265
 
2266
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:69
2267
- __( 'Percent of Total', 'google-analytics-for-wordpress' ),
 
2268
 
2269
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:72
2270
- __( 'This is the number of active users currently on your site.', 'google-analytics-for-wordpress' ),
 
2271
 
2272
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:73
2273
- __( 'This graph shows the number of pageviews for each of the last 30 minutes.', 'google-analytics-for-wordpress' ),
 
2274
 
2275
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:74
2276
- __( 'This list shows the top pages users are currently viewing on your site.', 'google-analytics-for-wordpress' ),
 
2277
 
2278
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:75
2279
- __( 'View All Real-Time Pageviews', 'google-analytics-for-wordpress' ),
2280
 
2281
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:76
2282
- __( 'View All Real-Time Traffic Sources', 'google-analytics-for-wordpress' ),
2283
 
2284
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:77
2285
- __( 'View All Real-Time Traffic by Country', 'google-analytics-for-wordpress' ),
2286
 
2287
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:78
2288
- __( 'View All Real-Time Traffic by City', 'google-analytics-for-wordpress' ),
 
2289
 
2290
- // Reference: src/modules/widget/components/WidgetTips.vue:19
2291
- __( 'Forms Tracking help you see who’s viewing your forms, so you can increase conversions.', 'google-analytics-for-wordpress' ),
2292
 
2293
- // Reference: src/modules/widget/components/WidgetTips.vue:24
2294
- __( 'Custom Dimensions show you popular categories, best time to publish, focus keywords, etc.', 'google-analytics-for-wordpress' ),
2295
 
2296
- // Reference: src/modules/widget/components/WidgetTips.vue:29
2297
- __( 'Make Google Analytics GDPR compliant with our EU Compliance addon.', 'google-analytics-for-wordpress' ),
2298
 
2299
- // Reference: src/modules/widget/components/WidgetTips.vue:34
2300
- __( 'Get real-time Google Analytics report right inside your WordPress dashboard.', 'google-analytics-for-wordpress' ),
2301
 
2302
- // Reference: src/modules/widget/components/WidgetTips.vue:39
2303
- __( 'Use Google Optimize to easily perform A/B split tests on your site.', 'google-analytics-for-wordpress' ),
2304
 
2305
- // Reference: src/modules/widget/components/WidgetTips.vue:44
2306
- __( 'See all your important store metrics in one place with Enhanced Ecommerce Tracking.', 'google-analytics-for-wordpress' ),
2307
 
2308
- // Reference: src/modules/widget/components/WidgetTips.vue:49
2309
- __( 'Unlock search console report to see your top performing keywords in Google.', 'google-analytics-for-wordpress' ),
2310
 
2311
- // Reference: src/modules/widget/components/WidgetTips.vue:54
2312
- __( 'Get Page Insights to see important metrics for individual posts / pages in WordPress.', 'google-analytics-for-wordpress' ),
2313
 
2314
- // Reference: src/modules/widget/components/WidgetTips.vue:59
2315
- __( 'Publishers Report shows your top performing pages, audience demographics, and more.', 'google-analytics-for-wordpress' ),
2316
 
2317
- // Reference: src/modules/widget/components/WidgetTips.vue:64
2318
- __( 'Get Scroll-Depth tracking to see how far users scroll on your pages before leaving.', 'google-analytics-for-wordpress' ),
2319
 
2320
- // Reference: src/modules/widget/components/WidgetTips.vue:69
2321
- __( 'Upgrade to Pro »', 'google-analytics-for-wordpress' ),
2322
 
2323
- // Reference: src/modules/widget/components/WidgetTips.vue:70
2324
- __( 'Pro Tip:', 'google-analytics-for-wordpress' ),
2325
 
2326
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:64
2327
- /* Translators: Add links to documentation. */
2328
- __( 'This allows you to track custom affiliate links. A path of /go/ would match urls that start with that. The label is appended onto the end of the string "outbound-link-", to provide unique labels for these links in Google Analytics. Complete documentation on affiliate links is available %1$shere%2$s.', 'google-analytics-for-wordpress' ),
2329
 
2330
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:65
2331
- __( 'Our affiliate link tracking works by setting path for internal links to track as outbound links.', 'google-analytics-for-wordpress' ),
2332
 
2333
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:67
2334
- __( 'Headline Analyzer', 'google-analytics-for-wordpress' ),
2335
 
2336
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:68
2337
- __( 'The MonsterInsights Headline Analyzer tool in the Gutenberg editor enables you to write irresistible SEO-friendly headlines that drive traffic, social media shares, and rank better in search results.', 'google-analytics-for-wordpress' ),
2338
 
2339
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:69
2340
- __( 'Disable the Headline Analyzer', 'google-analytics-for-wordpress' ),
2341
 
2342
- // Reference: src/modules/reports/components/ReportInfobox.vue:39
2343
- /* Translators: Number of days. */
2344
- __( 'vs. Previous Day', 'google-analytics-for-wordpress' ),
2345
 
2346
- // Reference: src/modules/reports/components/ReportInfobox.vue:56
2347
- __( 'No change', 'google-analytics-for-wordpress' ),
 
2348
 
2349
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:149
2350
- __( 'New', 'google-analytics-for-wordpress' ),
 
2351
 
2352
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:150
2353
- __( 'Returning', 'google-analytics-for-wordpress' ),
2354
 
2355
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:505
2356
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:180
2357
- __( 'Desktop', 'google-analytics-for-wordpress' ),
2358
 
2359
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:506
2360
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:181
2361
- __( 'Tablet', 'google-analytics-for-wordpress' ),
2362
 
2363
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:507
2364
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:182
2365
- __( 'Mobile', 'google-analytics-for-wordpress' ),
2366
 
2367
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:249
2368
- __( 'Top 10 Countries', 'google-analytics-for-wordpress' ),
2369
 
2370
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:250
2371
- __( 'View Countries Report', 'google-analytics-for-wordpress' ),
2372
 
2373
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:251
2374
- __( 'Top 10 Referrals', 'google-analytics-for-wordpress' ),
2375
 
2376
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:252
2377
- __( 'View All Referral Sources', 'google-analytics-for-wordpress' ),
 
2378
 
2379
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:254
2380
- __( 'View Full Posts/Pages Report', 'google-analytics-for-wordpress' ),
 
2381
 
2382
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:259
2383
- __( '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.', 'google-analytics-for-wordpress' ),
 
2384
 
2385
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:262
2386
- __( 'This list shows the top countries your website visitors are from.', 'google-analytics-for-wordpress' ),
2387
 
2388
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:263
2389
- __( 'This list shows the top websites that send your website traffic, known as referral traffic.', 'google-analytics-for-wordpress' ),
 
2390
 
2391
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:265
2392
- __( 'Export PDF Overview Report', 'google-analytics-for-wordpress' ),
 
2393
 
2394
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabConversions-Lite.vue:32
2395
  __( 'See who\'s viewing and submitting your forms, so you can increase your conversion rate.', 'google-analytics-for-wordpress' ),
@@ -2400,329 +2462,342 @@ $generated_i18n_strings = array(
2400
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabConversions-Lite.vue:36
2401
  __( 'Add Custom Dimensions and track who\'s the most popular author on your site, which post types get the most traffic, and more', 'google-analytics-for-wordpress' ),
2402
 
2403
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:259
2404
- __( 'Still Calculating...', 'google-analytics-for-wordpress' ),
2405
 
2406
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:260
2407
- __( 'Your 2019 Year in Review is still calculating. Please check back later to see how your website performed last year.', 'google-analytics-for-wordpress' ),
2408
 
2409
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:261
2410
- __( 'Back to Overview Report', 'google-analytics-for-wordpress' ),
2411
 
2412
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:262
2413
- __( 'Your 2019 Analytics Report', 'google-analytics-for-wordpress' ),
2414
 
2415
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:264
2416
- __( 'See how your website performed this year and find tips along the way to help grow even more in 2020!', 'google-analytics-for-wordpress' ),
2417
 
2418
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:265
2419
- __( 'Audience', 'google-analytics-for-wordpress' ),
2420
 
2421
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:266
2422
- __( 'Congrats', 'google-analytics-for-wordpress' ),
2423
 
2424
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:267
2425
- __( 'Your website was quite popular this year! ', 'google-analytics-for-wordpress' ),
 
2426
 
2427
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:268
2428
- __( 'You had ', 'google-analytics-for-wordpress' ),
 
2429
 
2430
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:269
2431
- __( ' visitors!', 'google-analytics-for-wordpress' ),
2432
 
2433
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:270
2434
- __( ' visitors', 'google-analytics-for-wordpress' ),
2435
 
2436
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:271
2437
- __( 'Total Visitors', 'google-analytics-for-wordpress' ),
2438
 
2439
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:272
2440
- __( 'Total Sessions', 'google-analytics-for-wordpress' ),
2441
 
2442
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:273
2443
- __( 'Visitors by Month', 'google-analytics-for-wordpress' ),
2444
 
2445
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:274
2446
- __( 'January 1, 2019 - December 31, 2019', 'google-analytics-for-wordpress' ),
 
2447
 
2448
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:275
2449
- __( 'A Tip for 2020', 'google-analytics-for-wordpress' ),
 
2450
 
2451
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:276
2452
- __( 'See the top Traffic Sources and Top Pages for the Month of May in the Overview Report to replicate your success.', 'google-analytics-for-wordpress' ),
 
2453
 
2454
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:278
2455
- __( '#1', 'google-analytics-for-wordpress' ),
 
2456
 
2457
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:279
2458
- __( 'You Top 5 Countries', 'google-analytics-for-wordpress' ),
2459
 
2460
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:280
2461
- __( 'Let’s get to know your visitors a little better, shall we?', 'google-analytics-for-wordpress' ),
 
2462
 
2463
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:281
2464
- __( 'Gender', 'google-analytics-for-wordpress' ),
 
2465
 
2466
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:282
2467
- __( 'Female', 'google-analytics-for-wordpress' ),
2468
 
2469
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:283
2470
- __( 'Women', 'google-analytics-for-wordpress' ),
2471
 
2472
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:284
2473
- __( 'Male', 'google-analytics-for-wordpress' ),
2474
 
2475
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:285
2476
- __( 'Average Age', 'google-analytics-for-wordpress' ),
2477
 
2478
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:287
2479
- __( 'Your Top 5 Pages', 'google-analytics-for-wordpress' ),
2480
 
2481
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:289
2482
- __( 'Time Spent on Site', 'google-analytics-for-wordpress' ),
2483
 
2484
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:290
2485
- __( 'minutes', 'google-analytics-for-wordpress' ),
2486
 
2487
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:291
2488
- __( 'Device Type', 'google-analytics-for-wordpress' ),
2489
 
2490
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:292
2491
- __( 'A Tip For 2020', 'google-analytics-for-wordpress' ),
2492
 
2493
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:293
2494
- __( 'Take advantage of what you’ve already built. See how to get more traffic from existing content in our 32 Marketing Hacks to Grow Your Traffic.', 'google-analytics-for-wordpress' ),
2495
 
2496
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:294
2497
- __( 'Read - 32 Marketing Hacks to Grow Your Traffic', 'google-analytics-for-wordpress' ),
 
2498
 
2499
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:295
2500
- __( 'So, where did all of these visitors come from?', 'google-analytics-for-wordpress' ),
 
 
 
 
 
 
 
 
 
 
 
 
2501
 
2502
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:296
2503
- __( 'Clicks', 'google-analytics-for-wordpress' ),
2504
 
2505
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:297
2506
- __( 'Your Top 5 Keywords', 'google-analytics-for-wordpress' ),
2507
 
2508
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:298
2509
- __( 'What keywords visitors searched for to find your site', 'google-analytics-for-wordpress' ),
2510
 
2511
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:299
2512
- __( 'Your Top 5 Referrals', 'google-analytics-for-wordpress' ),
2513
 
2514
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:301
2515
- __( 'The websites that link back to your website', 'google-analytics-for-wordpress' ),
2516
 
2517
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:302
2518
- __( 'Opportunity', 'google-analytics-for-wordpress' ),
2519
 
2520
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:303
2521
- __( 'Use referral sources to create new partnerships or expand existing ones. See our guide on how to spy on your competitors and ethically steal their traffic.', 'google-analytics-for-wordpress' ),
2522
 
2523
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:304
2524
- __( 'Read - How to Ethically Steal Your Competitor’s Traffic', 'google-analytics-for-wordpress' ),
2525
 
2526
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:305
2527
- __( 'Thank you for using MonsterInsights!', 'google-analytics-for-wordpress' ),
2528
 
2529
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:306
2530
- __( '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.', 'google-analytics-for-wordpress' ),
2531
 
2532
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:307
2533
- __( 'Here\'s to an amazing 2020!', 'google-analytics-for-wordpress' ),
2534
 
2535
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:308
2536
- __( 'Enjoying MonsterInsights', 'google-analytics-for-wordpress' ),
2537
 
2538
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:309
2539
- __( 'Leave a five star review!', 'google-analytics-for-wordpress' ),
2540
 
2541
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:310
2542
- __( 'Syed Balkhi', 'google-analytics-for-wordpress' ),
 
2543
 
2544
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:311
2545
- __( 'Chris Christoff', 'google-analytics-for-wordpress' ),
2546
 
2547
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:312
2548
- __( 'Write Review', 'google-analytics-for-wordpress' ),
 
2549
 
2550
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:313
2551
- __( 'Did you know over 10 million websites use our plugins?', 'google-analytics-for-wordpress' ),
 
2552
 
2553
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:314
2554
- __( 'Try our other popular WordPress plugins to grow your website in 2020.', 'google-analytics-for-wordpress' ),
2555
 
2556
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:315
2557
- __( 'Join our Communities!', 'google-analytics-for-wordpress' ),
2558
 
2559
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:316
2560
- __( 'Become a WordPress expert in 2020. Join our amazing communities and take your website to the next level.', 'google-analytics-for-wordpress' ),
2561
 
2562
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:317
2563
- __( 'Facebook Group', 'google-analytics-for-wordpress' ),
2564
 
2565
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:318
2566
- __( 'Join our team of WordPress experts and other motivated website owners in the WPBeginner Engage Facebook Group.', 'google-analytics-for-wordpress' ),
2567
 
2568
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:319
2569
- __( 'Join Now...It’s Free!', 'google-analytics-for-wordpress' ),
2570
 
2571
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:320
2572
- __( 'WordPress Tutorials by WPBeginner', 'google-analytics-for-wordpress' ),
2573
 
2574
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:321
2575
- __( 'WPBeginner is the largest free WordPress resource site for beginners and non-techy users.', 'google-analytics-for-wordpress' ),
2576
 
2577
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:322
2578
- __( 'Visit WPBeginner', 'google-analytics-for-wordpress' ),
2579
 
2580
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:323
2581
- __( 'Follow Us!', 'google-analytics-for-wordpress' ),
2582
 
2583
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:324
2584
- __( 'Follow MonsterInsights on social media to stay up to date with latest updates, trends, and tutorials on how to make the most out of analytics.', 'google-analytics-for-wordpress' ),
2585
 
2586
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:325
2587
- __( 'Copyright MonsterInsights, 2020', 'google-analytics-for-wordpress' ),
2588
 
2589
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:326
2590
- __( 'Upgrade to MonsterInsights Pro to Unlock Additional Actionable Insights', 'google-analytics-for-wordpress' ),
2591
 
2592
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:329
2593
- __( 'January', 'google-analytics-for-wordpress' ),
2594
 
2595
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:330
2596
- __( 'February', 'google-analytics-for-wordpress' ),
2597
 
2598
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:331
2599
- __( 'March', 'google-analytics-for-wordpress' ),
2600
 
2601
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:332
2602
- __( 'April', 'google-analytics-for-wordpress' ),
 
2603
 
2604
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:333
2605
- __( 'May', 'google-analytics-for-wordpress' ),
 
2606
 
2607
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:334
2608
- __( 'June', 'google-analytics-for-wordpress' ),
 
2609
 
2610
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:335
2611
- __( 'July', 'google-analytics-for-wordpress' ),
2612
 
2613
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:336
2614
- __( 'August', 'google-analytics-for-wordpress' ),
2615
 
2616
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:337
2617
- __( 'September', 'google-analytics-for-wordpress' ),
2618
 
2619
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:338
2620
- __( 'October', 'google-analytics-for-wordpress' ),
 
2621
 
2622
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:339
2623
- __( 'November', 'google-analytics-for-wordpress' ),
2624
 
2625
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:340
2626
- __( 'December', 'google-analytics-for-wordpress' ),
2627
 
2628
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:368
2629
- /* Translators: Number of visitors. */
2630
- __( 'Your best month was <strong>%1$s</strong> with <strong>%2$s visitors!</strong>', 'google-analytics-for-wordpress' ),
2631
 
2632
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:387
2633
- /* Translators: Number of visitors. */
2634
- __( 'Your <strong>%1$s</strong> visitors came from <strong>%2$s</strong> different countries.', 'google-analytics-for-wordpress' ),
2635
 
2636
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:394
2637
- /* Translators: Number of visitors. */
2638
- __( '%s Visitors', 'google-analytics-for-wordpress' ),
2639
 
2640
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:409
2641
- /* Translators: Percent and Number of visitors. */
2642
- __( '%1$s&#37 of your visitors were %2$s', 'google-analytics-for-wordpress' ),
2643
 
2644
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:416
2645
- /* Translators: Number of visitors and their age. */
2646
- __( '%1$s&#37 of your visitors were between the ages of %2$s', 'google-analytics-for-wordpress' ),
2647
 
2648
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:429
2649
- /* Translators: Number of visitors and number of pages. */
2650
- __( '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>', 'google-analytics-for-wordpress' ),
2651
 
2652
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:454
2653
- /* Translators: Number of minutes spent on site. */
2654
- __( 'Each visitor spent an average of %s minutes on your website in 2019.', 'google-analytics-for-wordpress' ),
2655
 
2656
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:476
2657
- /* Translators: Name of device type. */
2658
- __( 'Most of your visitors viewed your website from their <strong>%s</strong> device.', 'google-analytics-for-wordpress' ),
2659
 
2660
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:480
2661
- /* Translators: Number of visitors and device percentage. */
2662
- __( '%1$s&#37 of your visitors were on a %2$s device.', 'google-analytics-for-wordpress' ),
2663
 
2664
- // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:75
2665
- __( 'Display Method', 'google-analytics-for-wordpress' ),
2666
 
2667
- // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:76
2668
- __( 'There are two ways to manual include the widget in your posts.', 'google-analytics-for-wordpress' ),
2669
 
2670
- // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:77
2671
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:105
2672
- __( 'Using the Gutenberg Block', 'google-analytics-for-wordpress' ),
2673
 
2674
- // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:78
2675
- __( 'Using the Shortcode', 'google-analytics-for-wordpress' ),
2676
 
2677
- // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:79
2678
- __( 'Learn how to insert the widget using Gutenberg blocks.', 'google-analytics-for-wordpress' ),
2679
 
2680
- // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:80
2681
- __( 'Learn how to insert the widget using out Shortcode.', 'google-analytics-for-wordpress' ),
2682
 
2683
- // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:81
2684
- __( '%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg', 'google-analytics-for-wordpress' ),
2685
 
2686
- // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:83
2687
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:113
2688
- __( '%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page.', 'google-analytics-for-wordpress' ),
2689
 
2690
- // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:84
2691
- __( '%1$sStep 2%2$s - Search for “Inline Popular Posts by MonsterInsights”.', 'google-analytics-for-wordpress' ),
2692
 
2693
- // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:85
2694
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:115
2695
- __( '%1$sStep 3%2$s - Style the widget using the Block Settings sidebar.', 'google-analytics-for-wordpress' ),
2696
 
2697
- // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:87
2698
- __( 'Shortcode', 'google-analytics-for-wordpress' ),
2699
 
2700
- // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:88
2701
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:123
2702
- __( 'Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin.', 'google-analytics-for-wordpress' ),
2703
 
2704
- // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:89
2705
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:124
2706
- __( 'Copy Shortcode', 'google-analytics-for-wordpress' ),
2707
 
2708
- // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:90
2709
- __( '%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using our Shortcode', 'google-analytics-for-wordpress' ),
 
2710
 
2711
- // Reference: src/modules/addons/store/actions.js:33
2712
- /* Translators: Adds a link to documentation. */
2713
- __( 'In order for the MonsterInsights Google AMP addon to work properly, please ask your webmaster to install the WordPress AMP plugin by Automattic. %1$sLearn More%2$s', 'google-analytics-for-wordpress' ),
2714
 
2715
- // Reference: src/modules/addons/store/actions.js:36
2716
- /* Translators: Adds link to activate/install plugin and documentation. */
2717
- __( 'In order for the MonsterInsights 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', 'google-analytics-for-wordpress' ),
2718
 
2719
- // Reference: src/modules/addons/store/actions.js:51
2720
- /* Translators: Adds a link to documentation. */
2721
- __( 'In order for the MonsterInsights 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', 'google-analytics-for-wordpress' ),
2722
 
2723
- // Reference: src/modules/addons/store/actions.js:54
2724
- /* Translators: Adds link to activate/install plugin and documentation. */
2725
- __( 'In order for the MonsterInsights 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', 'google-analytics-for-wordpress' ),
2726
 
2727
  // Reference: src/modules/popular-posts/components/input/PopularPostsMultipleEntries-Lite.vue:21
2728
  __( 'Multiple Entries', 'google-analytics-for-wordpress' ),
@@ -2745,35 +2820,6 @@ $generated_i18n_strings = array(
2745
  // Reference: src/modules/popular-posts/components/input/PopularPostsMultipleEntries-Lite.vue:27
2746
  __( 'Choose the minimum word count for a Post to have multiple entries.', 'google-analytics-for-wordpress' ),
2747
 
2748
- // Reference: src/modules/license/store/actions.js:61
2749
- /* Translators: Adds a link to the license renewal. */
2750
- __( 'Your license key for MonsterInsights has expired. %1$sPlease click here to renew your license key.%2$s', 'google-analytics-for-wordpress' ),
2751
-
2752
- // Reference: src/modules/license/store/actions.js:71
2753
- __( 'Your license key for MonsterInsights has been disabled. Please use a different key.', 'google-analytics-for-wordpress' ),
2754
-
2755
- // Reference: src/modules/license/store/actions.js:81
2756
- __( 'Your license key for MonsterInsights is invalid. The key no longer exists or the user associated with the key has been deleted. Please use a different key.', 'google-analytics-for-wordpress' ),
2757
-
2758
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:29
2759
- __( 'Pro version is required', 'google-analytics-for-wordpress' ),
2760
-
2761
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:32
2762
- /* Translators: Placeholder adds a link to the Custom Dimensions settings. */
2763
- __( 'Automatically add the top 5 Posts from the past 30 days to your Curated list of Posts using Custom Dimensions (Pro version required. %1$sUpgrade now%2$s).', 'google-analytics-for-wordpress' ),
2764
-
2765
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:100
2766
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:47
2767
- __( 'Sartorial taxidermy venmo you probably haven\'t heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu.', 'google-analytics-for-wordpress' ),
2768
-
2769
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:101
2770
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:48
2771
- __( 'Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan', 'google-analytics-for-wordpress' ),
2772
-
2773
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:108
2774
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:55
2775
- __( 'Icon', 'google-analytics-for-wordpress' ),
2776
-
2777
  // Reference: src/modules/settings/components/input/SettingsInputNumber.vue:58
2778
  /* Translators: Minimum and maximum number that can be used. */
2779
  __( 'Please enter a value between %1$s and %2$s', 'google-analytics-for-wordpress' ),
@@ -2792,6 +2838,9 @@ $generated_i18n_strings = array(
2792
  // Reference: src/modules/settings/components/input/SettingsInputNumber.vue:64
2793
  __( 'Value has to be a round number', 'google-analytics-for-wordpress' ),
2794
 
 
 
 
2795
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:101
2796
  __( 'Automatic Placement', 'google-analytics-for-wordpress' ),
2797
 
@@ -2804,6 +2853,9 @@ $generated_i18n_strings = array(
2804
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:104
2805
  __( 'All Embed Options can be used in conjunction with one another.', 'google-analytics-for-wordpress' ),
2806
 
 
 
 
2807
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:106
2808
  __( 'Using Automatic Embed', 'google-analytics-for-wordpress' ),
2809
 
@@ -2819,9 +2871,15 @@ $generated_i18n_strings = array(
2819
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:111
2820
  __( '%1$sWatch Video%2$s - How to Add the Popular Posts widget using Gutenberg', 'google-analytics-for-wordpress' ),
2821
 
 
 
 
2822
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:114
2823
  __( '%1$sStep 2%2$s - Search for “Popular Posts”.', 'google-analytics-for-wordpress' ),
2824
 
 
 
 
2825
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:118
2826
  __( '%1$sStep 1%2$s - Navigate to your Appearance > Widgets page using the menu on the left side your screen. Must be logged in as Admin.', 'google-analytics-for-wordpress' ),
2827
 
@@ -2834,6 +2892,12 @@ $generated_i18n_strings = array(
2834
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:122
2835
  __( 'Display using a Shortcode', 'google-analytics-for-wordpress' ),
2836
 
 
 
 
 
 
 
2837
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:125
2838
  __( '%1$sWatch Video%2$s - How to Add the Popular Posts widget using our Shortcode', 'google-analytics-for-wordpress' ),
2839
 
@@ -2849,142 +2913,100 @@ $generated_i18n_strings = array(
2849
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:129
2850
  __( 'Watch Video - How to Add the Popular Posts widget using Widgets', 'google-analytics-for-wordpress' ),
2851
 
2852
- // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputPerformance-Lite.vue:18
2853
- __( 'Adjust the sample rate so you don\'t exceed Google Analytics\' processing limit. Can also be used to enable Google Optimize for A/B testing and personalization.', 'google-analytics-for-wordpress' ),
2854
-
2855
- // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputEmailSummaries-Lite.vue:17
2856
- __( 'Our email summaries feature sends a weekly summary of the most important site analytics information.', 'google-analytics-for-wordpress' ),
2857
-
2858
- // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputPdfReports-Lite.vue:17
2859
- __( 'Download the analytics reports instantly from the WordPress dashboard as PDF files and share them with anyone.', 'google-analytics-for-wordpress' ),
2860
-
2861
- // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:41
2862
- __( 'Allow usage tracking', 'google-analytics-for-wordpress' ),
2863
-
2864
- // Reference: src/modules/popular-posts/components/PopularPostsUpgradeOverlay.vue:23
2865
- __( 'Unlock with %s', 'google-analytics-for-wordpress' ),
2866
-
2867
- // Reference: src/modules/license/api/index.js:118
2868
- /* Translators: Error status and error text. */
2869
- __( 'Can\'t deactivate the license. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2870
-
2871
- // Reference: src/modules/license/api/index.js:145
2872
- /* Translators: Error status and error text. */
2873
- __( 'Can\'t upgrade to PRO please try again. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2874
-
2875
- // Reference: src/modules/license/api/index.js:18
2876
- /* Translators: Error status and error text. */
2877
- __( 'Can\'t load license details. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2878
-
2879
- // Reference: src/modules/license/api/index.js:24
2880
- __( 'Error loading license details', 'google-analytics-for-wordpress' ),
2881
 
2882
- // Reference: src/modules/license/api/index.js:57
2883
- /* Translators: Error status and error text. */
2884
- __( 'Can\'t verify the license. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2885
 
2886
- // Reference: src/modules/license/api/index.js:82
2887
- /* Translators: Error status and error text. */
2888
- __( 'Can\'t validate the license. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2889
 
2890
- // Reference: src/modules/settings/components/input/tab-publisher/monsterinsights-SettingsInputFbia-Lite.vue:22
2891
- __( 'Facebook Instant Articles', 'google-analytics-for-wordpress' ),
2892
 
2893
- // Reference: src/modules/settings/components/input/tab-publisher/monsterinsights-SettingsInputFbia-Lite.vue:23
2894
- __( 'Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to MonsterInsights Pro.', 'google-analytics-for-wordpress' ),
2895
 
2896
- // Reference: src/modules/settings/components/input/tab-publisher/monsterinsights-SettingsInputAds-Lite.vue:22
2897
- __( 'Ads Tracking', 'google-analytics-for-wordpress' ),
2898
 
2899
- // Reference: src/modules/settings/components/input/tab-publisher/monsterinsights-SettingsInputAds-Lite.vue:23
2900
- __( 'Add Ads tracking to see who\'s clicking on your Google Ads, so you can increase your revenue.', 'google-analytics-for-wordpress' ),
2901
 
2902
- // Reference: src/modules/settings/components/input/tab-publisher/monsterinsights-SettingsInputAmp-Lite.vue:23
2903
- __( 'Want to use track users visiting your AMP pages? By upgrading to MonsterInsights Pro, you can enable AMP page tracking.', 'google-analytics-for-wordpress' ),
2904
 
2905
- // Reference: src/modules/reports/components/monsterinsights-ReportsPdfExport-Lite.vue:42
2906
- __( 'Export PDF Report', 'google-analytics-for-wordpress' ),
2907
 
2908
- // Reference: src/modules/reports/components/monsterinsights-ReportsPdfExport-Lite.vue:50
2909
- __( 'You can export PDF reports only in the PRO version.', 'google-analytics-for-wordpress' ),
2910
 
2911
- // Reference: src/modules/reports/components/reports-overview/ReportOverviewUpsellMobile-Lite.vue:21
2912
- /* Translators: Make text green. */
2913
- __( 'Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s', 'google-analytics-for-wordpress' ),
2914
 
2915
- // Reference: src/modules/reports/components/reports-overview/monsterinsights-ReportOverviewUpsell-Lite.vue:26
2916
- __( 'Upgrade to MonsterInsights Pro to Unlock More Actionable Insights', 'google-analytics-for-wordpress' ),
2917
 
2918
- // Reference: src/modules/reports/components/reports-overview/monsterinsights-ReportOverviewUpsell-Lite.vue:27
2919
- __( 'It\'s easy to double your traffic and sales when you know exactly how people find and use your website. MonsterInsights Pro shows you the stats that matter!', 'google-analytics-for-wordpress' ),
2920
 
2921
- // Reference: src/modules/reports/components/reports-overview/monsterinsights-ReportOverviewUpsell-Lite.vue:28
2922
- __( 'Upgrade to MonsterInsights Pro and Save 50% OFF!', 'google-analytics-for-wordpress' ),
2923
 
2924
- // Reference: src/modules/reports/components/reports-overview/monsterinsights-ReportOverviewUpsell-Lite.vue:30
2925
- /* Translators: Makes text bold. */
2926
- __( 'Use coupon code %1$sLITEUPGRADE%2$s', 'google-analytics-for-wordpress' ),
2927
 
2928
- // Reference: src/modules/reports/components/reports-overview/monsterinsights-ReportOverviewDatePicker-Lite.vue:50
2929
- /* Translators: Placeholder adds a line break. */
2930
- __( 'You can customize your %sdate range only in the PRO version.', 'google-analytics-for-wordpress' ),
2931
 
2932
- // Reference: src/modules/addons/api/index.js:103
2933
- __( 'You appear to be offline. WPForms not installed.', 'google-analytics-for-wordpress' ),
2934
 
2935
- // Reference: src/modules/addons/api/index.js:132
2936
- /* Translators: Error status and error text. */
2937
- __( 'Can\'t activate addon. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2938
 
2939
- // Reference: src/modules/addons/api/index.js:136
2940
- __( 'You appear to be offline. Addon not activated.', 'google-analytics-for-wordpress' ),
2941
 
2942
- // Reference: src/modules/addons/api/index.js:165
2943
- /* Translators: Error status and error text. */
2944
- __( 'Can\'t deactivate addon. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2945
 
2946
- // Reference: src/modules/addons/api/index.js:169
2947
- __( 'You appear to be offline. Addon not deactivated.', 'google-analytics-for-wordpress' ),
2948
 
2949
- // Reference: src/modules/addons/api/index.js:199
2950
- /* Translators: Error status and error text. */
2951
- __( 'Can\'t install plugin. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2952
 
2953
- // Reference: src/modules/addons/api/index.js:203
2954
- __( 'You appear to be offline. Plugin not installed.', 'google-analytics-for-wordpress' ),
2955
 
2956
- // Reference: src/modules/addons/api/index.js:64
2957
- /* Translators: Error status and error text. */
2958
- __( 'Can\'t install addon. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2959
 
2960
- // Reference: src/modules/addons/api/index.js:68
2961
- __( 'You appear to be offline. Addon not installed.', 'google-analytics-for-wordpress' ),
2962
 
2963
- // Reference: src/modules/addons/api/index.js:99
2964
- /* Translators: Error status and error text. */
2965
- __( 'Can\'t install WPForms. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2966
 
2967
- // Reference: src/modules/auth/api/index.js:119
2968
- /* Translators: Error status and error text. */
2969
- __( 'Can\'t deauthenticate. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2970
 
2971
- // Reference: src/modules/auth/api/index.js:150
2972
- __( 'You appear to be offline. Settings not saved.', 'google-analytics-for-wordpress' ),
2973
 
2974
- // Reference: src/modules/auth/api/index.js:17
2975
- /* Translators: Error status and error text. */
2976
- __( 'Can\'t load authentication details. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2977
 
2978
- // Reference: src/modules/auth/api/index.js:42
2979
- /* Translators: Error status and error text. */
2980
- __( 'Can\'t authenticate. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2981
 
2982
- // Reference: src/modules/auth/api/index.js:67
2983
- /* Translators: Error status and error text. */
2984
- __( 'Can\'t reauthenticate. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2985
 
2986
- // Reference: src/modules/auth/api/index.js:90
2987
- /* Translators: Error status and error text. */
2988
- __( 'Can\'t verify credentials. Error: %1$s, %2$s', 'google-analytics-for-wordpress' )
2989
  );
2990
  /* THIS IS THE END OF THE GENERATED FILE */
7
  // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:97
8
  __( '2', 'google-analytics-for-wordpress' ),
9
 
10
+ // Reference: src/plugins/monsterinsights-settings-helper-plugin.js:111
11
+ __( 'Loading Settings', 'google-analytics-for-wordpress' ),
12
+
13
+ // Reference: src/plugins/monsterinsights-settings-helper-plugin.js:19
14
+ __( 'Saving Changes...', 'google-analytics-for-wordpress' ),
15
+
16
+ // Reference: src/plugins/monsterinsights-settings-helper-plugin.js:48
17
+ __( 'Settings Updated', 'google-analytics-for-wordpress' ),
18
+
19
+ // Reference: src/plugins/monsterinsights-settings-helper-plugin.js:6
20
+ /* Translators: Adds a link to the settings panel. */
21
+ __( 'You need to %1$sconnect MonsterInsights%2$s first', 'google-analytics-for-wordpress' ),
22
+
23
+ // Reference: src/plugins/monsterinsights-settings-helper-plugin.js:82
24
+ __( 'Could Not Save Changes', 'google-analytics-for-wordpress' ),
25
+
26
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:129
27
+ __( 'Loading new report data', 'google-analytics-for-wordpress' ),
28
+
29
+ // Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:53
30
+ // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:55
31
+ __( 'Please wait...', 'google-analytics-for-wordpress' ),
32
+
33
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:143
34
+ /* Translators: Adds an arrow icon. */
35
+ __( 'Continue %s', 'google-analytics-for-wordpress' ),
36
+
37
+ // Reference: src/modules/reports/components/ReportReAuth.vue:45
38
+ // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:71
39
+ // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:227
40
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:124
41
  __( 'Error', 'google-analytics-for-wordpress' ),
42
 
43
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:206
44
  __( 'Please try again.', 'google-analytics-for-wordpress' ),
45
 
46
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:236
47
+ __( 'Unlock the Publishers Report and Focus on the Content that Matters', 'google-analytics-for-wordpress' ),
48
+
49
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:237
50
+ __( 'Stop guessing about what content your visitors are interested in. MonsterInsights Publisher Report shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions.', 'google-analytics-for-wordpress' ),
51
+
52
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:248
53
+ __( 'Unlock the Publishers Report and Focus on the Content That Matters', 'google-analytics-for-wordpress' ),
54
+
55
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:249
56
+ __( '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.', 'google-analytics-for-wordpress' ),
57
+
58
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:260
59
+ __( 'Unlock the eCommerce Report and See Your Important Store Metrics', 'google-analytics-for-wordpress' ),
60
+
61
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:261
62
+ __( 'Increase your sales & revenue with insights. MonsterInsights answers all your top eCommerce questions using metrics like total revenue, conversion rate, average order value, top products, top referral sources and more.', 'google-analytics-for-wordpress' ),
63
+
64
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:274
65
+ __( 'Unlock the Dimensions Report and Track Your Own Custom Data', 'google-analytics-for-wordpress' ),
66
+
67
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:275
68
+ __( '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.', 'google-analytics-for-wordpress' ),
69
+
70
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:285
71
+ __( 'Unlock the Forms Report and Improve Conversions', 'google-analytics-for-wordpress' ),
72
+
73
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:286
74
+ __( '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.', 'google-analytics-for-wordpress' ),
75
+
76
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:294
77
+ __( 'Unlock the Search Console Report and See How People Find Your Website', 'google-analytics-for-wordpress' ),
78
+
79
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:295
80
+ __( 'See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more.', 'google-analytics-for-wordpress' ),
81
+
82
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:304
83
+ __( 'Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time', 'google-analytics-for-wordpress' ),
84
+
85
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:305
86
+ __( '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.', 'google-analytics-for-wordpress' ),
87
+
88
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:325
89
  __( 'Today', 'google-analytics-for-wordpress' ),
90
 
91
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:331
92
  __( 'Yesterday', 'google-analytics-for-wordpress' ),
93
 
94
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:337
95
  __( 'Last Week', 'google-analytics-for-wordpress' ),
96
 
97
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:343
98
  __( 'Last Month', 'google-analytics-for-wordpress' ),
99
 
100
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:349
101
  __( 'Last 7 days', 'google-analytics-for-wordpress' ),
102
 
103
+ // Reference: src/modules/reports/components/reports-overview/monsterinsights-ReportOverviewDatePicker-Lite.vue:48
104
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:355
105
  __( 'Last 30 days', 'google-analytics-for-wordpress' ),
106
 
107
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:188
110
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:189
111
  __( 'Loading new report data...', 'google-analytics-for-wordpress' ),
112
 
 
 
 
 
 
 
 
 
 
 
 
 
113
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:251
114
  __( 'See Your Top Landing Pages to Improve Enagement', 'google-analytics-for-wordpress' ),
115
 
128
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:256
129
  __( 'See Audience Demographic Report ( Age / Gender / Interests )', 'google-analytics-for-wordpress' ),
130
 
 
 
 
 
 
 
131
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:263
132
  __( 'See Your Conversion Rate to Improve Funnel', 'google-analytics-for-wordpress' ),
133
 
152
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:270
153
  __( 'See How Many Sessions are needed for a Purchase', 'google-analytics-for-wordpress' ),
154
 
 
 
 
 
 
 
155
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:277
156
  __( 'See Which Authors Generate the Most Traffic', 'google-analytics-for-wordpress' ),
157
 
167
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:281
168
  __( 'See Which Focus Keyword is Performing Better in Search Engines', 'google-analytics-for-wordpress' ),
169
 
 
 
 
 
 
 
170
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:288
171
  __( 'See Reports for Any Contact Form Plugin or Sign-up Form', 'google-analytics-for-wordpress' ),
172
 
176
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:290
177
  __( 'See Your Forms Impressions Count to Find the Best Placement', 'google-analytics-for-wordpress' ),
178
 
 
 
 
 
 
 
179
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:297
180
  __( 'See Your Top Google Search Terms and Optimize Content', 'google-analytics-for-wordpress' ),
181
 
188
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:300
189
  __( 'See The Average Results Position and Focus on what works', 'google-analytics-for-wordpress' ),
190
 
 
 
 
 
 
 
191
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:307
192
  __( 'See Your Active Visitors and Track Their Behaviour to Optimize', 'google-analytics-for-wordpress' ),
193
 
203
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:311
204
  __( 'Get Fresh Reports Data Every 60 Seconds', 'google-analytics-for-wordpress' ),
205
 
206
+ // Reference: src/plugins/monsterinsights-wizard-helper-plugin.js:13
207
+ __( 'Loading settings', 'google-analytics-for-wordpress' ),
208
 
209
+ // Reference: src/plugins/monsterinsights-compatibility-plugin.js:13
210
+ /* Translators: Current PHP version and recommended PHP version. */
211
+ __( 'MonsterInsights has detected that your site is running an outdated, insecure version of PHP (%1$s), which could be putting your site at risk for being hacked. WordPress stopped supporting your PHP version in April, 2019. Updating to the recommended version (PHP %2$s) only takes a few minutes and will make your website significantly faster and more secure.', 'google-analytics-for-wordpress' ),
 
212
 
213
+ // Reference: src/plugins/monsterinsights-compatibility-plugin.js:27
214
+ /* Translators: Current WordPress version. */
215
+ __( 'MonsterInsights has detected that your site is running an outdated version of WordPress (%s). MonsterInsights will stop supporting WordPress versions lower than 4.9 in 2020. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install.', 'google-analytics-for-wordpress' ),
216
 
217
+ // Reference: src/plugins/monsterinsights-compatibility-plugin.js:39
218
+ __( 'Yikes! PHP Update Required', 'google-analytics-for-wordpress' ),
219
 
220
+ // Reference: src/plugins/monsterinsights-compatibility-plugin.js:41
221
+ /* Translators: Current PHP version and recommended PHP version. */
222
+ __( 'MonsterInsights has detected that your site is running an outdated, insecure version of PHP (%1$s), which could be putting your site at risk for being hacked. Updating to the recommended version (PHP %2$s) only takes a few minutes and will make your website significantly faster and more secure.', 'google-analytics-for-wordpress' ),
223
 
224
+ // Reference: src/plugins/monsterinsights-compatibility-plugin.js:45
225
+ __( 'Learn more about updating PHP', 'google-analytics-for-wordpress' ),
226
+
227
+ // Reference: src/plugins/monsterinsights-compatibility-plugin.js:53
228
+ __( 'Yikes! WordPress Update Required', 'google-analytics-for-wordpress' ),
229
+
230
+ // Reference: src/plugins/monsterinsights-compatibility-plugin.js:55
231
+ /* Translators: Current WordPress version. */
232
+ __( 'MonsterInsights has detected that your site is running an outdated version of WordPress (%s). Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install.', 'google-analytics-for-wordpress' ),
233
+
234
+ // Reference: src/plugins/monsterinsights-compatibility-plugin.js:59
235
+ __( 'Learn more about updating WordPress', 'google-analytics-for-wordpress' ),
236
 
237
  // Reference: src/modules/widget/components/WidgetReminder.vue:33
238
  /* Translators: Number of visitors. */
245
  // Reference: src/modules/widget/components/WidgetReminder.vue:36
246
  __( 'See the full analytics report!', 'google-analytics-for-wordpress' ),
247
 
248
+ // Reference: src/modules/frontend/monsterinsights-frontend.vue:36
249
+ __( 'Insights', 'google-analytics-for-wordpress' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
250
 
251
+ // Reference: src/modules/settings/routes/network.js:35
252
+ __( 'About Us', 'google-analytics-for-wordpress' ),
253
 
254
+ // Reference: src/modules/settings/routes/network.js:43
255
+ __( 'Getting Started', 'google-analytics-for-wordpress' ),
 
256
 
257
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:52
258
+ // Reference: src/modules/settings/routes/network.js:52
259
+ __( 'Lite vs Pro', 'google-analytics-for-wordpress' ),
260
 
261
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:238
262
+ // Reference: src/modules/widget/store/index.js:14
263
+ // Reference: src/modules/widget/widget.vue:25
264
+ __( 'Overview Report', 'google-analytics-for-wordpress' ),
265
 
266
+ // Reference: src/modules/reports/routes/index.js:32
267
+ __( 'Publishers Report', 'google-analytics-for-wordpress' ),
268
 
269
+ // Reference: src/modules/reports/routes/index.js:40
270
+ __( 'eCommerce Report', 'google-analytics-for-wordpress' ),
271
 
272
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportSearchConsole-Lite.vue:26
273
+ // Reference: src/modules/reports/routes/index.js:48
274
+ __( 'Search Console Report', 'google-analytics-for-wordpress' ),
275
 
276
+ // Reference: src/modules/reports/routes/index.js:56
277
+ __( 'Dimensions Report', 'google-analytics-for-wordpress' ),
278
 
279
+ // Reference: src/modules/reports/routes/index.js:64
280
+ __( 'Forms Report', 'google-analytics-for-wordpress' ),
281
 
282
+ // Reference: src/modules/reports/routes/index.js:72
283
+ __( 'Real-Time Report', 'google-analytics-for-wordpress' ),
284
 
285
+ // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:48
286
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:263
287
+ __( '2019 Year in Review', 'google-analytics-for-wordpress' ),
288
 
289
  // Reference: src/modules/reports/api/index.js:21
290
  /* Translators: Error status and error text. */
308
  // Reference: src/components/TheQuickLinks.vue:78
309
  __( 'Upgrade to Pro &#187;', 'google-analytics-for-wordpress' ),
310
 
311
+ // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:40
312
+ // Reference: src/modules/widget/store/index.js:76
313
+ __( 'Overview', 'google-analytics-for-wordpress' ),
314
 
315
+ // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:41
316
+ __( 'Publishers', 'google-analytics-for-wordpress' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
317
 
318
+ // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:42
 
 
319
  __( 'eCommerce', 'google-analytics-for-wordpress' ),
320
 
321
+ // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:43
322
+ __( 'Search Console', 'google-analytics-for-wordpress' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
323
 
324
+ // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:44
325
+ __( 'Dimensions', 'google-analytics-for-wordpress' ),
326
 
327
+ // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:45
328
+ __( 'Forms', 'google-analytics-for-wordpress' ),
329
 
330
+ // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:46
331
+ __( 'Real-Time', 'google-analytics-for-wordpress' ),
332
 
333
  // Reference: src/modules/notifications/components/monsterinsights-Notifications.vue:75
334
  __( 'Inbox', 'google-analytics-for-wordpress' ),
351
  // Reference: src/modules/notifications/components/monsterinsights-Notifications.vue:81
352
  __( 'No Notifications', 'google-analytics-for-wordpress' ),
353
 
354
+ // Reference: src/modules/frontend/components/FrontendPoweredBy.vue:12
355
+ __( 'Powered by MonsterInsights', 'google-analytics-for-wordpress' ),
356
 
357
+ // Reference: src/modules/reports/components/ReportNoAuth.vue:25
358
+ __( 'You must connect with MonsterInsights before you can view reports.', 'google-analytics-for-wordpress' ),
359
 
360
+ // Reference: src/modules/reports/components/ReportNoAuth.vue:26
361
+ __( 'MonsterInsights makes it "effortless" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard.', 'google-analytics-for-wordpress' ),
 
362
 
363
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:98
364
+ __( 'Launch Setup Wizard', 'google-analytics-for-wordpress' ),
 
365
 
366
+ // Reference: src/modules/reports/components/ReportNoAuth.vue:28
367
+ __( 'Please ask your webmaster to connect MonsterInsights to Google Analytics.', 'google-analytics-for-wordpress' ),
 
368
 
369
+ // Reference: src/modules/wizard-onboarding/components/TheWizardHeader.vue:24
370
+ __( 'Exit Setup', 'google-analytics-for-wordpress' ),
371
 
372
  // Reference: src/modules/frontend/components/FrontendNoAuth.vue:24
373
  __( 'Please Setup Website Analytics to See Audience Insights', 'google-analytics-for-wordpress' ),
378
  // Reference: src/modules/frontend/components/FrontendNoAuth.vue:26
379
  __( 'Connect MonsterInsights and Setup Website Analytics', 'google-analytics-for-wordpress' ),
380
 
381
+ // Reference: src/modules/wizard-onboarding/components/OnboardingAddon-Lite.vue:26
382
+ __( 'Learn More', 'google-analytics-for-wordpress' ),
 
 
 
 
 
 
383
 
384
+ // Reference: src/modules/reports/components/ReportReAuth.vue:19
385
+ __( 'MonsterInsights encountered an error loading your report data', 'google-analytics-for-wordpress' ),
386
 
387
+ // Reference: src/modules/reports/components/ReportReAuth.vue:20
388
+ __( 'There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating.', 'google-analytics-for-wordpress' ),
389
 
390
+ // Reference: src/modules/reports/components/ReportReAuth.vue:21
391
+ // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:69
392
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:47
393
+ __( 'Reconnect MonsterInsights', 'google-analytics-for-wordpress' ),
394
 
395
+ // Reference: src/modules/reports/components/ReportReAuth.vue:30
396
+ // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:143
397
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:108
398
+ __( 'Re-Authenticating', 'google-analytics-for-wordpress' ),
399
 
400
+ // Reference: src/modules/reports/components/ReportReAuth.vue:47
401
+ // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:229
402
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:88
403
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:126
404
+ __( 'Ok', 'google-analytics-for-wordpress' ),
405
 
406
+ // Reference: src/modules/addons/components/AddonsNavigation.vue:18
407
+ __( 'MonsterInsights Addons', 'google-analytics-for-wordpress' ),
408
 
409
+ // Reference: src/modules/addons/components/AddonsNavigation.vue:19
410
+ __( 'Search Addons', 'google-analytics-for-wordpress' ),
411
 
412
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:91
413
  __( 'License Key', 'google-analytics-for-wordpress' ),
420
  __( 'Google Authentication', 'google-analytics-for-wordpress' ),
421
 
422
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:93
 
423
  __( 'Connect Google Analytics + WordPress', 'google-analytics-for-wordpress' ),
424
 
425
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:94
 
426
  __( 'You will be taken to the MonsterInsights website where you\'ll need to connect your Analytics account.', 'google-analytics-for-wordpress' ),
427
 
428
  // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:35
440
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:97
441
  __( 'Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks).', 'google-analytics-for-wordpress' ),
442
 
443
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:100
444
+ __( 'WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin', 'google-analytics-for-wordpress' ),
 
 
 
445
 
446
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:103
447
+ __( 'WordPress Admin Area Reports', 'google-analytics-for-wordpress' ),
448
 
449
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:106
450
+ __( 'Standard Reports', 'google-analytics-for-wordpress' ),
451
 
452
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:107
453
+ __( 'Overview Reports for the last 30 days.', 'google-analytics-for-wordpress' ),
 
454
 
455
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:108
456
+ __( 'Advanced Reports', 'google-analytics-for-wordpress' ),
457
 
458
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:109
459
+ __( 'Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection', 'google-analytics-for-wordpress' ),
460
 
461
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:112
462
+ __( 'Dashboard Widget', 'google-analytics-for-wordpress' ),
463
 
464
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:115
465
+ __( 'Basic Widget', 'google-analytics-for-wordpress' ),
466
 
467
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:116
468
+ __( 'Overview Report Synopsis', 'google-analytics-for-wordpress' ),
469
 
470
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:117
471
+ __( 'Advanced Dashboard Widget', 'google-analytics-for-wordpress' ),
472
 
473
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:118
474
+ __( 'Includes the complete Overview report, Publisher reports and 6 different eCommerce reports', 'google-analytics-for-wordpress' ),
475
 
476
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:121
477
+ __( 'Publisher Reports', 'google-analytics-for-wordpress' ),
478
 
479
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:125
480
+ __( 'Advanced Publisher Reports & Tracking', 'google-analytics-for-wordpress' ),
481
 
482
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:126
483
+ __( 'View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more', 'google-analytics-for-wordpress' ),
484
 
485
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:129
486
+ __( 'Custom Dimensions', 'google-analytics-for-wordpress' ),
487
 
488
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:132
489
+ __( 'Not Available', 'google-analytics-for-wordpress' ),
490
 
491
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:133
492
+ __( 'Complete Custom Dimensions Tracking', 'google-analytics-for-wordpress' ),
493
 
494
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:134
495
+ __( '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', 'google-analytics-for-wordpress' ),
496
 
497
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:137
498
+ __( 'Support', 'google-analytics-for-wordpress' ),
499
 
500
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:140
501
+ __( 'Limited Support', 'google-analytics-for-wordpress' ),
502
 
503
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:141
504
+ __( 'Priority Support', 'google-analytics-for-wordpress' ),
505
 
506
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:53
507
+ __( 'Get the most out of MonsterInsights by upgrading to Pro and unlocking all of the powerful features.', 'google-analytics-for-wordpress' ),
508
 
509
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:54
510
+ __( 'Feature', 'google-analytics-for-wordpress' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
511
 
512
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:55
513
  __( 'Lite', 'google-analytics-for-wordpress' ),
522
  /* Translators: Makes text green. */
523
  __( 'Bonus: MonsterInsights Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout.', 'google-analytics-for-wordpress' ),
524
 
525
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:62
526
+ __( 'Universal Tracking', 'google-analytics-for-wordpress' ),
527
+
528
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:64
529
  __( 'Included', 'google-analytics-for-wordpress' ),
530
 
573
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:99
574
  __( 'One-click Form Events Tracking', 'google-analytics-for-wordpress' ),
575
 
576
+ // Reference: src/modules/about/components/monsterinsights-AboutTabAboutUs.vue:31
577
+ __( 'Hello and welcome to MonsterInsights, the best Google Analytics plugin for WordPress. MonsterInsights shows you exactly which content gets the most visit, so you can analyze and optimize it for higher conversions.', 'google-analytics-for-wordpress' ),
578
+
579
+ // Reference: src/modules/about/components/monsterinsights-AboutTabAboutUs.vue:32
580
+ __( 'Over the years, we found that in order to get the most out of Google Analytics, you needed a full time developer who could implement custom tracking, so that Google Analytics would integrate with things like WooCommerce, and track things which Google doesn\'t by default, like outbound links.', 'google-analytics-for-wordpress' ),
581
+
582
+ // Reference: src/modules/about/components/monsterinsights-AboutTabAboutUs.vue:33
583
+ __( 'Our goal is to take the pain out of analytics, making it simple and easy, by eliminating the need to have to worry about code, putting the best reports directly into the area you already go to (your WordPress dashboard), and adding the most advanced insights and features without complicating our plugin with tons of settings. Quite simply, it should "just work".', 'google-analytics-for-wordpress' ),
584
+
585
+ // Reference: src/modules/about/components/monsterinsights-AboutTabAboutUs.vue:34
586
+ __( 'MonsterInsights is brought to you by the same team that\'s behind the largest WordPress resource site, WPBeginner, the most popular lead-generation software, OptinMonster, and the best WordPress forms plugin, WPForms.', 'google-analytics-for-wordpress' ),
587
+
588
+ // Reference: src/modules/about/components/monsterinsights-AboutTabAboutUs.vue:35
589
+ __( 'Yup, we know a thing or two about building awesome products that customers love.', 'google-analytics-for-wordpress' ),
590
+
591
+ // Reference: src/modules/about/components/monsterinsights-AboutTabAboutUs.vue:36
592
+ __( 'The MonsterInsights Team', 'google-analytics-for-wordpress' ),
593
+
594
  // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:104
595
  __( 'GDPR Guide', 'google-analytics-for-wordpress' ),
596
 
676
  // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:99
677
  __( '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 MonsterInsights’ advanced tracking.', 'google-analytics-for-wordpress' ),
678
 
679
+ // Reference: src/modules/settings/components/SettingsButtonSave.vue:46
680
+ __( 'Save Changes', 'google-analytics-for-wordpress' ),
681
 
682
+ // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:125
683
+ __( 'Welcome to MonsterInsights', 'google-analytics-for-wordpress' ),
684
 
685
+ // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:126
686
+ __( 'Thank you for choosing MonsterInsights - The Most Powerful WordPress Analytics Plugin', 'google-analytics-for-wordpress' ),
687
 
688
+ // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:127
689
+ __( 'MonsterInsights 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.', 'google-analytics-for-wordpress' ),
690
 
691
+ // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:128
692
+ __( 'Launch the Wizard!', 'google-analytics-for-wordpress' ),
693
 
694
+ // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:129
695
+ __( 'Read the Full Guide', 'google-analytics-for-wordpress' ),
696
 
697
+ // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:130
698
+ __( 'MonsterInsights Features & Addons', 'google-analytics-for-wordpress' ),
 
699
 
700
+ // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:131
701
+ __( 'Here are the features that make MonsterInsights the most powerful and user-friendly WordPress analytics plugin in the market.', 'google-analytics-for-wordpress' ),
702
 
703
+ // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:132
704
+ __( 'See All Features', 'google-analytics-for-wordpress' ),
705
 
706
+ // Reference: src/modules/reports/components/monsterinsights-ReportsPdfExport-Lite.vue:48
707
+ // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:133
708
+ __( 'Upgrade to PRO', 'google-analytics-for-wordpress' ),
709
 
710
+ // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:134
711
+ __( 'per year', 'google-analytics-for-wordpress' ),
712
 
713
+ // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:135
714
+ __( 'Upgrade Now', 'google-analytics-for-wordpress' ),
715
 
716
+ // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:136
717
+ __( 'Testimonials', 'google-analytics-for-wordpress' ),
718
 
719
+ // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:141
720
+ __( 'Setup universal website tracking across devices and campaigns with just a few clicks (without any code).', 'google-analytics-for-wordpress' ),
721
 
722
+ // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:145
723
+ __( 'Google Analytics Dashboard', 'google-analytics-for-wordpress' ),
724
 
725
+ // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:146
726
+ __( 'See your website analytics report right inside your WordPress dashboard with actionable insights.', 'google-analytics-for-wordpress' ),
727
 
728
+ // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:150
729
+ __( 'Real-time Stats', 'google-analytics-for-wordpress' ),
730
 
731
+ // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:151
732
+ __( 'Get real-time stats right inside WordPress to see who is online, what are they doing, and more.', 'google-analytics-for-wordpress' ),
733
 
734
+ // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:155
735
+ __( 'Enhanced Ecommerce Tracking', 'google-analytics-for-wordpress' ),
736
 
737
+ // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:156
738
+ __( '1-click Google Analytics Enhanced Ecommerce tracking for WooCommerce, Easy Digital Downloads & MemberPress.', 'google-analytics-for-wordpress' ),
739
 
740
+ // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:160
741
+ __( 'Page Level Analytics', 'google-analytics-for-wordpress' ),
742
 
743
+ // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:161
744
+ __( 'Get detailed stats for each post and page, so you can see the most popular posts, pages, and sections of your site.', 'google-analytics-for-wordpress' ),
745
 
746
+ // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:165
747
+ __( 'Affiliate Link & Ads Tracking', 'google-analytics-for-wordpress' ),
748
 
749
+ // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:166
750
+ __( 'Automatically track clicks on your affiliate links, banner ads, and other outbound links with our link tracking.', 'google-analytics-for-wordpress' ),
751
 
752
+ // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:170
753
+ __( 'EU Compliance (GDPR Friendly)', 'google-analytics-for-wordpress' ),
754
 
755
+ // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:171
756
+ __( 'Make Google Analytics compliant with GDPR and other privacy regulations automatically.', 'google-analytics-for-wordpress' ),
757
 
758
+ // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:176
759
+ __( 'Setup tracking for authors, categories, tags, searches, custom post types, users, and other events with 1-click.', 'google-analytics-for-wordpress' ),
760
 
761
+ // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:181
762
+ __( 'Ecommerce Report', 'google-analytics-for-wordpress' ),
763
 
764
+ // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:182
765
+ __( 'Form Conversions', 'google-analytics-for-wordpress' ),
766
 
767
+ // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:184
768
+ __( 'Author Tracking', 'google-analytics-for-wordpress' ),
 
769
 
770
+ // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:185
771
+ __( 'Google Optimize', 'google-analytics-for-wordpress' ),
772
 
773
+ // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:186
774
+ __( 'Category / Tags Tracking', 'google-analytics-for-wordpress' ),
 
775
 
776
+ // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:187
777
+ __( 'WooCommerce', 'google-analytics-for-wordpress' ),
778
 
779
+ // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:188
780
+ __( 'Easy Digital Downloads', 'google-analytics-for-wordpress' ),
 
 
 
781
 
782
+ // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:189
783
+ __( 'MemberPress', 'google-analytics-for-wordpress' ),
784
 
785
+ // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:190
786
+ __( 'LifterLMS', 'google-analytics-for-wordpress' ),
787
 
788
+ // Reference: src/modules/addons/store/actions.js:33
789
+ /* Translators: Adds a link to documentation. */
790
+ __( 'In order for the MonsterInsights Google AMP addon to work properly, please ask your webmaster to install the WordPress AMP plugin by Automattic. %1$sLearn More%2$s', 'google-analytics-for-wordpress' ),
791
 
792
+ // Reference: src/modules/addons/store/actions.js:36
793
+ /* Translators: Adds link to activate/install plugin and documentation. */
794
+ __( 'In order for the MonsterInsights 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', 'google-analytics-for-wordpress' ),
795
 
796
+ // Reference: src/modules/addons/store/actions.js:49
797
+ __( 'Activate', 'google-analytics-for-wordpress' ),
798
 
799
+ // Reference: src/modules/addons/store/actions.js:49
800
+ __( 'Install', 'google-analytics-for-wordpress' ),
801
 
802
+ // Reference: src/modules/addons/store/actions.js:51
803
+ /* Translators: Adds a link to documentation. */
804
+ __( 'In order for the MonsterInsights 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', 'google-analytics-for-wordpress' ),
805
 
806
+ // Reference: src/modules/addons/store/actions.js:54
807
+ /* Translators: Adds link to activate/install plugin and documentation. */
808
+ __( 'In order for the MonsterInsights 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', 'google-analytics-for-wordpress' ),
809
 
810
+ // Reference: src/modules/reports/store/actions.js:132
811
+ __( 'Installing Addon', 'google-analytics-for-wordpress' ),
812
 
813
+ // Reference: src/modules/reports/store/actions.js:155
814
+ __( 'Activating Addon', 'google-analytics-for-wordpress' ),
815
 
816
+ // Reference: src/modules/reports/store/actions.js:170
817
+ __( 'Addon Activated', 'google-analytics-for-wordpress' ),
818
 
819
+ // Reference: src/modules/reports/store/actions.js:171
820
+ __( 'Loading report data', 'google-analytics-for-wordpress' ),
821
 
822
+ // Reference: src/modules/reports/store/actions.js:188
823
+ __( 'Please activate manually', 'google-analytics-for-wordpress' ),
824
 
825
+ // Reference: src/modules/reports/store/actions.js:191
826
+ /* Translators: Adds the error status and status text. */
827
+ __( 'Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
828
 
829
+ // Reference: src/modules/reports/store/actions.js:197
830
+ __( 'Error Activating Addon', 'google-analytics-for-wordpress' ),
831
 
832
+ // Reference: src/modules/reports/store/actions.js:203
833
+ __( 'View Addons', 'google-analytics-for-wordpress' ),
834
 
835
+ // Reference: src/modules/reports/store/actions.js:204
836
+ __( 'Dismiss', 'google-analytics-for-wordpress' ),
837
 
838
+ // Reference: src/modules/reports/store/actions.js:211
839
+ __( 'Redirecting', 'google-analytics-for-wordpress' ),
 
840
 
841
+ // Reference: src/modules/reports/store/actions.js:212
842
+ __( 'Please wait', 'google-analytics-for-wordpress' ),
 
843
 
844
+ // Reference: src/modules/reports/store/actions.js:52
845
+ __( 'activate', 'google-analytics-for-wordpress' ),
846
 
847
+ // Reference: src/modules/reports/store/actions.js:52
848
+ __( 'install', 'google-analytics-for-wordpress' ),
849
 
850
+ // Reference: src/modules/reports/store/actions.js:56
851
+ __( 'Visit addons page', 'google-analytics-for-wordpress' ),
852
 
853
+ // Reference: src/modules/reports/store/actions.js:64
854
+ __( 'Report Unavailable', 'google-analytics-for-wordpress' ),
855
 
856
+ // Reference: src/modules/reports/store/actions.js:71
857
+ /* Translators: Install/Activate the addon. */
858
+ __( '%s Addon', 'google-analytics-for-wordpress' ),
859
 
860
+ // Reference: src/modules/reports/store/actions.js:90
861
+ __( 'Go Back To Reports', 'google-analytics-for-wordpress' ),
862
 
863
+ // Reference: src/modules/reports/store/actions.js:91
864
+ __( 'Enable Enhanced eCommerce', 'google-analytics-for-wordpress' ),
 
865
 
866
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:53
867
+ __( 'Recommended Settings', 'google-analytics-for-wordpress' ),
 
 
868
 
869
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:54
870
+ __( 'MonsterInsights recommends the following settings based on your configuration.', 'google-analytics-for-wordpress' ),
 
 
871
 
872
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:55
873
+ __( 'Events Tracking', 'google-analytics-for-wordpress' ),
 
 
874
 
875
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:56
876
+ __( 'Must have for all click tracking on site.', 'google-analytics-for-wordpress' ),
 
877
 
878
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:57
879
+ __( 'MonsterInsights 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.', 'google-analytics-for-wordpress' ),
880
 
881
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:58
882
+ __( 'Enhanced Link Attribution', 'google-analytics-for-wordpress' ),
883
 
884
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:59
885
+ __( 'Improves the accuracy of your In-Page Analytics.', 'google-analytics-for-wordpress' ),
886
 
887
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:60
888
+ __( 'MonsterInsights 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.', 'google-analytics-for-wordpress' ),
889
 
890
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:61
891
+ __( 'Install Updates Automatically', 'google-analytics-for-wordpress' ),
892
 
893
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:62
894
+ __( 'Get the latest features, bug fixes, and security updates as they are released.', 'google-analytics-for-wordpress' ),
895
 
896
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:63
897
+ __( 'To ensure you get the latest bugfixes and security updates and avoid needing to spend time logging into your WordPress site to update MonsterInsights, we offer the ability to automatically have MonsterInsights update itself.', 'google-analytics-for-wordpress' ),
898
 
899
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:64
900
+ __( 'File Download Tracking', 'google-analytics-for-wordpress' ),
901
 
902
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:65
903
+ __( 'Helps you see file downloads data.', 'google-analytics-for-wordpress' ),
904
 
905
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:66
906
+ __( 'MonsterInsights 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? MonsterInsights makes this both easy, and code-free! You can customize the file types to track at any time from our settings panel.', 'google-analytics-for-wordpress' ),
907
 
908
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:50
909
+ /* Translators: Example path (/go/). */
910
+ __( 'Path (example: %s)', 'google-analytics-for-wordpress' ),
911
 
912
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:52
913
+ __( 'Path has to start with a / and have no spaces', 'google-analytics-for-wordpress' ),
914
 
915
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:57
916
+ /* Translators: Example label (aff). */
917
+ __( 'Label (example: %s)', 'google-analytics-for-wordpress' ),
918
 
919
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:59
920
+ __( 'Label can\'t contain any spaces', 'google-analytics-for-wordpress' ),
921
 
922
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:83
923
+ __( 'Helps you increase affiliate revenue.', 'google-analytics-for-wordpress' ),
 
924
 
925
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:84
926
+ __( 'MonsterInsights 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.', 'google-analytics-for-wordpress' ),
927
 
928
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:85
929
+ __( 'Affiliate Link Tracking', 'google-analytics-for-wordpress' ),
930
 
931
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:86
932
+ __( 'Who Can See Reports', 'google-analytics-for-wordpress' ),
 
933
 
934
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:87
935
+ __( 'These user roles will be able to access MonsterInsights\'s reports in the WordPress admin area.', 'google-analytics-for-wordpress' ),
 
936
 
937
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:69
938
+ __( '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.', 'google-analytics-for-wordpress' ),
 
939
 
940
+ // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:49
941
+ __( 'Save and continue', 'google-analytics-for-wordpress' ),
942
 
943
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:91
944
+ __( 'Events Tracking is enabled the moment you set up MonsterInsights', 'google-analytics-for-wordpress' ),
945
 
946
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:92
947
+ __( 'Enhanced Link Attribution is enabled the moment you set up MonsterInsights', 'google-analytics-for-wordpress' ),
948
 
949
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:93
950
+ __( '+ Add Role', 'google-analytics-for-wordpress' ),
951
 
952
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:40
953
+ __( 'MonsterInsights Recommends WPForms', 'google-analytics-for-wordpress' ),
954
 
955
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:41
956
+ __( 'Built by the folks behind MonsterInsights, WPForms is the most beginner friendly form plugin in the market.', 'google-analytics-for-wordpress' ),
957
 
958
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:42
959
+ __( 'Used on over 3,000,000 websites!', 'google-analytics-for-wordpress' ),
960
 
961
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:43
962
+ __( 'WPForms allow you to create beautiful contact forms, subscription forms, payment forms, and other types of forms for your site in minutes, not hours!', 'google-analytics-for-wordpress' ),
963
 
964
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:44
965
+ __( 'Skip this Step', 'google-analytics-for-wordpress' ),
966
 
967
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:45
968
+ __( 'Continue & Install WPForms', 'google-analytics-for-wordpress' ),
969
 
970
+ // Reference: src/modules/addons/components/AddonButton.vue:39
971
+ // Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:106
972
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:46
973
+ __( 'Installing...', 'google-analytics-for-wordpress' ),
974
 
975
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:149
976
+ __( 'New', 'google-analytics-for-wordpress' ),
977
 
978
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:150
979
+ __( 'Returning', 'google-analytics-for-wordpress' ),
 
980
 
981
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:505
982
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:180
983
+ __( 'Desktop', 'google-analytics-for-wordpress' ),
984
 
985
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:506
986
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:181
987
+ __( 'Tablet', 'google-analytics-for-wordpress' ),
988
 
989
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:507
990
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:182
991
+ __( 'Mobile', 'google-analytics-for-wordpress' ),
992
 
993
+ // Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:30
994
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:239
995
+ // Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:62
996
+ __( 'Sessions', 'google-analytics-for-wordpress' ),
997
 
998
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:241
999
+ // Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:64
1000
+ /* Translators: Line break. */
1001
+ __( 'Unique %s Sessions', 'google-analytics-for-wordpress' ),
1002
 
1003
+ // Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:31
1004
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:300
1005
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:242
1006
+ // Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:65
1007
+ __( 'Pageviews', 'google-analytics-for-wordpress' ),
1008
 
1009
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:244
1010
+ // Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:67
1011
+ /* Translators: Line break. */
1012
+ __( 'Unique %s Pageviews', 'google-analytics-for-wordpress' ),
1013
 
1014
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:245
1015
+ // Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:72
1016
+ __( 'Avg. Session Duration', 'google-analytics-for-wordpress' ),
1017
 
1018
+ // Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:33
1019
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:246
1020
+ // Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:73
1021
+ __( 'Bounce Rate', 'google-analytics-for-wordpress' ),
1022
 
1023
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:247
1024
+ // Reference: src/modules/widget/store/index.js:27
1025
+ __( 'New vs. Returning Visitors', 'google-analytics-for-wordpress' ),
1026
 
1027
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:248
1028
+ // Reference: src/modules/widget/store/index.js:34
1029
+ __( 'Device Breakdown', 'google-analytics-for-wordpress' ),
1030
 
1031
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:249
1032
+ __( 'Top 10 Countries', 'google-analytics-for-wordpress' ),
 
1033
 
1034
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:250
1035
+ __( 'View Countries Report', 'google-analytics-for-wordpress' ),
1036
 
1037
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:251
1038
+ __( 'Top 10 Referrals', 'google-analytics-for-wordpress' ),
1039
 
1040
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:252
1041
+ __( 'View All Referral Sources', 'google-analytics-for-wordpress' ),
1042
 
1043
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:253
1044
+ // Reference: src/modules/widget/store/index.js:20
1045
+ __( 'Top Posts/Pages', 'google-analytics-for-wordpress' ),
1046
 
1047
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:254
1048
+ __( 'View Full Posts/Pages Report', 'google-analytics-for-wordpress' ),
1049
 
1050
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:256
1051
+ // Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:68
1052
+ __( 'A session is the browsing session of a single user to your site.', 'google-analytics-for-wordpress' ),
1053
 
1054
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:257
1055
+ // Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:69
1056
+ __( '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.', 'google-analytics-for-wordpress' ),
1057
 
1058
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:258
1059
+ // Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:70
1060
+ __( 'Total duration of all sessions (in seconds) / number of sessions.', 'google-analytics-for-wordpress' ),
1061
 
1062
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:259
1063
+ __( '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.', 'google-analytics-for-wordpress' ),
1064
 
1065
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:260
1066
+ // Reference: src/modules/widget/store/index.js:28
1067
+ __( 'This graph shows what percent of your user sessions come from new versus repeat visitors.', 'google-analytics-for-wordpress' ),
1068
 
1069
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:261
1070
+ // Reference: src/modules/widget/store/index.js:35
1071
+ __( '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.', 'google-analytics-for-wordpress' ),
1072
 
1073
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:262
1074
+ __( 'This list shows the top countries your website visitors are from.', 'google-analytics-for-wordpress' ),
1075
 
1076
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:263
1077
+ __( 'This list shows the top websites that send your website traffic, known as referral traffic.', 'google-analytics-for-wordpress' ),
1078
 
1079
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:264
1080
+ // Reference: src/modules/widget/store/index.js:21
1081
+ __( 'This list shows the most viewed posts and pages on your website.', 'google-analytics-for-wordpress' ),
1082
 
1083
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:265
1084
+ __( 'Export PDF Overview Report', 'google-analytics-for-wordpress' ),
1085
 
1086
+ // Reference: src/modules/settings/api/index.js:19
1087
+ /* Translators: Error status and error text. */
1088
+ __( 'Can\'t load settings. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
1089
 
1090
+ // Reference: src/modules/auth/api/index.js:123
1091
+ // Reference: src/modules/settings/api/index.js:23
1092
+ __( 'You appear to be offline.', 'google-analytics-for-wordpress' ),
1093
 
1094
+ // Reference: src/modules/auth/api/index.js:146
1095
+ // Reference: src/modules/settings/api/index.js:73
1096
+ /* Translators: Error status and error text. */
1097
+ __( 'Can\'t save settings. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
1098
 
1099
+ // Reference: src/modules/settings/api/index.js:77
1100
+ __( 'Network error encountered. Settings not saved.', 'google-analytics-for-wordpress' ),
1101
 
1102
+ // Reference: src/modules/auth/api/index.js:119
1103
+ /* Translators: Error status and error text. */
1104
+ __( 'Can\'t deauthenticate. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
1105
 
1106
+ // Reference: src/modules/auth/api/index.js:150
1107
+ __( 'You appear to be offline. Settings not saved.', 'google-analytics-for-wordpress' ),
1108
 
1109
+ // Reference: src/modules/auth/api/index.js:17
1110
+ /* Translators: Error status and error text. */
1111
+ __( 'Can\'t load authentication details. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
1112
 
1113
+ // Reference: src/modules/auth/api/index.js:42
1114
+ /* Translators: Error status and error text. */
1115
+ __( 'Can\'t authenticate. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
1116
 
1117
+ // Reference: src/modules/auth/api/index.js:67
1118
+ /* Translators: Error status and error text. */
1119
+ __( 'Can\'t reauthenticate. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
1120
 
1121
+ // Reference: src/modules/auth/api/index.js:90
1122
+ /* Translators: Error status and error text. */
1123
+ __( 'Can\'t verify credentials. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
1124
 
1125
+ // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:19
1126
+ __( 'Thank you for being a loyal MonsterInsights Lite user.', 'google-analytics-for-wordpress' ),
1127
 
1128
+ // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:20
1129
+ __( 'Upgrade to MonsterInsights Pro and unlock all the awesome features.', 'google-analytics-for-wordpress' ),
1130
 
1131
+ // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:22
1132
+ /* Translators: Gets replaced with the coupon code. */
1133
+ __( 'Use coupon code %s to get 50%% off.', 'google-analytics-for-wordpress' ),
1134
 
1135
+ // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:24
1136
+ __( 'Dashboard widget', 'google-analytics-for-wordpress' ),
1137
 
1138
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:62
1139
+ __( 'Affiliate Links', 'google-analytics-for-wordpress' ),
1140
 
1141
+ // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:27
1142
+ __( 'Enhanced Ecommerce', 'google-analytics-for-wordpress' ),
1143
 
1144
+ // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:28
1145
+ __( 'Banner Ads', 'google-analytics-for-wordpress' ),
1146
 
1147
+ // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:31
1148
+ // Reference: src/modules/settings/components/input/tab-publisher/monsterinsights-SettingsInputAmp-Lite.vue:22
1149
+ __( 'Google AMP', 'google-analytics-for-wordpress' ),
1150
 
1151
+ // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:32
1152
+ __( 'SEO Score Tracking', 'google-analytics-for-wordpress' ),
 
1153
 
1154
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:327
1155
+ __( 'Upgrade to MonsterInsights Pro', 'google-analytics-for-wordpress' ),
 
1156
 
1157
+ // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:45
1158
+ __( 'Recommended Addons', 'google-analytics-for-wordpress' ),
 
1159
 
1160
+ // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:46
1161
+ __( 'To unlock more features consider upgrading to PRO. As a valued MonsterInsights Lite user you receive 50% off, automatically applied at checkout!', 'google-analytics-for-wordpress' ),
1162
 
1163
+ // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:47
1164
+ __( 'Other Addons', 'google-analytics-for-wordpress' ),
 
1165
 
1166
+ // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:48
1167
+ __( 'View all MonsterInsights addons', 'google-analytics-for-wordpress' ),
 
1168
 
1169
+ // Reference: src/components/TheFloatingBar-Lite.vue:29
1170
+ /* Translators: Placeholders are used for making text bold and adding a link. */
1171
+ __( 'You\'re using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s.', 'google-analytics-for-wordpress' ),
1172
 
1173
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:259
1174
+ __( 'Still Calculating...', 'google-analytics-for-wordpress' ),
1175
 
1176
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:260
1177
+ __( 'Your 2019 Year in Review is still calculating. Please check back later to see how your website performed last year.', 'google-analytics-for-wordpress' ),
 
1178
 
1179
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:261
1180
+ __( 'Back to Overview Report', 'google-analytics-for-wordpress' ),
 
1181
 
1182
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:262
1183
+ __( 'Your 2019 Analytics Report', 'google-analytics-for-wordpress' ),
1184
 
1185
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:264
1186
+ __( 'See how your website performed this year and find tips along the way to help grow even more in 2020!', 'google-analytics-for-wordpress' ),
 
1187
 
1188
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:265
1189
+ __( 'Audience', 'google-analytics-for-wordpress' ),
1190
 
1191
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:266
1192
+ __( 'Congrats', 'google-analytics-for-wordpress' ),
1193
 
1194
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:267
1195
+ __( 'Your website was quite popular this year! ', 'google-analytics-for-wordpress' ),
1196
 
1197
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:268
1198
+ __( 'You had ', 'google-analytics-for-wordpress' ),
1199
 
1200
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:269
1201
+ __( ' visitors!', 'google-analytics-for-wordpress' ),
1202
 
1203
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:270
1204
+ __( ' visitors', 'google-analytics-for-wordpress' ),
1205
 
1206
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:271
1207
+ __( 'Total Visitors', 'google-analytics-for-wordpress' ),
1208
 
1209
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:272
1210
+ __( 'Total Sessions', 'google-analytics-for-wordpress' ),
1211
 
1212
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:273
1213
+ __( 'Visitors by Month', 'google-analytics-for-wordpress' ),
1214
 
1215
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:274
1216
+ __( 'January 1, 2019 - December 31, 2019', 'google-analytics-for-wordpress' ),
1217
 
1218
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:275
1219
+ __( 'A Tip for 2020', 'google-analytics-for-wordpress' ),
1220
 
1221
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:276
1222
+ __( 'See the top Traffic Sources and Top Pages for the Month of May in the Overview Report to replicate your success.', 'google-analytics-for-wordpress' ),
1223
 
1224
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:277
1225
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:59
1226
+ __( 'Demographics', 'google-analytics-for-wordpress' ),
1227
 
1228
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:278
1229
+ __( '#1', 'google-analytics-for-wordpress' ),
1230
 
1231
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:279
1232
+ __( 'You Top 5 Countries', 'google-analytics-for-wordpress' ),
1233
 
1234
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:280
1235
+ __( 'Let’s get to know your visitors a little better, shall we?', 'google-analytics-for-wordpress' ),
1236
+
1237
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:281
1238
+ __( 'Gender', 'google-analytics-for-wordpress' ),
1239
+
1240
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:282
1241
+ __( 'Female', 'google-analytics-for-wordpress' ),
1242
+
1243
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:283
1244
+ __( 'Women', 'google-analytics-for-wordpress' ),
1245
+
1246
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:284
1247
+ __( 'Male', 'google-analytics-for-wordpress' ),
1248
+
1249
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:285
1250
+ __( 'Average Age', 'google-analytics-for-wordpress' ),
1251
+
1252
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:286
1253
+ __( 'Behavior', 'google-analytics-for-wordpress' ),
1254
+
1255
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:287
1256
+ __( 'Your Top 5 Pages', 'google-analytics-for-wordpress' ),
1257
+
1258
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:289
1259
+ __( 'Time Spent on Site', 'google-analytics-for-wordpress' ),
1260
+
1261
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:290
1262
+ __( 'minutes', 'google-analytics-for-wordpress' ),
1263
+
1264
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:291
1265
+ __( 'Device Type', 'google-analytics-for-wordpress' ),
1266
+
1267
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:292
1268
+ __( 'A Tip For 2020', 'google-analytics-for-wordpress' ),
1269
+
1270
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:293
1271
+ __( 'Take advantage of what you’ve already built. See how to get more traffic from existing content in our 32 Marketing Hacks to Grow Your Traffic.', 'google-analytics-for-wordpress' ),
1272
+
1273
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:294
1274
+ __( 'Read - 32 Marketing Hacks to Grow Your Traffic', 'google-analytics-for-wordpress' ),
1275
+
1276
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:295
1277
+ __( 'So, where did all of these visitors come from?', 'google-analytics-for-wordpress' ),
1278
+
1279
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:296
1280
+ __( 'Clicks', 'google-analytics-for-wordpress' ),
1281
+
1282
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:297
1283
+ __( 'Your Top 5 Keywords', 'google-analytics-for-wordpress' ),
1284
+
1285
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:298
1286
+ __( 'What keywords visitors searched for to find your site', 'google-analytics-for-wordpress' ),
1287
+
1288
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:299
1289
+ __( 'Your Top 5 Referrals', 'google-analytics-for-wordpress' ),
1290
+
1291
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:301
1292
+ __( 'The websites that link back to your website', 'google-analytics-for-wordpress' ),
1293
+
1294
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:302
1295
+ __( 'Opportunity', 'google-analytics-for-wordpress' ),
1296
+
1297
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:303
1298
+ __( 'Use referral sources to create new partnerships or expand existing ones. See our guide on how to spy on your competitors and ethically steal their traffic.', 'google-analytics-for-wordpress' ),
1299
+
1300
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:304
1301
+ __( 'Read - How to Ethically Steal Your Competitor’s Traffic', 'google-analytics-for-wordpress' ),
1302
+
1303
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:305
1304
+ __( 'Thank you for using MonsterInsights!', 'google-analytics-for-wordpress' ),
1305
+
1306
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:306
1307
+ __( '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.', 'google-analytics-for-wordpress' ),
1308
+
1309
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:307
1310
+ __( 'Here\'s to an amazing 2020!', 'google-analytics-for-wordpress' ),
1311
+
1312
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:308
1313
+ __( 'Enjoying MonsterInsights', 'google-analytics-for-wordpress' ),
1314
+
1315
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:309
1316
+ __( 'Leave a five star review!', 'google-analytics-for-wordpress' ),
1317
+
1318
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:310
1319
+ __( 'Syed Balkhi', 'google-analytics-for-wordpress' ),
1320
 
1321
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:311
1322
+ __( 'Chris Christoff', 'google-analytics-for-wordpress' ),
1323
 
1324
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:312
1325
+ __( 'Write Review', 'google-analytics-for-wordpress' ),
 
1326
 
1327
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:313
1328
+ __( 'Did you know over 10 million websites use our plugins?', 'google-analytics-for-wordpress' ),
1329
 
1330
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:314
1331
+ __( 'Try our other popular WordPress plugins to grow your website in 2020.', 'google-analytics-for-wordpress' ),
1332
 
1333
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:315
1334
+ __( 'Join our Communities!', 'google-analytics-for-wordpress' ),
1335
 
1336
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:316
1337
+ __( 'Become a WordPress expert in 2020. Join our amazing communities and take your website to the next level.', 'google-analytics-for-wordpress' ),
1338
 
1339
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:317
1340
+ __( 'Facebook Group', 'google-analytics-for-wordpress' ),
1341
 
1342
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:318
1343
+ __( 'Join our team of WordPress experts and other motivated website owners in the WPBeginner Engage Facebook Group.', 'google-analytics-for-wordpress' ),
1344
 
1345
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:319
1346
+ __( 'Join Now...It’s Free!', 'google-analytics-for-wordpress' ),
 
1347
 
1348
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:320
1349
+ __( 'WordPress Tutorials by WPBeginner', 'google-analytics-for-wordpress' ),
1350
 
1351
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:321
1352
+ __( 'WPBeginner is the largest free WordPress resource site for beginners and non-techy users.', 'google-analytics-for-wordpress' ),
1353
 
1354
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:322
1355
+ __( 'Visit WPBeginner', 'google-analytics-for-wordpress' ),
1356
 
1357
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:323
1358
+ __( 'Follow Us!', 'google-analytics-for-wordpress' ),
1359
 
1360
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:324
1361
+ __( 'Follow MonsterInsights on social media to stay up to date with latest updates, trends, and tutorials on how to make the most out of analytics.', 'google-analytics-for-wordpress' ),
1362
 
1363
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:325
1364
+ __( 'Copyright MonsterInsights, 2020', 'google-analytics-for-wordpress' ),
1365
 
1366
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:326
1367
+ __( 'Upgrade to MonsterInsights Pro to Unlock Additional Actionable Insights', 'google-analytics-for-wordpress' ),
1368
 
1369
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:329
1370
+ __( 'January', 'google-analytics-for-wordpress' ),
1371
 
1372
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:330
1373
+ __( 'February', 'google-analytics-for-wordpress' ),
1374
 
1375
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:331
1376
+ __( 'March', 'google-analytics-for-wordpress' ),
 
1377
 
1378
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:332
1379
+ __( 'April', 'google-analytics-for-wordpress' ),
1380
 
1381
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:333
1382
+ __( 'May', 'google-analytics-for-wordpress' ),
1383
 
1384
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:334
1385
+ __( 'June', 'google-analytics-for-wordpress' ),
1386
 
1387
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:335
1388
+ __( 'July', 'google-analytics-for-wordpress' ),
1389
 
1390
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:336
1391
+ __( 'August', 'google-analytics-for-wordpress' ),
1392
 
1393
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:337
1394
+ __( 'September', 'google-analytics-for-wordpress' ),
1395
 
1396
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:338
1397
+ __( 'October', 'google-analytics-for-wordpress' ),
1398
 
1399
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:339
1400
+ __( 'November', 'google-analytics-for-wordpress' ),
 
1401
 
1402
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:340
1403
+ __( 'December', 'google-analytics-for-wordpress' ),
1404
 
1405
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:368
1406
+ /* Translators: Number of visitors. */
1407
+ __( 'Your best month was <strong>%1$s</strong> with <strong>%2$s visitors!</strong>', 'google-analytics-for-wordpress' ),
1408
 
1409
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:387
1410
+ /* Translators: Number of visitors. */
1411
+ __( 'Your <strong>%1$s</strong> visitors came from <strong>%2$s</strong> different countries.', 'google-analytics-for-wordpress' ),
1412
 
1413
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:394
1414
+ /* Translators: Number of visitors. */
1415
+ __( '%s Visitors', 'google-analytics-for-wordpress' ),
1416
 
1417
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:409
1418
+ /* Translators: Percent and Number of visitors. */
1419
+ __( '%1$s&#37 of your visitors were %2$s', 'google-analytics-for-wordpress' ),
1420
 
1421
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:416
1422
+ /* Translators: Number of visitors and their age. */
1423
+ __( '%1$s&#37 of your visitors were between the ages of %2$s', 'google-analytics-for-wordpress' ),
1424
 
1425
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:429
1426
+ /* Translators: Number of visitors and number of pages. */
1427
+ __( '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>', 'google-analytics-for-wordpress' ),
1428
 
1429
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:454
1430
+ /* Translators: Number of minutes spent on site. */
1431
+ __( 'Each visitor spent an average of %s minutes on your website in 2019.', 'google-analytics-for-wordpress' ),
1432
 
1433
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:476
1434
+ /* Translators: Name of device type. */
1435
+ __( 'Most of your visitors viewed your website from their <strong>%s</strong> device.', 'google-analytics-for-wordpress' ),
1436
 
1437
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:480
1438
+ /* Translators: Number of visitors and device percentage. */
1439
+ __( '%1$s&#37 of your visitors were on a %2$s device.', 'google-analytics-for-wordpress' ),
1440
 
1441
+ // Reference: src/modules/settings/components/input/SettingsInputText.vue:46
1442
+ __( 'Reset to default', 'google-analytics-for-wordpress' ),
1443
 
1444
+ // Reference: src/modules/settings/components/input/SettingsInputText.vue:47
1445
+ __( 'The value entered does not match the required format', 'google-analytics-for-wordpress' ),
1446
 
1447
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:48
1448
+ __( 'Connect MonsterInsights to Your Website', 'google-analytics-for-wordpress' ),
1449
 
1450
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:49
1451
+ __( 'MonsterInsights connects Google Analytics to WordPress and shows you stats that matter.', 'google-analytics-for-wordpress' ),
1452
 
1453
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:52
1454
+ __( 'Whoops, something went wrong and we weren\'t able to connect to MonsterInsights. Please enter your Google UA code manually.', 'google-analytics-for-wordpress' ),
1455
 
1456
+ // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:74
1457
+ __( 'Manually enter your UA code', 'google-analytics-for-wordpress' ),
1458
 
1459
+ // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:75
1460
+ __( '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.', 'google-analytics-for-wordpress' ),
1461
 
1462
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:34
1463
+ __( 'Save and Continue', 'google-analytics-for-wordpress' ),
1464
 
1465
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:81
1466
+ __( 'UA code can\'t be empty', 'google-analytics-for-wordpress' ),
1467
 
1468
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:93
1469
+ __( 'Saving UA code...', 'google-analytics-for-wordpress' ),
1470
 
1471
+ // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:31
1472
+ __( 'Awesome, You\'re All Set!', 'google-analytics-for-wordpress' ),
1473
 
1474
+ // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:32
1475
+ __( 'MonsterInsights is all set up and ready to use. We\'ve verified that the tracking code is deployed properly and collecting data.', 'google-analytics-for-wordpress' ),
1476
 
1477
+ // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:34
1478
+ /* Translators: Make text bold. */
1479
+ __( '%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.', 'google-analytics-for-wordpress' ),
1480
 
1481
+ // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:36
1482
+ /* Translators: Link to our blog. */
1483
+ __( '%1$sSubscribe to the MonsterInsights blog%2$s for tips on how to get more traffic and grow your business.', 'google-analytics-for-wordpress' ),
1484
 
1485
+ // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:37
1486
+ __( 'Finish Setup & Exit Wizard', 'google-analytics-for-wordpress' ),
1487
 
1488
+ // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:50
1489
+ __( 'Checking your website...', 'google-analytics-for-wordpress' ),
1490
 
1491
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:32
1492
+ __( 'Welcome to MonsterInsights!', 'google-analytics-for-wordpress' ),
1493
 
1494
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:33
1495
+ __( 'Let\'s get you set up.', 'google-analytics-for-wordpress' ),
 
1496
 
1497
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:35
1498
+ __( 'Which category best describes your website?', 'google-analytics-for-wordpress' ),
1499
 
1500
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:36
1501
+ __( 'We will recommend the optimal settings for MonsterInsights based on your choice.', 'google-analytics-for-wordpress' ),
1502
 
1503
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:40
1504
+ __( 'Business Website', 'google-analytics-for-wordpress' ),
1505
 
1506
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:45
1507
+ /* Translators: Make text bold. */
1508
+ __( 'Publisher %1$s(Blog)%2$s', 'google-analytics-for-wordpress' ),
1509
 
1510
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:49
1511
+ __( 'Ecommerce', 'google-analytics-for-wordpress' ),
1512
+
1513
+ // Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:171
1514
+ /* Translators: The name of the field that is throwing a validation error. */
1515
+ __( '%s can\'t be empty.', 'google-analytics-for-wordpress' ),
1516
 
1517
+ // Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:192
1518
+ __( 'Duplicate values are not allowed.', 'google-analytics-for-wordpress' ),
1519
 
1520
+ // Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:54
1521
+ __( 'You can add maximum 5 items.', 'google-analytics-for-wordpress' ),
 
1522
 
1523
+ // Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:58
1524
+ __( 'At least 0 item required.', 'google-analytics-for-wordpress' ),
1525
 
1526
+ // Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:63
1527
+ __( 'Add Another Link Path', 'google-analytics-for-wordpress' ),
 
1528
 
1529
+ // Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:64
1530
+ __( 'Remove row', 'google-analytics-for-wordpress' ),
1531
 
1532
+ // Reference: src/modules/reports/components/ReportInfobox.vue:39
1533
+ /* Translators: Number of days. */
1534
+ __( 'vs. Previous Day', 'google-analytics-for-wordpress' ),
1535
 
1536
+ // Reference: src/modules/reports/components/ReportInfobox.vue:56
1537
+ __( 'No change', 'google-analytics-for-wordpress' ),
1538
 
1539
+ // Reference: src/modules/wizard-onboarding/api/index.js:18
1540
+ /* Translators: Error status and error text. */
1541
+ __( 'Can\'t load errors. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
1542
 
1543
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:116
1544
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:79
1545
  __( 'Authenticating', 'google-analytics-for-wordpress' ),
1546
 
1547
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:170
1557
  __( 'You\'ve disconnected your site from MonsterInsights. Your site is no longer being tracked by Google Analytics and you won\'t see reports anymore.', 'google-analytics-for-wordpress' ),
1558
 
1559
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:67
1560
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:46
1561
  __( 'Connect MonsterInsights', 'google-analytics-for-wordpress' ),
1562
 
1563
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:68
1570
  __( 'Active Profile', 'google-analytics-for-wordpress' ),
1571
 
1572
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:72
1573
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:50
1574
  __( 'Your website profile has been set at the network level of your WordPress Multisite.', 'google-analytics-for-wordpress' ),
1575
 
1576
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:73
1577
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:51
1578
  __( 'If you would like to use a different profile for this subsite, you can authenticate below.', 'google-analytics-for-wordpress' ),
1579
 
1580
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:76
1586
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:85
1587
  __( 'Disconnect MonsterInsights', 'google-analytics-for-wordpress' ),
1588
 
1589
+ // Reference: src/modules/settings/monsterinsights-site.vue:80
1590
+ __( 'Congratulations! ', 'google-analytics-for-wordpress' ),
1591
 
1592
+ // Reference: src/modules/settings/monsterinsights-site.vue:81
1593
+ __( 'You Successfully Unlocked the most powerful Analytics plugin', 'google-analytics-for-wordpress' ),
1594
 
1595
+ // Reference: src/modules/addons/monsterinsights-addons-Lite.vue:40
1596
+ __( 'There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data.', 'google-analytics-for-wordpress' ),
 
1597
 
1598
+ // Reference: src/modules/addons/monsterinsights-addons-Lite.vue:41
1599
+ __( 'No addons found.', 'google-analytics-for-wordpress' ),
 
1600
 
1601
+ // Reference: src/modules/addons/monsterinsights-addons-Lite.vue:42
1602
+ __( 'Refresh Addons', 'google-analytics-for-wordpress' ),
1603
 
1604
+ // Reference: src/modules/addons/monsterinsights-addons-Lite.vue:65
1605
+ __( 'Refreshing Addons', 'google-analytics-for-wordpress' ),
 
1606
 
1607
+ // Reference: src/modules/addons/monsterinsights-addons-Lite.vue:76
1608
+ /* Translators: Make text green. */
1609
+ __( 'Upgrade to Pro to unlock addons and other great features. As a valued MonsterInsights Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!', 'google-analytics-for-wordpress' ),
1610
 
1611
+ // Reference: src/modules/addons/api/index.js:103
1612
+ __( 'You appear to be offline. WPForms not installed.', 'google-analytics-for-wordpress' ),
1613
 
1614
+ // Reference: src/modules/addons/api/index.js:132
1615
+ /* Translators: Error status and error text. */
1616
+ __( 'Can\'t activate addon. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
1617
 
1618
+ // Reference: src/modules/addons/api/index.js:136
1619
+ __( 'You appear to be offline. Addon not activated.', 'google-analytics-for-wordpress' ),
1620
 
1621
+ // Reference: src/modules/addons/api/index.js:165
1622
+ /* Translators: Error status and error text. */
1623
+ __( 'Can\'t deactivate addon. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
1624
 
1625
+ // Reference: src/modules/addons/api/index.js:169
1626
+ __( 'You appear to be offline. Addon not deactivated.', 'google-analytics-for-wordpress' ),
1627
+
1628
+ // Reference: src/modules/addons/api/index.js:199
1629
+ /* Translators: Error status and error text. */
1630
+ __( 'Can\'t install plugin. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
1631
+
1632
+ // Reference: src/modules/addons/api/index.js:203
1633
+ __( 'You appear to be offline. Plugin not installed.', 'google-analytics-for-wordpress' ),
1634
+
1635
+ // Reference: src/modules/addons/api/index.js:64
1636
+ /* Translators: Error status and error text. */
1637
+ __( 'Can\'t install addon. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
1638
+
1639
+ // Reference: src/modules/addons/api/index.js:68
1640
+ __( 'You appear to be offline. Addon not installed.', 'google-analytics-for-wordpress' ),
1641
+
1642
+ // Reference: src/modules/addons/api/index.js:99
1643
+ /* Translators: Error status and error text. */
1644
+ __( 'Can\'t install WPForms. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
1645
+
1646
+ // Reference: src/modules/wizard-onboarding/components/OnboardingAddon-Lite.vue:27
1647
+ __( 'Upgrade to Pro', 'google-analytics-for-wordpress' ),
1648
+
1649
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:52
1650
+ __( 'Right Now', 'google-analytics-for-wordpress' ),
1651
+
1652
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:53
1653
+ __( 'Active users on site', 'google-analytics-for-wordpress' ),
1654
+
1655
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:54
1656
+ __( 'The real-time graph of visitors over time is not currently available for this site. Please try again later.', 'google-analytics-for-wordpress' ),
1657
+
1658
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:55
1659
+ __( 'Important: this only includes users who are tracked in real-time. Not all users are tracked in real-time including (but not limited to) logged-in site administrators, certain mobile users, and users who match a Google Analytics filter.', 'google-analytics-for-wordpress' ),
1660
+
1661
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:56
1662
+ __( 'The real-time report automatically updates approximately every 60 seconds.', 'google-analytics-for-wordpress' ),
1663
+
1664
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:58
1665
+ /* Translators: Number of seconds that have passed since the report was refreshed. */
1666
+ __( 'The real-time report was last updated %s seconds ago.', 'google-analytics-for-wordpress' ),
1667
+
1668
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:59
1669
+ __( 'The latest data will be automatically shown on this page when it becomes available.', 'google-analytics-for-wordpress' ),
1670
+
1671
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:60
1672
+ __( 'There is no need to refresh the browser (doing so won\'t have any effect).', 'google-analytics-for-wordpress' ),
1673
+
1674
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:61
1675
+ __( 'Pageviews Per Minute', 'google-analytics-for-wordpress' ),
1676
+
1677
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:64
1678
+ __( 'Top Pages', 'google-analytics-for-wordpress' ),
1679
+
1680
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:65
1681
+ __( 'No pageviews currently.', 'google-analytics-for-wordpress' ),
1682
+
1683
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:67
1684
+ __( 'Page', 'google-analytics-for-wordpress' ),
1685
+
1686
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:68
1687
+ __( 'Pageview Count', 'google-analytics-for-wordpress' ),
1688
+
1689
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:69
1690
+ __( 'Percent of Total', 'google-analytics-for-wordpress' ),
1691
+
1692
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:72
1693
+ __( 'This is the number of active users currently on your site.', 'google-analytics-for-wordpress' ),
1694
+
1695
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:73
1696
+ __( 'This graph shows the number of pageviews for each of the last 30 minutes.', 'google-analytics-for-wordpress' ),
1697
+
1698
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:74
1699
+ __( 'This list shows the top pages users are currently viewing on your site.', 'google-analytics-for-wordpress' ),
1700
+
1701
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:75
1702
+ __( 'View All Real-Time Pageviews', 'google-analytics-for-wordpress' ),
1703
+
1704
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:76
1705
+ __( 'View All Real-Time Traffic Sources', 'google-analytics-for-wordpress' ),
1706
+
1707
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:77
1708
+ __( 'View All Real-Time Traffic by Country', 'google-analytics-for-wordpress' ),
1709
+
1710
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:78
1711
+ __( 'View All Real-Time Traffic by City', 'google-analytics-for-wordpress' ),
1712
+
1713
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingImprove-Lite.vue:17
1714
+ __( 'Help Us Improve', 'google-analytics-for-wordpress' ),
1715
+
1716
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingImprove-Lite.vue:18
1717
+ __( 'Help us better understand our users and their website needs.', 'google-analytics-for-wordpress' ),
1718
+
1719
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingImprove-Lite.vue:20
1720
+ /* Translators: Adds a link to the documentation. */
1721
+ __( 'If enabled MonsterInsights will send some information about your WordPress site like what plugins and themes you use and which MonsterInsights 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', 'google-analytics-for-wordpress' ),
1722
+
1723
+ // Reference: src/modules/reports/components/monsterinsights-ReportsPagination.vue:29
1724
+ __( 'Show', 'google-analytics-for-wordpress' ),
1725
+
1726
+ // Reference: src/modules/reports/components/monsterinsights-ReportsPdfExport-Lite.vue:42
1727
+ __( 'Export PDF Report', 'google-analytics-for-wordpress' ),
1728
+
1729
+ // Reference: src/modules/reports/components/monsterinsights-ReportsPdfExport-Lite.vue:50
1730
+ __( 'You can export PDF reports only in the PRO version.', 'google-analytics-for-wordpress' ),
1731
+
1732
+ // Reference: src/modules/reports/components/reports-overview/ReportOverviewUpsellMobile-Lite.vue:21
1733
+ /* Translators: Make text green. */
1734
+ __( 'Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s', 'google-analytics-for-wordpress' ),
1735
+
1736
+ // Reference: src/modules/reports/components/reports-overview/monsterinsights-ReportOverviewUpsell-Lite.vue:26
1737
+ __( 'Upgrade to MonsterInsights Pro to Unlock More Actionable Insights', 'google-analytics-for-wordpress' ),
1738
+
1739
+ // Reference: src/modules/reports/components/reports-overview/monsterinsights-ReportOverviewUpsell-Lite.vue:27
1740
+ __( 'It\'s easy to double your traffic and sales when you know exactly how people find and use your website. MonsterInsights Pro shows you the stats that matter!', 'google-analytics-for-wordpress' ),
1741
+
1742
+ // Reference: src/modules/reports/components/reports-overview/monsterinsights-ReportOverviewUpsell-Lite.vue:28
1743
+ __( 'Upgrade to MonsterInsights Pro and Save 50% OFF!', 'google-analytics-for-wordpress' ),
1744
+
1745
+ // Reference: src/modules/reports/components/reports-overview/monsterinsights-ReportOverviewUpsell-Lite.vue:30
1746
+ /* Translators: Makes text bold. */
1747
+ __( 'Use coupon code %1$sLITEUPGRADE%2$s', 'google-analytics-for-wordpress' ),
1748
+
1749
+ // Reference: src/modules/reports/components/reports-overview/monsterinsights-ReportOverviewDatePicker-Lite.vue:50
1750
+ /* Translators: Placeholder adds a line break. */
1751
+ __( 'You can customize your %sdate range only in the PRO version.', 'google-analytics-for-wordpress' ),
1752
+
1753
+ // Reference: src/modules/tools/components/ToolsNavigation.vue:14
1754
+ __( 'Import Export', 'google-analytics-for-wordpress' ),
1755
+
1756
+ // Reference: src/modules/settings/routes/site.js:108
1757
+ __( 'PrettyLinks Integration', 'google-analytics-for-wordpress' ),
1758
+
1759
+ // Reference: src/modules/popular-posts/components/PopularPostsNavigation.vue:22
1760
+ __( 'Inline Popular Posts', 'google-analytics-for-wordpress' ),
1761
+
1762
+ // Reference: src/modules/popular-posts/components/PopularPostsNavigation.vue:23
1763
+ __( 'Popular Posts Widget', 'google-analytics-for-wordpress' ),
1764
+
1765
+ // Reference: src/modules/popular-posts/components/PopularPostsNavigation.vue:24
1766
+ __( 'Popular Products', 'google-analytics-for-wordpress' ),
1767
+
1768
+ // Reference: src/modules/settings/routes/site.js:180
1769
+ __( 'Settings', 'google-analytics-for-wordpress' ),
1770
+
1771
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabsNavigation.vue:63
1772
+ __( 'General', 'google-analytics-for-wordpress' ),
1773
+
1774
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabsNavigation.vue:64
1775
+ __( 'Engagement', 'google-analytics-for-wordpress' ),
1776
+
1777
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabsNavigation.vue:66
1778
+ __( 'Publisher', 'google-analytics-for-wordpress' ),
1779
+
1780
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabsNavigation.vue:67
1781
+ __( 'Conversions', 'google-analytics-for-wordpress' ),
1782
+
1783
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabsNavigation.vue:68
1784
+ __( 'Advanced', 'google-analytics-for-wordpress' ),
1785
+
1786
+ // Reference: src/modules/tools/components/ToolsNavigation.vue:15
1787
+ __( 'URL Builder', 'google-analytics-for-wordpress' ),
1788
+
1789
+ // Reference: src/modules/settings/components/input/SettingsInputSelect.vue:62
1790
+ __( 'No options available', 'google-analytics-for-wordpress' ),
1791
+
1792
+ // Reference: src/modules/addons/components/AddonButton.vue:31
1793
+ // Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:100
1794
+ __( 'Activating...', 'google-analytics-for-wordpress' ),
1795
+
1796
+ // Reference: src/modules/addons/components/AddonButton.vue:35
1797
+ // Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:103
1798
+ __( 'Deactivating...', 'google-analytics-for-wordpress' ),
1799
 
1800
+ // Reference: src/modules/addons/components/AddonButton.vue:43
1801
+ // Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:109
1802
+ __( 'Deactivate', 'google-analytics-for-wordpress' ),
1803
 
1804
+ // Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:43
1805
+ /* Translators: The status of the addon (installed/active/inactive). */
1806
+ __( 'Status: %s', 'google-analytics-for-wordpress' ),
1807
 
1808
+ // Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:81
1809
+ __( 'Not Installed', 'google-analytics-for-wordpress' ),
 
1810
 
1811
+ // Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:87
1812
+ __( 'Network Active', 'google-analytics-for-wordpress' ),
 
1813
 
1814
+ // Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:87
1815
+ __( 'Active', 'google-analytics-for-wordpress' ),
 
1816
 
1817
+ // Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:89
1818
+ __( 'Inactive', 'google-analytics-for-wordpress' ),
 
1819
 
1820
+ // Reference: src/modules/license/store/actions.js:61
1821
+ /* Translators: Adds a link to the license renewal. */
1822
+ __( 'Your license key for MonsterInsights has expired. %1$sPlease click here to renew your license key.%2$s', 'google-analytics-for-wordpress' ),
1823
 
1824
+ // Reference: src/modules/license/store/actions.js:71
1825
+ __( 'Your license key for MonsterInsights has been disabled. Please use a different key.', 'google-analytics-for-wordpress' ),
1826
 
1827
+ // Reference: src/modules/license/store/actions.js:81
1828
+ __( 'Your license key for MonsterInsights is invalid. The key no longer exists or the user associated with the key has been deleted. Please use a different key.', 'google-analytics-for-wordpress' ),
1829
 
1830
+ // Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:28
1831
+ __( 'Last 30 Days Insights for:', 'google-analytics-for-wordpress' ),
1832
 
1833
+ // Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:29
1834
+ __( 'Your Website', 'google-analytics-for-wordpress' ),
 
1835
 
1836
+ // Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:32
1837
+ __( 'Avg. Duration', 'google-analytics-for-wordpress' ),
1838
 
1839
+ // Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:42
1840
+ __( 'More data is available', 'google-analytics-for-wordpress' ),
1841
 
1842
+ // Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:44
1843
+ __( 'Want to see page-specific stats?', 'google-analytics-for-wordpress' ),
1844
 
1845
+ // Reference: src/modules/widget/components/WidgetFooter.vue:19
1846
+ /* Translators: Placeholder is replaced with WPForms. */
1847
+ __( 'Recommended Plugin: %s', 'google-analytics-for-wordpress' ),
1848
 
1849
+ // Reference: src/components/TheAppFTPForm.vue:100
1850
+ __( 'Proceed', 'google-analytics-for-wordpress' ),
1851
 
1852
+ // Reference: src/components/TheAppFTPForm.vue:92
1853
+ __( 'Connection Information', 'google-analytics-for-wordpress' ),
1854
 
1855
+ // Reference: src/components/TheAppFTPForm.vue:93
1856
+ __( '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.', 'google-analytics-for-wordpress' ),
1857
 
1858
+ // Reference: src/components/TheAppFTPForm.vue:94
1859
+ __( 'Hostname', 'google-analytics-for-wordpress' ),
1860
 
1861
+ // Reference: src/components/TheAppFTPForm.vue:95
1862
+ __( 'FTP Username', 'google-analytics-for-wordpress' ),
1863
 
1864
+ // Reference: src/components/TheAppFTPForm.vue:96
1865
+ __( 'FTP Password', 'google-analytics-for-wordpress' ),
1866
 
1867
+ // Reference: src/components/TheAppFTPForm.vue:97
1868
+ __( 'This password will not be stored on the server.', 'google-analytics-for-wordpress' ),
1869
 
1870
+ // Reference: src/components/TheAppFTPForm.vue:98
1871
+ __( 'Connection Type', 'google-analytics-for-wordpress' ),
1872
 
1873
+ // Reference: src/components/TheAppFTPForm.vue:99
1874
+ __( 'Cancel', 'google-analytics-for-wordpress' ),
1875
 
1876
+ // Reference: src/modules/settings/components/SettingsFirstTImeNotice.vue:40
1877
+ __( 'View Reports', 'google-analytics-for-wordpress' ),
1878
 
1879
+ // Reference: src/modules/settings/components/SettingsFirstTImeNotice.vue:42
1880
+ __( 'Congratulations!', 'google-analytics-for-wordpress' ),
1881
 
1882
+ // Reference: src/modules/settings/components/SettingsFirstTImeNotice.vue:44
1883
+ /* Translators: Add link to YouTube video and Onboarding Wizard. */
1884
+ __( 'MonsterInsights makes it easy to connect your website with Google Analytics and see all important website stats right inside your WordPress dashboard. In order to setup website analytics, please take a look at our %1$sGetting started video%2$s or use our %3$s to get you quickly set up.', 'google-analytics-for-wordpress' ),
1885
 
1886
+ // Reference: src/modules/settings/components/SettingsFirstTImeNotice.vue:44
1887
+ /* Translators: Add link to YouTube video and Onboarding Wizard. */
1888
+ __( 'Onboarding Wizard', 'google-analytics-for-wordpress' ),
1889
 
1890
+ // Reference: src/modules/settings/components/SettingsFirstTImeNotice.vue:45
1891
+ __( 'You are now connected with MonsterInsights. We make it effortless for you to implement Google Analytics tracking and see the stats that matter, right inside the WordPress dashboard.', 'google-analytics-for-wordpress' ),
1892
 
1893
+ // Reference: src/modules/widget/store/index.js:102
1894
+ __( 'Time to Purchase', 'google-analytics-for-wordpress' ),
1895
 
1896
+ // Reference: src/modules/widget/store/index.js:103
1897
+ __( 'This list shows how many days from first visit it took users to purchase products from your site.', 'google-analytics-for-wordpress' ),
 
1898
 
1899
+ // Reference: src/modules/widget/store/index.js:109
1900
+ __( 'Sessions to Purchase', 'google-analytics-for-wordpress' ),
 
1901
 
1902
+ // Reference: src/modules/widget/store/index.js:110
1903
+ __( 'This list shows the number of sessions it took users before they purchased a product from your website.', 'google-analytics-for-wordpress' ),
1904
 
1905
+ // Reference: src/modules/widget/store/index.js:41
1906
+ __( 'Top Landing Pages', 'google-analytics-for-wordpress' ),
1907
 
1908
+ // Reference: src/modules/widget/store/index.js:42
1909
+ __( 'This list shows the top pages users first land on when visiting your website.', 'google-analytics-for-wordpress' ),
1910
 
1911
+ // Reference: src/modules/widget/store/index.js:48
1912
+ __( 'Top Exit Pages', 'google-analytics-for-wordpress' ),
1913
 
1914
+ // Reference: src/modules/widget/store/index.js:49
1915
+ __( 'This list shows the top pages users exit your website from.', 'google-analytics-for-wordpress' ),
1916
 
1917
+ // Reference: src/modules/widget/store/index.js:55
1918
+ __( 'Top Outbound Links', 'google-analytics-for-wordpress' ),
1919
 
1920
+ // Reference: src/modules/widget/store/index.js:56
1921
+ __( 'This list shows the top links clicked on your website that go to another website.', 'google-analytics-for-wordpress' ),
1922
 
1923
+ // Reference: src/modules/widget/store/index.js:62
1924
+ __( 'Top Affiliate Links', 'google-analytics-for-wordpress' ),
1925
 
1926
+ // Reference: src/modules/widget/store/index.js:63
1927
+ __( 'This list shows the top affiliate links your visitors clicked on.', 'google-analytics-for-wordpress' ),
1928
 
1929
+ // Reference: src/modules/widget/store/index.js:69
1930
+ __( 'Top Download Links', 'google-analytics-for-wordpress' ),
1931
 
1932
+ // Reference: src/modules/widget/store/index.js:70
1933
+ __( 'This list shows the download links your visitors clicked the most.', 'google-analytics-for-wordpress' ),
1934
 
1935
+ // Reference: src/modules/widget/store/index.js:82
1936
+ __( 'Top Products', 'google-analytics-for-wordpress' ),
1937
 
1938
+ // Reference: src/modules/widget/store/index.js:83
1939
+ __( 'This list shows the top selling products on your website.', 'google-analytics-for-wordpress' ),
1940
 
1941
+ // Reference: src/modules/widget/store/index.js:89
1942
+ __( 'Top Conversion Sources', 'google-analytics-for-wordpress' ),
1943
 
1944
+ // Reference: src/modules/widget/store/index.js:90
1945
+ __( 'This list shows the top referral websites in terms of product revenue.', 'google-analytics-for-wordpress' ),
1946
 
1947
+ // Reference: src/modules/widget/store/index.js:96
1948
+ __( 'Total Add/Remove', 'google-analytics-for-wordpress' ),
1949
 
1950
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:48
1951
+ __( 'Website profile', 'google-analytics-for-wordpress' ),
1952
 
1953
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:49
1954
+ __( 'Active profile', 'google-analytics-for-wordpress' ),
1955
 
1956
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:52
1957
+ __( 'Skip and Keep Connection', 'google-analytics-for-wordpress' ),
1958
 
1959
+ // Reference: src/modules/widget/components/monsterinsights-WidgetSettings-Lite.vue:19
1960
+ /* Translators: Number of days in interval. */
1961
+ __( 'Last %s days', 'google-analytics-for-wordpress' ),
1962
 
1963
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:64
1964
+ /* Translators: Add links to documentation. */
1965
+ __( 'This allows you to track custom affiliate links. A path of /go/ would match urls that start with that. The label is appended onto the end of the string "outbound-link-", to provide unique labels for these links in Google Analytics. Complete documentation on affiliate links is available %1$shere%2$s.', 'google-analytics-for-wordpress' ),
1966
 
1967
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:65
1968
+ __( 'Our affiliate link tracking works by setting path for internal links to track as outbound links.', 'google-analytics-for-wordpress' ),
1969
 
1970
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:67
1971
+ __( 'Headline Analyzer', 'google-analytics-for-wordpress' ),
1972
 
1973
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:68
1974
+ __( 'The MonsterInsights Headline Analyzer tool in the Gutenberg editor enables you to write irresistible SEO-friendly headlines that drive traffic, social media shares, and rank better in search results.', 'google-analytics-for-wordpress' ),
1975
 
1976
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:69
1977
+ __( 'Disable the Headline Analyzer', 'google-analytics-for-wordpress' ),
 
1978
 
1979
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:60
1980
+ __( 'Enable Demographics and Interests Reports for Remarketing and Advertising', 'google-analytics-for-wordpress' ),
 
1981
 
1982
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:61
1983
+ __( 'Anonymize IP Addresses', 'google-analytics-for-wordpress' ),
1984
 
1985
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:62
1986
+ __( 'Link Attribution', 'google-analytics-for-wordpress' ),
1987
 
1988
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:63
1989
+ __( 'Enable Enhanced Link Attribution', 'google-analytics-for-wordpress' ),
1990
 
1991
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:64
1992
+ __( 'Enable Anchor Tracking', 'google-analytics-for-wordpress' ),
1993
 
1994
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:65
1995
+ __( 'Enable allowAnchor', 'google-analytics-for-wordpress' ),
1996
 
1997
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:66
1998
+ __( 'Enable allowLinker', 'google-analytics-for-wordpress' ),
1999
 
2000
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:67
2001
+ __( 'Enable Tag Links in RSS', 'google-analytics-for-wordpress' ),
2002
 
2003
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:68
2004
+ __( 'File Downloads', 'google-analytics-for-wordpress' ),
2005
 
2006
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:69
2007
+ __( 'Extensions of Files to Track as Downloads', 'google-analytics-for-wordpress' ),
2008
 
2009
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:70
2010
+ __( 'MonsterInsights will send an event to Google Analytics if a link to a file has one of the above extensions.', 'google-analytics-for-wordpress' ),
2011
 
2012
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:72
2013
+ /* Translators: Add links to the documentation. */
2014
+ __( 'Enable this setting to add the Demographics and Remarketing features to your Google Analytics tracking code. Make sure to enable Demographics and Remarketing in your Google Analytics account. We have a guide for how to do that in our %1$sknowledge base%2$s. For more information about Remarketing, we refer you to %3$sGoogle\'s documentation%4$s. Note that usage of this function is affected by privacy and cookie laws around the world. Be sure to follow the laws that affect your target audience.', 'google-analytics-for-wordpress' ),
2015
 
2016
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:74
2017
+ /* Translators: Adds a link to the documentation. */
2018
+ __( 'This adds %1$sanonymizeIp%2$s, telling Google Analytics to anonymize the information sent by the tracker objects by removing the last octet of the IP address prior to its storage.', 'google-analytics-for-wordpress' ),
2019
 
2020
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:76
2021
+ /* Translators: Adds a link to the documentation. */
2022
+ __( 'Adds the Enhanced Link Attribution (retain link) code to improve the accuracy of your In-Page Analytics report by automatically differentiating between multiple links to the same URL on a single page by using link element IDs.', 'google-analytics-for-wordpress' ),
2023
 
2024
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:77
2025
+ __( 'Many WordPress "1-page" style themes rely on anchor tags for navigation to show virtual pages. The problem is that to Google Analytics, these are all just a single page, and it makes it hard to get meaningful statistics about pages viewed. This feature allows proper tracking in those themes.', 'google-analytics-for-wordpress' ),
 
2026
 
2027
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:79
2028
+ /* Translators: Adds a link to the documentation. */
2029
+ __( 'This adds %1$sallowAnchor%2$s to the create command of the pageview hit tracking code, and makes RSS link tagging use a # as well.', 'google-analytics-for-wordpress' ),
2030
 
2031
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:81
2032
+ /* Translators: Adds a link to the documentation. */
2033
+ __( 'Enabling %1$scross-domain tracking (additional setup required)%2$s allows you to track users across multiple properties you own (such as example-1.com and example-2.com as a single session. It also allows you fix an issue so that when a user has to go to an off-site hosted payment gateway to finish a purchase it doesn\'t count it as referral traffic from that gateway but maintains the visit as part of the same session.) It is required that the other site includes a Google Analytics tracker with the same UA Code.', 'google-analytics-for-wordpress' ),
2034
 
2035
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:83
2036
+ /* Translators: Adds a link to the documentation. */
2037
+ __( 'Do not use this feature if you use FeedBurner, as FeedBurner can do this automatically and better than this plugin can. Check this %1$shelp page%2$s for info on how to enable this feature in FeedBurner.', 'google-analytics-for-wordpress' ),
2038
 
2039
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:84
2040
+ __( 'Add domain', 'google-analytics-for-wordpress' ),
2041
 
2042
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:89
2043
+ /* Translators: Example domain. */
2044
+ __( 'Domain (example: %s)', 'google-analytics-for-wordpress' ),
2045
 
2046
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:92
2047
+ /* Translators: Current site domain to be avoided. */
2048
+ __( 'Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s ).', 'google-analytics-for-wordpress' ),
2049
 
2050
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:96
2051
+ __( 'Cross Domain Tracking', 'google-analytics-for-wordpress' ),
2052
 
2053
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:98
2054
+ /* Translators: Adds a link to the documentation. */
2055
+ __( 'Cross domain tracking makes it possible for Analytics to see sessions on two related sites as a single session. More info on specific setup steps can be found in our %1$sknowledge base%2$s.', 'google-analytics-for-wordpress' ),
2056
 
2057
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:78
2058
+ /* Translators: placeholders make text small. */
2059
+ __( 'Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s', 'google-analytics-for-wordpress' ),
2060
 
2061
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:83
2062
+ /* Translators: placeholders make text small. */
2063
+ __( 'Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s', 'google-analytics-for-wordpress' ),
2064
 
2065
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:88
2066
+ /* Translators: placeholders make text small. */
2067
+ __( 'None %1$s- Manually update everything.%2$s', 'google-analytics-for-wordpress' ),
2068
 
2069
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:162
2070
+ /* Translators: Adds a link to the general settings tab. */
2071
+ __( 'It looks like you added a Google Analytics tracking code in the custom code area, this can potentially prevent proper tracking. If you want to use a manual UA please use the setting in the %1$sGeneral%2$s tab.', 'google-analytics-for-wordpress' ),
2072
 
2073
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:64
2074
+ __( 'Email Summaries', 'google-analytics-for-wordpress' ),
2075
 
2076
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:65
2077
+ __( 'Export PDF Reports', 'google-analytics-for-wordpress' ),
2078
 
2079
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:66
2080
+ __( 'Permissions', 'google-analytics-for-wordpress' ),
 
2081
 
2082
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:67
2083
+ __( 'Allow These User Roles to See Reports', 'google-analytics-for-wordpress' ),
2084
 
2085
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:68
2086
+ __( 'Users that have at least one of these roles will be able to view the reports.', 'google-analytics-for-wordpress' ),
 
2087
 
2088
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:70
2089
+ __( 'Allow These User Roles to Save Settings', 'google-analytics-for-wordpress' ),
2090
 
2091
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:71
2092
+ __( 'Users that have at least one of these roles will be able to view and save the settings panel.', 'google-analytics-for-wordpress' ),
2093
 
2094
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:72
2095
+ __( 'Users that have at least one of these roles will be able to view and save the settings panel, along with any user with the manage_options capability.', 'google-analytics-for-wordpress' ),
2096
 
2097
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:73
2098
+ __( 'Exclude These User Roles From Tracking', 'google-analytics-for-wordpress' ),
2099
 
2100
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:75
2101
+ __( 'Users that have at least one of these roles will not be tracked into Google Analytics.', 'google-analytics-for-wordpress' ),
2102
 
2103
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:76
2104
+ __( 'Performance', 'google-analytics-for-wordpress' ),
2105
 
2106
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:77
2107
+ __( 'Custom code', 'google-analytics-for-wordpress' ),
2108
 
2109
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:79
2110
+ /* Translators: Adds a link to the Google reference. */
2111
+ __( 'Not for the average user: this allows you to add a line of code, to be added before the %1$spageview is sent%2$s.', 'google-analytics-for-wordpress' ),
2112
 
2113
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:80
2114
+ __( 'Reports', 'google-analytics-for-wordpress' ),
2115
 
2116
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:95
2117
+ __( 'Automatic Updates', 'google-analytics-for-wordpress' ),
2118
 
2119
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:82
2120
+ __( 'You must have the "unfiltered_html" capability to view/edit this setting.', 'google-analytics-for-wordpress' ),
2121
 
2122
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:83
2123
+ __( 'Hide Admin Bar Reports', 'google-analytics-for-wordpress' ),
2124
 
2125
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:88
2126
+ /* Translators: placeholders make text small. */
2127
+ __( 'Enabled %1$s- Show reports and dashboard widget.%2$s', 'google-analytics-for-wordpress' ),
2128
 
2129
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:93
2130
+ /* Translators: placeholders make text small. */
2131
+ __( 'Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s', 'google-analytics-for-wordpress' ),
2132
 
2133
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:98
2134
+ /* Translators: placeholders make text small. */
2135
+ __( 'Disabled %1$s- Hide reports and dashboard widget.%2$s', 'google-analytics-for-wordpress' ),
2136
 
2137
+ // Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:45
2138
+ __( 'Caching', 'google-analytics-for-wordpress' ),
2139
 
2140
+ // Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:46
2141
+ __( 'Enable Data Caching', 'google-analytics-for-wordpress' ),
2142
 
2143
+ // Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:47
2144
+ __( 'Refresh Cache Every', 'google-analytics-for-wordpress' ),
2145
 
2146
+ // Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:48
2147
+ __( 'Choose how often to refresh the cache.', 'google-analytics-for-wordpress' ),
2148
 
2149
+ // Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:49
2150
+ __( 'Enable Ajaxify', 'google-analytics-for-wordpress' ),
2151
 
2152
+ // Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:50
2153
+ __( 'Ajaxify Widget', 'google-analytics-for-wordpress' ),
2154
 
2155
+ // Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:51
2156
+ __( 'Use to bypass page caching.', 'google-analytics-for-wordpress' ),
2157
 
2158
+ // Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:52
2159
+ __( 'Empty Cache', 'google-analytics-for-wordpress' ),
2160
 
2161
+ // Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:54
2162
+ __( 'Click to manually wipe the cache right now.', 'google-analytics-for-wordpress' ),
2163
 
2164
+ // Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:88
2165
+ __( 'Popular posts cache emptied', 'google-analytics-for-wordpress' ),
2166
 
2167
+ // Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:92
2168
+ __( 'Error emptying the popular posts cache. Please try again.', 'google-analytics-for-wordpress' ),
2169
 
2170
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:105
2171
+ __( 'Choose Theme', 'google-analytics-for-wordpress' ),
2172
 
2173
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:107
2174
+ __( 'Widget Styling', 'google-analytics-for-wordpress' ),
2175
 
2176
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:108
2177
+ __( 'Choose how you want to determine the colors, font sizes and spacing of the widget.', 'google-analytics-for-wordpress' ),
2178
 
2179
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:109
2180
+ __( 'Sort By', 'google-analytics-for-wordpress' ),
2181
 
2182
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:110
2183
+ __( 'Choose how you\'d like the widget to determine your popular posts.', 'google-analytics-for-wordpress' ),
2184
 
2185
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:106
2186
+ __( 'Display Title', 'google-analytics-for-wordpress' ),
2187
 
2188
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:107
2189
+ __( 'Widget Title', 'google-analytics-for-wordpress' ),
2190
 
2191
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:108
2192
+ __( 'Title your widget and set it’s display preferences.', 'google-analytics-for-wordpress' ),
2193
 
2194
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:115
2195
+ __( 'Include in Post Types', 'google-analytics-for-wordpress' ),
2196
 
2197
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:116
2198
+ __( 'Exclude from specific posts', 'google-analytics-for-wordpress' ),
2199
 
2200
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:118
2201
+ /* Translators: Placeholders make the text bold. */
2202
+ __( 'Choose which Post Types the widget %1$sWILL%2$s be placed.', 'google-analytics-for-wordpress' ),
2203
 
2204
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:120
2205
+ /* Translators: Placeholders make the text bold. */
2206
+ __( 'Choose from which Posts the widget %1$sWILL NOT%2$s be placed.', 'google-analytics-for-wordpress' ),
2207
 
2208
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:122
2209
+ __( 'Loading Themes', 'google-analytics-for-wordpress' ),
2210
+
2211
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:129
2212
  /* Translators: placeholders make text small. */
2213
+ __( 'Default Styles %1$s- As seen above.%2$s', 'google-analytics-for-wordpress' ),
2214
 
2215
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:134
2216
+ /* Translators: placeholders make text small. */
2217
+ __( 'No Styles %1$s- Use your own CSS.%2$s', 'google-analytics-for-wordpress' ),
2218
 
2219
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:141
2220
+ /* Translators: placeholders make text small. */
2221
+ __( 'Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s', 'google-analytics-for-wordpress' ),
2222
 
2223
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:146
2224
+ /* Translators: placeholders make text small. */
2225
+ __( 'SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s', 'google-analytics-for-wordpress' ),
2226
 
2227
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:151
2228
+ /* Translators: placeholders make text small. */
2229
+ __( 'Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s', 'google-analytics-for-wordpress' ),
2230
 
2231
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:111
2232
+ __( 'Placement', 'google-analytics-for-wordpress' ),
2233
 
2234
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:112
2235
+ __( 'Choose how you\'d like to place the widget.', 'google-analytics-for-wordpress' ),
 
2236
 
2237
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:113
2238
+ __( 'Insert After', 'google-analytics-for-wordpress' ),
2239
 
2240
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:114
2241
+ __( 'Choose where in the post body the widget will be placed.', 'google-analytics-for-wordpress' ),
2242
 
2243
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:121
2244
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:109
2245
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:136
2246
+ __( 'Customize Design', 'google-analytics-for-wordpress' ),
2247
 
2248
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:123
2249
+ __( 'words', 'google-analytics-for-wordpress' ),
 
2250
 
2251
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:124
2252
+ __( 'Please select at least one post to display.', 'google-analytics-for-wordpress' ),
 
2253
 
2254
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:158
2255
+ /* Translators: placeholders make text small. */
2256
+ __( 'Automatic %1$s- The widget is automatically placed inside the post body.%2$s', 'google-analytics-for-wordpress' ),
2257
 
2258
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:163
2259
+ /* Translators: placeholders make text small. */
2260
+ __( 'Manual %1$s- Manually place the widget using Gutenberg blocks or using our shortcode.%2$s', 'google-analytics-for-wordpress' ),
2261
 
2262
  // Reference: src/modules/notifications/components/NotificationsIndicator.vue:19
2263
  __( 'View notifications', 'google-analytics-for-wordpress' ),
2264
 
2265
+ // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:83
2266
+ __( 'Make your MonsterInsights campaign links prettier with Pretty Links!', 'google-analytics-for-wordpress' ),
 
 
 
2267
 
2268
+ // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:84
2269
+ __( 'Pretty Links turns those ugly, long campaign links into clean, memorable, speakable, totally shareable links.', 'google-analytics-for-wordpress' ),
2270
 
2271
+ // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:85
2272
+ __( 'Take your MonsterInsights campaign links from our URL Builder and shorten them with Pretty Links!', 'google-analytics-for-wordpress' ),
2273
 
2274
+ // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:86
2275
+ __( 'Over 200,000 websites use Pretty Links!', 'google-analytics-for-wordpress' ),
2276
 
2277
+ // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:87
2278
+ __( 'Install Pretty Links', 'google-analytics-for-wordpress' ),
2279
 
2280
+ // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:88
2281
+ __( 'Pretty Links Installed & Activated', 'google-analytics-for-wordpress' ),
2282
 
2283
+ // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:89
2284
+ __( 'Download Pretty Links', 'google-analytics-for-wordpress' ),
2285
 
2286
+ // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:90
2287
+ __( 'Install Pretty Links from the WordPress.org plugin repository.', 'google-analytics-for-wordpress' ),
2288
 
2289
+ // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:91
2290
+ __( 'Activate Pretty Links', 'google-analytics-for-wordpress' ),
2291
 
2292
+ // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:92
2293
+ __( 'Activating Pretty Links...', 'google-analytics-for-wordpress' ),
2294
 
2295
+ // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:93
2296
+ __( 'Create New Pretty Link', 'google-analytics-for-wordpress' ),
 
2297
 
2298
+ // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:94
2299
+ __( 'Create a New Pretty Link', 'google-analytics-for-wordpress' ),
2300
 
2301
+ // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:95
2302
+ __( 'Grab your campaign link and paste it into the Target URL field.', 'google-analytics-for-wordpress' ),
2303
 
2304
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:162
2305
+ __( 'Custom Campaign Parameters', 'google-analytics-for-wordpress' ),
2306
 
2307
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:163
2308
+ __( 'The URL builder helps you add parameters to your URLs you use in custom web or email ad campaigns.', 'google-analytics-for-wordpress' ),
2309
 
2310
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:164
2311
+ __( 'A custom campaign is any ad campaign not using the AdWords auto-tagging feature. When users click one of the custom links, the unique parameters are sent to your Analytics account, so you can identify the URLs that are the most effective in attracting users to your content.', 'google-analytics-for-wordpress' ),
2312
 
2313
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:166
2314
+ /* Translators: Marks the field as required. */
2315
+ __( 'Website URL %s', 'google-analytics-for-wordpress' ),
2316
 
2317
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:168
2318
+ /* Translators: Display the current website url in italic. */
2319
+ __( 'The full website URL (e.g. %1$s %2$s%3$s)', 'google-analytics-for-wordpress' ),
2320
 
2321
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:170
2322
+ /* Translators: Marks the field as required. */
2323
+ __( 'Campaign Source %s', 'google-analytics-for-wordpress' ),
2324
 
2325
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:172
2326
+ /* Translators: Make the text italic. */
2327
+ __( 'Enter a referrer (e.g. %1$sfacebook, newsletter, google%2$s)', 'google-analytics-for-wordpress' ),
2328
 
2329
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:175
2330
+ /* Translators: Make the text italic. */
2331
+ __( 'Enter a marketing medium (e.g. %1$scpc, banner, email%2$s)', 'google-analytics-for-wordpress' ),
2332
 
2333
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:178
2334
+ /* Translators: Make the text italic. */
2335
+ __( 'Enter a name to easily identify (e.g. %1$sspring_sale%2$s)', 'google-analytics-for-wordpress' ),
2336
 
2337
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:180
2338
+ __( 'Enter the paid keyword', 'google-analytics-for-wordpress' ),
2339
 
2340
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:182
2341
+ __( 'Enter something to differentiate ads', 'google-analytics-for-wordpress' ),
2342
 
2343
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:183
2344
+ __( 'Use Fragment', 'google-analytics-for-wordpress' ),
2345
 
2346
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:185
2347
+ /* Translators: Make the text bold. */
2348
+ __( 'Set the parameters in the fragment portion of the URL %1$s(not recommended)%2$s', 'google-analytics-for-wordpress' ),
2349
 
2350
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:186
2351
+ __( 'URL to use', 'google-analytics-for-wordpress' ),
2352
 
2353
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:187
2354
+ __( '(Updates automatically)', 'google-analytics-for-wordpress' ),
2355
 
2356
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:188
2357
+ __( 'Copy to Clipboard', 'google-analytics-for-wordpress' ),
2358
 
2359
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:189
2360
+ __( 'Copy to Pretty Links', 'google-analytics-for-wordpress' ),
2361
 
2362
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:190
2363
+ __( 'Make your campaign links prettier!', 'google-analytics-for-wordpress' ),
2364
 
2365
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:191
2366
+ __( 'Pretty Links turns those ugly, long campaign links into clean, memorable, speakable and totally shareable links.', 'google-analytics-for-wordpress' ),
2367
 
2368
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:193
2369
+ __( 'More Information & Examples', 'google-analytics-for-wordpress' ),
2370
 
2371
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:194
2372
+ __( 'The following table gives a detailed explanation and example of each of the campaign parameters.', 'google-analytics-for-wordpress' ),
2373
 
2374
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:202
2375
+ __( 'Campaign Source', 'google-analytics-for-wordpress' ),
2376
 
2377
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:203
2378
+ __( 'Required. Use utm_source to identify a search engine, newsletter name, or other source.', 'google-analytics-for-wordpress' ),
2379
 
2380
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:204
2381
+ __( 'Campaign Medium', 'google-analytics-for-wordpress' ),
2382
 
2383
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:205
2384
+ __( 'Use utm_medium to identify a medium such as email or cost-per-click.', 'google-analytics-for-wordpress' ),
2385
 
2386
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:206
2387
+ __( 'Campaign Name', 'google-analytics-for-wordpress' ),
 
2388
 
2389
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:207
2390
+ __( 'Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign.', 'google-analytics-for-wordpress' ),
2391
 
2392
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:208
2393
+ __( 'Campaign Term', 'google-analytics-for-wordpress' ),
2394
 
2395
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:209
2396
+ __( 'Used for paid search. Use utm_term to note the keywords for this ad.', 'google-analytics-for-wordpress' ),
2397
 
2398
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:210
2399
+ __( 'Campaign Content', 'google-analytics-for-wordpress' ),
2400
 
2401
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:211
2402
+ __( 'Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL.', 'google-analytics-for-wordpress' ),
 
2403
 
2404
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:213
2405
+ /* Translators: Example. */
2406
+ __( 'Example: %s', 'google-analytics-for-wordpress' ),
2407
 
2408
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:215
2409
+ /* Translators: Examples. */
2410
+ __( 'Examples: %s', 'google-analytics-for-wordpress' ),
2411
 
2412
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:218
2413
+ __( 'About Campaigns', 'google-analytics-for-wordpress' ),
2414
 
2415
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:222
2416
+ __( 'About Custom Campaigns', 'google-analytics-for-wordpress' ),
 
2417
 
2418
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:226
2419
+ __( 'Best Practices for Creating Custom Campaigns', 'google-analytics-for-wordpress' ),
 
2420
 
2421
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:230
2422
+ __( 'About the Referral Traffic Report', 'google-analytics-for-wordpress' ),
 
2423
 
2424
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:234
2425
+ __( 'About Traffic Source Dimensions', 'google-analytics-for-wordpress' ),
2426
 
2427
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:238
2428
+ __( 'AdWords Auto-Tagging', 'google-analytics-for-wordpress' ),
2429
 
2430
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:242
2431
+ __( 'Additional Information', 'google-analytics-for-wordpress' ),
2432
 
2433
+ // Reference: src/modules/license/api/index.js:118
2434
+ /* Translators: Error status and error text. */
2435
+ __( 'Can\'t deactivate the license. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2436
 
2437
+ // Reference: src/modules/license/api/index.js:145
2438
+ /* Translators: Error status and error text. */
2439
+ __( 'Can\'t upgrade to PRO please try again. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2440
 
2441
+ // Reference: src/modules/license/api/index.js:18
2442
+ /* Translators: Error status and error text. */
2443
+ __( 'Can\'t load license details. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2444
 
2445
+ // Reference: src/modules/license/api/index.js:24
2446
+ __( 'Error loading license details', 'google-analytics-for-wordpress' ),
2447
 
2448
+ // Reference: src/modules/license/api/index.js:57
2449
+ /* Translators: Error status and error text. */
2450
+ __( 'Can\'t verify the license. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2451
 
2452
+ // Reference: src/modules/license/api/index.js:82
2453
+ /* Translators: Error status and error text. */
2454
+ __( 'Can\'t validate the license. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2455
 
2456
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabConversions-Lite.vue:32
2457
  __( 'See who\'s viewing and submitting your forms, so you can increase your conversion rate.', 'google-analytics-for-wordpress' ),
2462
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabConversions-Lite.vue:36
2463
  __( 'Add Custom Dimensions and track who\'s the most popular author on your site, which post types get the most traffic, and more', 'google-analytics-for-wordpress' ),
2464
 
2465
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEcommerce-Lite.vue:30
2466
+ __( 'See All Your Important Store Metrics in One Place', 'google-analytics-for-wordpress' ),
2467
 
2468
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEcommerce-Lite.vue:31
2469
+ __( 'Get an Answer to All Your Top Ecommerce Questions From a Single Report', 'google-analytics-for-wordpress' ),
2470
 
2471
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEcommerce-Lite.vue:32
2472
+ __( 'ONE-CLICK INTEGRATIONS', 'google-analytics-for-wordpress' ),
2473
 
2474
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEcommerce-Lite.vue:34
2475
+ __( 'Enable Ecommerce Tracking and Grow Your Business with Confidence', 'google-analytics-for-wordpress' ),
2476
 
2477
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEcommerce-Lite.vue:35
2478
+ __( 'MonsterInsights Ecommerce Addon makes it easy to setup enhanced eCommerce tracking, so you can see all your important eCommerce metrics like total revenue, conversion rate, average order value, top products, top referral sources, and more in a single report right inside your WordPress dashboard.', 'google-analytics-for-wordpress' ),
2479
 
2480
+ // Reference: src/modules/widget/components/settings/WidgetSettingsWidth.vue:40
2481
+ __( 'Show in widget mode', 'google-analytics-for-wordpress' ),
2482
 
2483
+ // Reference: src/modules/widget/components/settings/WidgetSettingsWidth.vue:40
2484
+ __( 'Show in full-width mode', 'google-analytics-for-wordpress' ),
2485
 
2486
+ // Reference: src/modules/popular-posts/components/PopularPostsUpgradeOverlay.vue:24
2487
+ // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputPdfReports-Lite.vue:16
2488
+ __( 'Upgrade', 'google-analytics-for-wordpress' ),
2489
 
2490
+ // Reference: src/modules/settings/components/input/tab-engagement/SettingsInputEUCompliance-Lite.vue:20
2491
+ __( 'The EU Compliance addon allows you to improve compliance with GDPR
2492
+ and other privacy regulations.', 'google-analytics-for-wordpress' ),
2493
 
2494
+ // Reference: src/modules/settings/components/input/tab-engagement/SettingsInputEUCompliance-Lite.vue:21
2495
+ __( 'EU Compliance', 'google-analytics-for-wordpress' ),
2496
 
2497
+ // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputPerformance-Lite.vue:18
2498
+ __( 'Adjust the sample rate so you don\'t exceed Google Analytics\' processing limit. Can also be used to enable Google Optimize for A/B testing and personalization.', 'google-analytics-for-wordpress' ),
2499
 
2500
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:99
2501
+ __( 'Theme Preview', 'google-analytics-for-wordpress' ),
2502
 
2503
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:61
2504
+ __( 'Wide', 'google-analytics-for-wordpress' ),
2505
 
2506
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:62
2507
+ __( 'Narrow', 'google-analytics-for-wordpress' ),
2508
 
2509
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:104
2510
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:137
2511
+ __( 'Title', 'google-analytics-for-wordpress' ),
2512
 
2513
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:102
2514
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:138
2515
+ __( 'Color', 'google-analytics-for-wordpress' ),
2516
 
2517
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:103
2518
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:139
2519
+ __( 'Size', 'google-analytics-for-wordpress' ),
2520
 
2521
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:107
2522
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:140
2523
+ __( 'Border', 'google-analytics-for-wordpress' ),
2524
 
2525
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:141
2526
+ __( 'Author/Date', 'google-analytics-for-wordpress' ),
2527
 
2528
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:105
2529
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:142
2530
+ __( 'Label', 'google-analytics-for-wordpress' ),
2531
 
2532
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:106
2533
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:143
2534
+ __( 'Background', 'google-analytics-for-wordpress' ),
2535
 
2536
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:144
2537
+ __( 'Wide-Layout Options', 'google-analytics-for-wordpress' ),
2538
 
2539
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:145
2540
+ __( 'Adjust the number of columns displayed when the widget is placed in a wide container.', 'google-analytics-for-wordpress' ),
2541
 
2542
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:146
2543
+ __( 'Display Options', 'google-analytics-for-wordpress' ),
2544
 
2545
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:147
2546
+ __( 'Choose which content you would like displayed in the widget.', 'google-analytics-for-wordpress' ),
2547
 
2548
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:148
2549
+ __( 'Display Author', 'google-analytics-for-wordpress' ),
2550
 
2551
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:149
2552
+ __( 'Display Date', 'google-analytics-for-wordpress' ),
2553
 
2554
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:150
2555
+ __( 'Display Comments', 'google-analytics-for-wordpress' ),
2556
 
2557
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:151
2558
+ __( 'Comments', 'google-analytics-for-wordpress' ),
2559
 
2560
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:152
2561
+ __( 'Post Count', 'google-analytics-for-wordpress' ),
2562
 
2563
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:153
2564
+ __( 'Choose how many posts you’d like displayed in the widget.', 'google-analytics-for-wordpress' ),
2565
 
2566
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemePicker.vue:70
2567
+ /* Translators: Page number of total pages. 1 & 2 make the first part of the text bold. */
2568
+ __( '%1$sPage %3$s%2$s of %4$s', 'google-analytics-for-wordpress' ),
2569
 
2570
+ // Reference: src/modules/popular-posts/components/input/PopularPostsSharedCount.vue:31
2571
+ __( 'SharedCount API Key', 'google-analytics-for-wordpress' ),
2572
+
2573
+ // Reference: src/modules/popular-posts/components/input/PopularPostsSharedCount.vue:32
2574
+ __( 'Insert your sharedcount API key found in your %1$sSettings%2$s panel. After, click Start Indexing.', 'google-analytics-for-wordpress' ),
2575
+
2576
+ // Reference: src/modules/popular-posts/components/input/PopularPostsSharedCount.vue:33
2577
+ __( 'Start Indexing', 'google-analytics-for-wordpress' ),
2578
+
2579
+ // Reference: src/modules/popular-posts/components/input/PopularPostsSharedCount.vue:37
2580
+ __( '%1$sIndex Progress: %2$s%%.%3$s You may leave this page during indexing.', 'google-analytics-for-wordpress' ),
2581
+
2582
+ // Reference: src/modules/popular-posts/components/input/PopularPostsSharedCount.vue:38
2583
+ __( 'Indexing completed, counts will update automatically every day.', 'google-analytics-for-wordpress' ),
2584
 
2585
+ // Reference: src/modules/popular-posts/components/input/PopularPostsPostsPicker.vue:45
2586
+ __( 'Select posts/search', 'google-analytics-for-wordpress' ),
2587
 
2588
+ // Reference: src/modules/popular-posts/components/input/PopularPostsPostsPicker.vue:55
2589
+ __( 'Oops! No posts found.', 'google-analytics-for-wordpress' ),
2590
 
2591
+ // Reference: src/modules/popular-posts/components/input/PopularPostsPostsPicker.vue:56
2592
+ __( 'Search by post title', 'google-analytics-for-wordpress' ),
2593
 
2594
+ // Reference: src/modules/popular-posts/components/input/PopularPostsPostsPicker.vue:92
2595
+ __( 'Can\'t load posts.', 'google-analytics-for-wordpress' ),
2596
 
2597
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:100
2598
+ __( 'Sartorial taxidermy venmo you probably haven\'t heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu.', 'google-analytics-for-wordpress' ),
2599
 
2600
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:101
2601
+ __( 'Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan', 'google-analytics-for-wordpress' ),
2602
 
2603
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:108
2604
+ __( 'Icon', 'google-analytics-for-wordpress' ),
2605
 
2606
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:107
2607
+ __( 'Popular Posts data can be fetched correctly', 'google-analytics-for-wordpress' ),
2608
 
2609
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:108
2610
+ __( 'Please note: depending on when you set up the Custom Dimensions settings, it may take up to 7 days to see relevant Popular Posts data loading from Google Analytics.', 'google-analytics-for-wordpress' ),
2611
 
2612
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:112
2613
+ __( 'Close', 'google-analytics-for-wordpress' ),
2614
 
2615
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:48
2616
+ __( 'Add Top 5 Posts from Google Analytics', 'google-analytics-for-wordpress' ),
2617
 
2618
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:49
2619
+ __( 'In order to load the top posts from Google Analytics you will need to enable the Custom Dimensions addon and set up the Post Type custom dimension in both MonsterInsights and Google Analytics settings. Please use the button below to confirm your configuration is correct.', 'google-analytics-for-wordpress' ),
2620
 
2621
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:50
2622
+ __( 'Test Automated Posts', 'google-analytics-for-wordpress' ),
2623
 
2624
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:52
2625
+ /* Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc. */
2626
+ __( 'Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics.', 'google-analytics-for-wordpress' ),
2627
 
2628
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:53
2629
+ __( 'Automated + Curated', 'google-analytics-for-wordpress' ),
2630
 
2631
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:55
2632
+ /* Translators: Placeholder adds a link to the Custom Dimensions settings. */
2633
+ __( 'Automatically add the top 5 Posts from the past 30 days to your Curated list of Posts using %1$sCustom Dimensions%2$s. Also requires Sort By - Curated to be selected. Setup steps can be found in our %3$sknowledge base%4$s.', 'google-analytics-for-wordpress' ),
2634
 
2635
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:57
2636
+ /* Translators: Placeholder gets replaced with current license version. */
2637
+ __( 'Pro version is required. Your current license level is: %s', 'google-analytics-for-wordpress' ),
2638
 
2639
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:95
2640
+ __( 'Verifying Popular Posts data', 'google-analytics-for-wordpress' ),
2641
 
2642
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:42
2643
+ __( 'Import/Export', 'google-analytics-for-wordpress' ),
2644
 
2645
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:43
2646
+ __( 'Import', 'google-analytics-for-wordpress' ),
2647
 
2648
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:44
2649
+ __( 'Import settings from another MonsterInsights website.', 'google-analytics-for-wordpress' ),
2650
 
2651
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:45
2652
+ __( 'Export', 'google-analytics-for-wordpress' ),
2653
 
2654
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:46
2655
+ __( 'Export settings to import into another MonsterInsights install.', 'google-analytics-for-wordpress' ),
2656
 
2657
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:47
2658
+ __( 'Import Settings', 'google-analytics-for-wordpress' ),
2659
 
2660
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:48
2661
+ __( 'Export Settings', 'google-analytics-for-wordpress' ),
2662
 
2663
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:49
2664
+ __( 'Please choose a file to import', 'google-analytics-for-wordpress' ),
2665
 
2666
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:50
2667
+ __( 'Use the filepicker below to select the settings export file from another site.', 'google-analytics-for-wordpress' ),
2668
 
2669
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:51
2670
+ __( 'Use the button below to export a file with your MonsterInsights settings.', 'google-analytics-for-wordpress' ),
2671
 
2672
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:64
2673
+ __( 'Uploading file...', 'google-analytics-for-wordpress' ),
2674
 
2675
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:79
2676
+ __( 'File imported', 'google-analytics-for-wordpress' ),
2677
 
2678
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:80
2679
+ __( 'Settings successfully updated!', 'google-analytics-for-wordpress' ),
2680
 
2681
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:86
2682
+ __( 'Error importing settings', 'google-analytics-for-wordpress' ),
2683
 
2684
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:87
2685
+ __( 'Please choose a .json file generated by a MonsterInsights settings export.', 'google-analytics-for-wordpress' ),
2686
 
2687
+ // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:30
2688
+ /* Translators: Make text green and add smiley face. */
2689
+ __( 'You\'re using %1$sMonsterInsights Lite%2$s - no license needed. Enjoy! %3$s', 'google-analytics-for-wordpress' ),
2690
 
2691
+ // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:32
2692
+ /* Translators: Add link to upgrade. */
2693
+ __( 'To unlock more features consider %1$supgrading to PRO%2$s.', 'google-analytics-for-wordpress' ),
2694
 
2695
+ // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:34
2696
+ /* Translators: Make text green. */
2697
+ __( 'As a valued MonsterInsights Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!', 'google-analytics-for-wordpress' ),
2698
 
2699
+ // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:35
2700
+ __( 'Unlock PRO Features Now', 'google-analytics-for-wordpress' ),
2701
 
2702
+ // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:36
2703
+ __( 'Paste your license key here', 'google-analytics-for-wordpress' ),
2704
 
2705
+ // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:37
2706
+ __( 'Verify', 'google-analytics-for-wordpress' ),
2707
 
2708
+ // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:39
2709
+ /* Translators: Add link to retrieve license from account area. */
2710
+ __( 'Already purchased? Simply enter your license key below to connect with MonsterInsights PRO! %1$sRetrieve your license key%2$s.', 'google-analytics-for-wordpress' ),
2711
 
2712
+ // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:69
2713
+ __( 'There was an error unlocking MonsterInsights PRO please try again or install manually.', 'google-analytics-for-wordpress' ),
2714
 
2715
+ // Reference: src/modules/widget/components/WidgetReportsLink.vue:17
2716
+ __( 'See All Reports', 'google-analytics-for-wordpress' ),
2717
 
2718
+ // Reference: src/modules/widget/components/WidgetReportsLink.vue:18
2719
+ __( 'Go to the Analytics Dashboard', 'google-analytics-for-wordpress' ),
 
2720
 
2721
+ // Reference: src/modules/settings/components/input/tab-publisher/monsterinsights-SettingsInputFbia-Lite.vue:22
2722
+ __( 'Facebook Instant Articles', 'google-analytics-for-wordpress' ),
 
2723
 
2724
+ // Reference: src/modules/settings/components/input/tab-publisher/monsterinsights-SettingsInputFbia-Lite.vue:23
2725
+ __( 'Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to MonsterInsights Pro.', 'google-analytics-for-wordpress' ),
 
2726
 
2727
+ // Reference: src/modules/settings/components/input/tab-publisher/monsterinsights-SettingsInputAds-Lite.vue:22
2728
+ __( 'Ads Tracking', 'google-analytics-for-wordpress' ),
 
2729
 
2730
+ // Reference: src/modules/settings/components/input/tab-publisher/monsterinsights-SettingsInputAds-Lite.vue:23
2731
+ __( 'Add Ads tracking to see who\'s clicking on your Google Ads, so you can increase your revenue.', 'google-analytics-for-wordpress' ),
 
2732
 
2733
+ // Reference: src/modules/settings/components/input/tab-publisher/monsterinsights-SettingsInputAmp-Lite.vue:23
2734
+ __( 'Want to use track users visiting your AMP pages? By upgrading to MonsterInsights Pro, you can enable AMP page tracking.', 'google-analytics-for-wordpress' ),
 
2735
 
2736
+ // Reference: src/modules/widget/components/settings/WidgetSettingsReports-Lite.vue:68
2737
+ __( 'Show Overview Reports', 'google-analytics-for-wordpress' ),
 
2738
 
2739
+ // Reference: src/modules/widget/components/settings/WidgetSettingsReports-Lite.vue:69
2740
+ __( 'Show Publishers Reports', 'google-analytics-for-wordpress' ),
 
2741
 
2742
+ // Reference: src/modules/widget/components/settings/WidgetSettingsReports-Lite.vue:70
2743
+ __( 'Show eCommerce Reports', 'google-analytics-for-wordpress' ),
 
2744
 
2745
+ // Reference: src/modules/widget/components/settings/WidgetSettingsReports-Lite.vue:72
2746
+ __( 'Available in PRO version', 'google-analytics-for-wordpress' ),
2747
 
2748
+ // Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:71
2749
+ __( '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.', 'google-analytics-for-wordpress' ),
2750
 
2751
+ // Reference: src/modules/settings/components/input/tab-engagement/SettingsInputScroll-Lite.vue:18
2752
+ __( 'Scroll Tracking', 'google-analytics-for-wordpress' ),
 
2753
 
2754
+ // Reference: src/modules/settings/components/input/tab-engagement/SettingsInputScroll-Lite.vue:19
2755
+ __( 'Scroll depth tracking allows you to see how far your users scroll before they leave a page. This is great for publishers (bloggers), and eCommerce websites to boost conversions.', 'google-analytics-for-wordpress' ),
2756
 
2757
+ // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputEmailSummaries-Lite.vue:17
2758
+ __( 'Our email summaries feature sends a weekly summary of the most important site analytics information.', 'google-analytics-for-wordpress' ),
2759
 
2760
+ // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputPdfReports-Lite.vue:17
2761
+ __( 'Download the analytics reports instantly from the WordPress dashboard as PDF files and share them with anyone.', 'google-analytics-for-wordpress' ),
2762
 
2763
+ // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:39
2764
+ __( 'Usage Tracking', 'google-analytics-for-wordpress' ),
2765
 
2766
+ // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:40
2767
+ __( 'By allowing us to track usage data we can better help you because we know with which WordPress configurations, themes and plugins we should test.', 'google-analytics-for-wordpress' ),
 
2768
 
2769
+ // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:41
2770
+ __( 'Allow usage tracking', 'google-analytics-for-wordpress' ),
2771
 
2772
+ // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:43
2773
+ /* Translators: Add links to documentation. */
2774
+ __( 'Complete documentation on usage tracking is available %1$shere%2$s.', 'google-analytics-for-wordpress' ),
2775
 
2776
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetCategory-Lite.vue:24
2777
+ __( 'Only Show Posts from These Categories', 'google-analytics-for-wordpress' ),
2778
 
2779
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetCategory-Lite.vue:25
2780
+ __( 'Choose from which categories posts will be displayed in the widget. All categories will be used if left empty.', 'google-analytics-for-wordpress' ),
 
2781
 
2782
+ // Reference: src/modules/popular-posts/components/input/PopularPostsCacheInterval-Lite.vue:14
2783
+ __( 'Days', 'google-analytics-for-wordpress' ),
 
2784
 
2785
+ // Reference: src/modules/popular-posts/components/input/PopularPostsCacheInterval-Lite.vue:19
2786
+ /* Translators: placeholders make text small. */
2787
+ __( '7 days', 'google-analytics-for-wordpress' ),
2788
 
2789
+ // Reference: src/modules/popular-posts/components/input/PopularPostsCacheInterval-Lite.vue:23
2790
+ __( '30 days', 'google-analytics-for-wordpress' ),
 
2791
 
2792
+ // Reference: src/modules/popular-posts/components/input/PopularPostsCacheInterval-Lite.vue:28
2793
+ __( 'Custom', 'google-analytics-for-wordpress' ),
 
2794
 
2795
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:29
2796
+ __( 'Pro version is required', 'google-analytics-for-wordpress' ),
 
2797
 
2798
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:32
2799
+ /* Translators: Placeholder adds a link to the Custom Dimensions settings. */
2800
+ __( 'Automatically add the top 5 Posts from the past 30 days to your Curated list of Posts using Custom Dimensions (Pro version required. %1$sUpgrade now%2$s).', 'google-analytics-for-wordpress' ),
2801
 
2802
  // Reference: src/modules/popular-posts/components/input/PopularPostsMultipleEntries-Lite.vue:21
2803
  __( 'Multiple Entries', 'google-analytics-for-wordpress' ),
2820
  // Reference: src/modules/popular-posts/components/input/PopularPostsMultipleEntries-Lite.vue:27
2821
  __( 'Choose the minimum word count for a Post to have multiple entries.', 'google-analytics-for-wordpress' ),
2822
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2823
  // Reference: src/modules/settings/components/input/SettingsInputNumber.vue:58
2824
  /* Translators: Minimum and maximum number that can be used. */
2825
  __( 'Please enter a value between %1$s and %2$s', 'google-analytics-for-wordpress' ),
2838
  // Reference: src/modules/settings/components/input/SettingsInputNumber.vue:64
2839
  __( 'Value has to be a round number', 'google-analytics-for-wordpress' ),
2840
 
2841
+ // Reference: src/modules/popular-posts/components/PopularPostsUpgradeOverlay.vue:23
2842
+ __( 'Unlock with %s', 'google-analytics-for-wordpress' ),
2843
+
2844
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:101
2845
  __( 'Automatic Placement', 'google-analytics-for-wordpress' ),
2846
 
2853
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:104
2854
  __( 'All Embed Options can be used in conjunction with one another.', 'google-analytics-for-wordpress' ),
2855
 
2856
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:105
2857
+ __( 'Using the Gutenberg Block', 'google-analytics-for-wordpress' ),
2858
+
2859
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:106
2860
  __( 'Using Automatic Embed', 'google-analytics-for-wordpress' ),
2861
 
2871
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:111
2872
  __( '%1$sWatch Video%2$s - How to Add the Popular Posts widget using Gutenberg', 'google-analytics-for-wordpress' ),
2873
 
2874
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:113
2875
+ __( '%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page.', 'google-analytics-for-wordpress' ),
2876
+
2877
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:114
2878
  __( '%1$sStep 2%2$s - Search for “Popular Posts”.', 'google-analytics-for-wordpress' ),
2879
 
2880
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:115
2881
+ __( '%1$sStep 3%2$s - Style the widget using the Block Settings sidebar.', 'google-analytics-for-wordpress' ),
2882
+
2883
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:118
2884
  __( '%1$sStep 1%2$s - Navigate to your Appearance > Widgets page using the menu on the left side your screen. Must be logged in as Admin.', 'google-analytics-for-wordpress' ),
2885
 
2892
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:122
2893
  __( 'Display using a Shortcode', 'google-analytics-for-wordpress' ),
2894
 
2895
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:123
2896
+ __( 'Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin.', 'google-analytics-for-wordpress' ),
2897
+
2898
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:124
2899
+ __( 'Copy Shortcode', 'google-analytics-for-wordpress' ),
2900
+
2901
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:125
2902
  __( '%1$sWatch Video%2$s - How to Add the Popular Posts widget using our Shortcode', 'google-analytics-for-wordpress' ),
2903
 
2913
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:129
2914
  __( 'Watch Video - How to Add the Popular Posts widget using Widgets', 'google-analytics-for-wordpress' ),
2915
 
2916
+ // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:75
2917
+ __( 'Display Method', 'google-analytics-for-wordpress' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2918
 
2919
+ // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:76
2920
+ __( 'There are two ways to manual include the widget in your posts.', 'google-analytics-for-wordpress' ),
 
2921
 
2922
+ // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:78
2923
+ __( 'Using the Shortcode', 'google-analytics-for-wordpress' ),
 
2924
 
2925
+ // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:79
2926
+ __( 'Learn how to insert the widget using Gutenberg blocks.', 'google-analytics-for-wordpress' ),
2927
 
2928
+ // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:80
2929
+ __( 'Learn how to insert the widget using out Shortcode.', 'google-analytics-for-wordpress' ),
2930
 
2931
+ // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:81
2932
+ __( '%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg', 'google-analytics-for-wordpress' ),
2933
 
2934
+ // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:84
2935
+ __( '%1$sStep 2%2$s - Search for “Inline Popular Posts by MonsterInsights”.', 'google-analytics-for-wordpress' ),
2936
 
2937
+ // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:87
2938
+ __( 'Shortcode', 'google-analytics-for-wordpress' ),
2939
 
2940
+ // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:90
2941
+ __( '%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using our Shortcode', 'google-analytics-for-wordpress' ),
2942
 
2943
+ // Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:28
2944
+ __( 'Allow Usage Tracking', 'google-analytics-for-wordpress' ),
2945
 
2946
+ // Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:14
2947
+ __( 'Hide dashboard widget', 'google-analytics-for-wordpress' ),
 
2948
 
2949
+ // Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:31
2950
+ __( 'Are you sure you want to hide the MonsterInsights Dashboard Widget? ', 'google-analytics-for-wordpress' ),
2951
 
2952
+ // Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:33
2953
+ __( 'Yes, hide it!', 'google-analytics-for-wordpress' ),
2954
 
2955
+ // Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:34
2956
+ __( 'No, cancel!', 'google-analytics-for-wordpress' ),
2957
 
2958
+ // Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:40
2959
+ __( 'MonsterInsights Widget Hidden', 'google-analytics-for-wordpress' ),
 
2960
 
2961
+ // Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:41
2962
+ __( 'You can re-enable the MonsterInsights widget at any time using the "Screen Options" menu on the top right of this page', 'google-analytics-for-wordpress' ),
 
2963
 
2964
+ // Reference: src/modules/popular-posts/components/PopularPostsProductsUpsell.vue:19
2965
+ __( 'This feature requires MonsterInsights Pro', 'google-analytics-for-wordpress' ),
2966
 
2967
+ // Reference: src/modules/popular-posts/components/PopularPostsProductsUpsell.vue:20
2968
+ __( 'By upgrading you will also get access to advanced eCommerce tracking, Custom Dimensions and more.', 'google-analytics-for-wordpress' ),
 
2969
 
2970
+ // Reference: src/modules/popular-posts/components/PopularPostsProductsUpsell.vue:21
2971
+ __( 'Upgrade to Pro and Unlock Popular Products', 'google-analytics-for-wordpress' ),
2972
 
2973
+ // Reference: src/modules/popular-posts/components/PopularPostsProductsUpsell.vue:22
2974
+ __( 'View all Pro features', 'google-analytics-for-wordpress' ),
 
2975
 
2976
+ // Reference: src/modules/widget/components/WidgetTips.vue:19
2977
+ __( 'Forms Tracking help you see who’s viewing your forms, so you can increase conversions.', 'google-analytics-for-wordpress' ),
2978
 
2979
+ // Reference: src/modules/widget/components/WidgetTips.vue:24
2980
+ __( 'Custom Dimensions show you popular categories, best time to publish, focus keywords, etc.', 'google-analytics-for-wordpress' ),
 
2981
 
2982
+ // Reference: src/modules/widget/components/WidgetTips.vue:29
2983
+ __( 'Make Google Analytics GDPR compliant with our EU Compliance addon.', 'google-analytics-for-wordpress' ),
2984
 
2985
+ // Reference: src/modules/widget/components/WidgetTips.vue:34
2986
+ __( 'Get real-time Google Analytics report right inside your WordPress dashboard.', 'google-analytics-for-wordpress' ),
 
2987
 
2988
+ // Reference: src/modules/widget/components/WidgetTips.vue:39
2989
+ __( 'Use Google Optimize to easily perform A/B split tests on your site.', 'google-analytics-for-wordpress' ),
2990
 
2991
+ // Reference: src/modules/widget/components/WidgetTips.vue:44
2992
+ __( 'See all your important store metrics in one place with Enhanced Ecommerce Tracking.', 'google-analytics-for-wordpress' ),
 
2993
 
2994
+ // Reference: src/modules/widget/components/WidgetTips.vue:49
2995
+ __( 'Unlock search console report to see your top performing keywords in Google.', 'google-analytics-for-wordpress' ),
 
2996
 
2997
+ // Reference: src/modules/widget/components/WidgetTips.vue:54
2998
+ __( 'Get Page Insights to see important metrics for individual posts / pages in WordPress.', 'google-analytics-for-wordpress' ),
2999
 
3000
+ // Reference: src/modules/widget/components/WidgetTips.vue:59
3001
+ __( 'Publishers Report shows your top performing pages, audience demographics, and more.', 'google-analytics-for-wordpress' ),
 
3002
 
3003
+ // Reference: src/modules/widget/components/WidgetTips.vue:64
3004
+ __( 'Get Scroll-Depth tracking to see how far users scroll on your pages before leaving.', 'google-analytics-for-wordpress' ),
 
3005
 
3006
+ // Reference: src/modules/widget/components/WidgetTips.vue:69
3007
+ __( 'Upgrade to Pro »', 'google-analytics-for-wordpress' ),
 
3008
 
3009
+ // Reference: src/modules/widget/components/WidgetTips.vue:70
3010
+ __( 'Pro Tip:', 'google-analytics-for-wordpress' )
 
3011
  );
3012
  /* THIS IS THE END OF THE GENERATED FILE */
lite/includes/popular-posts/class-popular-posts-inline.php CHANGED
@@ -219,9 +219,9 @@ class MonsterInsights_Popular_Posts_Inline extends MonsterInsights_Popular_Posts
219
  foreach ( $words as $index => $word ) {
220
  $count ++;
221
  if ( $count > $after_count ) {
222
- $p_index = mb_strpos( $word, '</p>' );
223
  // Make sure the paragraph tag is not wrapped in another element like a blockquote.
224
- if ( false !== $p_index && false === mb_strpos( $word, '</p></' ) ) {
225
  $words[ $index ] = substr_replace( $word, $this->shortcode_output( array() ), $p_index + 4, 0 );
226
  $this->posts = array();
227
  break;
219
  foreach ( $words as $index => $word ) {
220
  $count ++;
221
  if ( $count > $after_count ) {
222
+ $p_index = strpos( $word, '</p>' );
223
  // Make sure the paragraph tag is not wrapped in another element like a blockquote.
224
+ if ( false !== $p_index && false === strpos( $word, '</p></' ) ) {
225
  $words[ $index ] = substr_replace( $word, $this->shortcode_output( array() ), $p_index + 4, 0 );
226
  $this->posts = array();
227
  break;
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.wpbeginner.com/wpbeginner-needs-your-help/
4
  Tags: WordPress analytics, google analytics, google analytics dashboard, google analytics widget, WooCommerce stats, analytics dashboard, universal google analytics, statistics, tracking, stats, google, google analytics by yoast, ga, monster insights, monsterinsights, universal analytics, web stats, ecommerce, ecommerce tracking
5
  Requires at least: 3.8.0
6
  Tested up to: 5.5
7
- Stable tag: 7.13.0
8
  Requires PHP: 5.2
9
  License: GPL v3
10
 
@@ -274,6 +274,10 @@ You can also learn about other <a href="http://www.wpbeginner.com/category/plugi
274
  4. Want more features? <a href="https://www.monsterinsights.com/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Purchase MonsterInsights Pro</a>!
275
 
276
  == Changelog ==
 
 
 
 
277
  = 7.13.0: November 5, 2020 =
278
  - New: Popular Posts - promote your top content across your website using automatic placement, sidebar widgets and Gutenberg Blocks. Choose themes and update styles directly visually in your WordPress admin.
279
  - New: Contextual Insights - Ever wondered how to use the analytics data you’re tracking? With our new Contextual Insights feature we’ll show you suggestions specific to your data directly in the MonsterInsights dashboard.
4
  Tags: WordPress analytics, google analytics, google analytics dashboard, google analytics widget, WooCommerce stats, analytics dashboard, universal google analytics, statistics, tracking, stats, google, google analytics by yoast, ga, monster insights, monsterinsights, universal analytics, web stats, ecommerce, ecommerce tracking
5
  Requires at least: 3.8.0
6
  Tested up to: 5.5
7
+ Stable tag: 7.13.2
8
  Requires PHP: 5.2
9
  License: GPL v3
10
 
274
  4. Want more features? <a href="https://www.monsterinsights.com/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Purchase MonsterInsights Pro</a>!
275
 
276
  == Changelog ==
277
+ = 7.13.2: November 24, 2020 =
278
+ - Tweak: We tweaked some of the contextual insights to improve performance.
279
+ - Fix: Improve support for automatic insert for inline popular posts on sites using multi-byte languages.
280
+
281
  = 7.13.0: November 5, 2020 =
282
  - New: Popular Posts - promote your top content across your website using automatic placement, sidebar widgets and Gutenberg Blocks. Choose themes and update styles directly visually in your WordPress admin.
283
  - New: Contextual Insights - Ever wondered how to use the analytics data you’re tracking? With our new Contextual Insights feature we’ll show you suggestions specific to your data directly in the MonsterInsights dashboard.