Google Analytics for WordPress by MonsterInsights - Version 8.3.0

Version Description

Download this release

Release Info

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

Code changes from version 8.2.0 to 8.3.0

assets/js/frontend-gtag.js CHANGED
@@ -812,8 +812,8 @@ var MonsterInsights = function () {
812
  1 / 0
813
  ) ) { /* jshint ignore:line */
814
  n = (
815
- n > 0 || - 1
816
- ) * Math.floor( Math.abs( n ) );
817
  }
818
  }
819
 
812
  1 / 0
813
  ) ) { /* jshint ignore:line */
814
  n = (
815
+ n > 0 || - 1
816
+ ) * Math.floor( Math.abs( n ) );
817
  }
818
  }
819
 
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: 8.2.0
10
  * Requires at least: 4.8.0
11
  * Requires PHP: 5.5
12
  *
@@ -69,7 +69,7 @@ final class MonsterInsights_Lite {
69
  * @access public
70
  * @var string $version Plugin version.
71
  */
72
- public $version = '8.2.0';
73
 
74
  /**
75
  * Plugin file.
@@ -176,6 +176,7 @@ final class MonsterInsights_Lite {
176
  * @since 7.15.0
177
  * @accces public
178
  * @var string
 
179
  */
180
  public $tracking_mode;
181
 
@@ -568,6 +569,7 @@ final class MonsterInsights_Lite {
568
  /**
569
  * Get the tracking mode for the frontend scripts.
570
  *
 
571
  * @return string
572
  */
573
  public function get_tracking_mode() {
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: 8.3.0
10
  * Requires at least: 4.8.0
11
  * Requires PHP: 5.5
12
  *
69
  * @access public
70
  * @var string $version Plugin version.
71
  */
72
+ public $version = '8.3.0';
73
 
74
  /**
75
  * Plugin file.
176
  * @since 7.15.0
177
  * @accces public
178
  * @var string
179
+ * @deprecated Since 8.3 with the removal of ga compatibility
180
  */
181
  public $tracking_mode;
182
 
569
  /**
570
  * Get the tracking mode for the frontend scripts.
571
  *
572
+ * @deprecated Since 8.3 with the removal of ga compatibility
573
  * @return string
574
  */
575
  public function get_tracking_mode() {
includes/admin/common.php CHANGED
@@ -940,15 +940,15 @@ add_action( 'admin_init', 'monsterinsights_maybe_add_wp_php_version_notification
940
  */
941
  function monsterinsights_year_in_review_notification() {
942
 
943
- // Check if dates are between Jan 1st 2021 & 13th Jan 2021.
944
- if ( monsterinsights_date_is_between( '2021-01-01', '2021-01-14' ) ) {
945
 
946
  $notification['id'] = 'monsterinsights_notification_year_in_review';
947
  $notification['type'] = array( 'basic', 'lite', 'master', 'plus', 'pro' );
948
- $notification['start'] = '2021-01-01';
949
- $notification['end'] = '2021-01-14';
950
- $notification['title'] = esc_html__( 'View 2020 Year in Review report!', 'google-analytics-for-wordpress' );
951
- $notification['content'] = esc_html__( 'See how your website performed this year and find tips along the way to help grow even more in 2021!', 'google-analytics-for-wordpress' );
952
  $notification['btns'] = array(
953
  'learn_more' => array(
954
  'url' => esc_url( admin_url( 'admin.php?page=monsterinsights_reports#/year-in-review' ) ),
940
  */
941
  function monsterinsights_year_in_review_notification() {
942
 
943
+ // Check if dates are between Jan 1st 2022 & 13th Jan 2022.
944
+ if ( monsterinsights_date_is_between( '2022-01-01', '2022-01-14' ) ) {
945
 
946
  $notification['id'] = 'monsterinsights_notification_year_in_review';
947
  $notification['type'] = array( 'basic', 'lite', 'master', 'plus', 'pro' );
948
+ $notification['start'] = '2022-01-01';
949
+ $notification['end'] = '2022-01-14';
950
+ $notification['title'] = esc_html__( 'View 2021 Year in Review report!', 'google-analytics-for-wordpress' );
951
+ $notification['content'] = esc_html__( 'See how your website performed this year and find tips along the way to help grow even more in 2022!', 'google-analytics-for-wordpress' );
952
  $notification['btns'] = array(
953
  'learn_more' => array(
954
  'url' => esc_url( admin_url( 'admin.php?page=monsterinsights_reports#/year-in-review' ) ),
includes/admin/routes.php CHANGED
@@ -363,6 +363,14 @@ class MonsterInsights_Rest_Routes {
363
  $parsed_addons['cookie_notice'] = array(
364
  'active' => class_exists( 'Cookie_Notice' ),
365
  );
 
 
 
 
 
 
 
 
366
  // Fb Instant Articles.
367
  $parsed_addons['instant_articles'] = array(
368
  'active' => defined( 'IA_PLUGIN_VERSION' ) && version_compare( IA_PLUGIN_VERSION, '3.3.4', '>' ),
@@ -379,6 +387,9 @@ class MonsterInsights_Rest_Routes {
379
  $parsed_addons['easy_affiliate'] = array(
380
  'active' => defined( 'ESAF_EDITION' ),
381
  );
 
 
 
382
  // WPForms.
383
  $parsed_addons['wpforms-lite'] = array(
384
  'active' => function_exists( 'wpforms' ),
363
  $parsed_addons['cookie_notice'] = array(
364
  'active' => class_exists( 'Cookie_Notice' ),
365
  );
366
+ // Complianz.
367
+ $parsed_addons['complianz'] = array(
368
+ 'active' => defined( 'cmplz_plugin') || defined( 'cmplz_premium'),
369
+ );
370
+ // Cookie Yes
371
+ $parsed_addons['cookie_yes'] = array(
372
+ 'active' => defined( 'CLI_SETTINGS_FIELD'),
373
+ );
374
  // Fb Instant Articles.
375
  $parsed_addons['instant_articles'] = array(
376
  'active' => defined( 'IA_PLUGIN_VERSION' ) && version_compare( IA_PLUGIN_VERSION, '3.3.4', '>' ),
387
  $parsed_addons['easy_affiliate'] = array(
388
  'active' => defined( 'ESAF_EDITION' ),
389
  );
390
+ $parsed_addons['affiliate_wp'] = array(
391
+ 'active' => function_exists( 'affiliate_wp' ) && defined( 'AFFILIATEWP_VERSION' ),
392
+ );
393
  // WPForms.
394
  $parsed_addons['wpforms-lite'] = array(
395
  'active' => function_exists( 'wpforms' ),
includes/admin/tracking.php CHANGED
@@ -36,12 +36,12 @@ class MonsterInsights_Tracking {
36
 
37
  // Retrieve current theme info
38
  $theme_data = wp_get_theme();
39
- $tracking_mode = monsterinsights_get_option( 'tracking_mode', 'analytics' );
40
  $events_mode = monsterinsights_get_option( 'events_mode', 'none' );
41
  $update_mode = monsterinsights_get_option( 'automatic_updates', false );
42
 
43
  if ( $tracking_mode === false ) {
44
- $tracking_mode = 'analytics';
45
  }
46
  if ( $events_mode === false ) {
47
  $events_mode = 'none';
36
 
37
  // Retrieve current theme info
38
  $theme_data = wp_get_theme();
39
+ $tracking_mode = monsterinsights_get_option( 'tracking_mode', 'gtag' );
40
  $events_mode = monsterinsights_get_option( 'events_mode', 'none' );
41
  $update_mode = monsterinsights_get_option( 'automatic_updates', false );
42
 
43
  if ( $tracking_mode === false ) {
44
+ $tracking_mode = 'gtag';
45
  }
46
  if ( $events_mode === false ) {
47
  $events_mode = 'none';
includes/frontend/frontend.php CHANGED
@@ -37,14 +37,10 @@ function monsterinsights_tracking_script() {
37
  require_once plugin_dir_path( MONSTERINSIGHTS_PLUGIN_FILE ) . 'includes/frontend/tracking/class-tracking-preview.php';
38
  $tracking = new MonsterInsights_Tracking_Preview();
39
  echo $tracking->frontend_output();
40
- } else if ( 'gtag' === $mode ) {
41
  require_once plugin_dir_path( MONSTERINSIGHTS_PLUGIN_FILE ) . 'includes/frontend/tracking/class-tracking-gtag.php';
42
  $tracking = new MonsterInsights_Tracking_Gtag();
43
  echo $tracking->frontend_output();
44
- } else {
45
- require_once plugin_dir_path( MONSTERINSIGHTS_PLUGIN_FILE ) . 'includes/frontend/tracking/class-tracking-analytics.php';
46
- $tracking = new MonsterInsights_Tracking_Analytics();
47
- echo $tracking->frontend_output();
48
  }
49
 
50
  do_action( 'monsterinsights_tracking_after_' . $mode );
@@ -70,14 +66,8 @@ function monsterinsights_events_tracking() {
70
  $track_user = monsterinsights_track_user();
71
 
72
  if ( $track_user ) {
73
- $tracking_mode = MonsterInsights()->get_tracking_mode();
74
- if ( 'analytics' === $tracking_mode ) {
75
- require_once plugin_dir_path( MONSTERINSIGHTS_PLUGIN_FILE ) . 'includes/frontend/events/class-analytics-events.php';
76
- new MonsterInsights_Analytics_Events();
77
- } else {
78
- require_once plugin_dir_path( MONSTERINSIGHTS_PLUGIN_FILE ) . 'includes/frontend/events/class-gtag-events.php';
79
- new MonsterInsights_Gtag_Events();
80
- }
81
  } else {
82
  // User is in the disabled group or events mode is off
83
  }
37
  require_once plugin_dir_path( MONSTERINSIGHTS_PLUGIN_FILE ) . 'includes/frontend/tracking/class-tracking-preview.php';
38
  $tracking = new MonsterInsights_Tracking_Preview();
39
  echo $tracking->frontend_output();
40
+ } else {
41
  require_once plugin_dir_path( MONSTERINSIGHTS_PLUGIN_FILE ) . 'includes/frontend/tracking/class-tracking-gtag.php';
42
  $tracking = new MonsterInsights_Tracking_Gtag();
43
  echo $tracking->frontend_output();
 
 
 
 
44
  }
45
 
46
  do_action( 'monsterinsights_tracking_after_' . $mode );
66
  $track_user = monsterinsights_track_user();
67
 
68
  if ( $track_user ) {
69
+ require_once plugin_dir_path( MONSTERINSIGHTS_PLUGIN_FILE ) . 'includes/frontend/events/class-gtag-events.php';
70
+ new MonsterInsights_Gtag_Events();
 
 
 
 
 
 
71
  } else {
72
  // User is in the disabled group or events mode is off
73
  }
includes/frontend/seedprod.php CHANGED
@@ -23,18 +23,18 @@ function monsterinsights_seedprod_tracking( $settings ) {
23
  do_action( 'monsterinsights_tracking_before_analytics' );
24
  do_action( 'monsterinsights_tracking_before', 'analytics' );
25
 
26
- require_once plugin_dir_path( MONSTERINSIGHTS_PLUGIN_FILE ) . 'includes/frontend/tracking/class-tracking-analytics.php';
27
- $tracking = new MonsterInsights_Tracking_Analytics();
28
- echo $tracking->frontend_output();
29
 
30
- do_action( 'monsterinsights_tracking_after_analytics' );
31
- do_action( 'monsterinsights_tracking_after', 'analytics' );
32
 
33
  $track_user = monsterinsights_track_user();
34
 
35
  if ( $track_user ) {
36
- require_once plugin_dir_path( MONSTERINSIGHTS_PLUGIN_FILE ) . 'includes/frontend/events/class-analytics-events.php';
37
- new MonsterInsights_Analytics_Events();
38
 
39
  // Let's run form tracking if we find it
40
  if ( function_exists( 'monsterinsights_forms_output_after_script' ) ) {
@@ -42,4 +42,4 @@ function monsterinsights_seedprod_tracking( $settings ) {
42
  }
43
  }
44
  }
45
- add_action( 'seedprod_monsterinsights_output_tracking', 'monsterinsights_seedprod_tracking', 6, 1 );
23
  do_action( 'monsterinsights_tracking_before_analytics' );
24
  do_action( 'monsterinsights_tracking_before', 'analytics' );
25
 
26
+ require_once plugin_dir_path( MONSTERINSIGHTS_PLUGIN_FILE ) . 'includes/frontend/tracking/class-tracking-gtag.php';
27
+ $tracking = new MonsterInsights_Tracking_Gtag();
28
+ echo $tracking->frontend_output();
29
 
30
+ do_action( 'monsterinsights_tracking_after_gtag' );
31
+ do_action( 'monsterinsights_tracking_after', 'gtag' );
32
 
33
  $track_user = monsterinsights_track_user();
34
 
35
  if ( $track_user ) {
36
+ require_once plugin_dir_path( MONSTERINSIGHTS_PLUGIN_FILE ) . 'includes/frontend/events/class-gtag-events.php';
37
+ new MonsterInsights_Gtag_Events();
38
 
39
  // Let's run form tracking if we find it
40
  if ( function_exists( 'monsterinsights_forms_output_after_script' ) ) {
42
  }
43
  }
44
  }
45
+ add_action( 'seedprod_monsterinsights_output_tracking', 'monsterinsights_seedprod_tracking', 6, 1 );
includes/frontend/tracking/class-tracking-gtag.php CHANGED
@@ -4,240 +4,235 @@
4
  *
5
  * @since 7.15.0
6
  *
7
- * @package MonsterInsights
8
  * @author Mircea Sandu
9
  */
10
 
11
  // Exit if accessed directly
12
- if ( ! defined( 'ABSPATH' ) ) {
13
- exit;
14
  }
15
 
16
- class MonsterInsights_Tracking_Gtag extends MonsterInsights_Tracking_Abstract {
17
-
18
- /**
19
- * Holds the name of the tracking type.
20
- *
21
- * @since 7.15.0
22
- * @access public
23
- *
24
- * @var string $name Name of the tracking type.
25
- */
26
- public $name = 'gtag';
27
-
28
- /**
29
- * Version of the tracking class.
30
- *
31
- * @since 7.15.0
32
- * @access public
33
- *
34
- * @var string $version Version of the tracking class.
35
- */
36
- public $version = '1.0.0';
37
-
38
- /**
39
- * Primary class constructor.
40
- *
41
- * @since 7.15.0
42
- * @access public
43
- */
44
- public function __construct() {
45
-
46
- }
47
-
48
- /**
49
- * Array of options that will be made persistent by setting them before the pageview.
50
- *
51
- * @see https://developers.google.com/analytics/devguides/collection/gtagjs/setting-values
52
- * @return array Options for persistent values, like custom dimensions.
53
- * @since 7.15.0
54
- * @access public
55
- */
56
- public function frontend_tracking_options_persistent() {
57
- $options = apply_filters( 'monsterinsights_frontend_tracking_options_persistent_gtag_before_pageview', array() );
58
-
59
- return $options;
60
- }
61
-
62
- /**
63
- * Get frontend tracking options for the gtag script.
64
- *
65
- * This function is used to return an array of parameters
66
- * for the frontend_output() function to output. These are
67
- * generally dimensions and turned on GA features.
68
- *
69
- * @param bool $encoded Whether to return a JavaScript object representation of the options
70
- *
71
- * @return array|string Options for the gtag config.
72
- * @since 7.15.0
73
- * @access public
74
- *
75
- */
76
- public function frontend_tracking_options( $type = 'ua', $encoded = false ) {
77
- global $wp_query;
78
- $options = array();
79
-
80
- $tracking_ids = monsterinsights_get_tracking_ids();
81
- if ( empty( $tracking_ids ) ) {
82
- return $encoded ? wp_json_encode( $options ) : $options;
83
- }
84
-
85
- $placeholder = '';
86
-
87
- if ( $encoded ) {
88
- $placeholder = '!@#';
89
- }
90
-
91
- // $track_user = monsterinsights_track_user();
92
  //
93
- // if ( ! $track_user ) {
94
- // $options['create'] = "'create', '" . esc_js( $ua_code ) . "', '" . esc_js( 'auto' ) . "'";
95
- // $options['forceSSL'] = "'set', 'forceSSL', true";
96
- // $options['send'] = "'send','pageview'";
97
  //
98
- // return $options;
99
- // }
100
-
101
- $cross_domains = monsterinsights_get_option( 'cross_domains', array() );
102
- $allow_anchor = monsterinsights_get_option( 'allow_anchor', false );
103
-
104
- if ( $allow_anchor ) {
105
- $options['allow_anchor'] = 'true';
106
- }
107
-
108
- if ( class_exists( 'MonsterInsights_AMP' ) ) {
109
- $options['use_amp_client_id'] = 'true';
110
- }
111
-
112
-
113
- $options['forceSSL'] = 'true';
114
-
115
- // Anonymous data.
116
- if ( monsterinsights_get_option( 'anonymize_ips', false ) ) {
117
- $options['anonymize_ip'] = 'true';
118
- }
119
-
120
- $options = apply_filters( 'monsterinsights_frontend_tracking_options_gtag_before_scripts', $options );
121
-
122
- // Add Enhanced link attribution.
123
- if ( monsterinsights_get_option( 'link_attribution', false ) ) {
124
- $options['link_attribution'] = 'true';
125
- }
126
-
127
- // Add cross-domain tracking.
128
- if ( is_array( $cross_domains ) && ! empty( $cross_domains ) ) {
129
- $linker_domains = array();
130
- foreach ( $cross_domains as $cross_domain ) {
131
- if ( ! empty( $cross_domain['domain'] ) ) {
132
- $linker_domains[] = $cross_domain['domain'];
133
- }
134
- }
135
- $options['linker'] = array(
136
- 'domains' => $linker_domains,
137
- );
138
- }
139
-
140
- if ( monsterinsights_is_debug_mode() ) {
141
- $options['debug_mode'] = true;
142
- }
143
-
144
- $options = apply_filters( 'monsterinsights_frontend_tracking_options_gtag_before_pageview', $options, $type );
145
- $options = apply_filters( 'monsterinsights_frontend_tracking_options_before_pageview', $options, $this->name, $this->version, $type );
146
-
147
- if ( is_404() ) {
148
- if ( monsterinsights_get_option( 'hash_tracking', false ) ) {
149
- $options['page_path'] = "${placeholder}'/404.html?page=' + document.location.pathname + document.location.search + location.hash + '&from=' + document.referrer${placeholder}";
150
- } else {
151
- $options['page_path'] = "${placeholder}'/404.html?page=' + document.location.pathname + document.location.search + '&from=' + document.referrer${placeholder}";
152
- }
153
- } else if ( $wp_query->is_search ) {
154
- $pushstr = "'/?s=";
155
- if ( 0 === (int) $wp_query->found_posts ) {
156
- $options['page_path'] = $pushstr . 'no-results:' . rawurlencode( $wp_query->query_vars['s'] ) . "&cat=no-results'";
157
- } else if ( (int) $wp_query->found_posts === 1 ) {
158
- $options['page_path'] = $pushstr . rawurlencode( $wp_query->query_vars['s'] ) . "&cat=1-result'";
159
- } else if ( $wp_query->found_posts > 1 && $wp_query->found_posts < 6 ) {
160
- $options['page_path'] = $pushstr . rawurlencode( $wp_query->query_vars['s'] ) . "&cat=2-5-results'";
161
- } else {
162
- $options['page_path'] = $pushstr . rawurlencode( $wp_query->query_vars['s'] ) . "&cat=plus-5-results'";
163
- }
164
- } else if ( monsterinsights_get_option( 'hash_tracking', false ) ) {
165
- $options['page_path'] = "${placeholder}location.pathname + location.search + location.hash${placeholder}";
166
- }
167
-
168
- $options = apply_filters( 'monsterinsights_frontend_tracking_options_gtag_end', $options, $type );
169
-
170
- if ( $encoded ) {
171
- return str_replace(
172
- array( '"' . $placeholder, $placeholder . '"' ),
173
- '',
174
- wp_json_encode( $options )
175
- );
176
- }
177
-
178
- return $options;
179
- }
180
-
181
- /**
182
- * Get frontend output.
183
- *
184
- * This function is used to return the Javascript
185
- * to output in the head of the page for the given
186
- * tracking method.
187
- *
188
- * @return string Javascript to output.
189
- * @since 7.15.0
190
- * @access public
191
- *
192
- */
193
- public function frontend_output() {
194
- $options = $this->frontend_tracking_options( 'ua', true );
195
- $options_v4 = $this->frontend_tracking_options( 'v4', true );
196
- $persistent = $this->frontend_tracking_options_persistent();
197
- $connected_type = MonsterInsights()->auth->get_connected_type();
198
- $v4_id = monsterinsights_get_v4_id_to_output();
199
- $ua = monsterinsights_get_ua_to_output();
200
- $main_id = $connected_type === 'ua' ? $ua : $v4_id;
201
- $src = apply_filters( 'monsterinsights_frontend_output_gtag_src', '//www.googletagmanager.com/gtag/js?id=' . $main_id );
202
- $compat_mode = apply_filters( 'monsterinsights_get_option_gtagtracker_compatibility_mode', true );
203
- $compat = $compat_mode ? 'window.gtag = __gtagTracker;' : '';
204
- $track_user = monsterinsights_track_user();
205
- $output = '';
206
- $reason = '';
207
- $attr_string = monsterinsights_get_frontend_analytics_script_atts();
208
- $gtag_async = apply_filters( 'monsterinsights_frontend_gtag_script_async', true ) ? 'async' : '';
209
- ob_start();
210
- ?>
211
  <!-- This site uses the Google Analytics by MonsterInsights plugin v<?php echo MONSTERINSIGHTS_VERSION; ?> - Using Analytics tracking - https://www.monsterinsights.com/ -->
212
- <?php if ( ! $track_user ) {
213
- if ( empty( $v4_id ) && empty( $ua ) ) {
214
- $reason = __( 'Note: MonsterInsights is not currently configured on this site. The site owner needs to authenticate with Google Analytics in the MonsterInsights settings panel.', 'google-analytics-for-wordpress' );
215
- $output .= '<!-- ' . esc_html( $reason ) . ' -->' . PHP_EOL;
216
- } else if ( current_user_can( 'monsterinsights_save_settings' ) ) {
217
- $reason = __( 'Note: MonsterInsights does not track you as a logged-in site administrator to prevent site owners from accidentally skewing their own Google Analytics data.' . PHP_EOL . 'If you are testing Google Analytics code, please do so either logged out or in the private browsing/incognito mode of your web browser.', 'google-analytics-for-wordpress' );
218
- $output .= '<!-- ' . esc_html( $reason ) . ' -->' . PHP_EOL;
219
- } else {
220
- $reason = __( 'Note: The site owner has disabled Google Analytics tracking for your user role.', 'google-analytics-for-wordpress' );
221
- $output .= '<!-- ' . esc_html( $reason ) . ' -->' . PHP_EOL;
222
- }
223
- echo $output;
224
- } ?>
225
- <?php if ( ! empty( $v4_id ) || ! empty( $ua ) ) { ?>
226
- <script src="<?php echo esc_attr( $src ); ?>" <?php echo $attr_string; ?> <?php echo esc_attr( $gtag_async ); ?>></script>
227
  <script<?php echo $attr_string; ?>>
228
  var mi_version = '<?php echo MONSTERINSIGHTS_VERSION; ?>';
229
- var mi_track_user = <?php echo( $track_user ? 'true' : 'false' ); ?>;
230
- var mi_no_track_reason = <?php echo( $reason ? "'" . esc_js( $reason ) . "'" : "''" ); ?>;
231
- <?php do_action( 'monsterinsights_tracking_gtag_frontend_output_after_mi_track_user' ); ?>
232
 
233
- <?php if ( $this->should_do_optout() ) { ?>
234
  var disableStrs = [
235
- <?php if ( ! empty( $v4_id ) ): ?>
236
- 'ga-disable-<?php echo esc_js( $v4_id ); ?>',
237
- <?php endif; ?>
238
- <?php if ( ! empty( $ua ) ): ?>
239
- 'ga-disable-<?php echo esc_js( $ua ); ?>',
240
- <?php endif; ?>
241
  ];
242
 
243
  /* Function to detect opted out users */
@@ -294,7 +289,7 @@ class MonsterInsights_Tracking_Gtag extends MonsterInsights_Tracking_Abstract {
294
  }
295
 
296
  if ( type === 'event' ) {
297
- <?php if ( $v4_id ): ?>
298
  parameters.send_to = monsterinsights_frontend.v4_id;
299
  var hookName = name;
300
  if ( typeof parameters[ 'event_category' ] !== 'undefined' ) {
@@ -306,12 +301,12 @@ class MonsterInsights_Tracking_Gtag extends MonsterInsights_Tracking_Abstract {
306
  } else {
307
  __gtagDataLayer( 'event', name, parameters );
308
  }
309
- <?php endif; ?>
310
 
311
- <?php if ( $ua ): ?>
312
  parameters.send_to = monsterinsights_frontend.ua;
313
  __gtagDataLayer( type, name, parameters );
314
- <?php endif; ?>
315
  } else {
316
  __gtagDataLayer.apply( null, arguments );
317
  }
@@ -320,32 +315,31 @@ class MonsterInsights_Tracking_Gtag extends MonsterInsights_Tracking_Abstract {
320
  __gtagTracker( 'set', {
321
  'developer_id.dZGIzZG' : true,
322
  <?php
323
- if ( ! empty( $persistent ) ) {
324
- foreach ( $persistent as $key => $value ) {
325
- echo "'" . esc_js( $key ) . "' : '" . esc_js( $value ) . "',";
326
- }
327
- }
328
- ?>
329
  } );
330
- <?php if ( ! empty( $v4_id ) ): ?>
331
- __gtagTracker( 'config', '<?php echo esc_js( $v4_id ); ?>', <?php echo $options_v4; ?> );
332
- <?php endif; ?>
333
- <?php if ( ! empty( $ua ) ): ?>
334
- __gtagTracker( 'config', '<?php echo esc_js( $ua ); ?>', <?php echo $options; ?> );
335
  <?php
336
- endif;
337
- /**
338
- * Extend or enhance the functionality by adding custom code to frontend
339
- * tracking via this hook.
340
- *
341
- * @since 7.15.0
342
- */
343
- do_action( 'monsterinsights_frontend_tracking_gtag_after_pageview' );
344
- ?>
345
- <?php echo esc_js( $compat ); ?>
346
- <?php if ( apply_filters( 'monsterinsights_tracking_gtag_frontend_gatracker_compatibility', true ) ) { ?>
347
- (
348
- function () {
349
  /* https://developers.google.com/analytics/devguides/collection/analyticsjs/ */
350
  /* ga and __gaTracker compatibility shim. */
351
  var noopfn = function () {
@@ -430,7 +424,7 @@ class MonsterInsights_Tracking_Gtag extends MonsterInsights_Tracking_Abstract {
430
  'title' : 'page_title',
431
  };
432
  for ( arg in args ) {
433
- <?php // Note: we do || instead of && because FBIA can't encode && properly. ?>
434
  if ( ! ( ! args.hasOwnProperty(arg) || ! gaMap.hasOwnProperty(arg) ) ) {
435
  hit[gaMap[arg]] = args[arg];
436
  } else {
@@ -453,12 +447,11 @@ class MonsterInsights_Tracking_Gtag extends MonsterInsights_Tracking_Abstract {
453
  __gaTracker.remove = noopfn;
454
  __gaTracker.loaded = true;
455
  window['__gaTracker'] = __gaTracker;
456
- }
457
- )();
458
  <?php } ?>
459
  } else {
460
- <?php if ( $this->should_do_optout() ) { ?>
461
- console.log( "<?php echo esc_js( $reason );?>" );
462
  ( function () {
463
  function __gtagTracker() {
464
  return null;
@@ -474,13 +467,14 @@ class MonsterInsights_Tracking_Gtag extends MonsterInsights_Tracking_Abstract {
474
  <?php } ?>
475
  <!-- / Google Analytics by MonsterInsights -->
476
  <?php
477
- $output = ob_get_contents();
478
- ob_end_clean();
479
 
480
- return $output;
481
- }
482
 
483
- public function should_do_optout() {
484
- return ! ( defined( 'MI_NO_TRACKING_OPTOUT' ) && MI_NO_TRACKING_OPTOUT );
485
- }
 
486
  }
4
  *
5
  * @since 7.15.0
6
  *
 
7
  * @author Mircea Sandu
8
  */
9
 
10
  // Exit if accessed directly
11
+ if (!defined('ABSPATH')) {
12
+ exit;
13
  }
14
 
15
+ class MonsterInsights_Tracking_Gtag extends MonsterInsights_Tracking_Abstract
16
+ {
17
+ /**
18
+ * Holds the name of the tracking type.
19
+ *
20
+ * @since 7.15.0
21
+ *
22
+ * @var string name of the tracking type
23
+ */
24
+ public $name = 'gtag';
25
+
26
+ /**
27
+ * Version of the tracking class.
28
+ *
29
+ * @since 7.15.0
30
+ *
31
+ * @var string version of the tracking class
32
+ */
33
+ public $version = '1.0.0';
34
+
35
+ /**
36
+ * Primary class constructor.
37
+ *
38
+ * @since 7.15.0
39
+ */
40
+ public function __construct()
41
+ {
42
+ }
43
+
44
+ /**
45
+ * Array of options that will be made persistent by setting them before the pageview.
46
+ *
47
+ * @see https://developers.google.com/analytics/devguides/collection/gtagjs/setting-values
48
+ *
49
+ * @return array options for persistent values, like custom dimensions
50
+ *
51
+ * @since 7.15.0
52
+ */
53
+ public function frontend_tracking_options_persistent()
54
+ {
55
+ return apply_filters('monsterinsights_frontend_tracking_options_persistent_gtag_before_pageview', []);
56
+ }
57
+
58
+ /**
59
+ * Get frontend tracking options for the gtag script.
60
+ *
61
+ * This function is used to return an array of parameters
62
+ * for the frontend_output() function to output. These are
63
+ * generally dimensions and turned on GA features.
64
+ *
65
+ * @param bool $encoded Whether to return a JavaScript object representation of the options
66
+ * @param mixed $type
67
+ *
68
+ * @return array|string options for the gtag config
69
+ *
70
+ * @since 7.15.0
71
+ */
72
+ public function frontend_tracking_options($type = 'ua', $encoded = false)
73
+ {
74
+ global $wp_query;
75
+ $options = [];
76
+
77
+ $tracking_ids = monsterinsights_get_tracking_ids();
78
+ if (empty($tracking_ids)) {
79
+ return $encoded ? wp_json_encode($options) : $options;
80
+ }
81
+
82
+ $placeholder = '';
83
+
84
+ if ($encoded) {
85
+ $placeholder = '!@#';
86
+ }
87
+
88
+ // $track_user = monsterinsights_track_user();
 
 
89
  //
90
+ // if ( ! $track_user ) {
91
+ // $options['create'] = "'create', '" . esc_js( $ua_code ) . "', '" . esc_js( 'auto' ) . "'";
92
+ // $options['forceSSL'] = "'set', 'forceSSL', true";
93
+ // $options['send'] = "'send','pageview'";
94
  //
95
+ // return $options;
96
+ // }
97
+
98
+ $cross_domains = monsterinsights_get_option('cross_domains', []);
99
+ $allow_anchor = monsterinsights_get_option('allow_anchor', false);
100
+
101
+ if ($allow_anchor) {
102
+ $options['allow_anchor'] = 'true';
103
+ }
104
+
105
+ if (class_exists('MonsterInsights_AMP')) {
106
+ $options['use_amp_client_id'] = 'true';
107
+ }
108
+
109
+ $options['forceSSL'] = 'true';
110
+
111
+ // Anonymous data.
112
+ if (monsterinsights_get_option('anonymize_ips', false)) {
113
+ $options['anonymize_ip'] = 'true';
114
+ }
115
+
116
+ $options = apply_filters('monsterinsights_frontend_tracking_options_gtag_before_scripts', $options);
117
+
118
+ // Add Enhanced link attribution.
119
+ if (monsterinsights_get_option('link_attribution', false)) {
120
+ $options['link_attribution'] = 'true';
121
+ }
122
+
123
+ // Add cross-domain tracking.
124
+ if (is_array($cross_domains) && !empty($cross_domains)) {
125
+ $linker_domains = [];
126
+ foreach ($cross_domains as $cross_domain) {
127
+ if (!empty($cross_domain['domain'])) {
128
+ $linker_domains[] = $cross_domain['domain'];
129
+ }
130
+ }
131
+ $options['linker'] = [
132
+ 'domains' => $linker_domains,
133
+ ];
134
+ }
135
+
136
+ if (monsterinsights_is_debug_mode()) {
137
+ $options['debug_mode'] = true;
138
+ }
139
+
140
+ $options = apply_filters('monsterinsights_frontend_tracking_options_gtag_before_pageview', $options, $type);
141
+ $options = apply_filters('monsterinsights_frontend_tracking_options_before_pageview', $options, $this->name, $this->version, $type);
142
+
143
+ if (is_404()) {
144
+ if (monsterinsights_get_option('hash_tracking', false)) {
145
+ $options['page_path'] = "{$placeholder}'/404.html?page=' + document.location.pathname + document.location.search + location.hash + '&from=' + document.referrer{$placeholder}";
146
+ } else {
147
+ $options['page_path'] = "{$placeholder}'/404.html?page=' + document.location.pathname + document.location.search + '&from=' + document.referrer{$placeholder}";
148
+ }
149
+ } elseif ($wp_query->is_search) {
150
+ $pushstr = "'/?s=";
151
+ if (0 === (int) $wp_query->found_posts) {
152
+ $options['page_path'] = $pushstr.'no-results:'.rawurlencode($wp_query->query_vars['s'])."&cat=no-results'";
153
+ } elseif (1 === (int) $wp_query->found_posts) {
154
+ $options['page_path'] = $pushstr.rawurlencode($wp_query->query_vars['s'])."&cat=1-result'";
155
+ } elseif ($wp_query->found_posts > 1 && $wp_query->found_posts < 6) {
156
+ $options['page_path'] = $pushstr.rawurlencode($wp_query->query_vars['s'])."&cat=2-5-results'";
157
+ } else {
158
+ $options['page_path'] = $pushstr.rawurlencode($wp_query->query_vars['s'])."&cat=plus-5-results'";
159
+ }
160
+ } elseif (monsterinsights_get_option('hash_tracking', false)) {
161
+ $options['page_path'] = "{$placeholder}location.pathname + location.search + location.hash{$placeholder}";
162
+ }
163
+
164
+ $options = apply_filters('monsterinsights_frontend_tracking_options_gtag_end', $options, $type);
165
+
166
+ if ($encoded) {
167
+ return str_replace(
168
+ ['"'.$placeholder, $placeholder.'"'],
169
+ '',
170
+ wp_json_encode($options)
171
+ );
172
+ }
173
+
174
+ return $options;
175
+ }
176
+
177
+ /**
178
+ * Get frontend output.
179
+ *
180
+ * This function is used to return the Javascript
181
+ * to output in the head of the page for the given
182
+ * tracking method.
183
+ *
184
+ * @return string javascript to output
185
+ *
186
+ * @since 7.15.0
187
+ */
188
+ public function frontend_output()
189
+ {
190
+ $options = $this->frontend_tracking_options('ua', true);
191
+ $options_v4 = $this->frontend_tracking_options('v4', true);
192
+ $persistent = $this->frontend_tracking_options_persistent();
193
+ $connected_type = MonsterInsights()->auth->get_connected_type();
194
+ $v4_id = monsterinsights_get_v4_id_to_output();
195
+ $ua = monsterinsights_get_ua_to_output();
196
+ $main_id = 'ua' === $connected_type ? $ua : $v4_id;
197
+ $src = apply_filters('monsterinsights_frontend_output_gtag_src', '//www.googletagmanager.com/gtag/js?id='.$main_id);
198
+ $compat_mode = apply_filters('monsterinsights_get_option_gtagtracker_compatibility_mode', true);
199
+ $compat = $compat_mode ? 'window.gtag = __gtagTracker;' : '';
200
+ $track_user = monsterinsights_track_user();
201
+ $output = '';
202
+ $reason = '';
203
+ $attr_string = monsterinsights_get_frontend_analytics_script_atts();
204
+ $gtag_async = apply_filters('monsterinsights_frontend_gtag_script_async', true) ? 'async' : '';
205
+ ob_start(); ?>
 
 
206
  <!-- This site uses the Google Analytics by MonsterInsights plugin v<?php echo MONSTERINSIGHTS_VERSION; ?> - Using Analytics tracking - https://www.monsterinsights.com/ -->
207
+ <?php if (!$track_user) {
208
+ if (empty($v4_id) && empty($ua)) {
209
+ $reason = __('Note: MonsterInsights is not currently configured on this site. The site owner needs to authenticate with Google Analytics in the MonsterInsights settings panel.', 'google-analytics-for-wordpress');
210
+ $output .= '<!-- '.esc_html($reason).' -->'.PHP_EOL;
211
+ } elseif (current_user_can('monsterinsights_save_settings')) {
212
+ $reason = __('Note: MonsterInsights does not track you as a logged-in site administrator to prevent site owners from accidentally skewing their own Google Analytics data.'.PHP_EOL.'If you are testing Google Analytics code, please do so either logged out or in the private browsing/incognito mode of your web browser.', 'google-analytics-for-wordpress');
213
+ $output .= '<!-- '.esc_html($reason).' -->'.PHP_EOL;
214
+ } else {
215
+ $reason = __('Note: The site owner has disabled Google Analytics tracking for your user role.', 'google-analytics-for-wordpress');
216
+ $output .= '<!-- '.esc_html($reason).' -->'.PHP_EOL;
217
+ }
218
+ echo $output;
219
+ } ?>
220
+ <?php if (!empty($v4_id) || !empty($ua)) { ?>
221
+ <script src="<?php echo esc_attr($src); ?>" <?php echo $attr_string; ?> <?php echo esc_attr($gtag_async); ?>></script>
222
  <script<?php echo $attr_string; ?>>
223
  var mi_version = '<?php echo MONSTERINSIGHTS_VERSION; ?>';
224
+ var mi_track_user = <?php echo $track_user ? 'true' : 'false'; ?>;
225
+ var mi_no_track_reason = <?php echo $reason ? "'".esc_js($reason)."'" : "''"; ?>;
226
+ <?php do_action('monsterinsights_tracking_gtag_frontend_output_after_mi_track_user'); ?>
227
 
228
+ <?php if ($this->should_do_optout()) { ?>
229
  var disableStrs = [
230
+ <?php if (!empty($v4_id)) { ?>
231
+ 'ga-disable-<?php echo esc_js($v4_id); ?>',
232
+ <?php } ?>
233
+ <?php if (!empty($ua)) { ?>
234
+ 'ga-disable-<?php echo esc_js($ua); ?>',
235
+ <?php } ?>
236
  ];
237
 
238
  /* Function to detect opted out users */
289
  }
290
 
291
  if ( type === 'event' ) {
292
+ <?php if ($v4_id) { ?>
293
  parameters.send_to = monsterinsights_frontend.v4_id;
294
  var hookName = name;
295
  if ( typeof parameters[ 'event_category' ] !== 'undefined' ) {
301
  } else {
302
  __gtagDataLayer( 'event', name, parameters );
303
  }
304
+ <?php } ?>
305
 
306
+ <?php if ($ua) { ?>
307
  parameters.send_to = monsterinsights_frontend.ua;
308
  __gtagDataLayer( type, name, parameters );
309
+ <?php } ?>
310
  } else {
311
  __gtagDataLayer.apply( null, arguments );
312
  }
315
  __gtagTracker( 'set', {
316
  'developer_id.dZGIzZG' : true,
317
  <?php
318
+ if (!empty($persistent)) {
319
+ foreach ($persistent as $key => $value) {
320
+ echo "'".esc_js($key)."' : '".esc_js($value)."',";
321
+ }
322
+ }
323
+ ?>
324
  } );
325
+ <?php if (!empty($v4_id)) { ?>
326
+ __gtagTracker( 'config', '<?php echo esc_js($v4_id); ?>', <?php echo $options_v4; ?> );
327
+ <?php } ?>
328
+ <?php if (!empty($ua)) { ?>
329
+ __gtagTracker( 'config', '<?php echo esc_js($ua); ?>', <?php echo $options; ?> );
330
  <?php
331
+ }
332
+ /*
333
+ * Extend or enhance the functionality by adding custom code to frontend
334
+ * tracking via this hook.
335
+ *
336
+ * @since 7.15.0
337
+ */
338
+ do_action('monsterinsights_frontend_tracking_gtag_after_pageview');
339
+ ?>
340
+ <?php echo esc_js($compat); ?>
341
+ <?php if (apply_filters('monsterinsights_tracking_gtag_frontend_gatracker_compatibility', true)) { ?>
342
+ (function () {
 
343
  /* https://developers.google.com/analytics/devguides/collection/analyticsjs/ */
344
  /* ga and __gaTracker compatibility shim. */
345
  var noopfn = function () {
424
  'title' : 'page_title',
425
  };
426
  for ( arg in args ) {
427
+ <?php // Note: we do || instead of && because FBIA can't encode && properly.?>
428
  if ( ! ( ! args.hasOwnProperty(arg) || ! gaMap.hasOwnProperty(arg) ) ) {
429
  hit[gaMap[arg]] = args[arg];
430
  } else {
447
  __gaTracker.remove = noopfn;
448
  __gaTracker.loaded = true;
449
  window['__gaTracker'] = __gaTracker;
450
+ })();
 
451
  <?php } ?>
452
  } else {
453
+ <?php if ($this->should_do_optout()) { ?>
454
+ console.log( "<?php echo esc_js($reason); ?>" );
455
  ( function () {
456
  function __gtagTracker() {
457
  return null;
467
  <?php } ?>
468
  <!-- / Google Analytics by MonsterInsights -->
469
  <?php
470
+ $output = ob_get_contents();
471
+ ob_end_clean();
472
 
473
+ return $output;
474
+ }
475
 
476
+ public function should_do_optout()
477
+ {
478
+ return !(defined('MI_NO_TRACKING_OPTOUT') && MI_NO_TRACKING_OPTOUT);
479
+ }
480
  }
includes/helpers.php CHANGED
@@ -1268,15 +1268,12 @@ function monsterinsights_detect_tracking_code_error( $body, $type = 'ua' ) {
1268
  return $errors;
1269
  }
1270
 
1271
- if (
1272
- ( $type === 'ua' && false === strpos( $body, '__gaTracker' ) ) ||
1273
- ( $type === 'v4' && false === strpos( $body, '__gtagTracker' ) )
1274
- ) {
1275
  $errors[] = $cache_error;
1276
  return $errors;
1277
  }
1278
 
1279
- $limit = 'gtag' === MonsterInsights()->get_tracking_mode() ? 3 : 2;
1280
 
1281
  // TODO: Need to re-evaluate this regularly when third party plugins start supporting v4
1282
  $limit += monsterinsights_count_third_party_ua_codes( $body, $type );
@@ -1695,7 +1692,8 @@ function monsterinsights_get_frontend_analytics_script_atts() {
1695
 
1696
  $attributes = apply_filters( 'monsterinsights_tracking_analytics_script_attributes', array(
1697
  'type' => "text/javascript",
1698
- 'data-cfasync' => 'false'
 
1699
  ) );
1700
 
1701
  if ( ! empty( $attributes ) ) {
1268
  return $errors;
1269
  }
1270
 
1271
+ if ( $type === 'v4' && false === strpos( $body, '__gtagTracker' ) ) {
 
 
 
1272
  $errors[] = $cache_error;
1273
  return $errors;
1274
  }
1275
 
1276
+ $limit = 3;
1277
 
1278
  // TODO: Need to re-evaluate this regularly when third party plugins start supporting v4
1279
  $limit += monsterinsights_count_third_party_ua_codes( $body, $type );
1692
 
1693
  $attributes = apply_filters( 'monsterinsights_tracking_analytics_script_attributes', array(
1694
  'type' => "text/javascript",
1695
+ 'data-cfasync' => 'false',
1696
+ 'data-wpfc-render' => 'false'
1697
  ) );
1698
 
1699
  if ( ! empty( $attributes ) ) {
languages/google-analytics-for-wordpress.pot CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the ExactMetrics Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: ExactMetrics Pro 7.2.0\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/monsterinsights-temp\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-11-03T15:05:06+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: google-analytics-for-wordpress\n"
@@ -82,16 +82,16 @@ msgstr ""
82
  msgid "Skip %s Deactivate"
83
  msgstr ""
84
 
85
- #: exactmetrics.php:255
86
- #: exactmetrics.php:269
87
- #: googleanalytics.php:280
88
- #: googleanalytics.php:294
89
  msgid "Cheatin&#8217; huh?"
90
  msgstr ""
91
 
92
  #. Translators: Adds a link to the plugins page.
93
- #: exactmetrics.php:419
94
- #: googleanalytics.php:441
95
  msgid "Please %1$suninstall%2$s the MonsterInsights Lite Plugin. Your Pro version of MonsterInsights may not work as expected until the Lite version is uninstalled."
96
  msgstr ""
97
 
@@ -119,14 +119,14 @@ msgstr ""
119
  #: includes/admin/admin.php:126
120
  #: includes/admin/em-admin.php:18
121
  #: includes/admin/em-admin.php:21
122
- #: languages/vue.php:214
123
  msgid "Insights"
124
  msgstr ""
125
 
126
  #: includes/admin/admin.php:34
127
  #: includes/admin/admin.php:42
128
  #: includes/admin/admin.php:222
129
- #: languages/vue.php:513
130
  msgid "Settings"
131
  msgstr ""
132
 
@@ -142,7 +142,7 @@ msgstr ""
142
 
143
  #: includes/admin/admin.php:39
144
  #: includes/admin/admin.php:130
145
- #: languages/vue.php:1848
146
  msgid "Reports"
147
  msgstr ""
148
 
@@ -152,7 +152,7 @@ msgstr ""
152
 
153
  #: includes/admin/admin.php:51
154
  #: languages/gutenberg.php:83
155
- #: languages/vue.php:1652
156
  msgid "Popular Posts"
157
  msgstr ""
158
 
@@ -186,7 +186,7 @@ msgstr ""
186
 
187
  #: includes/admin/admin.php:71
188
  #: includes/admin/admin.php:146
189
- #: languages/vue.php:495
190
  msgid "About Us"
191
  msgstr ""
192
 
@@ -204,7 +204,7 @@ msgstr ""
204
 
205
  #: includes/admin/admin.php:76
206
  #: includes/admin/notifications/notification-upgrade-to-pro.php:31
207
- #: languages/vue.php:1528
208
  msgid "Upgrade to Pro"
209
  msgstr ""
210
 
@@ -232,7 +232,7 @@ msgstr ""
232
 
233
  #: includes/admin/admin.php:212
234
  #: includes/admin/admin.php:215
235
- #: languages/vue.php:1677
236
  msgid "Support"
237
  msgstr ""
238
 
@@ -242,7 +242,7 @@ msgstr ""
242
  #: includes/admin/notifications/notification-upgrade-for-google-optimize.php:30
243
  #: includes/admin/notifications/notification-upgrade-for-search-console.php:30
244
  #: includes/admin/reports/abstract-report.php:418
245
- #: languages/vue.php:1525
246
  msgid "Get MonsterInsights Pro"
247
  msgstr ""
248
 
@@ -252,12 +252,12 @@ msgid "Please rate %1$sMonsterInsights%2$s on %3$s %4$sWordPress.org%5$s to help
252
  msgstr ""
253
 
254
  #: includes/admin/admin.php:324
255
- #: languages/vue.php:416
256
  msgid "Please Setup Website Analytics to See Audience Insights"
257
  msgstr ""
258
 
259
  #: includes/admin/admin.php:325
260
- #: languages/vue.php:422
261
  msgid "Connect MonsterInsights and Setup Website Analytics"
262
  msgstr ""
263
 
@@ -271,12 +271,12 @@ msgstr ""
271
  #: includes/admin/notifications/notification-mobile-device.php:39
272
  #: includes/admin/notifications/notification-returning-visitors.php:39
273
  #: includes/admin/notifications/notification-traffic-dropping.php:34
274
- #: languages/vue.php:425
275
  msgid "Learn More"
276
  msgstr ""
277
 
278
  #: includes/admin/admin.php:329
279
- #: languages/vue.php:419
280
  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 3 million website owners use MonsterInsights to see the stats that matter and grow their business."
281
  msgstr ""
282
 
@@ -287,17 +287,17 @@ msgstr ""
287
 
288
  #. Translators: Adds a link to the license renewal.
289
  #: includes/admin/admin.php:350
290
- #: languages/vue.php:572
291
  msgid "Your license key for MonsterInsights has expired. %1$sPlease click here to renew your license key.%2$s"
292
  msgstr ""
293
 
294
  #: includes/admin/admin.php:352
295
- #: languages/vue.php:575
296
  msgid "Your license key for MonsterInsights has been disabled. Please use a different key."
297
  msgstr ""
298
 
299
  #: includes/admin/admin.php:354
300
- #: languages/vue.php:578
301
  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."
302
  msgstr ""
303
 
@@ -355,7 +355,7 @@ msgid "Your Measurement Protocol API Secret is currently left blank, so you won'
355
  msgstr ""
356
 
357
  #: includes/admin/ajax.php:55
358
- #: includes/admin/routes.php:953
359
  #: lite/includes/admin/onboarding-wizard.php:244
360
  msgid "You are not allowed to install plugins"
361
  msgstr ""
@@ -497,12 +497,12 @@ msgid "To update, we recommend following this %1$sstep by step guide for updatin
497
  msgstr ""
498
 
499
  #: includes/admin/common.php:950
500
- msgid "View 2020 Year in Review report!"
501
  msgstr ""
502
 
503
  #: includes/admin/common.php:951
504
- #: languages/vue.php:916
505
- msgid "See how your website performed this year and find tips along the way to help grow even more in 2021!"
506
  msgstr ""
507
 
508
  #: includes/admin/licensing/autoupdate.php:58
@@ -529,8 +529,8 @@ msgid "Dismiss this notice"
529
  msgstr ""
530
 
531
  #: includes/admin/notification-event.php:229
532
- #: includes/admin/routes.php:859
533
- #: includes/admin/routes.php:1193
534
  msgid "You don't have permission to view MonsterInsights reports."
535
  msgstr ""
536
 
@@ -679,7 +679,7 @@ msgstr ""
679
  #. Translators: visitors notification title
680
  #. Translators: Number of visitors.
681
  #: includes/admin/notifications/notification-visitors.php:34
682
- #: languages/vue.php:259
683
  msgid "See how %s visitors found your site!"
684
  msgstr ""
685
 
@@ -809,7 +809,7 @@ msgid "Upgrading is easy! To upgrade, navigate to %1$ssour pricing page%2$s, pur
809
  msgstr ""
810
 
811
  #: includes/admin/reports/abstract-report.php:415
812
- #: languages/vue.php:309
813
  msgid "Upgrade Now"
814
  msgstr ""
815
 
@@ -818,7 +818,7 @@ msgid "Please ask your webmaster to enable this addon."
818
  msgstr ""
819
 
820
  #: includes/admin/reports/overview.php:34
821
- #: languages/vue.php:672
822
  msgid "Overview"
823
  msgstr ""
824
 
@@ -870,110 +870,110 @@ msgstr ""
870
  msgid "Easy digital downloads plugin."
871
  msgstr ""
872
 
873
- #: includes/admin/routes.php:387
874
  msgid "The best drag & drop WordPress form builder. Easily create beautiful contact forms, surveys, payment forms, and more with our 150+ form templates. Trusted by over 4 million websites as the best forms plugin"
875
  msgstr ""
876
 
877
- #: includes/admin/routes.php:398
878
  msgid "The original WordPress SEO plugin and toolkit that improves your website’s search rankings. Comes with all the SEO features like Local SEO, WooCommerce SEO, sitemaps, SEO optimizer, schema, and more."
879
  msgstr ""
880
 
881
- #: includes/admin/routes.php:409
882
  msgid "Instantly get more subscribers, leads, and sales with the #1 conversion optimization toolkit. Create high converting popups, announcement bars, spin a wheel, and more with smart targeting and personalization."
883
  msgstr ""
884
 
885
- #: includes/admin/routes.php:420
886
  msgid "Improve your WordPress email deliverability and make sure that your website emails reach user’s inbox with the #1 SMTP plugin for WordPress. Over 2 million websites use it to fix WordPress email issues."
887
  msgstr ""
888
 
889
- #: includes/admin/routes.php:430
890
  msgid "The fastest drag & drop landing page builder for WordPress. Create custom landing pages without writing code, connect them with your CRM, collect subscribers, and grow your audience. Trusted by 1 million sites."
891
  msgstr ""
892
 
893
- #: includes/admin/routes.php:441
894
  msgid "Turn your website visitors into brand ambassadors! Easily grow your email list, website traffic, and social media followers with the most powerful giveaways & contests plugin for WordPress."
895
  msgstr ""
896
 
897
- #: includes/admin/routes.php:452
898
  msgid "Boost your sales and conversions by up to 15% with real-time social proof notifications. TrustPulse helps you show live user activity and purchases to help convince other users to purchase."
899
  msgstr ""
900
 
901
- #: includes/admin/routes.php:462
902
  msgid "Easily display Instagram content on your WordPress site without writing any code. Comes with multiple templates, ability to show content from multiple accounts, hashtags, and more. Trusted by 1 million websites."
903
  msgstr ""
904
 
905
- #: includes/admin/routes.php:473
906
  msgid "Easily display Facebook content on your WordPress site without writing any code. Comes with multiple templates, ability to show content from multiple accounts, hashtags, and more. Trusted by 1 million websites."
907
  msgstr ""
908
 
909
- #: includes/admin/routes.php:484
910
  msgid "Connect with your visitors after they leave your website with the leading web push notification software. Over 10,000+ businesses worldwide use PushEngage to send 9 billion notifications each month."
911
  msgstr ""
912
 
913
- #: includes/admin/routes.php:494
914
  msgid "Pretty Links helps you shrink, beautify, track, manage and share any URL on or off of your WordPress website. Create links that look how you want using your own domain name!"
915
  msgstr ""
916
 
917
- #: includes/admin/routes.php:505
918
  msgid "ThirstyAffiliates is a revolution in affiliate link management. Collect, collate and store your affiliate links for use in your posts and pages."
919
  msgstr ""
920
 
921
- #: includes/admin/routes.php:517
922
  msgid "Advanced Coupons for WooCommerce (Free Version) gives WooCommerce store owners extra coupon features so they can market their stores better."
923
  msgstr ""
924
 
925
- #: includes/admin/routes.php:645
926
- #: includes/admin/routes.php:698
927
  msgid "Invalid UA code"
928
  msgstr ""
929
 
930
- #: includes/admin/routes.php:726
931
  msgid "Invalid dual tracking code"
932
  msgstr ""
933
 
934
- #: includes/admin/routes.php:805
935
  msgid "Please upload a valid .json file"
936
  msgstr ""
937
 
938
- #: includes/admin/routes.php:814
939
  msgid "Please upload a file to import"
940
  msgstr ""
941
 
942
- #: includes/admin/routes.php:871
943
- #: includes/admin/routes.php:1205
944
  msgid "You can't view MonsterInsights reports because you are not licensed."
945
  msgstr ""
946
 
947
- #: includes/admin/routes.php:872
948
- #: includes/admin/routes.php:1206
949
  msgid "Add your license"
950
  msgstr ""
951
 
952
- #: includes/admin/routes.php:879
953
- #: includes/admin/routes.php:1213
954
  msgid "You can't view MonsterInsights reports due to license key errors."
955
  msgstr ""
956
 
957
- #: includes/admin/routes.php:887
958
- #: includes/admin/routes.php:1221
959
  msgid "You must authenticate with MonsterInsights before you can view reports."
960
  msgstr ""
961
 
962
- #: includes/admin/routes.php:893
963
- #: includes/admin/routes.php:1227
964
  msgid "Unknown report. Try refreshing and retrying. Contact support if this issue persists."
965
  msgstr ""
966
 
967
- #: includes/admin/routes.php:941
968
- #: includes/admin/routes.php:1275
969
  msgid "We encountered an error when fetching the report data."
970
  msgstr ""
971
 
972
- #: includes/admin/routes.php:961
973
  msgid "Missing plugin name."
974
  msgstr ""
975
 
976
- #: includes/admin/routes.php:1105
977
  msgid "Homepage"
978
  msgstr ""
979
 
@@ -1068,27 +1068,27 @@ msgstr ""
1068
  msgid "Sent from %s"
1069
  msgstr ""
1070
 
1071
- #: includes/frontend/frontend.php:257
1072
  msgid "Tracking is Disabled for Administrators"
1073
  msgstr ""
1074
 
1075
  #. Translators: %s is the link to the article where more details about tracking are listed.
1076
- #: includes/frontend/frontend.php:267
1077
  msgid "To keep stats accurate, we do not load Google Analytics scripts for admin users. %1$sLearn More &raquo;%2$s"
1078
  msgstr ""
1079
 
1080
  #: includes/frontend/tracking/class-tracking-analytics.php:208
1081
- #: includes/frontend/tracking/class-tracking-gtag.php:214
1082
  msgid "Note: MonsterInsights is not currently configured on this site. The site owner needs to authenticate with Google Analytics in the MonsterInsights settings panel."
1083
  msgstr ""
1084
 
1085
  #: includes/frontend/tracking/class-tracking-analytics.php:211
1086
- #: includes/frontend/tracking/class-tracking-gtag.php:217
1087
  msgid "Note: MonsterInsights does not track you as a logged-in site administrator to prevent site owners from accidentally skewing their own Google Analytics data."
1088
  msgstr ""
1089
 
1090
  #: includes/frontend/tracking/class-tracking-analytics.php:214
1091
- #: includes/frontend/tracking/class-tracking-gtag.php:220
1092
  msgid "Note: The site owner has disabled Google Analytics tracking for your user role."
1093
  msgstr ""
1094
 
@@ -1311,7 +1311,7 @@ msgid "Question"
1311
  msgstr ""
1312
 
1313
  #: includes/gutenberg/headline-tool/headline-tool.php:290
1314
- #: languages/vue.php:519
1315
  msgid "General"
1316
  msgstr ""
1317
 
@@ -3541,12 +3541,12 @@ msgid "United States"
3541
  msgstr ""
3542
 
3543
  #: includes/helpers.php:376
3544
- #: includes/helpers.php:1730
3545
  msgid "Canada"
3546
  msgstr ""
3547
 
3548
  #: includes/helpers.php:377
3549
- #: includes/helpers.php:1775
3550
  msgid "United Kingdom"
3551
  msgstr ""
3552
 
@@ -3587,7 +3587,7 @@ msgid "Antarctica"
3587
  msgstr ""
3588
 
3589
  #: includes/helpers.php:387
3590
- #: includes/helpers.php:1723
3591
  msgid "Antigua and Barbuda"
3592
  msgstr ""
3593
 
@@ -3604,7 +3604,7 @@ msgid "Aruba"
3604
  msgstr ""
3605
 
3606
  #: includes/helpers.php:391
3607
- #: includes/helpers.php:1724
3608
  msgid "Australia"
3609
  msgstr ""
3610
 
@@ -3629,7 +3629,7 @@ msgid "Bangladesh"
3629
  msgstr ""
3630
 
3631
  #: includes/helpers.php:397
3632
- #: includes/helpers.php:1725
3633
  msgid "Barbados"
3634
  msgstr ""
3635
 
@@ -3642,7 +3642,7 @@ msgid "Belgium"
3642
  msgstr ""
3643
 
3644
  #: includes/helpers.php:400
3645
- #: includes/helpers.php:1726
3646
  msgid "Belize"
3647
  msgstr ""
3648
 
@@ -3671,7 +3671,7 @@ msgid "Bosnia and Herzegovina"
3671
  msgstr ""
3672
 
3673
  #: includes/helpers.php:407
3674
- #: includes/helpers.php:1727
3675
  msgid "Botswana"
3676
  msgstr ""
3677
 
@@ -3700,7 +3700,7 @@ msgid "Burkina Faso"
3700
  msgstr ""
3701
 
3702
  #: includes/helpers.php:414
3703
- #: includes/helpers.php:1728
3704
  msgid "Burundi"
3705
  msgstr ""
3706
 
@@ -3709,7 +3709,7 @@ msgid "Cambodia"
3709
  msgstr ""
3710
 
3711
  #: includes/helpers.php:416
3712
- #: includes/helpers.php:1729
3713
  msgid "Cameroon"
3714
  msgstr ""
3715
 
@@ -3802,7 +3802,7 @@ msgid "Djibouti"
3802
  msgstr ""
3803
 
3804
  #: includes/helpers.php:439
3805
- #: includes/helpers.php:1731
3806
  msgid "Dominica"
3807
  msgstr ""
3808
 
@@ -3851,7 +3851,7 @@ msgid "Faroe Islands"
3851
  msgstr ""
3852
 
3853
  #: includes/helpers.php:451
3854
- #: includes/helpers.php:1732
3855
  msgid "Fiji"
3856
  msgstr ""
3857
 
@@ -3880,7 +3880,7 @@ msgid "Gabon"
3880
  msgstr ""
3881
 
3882
  #: includes/helpers.php:458
3883
- #: includes/helpers.php:1735
3884
  msgid "Gambia"
3885
  msgstr ""
3886
 
@@ -3897,7 +3897,7 @@ msgid "Greece"
3897
  msgstr ""
3898
 
3899
  #: includes/helpers.php:462
3900
- #: includes/helpers.php:1736
3901
  msgid "Ghana"
3902
  msgstr ""
3903
 
@@ -3910,7 +3910,7 @@ msgid "Greenland"
3910
  msgstr ""
3911
 
3912
  #: includes/helpers.php:465
3913
- #: includes/helpers.php:1733
3914
  msgid "Grenada"
3915
  msgstr ""
3916
 
@@ -3939,7 +3939,7 @@ msgid "Guinea-Bissau"
3939
  msgstr ""
3940
 
3941
  #: includes/helpers.php:472
3942
- #: includes/helpers.php:1734
3943
  msgid "Guyana"
3944
  msgstr ""
3945
 
@@ -3972,7 +3972,7 @@ msgid "Iceland"
3972
  msgstr ""
3973
 
3974
  #: includes/helpers.php:480
3975
- #: includes/helpers.php:1738
3976
  msgid "India"
3977
  msgstr ""
3978
 
@@ -3989,7 +3989,7 @@ msgid "Iraq"
3989
  msgstr ""
3990
 
3991
  #: includes/helpers.php:484
3992
- #: includes/helpers.php:1737
3993
  msgid "Ireland"
3994
  msgstr ""
3995
 
@@ -4006,7 +4006,7 @@ msgid "Italy"
4006
  msgstr ""
4007
 
4008
  #: includes/helpers.php:488
4009
- #: includes/helpers.php:1739
4010
  msgid "Jamaica"
4011
  msgstr ""
4012
 
@@ -4027,12 +4027,12 @@ msgid "Kazakhstan"
4027
  msgstr ""
4028
 
4029
  #: includes/helpers.php:493
4030
- #: includes/helpers.php:1740
4031
  msgid "Kenya"
4032
  msgstr ""
4033
 
4034
  #: includes/helpers.php:494
4035
- #: includes/helpers.php:1741
4036
  msgid "Kiribati"
4037
  msgstr ""
4038
 
@@ -4057,12 +4057,12 @@ msgid "Lebanon"
4057
  msgstr ""
4058
 
4059
  #: includes/helpers.php:500
4060
- #: includes/helpers.php:1742
4061
  msgid "Lesotho"
4062
  msgstr ""
4063
 
4064
  #: includes/helpers.php:501
4065
- #: includes/helpers.php:1743
4066
  msgid "Liberia"
4067
  msgstr ""
4068
 
@@ -4095,7 +4095,7 @@ msgid "Madagascar"
4095
  msgstr ""
4096
 
4097
  #: includes/helpers.php:509
4098
- #: includes/helpers.php:1744
4099
  msgid "Malawi"
4100
  msgstr ""
4101
 
@@ -4112,12 +4112,12 @@ msgid "Mali"
4112
  msgstr ""
4113
 
4114
  #: includes/helpers.php:513
4115
- #: includes/helpers.php:1745
4116
  msgid "Malta"
4117
  msgstr ""
4118
 
4119
  #: includes/helpers.php:514
4120
- #: includes/helpers.php:1746
4121
  msgid "Marshall Islands"
4122
  msgstr ""
4123
 
@@ -4130,7 +4130,7 @@ msgid "Mauritania"
4130
  msgstr ""
4131
 
4132
  #: includes/helpers.php:517
4133
- #: includes/helpers.php:1747
4134
  msgid "Mauritius"
4135
  msgstr ""
4136
 
@@ -4143,7 +4143,7 @@ msgid "Mexico"
4143
  msgstr ""
4144
 
4145
  #: includes/helpers.php:520
4146
- #: includes/helpers.php:1748
4147
  msgid "Micronesia"
4148
  msgstr ""
4149
 
@@ -4180,12 +4180,12 @@ msgid "Myanmar"
4180
  msgstr ""
4181
 
4182
  #: includes/helpers.php:529
4183
- #: includes/helpers.php:1750
4184
  msgid "Namibia"
4185
  msgstr ""
4186
 
4187
  #: includes/helpers.php:530
4188
- #: includes/helpers.php:1751
4189
  msgid "Nauru"
4190
  msgstr ""
4191
 
@@ -4206,7 +4206,7 @@ msgid "New Caledonia"
4206
  msgstr ""
4207
 
4208
  #: includes/helpers.php:535
4209
- #: includes/helpers.php:1749
4210
  msgid "New Zealand"
4211
  msgstr ""
4212
 
@@ -4219,7 +4219,7 @@ msgid "Niger"
4219
  msgstr ""
4220
 
4221
  #: includes/helpers.php:538
4222
- #: includes/helpers.php:1752
4223
  msgid "Nigeria"
4224
  msgstr ""
4225
 
@@ -4248,12 +4248,12 @@ msgid "Oman"
4248
  msgstr ""
4249
 
4250
  #: includes/helpers.php:545
4251
- #: includes/helpers.php:1753
4252
  msgid "Pakistan"
4253
  msgstr ""
4254
 
4255
  #: includes/helpers.php:546
4256
- #: includes/helpers.php:1754
4257
  msgid "Palau"
4258
  msgstr ""
4259
 
@@ -4266,7 +4266,7 @@ msgid "Panama"
4266
  msgstr ""
4267
 
4268
  #: includes/helpers.php:549
4269
- #: includes/helpers.php:1755
4270
  msgid "Papua New Guinea"
4271
  msgstr ""
4272
 
@@ -4279,7 +4279,7 @@ msgid "Peru"
4279
  msgstr ""
4280
 
4281
  #: includes/helpers.php:552
4282
- #: includes/helpers.php:1756
4283
  msgid "Philippines"
4284
  msgstr ""
4285
 
@@ -4320,7 +4320,7 @@ msgid "Russian Federation"
4320
  msgstr ""
4321
 
4322
  #: includes/helpers.php:562
4323
- #: includes/helpers.php:1757
4324
  msgid "Rwanda"
4325
  msgstr ""
4326
 
@@ -4377,17 +4377,17 @@ msgid "Serbia"
4377
  msgstr ""
4378
 
4379
  #: includes/helpers.php:576
4380
- #: includes/helpers.php:1764
4381
  msgid "Seychelles"
4382
  msgstr ""
4383
 
4384
  #: includes/helpers.php:577
4385
- #: includes/helpers.php:1765
4386
  msgid "Sierra Leone"
4387
  msgstr ""
4388
 
4389
  #: includes/helpers.php:578
4390
- #: includes/helpers.php:1758
4391
  msgid "Singapore"
4392
  msgstr ""
4393
 
@@ -4400,7 +4400,7 @@ msgid "Slovenia"
4400
  msgstr ""
4401
 
4402
  #: includes/helpers.php:581
4403
- #: includes/helpers.php:1766
4404
  msgid "Solomon Islands"
4405
  msgstr ""
4406
 
@@ -4409,7 +4409,7 @@ msgid "Somalia"
4409
  msgstr ""
4410
 
4411
  #: includes/helpers.php:583
4412
- #: includes/helpers.php:1767
4413
  msgid "South Africa"
4414
  msgstr ""
4415
 
@@ -4422,7 +4422,7 @@ msgid "South Korea"
4422
  msgstr ""
4423
 
4424
  #: includes/helpers.php:586
4425
- #: includes/helpers.php:1768
4426
  msgid "South Sudan"
4427
  msgstr ""
4428
 
@@ -4435,7 +4435,7 @@ msgid "Sri Lanka"
4435
  msgstr ""
4436
 
4437
  #: includes/helpers.php:589
4438
- #: includes/helpers.php:1769
4439
  msgid "Sudan"
4440
  msgstr ""
4441
 
@@ -4448,7 +4448,7 @@ msgid "Svalbard and Jan Mayen Islands"
4448
  msgstr ""
4449
 
4450
  #: includes/helpers.php:592
4451
- #: includes/helpers.php:1762
4452
  msgid "Swaziland"
4453
  msgstr ""
4454
 
@@ -4473,7 +4473,7 @@ msgid "Tajikistan"
4473
  msgstr ""
4474
 
4475
  #: includes/helpers.php:598
4476
- #: includes/helpers.php:1772
4477
  msgid "Tanzania"
4478
  msgstr ""
4479
 
@@ -4494,12 +4494,12 @@ msgid "Tokelau"
4494
  msgstr ""
4495
 
4496
  #: includes/helpers.php:603
4497
- #: includes/helpers.php:1773
4498
  msgid "Tonga"
4499
  msgstr ""
4500
 
4501
  #: includes/helpers.php:604
4502
- #: includes/helpers.php:1770
4503
  msgid "Trinidad and Tobago"
4504
  msgstr ""
4505
 
@@ -4520,12 +4520,12 @@ msgid "Turks and Caicos Islands"
4520
  msgstr ""
4521
 
4522
  #: includes/helpers.php:609
4523
- #: includes/helpers.php:1774
4524
  msgid "Tuvalu"
4525
  msgstr ""
4526
 
4527
  #: includes/helpers.php:610
4528
- #: includes/helpers.php:1777
4529
  msgid "Uganda"
4530
  msgstr ""
4531
 
@@ -4550,7 +4550,7 @@ msgid "Uzbekistan"
4550
  msgstr ""
4551
 
4552
  #: includes/helpers.php:616
4553
- #: includes/helpers.php:1778
4554
  msgid "Vanuatu"
4555
  msgstr ""
4556
 
@@ -4587,12 +4587,12 @@ msgid "Yemen"
4587
  msgstr ""
4588
 
4589
  #: includes/helpers.php:625
4590
- #: includes/helpers.php:1779
4591
  msgid "Zambia"
4592
  msgstr ""
4593
 
4594
  #: includes/helpers.php:626
4595
- #: includes/helpers.php:1780
4596
  msgid "Zimbabwe"
4597
  msgstr ""
4598
 
@@ -4606,31 +4606,31 @@ msgid "%1$sWe noticed you're using a caching plugin or caching from your hosting
4606
  msgstr ""
4607
 
4608
  #. Translators: The placeholders are for making the "We have detected multiple tracking codes" text bold & adding a link to support.
4609
- #: includes/helpers.php:1302
4610
  msgid "%1$sWe have detected multiple tracking codes%2$s! You should remove non-MonsterInsights ones. If you need help finding them please %3$sread this article%4$s."
4611
  msgstr ""
4612
 
4613
- #: includes/helpers.php:1759
4614
  msgid "St Kitts and Nevis"
4615
  msgstr ""
4616
 
4617
- #: includes/helpers.php:1760
4618
  msgid "St Lucia"
4619
  msgstr ""
4620
 
4621
- #: includes/helpers.php:1761
4622
  msgid "St Vincent and the Grenadines"
4623
  msgstr ""
4624
 
4625
- #: includes/helpers.php:1763
4626
  msgid "Samoa"
4627
  msgstr ""
4628
 
4629
- #: includes/helpers.php:1771
4630
  msgid "The Bahamas"
4631
  msgstr ""
4632
 
4633
- #: includes/helpers.php:1776
4634
  msgid "United States of America"
4635
  msgstr ""
4636
 
@@ -4711,7 +4711,7 @@ msgid "Theme"
4711
  msgstr ""
4712
 
4713
  #: languages/gutenberg.php:77
4714
- #: languages/vue.php:504
4715
  msgid "Inline Popular Posts"
4716
  msgstr ""
4717
 
@@ -4748,7 +4748,7 @@ msgid "Comment Color"
4748
  msgstr ""
4749
 
4750
  #: languages/gutenberg.php:107
4751
- #: languages/vue.php:2527
4752
  msgid "Wide-Layout Options"
4753
  msgstr ""
4754
 
@@ -4757,12 +4757,12 @@ msgid "Choose Layout"
4757
  msgstr ""
4758
 
4759
  #: languages/gutenberg.php:113
4760
- #: languages/vue.php:2530
4761
  msgid "Adjust the number of columns displayed when the widget is placed in a wide container."
4762
  msgstr ""
4763
 
4764
  #: languages/gutenberg.php:116
4765
- #: languages/vue.php:2551
4766
  msgid "Post Count"
4767
  msgstr ""
4768
 
@@ -4771,7 +4771,7 @@ msgid "Number of posts displayed."
4771
  msgstr ""
4772
 
4773
  #: languages/gutenberg.php:122
4774
- #: languages/vue.php:2533
4775
  msgid "Display Options"
4776
  msgstr ""
4777
 
@@ -4784,7 +4784,7 @@ msgid "Display Widget Title"
4784
  msgstr ""
4785
 
4786
  #: languages/gutenberg.php:131
4787
- #: languages/vue.php:1998
4788
  msgid "Widget Title"
4789
  msgstr ""
4790
 
@@ -4793,17 +4793,17 @@ msgid "Only Show Posts From These Categories"
4793
  msgstr ""
4794
 
4795
  #: languages/gutenberg.php:137
4796
- #: languages/vue.php:2539
4797
  msgid "Display Author"
4798
  msgstr ""
4799
 
4800
  #: languages/gutenberg.php:140
4801
- #: languages/vue.php:2542
4802
  msgid "Display Date"
4803
  msgstr ""
4804
 
4805
  #: languages/gutenberg.php:143
4806
- #: languages/vue.php:2545
4807
  msgid "Display Comments"
4808
  msgstr ""
4809
 
@@ -5024,7 +5024,7 @@ msgid "Goal: "
5024
  msgstr ""
5025
 
5026
  #: languages/gutenberg.php:312
5027
- #: languages/vue.php:1631
5028
  msgid "Headline Analyzer"
5029
  msgstr ""
5030
 
@@ -5044,606 +5044,605 @@ msgstr ""
5044
  msgid "2"
5045
  msgstr ""
5046
 
5047
- #: languages/vue.php:12
5048
  msgid "Error"
5049
  msgstr ""
5050
 
5051
- #: languages/vue.php:15
5052
  msgid "Please try again."
5053
  msgstr ""
5054
 
5055
- #: languages/vue.php:18
5056
- msgid "Loading settings"
5057
  msgstr ""
5058
 
5059
- #: languages/vue.php:21
5060
- msgid "Refreshing Report"
5061
  msgstr ""
5062
 
5063
- #: languages/vue.php:24
5064
- msgid "Loading new report data..."
5065
  msgstr ""
5066
 
5067
- #: languages/vue.php:27
5068
- msgid "Unlock the Publishers Report and Focus on the Content that Matters"
5069
  msgstr ""
5070
 
5071
- #: languages/vue.php:30
5072
- 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."
5073
  msgstr ""
5074
 
5075
  #: languages/vue.php:33
5076
- msgid "Unlock the Publishers Report and Focus on the Content That Matters"
5077
  msgstr ""
5078
 
5079
  #: languages/vue.php:36
5080
- 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."
5081
  msgstr ""
5082
 
5083
  #: languages/vue.php:39
5084
- msgid "See Your Top Landing Pages to Improve Engagement"
5085
- msgstr ""
5086
-
5087
- #: languages/vue.php:42
5088
- msgid "See Your Top Exit Pages to Reduce Abandonment"
5089
  msgstr ""
5090
 
5091
- #: languages/vue.php:45
5092
- msgid "See Your Top Outbound Links to Find New Revenue Opportunities"
5093
  msgstr ""
5094
 
5095
- #: languages/vue.php:48
5096
- msgid "See Your Top Affiliate Links and Focus on What's Working"
 
5097
  msgstr ""
5098
 
5099
- #: languages/vue.php:51
5100
- msgid "See Your Top Downloads and Improve Conversions"
5101
  msgstr ""
5102
 
5103
- #: languages/vue.php:54
5104
- msgid "See Audience Demographic Report ( Age / Gender / Interests )"
5105
  msgstr ""
5106
 
5107
- #: languages/vue.php:57
5108
- msgid "Unlock the eCommerce Report and See Your Important Store Metrics"
5109
  msgstr ""
5110
 
5111
- #: languages/vue.php:60
5112
- 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."
5113
  msgstr ""
5114
 
5115
- #: languages/vue.php:63
5116
- msgid "See Your Conversion Rate to Improve Your Funnel"
5117
  msgstr ""
5118
 
5119
- #: languages/vue.php:66
5120
- msgid "See The Number of Transactions and Make Data-Driven Decisions"
5121
  msgstr ""
5122
 
5123
- #: languages/vue.php:69
5124
- msgid "See The Total Revenue to Track Growth"
5125
  msgstr ""
5126
 
5127
- #: languages/vue.php:72
5128
- msgid "See Average Order Value to Find Offer Opportunities"
5129
  msgstr ""
5130
 
5131
- #: languages/vue.php:75
5132
- msgid "See Your Top Products to See Individual Performance"
5133
  msgstr ""
5134
 
5135
- #: languages/vue.php:78
5136
- msgid "See Your Top Conversion Sources and Focus on What's Working"
5137
  msgstr ""
5138
 
5139
- #: languages/vue.php:81
5140
- msgid "See The Time it Takes for Customers to Purchase"
5141
  msgstr ""
5142
 
5143
- #: languages/vue.php:84
5144
- msgid "See How Many Sessions are Needed for a Purchase"
5145
  msgstr ""
5146
 
5147
- #: languages/vue.php:87
5148
- msgid "Unlock the Dimensions Report and Track Your Own Custom Data"
5149
  msgstr ""
5150
 
5151
- #: languages/vue.php:90
5152
- 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."
5153
  msgstr ""
5154
 
5155
- #: languages/vue.php:93
5156
- msgid "See Which Authors Generate the Most Traffic"
5157
  msgstr ""
5158
 
5159
- #: languages/vue.php:96
5160
- msgid "See Which Post Types Perform Better"
5161
  msgstr ""
5162
 
5163
- #: languages/vue.php:99
5164
- msgid "See Which Categories are the Most Popular"
5165
  msgstr ""
5166
 
5167
- #: languages/vue.php:102
5168
- msgid "See Your Blog's Most Popular SEO Scores"
5169
  msgstr ""
5170
 
5171
- #: languages/vue.php:105
5172
- msgid "See Which Focus Keyword is Performing Better in Search Engines"
5173
  msgstr ""
5174
 
 
5175
  #: languages/vue.php:108
5176
- msgid "Unlock the Forms Report and Improve Conversions"
5177
  msgstr ""
5178
 
5179
  #: languages/vue.php:111
5180
- 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."
5181
  msgstr ""
5182
 
5183
  #: languages/vue.php:114
5184
- msgid "See Reports for Any Contact Form Plugin or Sign-up Form"
5185
  msgstr ""
5186
 
5187
  #: languages/vue.php:117
5188
- msgid "See Your Top Converting Forms and Optimize"
5189
  msgstr ""
5190
 
5191
  #: languages/vue.php:120
5192
- msgid "See Your Forms Impressions Count to Find the Best Placement"
5193
  msgstr ""
5194
 
5195
  #: languages/vue.php:123
5196
- msgid "Unlock the Search Console Report and See How People Find Your Website"
5197
  msgstr ""
5198
 
5199
  #: languages/vue.php:126
5200
- msgid "See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more."
5201
  msgstr ""
5202
 
5203
  #: languages/vue.php:129
5204
- msgid "See Your Top Google Search Terms and Optimize Content"
5205
  msgstr ""
5206
 
5207
  #: languages/vue.php:132
5208
- msgid "See The Number of Clicks and Track Interests"
5209
  msgstr ""
5210
 
5211
  #: languages/vue.php:135
5212
- msgid "See The Click-Through-Ratio and Improve SEO"
5213
  msgstr ""
5214
 
5215
  #: languages/vue.php:138
5216
- msgid "See The Average Results Position and Focus on what works"
5217
  msgstr ""
5218
 
5219
  #: languages/vue.php:141
5220
- msgid "Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time"
5221
  msgstr ""
5222
 
5223
  #: languages/vue.php:144
5224
- 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."
5225
  msgstr ""
5226
 
5227
  #: languages/vue.php:147
5228
- msgid "See Your Active Visitors and Track Their Behaviour to Optimize"
5229
  msgstr ""
5230
 
5231
  #: languages/vue.php:150
5232
- msgid "See Your Top Pages Immediately After Making Changes"
5233
  msgstr ""
5234
 
5235
  #: languages/vue.php:153
5236
- msgid "See Your Top Referral Sources and Adapt Faster"
5237
  msgstr ""
5238
 
5239
  #: languages/vue.php:156
5240
- msgid "See Your Traffic Demographics"
5241
  msgstr ""
5242
 
5243
  #: languages/vue.php:159
5244
- msgid "Get Fresh Report Data Every 60 Seconds"
5245
  msgstr ""
5246
 
5247
  #: languages/vue.php:162
5248
- msgid "Unlock the Site Speed Report and Improve the Performance of Your Site"
5249
  msgstr ""
5250
 
5251
  #: languages/vue.php:165
5252
- msgid "See How Your Homepage Performs According to Google’s Own Criteria and See How You Can Improve to Increase Your Ranking"
5253
  msgstr ""
5254
 
5255
  #: languages/vue.php:168
5256
- msgid "See Your Homepage's Overall Performance Score"
5257
  msgstr ""
5258
 
5259
  #: languages/vue.php:171
5260
- msgid "Run an Audit on Your Homepage and See Your Server Response Time"
5261
  msgstr ""
5262
 
5263
  #: languages/vue.php:174
5264
- msgid "Learn How Long It Takes for Your Viewers to Interact With Your Site"
5265
  msgstr ""
5266
 
5267
  #: languages/vue.php:177
5268
- msgid "Learn How to Improve the Core Metrics that Google Uses to Rank Your Site"
5269
  msgstr ""
5270
 
5271
  #: languages/vue.php:180
5272
- msgid "Today"
5273
  msgstr ""
5274
 
5275
  #: languages/vue.php:183
5276
- msgid "Yesterday"
5277
  msgstr ""
5278
 
5279
  #: languages/vue.php:186
5280
- msgid "Last Week"
5281
  msgstr ""
5282
 
5283
  #: languages/vue.php:189
5284
- msgid "Last Month"
5285
  msgstr ""
5286
 
5287
  #: languages/vue.php:192
5288
- msgid "Last 7 days"
5289
  msgstr ""
5290
 
5291
  #: languages/vue.php:195
5292
- msgid "Last 30 days"
5293
  msgstr ""
5294
 
5295
  #: languages/vue.php:198
5296
- msgid "Loading Settings"
5297
  msgstr ""
5298
 
5299
  #: languages/vue.php:201
5300
- msgid "Saving Changes..."
5301
  msgstr ""
5302
 
5303
  #: languages/vue.php:204
5304
- msgid "Settings Updated"
5305
- msgstr ""
5306
-
5307
- #. Translators: Adds a link to the settings panel.
5308
- #: languages/vue.php:208
5309
- msgid "You need to %1$sconnect MonsterInsights%2$s first"
5310
- msgstr ""
5311
-
5312
- #: languages/vue.php:211
5313
- msgid "Could Not Save Changes"
5314
- msgstr ""
5315
-
5316
- #: languages/vue.php:217
5317
- msgid "Loading new report data"
5318
- msgstr ""
5319
-
5320
- #: languages/vue.php:220
5321
- msgid "Please wait..."
5322
- msgstr ""
5323
-
5324
- #. Translators: Adds an arrow icon.
5325
- #: languages/vue.php:224
5326
- msgid "Continue %s"
5327
- msgstr ""
5328
-
5329
- #: languages/vue.php:227
5330
- msgid "Increase your sales & revenue with insights. ExactMetrics answers all your top eCommerce questions using metrics like total revenue, conversion rate, average order value, top products, top referral sources and more."
5331
- msgstr ""
5332
-
5333
- #. Translators: Current PHP version and recommended PHP version.
5334
- #: languages/vue.php:231
5335
- 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."
5336
  msgstr ""
5337
 
5338
- #. Translators: Current WordPress version.
5339
- #: languages/vue.php:235
5340
- 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."
5341
  msgstr ""
5342
 
5343
- #: languages/vue.php:238
5344
- msgid "Yikes! PHP Update Required"
5345
  msgstr ""
5346
 
5347
- #. Translators: Current PHP version and recommended PHP version.
5348
- #: languages/vue.php:242
5349
- 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."
5350
  msgstr ""
5351
 
5352
- #: languages/vue.php:245
5353
- msgid "Learn more about updating PHP"
5354
  msgstr ""
5355
 
5356
- #: languages/vue.php:248
5357
- msgid "Yikes! WordPress Update Required"
5358
  msgstr ""
5359
 
5360
- #. Translators: Current WordPress version.
5361
- #: languages/vue.php:252
5362
- 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."
5363
  msgstr ""
5364
 
5365
- #: languages/vue.php:255
5366
- msgid "Learn more about updating WordPress"
5367
  msgstr ""
5368
 
5369
  #. Translators: Number of visitors.
5370
- #: languages/vue.php:263
5371
  msgid "Your website was visited by %s users in the last 30 days."
5372
  msgstr ""
5373
 
5374
- #: languages/vue.php:266
5375
  msgid "See the full analytics report!"
5376
  msgstr ""
5377
 
5378
- #: languages/vue.php:269
5379
- msgid "Overview Report"
5380
- msgstr ""
5381
-
5382
- #: languages/vue.php:272
5383
  msgid "Congratulations! "
5384
  msgstr ""
5385
 
5386
- #: languages/vue.php:275
5387
  msgid "You Successfully Unlocked the most powerful Analytics plugin"
5388
  msgstr ""
5389
 
5390
- #: languages/vue.php:278
 
 
 
 
5391
  #: lite/includes/admin/welcome.php:56
5392
  #: lite/includes/admin/welcome.php:57
5393
  msgid "Welcome to MonsterInsights"
5394
  msgstr ""
5395
 
5396
- #: languages/vue.php:281
5397
  msgid "Thank you for choosing MonsterInsights - The Most Powerful WordPress Analytics Plugin"
5398
  msgstr ""
5399
 
5400
- #: languages/vue.php:284
5401
  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."
5402
  msgstr ""
5403
 
5404
- #: languages/vue.php:287
5405
  msgid "Launch the Wizard!"
5406
  msgstr ""
5407
 
5408
- #: languages/vue.php:290
5409
  msgid "Read the Full Guide"
5410
  msgstr ""
5411
 
5412
- #: languages/vue.php:293
5413
  msgid "MonsterInsights Features & Addons"
5414
  msgstr ""
5415
 
5416
- #: languages/vue.php:296
5417
  msgid "Here are the features that make MonsterInsights the most powerful and user-friendly WordPress analytics plugin in the market."
5418
  msgstr ""
5419
 
5420
- #: languages/vue.php:299
5421
  msgid "See All Features"
5422
  msgstr ""
5423
 
5424
- #: languages/vue.php:302
5425
  msgid "Upgrade to PRO"
5426
  msgstr ""
5427
 
5428
- #: languages/vue.php:305
5429
  msgid "per year"
5430
  msgstr ""
5431
 
5432
- #: languages/vue.php:312
5433
  msgid "Testimonials"
5434
  msgstr ""
5435
 
5436
- #: languages/vue.php:315
5437
  msgid "Universal Tracking"
5438
  msgstr ""
5439
 
5440
- #: languages/vue.php:318
5441
  msgid "Setup universal website tracking across devices and campaigns with just a few clicks (without any code)."
5442
  msgstr ""
5443
 
5444
- #: languages/vue.php:321
5445
  msgid "Google Analytics Dashboard"
5446
  msgstr ""
5447
 
5448
- #: languages/vue.php:324
5449
  msgid "See your website analytics report right inside your WordPress dashboard with actionable insights."
5450
  msgstr ""
5451
 
5452
- #: languages/vue.php:327
5453
  msgid "Real-time Stats"
5454
  msgstr ""
5455
 
5456
- #: languages/vue.php:330
5457
  msgid "Get real-time stats right inside WordPress to see who is online, what are they doing, and more."
5458
  msgstr ""
5459
 
5460
- #: languages/vue.php:333
5461
  msgid "Enhanced Ecommerce Tracking"
5462
  msgstr ""
5463
 
5464
- #: languages/vue.php:336
5465
  msgid "1-click Google Analytics Enhanced Ecommerce tracking for WooCommerce, Easy Digital Downloads & MemberPress."
5466
  msgstr ""
5467
 
5468
- #: languages/vue.php:339
5469
  msgid "Page Level Analytics"
5470
  msgstr ""
5471
 
5472
- #: languages/vue.php:342
5473
  msgid "Get detailed stats for each post and page, so you can see the most popular posts, pages, and sections of your site."
5474
  msgstr ""
5475
 
5476
- #: languages/vue.php:345
5477
  msgid "Affiliate Link & Ads Tracking"
5478
  msgstr ""
5479
 
5480
- #: languages/vue.php:348
5481
  msgid "Automatically track clicks on your affiliate links, banner ads, and other outbound links with our link tracking."
5482
  msgstr ""
5483
 
5484
- #: languages/vue.php:351
5485
  msgid "EU Compliance (GDPR Friendly)"
5486
  msgstr ""
5487
 
5488
- #: languages/vue.php:354
5489
  msgid "Make Google Analytics compliant with GDPR and other privacy regulations automatically."
5490
  msgstr ""
5491
 
5492
- #: languages/vue.php:357
5493
  msgid "Setup tracking for authors, categories, tags, searches, custom post types, users, and other events with 1-click."
5494
  msgstr ""
5495
 
5496
- #: languages/vue.php:360
5497
  msgid "Ecommerce Report"
5498
  msgstr ""
5499
 
5500
- #: languages/vue.php:364
5501
  msgid "Form Conversions"
5502
  msgstr ""
5503
 
5504
- #: languages/vue.php:367
5505
  msgid "Custom Dimensions"
5506
  msgstr ""
5507
 
5508
- #: languages/vue.php:371
5509
  msgid "Author Tracking"
5510
  msgstr ""
5511
 
5512
- #: languages/vue.php:374
5513
  msgid "Google Optimize"
5514
  msgstr ""
5515
 
5516
- #: languages/vue.php:377
5517
  msgid "Category / Tags Tracking"
5518
  msgstr ""
5519
 
5520
- #: languages/vue.php:380
5521
  msgid "WooCommerce"
5522
  msgstr ""
5523
 
5524
- #: languages/vue.php:383
5525
  msgid "Easy Digital Downloads"
5526
  msgstr ""
5527
 
5528
- #: languages/vue.php:386
5529
  msgid "MemberPress"
5530
  msgstr ""
5531
 
5532
- #: languages/vue.php:389
5533
  msgid "LifterLMS"
5534
  msgstr ""
5535
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5536
  #: languages/vue.php:392
5537
- msgid "Publishers Report"
5538
  msgstr ""
5539
 
5540
  #: languages/vue.php:395
5541
- msgid "eCommerce Report"
5542
  msgstr ""
5543
 
5544
  #: languages/vue.php:398
5545
- msgid "Search Console Report"
5546
  msgstr ""
5547
 
5548
  #: languages/vue.php:401
5549
- msgid "Dimensions Report"
5550
  msgstr ""
5551
 
5552
  #: languages/vue.php:404
5553
- msgid "Forms Report"
5554
  msgstr ""
5555
 
5556
  #: languages/vue.php:407
5557
- msgid "Real-Time Report"
5558
  msgstr ""
5559
 
5560
  #: languages/vue.php:410
5561
- msgid "Site Speed Report"
5562
  msgstr ""
5563
 
5564
  #: languages/vue.php:413
5565
- msgid "2020 Year in Review"
5566
  msgstr ""
5567
 
5568
- #: languages/vue.php:428
5569
- msgid "Powered by MonsterInsights"
5570
  msgstr ""
5571
 
5572
- #. Translators: Error status and error text.
5573
- #: languages/vue.php:432
5574
- msgid "Can't load report data. Error: %1$s, %2$s"
5575
  msgstr ""
5576
 
5577
- #: languages/vue.php:435
5578
- msgid "Error loading report data"
 
5579
  msgstr ""
5580
 
5581
- #: languages/vue.php:438
5582
- msgid "MonsterInsights encountered an error loading your report data"
5583
  msgstr ""
5584
 
5585
- #: languages/vue.php:441
5586
- msgid "There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating."
5587
  msgstr ""
5588
 
5589
- #: languages/vue.php:444
5590
- msgid "Reconnect MonsterInsights"
5591
  msgstr ""
5592
 
5593
- #: languages/vue.php:447
5594
- msgid "Re-Authenticating"
 
 
 
 
 
5595
  msgstr ""
5596
 
 
 
 
 
 
 
5597
  #: languages/vue.php:450
5598
- msgid "Ok"
5599
  msgstr ""
5600
 
5601
  #: languages/vue.php:453
5602
- msgid "Inbox"
5603
  msgstr ""
5604
 
5605
  #: languages/vue.php:456
5606
- msgid "Back to Inbox"
5607
  msgstr ""
5608
 
5609
  #: languages/vue.php:459
5610
- msgid "View Dismissed"
5611
  msgstr ""
5612
 
5613
  #: languages/vue.php:462
5614
- msgid "Notifications"
5615
  msgstr ""
5616
 
5617
  #: languages/vue.php:465
5618
- msgid "Dismiss All"
5619
  msgstr ""
5620
 
5621
  #: languages/vue.php:468
5622
- msgid "Dismissed"
5623
  msgstr ""
5624
 
5625
  #: languages/vue.php:471
5626
- msgid "No Notifications"
5627
  msgstr ""
5628
 
5629
  #: languages/vue.php:474
5630
- msgid "See Quick Links"
5631
  msgstr ""
5632
 
5633
  #: languages/vue.php:477
5634
- msgid "Suggest a Feature"
5635
- msgstr ""
5636
-
5637
- #: languages/vue.php:480
5638
- msgid "Join Our Community"
5639
- msgstr ""
5640
-
5641
- #: languages/vue.php:483
5642
- msgid "Support & Docs"
5643
- msgstr ""
5644
-
5645
- #: languages/vue.php:486
5646
- msgid "Upgrade to Pro &#187;"
5647
  msgstr ""
5648
 
5649
  #: languages/vue.php:489
@@ -5654,3793 +5653,4047 @@ msgstr ""
5654
  msgid "PrettyLinks Integration"
5655
  msgstr ""
5656
 
5657
- #: languages/vue.php:498
5658
  msgid "Getting Started"
5659
  msgstr ""
5660
 
5661
- #: languages/vue.php:501
5662
  msgid "Lite vs Pro"
5663
  msgstr ""
5664
 
5665
- #: languages/vue.php:507
5666
  msgid "Popular Posts Widget"
5667
  msgstr ""
5668
 
5669
- #: languages/vue.php:510
5670
  msgid "Popular Products"
5671
  msgstr ""
5672
 
5673
- #: languages/vue.php:516
5674
  msgid "Sub menu item for WooCommerce Analytics"
5675
  msgstr ""
5676
 
5677
- #: languages/vue.php:522
5678
  msgid "Engagement"
5679
  msgstr ""
5680
 
5681
- #: languages/vue.php:525
5682
  #: lite/includes/admin/reports/report-ecommerce.php:22
5683
  msgid "eCommerce"
5684
  msgstr ""
5685
 
5686
- #: languages/vue.php:528
5687
  msgid "Publisher"
5688
  msgstr ""
5689
 
5690
- #: languages/vue.php:531
5691
  msgid "Conversions"
5692
  msgstr ""
5693
 
5694
- #: languages/vue.php:534
5695
  msgid "Advanced"
5696
  msgstr ""
5697
 
5698
- #: languages/vue.php:537
5699
- msgid "URL Builder"
5700
- msgstr ""
5701
-
5702
- #. Translators: Placeholder is replaced with WPForms.
5703
  #: languages/vue.php:541
5704
- msgid "Recommended Plugin: %s"
5705
  msgstr ""
5706
 
5707
  #: languages/vue.php:544
5708
- msgid "Install"
5709
  msgstr ""
5710
 
5711
  #: languages/vue.php:547
5712
- msgid "Activate"
5713
  msgstr ""
5714
 
5715
- #. Translators: Number of days in interval.
5716
- #: languages/vue.php:551
5717
- msgid "Last %s days"
5718
  msgstr ""
5719
 
5720
- #: languages/vue.php:554
5721
- #: lite/includes/admin/wp-site-health.php:253
5722
- msgid "View Reports"
5723
  msgstr ""
5724
 
5725
- #: languages/vue.php:557
5726
- msgid "Congratulations!"
5727
  msgstr ""
5728
 
5729
- #. Translators: Add link to YouTube video and Onboarding Wizard.
5730
- #: languages/vue.php:561
5731
- 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."
5732
  msgstr ""
5733
 
5734
- #. Translators: Add link to YouTube video and Onboarding Wizard.
5735
- #: languages/vue.php:565
5736
- msgid "Onboarding Wizard"
5737
  msgstr ""
5738
 
5739
- #: languages/vue.php:568
5740
- 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."
 
5741
  msgstr ""
5742
 
5743
- #: languages/vue.php:581
5744
- msgid "Save Changes"
 
5745
  msgstr ""
5746
 
5747
- #. Translators: Adds a link to documentation.
5748
- #: languages/vue.php:585
5749
- 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"
5750
  msgstr ""
5751
 
5752
- #. Translators: Adds link to activate/install plugin and documentation.
5753
- #: languages/vue.php:589
5754
- 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"
5755
  msgstr ""
5756
 
5757
- #. Translators: Adds a link to documentation.
5758
- #: languages/vue.php:593
5759
- 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"
5760
  msgstr ""
5761
 
5762
- #. Translators: Adds link to activate/install plugin and documentation.
5763
- #: languages/vue.php:597
5764
- 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"
5765
  msgstr ""
5766
 
5767
- #: languages/vue.php:600
5768
- msgid "Time to Purchase"
5769
  msgstr ""
5770
 
5771
- #: languages/vue.php:603
5772
- msgid "This list shows how many days from first visit it took users to purchase products from your site."
 
5773
  msgstr ""
5774
 
5775
- #: languages/vue.php:606
5776
- msgid "Sessions to Purchase"
5777
  msgstr ""
5778
 
5779
- #: languages/vue.php:609
5780
- msgid "This list shows the number of sessions it took users before they purchased a product from your website."
5781
  msgstr ""
5782
 
5783
- #: languages/vue.php:612
5784
- msgid "New Customers"
5785
  msgstr ""
5786
 
5787
- #: languages/vue.php:615
5788
- msgid "This list shows the percentage of new customers who purchased a product from your website."
5789
  msgstr ""
5790
 
5791
- #: languages/vue.php:618
5792
- msgid "Abandoned Checkouts"
5793
  msgstr ""
5794
 
5795
- #: languages/vue.php:621
5796
- msgid "This list shows the percentage of carts that never went through the checkout process."
5797
  msgstr ""
5798
 
5799
- #: languages/vue.php:624
5800
- msgid "Top Posts/Pages"
 
 
 
 
 
 
 
 
 
 
 
 
5801
  msgstr ""
5802
 
5803
  #: languages/vue.php:627
5804
- msgid "This list shows the most viewed posts and pages on your website."
5805
  msgstr ""
5806
 
5807
  #: languages/vue.php:630
5808
- msgid "New vs. Returning Visitors"
5809
  msgstr ""
5810
 
5811
  #: languages/vue.php:633
5812
- msgid "This graph shows what percent of your user sessions come from new versus repeat visitors."
5813
  msgstr ""
5814
 
5815
  #: languages/vue.php:636
5816
- msgid "Device Breakdown"
5817
  msgstr ""
5818
 
5819
  #: languages/vue.php:639
5820
- 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."
5821
  msgstr ""
5822
 
5823
  #: languages/vue.php:642
5824
- msgid "Top Landing Pages"
5825
  msgstr ""
5826
 
5827
  #: languages/vue.php:645
5828
- msgid "This list shows the top pages users first land on when visiting your website."
5829
  msgstr ""
5830
 
5831
  #: languages/vue.php:648
5832
- msgid "Top Exit Pages"
5833
  msgstr ""
5834
 
5835
  #: languages/vue.php:651
5836
- msgid "This list shows the top pages users exit your website from."
5837
  msgstr ""
5838
 
5839
  #: languages/vue.php:654
5840
- msgid "Top Outbound Links"
5841
  msgstr ""
5842
 
5843
  #: languages/vue.php:657
5844
- msgid "This list shows the top links clicked on your website that go to another website."
5845
  msgstr ""
5846
 
5847
  #: languages/vue.php:660
5848
- msgid "Top Affiliate Links"
5849
  msgstr ""
5850
 
5851
  #: languages/vue.php:663
5852
- msgid "This list shows the top affiliate links your visitors clicked on."
5853
  msgstr ""
5854
 
5855
  #: languages/vue.php:666
5856
- msgid "Top Download Links"
5857
  msgstr ""
5858
 
5859
  #: languages/vue.php:669
5860
- msgid "This list shows the download links your visitors clicked the most."
 
 
 
 
5861
  msgstr ""
5862
 
5863
  #: languages/vue.php:675
5864
- msgid "Top Products"
5865
  msgstr ""
5866
 
5867
  #: languages/vue.php:678
5868
- msgid "This list shows the top selling products on your website."
5869
  msgstr ""
5870
 
5871
  #: languages/vue.php:681
5872
- msgid "Top Conversion Sources"
5873
  msgstr ""
5874
 
5875
  #: languages/vue.php:684
5876
- msgid "This list shows the top referral websites in terms of product revenue."
5877
  msgstr ""
5878
 
5879
  #: languages/vue.php:687
5880
- msgid "Total Add/Remove"
5881
  msgstr ""
5882
 
5883
  #: languages/vue.php:690
5884
- msgid "Site Speed"
5885
  msgstr ""
5886
 
5887
  #: languages/vue.php:693
5888
- msgid "MonsterInsights Addons"
5889
  msgstr ""
5890
 
5891
  #: languages/vue.php:696
5892
- msgid "Search Addons"
5893
  msgstr ""
5894
 
5895
  #: languages/vue.php:699
5896
- #: lite/includes/admin/reports/report-publisher.php:22
5897
- msgid "Publishers"
5898
  msgstr ""
5899
 
5900
  #: languages/vue.php:702
5901
- #: lite/includes/admin/reports/report-dimensions.php:22
5902
- msgid "Dimensions"
5903
  msgstr ""
5904
 
5905
  #: languages/vue.php:705
5906
- msgid "Right Now"
5907
- msgstr ""
5908
-
5909
- #: languages/vue.php:708
5910
- msgid "Active users on site"
5911
- msgstr ""
5912
-
5913
- #: languages/vue.php:711
5914
- msgid "The real-time graph of visitors over time is not currently available for this site. Please try again later."
5915
- msgstr ""
5916
-
5917
- #: languages/vue.php:714
5918
- 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."
5919
- msgstr ""
5920
-
5921
- #: languages/vue.php:717
5922
- msgid "The real-time report automatically updates approximately every 60 seconds."
5923
  msgstr ""
5924
 
5925
- #. Translators: Number of seconds that have passed since the report was refreshed.
5926
- #: languages/vue.php:721
5927
- msgid "The real-time report was last updated %s seconds ago."
5928
  msgstr ""
5929
 
5930
- #: languages/vue.php:724
5931
- msgid "The latest data will be automatically shown on this page when it becomes available."
 
5932
  msgstr ""
5933
 
 
5934
  #: languages/vue.php:727
5935
- msgid "There is no need to refresh the browser (doing so won't have any effect)."
5936
  msgstr ""
5937
 
5938
- #: languages/vue.php:730
5939
- msgid "Pageviews Per Minute"
 
5940
  msgstr ""
5941
 
5942
- #. Translators: Number of unique pageviews.
5943
- #: languages/vue.php:735
5944
- msgid "Unique %s Pageviews"
5945
  msgstr ""
5946
 
5947
- #: languages/vue.php:738
5948
- msgid "Top Pages"
5949
  msgstr ""
5950
 
5951
- #: languages/vue.php:741
5952
- msgid "No pageviews currently."
5953
  msgstr ""
5954
 
5955
- #: languages/vue.php:744
5956
- msgid "Page"
5957
  msgstr ""
5958
 
5959
- #: languages/vue.php:747
5960
- msgid "Pageview Count"
5961
  msgstr ""
5962
 
5963
- #: languages/vue.php:750
5964
- msgid "Percent of Total"
5965
  msgstr ""
5966
 
5967
- #: languages/vue.php:753
5968
- msgid "This is the number of active users currently on your site."
5969
  msgstr ""
5970
 
5971
- #: languages/vue.php:756
5972
- msgid "This graph shows the number of pageviews for each of the last 30 minutes."
5973
  msgstr ""
5974
 
5975
- #: languages/vue.php:759
5976
- msgid "This list shows the top pages users are currently viewing on your site."
5977
  msgstr ""
5978
 
5979
- #: languages/vue.php:762
5980
- msgid "View All Real-Time Pageviews"
5981
  msgstr ""
5982
 
5983
- #: languages/vue.php:765
5984
- msgid "View All Real-Time Traffic Sources"
5985
  msgstr ""
5986
 
5987
- #: languages/vue.php:768
5988
- msgid "View All Real-Time Traffic by Country"
5989
  msgstr ""
5990
 
5991
- #: languages/vue.php:771
5992
- msgid "View All Real-Time Traffic by City"
5993
  msgstr ""
5994
 
 
5995
  #: languages/vue.php:774
5996
- msgid "Installing Addon"
5997
  msgstr ""
5998
 
5999
  #: languages/vue.php:777
6000
- msgid "Activating Addon"
6001
  msgstr ""
6002
 
6003
  #: languages/vue.php:780
6004
- msgid "Addon Activated"
6005
  msgstr ""
6006
 
6007
  #: languages/vue.php:783
6008
- msgid "Loading report data"
6009
  msgstr ""
6010
 
6011
  #: languages/vue.php:786
6012
- msgid "Please activate manually"
6013
  msgstr ""
6014
 
6015
- #. Translators: Adds the error status and status text.
6016
- #: languages/vue.php:790
6017
- msgid "Error: %1$s, %2$s"
6018
  msgstr ""
6019
 
6020
- #: languages/vue.php:793
6021
- msgid "Error Activating Addon"
6022
  msgstr ""
6023
 
6024
- #: languages/vue.php:796
6025
- #: lite/includes/admin/wp-site-health.php:372
6026
- #: lite/includes/admin/wp-site-health.php:398
6027
- #: lite/includes/admin/wp-site-health.php:425
6028
- msgid "View Addons"
6029
  msgstr ""
6030
 
6031
- #: languages/vue.php:800
6032
- msgid "Dismiss"
6033
  msgstr ""
6034
 
6035
- #: languages/vue.php:803
6036
- msgid "Redirecting"
6037
  msgstr ""
6038
 
6039
- #: languages/vue.php:806
6040
- msgid "Please wait"
6041
  msgstr ""
6042
 
6043
- #: languages/vue.php:809
6044
- msgid "activate"
6045
  msgstr ""
6046
 
6047
- #: languages/vue.php:812
6048
- msgid "install"
 
6049
  msgstr ""
6050
 
6051
- #: languages/vue.php:815
6052
- msgid "Visit addons page"
6053
  msgstr ""
6054
 
6055
- #: languages/vue.php:818
6056
- msgid "Report Unavailable"
6057
  msgstr ""
6058
 
6059
- #. Translators: Install/Activate the addon.
6060
  #: languages/vue.php:822
6061
- msgid "%s Addon"
6062
  msgstr ""
6063
 
6064
  #: languages/vue.php:825
6065
- msgid "Go Back To Reports"
6066
  msgstr ""
6067
 
6068
  #: languages/vue.php:828
6069
- msgid "Enable Enhanced eCommerce"
6070
  msgstr ""
6071
 
6072
  #: languages/vue.php:831
6073
- msgid "New"
6074
  msgstr ""
6075
 
6076
  #: languages/vue.php:834
6077
- msgid "Returning"
6078
  msgstr ""
6079
 
6080
  #: languages/vue.php:837
6081
- msgid "Desktop"
6082
  msgstr ""
6083
 
6084
  #: languages/vue.php:840
6085
- msgid "Tablet"
6086
  msgstr ""
6087
 
6088
  #: languages/vue.php:843
6089
- msgid "Mobile"
6090
  msgstr ""
6091
 
6092
  #: languages/vue.php:846
6093
- msgid "Sessions"
6094
- msgstr ""
6095
-
6096
- #. Translators: Placeholder adds a line break.
6097
- #: languages/vue.php:850
6098
- msgid "Unique %s Sessions"
6099
  msgstr ""
6100
 
6101
- #: languages/vue.php:853
6102
- msgid "Pageviews"
6103
  msgstr ""
6104
 
6105
- #: languages/vue.php:856
6106
- msgid "Avg. Session Duration"
6107
  msgstr ""
6108
 
6109
- #: languages/vue.php:859
6110
- msgid "Bounce Rate"
6111
  msgstr ""
6112
 
6113
- #: languages/vue.php:862
6114
- msgid "Total Users"
6115
  msgstr ""
6116
 
6117
  #: languages/vue.php:865
6118
- msgid "Top 10 Countries"
6119
  msgstr ""
6120
 
6121
  #: languages/vue.php:868
6122
- msgid "View Countries Report"
6123
  msgstr ""
6124
 
6125
  #: languages/vue.php:871
6126
- msgid "Top 10 Referrals"
6127
  msgstr ""
6128
 
6129
  #: languages/vue.php:874
6130
- msgid "View All Referral Sources"
6131
  msgstr ""
6132
 
6133
  #: languages/vue.php:877
6134
- msgid "View Full Posts/Pages Report"
6135
  msgstr ""
6136
 
6137
  #: languages/vue.php:880
6138
- msgid "A session is the browsing session of a single user to your site."
6139
- msgstr ""
6140
-
6141
- #: languages/vue.php:883
6142
- 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."
6143
  msgstr ""
6144
 
6145
  #: languages/vue.php:886
6146
- msgid "Total duration of all sessions (in seconds) / number of sessions."
6147
  msgstr ""
6148
 
6149
  #: languages/vue.php:889
6150
- 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."
6151
  msgstr ""
6152
 
6153
  #: languages/vue.php:892
6154
- msgid "The number of distinct tracked users"
6155
  msgstr ""
6156
 
6157
  #: languages/vue.php:895
6158
- msgid "This list shows the top countries your website visitors are from."
6159
  msgstr ""
6160
 
6161
  #: languages/vue.php:898
6162
- msgid "This list shows the top websites that send your website traffic, known as referral traffic."
6163
  msgstr ""
6164
 
6165
  #: languages/vue.php:901
6166
- msgid "Export PDF Overview Report"
6167
  msgstr ""
6168
 
6169
  #: languages/vue.php:904
6170
- msgid "Still Calculating..."
6171
- msgstr ""
6172
-
6173
- #: languages/vue.php:907
6174
- msgid "Your 2020 Year in Review is still calculating. Please check back later to see how your website performed last year."
6175
  msgstr ""
6176
 
6177
  #: languages/vue.php:910
6178
- msgid "Back to Overview Report"
6179
  msgstr ""
6180
 
6181
  #: languages/vue.php:913
6182
- msgid "Your 2020 Analytics Report"
 
 
 
 
6183
  msgstr ""
6184
 
6185
  #: languages/vue.php:919
6186
- msgid "Audience"
6187
  msgstr ""
6188
 
6189
  #: languages/vue.php:922
6190
- msgid "Congrats"
6191
  msgstr ""
6192
 
6193
  #: languages/vue.php:925
6194
- msgid "Your website was quite popular this year! "
6195
  msgstr ""
6196
 
6197
  #: languages/vue.php:928
6198
- msgid "You had "
6199
  msgstr ""
6200
 
6201
  #: languages/vue.php:931
6202
- msgid " visitors!"
6203
  msgstr ""
6204
 
6205
  #: languages/vue.php:934
6206
- msgid " visitors"
6207
  msgstr ""
6208
 
6209
  #: languages/vue.php:937
6210
- msgid "Total Visitors"
6211
  msgstr ""
6212
 
6213
  #: languages/vue.php:940
6214
- msgid "Total Sessions"
6215
  msgstr ""
6216
 
6217
  #: languages/vue.php:943
6218
- msgid "Visitors by Month"
6219
  msgstr ""
6220
 
6221
  #: languages/vue.php:946
6222
- msgid "January 1, 2020 - December 31, 2020"
6223
  msgstr ""
6224
 
6225
  #: languages/vue.php:949
6226
- msgid "A Tip for 2021"
6227
  msgstr ""
6228
 
6229
  #: languages/vue.php:952
6230
- msgid "Demographics"
6231
  msgstr ""
6232
 
6233
  #: languages/vue.php:955
6234
- msgid "#1"
6235
  msgstr ""
6236
 
6237
  #: languages/vue.php:958
6238
- msgid "You Top 5 Countries"
6239
  msgstr ""
6240
 
6241
  #: languages/vue.php:961
6242
- msgid "Let’s get to know your visitors a little better, shall we?"
6243
  msgstr ""
6244
 
6245
  #: languages/vue.php:964
6246
- msgid "Gender"
6247
  msgstr ""
6248
 
6249
  #: languages/vue.php:967
6250
- msgid "Female"
6251
  msgstr ""
6252
 
6253
  #: languages/vue.php:970
6254
- msgid "Women"
6255
- msgstr ""
6256
-
6257
- #: languages/vue.php:973
6258
- msgid "Male"
6259
  msgstr ""
6260
 
6261
- #: languages/vue.php:976
6262
- msgid "Average Age"
6263
  msgstr ""
6264
 
6265
- #: languages/vue.php:979
6266
- msgid "Behavior"
 
6267
  msgstr ""
6268
 
6269
- #: languages/vue.php:982
6270
- msgid "Your Top 5 Pages"
6271
  msgstr ""
6272
 
6273
- #: languages/vue.php:985
6274
- msgid "Time Spent on Site"
6275
  msgstr ""
6276
 
6277
- #: languages/vue.php:988
6278
- msgid "minutes"
6279
  msgstr ""
6280
 
6281
- #: languages/vue.php:991
6282
- msgid "Device Type"
6283
  msgstr ""
6284
 
6285
- #: languages/vue.php:994
6286
- msgid "A Tip For 2021"
6287
  msgstr ""
6288
 
6289
- #: languages/vue.php:997
6290
- 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."
6291
  msgstr ""
6292
 
6293
- #: languages/vue.php:1000
6294
- msgid "Read - 32 Marketing Hacks to Grow Your Traffic"
6295
  msgstr ""
6296
 
6297
- #: languages/vue.php:1003
6298
- msgid "So, where did all of these visitors come from?"
6299
  msgstr ""
6300
 
6301
- #: languages/vue.php:1006
6302
- msgid "Clicks"
6303
  msgstr ""
6304
 
6305
- #: languages/vue.php:1009
6306
- msgid "Your Top 5 Keywords"
6307
  msgstr ""
6308
 
6309
- #: languages/vue.php:1012
6310
- msgid "What keywords visitors searched for to find your site"
6311
  msgstr ""
6312
 
6313
- #: languages/vue.php:1015
6314
- msgid "Your Top 5 Referrals"
6315
  msgstr ""
6316
 
6317
- #: languages/vue.php:1018
6318
- msgid "The websites that link back to your website"
6319
  msgstr ""
6320
 
6321
- #: languages/vue.php:1021
6322
- msgid "Opportunity"
6323
  msgstr ""
6324
 
6325
- #: languages/vue.php:1024
6326
- 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."
6327
  msgstr ""
6328
 
6329
- #: languages/vue.php:1027
6330
- msgid "Read - How to Ethically Steal Your Competitor’s Traffic"
6331
  msgstr ""
6332
 
6333
- #: languages/vue.php:1030
6334
- msgid "Thank you for using MonsterInsights!"
6335
  msgstr ""
6336
 
6337
- #: languages/vue.php:1033
6338
- 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."
6339
  msgstr ""
6340
 
6341
- #: languages/vue.php:1036
6342
- msgid "Here's to an amazing 2021!"
6343
  msgstr ""
6344
 
6345
- #: languages/vue.php:1039
6346
- msgid "Enjoying MonsterInsights"
6347
  msgstr ""
6348
 
6349
- #: languages/vue.php:1042
6350
- msgid "Leave a five star review!"
6351
  msgstr ""
6352
 
6353
- #: languages/vue.php:1045
6354
- msgid "Syed Balkhi"
6355
  msgstr ""
6356
 
6357
- #: languages/vue.php:1048
6358
- msgid "Chris Christoff"
6359
  msgstr ""
6360
 
6361
- #: languages/vue.php:1051
6362
- msgid "Write Review"
6363
  msgstr ""
6364
 
6365
- #: languages/vue.php:1054
6366
- msgid "Did you know over 10 million websites use our plugins?"
6367
  msgstr ""
6368
 
6369
- #: languages/vue.php:1057
6370
- msgid "Try our other popular WordPress plugins to grow your website in 2021."
6371
  msgstr ""
6372
 
6373
- #: languages/vue.php:1060
6374
- msgid "Join our Communities!"
6375
  msgstr ""
6376
 
6377
- #: languages/vue.php:1063
6378
- msgid "Become a WordPress expert in 2021. Join our amazing communities and take your website to the next level."
6379
  msgstr ""
6380
 
6381
- #: languages/vue.php:1066
6382
- msgid "Facebook Group"
6383
  msgstr ""
6384
 
6385
- #: languages/vue.php:1069
6386
- msgid "Join our team of WordPress experts and other motivated website owners in the WPBeginner Engage Facebook Group."
6387
  msgstr ""
6388
 
 
6389
  #: languages/vue.php:1072
6390
- msgid "Join Now...It’s Free!"
6391
- msgstr ""
6392
-
6393
- #: languages/vue.php:1075
6394
- msgid "WordPress Tutorials by WPBeginner"
6395
  msgstr ""
6396
 
6397
- #: languages/vue.php:1078
6398
- msgid "WPBeginner is the largest free WordPress resource site for beginners and non-techy users."
 
6399
  msgstr ""
6400
 
6401
- #: languages/vue.php:1081
6402
- msgid "Visit WPBeginner"
 
6403
  msgstr ""
6404
 
 
6405
  #: languages/vue.php:1084
6406
- msgid "Follow Us!"
6407
  msgstr ""
6408
 
6409
- #: languages/vue.php:1087
6410
- 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."
 
6411
  msgstr ""
6412
 
6413
- #: languages/vue.php:1090
6414
- msgid "Copyright MonsterInsights, 2021"
 
6415
  msgstr ""
6416
 
6417
- #: languages/vue.php:1093
6418
- msgid "Upgrade to MonsterInsights Pro to Unlock Additional Actionable Insights"
6419
  msgstr ""
6420
 
6421
  #: languages/vue.php:1098
6422
- #: lite/includes/admin/helpers.php:83
6423
- msgid "Upgrade to MonsterInsights Pro"
6424
  msgstr ""
6425
 
6426
  #: languages/vue.php:1101
6427
- msgid "January"
6428
  msgstr ""
6429
 
6430
- #: languages/vue.php:1104
6431
- msgid "February"
 
6432
  msgstr ""
6433
 
6434
- #: languages/vue.php:1107
6435
- msgid "March"
6436
  msgstr ""
6437
 
6438
- #: languages/vue.php:1110
6439
- msgid "April"
6440
  msgstr ""
6441
 
6442
- #: languages/vue.php:1113
6443
- msgid "May"
6444
  msgstr ""
6445
 
6446
- #: languages/vue.php:1116
6447
- msgid "June"
6448
  msgstr ""
6449
 
6450
- #: languages/vue.php:1119
6451
- msgid "July"
6452
  msgstr ""
6453
 
6454
- #: languages/vue.php:1122
6455
- msgid "August"
6456
  msgstr ""
6457
 
6458
- #: languages/vue.php:1125
6459
- msgid "September"
6460
  msgstr ""
6461
 
6462
- #: languages/vue.php:1128
6463
- msgid "October"
6464
  msgstr ""
6465
 
6466
- #: languages/vue.php:1131
6467
- msgid "November"
6468
  msgstr ""
6469
 
6470
- #: languages/vue.php:1134
6471
- msgid "December"
6472
  msgstr ""
6473
 
6474
- #. Translators: Number of visitors.
6475
  #: languages/vue.php:1138
6476
- msgid "Your best month was <strong>%1$s</strong> with <strong>%2$s visitors!</strong>"
6477
  msgstr ""
6478
 
6479
  #: languages/vue.php:1141
6480
- msgid "See the top Traffic Sources and Top Pages for the Month of %s in the Overview Report to replicate your success."
6481
  msgstr ""
6482
 
6483
- #. Translators: Number of visitors.
6484
- #: languages/vue.php:1145
6485
- msgid "Your <strong>%1$s</strong> visitors came from <strong>%2$s</strong> different countries."
6486
  msgstr ""
6487
 
6488
- #. Translators: Number of visitors.
6489
- #: languages/vue.php:1149
6490
- msgid "%s Visitors"
 
 
 
6491
  msgstr ""
6492
 
6493
- #. Translators: Percent and Number of visitors.
6494
  #: languages/vue.php:1153
6495
- msgid "%1$s&#37 of your visitors were %2$s"
6496
  msgstr ""
6497
 
6498
- #. Translators: Number of visitors and their age.
6499
- #: languages/vue.php:1157
6500
- msgid "%1$s&#37 of your visitors were between the ages of %2$s"
6501
  msgstr ""
6502
 
6503
- #. Translators: Number of visitors and number of pages.
6504
- #: languages/vue.php:1161
6505
- 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>"
6506
  msgstr ""
6507
 
6508
- #. Translators: Number of minutes spent on site.
6509
- #: languages/vue.php:1165
6510
- msgid "Each visitor spent an average of %s minutes on your website in 2020."
6511
  msgstr ""
6512
 
6513
- #. Translators: Name of device type.
6514
- #: languages/vue.php:1169
6515
- msgid "Most of your visitors viewed your website from their <strong>%s</strong> device."
 
 
 
 
6516
  msgstr ""
6517
 
6518
- #. Translators: Number of visitors and device percentage.
6519
  #: languages/vue.php:1173
6520
- msgid "%1$s&#37 of your visitors were on a %2$s device."
6521
  msgstr ""
6522
 
6523
  #: languages/vue.php:1176
6524
- msgid "Last 30 Days Insights for:"
6525
  msgstr ""
6526
 
6527
  #: languages/vue.php:1179
6528
- msgid "Your Website"
6529
  msgstr ""
6530
 
6531
  #: languages/vue.php:1182
6532
- msgid "Avg. Duration"
6533
  msgstr ""
6534
 
6535
  #: languages/vue.php:1185
6536
- msgid "More data is available"
6537
  msgstr ""
6538
 
6539
  #: languages/vue.php:1188
6540
- msgid "Want to see page-specific stats?"
6541
  msgstr ""
6542
 
6543
  #: languages/vue.php:1191
6544
- msgid "GDPR Guide"
6545
  msgstr ""
6546
 
6547
  #: languages/vue.php:1194
6548
- 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. "
6549
  msgstr ""
6550
 
6551
  #: languages/vue.php:1197
6552
- msgid "How to Install and Activate MonsterInsights Addons"
6553
  msgstr ""
6554
 
6555
  #: languages/vue.php:1200
6556
- 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."
6557
  msgstr ""
6558
 
6559
  #: languages/vue.php:1203
6560
- msgid "Enabling eCommerce Tracking and Reports"
6561
  msgstr ""
6562
 
6563
  #: languages/vue.php:1206
6564
- 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."
6565
  msgstr ""
6566
 
6567
  #: languages/vue.php:1209
6568
- msgid "Read Documentation"
6569
  msgstr ""
6570
 
6571
  #: languages/vue.php:1212
6572
- msgid "Getting Started with MonsterInsights"
6573
  msgstr ""
6574
 
6575
  #: languages/vue.php:1215
6576
- 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."
6577
  msgstr ""
6578
 
6579
  #: languages/vue.php:1218
6580
- 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."
6581
  msgstr ""
6582
 
6583
  #: languages/vue.php:1221
6584
- 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!."
6585
  msgstr ""
6586
 
6587
  #: languages/vue.php:1224
6588
- msgid "Launch the wizard!"
6589
  msgstr ""
6590
 
6591
  #: languages/vue.php:1227
6592
- msgid "Get MonsterInsights Pro and Unlock all the Powerful Features"
6593
  msgstr ""
6594
 
6595
- #. Translators: Makes text bold.
6596
- #: languages/vue.php:1231
6597
- 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."
6598
  msgstr ""
6599
 
6600
- #: languages/vue.php:1234
6601
- msgid "Universal Tracking across devices and campaigns with just a few clicks."
6602
  msgstr ""
6603
 
6604
- #: languages/vue.php:1237
6605
- msgid "See your website analytics reports inside the WordPress dashboard"
6606
  msgstr ""
6607
 
6608
- #: languages/vue.php:1240
6609
- msgid "Get real-time stats right inside WordPress"
6610
  msgstr ""
6611
 
6612
- #: languages/vue.php:1243
6613
- msgid "1-click Google Analytics Enhanced eCommerce tracking"
6614
  msgstr ""
6615
 
6616
- #: languages/vue.php:1246
6617
- msgid "Get detailed stats for each post and page."
6618
  msgstr ""
6619
 
6620
- #: languages/vue.php:1249
6621
- msgid "Automatically track clicks on your affiliate links and ads."
6622
  msgstr ""
6623
 
6624
- #: languages/vue.php:1252
6625
- msgid "Make Google Analytics GDPR compliant automatically"
6626
  msgstr ""
6627
 
6628
- #: languages/vue.php:1255
6629
- msgid "Setup tracking for authors, categories, tags, custom post types, users and more"
6630
  msgstr ""
6631
 
6632
- #: languages/vue.php:1258
6633
- msgid "Enable Google Optimize for A/B testing, adjust sample speed & sample rate."
6634
  msgstr ""
6635
 
6636
- #: languages/vue.php:1261
6637
- msgid "More advanced features"
6638
  msgstr ""
6639
 
6640
- #: languages/vue.php:1264
6641
- msgid "Get MonsterInsights Pro Today and Unlock all the Powerful Features"
 
6642
  msgstr ""
6643
 
6644
- #. Translators: Makes text green.
6645
- #: languages/vue.php:1268
6646
- msgid "Bonus: MonsterInsights Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout."
6647
  msgstr ""
6648
 
6649
- #: languages/vue.php:1271
6650
- msgid "How to Connect to Google Analytics"
6651
  msgstr ""
6652
 
6653
- #: languages/vue.php:1274
6654
- 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."
6655
  msgstr ""
6656
 
6657
- #: languages/vue.php:1277
6658
- msgid "Guide and Checklist for Advanced Insights"
6659
  msgstr ""
6660
 
6661
- #: languages/vue.php:1280
6662
- 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."
6663
  msgstr ""
6664
 
6665
- #: languages/vue.php:1283
6666
- msgid "Custom Campaign Parameters"
 
6667
  msgstr ""
6668
 
6669
- #: languages/vue.php:1286
6670
- msgid "The URL builder helps you add parameters to your URLs you use in custom web or email ad campaigns."
6671
  msgstr ""
6672
 
6673
- #: languages/vue.php:1289
6674
- 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."
 
 
 
6675
  msgstr ""
6676
 
6677
- #. Translators: Marks the field as required.
6678
- #: languages/vue.php:1293
6679
- msgid "Website URL %s"
6680
  msgstr ""
6681
 
6682
- #. Translators: Display the current website url in italic.
6683
- #: languages/vue.php:1297
6684
- msgid "The full website URL (e.g. %1$s %2$s%3$s)"
 
 
 
6685
  msgstr ""
6686
 
6687
- #. Translators: Marks the field as required.
6688
  #: languages/vue.php:1301
6689
- msgid "Campaign Source %s"
6690
  msgstr ""
6691
 
6692
- #. Translators: Make the text italic.
6693
- #: languages/vue.php:1305
6694
- msgid "Enter a referrer (e.g. %1$sfacebook, newsletter, google%2$s)"
6695
  msgstr ""
6696
 
6697
- #. Translators: Make the text italic.
6698
- #: languages/vue.php:1309
6699
- msgid "Enter a marketing medium (e.g. %1$scpc, banner, email%2$s)"
6700
  msgstr ""
6701
 
6702
- #. Translators: Make the text italic.
6703
- #: languages/vue.php:1313
6704
- msgid "Enter a name to easily identify (e.g. %1$sspring_sale%2$s)"
6705
  msgstr ""
6706
 
6707
- #: languages/vue.php:1316
6708
- msgid "Enter the paid keyword"
 
6709
  msgstr ""
6710
 
6711
- #: languages/vue.php:1319
6712
- msgid "Enter something to differentiate ads"
6713
  msgstr ""
6714
 
6715
- #: languages/vue.php:1322
6716
- msgid "Use Fragment"
6717
  msgstr ""
6718
 
6719
- #. Translators: Make the text bold.
6720
- #: languages/vue.php:1326
6721
- msgid "Set the parameters in the fragment portion of the URL %1$s(not recommended)%2$s"
6722
  msgstr ""
6723
 
6724
- #: languages/vue.php:1329
6725
- msgid "URL to use"
6726
  msgstr ""
6727
 
6728
- #: languages/vue.php:1332
6729
- msgid "(Updates automatically)"
6730
  msgstr ""
6731
 
6732
- #: languages/vue.php:1335
6733
- msgid "Copy to Clipboard"
6734
  msgstr ""
6735
 
6736
- #: languages/vue.php:1338
6737
- msgid "Copy to Pretty Links"
6738
  msgstr ""
6739
 
6740
- #: languages/vue.php:1341
6741
- msgid "Make your campaign links prettier!"
6742
  msgstr ""
6743
 
6744
- #: languages/vue.php:1344
6745
- msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable and totally shareable links."
6746
  msgstr ""
6747
 
6748
- #: languages/vue.php:1347
6749
- msgid "Download Pretty Links"
6750
  msgstr ""
6751
 
6752
- #: languages/vue.php:1350
6753
- msgid "More Information & Examples"
6754
  msgstr ""
6755
 
6756
- #: languages/vue.php:1353
6757
- msgid "The following table gives a detailed explanation and example of each of the campaign parameters."
6758
  msgstr ""
6759
 
6760
- #: languages/vue.php:1356
6761
- msgid "Campaign Source"
6762
  msgstr ""
6763
 
6764
- #: languages/vue.php:1359
6765
- msgid "Required. Use utm_source to identify a search engine, newsletter name, or other source."
6766
  msgstr ""
6767
 
6768
- #: languages/vue.php:1362
6769
- msgid "Campaign Medium"
6770
  msgstr ""
6771
 
6772
- #: languages/vue.php:1365
6773
- msgid "Use utm_medium to identify a medium such as email or cost-per-click."
6774
  msgstr ""
6775
 
6776
- #: languages/vue.php:1368
6777
- msgid "Campaign Name"
 
6778
  msgstr ""
6779
 
6780
- #: languages/vue.php:1371
6781
- msgid "Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign."
6782
  msgstr ""
6783
 
6784
- #: languages/vue.php:1374
6785
- msgid "Campaign Term"
6786
  msgstr ""
6787
 
6788
- #: languages/vue.php:1377
6789
- msgid "Used for paid search. Use utm_term to note the keywords for this ad."
6790
  msgstr ""
6791
 
6792
- #: languages/vue.php:1380
6793
- msgid "Campaign Content"
6794
  msgstr ""
6795
 
6796
- #: languages/vue.php:1383
6797
- msgid "Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL."
6798
  msgstr ""
6799
 
6800
- #. Translators: Example.
6801
- #: languages/vue.php:1387
6802
- msgid "Example: %s"
 
 
 
6803
  msgstr ""
6804
 
6805
- #. Translators: Examples.
6806
  #: languages/vue.php:1391
6807
- msgid "Examples: %s"
6808
  msgstr ""
6809
 
6810
  #: languages/vue.php:1394
6811
- msgid "About Campaigns"
6812
  msgstr ""
6813
 
6814
  #: languages/vue.php:1397
6815
- msgid "About Custom Campaigns"
6816
  msgstr ""
6817
 
6818
  #: languages/vue.php:1400
6819
- msgid "Best Practices for Creating Custom Campaigns"
6820
  msgstr ""
6821
 
6822
  #: languages/vue.php:1403
6823
- msgid "About the Referral Traffic Report"
6824
  msgstr ""
6825
 
6826
- #: languages/vue.php:1406
6827
- msgid "About Traffic Source Dimensions"
6828
  msgstr ""
6829
 
6830
- #: languages/vue.php:1409
6831
- msgid "AdWords Auto-Tagging"
6832
  msgstr ""
6833
 
6834
- #: languages/vue.php:1412
6835
- msgid "Additional Information"
6836
  msgstr ""
6837
 
6838
- #: languages/vue.php:1416
6839
- msgid "License Key"
6840
  msgstr ""
6841
 
6842
- #. Translators: Add link to retrieve license key from account.
6843
- #: languages/vue.php:1420
6844
- msgid "Add your MonsterInsights license key from the email receipt or account area. %1$sRetrieve your license key%2$s."
6845
  msgstr ""
6846
 
6847
- #: languages/vue.php:1424
6848
- msgid "Google Authentication"
6849
  msgstr ""
6850
 
6851
- #: languages/vue.php:1428
6852
- msgid "Connect Google Analytics + WordPress"
6853
  msgstr ""
6854
 
6855
- #: languages/vue.php:1432
6856
- msgid "You will be taken to the MonsterInsights website where you'll need to connect your Analytics account."
6857
  msgstr ""
6858
 
6859
- #: languages/vue.php:1435
6860
- msgid "Miscellaneous"
6861
  msgstr ""
6862
 
6863
- #: languages/vue.php:1438
6864
- msgid "Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes."
6865
  msgstr ""
6866
 
6867
- #: languages/vue.php:1441
6868
- msgid "Hide Announcements"
6869
  msgstr ""
6870
 
6871
  #: languages/vue.php:1445
6872
- msgid "Setup Wizard"
6873
  msgstr ""
6874
 
6875
- #: languages/vue.php:1449
6876
- msgid "Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks)."
6877
  msgstr ""
6878
 
6879
- #: languages/vue.php:1453
6880
- msgid "Launch Setup Wizard"
6881
  msgstr ""
6882
 
6883
- #: languages/vue.php:1456
6884
- msgid "See All Reports"
6885
  msgstr ""
6886
 
6887
- #: languages/vue.php:1459
6888
- msgid "Go to the Analytics Dashboard"
6889
  msgstr ""
6890
 
6891
- #: languages/vue.php:1462
6892
- msgid "Hello and welcome to MonsterInsights, the best Google Analytics plugin for WordPress. MonsterInsights shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions."
6893
  msgstr ""
6894
 
6895
- #: languages/vue.php:1465
6896
- 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."
 
6897
  msgstr ""
6898
 
 
6899
  #: languages/vue.php:1468
6900
- 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\"."
6901
- msgstr ""
6902
-
6903
- #: languages/vue.php:1471
6904
- 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."
6905
  msgstr ""
6906
 
6907
- #: languages/vue.php:1474
6908
- msgid "Yup, we know a thing or two about building awesome products that customers love."
 
6909
  msgstr ""
6910
 
6911
- #: languages/vue.php:1477
6912
- msgid "The MonsterInsights Team"
6913
  msgstr ""
6914
 
6915
- #: languages/vue.php:1480
6916
- msgid "Import/Export"
6917
  msgstr ""
6918
 
6919
- #: languages/vue.php:1483
6920
- msgid "Import"
6921
  msgstr ""
6922
 
6923
- #: languages/vue.php:1486
6924
- msgid "Import settings from another MonsterInsights website."
 
6925
  msgstr ""
6926
 
 
6927
  #: languages/vue.php:1489
6928
- msgid "Export"
6929
  msgstr ""
6930
 
6931
  #: languages/vue.php:1492
6932
- msgid "Export settings to import into another MonsterInsights install."
6933
  msgstr ""
6934
 
6935
  #: languages/vue.php:1495
6936
- msgid "Import Settings"
6937
  msgstr ""
6938
 
6939
  #: languages/vue.php:1498
6940
- msgid "Export Settings"
6941
  msgstr ""
6942
 
6943
  #: languages/vue.php:1501
6944
- msgid "Please choose a file to import"
6945
  msgstr ""
6946
 
6947
- #: languages/vue.php:1504
6948
- msgid "Click Choose file below to select the settings export file from another site."
 
6949
  msgstr ""
6950
 
6951
- #: languages/vue.php:1507
6952
- msgid "Use the button below to export a file with your MonsterInsights settings."
 
6953
  msgstr ""
6954
 
6955
- #: languages/vue.php:1510
6956
- msgid "Uploading file..."
6957
  msgstr ""
6958
 
6959
- #: languages/vue.php:1513
6960
- msgid "File imported"
6961
  msgstr ""
6962
 
6963
- #: languages/vue.php:1516
6964
- msgid "Settings successfully updated!"
6965
  msgstr ""
6966
 
6967
- #: languages/vue.php:1519
6968
- msgid "Error importing settings"
6969
  msgstr ""
6970
 
6971
- #: languages/vue.php:1522
6972
- msgid "Please choose a .json file generated by a MonsterInsights settings export."
6973
  msgstr ""
6974
 
6975
- #: languages/vue.php:1531
6976
- msgid "Cart Funnel"
6977
  msgstr ""
6978
 
6979
- #: languages/vue.php:1534
6980
- msgid "Customer Insights"
6981
  msgstr ""
6982
 
6983
- #: languages/vue.php:1537
6984
- msgid "Campaign Measurement"
6985
  msgstr ""
6986
 
6987
- #: languages/vue.php:1540
6988
- msgid "Customer Profiles"
6989
  msgstr ""
6990
 
6991
- #: languages/vue.php:1543
6992
- msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, revenue, and average order value, and more."
6993
  msgstr ""
6994
 
6995
- #: languages/vue.php:1546
6996
- msgid "Truly Understand Your%1$s Customers With %2$sMonsterInsights%3$s"
6997
  msgstr ""
6998
 
6999
- #: languages/vue.php:1549
7000
- msgid "You never truly understand your customers until you used Enhanced %1$s eCommerce from MonsterInsights!"
7001
  msgstr ""
7002
 
7003
- #: languages/vue.php:1552
7004
- msgid "Track all-new metrics!"
7005
  msgstr ""
7006
 
7007
- #: languages/vue.php:1555
7008
- msgid "Get stats WooCommerce doesn’t give you like: Conversion Sources, Avg. Order Value, Revenue per Source, Total Add to Carts & More!"
7009
  msgstr ""
7010
 
7011
- #: languages/vue.php:1558
7012
- msgid "FEATURES"
7013
  msgstr ""
7014
 
7015
- #: languages/vue.php:1561
7016
- msgid "Get The Unique Metrics Neccessary for Growth"
7017
  msgstr ""
7018
 
7019
- #: languages/vue.php:1564
7020
- msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, %1$srevenue, and average order value, and more."
7021
  msgstr ""
7022
 
7023
- #: languages/vue.php:1567
7024
- msgid "Get Answers to the important questions %1$syou should know."
7025
  msgstr ""
7026
 
7027
- #: languages/vue.php:1570
7028
- msgid "Did the login/registration step of the checkout put users off?"
7029
  msgstr ""
7030
 
7031
- #: languages/vue.php:1573
7032
- msgid "Which ad campaign is driving the most revenue?"
7033
  msgstr ""
7034
 
7035
- #: languages/vue.php:1576
7036
- msgid "Who is my typical customer?"
7037
  msgstr ""
7038
 
7039
- #: languages/vue.php:1579
7040
- msgid "Level-up Your eCommerce store with %1$sMonsterInsights + WooCommerce!%1$s"
7041
  msgstr ""
7042
 
7043
- #: languages/vue.php:1582
7044
- msgid "There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data."
7045
  msgstr ""
7046
 
7047
- #: languages/vue.php:1585
7048
- msgid "No addons found."
7049
  msgstr ""
7050
 
7051
- #: languages/vue.php:1588
7052
- msgid "Refresh Addons"
7053
  msgstr ""
7054
 
7055
- #: languages/vue.php:1591
7056
- msgid "Refreshing Addons"
7057
  msgstr ""
7058
 
7059
- #. Translators: Make text green.
7060
- #: languages/vue.php:1595
7061
- 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!"
7062
  msgstr ""
7063
 
7064
- #: languages/vue.php:1598
7065
- msgid "WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin"
7066
  msgstr ""
7067
 
7068
- #: languages/vue.php:1601
7069
- msgid "WordPress Admin Area Reports"
7070
  msgstr ""
7071
 
7072
- #: languages/vue.php:1604
7073
- msgid "Standard Reports"
7074
  msgstr ""
7075
 
7076
- #: languages/vue.php:1607
7077
- msgid "Overview Reports for the last 30 days."
7078
  msgstr ""
7079
 
7080
- #: languages/vue.php:1610
7081
- msgid "Advanced Reports"
7082
  msgstr ""
7083
 
7084
- #: languages/vue.php:1613
7085
- msgid "Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection"
7086
  msgstr ""
7087
 
7088
- #: languages/vue.php:1616
7089
- msgid "Dashboard Widget"
7090
  msgstr ""
7091
 
7092
- #: languages/vue.php:1619
7093
- msgid "Basic Widget"
7094
  msgstr ""
7095
 
7096
- #: languages/vue.php:1622
7097
- msgid "Overview Report Synopsis"
7098
  msgstr ""
7099
 
7100
- #: languages/vue.php:1625
7101
- msgid "Advanced Dashboard Widget"
7102
  msgstr ""
7103
 
7104
- #: languages/vue.php:1628
7105
- msgid "Includes the complete Overview report, Publisher reports and 6 different eCommerce reports"
7106
  msgstr ""
7107
 
7108
- #: languages/vue.php:1634
7109
- msgid "Email Summaries"
7110
  msgstr ""
7111
 
7112
- #: languages/vue.php:1637
7113
- msgid "Included"
7114
  msgstr ""
7115
 
7116
- #: languages/vue.php:1640
7117
- msgid "Get weekly traffic reports directly in your inbox."
7118
  msgstr ""
7119
 
7120
- #: languages/vue.php:1643
7121
- msgid "Publisher Reports"
7122
  msgstr ""
7123
 
7124
- #: languages/vue.php:1646
7125
- msgid "Advanced Publisher Reports & Tracking"
7126
  msgstr ""
7127
 
7128
- #: languages/vue.php:1649
7129
- msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
7130
  msgstr ""
7131
 
7132
- #: languages/vue.php:1655
7133
- msgid "Basic Options"
7134
  msgstr ""
7135
 
7136
- #: languages/vue.php:1658
7137
- msgid "Order Popular Posts by comments or shares with 3 simple theme choices."
7138
  msgstr ""
7139
 
7140
- #: languages/vue.php:1661
7141
- msgid "Dynamic Popular Posts & Popular Products"
7142
  msgstr ""
7143
 
7144
- #: languages/vue.php:1664
7145
- msgid "Display Popular Posts based on your actual traffic data from Google Analytics and choose from over 20 advanced themes. Display Popular WooCommerce products using widgets or Gutenberg blocks."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7146
  msgstr ""
7147
 
7148
  #: languages/vue.php:1668
7149
- msgid "Not Available"
7150
  msgstr ""
7151
 
7152
  #: languages/vue.php:1671
7153
- msgid "Complete Custom Dimensions Tracking"
7154
  msgstr ""
7155
 
7156
  #: languages/vue.php:1674
7157
- 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"
 
 
 
 
7158
  msgstr ""
7159
 
7160
  #: languages/vue.php:1680
7161
- msgid "Limited Support"
7162
  msgstr ""
7163
 
7164
  #: languages/vue.php:1683
7165
- msgid "Priority Support"
7166
  msgstr ""
7167
 
7168
  #: languages/vue.php:1686
7169
- msgid "Get the most out of MonsterInsights by upgrading to Pro and unlocking all of the powerful features."
7170
  msgstr ""
7171
 
7172
  #: languages/vue.php:1689
7173
- msgid "Feature"
7174
  msgstr ""
7175
 
7176
  #: languages/vue.php:1692
7177
- msgid "Lite"
7178
  msgstr ""
7179
 
7180
  #: languages/vue.php:1695
7181
- msgid "Pro"
7182
  msgstr ""
7183
 
7184
  #: languages/vue.php:1698
7185
- msgid "Custom Google Analytics Link Tracking"
7186
  msgstr ""
7187
 
7188
  #: languages/vue.php:1701
7189
- msgid "Standard Tracking"
7190
  msgstr ""
7191
 
7192
  #: languages/vue.php:1704
7193
- msgid "Advanced Tracking"
7194
  msgstr ""
7195
 
7196
  #: languages/vue.php:1707
7197
- msgid "Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking"
7198
  msgstr ""
7199
 
7200
  #: languages/vue.php:1710
7201
- msgid "Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers"
7202
  msgstr ""
7203
 
7204
  #: languages/vue.php:1713
7205
- msgid "No-Code-Needed Tracking Features"
7206
  msgstr ""
7207
 
7208
  #: languages/vue.php:1716
7209
- msgid "Basic Tracking Options"
7210
  msgstr ""
7211
 
7212
  #: languages/vue.php:1719
7213
- msgid "Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking"
7214
  msgstr ""
7215
 
7216
  #: languages/vue.php:1722
7217
- msgid "Advanced Tracking Options"
7218
  msgstr ""
7219
 
7220
  #: languages/vue.php:1725
7221
- msgid "Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors"
7222
  msgstr ""
7223
 
7224
  #: languages/vue.php:1728
7225
- msgid "eCommerce Tracking"
7226
  msgstr ""
7227
 
7228
  #: languages/vue.php:1731
7229
- msgid "One-click Complete eCommerce tracking"
7230
  msgstr ""
7231
 
7232
  #: languages/vue.php:1734
7233
- msgid "Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required"
7234
  msgstr ""
7235
 
7236
  #: languages/vue.php:1737
7237
- msgid "Forms Tracking"
7238
  msgstr ""
7239
 
7240
  #: languages/vue.php:1740
7241
- msgid "One-click Form Events Tracking"
7242
  msgstr ""
7243
 
7244
  #: languages/vue.php:1743
7245
- msgid "Show in widget mode"
7246
  msgstr ""
7247
 
7248
  #: languages/vue.php:1746
7249
- msgid "Show in full-width mode"
7250
  msgstr ""
7251
 
7252
- #. Translators: Example path (/go/).
7253
- #: languages/vue.php:1751
7254
- msgid "Path (example: %s)"
7255
  msgstr ""
7256
 
7257
- #: languages/vue.php:1755
7258
- msgid "Path has to start with a / and have no spaces"
7259
  msgstr ""
7260
 
7261
- #. Translators: Example label (aff).
7262
- #: languages/vue.php:1760
7263
- msgid "Label (example: %s)"
7264
  msgstr ""
7265
 
7266
- #: languages/vue.php:1764
7267
- msgid "Label can't contain any spaces"
 
7268
  msgstr ""
7269
 
7270
- #: languages/vue.php:1767
7271
- msgid "Affiliate Links"
7272
  msgstr ""
7273
 
7274
- #. Translators: Add links to documentation.
7275
- #: languages/vue.php:1771
7276
- 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."
7277
  msgstr ""
7278
 
7279
- #: languages/vue.php:1774
7280
- msgid "Our affiliate link tracking works by setting path for internal links to track as outbound links."
 
7281
  msgstr ""
7282
 
7283
- #: languages/vue.php:1777
7284
- 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."
 
7285
  msgstr ""
7286
 
7287
- #: languages/vue.php:1780
7288
- msgid "Disable the Headline Analyzer"
 
7289
  msgstr ""
7290
 
7291
- #: languages/vue.php:1783
7292
- msgid "See who's viewing and submitting your forms, so you can increase your conversion rate."
 
7293
  msgstr ""
7294
 
 
7295
  #: languages/vue.php:1786
7296
- msgid "Use Google Optimize to retarget your website visitors and perform A/B split tests with ease."
7297
  msgstr ""
7298
 
7299
- #: languages/vue.php:1789
7300
- msgid "Add Custom Dimensions and track who's the most popular author on your site, which post types get the most traffic, and more"
 
7301
  msgstr ""
7302
 
7303
- #. Translators: placeholders make text small.
7304
- #: languages/vue.php:1793
7305
- msgid "Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s"
7306
  msgstr ""
7307
 
7308
- #. Translators: placeholders make text small.
7309
  #: languages/vue.php:1797
7310
- msgid "Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s"
7311
  msgstr ""
7312
 
7313
- #. Translators: placeholders make text small.
7314
- #: languages/vue.php:1801
7315
- msgid "None %1$s- Manually update everything.%2$s"
7316
  msgstr ""
7317
 
7318
- #. Translators: Adds a link to the general settings tab.
7319
- #: languages/vue.php:1805
7320
- 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."
7321
  msgstr ""
7322
 
7323
- #: languages/vue.php:1808
7324
- msgid "Export PDF Reports"
7325
  msgstr ""
7326
 
7327
- #: languages/vue.php:1811
7328
- msgid "Permissions"
7329
  msgstr ""
7330
 
7331
- #: languages/vue.php:1814
7332
- msgid "Allow These User Roles to See Reports"
7333
  msgstr ""
7334
 
7335
- #: languages/vue.php:1817
7336
- msgid "Users that have at least one of these roles will be able to view the reports."
7337
  msgstr ""
7338
 
7339
- #: languages/vue.php:1820
7340
- 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."
7341
  msgstr ""
7342
 
7343
- #: languages/vue.php:1823
7344
- msgid "Allow These User Roles to Save Settings"
 
7345
  msgstr ""
7346
 
7347
- #: languages/vue.php:1826
7348
- msgid "Users that have at least one of these roles will be able to view and save the settings panel."
7349
  msgstr ""
7350
 
7351
- #: languages/vue.php:1829
7352
- 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."
7353
  msgstr ""
7354
 
7355
- #: languages/vue.php:1832
7356
- msgid "Exclude These User Roles From Tracking"
7357
  msgstr ""
7358
 
7359
- #: languages/vue.php:1835
7360
- msgid "Users that have at least one of these roles will not be tracked into Google Analytics."
7361
  msgstr ""
7362
 
7363
- #: languages/vue.php:1838
7364
- msgid "Performance"
7365
  msgstr ""
7366
 
7367
- #: languages/vue.php:1841
7368
- msgid "Custom code"
7369
  msgstr ""
7370
 
7371
- #. Translators: Adds a link to the Google reference.
7372
- #: languages/vue.php:1845
7373
- 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."
7374
  msgstr ""
7375
 
7376
- #: languages/vue.php:1851
7377
- msgid "Automatic Updates"
7378
  msgstr ""
7379
 
7380
- #: languages/vue.php:1854
7381
- msgid "You must have the \"unfiltered_html\" capability to view/edit this setting."
7382
  msgstr ""
7383
 
7384
- #: languages/vue.php:1857
7385
- msgid "Hide Admin Bar Reports"
 
 
 
 
 
 
 
 
7386
  msgstr ""
7387
 
7388
- #. Translators: placeholders make text small.
7389
  #: languages/vue.php:1861
7390
- msgid "Enabled %1$s- Show reports and dashboard widget.%2$s"
7391
  msgstr ""
7392
 
7393
- #. Translators: placeholders make text small.
7394
- #: languages/vue.php:1865
7395
- msgid "Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s"
7396
  msgstr ""
7397
 
7398
- #. Translators: placeholders make text small.
7399
- #: languages/vue.php:1869
7400
- msgid "Disabled %1$s- Hide reports and dashboard widget.%2$s"
7401
  msgstr ""
7402
 
7403
- #: languages/vue.php:1872
7404
- msgid "See All Your Important Store Metrics in One Place"
7405
  msgstr ""
7406
 
7407
- #: languages/vue.php:1875
7408
- msgid "Get an Answer to All Your Top Ecommerce Questions From a Single Report"
7409
  msgstr ""
7410
 
7411
- #: languages/vue.php:1878
7412
- msgid "ONE-CLICK INTEGRATIONS"
7413
  msgstr ""
7414
 
7415
- #: languages/vue.php:1881
7416
- msgid "Enable Ecommerce Tracking and Grow Your Business with Confidence"
7417
  msgstr ""
7418
 
7419
- #: languages/vue.php:1884
7420
- 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."
7421
  msgstr ""
7422
 
7423
- #: languages/vue.php:1887
7424
- msgid "Show Overview Reports"
7425
  msgstr ""
7426
 
7427
- #: languages/vue.php:1890
7428
- msgid "Show Publishers Reports"
7429
  msgstr ""
7430
 
7431
- #: languages/vue.php:1893
7432
- msgid "Show eCommerce Reports"
 
7433
  msgstr ""
7434
 
7435
- #: languages/vue.php:1896
7436
- msgid "Settings Menu"
7437
  msgstr ""
7438
 
7439
  #: languages/vue.php:1899
7440
- msgid "Available in PRO version"
7441
  msgstr ""
7442
 
7443
  #: languages/vue.php:1902
7444
- msgid "Enable Demographics and Interests Reports for Remarketing and Advertising"
7445
  msgstr ""
7446
 
7447
  #: languages/vue.php:1905
7448
- msgid "Anonymize IP Addresses"
7449
  msgstr ""
7450
 
7451
  #: languages/vue.php:1908
7452
- msgid "Link Attribution"
7453
  msgstr ""
7454
 
7455
  #: languages/vue.php:1911
7456
- msgid "Enable Enhanced Link Attribution"
7457
  msgstr ""
7458
 
7459
- #: languages/vue.php:1914
7460
- msgid "Enable Anchor Tracking"
7461
  msgstr ""
7462
 
7463
- #: languages/vue.php:1917
7464
- msgid "Enable allowAnchor"
7465
  msgstr ""
7466
 
7467
- #: languages/vue.php:1920
7468
- msgid "Enable allowLinker"
7469
  msgstr ""
7470
 
7471
- #: languages/vue.php:1923
7472
- msgid "Enable Tag Links in RSS"
 
7473
  msgstr ""
7474
 
7475
- #: languages/vue.php:1926
7476
- msgid "File Downloads"
7477
  msgstr ""
7478
 
7479
- #: languages/vue.php:1929
7480
- msgid "Extensions of Files to Track as Downloads"
7481
  msgstr ""
7482
 
7483
- #: languages/vue.php:1932
7484
- msgid "MonsterInsights will send an event to Google Analytics if a link to a file has one of the above extensions."
7485
  msgstr ""
7486
 
7487
- #. Translators: Add links to the documentation.
7488
- #: languages/vue.php:1936
7489
- 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."
7490
  msgstr ""
7491
 
7492
- #. Translators: Adds a link to the documentation.
7493
- #: languages/vue.php:1940
7494
- 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."
7495
  msgstr ""
7496
 
7497
- #. Translators: Adds a link to the documentation.
7498
  #: languages/vue.php:1944
7499
- 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."
7500
  msgstr ""
7501
 
7502
  #: languages/vue.php:1947
7503
- 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."
7504
  msgstr ""
7505
 
7506
- #. Translators: Adds a link to the documentation.
7507
- #: languages/vue.php:1951
7508
- 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."
7509
  msgstr ""
7510
 
7511
- #. Translators: Adds a link to the documentation.
7512
- #: languages/vue.php:1955
7513
- 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."
 
 
 
7514
  msgstr ""
7515
 
7516
- #. Translators: Adds a link to the documentation.
7517
  #: languages/vue.php:1959
7518
- 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."
7519
  msgstr ""
7520
 
7521
  #: languages/vue.php:1962
7522
- msgid "Add domain"
7523
  msgstr ""
7524
 
7525
- #. Translators: Example domain.
7526
- #: languages/vue.php:1966
7527
- msgid "Domain (example: %s)"
7528
  msgstr ""
7529
 
7530
- #. Translators: Current site domain to be avoided.
7531
- #: languages/vue.php:1970
7532
- msgid "Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s )."
7533
  msgstr ""
7534
 
7535
- #: languages/vue.php:1973
7536
- msgid "Cross Domain Tracking"
7537
  msgstr ""
7538
 
7539
- #. Translators: Adds a link to the documentation.
7540
- #: languages/vue.php:1977
7541
- 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."
7542
  msgstr ""
7543
 
7544
- #: languages/vue.php:1980
7545
- msgid "Choose Theme"
7546
  msgstr ""
7547
 
7548
- #: languages/vue.php:1983
7549
- msgid "Widget Styling"
 
7550
  msgstr ""
7551
 
7552
- #: languages/vue.php:1986
7553
- msgid "Choose how you want to determine the colors, font sizes and spacing of the widget."
7554
  msgstr ""
7555
 
7556
- #: languages/vue.php:1989
7557
- msgid "Sort By"
7558
  msgstr ""
7559
 
7560
- #: languages/vue.php:1992
7561
- msgid "Choose how you'd like the widget to determine your popular posts."
 
7562
  msgstr ""
7563
 
7564
- #: languages/vue.php:1995
7565
- msgid "Display Title"
 
7566
  msgstr ""
7567
 
7568
- #: languages/vue.php:2001
7569
- msgid "Title your widget and set its display preferences."
 
7570
  msgstr ""
7571
 
7572
- #: languages/vue.php:2004
7573
- msgid "Include in Post Types"
7574
  msgstr ""
7575
 
7576
- #: languages/vue.php:2007
7577
- msgid "Exclude from specific posts"
 
7578
  msgstr ""
7579
 
7580
- #. Translators: Placeholders make the text bold.
7581
- #: languages/vue.php:2011
7582
- msgid "Choose which Post Types the widget %1$sWILL%2$s be placed."
7583
  msgstr ""
7584
 
7585
- #. Translators: Placeholders make the text bold.
7586
- #: languages/vue.php:2015
7587
- msgid "Choose from which Posts the widget %1$sWILL NOT%2$s be placed."
7588
  msgstr ""
7589
 
7590
- #: languages/vue.php:2018
7591
- msgid "Loading Themes"
7592
  msgstr ""
7593
 
7594
- #. Translators: placeholders make text small.
7595
- #: languages/vue.php:2022
7596
- msgid "Default Styles %1$s- As seen above.%2$s"
7597
  msgstr ""
7598
 
7599
- #. Translators: placeholders make text small.
7600
- #: languages/vue.php:2026
7601
- msgid "No Styles %1$s- Use your own CSS.%2$s"
7602
  msgstr ""
7603
 
7604
- #. Translators: placeholders make text small.
7605
- #: languages/vue.php:2030
7606
- msgid "Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s"
7607
  msgstr ""
7608
 
7609
- #. Translators: placeholders make text small.
7610
  #: languages/vue.php:2034
7611
- msgid "SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s"
7612
  msgstr ""
7613
 
7614
- #. Translators: placeholders make text small.
7615
  #: languages/vue.php:2038
7616
- msgid "Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s"
7617
- msgstr ""
7618
-
7619
- #: languages/vue.php:2041
7620
- msgid "Make your MonsterInsights campaign links prettier with Pretty Links!"
7621
  msgstr ""
7622
 
7623
- #: languages/vue.php:2044
7624
- msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable, totally shareable links."
 
7625
  msgstr ""
7626
 
7627
- #: languages/vue.php:2047
7628
- msgid "Take your MonsterInsights campaign links from our URL Builder and shorten them with Pretty Links!"
 
7629
  msgstr ""
7630
 
 
7631
  #: languages/vue.php:2050
7632
- msgid "Over 200,000 websites use Pretty Links!"
7633
  msgstr ""
7634
 
7635
  #: languages/vue.php:2053
7636
- msgid "Install Pretty Links"
7637
- msgstr ""
7638
-
7639
- #: languages/vue.php:2056
7640
- msgid "Pretty Links Installed & Activated"
7641
  msgstr ""
7642
 
7643
- #: languages/vue.php:2059
7644
- msgid "Install Pretty Links from the WordPress.org plugin repository."
 
7645
  msgstr ""
7646
 
7647
- #: languages/vue.php:2062
7648
- msgid "Activate Pretty Links"
 
7649
  msgstr ""
7650
 
 
7651
  #: languages/vue.php:2065
7652
- msgid "Activating Pretty Links..."
7653
  msgstr ""
7654
 
7655
  #: languages/vue.php:2068
7656
- msgid "Create New Pretty Link"
7657
  msgstr ""
7658
 
7659
  #: languages/vue.php:2071
7660
- msgid "Create a New Pretty Link"
7661
  msgstr ""
7662
 
7663
  #: languages/vue.php:2074
7664
- msgid "Grab your campaign link and paste it into the Target URL field."
7665
  msgstr ""
7666
 
7667
- #. Translators: Error status and error text.
7668
- #: languages/vue.php:2078
7669
- msgid "Can't load settings. Error: %1$s, %2$s"
7670
  msgstr ""
7671
 
7672
- #: languages/vue.php:2082
7673
- msgid "You appear to be offline."
 
 
 
 
7674
  msgstr ""
7675
 
7676
- #. Translators: Error status and error text.
7677
  #: languages/vue.php:2086
7678
- msgid "Can't save settings. Error: %1$s, %2$s"
7679
  msgstr ""
7680
 
7681
  #: languages/vue.php:2089
7682
- msgid "Network error encountered. Settings not saved."
7683
  msgstr ""
7684
 
7685
  #: languages/vue.php:2092
7686
- msgid "Show"
7687
  msgstr ""
7688
 
7689
  #: languages/vue.php:2095
7690
- msgid "Activating..."
7691
  msgstr ""
7692
 
 
7693
  #: languages/vue.php:2099
7694
- msgid "Deactivating..."
7695
  msgstr ""
7696
 
7697
  #: languages/vue.php:2102
7698
- msgid "Installing..."
7699
  msgstr ""
7700
 
 
7701
  #: languages/vue.php:2106
7702
- msgid "Deactivate"
7703
  msgstr ""
7704
 
7705
- #. Translators: The status of the addon (installed/active/inactive).
7706
- #: languages/vue.php:2110
7707
- msgid "Status: %s"
7708
  msgstr ""
7709
 
 
7710
  #: languages/vue.php:2113
7711
- msgid "Not Installed"
7712
  msgstr ""
7713
 
7714
  #: languages/vue.php:2116
7715
- msgid "Network Active"
7716
  msgstr ""
7717
 
7718
- #: languages/vue.php:2119
7719
- msgid "Active"
 
7720
  msgstr ""
7721
 
7722
- #: languages/vue.php:2122
7723
- msgid "Inactive"
7724
  msgstr ""
7725
 
7726
- #. Translators: Make text green.
7727
- #: languages/vue.php:2126
7728
- msgid "Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s"
7729
  msgstr ""
7730
 
7731
- #. Translators: Error status and error text.
7732
- #: languages/vue.php:2130
7733
- msgid "Can't deactivate the license. Error: %1$s, %2$s"
7734
  msgstr ""
7735
 
7736
- #. Translators: Error status and error text.
7737
  #: languages/vue.php:2134
7738
- msgid "Can't upgrade to PRO please try again. Error: %1$s, %2$s"
7739
  msgstr ""
7740
 
7741
- #. Translators: Error status and error text.
7742
  #: languages/vue.php:2138
7743
- msgid "Can't load license details. Error: %1$s, %2$s"
7744
  msgstr ""
7745
 
7746
  #: languages/vue.php:2141
7747
- msgid "Error loading license details"
7748
  msgstr ""
7749
 
7750
- #. Translators: Error status and error text.
7751
  #: languages/vue.php:2145
7752
- msgid "Can't verify the license. Error: %1$s, %2$s"
7753
  msgstr ""
7754
 
7755
- #. Translators: Error status and error text.
7756
- #: languages/vue.php:2149
7757
- msgid "Can't validate the license. Error: %1$s, %2$s"
7758
  msgstr ""
7759
 
7760
- #: languages/vue.php:2152
7761
- msgid "View notifications"
7762
  msgstr ""
7763
 
7764
- #: languages/vue.php:2155
7765
- msgid "You appear to be offline. WPForms not installed."
7766
  msgstr ""
7767
 
7768
- #. Translators: Error status and error text.
7769
- #: languages/vue.php:2159
7770
- msgid "Can't activate addon. Error: %1$s, %2$s"
7771
  msgstr ""
7772
 
7773
- #: languages/vue.php:2162
7774
- msgid "You appear to be offline. Addon not activated."
 
 
 
 
7775
  msgstr ""
7776
 
7777
- #. Translators: Error status and error text.
7778
  #: languages/vue.php:2166
7779
- msgid "Can't deactivate addon. Error: %1$s, %2$s"
7780
  msgstr ""
7781
 
7782
  #: languages/vue.php:2169
7783
- msgid "You appear to be offline. Addon not deactivated."
7784
  msgstr ""
7785
 
7786
- #. Translators: Error status and error text.
7787
- #: languages/vue.php:2173
7788
- msgid "Can't install plugin. Error: %1$s, %2$s"
7789
  msgstr ""
7790
 
7791
- #: languages/vue.php:2176
7792
- msgid "You appear to be offline. Plugin not installed."
7793
  msgstr ""
7794
 
7795
- #. Translators: Error status and error text.
7796
- #: languages/vue.php:2180
7797
- msgid "Can't install addon. Error: %1$s, %2$s"
7798
  msgstr ""
7799
 
7800
- #: languages/vue.php:2183
7801
- msgid "You appear to be offline. Addon not installed."
 
 
 
 
7802
  msgstr ""
7803
 
7804
- #. Translators: Error status and error text.
7805
  #: languages/vue.php:2187
7806
- msgid "Can't install WPForms. Error: %1$s, %2$s"
7807
  msgstr ""
7808
 
7809
  #: languages/vue.php:2190
7810
- msgid "%1$sAll-in-One SEO%2$s Makes SEO Simple. Gain Valuable Organic Traffic."
7811
  msgstr ""
7812
 
7813
  #: languages/vue.php:2193
7814
- msgid "Automatically migrate all of your SEO settings with just 1 click!"
7815
  msgstr ""
7816
 
7817
  #: languages/vue.php:2196
7818
- msgid "1,938"
7819
  msgstr ""
7820
 
7821
  #: languages/vue.php:2199
7822
- msgid "2+ Million Active Installs"
7823
  msgstr ""
7824
 
7825
  #: languages/vue.php:2202
7826
- msgid "AIOSEO is the DIY Solution for Managing your SEO"
7827
  msgstr ""
7828
 
7829
  #: languages/vue.php:2205
7830
- msgid "Set up the proper SEO foundations in less than 10 minutes."
7831
  msgstr ""
7832
 
7833
  #: languages/vue.php:2208
7834
- msgid "SEO Audit Checklist"
7835
  msgstr ""
7836
 
7837
  #: languages/vue.php:2211
7838
- msgid "Analyze your entire WordPress site to detect critical errors and get actionable insights to boost your SEO and get more traffic."
7839
  msgstr ""
7840
 
7841
  #: languages/vue.php:2214
7842
- msgid "Optimize Your Pages For Higher Rankings With TruSEO Score."
7843
  msgstr ""
7844
 
7845
  #: languages/vue.php:2217
7846
- msgid "TruSEO Score gives you a more in-depth analysis into your optimization efforts than just a pass or fail. Our actionable checklist helps you to unlock maximum traffic with each page."
7847
  msgstr ""
7848
 
7849
  #: languages/vue.php:2220
7850
- msgid "Get AIOSEO for WordPress"
7851
  msgstr ""
7852
 
7853
  #: languages/vue.php:2223
7854
- msgid "Get the #1 Most Powerful WordPress SEO Plugin Today"
7855
  msgstr ""
7856
 
7857
  #: languages/vue.php:2226
7858
- msgid "Try it out today, for free."
7859
  msgstr ""
7860
 
7861
  #: languages/vue.php:2229
7862
- msgid "Join 2,000,000+ Professionals who use AIOSEO to Improve Their Website Search Rankings."
7863
  msgstr ""
7864
 
7865
  #: languages/vue.php:2232
7866
- msgid "Activate and Install the Plugin with just one click!"
7867
  msgstr ""
7868
 
7869
  #: languages/vue.php:2235
7870
- msgid "Installing AIOSEO..."
7871
  msgstr ""
7872
 
7873
  #: languages/vue.php:2238
7874
- msgid "Congrats! All-in-One SEO Installed."
7875
  msgstr ""
7876
 
7877
  #: languages/vue.php:2241
7878
- msgid "Switch to AIOSEO"
7879
  msgstr ""
7880
 
7881
  #: languages/vue.php:2244
7882
- msgid "Installation Failed. Please refresh and try again."
7883
  msgstr ""
7884
 
7885
  #: languages/vue.php:2247
7886
- msgid "Activating AIOSEO..."
7887
  msgstr ""
7888
 
7889
  #: languages/vue.php:2250
7890
- msgid "Activate AIOSEO"
7891
  msgstr ""
7892
 
7893
  #: languages/vue.php:2253
7894
- msgid "Activation Failed. Please refresh and try again."
7895
  msgstr ""
7896
 
7897
  #: languages/vue.php:2256
7898
- msgid "Placement"
7899
  msgstr ""
7900
 
7901
  #: languages/vue.php:2259
7902
- msgid "Choose how you'd like to place the widget."
7903
  msgstr ""
7904
 
7905
  #: languages/vue.php:2262
7906
- msgid "Insert After"
7907
  msgstr ""
7908
 
7909
- #: languages/vue.php:2265
7910
- msgid "Choose where in the post body the widget will be placed."
 
7911
  msgstr ""
7912
 
 
7913
  #: languages/vue.php:2270
7914
- msgid "Customize Design"
7915
  msgstr ""
7916
 
7917
- #: languages/vue.php:2273
7918
- msgid "words"
 
7919
  msgstr ""
7920
 
7921
- #: languages/vue.php:2276
7922
- msgid "Please select at least one post to display."
7923
  msgstr ""
7924
 
7925
- #. Translators: placeholders make text small.
7926
- #: languages/vue.php:2280
7927
- msgid "Automatic %1$s- The widget is automatically placed inside the post body.%2$s"
7928
- msgstr ""
7929
-
7930
- #. Translators: placeholders make text small.
7931
- #: languages/vue.php:2284
7932
- msgid "Manual %1$s- Manually place the widget using Gutenberg blocks or using our shortcode.%2$s"
7933
  msgstr ""
7934
 
7935
- #: languages/vue.php:2287
7936
- msgid "Proceed"
 
7937
  msgstr ""
7938
 
7939
- #: languages/vue.php:2290
7940
- msgid "Connection Information"
 
7941
  msgstr ""
7942
 
7943
- #: languages/vue.php:2293
7944
- 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."
7945
  msgstr ""
7946
 
 
7947
  #: languages/vue.php:2296
7948
- msgid "Hostname"
7949
- msgstr ""
7950
-
7951
- #: languages/vue.php:2299
7952
- msgid "FTP Username"
7953
  msgstr ""
7954
 
7955
- #: languages/vue.php:2302
7956
- msgid "FTP Password"
 
7957
  msgstr ""
7958
 
7959
- #: languages/vue.php:2305
7960
- msgid "This password will not be stored on the server."
7961
  msgstr ""
7962
 
7963
- #: languages/vue.php:2308
7964
- msgid "Connection Type"
 
7965
  msgstr ""
7966
 
 
7967
  #: languages/vue.php:2311
7968
- msgid "Cancel"
7969
  msgstr ""
7970
 
7971
  #: languages/vue.php:2314
7972
- msgid "Install All-in-One SEO"
7973
  msgstr ""
7974
 
7975
  #: languages/vue.php:2317
7976
- msgid "Improve Your Website Search Rankings With All-In-One SEO"
7977
  msgstr ""
7978
 
7979
  #: languages/vue.php:2320
7980
- msgid "If you’re not using a plugin to optimize your website’s SEO you’re missing out on valuable organic traffic!"
7981
  msgstr ""
7982
 
7983
  #: languages/vue.php:2323
7984
- msgid "Finally, a WordPress SEO Plugin that’s Easy and Powerful!"
7985
  msgstr ""
7986
 
7987
  #: languages/vue.php:2326
7988
- msgid "AIOSEO makes it easy to set up the proper SEO foundations in less than 10 minutes."
7989
  msgstr ""
7990
 
7991
  #: languages/vue.php:2329
7992
- msgid "Local SEO"
7993
  msgstr ""
7994
 
7995
  #: languages/vue.php:2332
7996
- msgid "All in One SEO gives you all the tools you need to improve your local SEO and rank higher on Google Maps."
7997
  msgstr ""
7998
 
7999
  #: languages/vue.php:2335
8000
- msgid "WooCommerce SEO"
8001
  msgstr ""
8002
 
8003
  #: languages/vue.php:2338
8004
- msgid "Advanced eCommerce SEO support for WooCommerce to optimize product pages, product categories, and more."
8005
  msgstr ""
8006
 
8007
  #: languages/vue.php:2341
8008
- msgid "SEO Custom User Roles"
8009
  msgstr ""
8010
 
8011
  #: languages/vue.php:2344
8012
- msgid "SEO user roles allow you to manage access to important SEO features without handing over control of your website."
8013
  msgstr ""
8014
 
8015
  #: languages/vue.php:2347
8016
- msgid "Google News Sitemap"
8017
  msgstr ""
8018
 
8019
  #: languages/vue.php:2350
8020
- msgid "Get higher rankings and unlock more traffic by submitting your latest news articles to Google News."
8021
  msgstr ""
8022
 
8023
  #: languages/vue.php:2353
8024
- msgid "Smart XML Sitemaps"
8025
  msgstr ""
8026
 
8027
  #: languages/vue.php:2356
8028
- msgid "Automatically generate a WordPress XML sitemap and notify all search engines of any updates."
8029
  msgstr ""
8030
 
8031
  #: languages/vue.php:2359
8032
- msgid "Social Media Integration"
8033
  msgstr ""
8034
 
8035
  #: languages/vue.php:2362
8036
- msgid "Easily control how your content and thumbnails look on Facebook, Twitter, and other social media networks."
8037
  msgstr ""
8038
 
8039
  #: languages/vue.php:2365
8040
- msgid "TruSEO On-Page Analysis"
8041
  msgstr ""
8042
 
8043
  #: languages/vue.php:2368
8044
- msgid "Easily add title tags, meta descriptions, keywords, and everything else you need for proper on-page SEO optimization."
8045
  msgstr ""
8046
 
8047
  #: languages/vue.php:2371
8048
- msgid "& Many More!"
8049
  msgstr ""
8050
 
8051
  #: languages/vue.php:2374
8052
- msgid "Installing. Please wait.."
8053
  msgstr ""
8054
 
8055
  #: languages/vue.php:2377
8056
- msgid "Install All-in-One-SEO"
8057
  msgstr ""
8058
 
8059
  #: languages/vue.php:2380
8060
- msgid "Caching"
8061
  msgstr ""
8062
 
8063
  #: languages/vue.php:2383
8064
- msgid "Enable Data Caching"
8065
- msgstr ""
8066
-
8067
- #: languages/vue.php:2386
8068
- msgid "Refresh Cache Every"
8069
  msgstr ""
8070
 
8071
- #: languages/vue.php:2389
8072
- msgid "Choose how often to refresh the cache."
 
8073
  msgstr ""
8074
 
8075
- #: languages/vue.php:2392
8076
- msgid "Enable Ajaxify"
 
8077
  msgstr ""
8078
 
 
8079
  #: languages/vue.php:2395
8080
- msgid "Ajaxify Widget"
8081
- msgstr ""
8082
-
8083
- #: languages/vue.php:2398
8084
- msgid "Use to bypass page caching."
8085
  msgstr ""
8086
 
8087
- #: languages/vue.php:2401
8088
- msgid "Empty Cache"
 
8089
  msgstr ""
8090
 
8091
- #: languages/vue.php:2404
8092
- msgid "Click to manually wipe the cache right now."
8093
  msgstr ""
8094
 
8095
- #: languages/vue.php:2407
8096
- msgid "Popular posts cache emptied"
8097
  msgstr ""
8098
 
8099
- #: languages/vue.php:2410
8100
- msgid "Error emptying the popular posts cache. Please try again."
8101
  msgstr ""
8102
 
8103
- #: languages/vue.php:2413
8104
- msgid "You must connect with MonsterInsights before you can view reports."
 
8105
  msgstr ""
8106
 
8107
- #: languages/vue.php:2416
8108
- msgid "MonsterInsights makes it \"effortless\" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
8109
  msgstr ""
8110
 
 
8111
  #: languages/vue.php:2419
8112
- msgid "Please ask your webmaster to connect MonsterInsights to Google Analytics."
8113
  msgstr ""
8114
 
8115
  #: languages/vue.php:2422
8116
- #: lite/includes/admin/reports/report-queries.php:22
8117
- msgid "Search Console"
8118
  msgstr ""
8119
 
8120
  #: languages/vue.php:2425
8121
- #: lite/includes/admin/reports/report-forms.php:22
8122
- msgid "Forms"
8123
  msgstr ""
8124
 
8125
  #: languages/vue.php:2428
8126
- msgid "Real-Time"
8127
  msgstr ""
8128
 
8129
  #: languages/vue.php:2431
8130
- msgid "SharedCount API Key"
8131
  msgstr ""
8132
 
8133
  #: languages/vue.php:2434
8134
- msgid "Insert your sharedcount API key found in your %1$sSettings%2$s panel. After, click Start Indexing."
8135
  msgstr ""
8136
 
8137
  #: languages/vue.php:2437
8138
- msgid "Start Indexing"
8139
  msgstr ""
8140
 
8141
  #: languages/vue.php:2440
8142
- msgid "%1$sIndex Progress: %2$s%%.%3$s You may leave this page during indexing."
8143
  msgstr ""
8144
 
8145
  #: languages/vue.php:2443
8146
- msgid "Indexing completed, counts will update automatically every day."
8147
  msgstr ""
8148
 
8149
  #: languages/vue.php:2446
8150
- msgid "Select posts/search"
8151
  msgstr ""
8152
 
8153
  #: languages/vue.php:2449
8154
- msgid "Oops! No posts found."
8155
  msgstr ""
8156
 
8157
  #: languages/vue.php:2452
8158
- msgid "Search by post title"
8159
  msgstr ""
8160
 
8161
  #: languages/vue.php:2455
8162
- msgid "Can't load posts."
8163
  msgstr ""
8164
 
8165
  #: languages/vue.php:2458
8166
- msgid "Reset to default"
8167
  msgstr ""
8168
 
8169
  #: languages/vue.php:2461
8170
- msgid "The value entered does not match the required format"
8171
  msgstr ""
8172
 
8173
  #: languages/vue.php:2464
8174
- msgid "Only Show Posts from These Categories"
8175
  msgstr ""
8176
 
8177
  #: languages/vue.php:2467
8178
- msgid "Choose from which categories posts will be displayed in the widget. All categories will be used if left empty."
8179
  msgstr ""
8180
 
8181
  #: languages/vue.php:2470
8182
- msgid "Popular Posts data can be fetched correctly"
8183
  msgstr ""
8184
 
8185
  #: languages/vue.php:2473
8186
- 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."
8187
  msgstr ""
8188
 
8189
  #: languages/vue.php:2476
8190
- msgid "Close"
8191
  msgstr ""
8192
 
8193
  #: languages/vue.php:2479
8194
- msgid "Add Top 5 Posts from Google Analytics"
8195
  msgstr ""
8196
 
8197
  #: languages/vue.php:2482
8198
- 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."
8199
  msgstr ""
8200
 
8201
  #: languages/vue.php:2485
8202
- msgid "Test Automated Posts"
8203
  msgstr ""
8204
 
8205
- #. Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc.
8206
- #: languages/vue.php:2489
8207
- msgid "Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics."
8208
  msgstr ""
8209
 
 
8210
  #: languages/vue.php:2492
8211
- msgid "Automated + Curated"
8212
  msgstr ""
8213
 
8214
- #. Translators: Placeholder adds a link to the Custom Dimensions settings.
8215
- #: languages/vue.php:2496
8216
- 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."
8217
  msgstr ""
8218
 
8219
- #. Translators: Placeholder gets replaced with current license version.
8220
- #: languages/vue.php:2500
8221
- msgid "Pro version is required."
8222
  msgstr ""
8223
 
8224
- #: languages/vue.php:2503
8225
- msgid "Verifying Popular Posts data"
8226
  msgstr ""
8227
 
8228
- #: languages/vue.php:2506
8229
- msgid "Title"
8230
  msgstr ""
8231
 
8232
- #: languages/vue.php:2509
8233
- msgid "Color"
8234
  msgstr ""
8235
 
8236
- #: languages/vue.php:2512
8237
- msgid "Size"
8238
  msgstr ""
8239
 
8240
- #: languages/vue.php:2515
8241
- msgid "Border"
8242
  msgstr ""
8243
 
8244
- #: languages/vue.php:2518
8245
- msgid "Author/Date"
8246
  msgstr ""
8247
 
8248
- #: languages/vue.php:2521
8249
- msgid "Label"
8250
  msgstr ""
8251
 
8252
- #: languages/vue.php:2524
8253
- msgid "Background"
8254
  msgstr ""
8255
 
8256
- #: languages/vue.php:2536
8257
- msgid "Choose which content you would like displayed in the widget."
8258
  msgstr ""
8259
 
8260
- #: languages/vue.php:2548
8261
- msgid "Comments"
8262
  msgstr ""
8263
 
8264
- #: languages/vue.php:2554
8265
- msgid "Choose how many posts you’d like displayed in the widget."
8266
  msgstr ""
8267
 
8268
- #: languages/vue.php:2557
8269
- msgid "Facebook Instant Articles"
8270
  msgstr ""
8271
 
8272
- #: languages/vue.php:2560
8273
- msgid "Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to MonsterInsights Pro."
8274
  msgstr ""
8275
 
8276
- #: languages/vue.php:2563
8277
- msgid "This feature requires MonsterInsights Pro"
8278
  msgstr ""
8279
 
8280
- #: languages/vue.php:2566
8281
- msgid "By upgrading you will also get access to advanced eCommerce tracking, Custom Dimensions and more."
8282
  msgstr ""
8283
 
8284
- #: languages/vue.php:2569
8285
- msgid "Upgrade to Pro and Unlock Popular Products"
8286
  msgstr ""
8287
 
8288
- #: languages/vue.php:2572
8289
- msgid "View all Pro features"
8290
  msgstr ""
8291
 
8292
- #: languages/vue.php:2575
8293
- msgid "Scroll Tracking"
8294
  msgstr ""
8295
 
8296
- #: languages/vue.php:2578
8297
- 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."
8298
  msgstr ""
8299
 
8300
- #: languages/vue.php:2581
8301
- #: lite/includes/popular-posts/class-popular-posts-widget-sidebar.php:257
8302
- msgid "Theme Preview"
8303
  msgstr ""
8304
 
8305
- #: languages/vue.php:2584
8306
- msgid "Wide"
8307
  msgstr ""
8308
 
8309
- #: languages/vue.php:2587
8310
- msgid "Narrow"
8311
  msgstr ""
8312
 
8313
- #. Translators: Page number of total pages. 1 & 2 make the first part of the text bold.
8314
- #: languages/vue.php:2591
8315
- msgid "%1$sPage %3$s%2$s of %4$s"
8316
  msgstr ""
8317
 
8318
- #. Translators: Placeholders are used for making text bold and adding a link.
8319
- #: languages/vue.php:2595
8320
- msgid "You're using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s."
8321
  msgstr ""
8322
 
8323
- #. Translators: The name of the field that is throwing a validation error.
8324
- #: languages/vue.php:2599
8325
- msgid "%s can't be empty."
8326
  msgstr ""
8327
 
8328
- #: languages/vue.php:2602
8329
- msgid "Duplicate values are not allowed."
8330
  msgstr ""
8331
 
8332
- #: languages/vue.php:2605
8333
- msgid "You can add maximum 5 items."
8334
  msgstr ""
8335
 
8336
- #: languages/vue.php:2608
8337
- msgid "At least 0 item required."
8338
  msgstr ""
8339
 
8340
- #: languages/vue.php:2611
8341
- msgid "Add Another Link Path"
8342
  msgstr ""
8343
 
8344
- #: languages/vue.php:2614
8345
- msgid "Remove row"
8346
  msgstr ""
8347
 
8348
- #: languages/vue.php:2617
8349
- 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."
8350
  msgstr ""
8351
 
8352
- #: languages/vue.php:2620
8353
- msgid "Usage Tracking"
8354
  msgstr ""
8355
 
8356
- #: languages/vue.php:2623
8357
- 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."
8358
  msgstr ""
8359
 
8360
- #: languages/vue.php:2626
8361
- msgid "Allow usage tracking"
8362
  msgstr ""
8363
 
8364
- #. Translators: Add links to documentation.
8365
- #: languages/vue.php:2630
8366
- msgid "Complete documentation on usage tracking is available %1$shere%2$s."
8367
  msgstr ""
8368
 
8369
- #: languages/vue.php:2633
8370
- 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."
8371
  msgstr ""
8372
 
8373
- #: languages/vue.php:2636
8374
- msgid "All-in-One SEO is a great product. I have been using it on all my WP sites for several years. I highly recommend it."
8375
  msgstr ""
8376
 
8377
- #: languages/vue.php:2639
8378
- msgid "Jack Brown"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8379
  msgstr ""
8380
 
8381
  #: languages/vue.php:2642
8382
- msgid "PJB Internet Marketing"
8383
  msgstr ""
8384
 
8385
  #: languages/vue.php:2645
8386
- msgid "I’m a professional SEO and used many tools and extensions. Regarding simplicity, individuality and configurability All in One SEO Pro is by far the best SEO plugin out there for WordPress."
8387
  msgstr ""
8388
 
8389
  #: languages/vue.php:2648
8390
- msgid "Joel Steinmann"
8391
  msgstr ""
8392
 
8393
  #: languages/vue.php:2651
8394
- msgid "CEO, Solergo"
8395
  msgstr ""
8396
 
8397
  #: languages/vue.php:2654
8398
- msgid "2,000,000+ use AIOSEO to Improve Their Website Search Rankings"
8399
  msgstr ""
8400
 
8401
  #: languages/vue.php:2657
8402
- msgid "Upgrade"
8403
  msgstr ""
8404
 
8405
  #: languages/vue.php:2660
8406
- msgid "Our email summaries feature sends a weekly summary of the most important site analytics information."
8407
  msgstr ""
8408
 
8409
  #: languages/vue.php:2663
8410
- msgid "Google AMP"
8411
  msgstr ""
8412
 
8413
  #: languages/vue.php:2666
8414
- msgid "Want to use track users visiting your AMP pages? By upgrading to MonsterInsights Pro, you can enable AMP page tracking."
8415
  msgstr ""
8416
 
8417
  #: languages/vue.php:2669
8418
- msgid "Ads Tracking"
8419
  msgstr ""
8420
 
8421
  #: languages/vue.php:2672
8422
- msgid "Add Ads tracking to see who's clicking on your Google Ads, so you can increase your revenue."
8423
  msgstr ""
8424
 
8425
  #: languages/vue.php:2675
8426
- msgid "No options available"
8427
  msgstr ""
8428
 
8429
  #: languages/vue.php:2678
8430
- msgid "Download the analytics reports instantly from the WordPress dashboard as PDF files and share them with anyone."
8431
  msgstr ""
8432
 
8433
  #: languages/vue.php:2681
8434
- msgid "Hide dashboard widget"
8435
  msgstr ""
8436
 
8437
  #: languages/vue.php:2684
8438
- msgid "Are you sure you want to hide the MonsterInsights Dashboard Widget? "
8439
  msgstr ""
8440
 
8441
  #: languages/vue.php:2687
8442
- msgid "Yes, hide it!"
8443
  msgstr ""
8444
 
8445
  #: languages/vue.php:2690
8446
- msgid "No, cancel!"
8447
  msgstr ""
8448
 
8449
  #: languages/vue.php:2693
8450
- msgid "MonsterInsights Widget Hidden"
8451
  msgstr ""
8452
 
8453
  #: languages/vue.php:2696
8454
- msgid "You can re-enable the MonsterInsights widget at any time using the \"Screen Options\" menu on the top right of this page"
8455
  msgstr ""
8456
 
8457
  #: languages/vue.php:2699
8458
- msgid ""
8459
- "The EU Compliance addon allows you to improve compliance with GDPR\n"
8460
- " and other privacy regulations."
8461
  msgstr ""
8462
 
8463
- #: languages/vue.php:2703
8464
- msgid "EU Compliance"
8465
  msgstr ""
8466
 
8467
- #: languages/vue.php:2706
8468
- msgid "Compatibility mode"
8469
  msgstr ""
8470
 
8471
- #: languages/vue.php:2709
8472
- msgid "Enable _gtagTracker Compatibility"
8473
  msgstr ""
8474
 
8475
- #. Translators: Placeholder gets replaced with default GA js function.
8476
- #: languages/vue.php:2713
8477
- msgid "This enables MonsterInsights to work with plugins that use %1$s and don't support %2$s"
8478
  msgstr ""
8479
 
8480
- #: languages/vue.php:2716
8481
- msgid "Thank you for being a loyal MonsterInsights Lite user."
8482
  msgstr ""
8483
 
8484
- #: languages/vue.php:2719
8485
- msgid "Upgrade to MonsterInsights Pro and unlock all the awesome features."
 
 
 
 
8486
  msgstr ""
8487
 
8488
- #. Translators: Gets replaced with the coupon code.
8489
  #: languages/vue.php:2723
8490
- msgid "Use coupon code %s to get 50%% off."
8491
  msgstr ""
8492
 
8493
  #: languages/vue.php:2726
8494
- msgid "Dashboard widget"
8495
  msgstr ""
8496
 
8497
- #: languages/vue.php:2729
8498
- msgid "Enhanced Ecommerce"
 
8499
  msgstr ""
8500
 
8501
- #: languages/vue.php:2732
8502
- msgid "Banner Ads"
8503
  msgstr ""
8504
 
8505
- #: languages/vue.php:2735
8506
- msgid "SEO Score Tracking"
8507
  msgstr ""
8508
 
8509
- #: languages/vue.php:2738
8510
- msgid "Sartorial taxidermy venmo you probably haven't heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu."
8511
  msgstr ""
8512
 
8513
- #: languages/vue.php:2741
8514
- msgid "Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan"
8515
  msgstr ""
8516
 
8517
- #: languages/vue.php:2744
8518
- msgid "Icon"
8519
  msgstr ""
8520
 
8521
- #: languages/vue.php:2747
8522
- msgid "Pro version is required"
8523
  msgstr ""
8524
 
8525
- #. Translators: Placeholder adds a link to the Custom Dimensions settings.
8526
  #: languages/vue.php:2751
8527
- 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)."
8528
  msgstr ""
8529
 
8530
- #. Translators: Minimum and maximum number that can be used.
8531
- #: languages/vue.php:2755
8532
- msgid "Please enter a value between %1$s and %2$s"
8533
  msgstr ""
8534
 
8535
- #. Translators: The minimum set value.
8536
- #: languages/vue.php:2759
8537
- msgid "Please enter a value higher than %s"
 
 
 
8538
  msgstr ""
8539
 
8540
- #. Translators: The maximum set value.
8541
  #: languages/vue.php:2763
8542
- msgid "Please enter a value lower than %s"
8543
  msgstr ""
8544
 
8545
  #: languages/vue.php:2766
8546
- msgid "Please enter a number"
8547
  msgstr ""
8548
 
8549
  #: languages/vue.php:2769
8550
- msgid "Value has to be a round number"
8551
  msgstr ""
8552
 
8553
  #: languages/vue.php:2772
8554
- msgid "Multiple Entries"
8555
  msgstr ""
8556
 
8557
  #: languages/vue.php:2775
8558
- msgid "Total Number of Widgets to Show"
8559
  msgstr ""
8560
 
8561
  #: languages/vue.php:2778
8562
- msgid "Choose how many widgets will be placed in a single Post."
8563
  msgstr ""
8564
 
8565
  #: languages/vue.php:2781
8566
- msgid "Minimum Distance Between Widgets"
8567
  msgstr ""
8568
 
8569
  #: languages/vue.php:2784
8570
- msgid "Choose the distance between widgets."
8571
- msgstr ""
8572
-
8573
- #: languages/vue.php:2787
8574
- msgid "Minimum Word Count to Display Multiple Widgets"
8575
  msgstr ""
8576
 
8577
  #: languages/vue.php:2790
8578
- msgid "Choose the minimum word count for a Post to have multiple entries."
8579
  msgstr ""
8580
 
8581
  #: languages/vue.php:2793
8582
- msgid "Exit Setup"
8583
  msgstr ""
8584
 
8585
  #: languages/vue.php:2796
8586
- msgid "Automatic Placement"
8587
- msgstr ""
8588
-
8589
- #: languages/vue.php:2799
8590
- msgid "Display using Gutenberg Blocks"
8591
  msgstr ""
8592
 
8593
- #: languages/vue.php:2802
8594
- msgid "Embed Options"
 
8595
  msgstr ""
8596
 
8597
- #: languages/vue.php:2805
8598
- msgid "All Embed Options can be used in conjunction with one another."
 
8599
  msgstr ""
8600
 
8601
- #: languages/vue.php:2808
8602
- msgid "Using the Gutenberg Block"
8603
  msgstr ""
8604
 
 
8605
  #: languages/vue.php:2811
8606
- msgid "Using Automatic Embed"
8607
- msgstr ""
8608
-
8609
- #: languages/vue.php:2814
8610
- 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."
8611
  msgstr ""
8612
 
8613
- #: languages/vue.php:2817
8614
- 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."
 
8615
  msgstr ""
8616
 
8617
- #: languages/vue.php:2820
8618
- msgid "Learn how to insert the Popular Posts Widget using a shortcode. To style this widget use the Customize Design panel above."
 
8619
  msgstr ""
8620
 
 
8621
  #: languages/vue.php:2823
8622
- msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using Gutenberg"
8623
- msgstr ""
8624
-
8625
- #: languages/vue.php:2826
8626
- msgid "%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page."
8627
  msgstr ""
8628
 
8629
- #: languages/vue.php:2829
8630
- msgid "%1$sStep 2%2$s - Search for “Popular Posts”."
 
8631
  msgstr ""
8632
 
8633
- #: languages/vue.php:2832
8634
- msgid "%1$sStep 3%2$s - Style the widget using the Block Settings sidebar."
8635
  msgstr ""
8636
 
8637
- #: languages/vue.php:2835
8638
- 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."
8639
  msgstr ""
8640
 
8641
- #: languages/vue.php:2838
8642
- 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."
8643
  msgstr ""
8644
 
8645
- #: languages/vue.php:2841
8646
- msgid "%1$sStep 3%2$s - The widget options should automatically expand allowing you to customize the design."
8647
  msgstr ""
8648
 
8649
- #: languages/vue.php:2844
8650
- msgid "Display using a Shortcode"
8651
  msgstr ""
8652
 
8653
- #: languages/vue.php:2847
8654
- msgid "Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin."
8655
  msgstr ""
8656
 
8657
- #: languages/vue.php:2850
8658
- msgid "Copy Shortcode"
8659
  msgstr ""
8660
 
8661
- #: languages/vue.php:2853
8662
- msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using our Shortcode"
 
8663
  msgstr ""
8664
 
 
8665
  #: languages/vue.php:2856
8666
- msgid "Enable Automatic Placement"
8667
  msgstr ""
8668
 
8669
  #: languages/vue.php:2859
8670
- msgid "Display in a Sidebar"
8671
  msgstr ""
8672
 
8673
  #: languages/vue.php:2862
8674
- msgid "Learn how to insert the Popular Posts Widget into a Sidebar. To style this widget use the Customize Design panel above."
8675
  msgstr ""
8676
 
8677
  #: languages/vue.php:2865
8678
- msgid "Watch Video - How to Add the Popular Posts widget using Widgets"
8679
  msgstr ""
8680
 
8681
  #: languages/vue.php:2868
8682
- msgid "Days"
8683
  msgstr ""
8684
 
8685
- #. Translators: placeholders make text small.
8686
- #: languages/vue.php:2872
8687
- msgid "7 days"
8688
  msgstr ""
8689
 
8690
- #: languages/vue.php:2875
8691
- msgid "30 days"
8692
  msgstr ""
8693
 
8694
- #: languages/vue.php:2878
8695
- msgid "Custom"
8696
  msgstr ""
8697
 
8698
- #: languages/vue.php:2881
8699
- msgid "Allow Usage Tracking"
8700
  msgstr ""
8701
 
8702
- #: languages/vue.php:2884
8703
- msgid "Unlock with %s"
8704
  msgstr ""
8705
 
8706
- #. Translators: Make text green and add smiley face.
8707
- #: languages/vue.php:2888
8708
- msgid "You're using %1$sMonsterInsights Lite%2$s - no license needed. Enjoy! %3$s"
 
 
 
8709
  msgstr ""
8710
 
8711
- #. Translators: Add link to upgrade.
8712
  #: languages/vue.php:2892
8713
- msgid "To unlock more features consider %1$supgrading to PRO%2$s."
8714
  msgstr ""
8715
 
8716
- #. Translators: Make text green.
8717
- #: languages/vue.php:2896
8718
- msgid "As a valued MonsterInsights Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!"
8719
  msgstr ""
8720
 
8721
- #: languages/vue.php:2899
8722
- msgid "Unlock PRO Features Now"
8723
  msgstr ""
8724
 
8725
- #: languages/vue.php:2902
8726
- msgid "Paste your license key here"
8727
  msgstr ""
8728
 
8729
- #: languages/vue.php:2905
8730
- msgid "Verify"
8731
  msgstr ""
8732
 
8733
- #. Translators: Add link to retrieve license from account area.
8734
- #: languages/vue.php:2909
8735
- msgid "Already purchased? Simply enter your license key below to connect with MonsterInsights PRO! %1$sRetrieve your license key%2$s."
8736
  msgstr ""
8737
 
8738
- #: languages/vue.php:2912
8739
- msgid "There was an error unlocking MonsterInsights PRO please try again or install manually."
8740
  msgstr ""
8741
 
8742
- #. Translators: Number of days.
8743
- #: languages/vue.php:2916
8744
- msgid "vs. Previous Day"
 
8745
  msgstr ""
8746
 
8747
- #: languages/vue.php:2919
8748
- msgid "No change"
8749
  msgstr ""
8750
 
8751
- #: languages/vue.php:2922
8752
- msgid "Warning: If you use a manual GA4 Measurement ID, you won't be able to use any of the reporting and some of the tracking features. Your Measurement ID should look like G-XXXXXXXXXX where the X's are numbers."
8753
  msgstr ""
8754
 
8755
- #: languages/vue.php:2925
8756
- msgid "Or manually enter UA code (limited functionality)"
8757
  msgstr ""
8758
 
8759
- #: languages/vue.php:2928
8760
- msgid "Dual Tracking Profile"
 
8761
  msgstr ""
8762
 
 
8763
  #: languages/vue.php:2931
8764
- msgid "The dual tracking feature allows you to continue tracking this site into an existing GAv3 property so you can continue to use the GA reports you are used to already. Learn more about this feature %1$shere%2$s."
8765
  msgstr ""
8766
 
8767
  #: languages/vue.php:2934
8768
- msgid "Your Universal Analytics code should look like UA-XXXXXXXXXX where the X's are numbers."
 
8769
  msgstr ""
8770
 
8771
  #: languages/vue.php:2937
8772
- msgid "The dual tracking feature allows you to begin tracking this site into a GAv4 property to take advantage of the new GAv4 analysis tools. Learn more about this feature %1$shere%2$s."
8773
  msgstr ""
8774
 
8775
  #: languages/vue.php:2940
8776
- msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are numbers."
8777
  msgstr ""
8778
 
8779
  #: languages/vue.php:2943
8780
- msgid "Measurement Protocol API Secret"
8781
  msgstr ""
8782
 
8783
  #: languages/vue.php:2946
8784
- msgid "The Measurement Protocol API secret allows your site to send tracking data to Google Analytics. To retrieve your Measurement Protocol API Secret, follow %1$sthis guide%2$s."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8785
  msgstr ""
8786
 
8787
- #: languages/vue.php:2949
8788
- msgid "Force Deauthenticate"
8789
  msgstr ""
8790
 
8791
- #: languages/vue.php:2952
8792
- msgid "Disconnect MonsterInsights"
 
8793
  msgstr ""
8794
 
8795
- #: languages/vue.php:2955
8796
- msgid "Authenticating"
8797
  msgstr ""
8798
 
8799
- #: languages/vue.php:2958
8800
- msgid "Verifying Credentials"
8801
  msgstr ""
8802
 
8803
- #: languages/vue.php:2961
8804
- msgid "Your site is connected to MonsterInsights!"
8805
  msgstr ""
8806
 
8807
- #: languages/vue.php:2964
8808
- msgid "Deauthenticating"
8809
  msgstr ""
8810
 
8811
- #: languages/vue.php:2967
8812
- 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."
8813
  msgstr ""
8814
 
8815
- #: languages/vue.php:2970
8816
- msgid "Connect MonsterInsights"
8817
  msgstr ""
8818
 
8819
- #: languages/vue.php:2973
8820
- msgid "Verify Credentials"
8821
  msgstr ""
8822
 
8823
- #: languages/vue.php:2976
8824
- msgid "Website Profile"
8825
  msgstr ""
8826
 
8827
- #: languages/vue.php:2979
8828
- msgid "Active Profile"
 
8829
  msgstr ""
8830
 
8831
- #: languages/vue.php:2982
8832
- msgid "Your website profile has been set at the network level of your WordPress Multisite."
8833
  msgstr ""
8834
 
8835
- #: languages/vue.php:2985
8836
- msgid "If you would like to use a different profile for this subsite, you can authenticate below."
8837
  msgstr ""
8838
 
8839
- #: languages/vue.php:2988
8840
- msgid "Manually enter your UA code"
8841
  msgstr ""
8842
 
8843
- #: languages/vue.php:2991
8844
- 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."
8845
  msgstr ""
8846
 
8847
- #: languages/vue.php:2994
8848
- msgid "Manually enter your GA4 Measurement ID"
8849
  msgstr ""
8850
 
8851
- #: languages/vue.php:2997
8852
- msgid "Forms Tracking help you see who’s viewing your forms, so you can increase conversions."
8853
  msgstr ""
8854
 
8855
- #: languages/vue.php:3000
8856
- msgid "Custom Dimensions show you popular categories, best time to publish, focus keywords, etc."
8857
  msgstr ""
8858
 
8859
- #: languages/vue.php:3003
8860
- msgid "Make Google Analytics GDPR compliant with our EU Compliance addon."
8861
  msgstr ""
8862
 
8863
- #: languages/vue.php:3006
8864
- msgid "Get real-time Google Analytics report right inside your WordPress dashboard."
8865
  msgstr ""
8866
 
8867
- #: languages/vue.php:3009
8868
- msgid "Use Google Optimize to easily perform A/B split tests on your site."
8869
  msgstr ""
8870
 
8871
- #: languages/vue.php:3012
8872
- msgid "See all your important store metrics in one place with Enhanced Ecommerce Tracking."
8873
  msgstr ""
8874
 
8875
- #: languages/vue.php:3015
8876
- msgid "Unlock search console report to see your top performing keywords in Google."
8877
  msgstr ""
8878
 
8879
- #: languages/vue.php:3018
8880
- msgid "Get Page Insights to see important metrics for individual posts / pages in WordPress."
 
8881
  msgstr ""
8882
 
8883
- #: languages/vue.php:3021
8884
- msgid "Publishers Report shows your top performing pages, audience demographics, and more."
8885
  msgstr ""
8886
 
8887
- #: languages/vue.php:3024
8888
- msgid "Get Scroll-Depth tracking to see how far users scroll on your pages before leaving."
8889
  msgstr ""
8890
 
8891
- #: languages/vue.php:3027
8892
- msgid "Upgrade to Pro »"
8893
  msgstr ""
8894
 
8895
- #: languages/vue.php:3030
8896
- msgid "Pro Tip:"
8897
  msgstr ""
8898
 
8899
- #. Translators: Placeholder adds a line break.
8900
- #: languages/vue.php:3034
8901
- msgid "You can customize your %sdate range only in the PRO version."
8902
  msgstr ""
8903
 
8904
- #: languages/vue.php:3037
8905
- msgid "Export PDF Report"
8906
  msgstr ""
8907
 
8908
- #: languages/vue.php:3040
8909
- msgid "You can export PDF reports only in the PRO version."
8910
  msgstr ""
8911
 
8912
- #: languages/vue.php:3043
8913
- msgid "Upgrade to MonsterInsights Pro to Unlock More Actionable Insights"
8914
  msgstr ""
8915
 
8916
- #: languages/vue.php:3046
8917
- 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!"
8918
  msgstr ""
8919
 
8920
- #: languages/vue.php:3049
8921
- msgid "Upgrade to MonsterInsights Pro and Save 50% OFF!"
8922
  msgstr ""
8923
 
8924
- #. Translators: Makes text bold.
8925
- #: languages/vue.php:3053
8926
- msgid "Use coupon code %1$sLITEUPGRADE%2$s"
8927
  msgstr ""
8928
 
8929
- #. Translators: Error status and error text.
8930
- #: languages/vue.php:3057
8931
- msgid "Can't deauthenticate. Error: %1$s, %2$s"
8932
  msgstr ""
8933
 
8934
- #. Translators: Error status and error text.
8935
- #: languages/vue.php:3061
8936
- msgid "Can't load authentication details. Error: %1$s, %2$s"
8937
  msgstr ""
8938
 
8939
- #: languages/vue.php:3064
8940
- msgid "You appear to be offline. Settings not saved."
8941
  msgstr ""
8942
 
8943
- #. Translators: Error status and error text.
8944
- #: languages/vue.php:3068
8945
- msgid "Can't authenticate. Error: %1$s, %2$s"
8946
  msgstr ""
8947
 
8948
- #. Translators: Error status and error text.
8949
- #: languages/vue.php:3072
8950
- msgid "Can't reauthenticate. Error: %1$s, %2$s"
8951
  msgstr ""
8952
 
8953
- #. Translators: Error status and error text.
8954
- #: languages/vue.php:3076
8955
- msgid "Can't verify credentials. Error: %1$s, %2$s"
8956
  msgstr ""
8957
 
8958
- #: languages/vue.php:3079
8959
- msgid "Welcome to MonsterInsights!"
8960
  msgstr ""
8961
 
8962
- #: languages/vue.php:3082
8963
- msgid "Let's get you set up."
8964
  msgstr ""
8965
 
8966
- #: languages/vue.php:3085
8967
- msgid "Save and Continue"
8968
  msgstr ""
8969
 
8970
- #: languages/vue.php:3088
8971
- msgid "Which category best describes your website?"
8972
  msgstr ""
8973
 
8974
- #: languages/vue.php:3091
8975
- msgid "We will recommend the optimal settings for MonsterInsights based on your choice."
8976
  msgstr ""
8977
 
8978
- #: languages/vue.php:3094
8979
- msgid "Business Website"
8980
  msgstr ""
8981
 
8982
- #. Translators: Make text bold.
8983
- #: languages/vue.php:3098
8984
- msgid "Publisher %1$s(Blog)%2$s"
8985
  msgstr ""
8986
 
8987
- #: languages/vue.php:3101
8988
- msgid "Ecommerce"
8989
  msgstr ""
8990
 
8991
- #: languages/vue.php:3104
8992
  msgid "Display Method"
8993
  msgstr ""
8994
 
8995
- #: languages/vue.php:3107
8996
  msgid "There are two ways to manual include the widget in your posts."
8997
  msgstr ""
8998
 
8999
- #: languages/vue.php:3110
9000
  msgid "Using the Shortcode"
9001
  msgstr ""
9002
 
9003
- #: languages/vue.php:3113
9004
  msgid "Learn how to insert the widget using Gutenberg blocks."
9005
  msgstr ""
9006
 
9007
- #: languages/vue.php:3116
9008
  msgid "Learn how to insert the widget using out Shortcode."
9009
  msgstr ""
9010
 
9011
- #: languages/vue.php:3119
9012
  msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg"
9013
  msgstr ""
9014
 
9015
- #: languages/vue.php:3122
9016
  msgid "%1$sStep 2%2$s - Search for “Inline Popular Posts by MonsterInsights”."
9017
  msgstr ""
9018
 
9019
- #: languages/vue.php:3125
9020
  msgid "Shortcode"
9021
  msgstr ""
9022
 
9023
- #: languages/vue.php:3128
9024
  msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using our Shortcode"
9025
  msgstr ""
9026
 
9027
- #: languages/vue.php:3131
9028
- msgid "MonsterInsights Recommends WPForms"
9029
  msgstr ""
9030
 
9031
- #: languages/vue.php:3134
9032
- msgid "Built by the folks behind MonsterInsights, WPForms is the most beginner friendly form plugin in the market."
9033
  msgstr ""
9034
 
9035
- #: languages/vue.php:3137
9036
- msgid "Used on over 4,000,000 websites!"
9037
  msgstr ""
9038
 
9039
- #: languages/vue.php:3140
9040
- 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!"
9041
  msgstr ""
9042
 
9043
- #: languages/vue.php:3143
9044
- msgid "Skip this Step"
9045
  msgstr ""
9046
 
9047
- #: languages/vue.php:3146
9048
- msgid "Continue & Install WPForms"
9049
  msgstr ""
9050
 
9051
- #: languages/vue.php:3149
9052
- msgid "Awesome, You're All Set!"
9053
  msgstr ""
9054
 
9055
- #: languages/vue.php:3152
9056
- msgid "MonsterInsights is all set up and ready to use. We've verified that the tracking code is deployed properly and collecting data."
9057
  msgstr ""
9058
 
9059
- #. Translators: Make text bold.
9060
- #: languages/vue.php:3156
9061
- 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."
9062
  msgstr ""
9063
 
9064
- #. Translators: Link to our blog.
9065
- #: languages/vue.php:3160
9066
- msgid "%1$sSubscribe to the MonsterInsights blog%2$s for tips on how to get more traffic and grow your business."
9067
  msgstr ""
9068
 
9069
- #: languages/vue.php:3163
9070
- msgid "Finish Setup & Exit Wizard"
9071
  msgstr ""
9072
 
9073
- #: languages/vue.php:3166
9074
- msgid "Checking your website..."
9075
  msgstr ""
9076
 
9077
- #: languages/vue.php:3169
9078
- msgid "Connect MonsterInsights to Your Website"
9079
  msgstr ""
9080
 
9081
- #: languages/vue.php:3172
9082
- msgid "MonsterInsights connects Google Analytics to WordPress and shows you stats that matter."
9083
  msgstr ""
9084
 
9085
- #: languages/vue.php:3175
9086
- msgid "Whoops, something went wrong and we weren't able to connect to MonsterInsights. Please enter your Google UA code manually."
9087
  msgstr ""
9088
 
9089
- #: languages/vue.php:3178
9090
- msgid "UA code can't be empty"
9091
  msgstr ""
9092
 
9093
- #: languages/vue.php:3181
9094
- msgid "Saving UA code..."
9095
  msgstr ""
9096
 
9097
- #: languages/vue.php:3184
9098
- msgid "Recommended Settings"
9099
  msgstr ""
9100
 
9101
- #: languages/vue.php:3187
9102
- msgid "MonsterInsights recommends the following settings based on your configuration."
9103
  msgstr ""
9104
 
9105
- #: languages/vue.php:3190
9106
- msgid "Events Tracking"
9107
  msgstr ""
9108
 
9109
- #: languages/vue.php:3193
9110
- msgid "Must have for all click tracking on site."
9111
  msgstr ""
9112
 
9113
- #: languages/vue.php:3196
9114
- 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."
9115
  msgstr ""
9116
 
9117
- #: languages/vue.php:3199
9118
- msgid "Enhanced Link Attribution"
9119
  msgstr ""
9120
 
9121
- #: languages/vue.php:3202
9122
- msgid "Improves the accuracy of your In-Page Analytics."
9123
  msgstr ""
9124
 
9125
- #: languages/vue.php:3205
9126
- 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."
9127
  msgstr ""
9128
 
9129
- #: languages/vue.php:3208
9130
- msgid "Install Updates Automatically"
9131
  msgstr ""
9132
 
9133
- #: languages/vue.php:3211
9134
- msgid "Get the latest features, bug fixes, and security updates as they are released."
9135
  msgstr ""
9136
 
9137
- #: languages/vue.php:3214
9138
- msgid "To ensure you get the latest bug fixes and security updates and avoid needing to spend time logging into your WordPress site to update MonsterInsights, we offer the ability to automatically have MonsterInsights update itself."
9139
  msgstr ""
9140
 
9141
- #: languages/vue.php:3217
9142
- msgid "File Download Tracking"
9143
  msgstr ""
9144
 
9145
- #: languages/vue.php:3220
9146
- msgid "Helps you see file downloads data."
9147
  msgstr ""
9148
 
9149
- #: languages/vue.php:3223
9150
- 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."
9151
  msgstr ""
9152
 
9153
- #: languages/vue.php:3226
9154
- msgid "Helps you increase affiliate revenue."
9155
  msgstr ""
9156
 
9157
- #: languages/vue.php:3229
9158
- 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."
9159
  msgstr ""
9160
 
9161
- #: languages/vue.php:3232
9162
- msgid "Affiliate Link Tracking"
9163
  msgstr ""
9164
 
9165
- #: languages/vue.php:3235
9166
- msgid "Who Can See Reports"
9167
  msgstr ""
9168
 
9169
- #: languages/vue.php:3238
9170
- msgid "These user roles will be able to access MonsterInsights' reports in the WordPress admin area."
9171
  msgstr ""
9172
 
9173
- #: languages/vue.php:3241
9174
- msgid "Save and continue"
9175
  msgstr ""
9176
 
9177
- #: languages/vue.php:3244
9178
- msgid "Events Tracking is enabled the moment you set up MonsterInsights"
9179
  msgstr ""
9180
 
9181
- #: languages/vue.php:3247
9182
- msgid "Enhanced Link Attribution is enabled the moment you set up MonsterInsights"
9183
  msgstr ""
9184
 
9185
- #: languages/vue.php:3250
9186
- msgid "+ Add Role"
9187
  msgstr ""
9188
 
9189
- #: languages/vue.php:3253
9190
- msgid "Recommended Addons"
9191
  msgstr ""
9192
 
9193
- #: languages/vue.php:3256
9194
- msgid "To unlock more features consider upgrading to PRO. As a valued MonsterInsights Lite user you receive 50% off, automatically applied at checkout!"
9195
  msgstr ""
9196
 
9197
- #: languages/vue.php:3259
9198
- msgid "Other Addons"
9199
  msgstr ""
9200
 
9201
- #: languages/vue.php:3262
9202
- msgid "View all MonsterInsights addons"
9203
  msgstr ""
9204
 
9205
- #: languages/vue.php:3265
9206
- msgid "Help Us Improve"
9207
  msgstr ""
9208
 
9209
- #: languages/vue.php:3268
9210
- msgid "Help us better understand our users and their website needs."
9211
  msgstr ""
9212
 
9213
- #. Translators: Adds a link to the documentation.
9214
- #: languages/vue.php:3272
9215
- 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"
9216
  msgstr ""
9217
 
9218
- #: languages/vue.php:3275
9219
- msgid "Website profile"
9220
  msgstr ""
9221
 
9222
- #: languages/vue.php:3278
9223
- msgid "Active profile"
9224
  msgstr ""
9225
 
9226
- #: languages/vue.php:3281
9227
- msgid "Skip and Keep Connection"
9228
  msgstr ""
9229
 
9230
- #. Translators: Error status and error text.
9231
- #: languages/vue.php:3285
9232
- msgid "Can't load errors. Error: %1$s, %2$s"
9233
  msgstr ""
9234
 
9235
- #: languages/vue.php:3288
9236
- msgid "Affiliate Tracking"
9237
  msgstr ""
9238
 
9239
- #: languages/vue.php:3291
9240
- msgid "Automatically Track Affiliate Sales"
9241
  msgstr ""
9242
 
9243
- #: languages/vue.php:3294
9244
- msgid "The MonsterInsights eCommerce addon works with EasyAffiliate to automatically attribute orders originating from an EasyAffiliate link in Google Analytics. Gain valuable insights into your top affiliates with no coding required."
9245
  msgstr ""
9246
 
9247
- #: languages/vue.php:3297
9248
- msgid "Works with WooCommerce, MemberPress and Easy Digital Downloads."
9249
  msgstr ""
9250
 
9251
- #: languages/vue.php:3300
9252
- msgid "Featured"
9253
  msgstr ""
9254
 
9255
- #: languages/vue.php:3303
9256
- msgid "Traffic"
9257
  msgstr ""
9258
 
9259
- #: languages/vue.php:3306
9260
- msgid "Revenue"
9261
  msgstr ""
9262
 
9263
- #: languages/vue.php:3309
9264
- msgid "Guides & Resources"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9265
  msgstr ""
9266
 
9267
- #: languages/vue.php:3312
9268
  msgid "RafflePress"
9269
  msgstr ""
9270
 
9271
- #: languages/vue.php:3315
9272
  msgid "Launch giveaways and raffle campaigns to grow your email lists, increase traffic, and get more social media followers."
9273
  msgstr ""
9274
 
9275
- #: languages/vue.php:3318
9276
  msgid "Constant Contact"
9277
  msgstr ""
9278
 
9279
- #: languages/vue.php:3321
9280
  msgid "Create amazing email marketing campaigns with drag and drop simplicity. Exclusive Offer: Save 20%."
9281
  msgstr ""
9282
 
9283
- #: languages/vue.php:3324
9284
  msgid "SEMRUSH"
9285
  msgstr ""
9286
 
9287
- #: languages/vue.php:3327
9288
  msgid "Perform SEO and content marketing research, track keywords, and much more. Special Offer: First 30 Days Free."
9289
  msgstr ""
9290
 
9291
- #: languages/vue.php:3330
9292
  msgid "Engagement Tools"
9293
  msgstr ""
9294
 
9295
- #: languages/vue.php:3333
9296
  msgid "WPForms"
9297
  msgstr ""
9298
 
9299
- #: languages/vue.php:3336
9300
  msgid "The world’s most popular WordPress form builder, trusted by over 5 million websites. Easily build contact forms, payment forms, and more."
9301
  msgstr ""
9302
 
9303
- #: languages/vue.php:3339
9304
  msgid "OptinMonster"
9305
  msgstr ""
9306
 
9307
- #: languages/vue.php:3342
9308
  msgid "Convert and monetize more of your website traffic with engaging pop-up and gamified tools. Great for all types of websites."
9309
  msgstr ""
9310
 
9311
- #: languages/vue.php:3345
9312
  msgid "Smash Balloon - Facebook"
9313
  msgstr ""
9314
 
9315
- #: languages/vue.php:3348
9316
  msgid "Smash Balloon - Instagram"
9317
  msgstr ""
9318
 
9319
- #: languages/vue.php:3351
9320
  msgid "Quickly add social media feeds from Facebook, Instagram, Twitter, and others to your website, with no coding needed."
9321
  msgstr ""
9322
 
9323
- #: languages/vue.php:3354
9324
  msgid "Popular Posts by MonsterInsights"
9325
  msgstr ""
9326
 
9327
- #: languages/vue.php:3357
9328
  msgid "Increase your visitor engagement by automatically embedding popular and related content from your website."
9329
  msgstr ""
9330
 
9331
- #: languages/vue.php:3360
9332
  msgid "Popular Products by MonsterInsights"
9333
  msgstr ""
9334
 
9335
- #: languages/vue.php:3363
9336
  msgid "Automatically show related products to increase conversion rates and increase cart sizes on your eCommerce website."
9337
  msgstr ""
9338
 
9339
- #: languages/vue.php:3366
9340
  msgid "Revenue Tools"
9341
  msgstr ""
9342
 
9343
- #: languages/vue.php:3369
9344
  msgid "SeedProd"
9345
  msgstr ""
9346
 
9347
- #: languages/vue.php:3372
9348
  msgid "Use the best drag-and-drop landing page builder for WordPress to instantly build coming soon pages, sales pages, opt-in pages, webinar pages, maintenance pages, and more. Includes 100+ free templates."
9349
  msgstr ""
9350
 
9351
- #: languages/vue.php:3375
9352
  msgid "Featured Tools"
9353
  msgstr ""
9354
 
9355
- #: languages/vue.php:3378
9356
  msgid "Easy Affiliate"
9357
  msgstr ""
9358
 
9359
- #: languages/vue.php:3381
9360
  msgid "Launch, grow, and manage an affiliate program, all right from your WordPress dashboard. Works automatically with MonsterInsights."
9361
  msgstr ""
9362
 
9363
- #: languages/vue.php:3384
9364
  msgid "SearchWP"
9365
  msgstr ""
9366
 
9367
- #: languages/vue.php:3387
9368
  msgid "Unlock better search results for your website. Perfect for any information or eCommerce store to help users find exactly what content and products they’re looking for."
9369
  msgstr ""
9370
 
9371
- #: languages/vue.php:3390
9372
  msgid "Easily sell digital products like ebooks, plugins, and courses with WordPress. Built-in payment processing, coupons, shopping cart, detailed reporting, and more."
9373
  msgstr ""
9374
 
9375
- #: languages/vue.php:3393
9376
  msgid "Create a membership website. Works automatically with MonsterInsights, no coding needed."
9377
  msgstr ""
9378
 
9379
- #: languages/vue.php:3396
9380
  msgid "Thirsty Affiliates"
9381
  msgstr ""
9382
 
9383
- #: languages/vue.php:3399
9384
  msgid "Manage all your affiliate links with features designed to help make bloggers more money."
9385
  msgstr ""
9386
 
9387
- #: languages/vue.php:3402
9388
  msgid "Upgrade to unlock advanced reporting and features designed to help you get more traffic and make more money from your website. Special Offer: Save 50% today."
9389
  msgstr ""
9390
 
9391
- #: languages/vue.php:3405
9392
  msgid "Advanced Coupons"
9393
  msgstr ""
9394
 
9395
- #: languages/vue.php:3408
9396
  msgid "Create coupons, reward loyal customers, and schedule promotions for your eCommerce store."
9397
  msgstr ""
9398
 
9399
- #: languages/vue.php:3411
9400
  msgid "PrettyLinks"
9401
  msgstr ""
9402
 
9403
- #: languages/vue.php:3414
9404
  msgid "Automatically monetize your website content with affiliate links added automatically to your content."
9405
  msgstr ""
9406
 
9407
- #: languages/vue.php:3417
9408
  msgid "Install Now"
9409
  msgstr ""
9410
 
9411
- #: languages/vue.php:3420
9412
  msgid "Online Marketing Guides & Resources"
9413
  msgstr ""
9414
 
9415
- #: languages/vue.php:3423
9416
  msgid "MonsterInsights Pro"
9417
  msgstr ""
9418
 
9419
- #: languages/vue.php:3426
9420
  msgid "Upgrade to unlock eCommerce tracking, Custom Dimensions, Form Tracking, and much more. Special Offer: Save 50% today."
9421
  msgstr ""
9422
 
9423
- #: languages/vue.php:3429
9424
  msgid "Traffic Tools"
9425
  msgstr ""
9426
 
9427
- #: languages/vue.php:3432
9428
  msgid "All in One SEO (AIOSEO)"
9429
  msgstr ""
9430
 
9431
- #: languages/vue.php:3435
9432
  msgid "The best WordPress SEO plugin that works automatically with MonsterInsights."
9433
  msgstr ""
9434
 
9435
- #: languages/vue.php:3438
9436
  msgid "PushEngage"
9437
  msgstr ""
9438
 
9439
- #: languages/vue.php:3441
9440
  msgid "Send push notifications to your visitors to drive more traffic and boost sales."
9441
  msgstr ""
9442
 
9443
- #: languages/vue.php:3444
 
 
 
 
 
 
 
 
 
 
 
 
9444
  msgid "Get Started"
9445
  msgstr ""
9446
 
2
  # This file is distributed under the same license as the ExactMetrics Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: ExactMetrics Pro 7.3.0\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/monsterinsights-temp\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-12-14T17:42:02+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: google-analytics-for-wordpress\n"
82
  msgid "Skip %s Deactivate"
83
  msgstr ""
84
 
85
+ #: exactmetrics.php:256
86
+ #: exactmetrics.php:270
87
+ #: googleanalytics.php:281
88
+ #: googleanalytics.php:295
89
  msgid "Cheatin&#8217; huh?"
90
  msgstr ""
91
 
92
  #. Translators: Adds a link to the plugins page.
93
+ #: exactmetrics.php:420
94
+ #: googleanalytics.php:442
95
  msgid "Please %1$suninstall%2$s the MonsterInsights Lite Plugin. Your Pro version of MonsterInsights may not work as expected until the Lite version is uninstalled."
96
  msgstr ""
97
 
119
  #: includes/admin/admin.php:126
120
  #: includes/admin/em-admin.php:18
121
  #: includes/admin/em-admin.php:21
122
+ #: languages/vue.php:245
123
  msgid "Insights"
124
  msgstr ""
125
 
126
  #: includes/admin/admin.php:34
127
  #: includes/admin/admin.php:42
128
  #: includes/admin/admin.php:222
129
+ #: languages/vue.php:516
130
  msgid "Settings"
131
  msgstr ""
132
 
142
 
143
  #: includes/admin/admin.php:39
144
  #: includes/admin/admin.php:130
145
+ #: languages/vue.php:1984
146
  msgid "Reports"
147
  msgstr ""
148
 
152
 
153
  #: includes/admin/admin.php:51
154
  #: languages/gutenberg.php:83
155
+ #: languages/vue.php:883
156
  msgid "Popular Posts"
157
  msgstr ""
158
 
186
 
187
  #: includes/admin/admin.php:71
188
  #: includes/admin/admin.php:146
189
+ #: languages/vue.php:496
190
  msgid "About Us"
191
  msgstr ""
192
 
204
 
205
  #: includes/admin/admin.php:76
206
  #: includes/admin/notifications/notification-upgrade-to-pro.php:31
207
+ #: languages/vue.php:1409
208
  msgid "Upgrade to Pro"
209
  msgstr ""
210
 
232
 
233
  #: includes/admin/admin.php:212
234
  #: includes/admin/admin.php:215
235
+ #: languages/vue.php:907
236
  msgid "Support"
237
  msgstr ""
238
 
242
  #: includes/admin/notifications/notification-upgrade-for-google-optimize.php:30
243
  #: includes/admin/notifications/notification-upgrade-for-search-console.php:30
244
  #: includes/admin/reports/abstract-report.php:418
245
+ #: languages/vue.php:1406
246
  msgid "Get MonsterInsights Pro"
247
  msgstr ""
248
 
252
  msgstr ""
253
 
254
  #: includes/admin/admin.php:324
255
+ #: languages/vue.php:480
256
  msgid "Please Setup Website Analytics to See Audience Insights"
257
  msgstr ""
258
 
259
  #: includes/admin/admin.php:325
260
+ #: languages/vue.php:486
261
  msgid "Connect MonsterInsights and Setup Website Analytics"
262
  msgstr ""
263
 
271
  #: includes/admin/notifications/notification-mobile-device.php:39
272
  #: includes/admin/notifications/notification-returning-visitors.php:39
273
  #: includes/admin/notifications/notification-traffic-dropping.php:34
274
+ #: languages/vue.php:433
275
  msgid "Learn More"
276
  msgstr ""
277
 
278
  #: includes/admin/admin.php:329
279
+ #: languages/vue.php:483
280
  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 3 million website owners use MonsterInsights to see the stats that matter and grow their business."
281
  msgstr ""
282
 
287
 
288
  #. Translators: Adds a link to the license renewal.
289
  #: includes/admin/admin.php:350
290
+ #: languages/vue.php:709
291
  msgid "Your license key for MonsterInsights has expired. %1$sPlease click here to renew your license key.%2$s"
292
  msgstr ""
293
 
294
  #: includes/admin/admin.php:352
295
+ #: languages/vue.php:712
296
  msgid "Your license key for MonsterInsights has been disabled. Please use a different key."
297
  msgstr ""
298
 
299
  #: includes/admin/admin.php:354
300
+ #: languages/vue.php:715
301
  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."
302
  msgstr ""
303
 
355
  msgstr ""
356
 
357
  #: includes/admin/ajax.php:55
358
+ #: includes/admin/routes.php:964
359
  #: lite/includes/admin/onboarding-wizard.php:244
360
  msgid "You are not allowed to install plugins"
361
  msgstr ""
497
  msgstr ""
498
 
499
  #: includes/admin/common.php:950
500
+ msgid "View 2021 Year in Review report!"
501
  msgstr ""
502
 
503
  #: includes/admin/common.php:951
504
+ #: languages/vue.php:3465
505
+ msgid "See how your website performed this year and find tips along the way to help grow even more in 2022!"
506
  msgstr ""
507
 
508
  #: includes/admin/licensing/autoupdate.php:58
529
  msgstr ""
530
 
531
  #: includes/admin/notification-event.php:229
532
+ #: includes/admin/routes.php:870
533
+ #: includes/admin/routes.php:1204
534
  msgid "You don't have permission to view MonsterInsights reports."
535
  msgstr ""
536
 
679
  #. Translators: visitors notification title
680
  #. Translators: Number of visitors.
681
  #: includes/admin/notifications/notification-visitors.php:34
682
+ #: languages/vue.php:229
683
  msgid "See how %s visitors found your site!"
684
  msgstr ""
685
 
809
  msgstr ""
810
 
811
  #: includes/admin/reports/abstract-report.php:415
812
+ #: languages/vue.php:282
813
  msgid "Upgrade Now"
814
  msgstr ""
815
 
818
  msgstr ""
819
 
820
  #: includes/admin/reports/overview.php:34
821
+ #: languages/vue.php:565
822
  msgid "Overview"
823
  msgstr ""
824
 
870
  msgid "Easy digital downloads plugin."
871
  msgstr ""
872
 
873
+ #: includes/admin/routes.php:398
874
  msgid "The best drag & drop WordPress form builder. Easily create beautiful contact forms, surveys, payment forms, and more with our 150+ form templates. Trusted by over 4 million websites as the best forms plugin"
875
  msgstr ""
876
 
877
+ #: includes/admin/routes.php:409
878
  msgid "The original WordPress SEO plugin and toolkit that improves your website’s search rankings. Comes with all the SEO features like Local SEO, WooCommerce SEO, sitemaps, SEO optimizer, schema, and more."
879
  msgstr ""
880
 
881
+ #: includes/admin/routes.php:420
882
  msgid "Instantly get more subscribers, leads, and sales with the #1 conversion optimization toolkit. Create high converting popups, announcement bars, spin a wheel, and more with smart targeting and personalization."
883
  msgstr ""
884
 
885
+ #: includes/admin/routes.php:431
886
  msgid "Improve your WordPress email deliverability and make sure that your website emails reach user’s inbox with the #1 SMTP plugin for WordPress. Over 2 million websites use it to fix WordPress email issues."
887
  msgstr ""
888
 
889
+ #: includes/admin/routes.php:441
890
  msgid "The fastest drag & drop landing page builder for WordPress. Create custom landing pages without writing code, connect them with your CRM, collect subscribers, and grow your audience. Trusted by 1 million sites."
891
  msgstr ""
892
 
893
+ #: includes/admin/routes.php:452
894
  msgid "Turn your website visitors into brand ambassadors! Easily grow your email list, website traffic, and social media followers with the most powerful giveaways & contests plugin for WordPress."
895
  msgstr ""
896
 
897
+ #: includes/admin/routes.php:463
898
  msgid "Boost your sales and conversions by up to 15% with real-time social proof notifications. TrustPulse helps you show live user activity and purchases to help convince other users to purchase."
899
  msgstr ""
900
 
901
+ #: includes/admin/routes.php:473
902
  msgid "Easily display Instagram content on your WordPress site without writing any code. Comes with multiple templates, ability to show content from multiple accounts, hashtags, and more. Trusted by 1 million websites."
903
  msgstr ""
904
 
905
+ #: includes/admin/routes.php:484
906
  msgid "Easily display Facebook content on your WordPress site without writing any code. Comes with multiple templates, ability to show content from multiple accounts, hashtags, and more. Trusted by 1 million websites."
907
  msgstr ""
908
 
909
+ #: includes/admin/routes.php:495
910
  msgid "Connect with your visitors after they leave your website with the leading web push notification software. Over 10,000+ businesses worldwide use PushEngage to send 9 billion notifications each month."
911
  msgstr ""
912
 
913
+ #: includes/admin/routes.php:505
914
  msgid "Pretty Links helps you shrink, beautify, track, manage and share any URL on or off of your WordPress website. Create links that look how you want using your own domain name!"
915
  msgstr ""
916
 
917
+ #: includes/admin/routes.php:516
918
  msgid "ThirstyAffiliates is a revolution in affiliate link management. Collect, collate and store your affiliate links for use in your posts and pages."
919
  msgstr ""
920
 
921
+ #: includes/admin/routes.php:528
922
  msgid "Advanced Coupons for WooCommerce (Free Version) gives WooCommerce store owners extra coupon features so they can market their stores better."
923
  msgstr ""
924
 
925
+ #: includes/admin/routes.php:656
926
+ #: includes/admin/routes.php:709
927
  msgid "Invalid UA code"
928
  msgstr ""
929
 
930
+ #: includes/admin/routes.php:737
931
  msgid "Invalid dual tracking code"
932
  msgstr ""
933
 
934
+ #: includes/admin/routes.php:816
935
  msgid "Please upload a valid .json file"
936
  msgstr ""
937
 
938
+ #: includes/admin/routes.php:825
939
  msgid "Please upload a file to import"
940
  msgstr ""
941
 
942
+ #: includes/admin/routes.php:882
943
+ #: includes/admin/routes.php:1216
944
  msgid "You can't view MonsterInsights reports because you are not licensed."
945
  msgstr ""
946
 
947
+ #: includes/admin/routes.php:883
948
+ #: includes/admin/routes.php:1217
949
  msgid "Add your license"
950
  msgstr ""
951
 
952
+ #: includes/admin/routes.php:890
953
+ #: includes/admin/routes.php:1224
954
  msgid "You can't view MonsterInsights reports due to license key errors."
955
  msgstr ""
956
 
957
+ #: includes/admin/routes.php:898
958
+ #: includes/admin/routes.php:1232
959
  msgid "You must authenticate with MonsterInsights before you can view reports."
960
  msgstr ""
961
 
962
+ #: includes/admin/routes.php:904
963
+ #: includes/admin/routes.php:1238
964
  msgid "Unknown report. Try refreshing and retrying. Contact support if this issue persists."
965
  msgstr ""
966
 
967
+ #: includes/admin/routes.php:952
968
+ #: includes/admin/routes.php:1286
969
  msgid "We encountered an error when fetching the report data."
970
  msgstr ""
971
 
972
+ #: includes/admin/routes.php:972
973
  msgid "Missing plugin name."
974
  msgstr ""
975
 
976
+ #: includes/admin/routes.php:1116
977
  msgid "Homepage"
978
  msgstr ""
979
 
1068
  msgid "Sent from %s"
1069
  msgstr ""
1070
 
1071
+ #: includes/frontend/frontend.php:247
1072
  msgid "Tracking is Disabled for Administrators"
1073
  msgstr ""
1074
 
1075
  #. Translators: %s is the link to the article where more details about tracking are listed.
1076
+ #: includes/frontend/frontend.php:257
1077
  msgid "To keep stats accurate, we do not load Google Analytics scripts for admin users. %1$sLearn More &raquo;%2$s"
1078
  msgstr ""
1079
 
1080
  #: includes/frontend/tracking/class-tracking-analytics.php:208
1081
+ #: includes/frontend/tracking/class-tracking-gtag.php:209
1082
  msgid "Note: MonsterInsights is not currently configured on this site. The site owner needs to authenticate with Google Analytics in the MonsterInsights settings panel."
1083
  msgstr ""
1084
 
1085
  #: includes/frontend/tracking/class-tracking-analytics.php:211
1086
+ #: includes/frontend/tracking/class-tracking-gtag.php:212
1087
  msgid "Note: MonsterInsights does not track you as a logged-in site administrator to prevent site owners from accidentally skewing their own Google Analytics data."
1088
  msgstr ""
1089
 
1090
  #: includes/frontend/tracking/class-tracking-analytics.php:214
1091
+ #: includes/frontend/tracking/class-tracking-gtag.php:215
1092
  msgid "Note: The site owner has disabled Google Analytics tracking for your user role."
1093
  msgstr ""
1094
 
1311
  msgstr ""
1312
 
1313
  #: includes/gutenberg/headline-tool/headline-tool.php:290
1314
+ #: languages/vue.php:522
1315
  msgid "General"
1316
  msgstr ""
1317
 
3541
  msgstr ""
3542
 
3543
  #: includes/helpers.php:376
3544
+ #: includes/helpers.php:1728
3545
  msgid "Canada"
3546
  msgstr ""
3547
 
3548
  #: includes/helpers.php:377
3549
+ #: includes/helpers.php:1773
3550
  msgid "United Kingdom"
3551
  msgstr ""
3552
 
3587
  msgstr ""
3588
 
3589
  #: includes/helpers.php:387
3590
+ #: includes/helpers.php:1721
3591
  msgid "Antigua and Barbuda"
3592
  msgstr ""
3593
 
3604
  msgstr ""
3605
 
3606
  #: includes/helpers.php:391
3607
+ #: includes/helpers.php:1722
3608
  msgid "Australia"
3609
  msgstr ""
3610
 
3629
  msgstr ""
3630
 
3631
  #: includes/helpers.php:397
3632
+ #: includes/helpers.php:1723
3633
  msgid "Barbados"
3634
  msgstr ""
3635
 
3642
  msgstr ""
3643
 
3644
  #: includes/helpers.php:400
3645
+ #: includes/helpers.php:1724
3646
  msgid "Belize"
3647
  msgstr ""
3648
 
3671
  msgstr ""
3672
 
3673
  #: includes/helpers.php:407
3674
+ #: includes/helpers.php:1725
3675
  msgid "Botswana"
3676
  msgstr ""
3677
 
3700
  msgstr ""
3701
 
3702
  #: includes/helpers.php:414
3703
+ #: includes/helpers.php:1726
3704
  msgid "Burundi"
3705
  msgstr ""
3706
 
3709
  msgstr ""
3710
 
3711
  #: includes/helpers.php:416
3712
+ #: includes/helpers.php:1727
3713
  msgid "Cameroon"
3714
  msgstr ""
3715
 
3802
  msgstr ""
3803
 
3804
  #: includes/helpers.php:439
3805
+ #: includes/helpers.php:1729
3806
  msgid "Dominica"
3807
  msgstr ""
3808
 
3851
  msgstr ""
3852
 
3853
  #: includes/helpers.php:451
3854
+ #: includes/helpers.php:1730
3855
  msgid "Fiji"
3856
  msgstr ""
3857
 
3880
  msgstr ""
3881
 
3882
  #: includes/helpers.php:458
3883
+ #: includes/helpers.php:1733
3884
  msgid "Gambia"
3885
  msgstr ""
3886
 
3897
  msgstr ""
3898
 
3899
  #: includes/helpers.php:462
3900
+ #: includes/helpers.php:1734
3901
  msgid "Ghana"
3902
  msgstr ""
3903
 
3910
  msgstr ""
3911
 
3912
  #: includes/helpers.php:465
3913
+ #: includes/helpers.php:1731
3914
  msgid "Grenada"
3915
  msgstr ""
3916
 
3939
  msgstr ""
3940
 
3941
  #: includes/helpers.php:472
3942
+ #: includes/helpers.php:1732
3943
  msgid "Guyana"
3944
  msgstr ""
3945
 
3972
  msgstr ""
3973
 
3974
  #: includes/helpers.php:480
3975
+ #: includes/helpers.php:1736
3976
  msgid "India"
3977
  msgstr ""
3978
 
3989
  msgstr ""
3990
 
3991
  #: includes/helpers.php:484
3992
+ #: includes/helpers.php:1735
3993
  msgid "Ireland"
3994
  msgstr ""
3995
 
4006
  msgstr ""
4007
 
4008
  #: includes/helpers.php:488
4009
+ #: includes/helpers.php:1737
4010
  msgid "Jamaica"
4011
  msgstr ""
4012
 
4027
  msgstr ""
4028
 
4029
  #: includes/helpers.php:493
4030
+ #: includes/helpers.php:1738
4031
  msgid "Kenya"
4032
  msgstr ""
4033
 
4034
  #: includes/helpers.php:494
4035
+ #: includes/helpers.php:1739
4036
  msgid "Kiribati"
4037
  msgstr ""
4038
 
4057
  msgstr ""
4058
 
4059
  #: includes/helpers.php:500
4060
+ #: includes/helpers.php:1740
4061
  msgid "Lesotho"
4062
  msgstr ""
4063
 
4064
  #: includes/helpers.php:501
4065
+ #: includes/helpers.php:1741
4066
  msgid "Liberia"
4067
  msgstr ""
4068
 
4095
  msgstr ""
4096
 
4097
  #: includes/helpers.php:509
4098
+ #: includes/helpers.php:1742
4099
  msgid "Malawi"
4100
  msgstr ""
4101
 
4112
  msgstr ""
4113
 
4114
  #: includes/helpers.php:513
4115
+ #: includes/helpers.php:1743
4116
  msgid "Malta"
4117
  msgstr ""
4118
 
4119
  #: includes/helpers.php:514
4120
+ #: includes/helpers.php:1744
4121
  msgid "Marshall Islands"
4122
  msgstr ""
4123
 
4130
  msgstr ""
4131
 
4132
  #: includes/helpers.php:517
4133
+ #: includes/helpers.php:1745
4134
  msgid "Mauritius"
4135
  msgstr ""
4136
 
4143
  msgstr ""
4144
 
4145
  #: includes/helpers.php:520
4146
+ #: includes/helpers.php:1746
4147
  msgid "Micronesia"
4148
  msgstr ""
4149
 
4180
  msgstr ""
4181
 
4182
  #: includes/helpers.php:529
4183
+ #: includes/helpers.php:1748
4184
  msgid "Namibia"
4185
  msgstr ""
4186
 
4187
  #: includes/helpers.php:530
4188
+ #: includes/helpers.php:1749
4189
  msgid "Nauru"
4190
  msgstr ""
4191
 
4206
  msgstr ""
4207
 
4208
  #: includes/helpers.php:535
4209
+ #: includes/helpers.php:1747
4210
  msgid "New Zealand"
4211
  msgstr ""
4212
 
4219
  msgstr ""
4220
 
4221
  #: includes/helpers.php:538
4222
+ #: includes/helpers.php:1750
4223
  msgid "Nigeria"
4224
  msgstr ""
4225
 
4248
  msgstr ""
4249
 
4250
  #: includes/helpers.php:545
4251
+ #: includes/helpers.php:1751
4252
  msgid "Pakistan"
4253
  msgstr ""
4254
 
4255
  #: includes/helpers.php:546
4256
+ #: includes/helpers.php:1752
4257
  msgid "Palau"
4258
  msgstr ""
4259
 
4266
  msgstr ""
4267
 
4268
  #: includes/helpers.php:549
4269
+ #: includes/helpers.php:1753
4270
  msgid "Papua New Guinea"
4271
  msgstr ""
4272
 
4279
  msgstr ""
4280
 
4281
  #: includes/helpers.php:552
4282
+ #: includes/helpers.php:1754
4283
  msgid "Philippines"
4284
  msgstr ""
4285
 
4320
  msgstr ""
4321
 
4322
  #: includes/helpers.php:562
4323
+ #: includes/helpers.php:1755
4324
  msgid "Rwanda"
4325
  msgstr ""
4326
 
4377
  msgstr ""
4378
 
4379
  #: includes/helpers.php:576
4380
+ #: includes/helpers.php:1762
4381
  msgid "Seychelles"
4382
  msgstr ""
4383
 
4384
  #: includes/helpers.php:577
4385
+ #: includes/helpers.php:1763
4386
  msgid "Sierra Leone"
4387
  msgstr ""
4388
 
4389
  #: includes/helpers.php:578
4390
+ #: includes/helpers.php:1756
4391
  msgid "Singapore"
4392
  msgstr ""
4393
 
4400
  msgstr ""
4401
 
4402
  #: includes/helpers.php:581
4403
+ #: includes/helpers.php:1764
4404
  msgid "Solomon Islands"
4405
  msgstr ""
4406
 
4409
  msgstr ""
4410
 
4411
  #: includes/helpers.php:583
4412
+ #: includes/helpers.php:1765
4413
  msgid "South Africa"
4414
  msgstr ""
4415
 
4422
  msgstr ""
4423
 
4424
  #: includes/helpers.php:586
4425
+ #: includes/helpers.php:1766
4426
  msgid "South Sudan"
4427
  msgstr ""
4428
 
4435
  msgstr ""
4436
 
4437
  #: includes/helpers.php:589
4438
+ #: includes/helpers.php:1767
4439
  msgid "Sudan"
4440
  msgstr ""
4441
 
4448
  msgstr ""
4449
 
4450
  #: includes/helpers.php:592
4451
+ #: includes/helpers.php:1760
4452
  msgid "Swaziland"
4453
  msgstr ""
4454
 
4473
  msgstr ""
4474
 
4475
  #: includes/helpers.php:598
4476
+ #: includes/helpers.php:1770
4477
  msgid "Tanzania"
4478
  msgstr ""
4479
 
4494
  msgstr ""
4495
 
4496
  #: includes/helpers.php:603
4497
+ #: includes/helpers.php:1771
4498
  msgid "Tonga"
4499
  msgstr ""
4500
 
4501
  #: includes/helpers.php:604
4502
+ #: includes/helpers.php:1768
4503
  msgid "Trinidad and Tobago"
4504
  msgstr ""
4505
 
4520
  msgstr ""
4521
 
4522
  #: includes/helpers.php:609
4523
+ #: includes/helpers.php:1772
4524
  msgid "Tuvalu"
4525
  msgstr ""
4526
 
4527
  #: includes/helpers.php:610
4528
+ #: includes/helpers.php:1775
4529
  msgid "Uganda"
4530
  msgstr ""
4531
 
4550
  msgstr ""
4551
 
4552
  #: includes/helpers.php:616
4553
+ #: includes/helpers.php:1776
4554
  msgid "Vanuatu"
4555
  msgstr ""
4556
 
4587
  msgstr ""
4588
 
4589
  #: includes/helpers.php:625
4590
+ #: includes/helpers.php:1777
4591
  msgid "Zambia"
4592
  msgstr ""
4593
 
4594
  #: includes/helpers.php:626
4595
+ #: includes/helpers.php:1778
4596
  msgid "Zimbabwe"
4597
  msgstr ""
4598
 
4606
  msgstr ""
4607
 
4608
  #. Translators: The placeholders are for making the "We have detected multiple tracking codes" text bold & adding a link to support.
4609
+ #: includes/helpers.php:1299
4610
  msgid "%1$sWe have detected multiple tracking codes%2$s! You should remove non-MonsterInsights ones. If you need help finding them please %3$sread this article%4$s."
4611
  msgstr ""
4612
 
4613
+ #: includes/helpers.php:1757
4614
  msgid "St Kitts and Nevis"
4615
  msgstr ""
4616
 
4617
+ #: includes/helpers.php:1758
4618
  msgid "St Lucia"
4619
  msgstr ""
4620
 
4621
+ #: includes/helpers.php:1759
4622
  msgid "St Vincent and the Grenadines"
4623
  msgstr ""
4624
 
4625
+ #: includes/helpers.php:1761
4626
  msgid "Samoa"
4627
  msgstr ""
4628
 
4629
+ #: includes/helpers.php:1769
4630
  msgid "The Bahamas"
4631
  msgstr ""
4632
 
4633
+ #: includes/helpers.php:1774
4634
  msgid "United States of America"
4635
  msgstr ""
4636
 
4711
  msgstr ""
4712
 
4713
  #: languages/gutenberg.php:77
4714
+ #: languages/vue.php:507
4715
  msgid "Inline Popular Posts"
4716
  msgstr ""
4717
 
4748
  msgstr ""
4749
 
4750
  #: languages/gutenberg.php:107
4751
+ #: languages/vue.php:2964
4752
  msgid "Wide-Layout Options"
4753
  msgstr ""
4754
 
4757
  msgstr ""
4758
 
4759
  #: languages/gutenberg.php:113
4760
+ #: languages/vue.php:2967
4761
  msgid "Adjust the number of columns displayed when the widget is placed in a wide container."
4762
  msgstr ""
4763
 
4764
  #: languages/gutenberg.php:116
4765
+ #: languages/vue.php:2988
4766
  msgid "Post Count"
4767
  msgstr ""
4768
 
4771
  msgstr ""
4772
 
4773
  #: languages/gutenberg.php:122
4774
+ #: languages/vue.php:2970
4775
  msgid "Display Options"
4776
  msgstr ""
4777
 
4784
  msgstr ""
4785
 
4786
  #: languages/gutenberg.php:131
4787
+ #: languages/vue.php:2787
4788
  msgid "Widget Title"
4789
  msgstr ""
4790
 
4793
  msgstr ""
4794
 
4795
  #: languages/gutenberg.php:137
4796
+ #: languages/vue.php:2976
4797
  msgid "Display Author"
4798
  msgstr ""
4799
 
4800
  #: languages/gutenberg.php:140
4801
+ #: languages/vue.php:2979
4802
  msgid "Display Date"
4803
  msgstr ""
4804
 
4805
  #: languages/gutenberg.php:143
4806
+ #: languages/vue.php:2982
4807
  msgid "Display Comments"
4808
  msgstr ""
4809
 
5024
  msgstr ""
5025
 
5026
  #: languages/gutenberg.php:312
5027
+ #: languages/vue.php:861
5028
  msgid "Headline Analyzer"
5029
  msgstr ""
5030
 
5044
  msgid "2"
5045
  msgstr ""
5046
 
5047
+ #: languages/vue.php:11
5048
  msgid "Error"
5049
  msgstr ""
5050
 
5051
+ #: languages/vue.php:14
5052
  msgid "Please try again."
5053
  msgstr ""
5054
 
5055
+ #: languages/vue.php:17
5056
+ msgid "Today"
5057
  msgstr ""
5058
 
5059
+ #: languages/vue.php:20
5060
+ msgid "Yesterday"
5061
  msgstr ""
5062
 
5063
+ #: languages/vue.php:23
5064
+ msgid "Last Week"
5065
  msgstr ""
5066
 
5067
+ #: languages/vue.php:26
5068
+ msgid "Last Month"
5069
  msgstr ""
5070
 
5071
+ #: languages/vue.php:29
5072
+ msgid "Last 7 days"
5073
  msgstr ""
5074
 
5075
  #: languages/vue.php:33
5076
+ msgid "Last 30 days"
5077
  msgstr ""
5078
 
5079
  #: languages/vue.php:36
5080
+ msgid "Loading settings"
5081
  msgstr ""
5082
 
5083
  #: languages/vue.php:39
5084
+ msgid "Loading new report data"
 
 
 
 
5085
  msgstr ""
5086
 
5087
+ #: languages/vue.php:43
5088
+ msgid "Please wait..."
5089
  msgstr ""
5090
 
5091
+ #. Translators: Adds an arrow icon.
5092
+ #: languages/vue.php:47
5093
+ msgid "Continue %s"
5094
  msgstr ""
5095
 
5096
+ #: languages/vue.php:50
5097
+ msgid "Unlock the Publishers Report and Focus on the Content that Matters"
5098
  msgstr ""
5099
 
5100
+ #: languages/vue.php:53
5101
+ 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."
5102
  msgstr ""
5103
 
5104
+ #: languages/vue.php:56
5105
+ msgid "Unlock the Publishers Report and Focus on the Content That Matters"
5106
  msgstr ""
5107
 
5108
+ #: languages/vue.php:59
5109
+ 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."
5110
  msgstr ""
5111
 
5112
+ #: languages/vue.php:62
5113
+ msgid "Unlock the eCommerce Report and See Your Important Store Metrics"
5114
  msgstr ""
5115
 
5116
+ #: languages/vue.php:65
5117
+ msgid "Increase your sales & revenue with insights. ExactMetrics answers all your top eCommerce questions using metrics like total revenue, conversion rate, average order value, top products, top referral sources and more."
5118
  msgstr ""
5119
 
5120
+ #: languages/vue.php:68
5121
+ msgid "Unlock the Dimensions Report and Track Your Own Custom Data"
5122
  msgstr ""
5123
 
5124
+ #: languages/vue.php:71
5125
+ 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."
5126
  msgstr ""
5127
 
5128
+ #: languages/vue.php:74
5129
+ msgid "Unlock the Forms Report and Improve Conversions"
5130
  msgstr ""
5131
 
5132
+ #: languages/vue.php:77
5133
+ 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."
5134
  msgstr ""
5135
 
5136
+ #: languages/vue.php:80
5137
+ msgid "Unlock the Search Console Report and See How People Find Your Website"
5138
  msgstr ""
5139
 
5140
+ #: languages/vue.php:83
5141
+ msgid "See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more."
5142
  msgstr ""
5143
 
5144
+ #: languages/vue.php:86
5145
+ msgid "Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time"
5146
  msgstr ""
5147
 
5148
+ #: languages/vue.php:89
5149
+ 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."
5150
  msgstr ""
5151
 
5152
+ #: languages/vue.php:92
5153
+ msgid "Unlock the Site Speed Report and Improve the Performance of Your Site"
5154
  msgstr ""
5155
 
5156
+ #: languages/vue.php:95
5157
+ msgid "See How Your Homepage Performs According to Google’s Own Criteria and See How You Can Improve to Increase Your Ranking"
5158
  msgstr ""
5159
 
5160
+ #: languages/vue.php:98
5161
+ msgid "Loading Settings"
5162
  msgstr ""
5163
 
5164
+ #: languages/vue.php:101
5165
+ msgid "Saving Changes..."
5166
  msgstr ""
5167
 
5168
+ #: languages/vue.php:104
5169
+ msgid "Settings Updated"
5170
  msgstr ""
5171
 
5172
+ #. Translators: Adds a link to the settings panel.
5173
  #: languages/vue.php:108
5174
+ msgid "You need to %1$sconnect MonsterInsights%2$s first"
5175
  msgstr ""
5176
 
5177
  #: languages/vue.php:111
5178
+ msgid "Could Not Save Changes"
5179
  msgstr ""
5180
 
5181
  #: languages/vue.php:114
5182
+ msgid "Refreshing Report"
5183
  msgstr ""
5184
 
5185
  #: languages/vue.php:117
5186
+ msgid "Loading new report data..."
5187
  msgstr ""
5188
 
5189
  #: languages/vue.php:120
5190
+ msgid "See Your Top Landing Pages to Improve Engagement"
5191
  msgstr ""
5192
 
5193
  #: languages/vue.php:123
5194
+ msgid "See Your Top Exit Pages to Reduce Abandonment"
5195
  msgstr ""
5196
 
5197
  #: languages/vue.php:126
5198
+ msgid "See Your Top Outbound Links to Find New Revenue Opportunities"
5199
  msgstr ""
5200
 
5201
  #: languages/vue.php:129
5202
+ msgid "See Your Top Affiliate Links and Focus on What's Working"
5203
  msgstr ""
5204
 
5205
  #: languages/vue.php:132
5206
+ msgid "See Your Top Downloads and Improve Conversions"
5207
  msgstr ""
5208
 
5209
  #: languages/vue.php:135
5210
+ msgid "See Audience Demographic Report ( Age / Gender / Interests )"
5211
  msgstr ""
5212
 
5213
  #: languages/vue.php:138
5214
+ 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."
5215
  msgstr ""
5216
 
5217
  #: languages/vue.php:141
5218
+ msgid "See Your Conversion Rate to Improve Your Funnel"
5219
  msgstr ""
5220
 
5221
  #: languages/vue.php:144
5222
+ msgid "See The Number of Transactions and Make Data-Driven Decisions"
5223
  msgstr ""
5224
 
5225
  #: languages/vue.php:147
5226
+ msgid "See The Total Revenue to Track Growth"
5227
  msgstr ""
5228
 
5229
  #: languages/vue.php:150
5230
+ msgid "See Average Order Value to Find Offer Opportunities"
5231
  msgstr ""
5232
 
5233
  #: languages/vue.php:153
5234
+ msgid "See Your Top Products to See Individual Performance"
5235
  msgstr ""
5236
 
5237
  #: languages/vue.php:156
5238
+ msgid "See Your Top Conversion Sources and Focus on What's Working"
5239
  msgstr ""
5240
 
5241
  #: languages/vue.php:159
5242
+ msgid "See The Time it Takes for Customers to Purchase"
5243
  msgstr ""
5244
 
5245
  #: languages/vue.php:162
5246
+ msgid "See How Many Sessions are Needed for a Purchase"
5247
  msgstr ""
5248
 
5249
  #: languages/vue.php:165
5250
+ msgid "See Which Authors Generate the Most Traffic"
5251
  msgstr ""
5252
 
5253
  #: languages/vue.php:168
5254
+ msgid "See Which Post Types Perform Better"
5255
  msgstr ""
5256
 
5257
  #: languages/vue.php:171
5258
+ msgid "See Which Categories are the Most Popular"
5259
  msgstr ""
5260
 
5261
  #: languages/vue.php:174
5262
+ msgid "See Your Blog's Most Popular SEO Scores"
5263
  msgstr ""
5264
 
5265
  #: languages/vue.php:177
5266
+ msgid "See Which Focus Keyword is Performing Better in Search Engines"
5267
  msgstr ""
5268
 
5269
  #: languages/vue.php:180
5270
+ msgid "See Reports for Any Contact Form Plugin or Sign-up Form"
5271
  msgstr ""
5272
 
5273
  #: languages/vue.php:183
5274
+ msgid "See Your Top Converting Forms and Optimize"
5275
  msgstr ""
5276
 
5277
  #: languages/vue.php:186
5278
+ msgid "See Your Forms Impressions Count to Find the Best Placement"
5279
  msgstr ""
5280
 
5281
  #: languages/vue.php:189
5282
+ msgid "See Your Top Google Search Terms and Optimize Content"
5283
  msgstr ""
5284
 
5285
  #: languages/vue.php:192
5286
+ msgid "See The Number of Clicks and Track Interests"
5287
  msgstr ""
5288
 
5289
  #: languages/vue.php:195
5290
+ msgid "See The Click-Through-Ratio and Improve SEO"
5291
  msgstr ""
5292
 
5293
  #: languages/vue.php:198
5294
+ msgid "See The Average Results Position and Focus on what works"
5295
  msgstr ""
5296
 
5297
  #: languages/vue.php:201
5298
+ msgid "See Your Active Visitors and Track Their Behaviour to Optimize"
5299
  msgstr ""
5300
 
5301
  #: languages/vue.php:204
5302
+ msgid "See Your Top Pages Immediately After Making Changes"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5303
  msgstr ""
5304
 
5305
+ #: languages/vue.php:207
5306
+ msgid "See Your Top Referral Sources and Adapt Faster"
 
5307
  msgstr ""
5308
 
5309
+ #: languages/vue.php:210
5310
+ msgid "See Your Traffic Demographics"
5311
  msgstr ""
5312
 
5313
+ #: languages/vue.php:213
5314
+ msgid "Get Fresh Report Data Every 60 Seconds"
 
5315
  msgstr ""
5316
 
5317
+ #: languages/vue.php:216
5318
+ msgid "See Your Homepage's Overall Performance Score"
5319
  msgstr ""
5320
 
5321
+ #: languages/vue.php:219
5322
+ msgid "Run an Audit on Your Homepage and See Your Server Response Time"
5323
  msgstr ""
5324
 
5325
+ #: languages/vue.php:222
5326
+ msgid "Learn How Long It Takes for Your Viewers to Interact With Your Site"
 
5327
  msgstr ""
5328
 
5329
+ #: languages/vue.php:225
5330
+ msgid "Learn How to Improve the Core Metrics that Google Uses to Rank Your Site"
5331
  msgstr ""
5332
 
5333
  #. Translators: Number of visitors.
5334
+ #: languages/vue.php:233
5335
  msgid "Your website was visited by %s users in the last 30 days."
5336
  msgstr ""
5337
 
5338
+ #: languages/vue.php:236
5339
  msgid "See the full analytics report!"
5340
  msgstr ""
5341
 
5342
+ #: languages/vue.php:239
 
 
 
 
5343
  msgid "Congratulations! "
5344
  msgstr ""
5345
 
5346
+ #: languages/vue.php:242
5347
  msgid "You Successfully Unlocked the most powerful Analytics plugin"
5348
  msgstr ""
5349
 
5350
+ #: languages/vue.php:249
5351
+ msgid "Overview Report"
5352
+ msgstr ""
5353
+
5354
+ #: languages/vue.php:252
5355
  #: lite/includes/admin/welcome.php:56
5356
  #: lite/includes/admin/welcome.php:57
5357
  msgid "Welcome to MonsterInsights"
5358
  msgstr ""
5359
 
5360
+ #: languages/vue.php:255
5361
  msgid "Thank you for choosing MonsterInsights - The Most Powerful WordPress Analytics Plugin"
5362
  msgstr ""
5363
 
5364
+ #: languages/vue.php:258
5365
  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."
5366
  msgstr ""
5367
 
5368
+ #: languages/vue.php:261
5369
  msgid "Launch the Wizard!"
5370
  msgstr ""
5371
 
5372
+ #: languages/vue.php:264
5373
  msgid "Read the Full Guide"
5374
  msgstr ""
5375
 
5376
+ #: languages/vue.php:267
5377
  msgid "MonsterInsights Features & Addons"
5378
  msgstr ""
5379
 
5380
+ #: languages/vue.php:270
5381
  msgid "Here are the features that make MonsterInsights the most powerful and user-friendly WordPress analytics plugin in the market."
5382
  msgstr ""
5383
 
5384
+ #: languages/vue.php:273
5385
  msgid "See All Features"
5386
  msgstr ""
5387
 
5388
+ #: languages/vue.php:276
5389
  msgid "Upgrade to PRO"
5390
  msgstr ""
5391
 
5392
+ #: languages/vue.php:279
5393
  msgid "per year"
5394
  msgstr ""
5395
 
5396
+ #: languages/vue.php:285
5397
  msgid "Testimonials"
5398
  msgstr ""
5399
 
5400
+ #: languages/vue.php:289
5401
  msgid "Universal Tracking"
5402
  msgstr ""
5403
 
5404
+ #: languages/vue.php:292
5405
  msgid "Setup universal website tracking across devices and campaigns with just a few clicks (without any code)."
5406
  msgstr ""
5407
 
5408
+ #: languages/vue.php:295
5409
  msgid "Google Analytics Dashboard"
5410
  msgstr ""
5411
 
5412
+ #: languages/vue.php:298
5413
  msgid "See your website analytics report right inside your WordPress dashboard with actionable insights."
5414
  msgstr ""
5415
 
5416
+ #: languages/vue.php:301
5417
  msgid "Real-time Stats"
5418
  msgstr ""
5419
 
5420
+ #: languages/vue.php:304
5421
  msgid "Get real-time stats right inside WordPress to see who is online, what are they doing, and more."
5422
  msgstr ""
5423
 
5424
+ #: languages/vue.php:307
5425
  msgid "Enhanced Ecommerce Tracking"
5426
  msgstr ""
5427
 
5428
+ #: languages/vue.php:310
5429
  msgid "1-click Google Analytics Enhanced Ecommerce tracking for WooCommerce, Easy Digital Downloads & MemberPress."
5430
  msgstr ""
5431
 
5432
+ #: languages/vue.php:313
5433
  msgid "Page Level Analytics"
5434
  msgstr ""
5435
 
5436
+ #: languages/vue.php:316
5437
  msgid "Get detailed stats for each post and page, so you can see the most popular posts, pages, and sections of your site."
5438
  msgstr ""
5439
 
5440
+ #: languages/vue.php:319
5441
  msgid "Affiliate Link & Ads Tracking"
5442
  msgstr ""
5443
 
5444
+ #: languages/vue.php:322
5445
  msgid "Automatically track clicks on your affiliate links, banner ads, and other outbound links with our link tracking."
5446
  msgstr ""
5447
 
5448
+ #: languages/vue.php:325
5449
  msgid "EU Compliance (GDPR Friendly)"
5450
  msgstr ""
5451
 
5452
+ #: languages/vue.php:328
5453
  msgid "Make Google Analytics compliant with GDPR and other privacy regulations automatically."
5454
  msgstr ""
5455
 
5456
+ #: languages/vue.php:331
5457
  msgid "Setup tracking for authors, categories, tags, searches, custom post types, users, and other events with 1-click."
5458
  msgstr ""
5459
 
5460
+ #: languages/vue.php:334
5461
  msgid "Ecommerce Report"
5462
  msgstr ""
5463
 
5464
+ #: languages/vue.php:337
5465
  msgid "Form Conversions"
5466
  msgstr ""
5467
 
5468
+ #: languages/vue.php:340
5469
  msgid "Custom Dimensions"
5470
  msgstr ""
5471
 
5472
+ #: languages/vue.php:343
5473
  msgid "Author Tracking"
5474
  msgstr ""
5475
 
5476
+ #: languages/vue.php:346
5477
  msgid "Google Optimize"
5478
  msgstr ""
5479
 
5480
+ #: languages/vue.php:349
5481
  msgid "Category / Tags Tracking"
5482
  msgstr ""
5483
 
5484
+ #: languages/vue.php:352
5485
  msgid "WooCommerce"
5486
  msgstr ""
5487
 
5488
+ #: languages/vue.php:355
5489
  msgid "Easy Digital Downloads"
5490
  msgstr ""
5491
 
5492
+ #: languages/vue.php:358
5493
  msgid "MemberPress"
5494
  msgstr ""
5495
 
5496
+ #: languages/vue.php:361
5497
  msgid "LifterLMS"
5498
  msgstr ""
5499
 
5500
+ #. Translators: Current PHP version and recommended PHP version.
5501
+ #: languages/vue.php:365
5502
+ 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."
5503
+ msgstr ""
5504
+
5505
+ #. Translators: Current WordPress version.
5506
+ #: languages/vue.php:369
5507
+ 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."
5508
+ msgstr ""
5509
+
5510
+ #: languages/vue.php:372
5511
+ msgid "Yikes! PHP Update Required"
5512
+ msgstr ""
5513
+
5514
+ #. Translators: Current PHP version and recommended PHP version.
5515
+ #: languages/vue.php:376
5516
+ 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."
5517
+ msgstr ""
5518
+
5519
+ #: languages/vue.php:379
5520
+ msgid "Learn more about updating PHP"
5521
+ msgstr ""
5522
+
5523
+ #: languages/vue.php:382
5524
+ msgid "Yikes! WordPress Update Required"
5525
+ msgstr ""
5526
+
5527
+ #. Translators: Current WordPress version.
5528
+ #: languages/vue.php:386
5529
+ 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."
5530
+ msgstr ""
5531
+
5532
+ #: languages/vue.php:389
5533
+ msgid "Learn more about updating WordPress"
5534
+ msgstr ""
5535
+
5536
  #: languages/vue.php:392
5537
+ msgid "MonsterInsights encountered an error loading your report data"
5538
  msgstr ""
5539
 
5540
  #: languages/vue.php:395
5541
+ msgid "There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating."
5542
  msgstr ""
5543
 
5544
  #: languages/vue.php:398
5545
+ msgid "Reconnect MonsterInsights"
5546
  msgstr ""
5547
 
5548
  #: languages/vue.php:401
5549
+ msgid "Re-Authenticating"
5550
  msgstr ""
5551
 
5552
  #: languages/vue.php:404
5553
+ msgid "Ok"
5554
  msgstr ""
5555
 
5556
  #: languages/vue.php:407
5557
+ msgid "See Quick Links"
5558
  msgstr ""
5559
 
5560
  #: languages/vue.php:410
5561
+ msgid "Suggest a Feature"
5562
  msgstr ""
5563
 
5564
  #: languages/vue.php:413
5565
+ msgid "Join Our Community"
5566
  msgstr ""
5567
 
5568
+ #: languages/vue.php:416
5569
+ msgid "Support & Docs"
5570
  msgstr ""
5571
 
5572
+ #: languages/vue.php:419
5573
+ msgid "Upgrade to Pro &#187;"
 
5574
  msgstr ""
5575
 
5576
+ #. Translators: Placeholder is replaced with WPForms.
5577
+ #: languages/vue.php:423
5578
+ msgid "Recommended Plugin: %s"
5579
  msgstr ""
5580
 
5581
+ #: languages/vue.php:426
5582
+ msgid "Install"
5583
  msgstr ""
5584
 
5585
+ #: languages/vue.php:429
5586
+ msgid "Activate"
5587
  msgstr ""
5588
 
5589
+ #: languages/vue.php:436
5590
+ msgid "Powered by MonsterInsights"
5591
  msgstr ""
5592
 
5593
+ #: languages/vue.php:439
5594
+ #: lite/includes/admin/wp-site-health.php:253
5595
+ msgid "View Reports"
5596
+ msgstr ""
5597
+
5598
+ #: languages/vue.php:442
5599
+ msgid "Congratulations!"
5600
  msgstr ""
5601
 
5602
+ #. Translators: Add link to YouTube video and Onboarding Wizard.
5603
+ #: languages/vue.php:446
5604
+ 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."
5605
+ msgstr ""
5606
+
5607
+ #. Translators: Add link to YouTube video and Onboarding Wizard.
5608
  #: languages/vue.php:450
5609
+ msgid "Onboarding Wizard"
5610
  msgstr ""
5611
 
5612
  #: languages/vue.php:453
5613
+ 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."
5614
  msgstr ""
5615
 
5616
  #: languages/vue.php:456
5617
+ msgid "Save Changes"
5618
  msgstr ""
5619
 
5620
  #: languages/vue.php:459
5621
+ msgid "Inbox"
5622
  msgstr ""
5623
 
5624
  #: languages/vue.php:462
5625
+ msgid "Back to Inbox"
5626
  msgstr ""
5627
 
5628
  #: languages/vue.php:465
5629
+ msgid "View Dismissed"
5630
  msgstr ""
5631
 
5632
  #: languages/vue.php:468
5633
+ msgid "Notifications"
5634
  msgstr ""
5635
 
5636
  #: languages/vue.php:471
5637
+ msgid "Dismiss All"
5638
  msgstr ""
5639
 
5640
  #: languages/vue.php:474
5641
+ msgid "Dismissed"
5642
  msgstr ""
5643
 
5644
  #: languages/vue.php:477
5645
+ msgid "No Notifications"
 
 
 
 
 
 
 
 
 
 
 
 
5646
  msgstr ""
5647
 
5648
  #: languages/vue.php:489
5653
  msgid "PrettyLinks Integration"
5654
  msgstr ""
5655
 
5656
+ #: languages/vue.php:500
5657
  msgid "Getting Started"
5658
  msgstr ""
5659
 
5660
+ #: languages/vue.php:504
5661
  msgid "Lite vs Pro"
5662
  msgstr ""
5663
 
5664
+ #: languages/vue.php:510
5665
  msgid "Popular Posts Widget"
5666
  msgstr ""
5667
 
5668
+ #: languages/vue.php:513
5669
  msgid "Popular Products"
5670
  msgstr ""
5671
 
5672
+ #: languages/vue.php:519
5673
  msgid "Sub menu item for WooCommerce Analytics"
5674
  msgstr ""
5675
 
5676
+ #: languages/vue.php:525
5677
  msgid "Engagement"
5678
  msgstr ""
5679
 
5680
+ #: languages/vue.php:529
5681
  #: lite/includes/admin/reports/report-ecommerce.php:22
5682
  msgid "eCommerce"
5683
  msgstr ""
5684
 
5685
+ #: languages/vue.php:532
5686
  msgid "Publisher"
5687
  msgstr ""
5688
 
5689
+ #: languages/vue.php:535
5690
  msgid "Conversions"
5691
  msgstr ""
5692
 
5693
+ #: languages/vue.php:538
5694
  msgid "Advanced"
5695
  msgstr ""
5696
 
 
 
 
 
 
5697
  #: languages/vue.php:541
5698
+ msgid "URL Builder"
5699
  msgstr ""
5700
 
5701
  #: languages/vue.php:544
5702
+ msgid "MonsterInsights Addons"
5703
  msgstr ""
5704
 
5705
  #: languages/vue.php:547
5706
+ msgid "Search Addons"
5707
  msgstr ""
5708
 
5709
+ #: languages/vue.php:550
5710
+ msgid "Exit Setup"
 
5711
  msgstr ""
5712
 
5713
+ #: languages/vue.php:553
5714
+ msgid "You must connect with MonsterInsights before you can view reports."
 
5715
  msgstr ""
5716
 
5717
+ #: languages/vue.php:556
5718
+ msgid "MonsterInsights makes it \"effortless\" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
5719
  msgstr ""
5720
 
5721
+ #: languages/vue.php:559
5722
+ msgid "Launch Setup Wizard"
 
5723
  msgstr ""
5724
 
5725
+ #: languages/vue.php:562
5726
+ msgid "Please ask your webmaster to connect MonsterInsights to Google Analytics."
 
5727
  msgstr ""
5728
 
5729
+ #: languages/vue.php:569
5730
+ #: lite/includes/admin/reports/report-publisher.php:22
5731
+ msgid "Publishers"
5732
  msgstr ""
5733
 
5734
+ #: languages/vue.php:572
5735
+ #: lite/includes/admin/reports/report-queries.php:22
5736
+ msgid "Search Console"
5737
  msgstr ""
5738
 
5739
+ #: languages/vue.php:575
5740
+ #: lite/includes/admin/reports/report-dimensions.php:22
5741
+ msgid "Dimensions"
5742
  msgstr ""
5743
 
5744
+ #: languages/vue.php:578
5745
+ #: lite/includes/admin/reports/report-forms.php:22
5746
+ msgid "Forms"
5747
  msgstr ""
5748
 
5749
+ #: languages/vue.php:581
5750
+ msgid "Real-Time"
 
5751
  msgstr ""
5752
 
5753
+ #: languages/vue.php:584
5754
+ msgid "Site Speed"
 
5755
  msgstr ""
5756
 
5757
+ #: languages/vue.php:587
5758
+ msgid "2020 Year in Review"
5759
  msgstr ""
5760
 
5761
+ #. Translators: Error status and error text.
5762
+ #: languages/vue.php:591
5763
+ msgid "Can't load report data. Error: %1$s, %2$s"
5764
  msgstr ""
5765
 
5766
+ #: languages/vue.php:594
5767
+ msgid "Error loading report data"
5768
  msgstr ""
5769
 
5770
+ #: languages/vue.php:597
5771
+ msgid "Publishers Report"
5772
  msgstr ""
5773
 
5774
+ #: languages/vue.php:601
5775
+ msgid "eCommerce Report"
5776
  msgstr ""
5777
 
5778
+ #: languages/vue.php:604
5779
+ msgid "Search Console Report"
5780
  msgstr ""
5781
 
5782
+ #: languages/vue.php:607
5783
+ msgid "Dimensions Report"
5784
  msgstr ""
5785
 
5786
+ #: languages/vue.php:610
5787
+ msgid "Forms Report"
5788
  msgstr ""
5789
 
5790
+ #: languages/vue.php:613
5791
+ msgid "Real-Time Report"
5792
+ msgstr ""
5793
+
5794
+ #: languages/vue.php:616
5795
+ msgid "Site Speed Report"
5796
+ msgstr ""
5797
+
5798
+ #: languages/vue.php:620
5799
+ msgid "Time to Purchase"
5800
+ msgstr ""
5801
+
5802
+ #: languages/vue.php:623
5803
+ msgid "This list shows how many days from first visit it took users to purchase products from your site."
5804
  msgstr ""
5805
 
5806
  #: languages/vue.php:627
5807
+ msgid "Sessions to Purchase"
5808
  msgstr ""
5809
 
5810
  #: languages/vue.php:630
5811
+ msgid "This list shows the number of sessions it took users before they purchased a product from your website."
5812
  msgstr ""
5813
 
5814
  #: languages/vue.php:633
5815
+ msgid "New Customers"
5816
  msgstr ""
5817
 
5818
  #: languages/vue.php:636
5819
+ msgid "This list shows the percentage of new customers who purchased a product from your website."
5820
  msgstr ""
5821
 
5822
  #: languages/vue.php:639
5823
+ msgid "Abandoned Checkouts"
5824
  msgstr ""
5825
 
5826
  #: languages/vue.php:642
5827
+ msgid "This list shows the percentage of carts that never went through the checkout process."
5828
  msgstr ""
5829
 
5830
  #: languages/vue.php:645
5831
+ msgid "Top Posts/Pages"
5832
  msgstr ""
5833
 
5834
  #: languages/vue.php:648
5835
+ msgid "This list shows the most viewed posts and pages on your website."
5836
  msgstr ""
5837
 
5838
  #: languages/vue.php:651
5839
+ msgid "New vs. Returning Visitors"
5840
  msgstr ""
5841
 
5842
  #: languages/vue.php:654
5843
+ msgid "This graph shows what percent of your user sessions come from new versus repeat visitors."
5844
  msgstr ""
5845
 
5846
  #: languages/vue.php:657
5847
+ msgid "Device Breakdown"
5848
  msgstr ""
5849
 
5850
  #: languages/vue.php:660
5851
+ 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."
5852
  msgstr ""
5853
 
5854
  #: languages/vue.php:663
5855
+ msgid "Top Landing Pages"
5856
  msgstr ""
5857
 
5858
  #: languages/vue.php:666
5859
+ msgid "This list shows the top pages users first land on when visiting your website."
5860
  msgstr ""
5861
 
5862
  #: languages/vue.php:669
5863
+ msgid "Top Exit Pages"
5864
+ msgstr ""
5865
+
5866
+ #: languages/vue.php:672
5867
+ msgid "This list shows the top pages users exit your website from."
5868
  msgstr ""
5869
 
5870
  #: languages/vue.php:675
5871
+ msgid "Top Outbound Links"
5872
  msgstr ""
5873
 
5874
  #: languages/vue.php:678
5875
+ msgid "This list shows the top links clicked on your website that go to another website."
5876
  msgstr ""
5877
 
5878
  #: languages/vue.php:681
5879
+ msgid "Top Affiliate Links"
5880
  msgstr ""
5881
 
5882
  #: languages/vue.php:684
5883
+ msgid "This list shows the top affiliate links your visitors clicked on."
5884
  msgstr ""
5885
 
5886
  #: languages/vue.php:687
5887
+ msgid "Top Download Links"
5888
  msgstr ""
5889
 
5890
  #: languages/vue.php:690
5891
+ msgid "This list shows the download links your visitors clicked the most."
5892
  msgstr ""
5893
 
5894
  #: languages/vue.php:693
5895
+ msgid "Top Products"
5896
  msgstr ""
5897
 
5898
  #: languages/vue.php:696
5899
+ msgid "This list shows the top selling products on your website."
5900
  msgstr ""
5901
 
5902
  #: languages/vue.php:699
5903
+ msgid "Top Conversion Sources"
 
5904
  msgstr ""
5905
 
5906
  #: languages/vue.php:702
5907
+ msgid "This list shows the top referral websites in terms of product revenue."
 
5908
  msgstr ""
5909
 
5910
  #: languages/vue.php:705
5911
+ msgid "Total Add/Remove"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5912
  msgstr ""
5913
 
5914
+ #. Translators: Adds a link to documentation.
5915
+ #: languages/vue.php:719
5916
+ 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"
5917
  msgstr ""
5918
 
5919
+ #. Translators: Adds link to activate/install plugin and documentation.
5920
+ #: languages/vue.php:723
5921
+ 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"
5922
  msgstr ""
5923
 
5924
+ #. Translators: Adds a link to documentation.
5925
  #: languages/vue.php:727
5926
+ 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"
5927
  msgstr ""
5928
 
5929
+ #. Translators: Adds link to activate/install plugin and documentation.
5930
+ #: languages/vue.php:731
5931
+ 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"
5932
  msgstr ""
5933
 
5934
+ #: languages/vue.php:734
5935
+ msgid "GDPR Guide"
 
5936
  msgstr ""
5937
 
5938
+ #: languages/vue.php:737
5939
+ 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. "
5940
  msgstr ""
5941
 
5942
+ #: languages/vue.php:740
5943
+ msgid "How to Install and Activate MonsterInsights Addons"
5944
  msgstr ""
5945
 
5946
+ #: languages/vue.php:743
5947
+ 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."
5948
  msgstr ""
5949
 
5950
+ #: languages/vue.php:746
5951
+ msgid "Enabling eCommerce Tracking and Reports"
5952
  msgstr ""
5953
 
5954
+ #: languages/vue.php:749
5955
+ 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."
5956
  msgstr ""
5957
 
5958
+ #: languages/vue.php:752
5959
+ msgid "Read Documentation"
5960
  msgstr ""
5961
 
5962
+ #: languages/vue.php:755
5963
+ msgid "Getting Started with MonsterInsights"
5964
  msgstr ""
5965
 
5966
+ #: languages/vue.php:758
5967
+ 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."
5968
  msgstr ""
5969
 
5970
+ #: languages/vue.php:761
5971
+ 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."
5972
  msgstr ""
5973
 
5974
+ #: languages/vue.php:764
5975
+ 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!."
5976
  msgstr ""
5977
 
5978
+ #: languages/vue.php:767
5979
+ msgid "Launch the wizard!"
5980
  msgstr ""
5981
 
5982
+ #: languages/vue.php:770
5983
+ msgid "Get MonsterInsights Pro and Unlock all the Powerful Features"
5984
  msgstr ""
5985
 
5986
+ #. Translators: Makes text bold.
5987
  #: languages/vue.php:774
5988
+ 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."
5989
  msgstr ""
5990
 
5991
  #: languages/vue.php:777
5992
+ msgid "Universal Tracking across devices and campaigns with just a few clicks."
5993
  msgstr ""
5994
 
5995
  #: languages/vue.php:780
5996
+ msgid "See your website analytics reports inside the WordPress dashboard"
5997
  msgstr ""
5998
 
5999
  #: languages/vue.php:783
6000
+ msgid "Get real-time stats right inside WordPress"
6001
  msgstr ""
6002
 
6003
  #: languages/vue.php:786
6004
+ msgid "1-click Google Analytics Enhanced eCommerce tracking"
6005
  msgstr ""
6006
 
6007
+ #: languages/vue.php:789
6008
+ msgid "Get detailed stats for each post and page."
 
6009
  msgstr ""
6010
 
6011
+ #: languages/vue.php:792
6012
+ msgid "Automatically track clicks on your affiliate links and ads."
6013
  msgstr ""
6014
 
6015
+ #: languages/vue.php:795
6016
+ msgid "Make Google Analytics GDPR compliant automatically"
 
 
 
6017
  msgstr ""
6018
 
6019
+ #: languages/vue.php:798
6020
+ msgid "Setup tracking for authors, categories, tags, custom post types, users and more"
6021
  msgstr ""
6022
 
6023
+ #: languages/vue.php:801
6024
+ msgid "Enable Google Optimize for A/B testing, adjust sample speed & sample rate."
6025
  msgstr ""
6026
 
6027
+ #: languages/vue.php:804
6028
+ msgid "More advanced features"
6029
  msgstr ""
6030
 
6031
+ #: languages/vue.php:808
6032
+ msgid "Get MonsterInsights Pro Today and Unlock all the Powerful Features"
6033
  msgstr ""
6034
 
6035
+ #. Translators: Makes text green.
6036
+ #: languages/vue.php:813
6037
+ msgid "Bonus: MonsterInsights Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout."
6038
  msgstr ""
6039
 
6040
+ #: languages/vue.php:816
6041
+ msgid "How to Connect to Google Analytics"
6042
  msgstr ""
6043
 
6044
+ #: languages/vue.php:819
6045
+ 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."
6046
  msgstr ""
6047
 
 
6048
  #: languages/vue.php:822
6049
+ msgid "Guide and Checklist for Advanced Insights"
6050
  msgstr ""
6051
 
6052
  #: languages/vue.php:825
6053
+ 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."
6054
  msgstr ""
6055
 
6056
  #: languages/vue.php:828
6057
+ msgid "WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin"
6058
  msgstr ""
6059
 
6060
  #: languages/vue.php:831
6061
+ msgid "WordPress Admin Area Reports"
6062
  msgstr ""
6063
 
6064
  #: languages/vue.php:834
6065
+ msgid "Standard Reports"
6066
  msgstr ""
6067
 
6068
  #: languages/vue.php:837
6069
+ msgid "Overview Reports for the last 30 days."
6070
  msgstr ""
6071
 
6072
  #: languages/vue.php:840
6073
+ msgid "Advanced Reports"
6074
  msgstr ""
6075
 
6076
  #: languages/vue.php:843
6077
+ msgid "Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection"
6078
  msgstr ""
6079
 
6080
  #: languages/vue.php:846
6081
+ msgid "Dashboard Widget"
 
 
 
 
 
6082
  msgstr ""
6083
 
6084
+ #: languages/vue.php:849
6085
+ msgid "Basic Widget"
6086
  msgstr ""
6087
 
6088
+ #: languages/vue.php:852
6089
+ msgid "Overview Report Synopsis"
6090
  msgstr ""
6091
 
6092
+ #: languages/vue.php:855
6093
+ msgid "Advanced Dashboard Widget"
6094
  msgstr ""
6095
 
6096
+ #: languages/vue.php:858
6097
+ msgid "Includes the complete Overview report, Publisher reports and 6 different eCommerce reports"
6098
  msgstr ""
6099
 
6100
  #: languages/vue.php:865
6101
+ msgid "Email Summaries"
6102
  msgstr ""
6103
 
6104
  #: languages/vue.php:868
6105
+ msgid "Included"
6106
  msgstr ""
6107
 
6108
  #: languages/vue.php:871
6109
+ msgid "Get weekly traffic reports directly in your inbox."
6110
  msgstr ""
6111
 
6112
  #: languages/vue.php:874
6113
+ msgid "Publisher Reports"
6114
  msgstr ""
6115
 
6116
  #: languages/vue.php:877
6117
+ msgid "Advanced Publisher Reports & Tracking"
6118
  msgstr ""
6119
 
6120
  #: languages/vue.php:880
6121
+ msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
 
 
 
 
6122
  msgstr ""
6123
 
6124
  #: languages/vue.php:886
6125
+ msgid "Basic Options"
6126
  msgstr ""
6127
 
6128
  #: languages/vue.php:889
6129
+ msgid "Order Popular Posts by comments or shares with 3 simple theme choices."
6130
  msgstr ""
6131
 
6132
  #: languages/vue.php:892
6133
+ msgid "Dynamic Popular Posts & Popular Products"
6134
  msgstr ""
6135
 
6136
  #: languages/vue.php:895
6137
+ msgid "Display Popular Posts based on your actual traffic data from Google Analytics and choose from over 20 advanced themes. Display Popular WooCommerce products using widgets or Gutenberg blocks."
6138
  msgstr ""
6139
 
6140
  #: languages/vue.php:898
6141
+ msgid "Not Available"
6142
  msgstr ""
6143
 
6144
  #: languages/vue.php:901
6145
+ msgid "Complete Custom Dimensions Tracking"
6146
  msgstr ""
6147
 
6148
  #: languages/vue.php:904
6149
+ 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"
 
 
 
 
6150
  msgstr ""
6151
 
6152
  #: languages/vue.php:910
6153
+ msgid "Limited Support"
6154
  msgstr ""
6155
 
6156
  #: languages/vue.php:913
6157
+ msgid "Priority Support"
6158
+ msgstr ""
6159
+
6160
+ #: languages/vue.php:916
6161
+ msgid "Get the most out of MonsterInsights by upgrading to Pro and unlocking all of the powerful features."
6162
  msgstr ""
6163
 
6164
  #: languages/vue.php:919
6165
+ msgid "Feature"
6166
  msgstr ""
6167
 
6168
  #: languages/vue.php:922
6169
+ msgid "Lite"
6170
  msgstr ""
6171
 
6172
  #: languages/vue.php:925
6173
+ msgid "Pro"
6174
  msgstr ""
6175
 
6176
  #: languages/vue.php:928
6177
+ msgid "Custom Google Analytics Link Tracking"
6178
  msgstr ""
6179
 
6180
  #: languages/vue.php:931
6181
+ msgid "Standard Tracking"
6182
  msgstr ""
6183
 
6184
  #: languages/vue.php:934
6185
+ msgid "Advanced Tracking"
6186
  msgstr ""
6187
 
6188
  #: languages/vue.php:937
6189
+ msgid "Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking"
6190
  msgstr ""
6191
 
6192
  #: languages/vue.php:940
6193
+ msgid "Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers"
6194
  msgstr ""
6195
 
6196
  #: languages/vue.php:943
6197
+ msgid "No-Code-Needed Tracking Features"
6198
  msgstr ""
6199
 
6200
  #: languages/vue.php:946
6201
+ msgid "Basic Tracking Options"
6202
  msgstr ""
6203
 
6204
  #: languages/vue.php:949
6205
+ msgid "Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking"
6206
  msgstr ""
6207
 
6208
  #: languages/vue.php:952
6209
+ msgid "Advanced Tracking Options"
6210
  msgstr ""
6211
 
6212
  #: languages/vue.php:955
6213
+ msgid "Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors"
6214
  msgstr ""
6215
 
6216
  #: languages/vue.php:958
6217
+ msgid "eCommerce Tracking"
6218
  msgstr ""
6219
 
6220
  #: languages/vue.php:961
6221
+ msgid "One-click Complete eCommerce tracking"
6222
  msgstr ""
6223
 
6224
  #: languages/vue.php:964
6225
+ msgid "Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required"
6226
  msgstr ""
6227
 
6228
  #: languages/vue.php:967
6229
+ msgid "Forms Tracking"
6230
  msgstr ""
6231
 
6232
  #: languages/vue.php:970
6233
+ msgid "One-click Form Events Tracking"
 
 
 
 
6234
  msgstr ""
6235
 
6236
+ #: languages/vue.php:974
6237
+ msgid "License Key"
6238
  msgstr ""
6239
 
6240
+ #. Translators: Add link to retrieve license key from account.
6241
+ #: languages/vue.php:978
6242
+ msgid "Add your MonsterInsights license key from the email receipt or account area. %1$sRetrieve your license key%2$s."
6243
  msgstr ""
6244
 
6245
+ #: languages/vue.php:981
6246
+ msgid "Google Authentication"
6247
  msgstr ""
6248
 
6249
+ #: languages/vue.php:984
6250
+ msgid "Connect Google Analytics + WordPress"
6251
  msgstr ""
6252
 
6253
+ #: languages/vue.php:987
6254
+ msgid "You will be taken to the MonsterInsights website where you'll need to connect your Analytics account."
6255
  msgstr ""
6256
 
6257
+ #: languages/vue.php:990
6258
+ msgid "Miscellaneous"
6259
  msgstr ""
6260
 
6261
+ #: languages/vue.php:993
6262
+ msgid "Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes."
6263
  msgstr ""
6264
 
6265
+ #: languages/vue.php:996
6266
+ msgid "Hide Announcements"
6267
  msgstr ""
6268
 
6269
+ #: languages/vue.php:999
6270
+ msgid "Setup Wizard"
6271
  msgstr ""
6272
 
6273
+ #: languages/vue.php:1002
6274
+ msgid "Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks)."
6275
  msgstr ""
6276
 
6277
+ #: languages/vue.php:1005
6278
+ msgid "Hello and welcome to MonsterInsights, the best Google Analytics plugin for WordPress. MonsterInsights shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions."
6279
  msgstr ""
6280
 
6281
+ #: languages/vue.php:1008
6282
+ 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."
6283
  msgstr ""
6284
 
6285
+ #: languages/vue.php:1011
6286
+ 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\"."
6287
  msgstr ""
6288
 
6289
+ #: languages/vue.php:1014
6290
+ 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."
6291
  msgstr ""
6292
 
6293
+ #: languages/vue.php:1017
6294
+ msgid "Yup, we know a thing or two about building awesome products that customers love."
6295
  msgstr ""
6296
 
6297
+ #: languages/vue.php:1020
6298
+ msgid "The MonsterInsights Team"
6299
  msgstr ""
6300
 
6301
+ #: languages/vue.php:1023
6302
+ msgid "Make your MonsterInsights campaign links prettier with Pretty Links!"
6303
  msgstr ""
6304
 
6305
+ #: languages/vue.php:1026
6306
+ msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable, totally shareable links."
6307
  msgstr ""
6308
 
6309
+ #: languages/vue.php:1029
6310
+ msgid "Take your MonsterInsights campaign links from our URL Builder and shorten them with Pretty Links!"
6311
  msgstr ""
6312
 
6313
+ #: languages/vue.php:1032
6314
+ msgid "Over 200,000 websites use Pretty Links!"
6315
  msgstr ""
6316
 
6317
+ #: languages/vue.php:1035
6318
+ msgid "Install Pretty Links"
6319
  msgstr ""
6320
 
6321
+ #: languages/vue.php:1038
6322
+ msgid "Pretty Links Installed & Activated"
6323
  msgstr ""
6324
 
6325
+ #: languages/vue.php:1041
6326
+ msgid "Download Pretty Links"
6327
  msgstr ""
6328
 
6329
+ #: languages/vue.php:1044
6330
+ msgid "Install Pretty Links from the WordPress.org plugin repository."
6331
  msgstr ""
6332
 
6333
+ #: languages/vue.php:1047
6334
+ msgid "Activate Pretty Links"
6335
  msgstr ""
6336
 
6337
+ #: languages/vue.php:1050
6338
+ msgid "Activating Pretty Links..."
6339
  msgstr ""
6340
 
6341
+ #: languages/vue.php:1053
6342
+ msgid "Create New Pretty Link"
6343
  msgstr ""
6344
 
6345
+ #: languages/vue.php:1056
6346
+ msgid "Create a New Pretty Link"
6347
  msgstr ""
6348
 
6349
+ #: languages/vue.php:1059
6350
+ msgid "Grab your campaign link and paste it into the Target URL field."
6351
  msgstr ""
6352
 
6353
+ #: languages/vue.php:1062
6354
+ msgid "Custom Campaign Parameters"
6355
  msgstr ""
6356
 
6357
+ #: languages/vue.php:1065
6358
+ msgid "The URL builder helps you add parameters to your URLs you use in custom web or email ad campaigns."
6359
  msgstr ""
6360
 
6361
+ #: languages/vue.php:1068
6362
+ 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."
6363
  msgstr ""
6364
 
6365
+ #. Translators: Marks the field as required.
6366
  #: languages/vue.php:1072
6367
+ msgid "Website URL %s"
 
 
 
 
6368
  msgstr ""
6369
 
6370
+ #. Translators: Display the current website url in italic.
6371
+ #: languages/vue.php:1076
6372
+ msgid "The full website URL (e.g. %1$s %2$s%3$s)"
6373
  msgstr ""
6374
 
6375
+ #. Translators: Marks the field as required.
6376
+ #: languages/vue.php:1080
6377
+ msgid "Campaign Source %s"
6378
  msgstr ""
6379
 
6380
+ #. Translators: Make the text italic.
6381
  #: languages/vue.php:1084
6382
+ msgid "Enter a referrer (e.g. %1$sfacebook, newsletter, google%2$s)"
6383
  msgstr ""
6384
 
6385
+ #. Translators: Make the text italic.
6386
+ #: languages/vue.php:1088
6387
+ msgid "Enter a marketing medium (e.g. %1$scpc, banner, email%2$s)"
6388
  msgstr ""
6389
 
6390
+ #. Translators: Make the text italic.
6391
+ #: languages/vue.php:1092
6392
+ msgid "Enter a name to easily identify (e.g. %1$sspring_sale%2$s)"
6393
  msgstr ""
6394
 
6395
+ #: languages/vue.php:1095
6396
+ msgid "Enter the paid keyword"
6397
  msgstr ""
6398
 
6399
  #: languages/vue.php:1098
6400
+ msgid "Enter something to differentiate ads"
 
6401
  msgstr ""
6402
 
6403
  #: languages/vue.php:1101
6404
+ msgid "Use Fragment"
6405
  msgstr ""
6406
 
6407
+ #. Translators: Make the text bold.
6408
+ #: languages/vue.php:1105
6409
+ msgid "Set the parameters in the fragment portion of the URL %1$s(not recommended)%2$s"
6410
  msgstr ""
6411
 
6412
+ #: languages/vue.php:1108
6413
+ msgid "URL to use"
6414
  msgstr ""
6415
 
6416
+ #: languages/vue.php:1111
6417
+ msgid "(Updates automatically)"
6418
  msgstr ""
6419
 
6420
+ #: languages/vue.php:1114
6421
+ msgid "Copy to Clipboard"
6422
  msgstr ""
6423
 
6424
+ #: languages/vue.php:1117
6425
+ msgid "Copy to Pretty Links"
6426
  msgstr ""
6427
 
6428
+ #: languages/vue.php:1120
6429
+ msgid "Make your campaign links prettier!"
6430
  msgstr ""
6431
 
6432
+ #: languages/vue.php:1123
6433
+ msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable and totally shareable links."
6434
  msgstr ""
6435
 
6436
+ #: languages/vue.php:1126
6437
+ msgid "More Information & Examples"
6438
  msgstr ""
6439
 
6440
+ #: languages/vue.php:1129
6441
+ msgid "The following table gives a detailed explanation and example of each of the campaign parameters."
6442
  msgstr ""
6443
 
6444
+ #: languages/vue.php:1132
6445
+ msgid "Campaign Source"
6446
  msgstr ""
6447
 
6448
+ #: languages/vue.php:1135
6449
+ msgid "Required. Use utm_source to identify a search engine, newsletter name, or other source."
6450
  msgstr ""
6451
 
 
6452
  #: languages/vue.php:1138
6453
+ msgid "Campaign Medium"
6454
  msgstr ""
6455
 
6456
  #: languages/vue.php:1141
6457
+ msgid "Use utm_medium to identify a medium such as email or cost-per-click."
6458
  msgstr ""
6459
 
6460
+ #: languages/vue.php:1144
6461
+ msgid "Campaign Name"
 
6462
  msgstr ""
6463
 
6464
+ #: languages/vue.php:1147
6465
+ msgid "Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign."
6466
+ msgstr ""
6467
+
6468
+ #: languages/vue.php:1150
6469
+ msgid "Campaign Term"
6470
  msgstr ""
6471
 
 
6472
  #: languages/vue.php:1153
6473
+ msgid "Used for paid search. Use utm_term to note the keywords for this ad."
6474
  msgstr ""
6475
 
6476
+ #: languages/vue.php:1156
6477
+ msgid "Campaign Content"
 
6478
  msgstr ""
6479
 
6480
+ #: languages/vue.php:1159
6481
+ msgid "Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL."
 
6482
  msgstr ""
6483
 
6484
+ #. Translators: Example.
6485
+ #: languages/vue.php:1163
6486
+ msgid "Example: %s"
6487
  msgstr ""
6488
 
6489
+ #. Translators: Examples.
6490
+ #: languages/vue.php:1167
6491
+ msgid "Examples: %s"
6492
+ msgstr ""
6493
+
6494
+ #: languages/vue.php:1170
6495
+ msgid "About Campaigns"
6496
  msgstr ""
6497
 
 
6498
  #: languages/vue.php:1173
6499
+ msgid "About Custom Campaigns"
6500
  msgstr ""
6501
 
6502
  #: languages/vue.php:1176
6503
+ msgid "Best Practices for Creating Custom Campaigns"
6504
  msgstr ""
6505
 
6506
  #: languages/vue.php:1179
6507
+ msgid "About the Referral Traffic Report"
6508
  msgstr ""
6509
 
6510
  #: languages/vue.php:1182
6511
+ msgid "About Traffic Source Dimensions"
6512
  msgstr ""
6513
 
6514
  #: languages/vue.php:1185
6515
+ msgid "AdWords Auto-Tagging"
6516
  msgstr ""
6517
 
6518
  #: languages/vue.php:1188
6519
+ msgid "Additional Information"
6520
  msgstr ""
6521
 
6522
  #: languages/vue.php:1191
6523
+ msgid "Import/Export"
6524
  msgstr ""
6525
 
6526
  #: languages/vue.php:1194
6527
+ msgid "Import"
6528
  msgstr ""
6529
 
6530
  #: languages/vue.php:1197
6531
+ msgid "Import settings from another MonsterInsights website."
6532
  msgstr ""
6533
 
6534
  #: languages/vue.php:1200
6535
+ msgid "Export"
6536
  msgstr ""
6537
 
6538
  #: languages/vue.php:1203
6539
+ msgid "Export settings to import into another MonsterInsights install."
6540
  msgstr ""
6541
 
6542
  #: languages/vue.php:1206
6543
+ msgid "Import Settings"
6544
  msgstr ""
6545
 
6546
  #: languages/vue.php:1209
6547
+ msgid "Export Settings"
6548
  msgstr ""
6549
 
6550
  #: languages/vue.php:1212
6551
+ msgid "Please choose a file to import"
6552
  msgstr ""
6553
 
6554
  #: languages/vue.php:1215
6555
+ msgid "Click Choose file below to select the settings export file from another site."
6556
  msgstr ""
6557
 
6558
  #: languages/vue.php:1218
6559
+ msgid "Use the button below to export a file with your MonsterInsights settings."
6560
  msgstr ""
6561
 
6562
  #: languages/vue.php:1221
6563
+ msgid "Uploading file..."
6564
  msgstr ""
6565
 
6566
  #: languages/vue.php:1224
6567
+ msgid "File imported"
6568
  msgstr ""
6569
 
6570
  #: languages/vue.php:1227
6571
+ msgid "Settings successfully updated!"
6572
  msgstr ""
6573
 
6574
+ #: languages/vue.php:1230
6575
+ msgid "Error importing settings"
 
6576
  msgstr ""
6577
 
6578
+ #: languages/vue.php:1233
6579
+ msgid "Please choose a .json file generated by a MonsterInsights settings export."
6580
  msgstr ""
6581
 
6582
+ #: languages/vue.php:1236
6583
+ msgid "MonsterInsights Recommends WPForms"
6584
  msgstr ""
6585
 
6586
+ #: languages/vue.php:1239
6587
+ msgid "Built by the folks behind MonsterInsights, WPForms is the most beginner friendly form plugin in the market."
6588
  msgstr ""
6589
 
6590
+ #: languages/vue.php:1242
6591
+ msgid "Used on over 4,000,000 websites!"
6592
  msgstr ""
6593
 
6594
+ #: languages/vue.php:1245
6595
+ 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!"
6596
  msgstr ""
6597
 
6598
+ #: languages/vue.php:1248
6599
+ msgid "Skip this Step"
6600
  msgstr ""
6601
 
6602
+ #: languages/vue.php:1251
6603
+ msgid "Continue & Install WPForms"
6604
  msgstr ""
6605
 
6606
+ #: languages/vue.php:1254
6607
+ msgid "Installing..."
6608
  msgstr ""
6609
 
6610
+ #: languages/vue.php:1257
6611
+ msgid "Show in widget mode"
6612
  msgstr ""
6613
 
6614
+ #: languages/vue.php:1260
6615
+ msgid "Show in full-width mode"
6616
  msgstr ""
6617
 
6618
+ #: languages/vue.php:1263
6619
+ #: lite/includes/admin/helpers.php:83
6620
+ msgid "Upgrade to MonsterInsights Pro"
6621
  msgstr ""
6622
 
6623
+ #: languages/vue.php:1266
6624
+ msgid "Installing Addon"
 
6625
  msgstr ""
6626
 
6627
+ #: languages/vue.php:1269
6628
+ msgid "Activating Addon"
6629
  msgstr ""
6630
 
6631
+ #: languages/vue.php:1272
6632
+ msgid "Addon Activated"
6633
  msgstr ""
6634
 
6635
+ #: languages/vue.php:1275
6636
+ msgid "Loading report data"
6637
  msgstr ""
6638
 
6639
+ #: languages/vue.php:1278
6640
+ msgid "Please activate manually"
6641
  msgstr ""
6642
 
6643
+ #. Translators: Adds the error status and status text.
6644
+ #: languages/vue.php:1282
6645
+ msgid "Error: %1$s, %2$s"
6646
  msgstr ""
6647
 
6648
+ #: languages/vue.php:1285
6649
+ msgid "Error Activating Addon"
6650
  msgstr ""
6651
 
6652
+ #: languages/vue.php:1288
6653
+ #: lite/includes/admin/wp-site-health.php:372
6654
+ #: lite/includes/admin/wp-site-health.php:398
6655
+ #: lite/includes/admin/wp-site-health.php:425
6656
+ msgid "View Addons"
6657
  msgstr ""
6658
 
6659
+ #: languages/vue.php:1292
6660
+ msgid "Dismiss"
 
6661
  msgstr ""
6662
 
6663
+ #: languages/vue.php:1295
6664
+ msgid "Redirecting"
6665
+ msgstr ""
6666
+
6667
+ #: languages/vue.php:1298
6668
+ msgid "Please wait"
6669
  msgstr ""
6670
 
 
6671
  #: languages/vue.php:1301
6672
+ msgid "activate"
6673
  msgstr ""
6674
 
6675
+ #: languages/vue.php:1304
6676
+ msgid "install"
 
6677
  msgstr ""
6678
 
6679
+ #: languages/vue.php:1307
6680
+ msgid "Visit addons page"
 
6681
  msgstr ""
6682
 
6683
+ #: languages/vue.php:1310
6684
+ msgid "Report Unavailable"
 
6685
  msgstr ""
6686
 
6687
+ #. Translators: Install/Activate the addon.
6688
+ #: languages/vue.php:1314
6689
+ msgid "%s Addon"
6690
  msgstr ""
6691
 
6692
+ #: languages/vue.php:1317
6693
+ msgid "Go Back To Reports"
6694
  msgstr ""
6695
 
6696
+ #: languages/vue.php:1320
6697
+ msgid "Enable Enhanced eCommerce"
6698
  msgstr ""
6699
 
6700
+ #. Translators: Placeholders are used for making text bold and adding a link.
6701
+ #: languages/vue.php:1324
6702
+ msgid "You're using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s."
6703
  msgstr ""
6704
 
6705
+ #: languages/vue.php:1327
6706
+ msgid "Last 30 Days Insights for:"
6707
  msgstr ""
6708
 
6709
+ #: languages/vue.php:1330
6710
+ msgid "Your Website"
6711
  msgstr ""
6712
 
6713
+ #: languages/vue.php:1333
6714
+ msgid "Sessions"
6715
  msgstr ""
6716
 
6717
+ #: languages/vue.php:1336
6718
+ msgid "Pageviews"
6719
  msgstr ""
6720
 
6721
+ #: languages/vue.php:1339
6722
+ msgid "Avg. Duration"
6723
  msgstr ""
6724
 
6725
+ #: languages/vue.php:1342
6726
+ msgid "Bounce Rate"
6727
  msgstr ""
6728
 
6729
+ #: languages/vue.php:1345
6730
+ msgid "Total Users"
6731
  msgstr ""
6732
 
6733
+ #: languages/vue.php:1348
6734
+ msgid "More data is available"
6735
  msgstr ""
6736
 
6737
+ #: languages/vue.php:1351
6738
+ msgid "Want to see page-specific stats?"
6739
  msgstr ""
6740
 
6741
+ #: languages/vue.php:1354
6742
+ msgid "There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data."
6743
  msgstr ""
6744
 
6745
+ #: languages/vue.php:1357
6746
+ msgid "No addons found."
6747
  msgstr ""
6748
 
6749
+ #: languages/vue.php:1360
6750
+ msgid "Refresh Addons"
6751
  msgstr ""
6752
 
6753
+ #: languages/vue.php:1363
6754
+ msgid "Refreshing Addons"
6755
  msgstr ""
6756
 
6757
+ #. Translators: Make text green.
6758
+ #: languages/vue.php:1367
6759
+ 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!"
6760
  msgstr ""
6761
 
6762
+ #: languages/vue.php:1370
6763
+ msgid "See who's viewing and submitting your forms, so you can increase your conversion rate."
6764
  msgstr ""
6765
 
6766
+ #: languages/vue.php:1373
6767
+ msgid "Use Google Optimize to retarget your website visitors and perform A/B split tests with ease."
6768
  msgstr ""
6769
 
6770
+ #: languages/vue.php:1376
6771
+ msgid "Add Custom Dimensions and track who's the most popular author on your site, which post types get the most traffic, and more"
6772
  msgstr ""
6773
 
6774
+ #: languages/vue.php:1379
6775
+ msgid "See All Your Important Store Metrics in One Place"
6776
  msgstr ""
6777
 
6778
+ #: languages/vue.php:1382
6779
+ msgid "Get an Answer to All Your Top Ecommerce Questions From a Single Report"
6780
  msgstr ""
6781
 
6782
+ #: languages/vue.php:1385
6783
+ msgid "ONE-CLICK INTEGRATIONS"
6784
+ msgstr ""
6785
+
6786
+ #: languages/vue.php:1388
6787
+ msgid "Enable Ecommerce Tracking and Grow Your Business with Confidence"
6788
  msgstr ""
6789
 
 
6790
  #: languages/vue.php:1391
6791
+ 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."
6792
  msgstr ""
6793
 
6794
  #: languages/vue.php:1394
6795
+ msgid "Affiliate Tracking"
6796
  msgstr ""
6797
 
6798
  #: languages/vue.php:1397
6799
+ msgid "Automatically Track Affiliate Sales"
6800
  msgstr ""
6801
 
6802
  #: languages/vue.php:1400
6803
+ msgid "The MonsterInsights eCommerce addon works with EasyAffiliate to automatically attribute orders originating from an EasyAffiliate link in Google Analytics. Gain valuable insights into your top affiliates with no coding required."
6804
  msgstr ""
6805
 
6806
  #: languages/vue.php:1403
6807
+ msgid "Works with WooCommerce, MemberPress and Easy Digital Downloads."
6808
  msgstr ""
6809
 
6810
+ #: languages/vue.php:1412
6811
+ msgid "Cart Funnel"
6812
  msgstr ""
6813
 
6814
+ #: languages/vue.php:1415
6815
+ msgid "Customer Insights"
6816
  msgstr ""
6817
 
6818
+ #: languages/vue.php:1418
6819
+ msgid "Campaign Measurement"
6820
  msgstr ""
6821
 
6822
+ #: languages/vue.php:1421
6823
+ msgid "Customer Profiles"
6824
  msgstr ""
6825
 
6826
+ #: languages/vue.php:1424
6827
+ msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, revenue, and average order value, and more."
 
6828
  msgstr ""
6829
 
6830
+ #: languages/vue.php:1427
6831
+ msgid "Truly Understand Your%1$s Customers With %2$sMonsterInsights%3$s"
6832
  msgstr ""
6833
 
6834
+ #: languages/vue.php:1430
6835
+ msgid "You never truly understand your customers until you used Enhanced %1$s eCommerce from MonsterInsights!"
6836
  msgstr ""
6837
 
6838
+ #: languages/vue.php:1433
6839
+ msgid "Track all-new metrics!"
6840
  msgstr ""
6841
 
6842
+ #: languages/vue.php:1436
6843
+ msgid "Get stats WooCommerce doesn’t give you like: Conversion Sources, Avg. Order Value, Revenue per Source, Total Add to Carts & More!"
6844
  msgstr ""
6845
 
6846
+ #: languages/vue.php:1439
6847
+ msgid "FEATURES"
6848
  msgstr ""
6849
 
6850
+ #: languages/vue.php:1442
6851
+ msgid "Get The Unique Metrics Neccessary for Growth"
6852
  msgstr ""
6853
 
6854
  #: languages/vue.php:1445
6855
+ msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, %1$srevenue, and average order value, and more."
6856
  msgstr ""
6857
 
6858
+ #: languages/vue.php:1448
6859
+ msgid "Get Answers to the important questions %1$syou should know."
6860
  msgstr ""
6861
 
6862
+ #: languages/vue.php:1451
6863
+ msgid "Did the login/registration step of the checkout put users off?"
6864
  msgstr ""
6865
 
6866
+ #: languages/vue.php:1454
6867
+ msgid "Which ad campaign is driving the most revenue?"
6868
  msgstr ""
6869
 
6870
+ #: languages/vue.php:1457
6871
+ msgid "Who is my typical customer?"
6872
  msgstr ""
6873
 
6874
+ #: languages/vue.php:1460
6875
+ msgid "Level-up Your eCommerce store with %1$sMonsterInsights + WooCommerce!%1$s"
6876
  msgstr ""
6877
 
6878
+ #. Translators: placeholders make text small.
6879
+ #: languages/vue.php:1464
6880
+ msgid "Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s"
6881
  msgstr ""
6882
 
6883
+ #. Translators: placeholders make text small.
6884
  #: languages/vue.php:1468
6885
+ msgid "Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s"
 
 
 
 
6886
  msgstr ""
6887
 
6888
+ #. Translators: placeholders make text small.
6889
+ #: languages/vue.php:1472
6890
+ msgid "None %1$s- Manually update everything.%2$s"
6891
  msgstr ""
6892
 
6893
+ #: languages/vue.php:1475
6894
+ msgid "Automatic Updates"
6895
  msgstr ""
6896
 
6897
+ #: languages/vue.php:1478
6898
+ msgid "Awesome, You're All Set!"
6899
  msgstr ""
6900
 
6901
+ #: languages/vue.php:1481
6902
+ msgid "MonsterInsights is all set up and ready to use. We've verified that the tracking code is deployed properly and collecting data."
6903
  msgstr ""
6904
 
6905
+ #. Translators: Make text bold.
6906
+ #: languages/vue.php:1485
6907
+ 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."
6908
  msgstr ""
6909
 
6910
+ #. Translators: Link to our blog.
6911
  #: languages/vue.php:1489
6912
+ msgid "%1$sSubscribe to the MonsterInsights blog%2$s for tips on how to get more traffic and grow your business."
6913
  msgstr ""
6914
 
6915
  #: languages/vue.php:1492
6916
+ msgid "Finish Setup & Exit Wizard"
6917
  msgstr ""
6918
 
6919
  #: languages/vue.php:1495
6920
+ msgid "Checking your website..."
6921
  msgstr ""
6922
 
6923
  #: languages/vue.php:1498
6924
+ msgid "See All Reports"
6925
  msgstr ""
6926
 
6927
  #: languages/vue.php:1501
6928
+ msgid "Go to the Analytics Dashboard"
6929
  msgstr ""
6930
 
6931
+ #. Translators: Placeholder adds a line break.
6932
+ #: languages/vue.php:1505
6933
+ msgid "Unique %s Sessions"
6934
  msgstr ""
6935
 
6936
+ #. Translators: Placeholder adds a line break.
6937
+ #: languages/vue.php:1509
6938
+ msgid "Unique %s Pageviews"
6939
  msgstr ""
6940
 
6941
+ #: languages/vue.php:1512
6942
+ msgid "A session is the browsing session of a single user to your site."
6943
  msgstr ""
6944
 
6945
+ #: languages/vue.php:1515
6946
+ 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."
6947
  msgstr ""
6948
 
6949
+ #: languages/vue.php:1518
6950
+ msgid "Total duration of all sessions (in seconds) / number of sessions."
6951
  msgstr ""
6952
 
6953
+ #: languages/vue.php:1521
6954
+ 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."
6955
  msgstr ""
6956
 
6957
+ #: languages/vue.php:1524
6958
+ msgid "The number of distinct tracked users"
6959
  msgstr ""
6960
 
6961
+ #: languages/vue.php:1527
6962
+ msgid "Avg. Session Duration"
6963
  msgstr ""
6964
 
6965
+ #: languages/vue.php:1530
6966
+ msgid "Still Calculating..."
6967
  msgstr ""
6968
 
6969
+ #: languages/vue.php:1533
6970
+ msgid "Your 2020 Year in Review is still calculating. Please check back later to see how your website performed last year."
6971
  msgstr ""
6972
 
6973
+ #: languages/vue.php:1536
6974
+ msgid "Back to Overview Report"
6975
  msgstr ""
6976
 
6977
+ #: languages/vue.php:1539
6978
+ msgid "Your 2020 Analytics Report"
6979
  msgstr ""
6980
 
6981
+ #: languages/vue.php:1542
6982
+ msgid "See how your website performed this year and find tips along the way to help grow even more in 2021!"
6983
  msgstr ""
6984
 
6985
+ #: languages/vue.php:1545
6986
+ msgid "Audience"
6987
  msgstr ""
6988
 
6989
+ #: languages/vue.php:1548
6990
+ msgid "Congrats"
6991
  msgstr ""
6992
 
6993
+ #: languages/vue.php:1551
6994
+ msgid "Your website was quite popular this year! "
6995
  msgstr ""
6996
 
6997
+ #: languages/vue.php:1554
6998
+ msgid "You had "
6999
  msgstr ""
7000
 
7001
+ #: languages/vue.php:1557
7002
+ msgid " visitors!"
7003
  msgstr ""
7004
 
7005
+ #: languages/vue.php:1560
7006
+ msgid " visitors"
7007
  msgstr ""
7008
 
7009
+ #: languages/vue.php:1563
7010
+ msgid "Total Visitors"
7011
  msgstr ""
7012
 
7013
+ #: languages/vue.php:1566
7014
+ msgid "Total Sessions"
7015
  msgstr ""
7016
 
7017
+ #: languages/vue.php:1569
7018
+ msgid "Visitors by Month"
7019
  msgstr ""
7020
 
7021
+ #: languages/vue.php:1572
7022
+ msgid "January 1, 2020 - December 31, 2020"
7023
  msgstr ""
7024
 
7025
+ #: languages/vue.php:1575
7026
+ msgid "A Tip for 2021"
7027
  msgstr ""
7028
 
7029
+ #: languages/vue.php:1578
7030
+ msgid "Demographics"
7031
  msgstr ""
7032
 
7033
+ #: languages/vue.php:1581
7034
+ msgid "#1"
7035
  msgstr ""
7036
 
7037
+ #: languages/vue.php:1584
7038
+ msgid "You Top 5 Countries"
7039
  msgstr ""
7040
 
7041
+ #: languages/vue.php:1587
7042
+ msgid "Let’s get to know your visitors a little better, shall we?"
7043
  msgstr ""
7044
 
7045
+ #: languages/vue.php:1590
7046
+ msgid "Gender"
 
7047
  msgstr ""
7048
 
7049
+ #: languages/vue.php:1593
7050
+ msgid "Female"
7051
  msgstr ""
7052
 
7053
+ #: languages/vue.php:1596
7054
+ msgid "Women"
7055
  msgstr ""
7056
 
7057
+ #: languages/vue.php:1599
7058
+ msgid "Male"
7059
  msgstr ""
7060
 
7061
+ #: languages/vue.php:1602
7062
+ msgid "Average Age"
7063
  msgstr ""
7064
 
7065
+ #: languages/vue.php:1605
7066
+ msgid "Behavior"
7067
  msgstr ""
7068
 
7069
+ #: languages/vue.php:1608
7070
+ msgid "Your Top 5 Pages"
7071
  msgstr ""
7072
 
7073
+ #: languages/vue.php:1611
7074
+ msgid "Time Spent on Site"
7075
  msgstr ""
7076
 
7077
+ #: languages/vue.php:1614
7078
+ msgid "minutes"
7079
  msgstr ""
7080
 
7081
+ #: languages/vue.php:1617
7082
+ msgid "Device Type"
7083
  msgstr ""
7084
 
7085
+ #: languages/vue.php:1620
7086
+ msgid "A Tip For 2021"
7087
  msgstr ""
7088
 
7089
+ #: languages/vue.php:1623
7090
+ 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."
7091
  msgstr ""
7092
 
7093
+ #: languages/vue.php:1626
7094
+ msgid "Read - 32 Marketing Hacks to Grow Your Traffic"
7095
  msgstr ""
7096
 
7097
+ #: languages/vue.php:1629
7098
+ msgid "So, where did all of these visitors come from?"
7099
  msgstr ""
7100
 
7101
+ #: languages/vue.php:1632
7102
+ msgid "Clicks"
7103
  msgstr ""
7104
 
7105
+ #: languages/vue.php:1635
7106
+ msgid "Your Top 5 Keywords"
7107
  msgstr ""
7108
 
7109
+ #: languages/vue.php:1638
7110
+ msgid "What keywords visitors searched for to find your site"
7111
  msgstr ""
7112
 
7113
+ #: languages/vue.php:1641
7114
+ msgid "Your Top 5 Referrals"
7115
  msgstr ""
7116
 
7117
+ #: languages/vue.php:1644
7118
+ msgid "The websites that link back to your website"
7119
  msgstr ""
7120
 
7121
+ #: languages/vue.php:1647
7122
+ msgid "Opportunity"
7123
  msgstr ""
7124
 
7125
+ #: languages/vue.php:1650
7126
+ 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."
7127
  msgstr ""
7128
 
7129
+ #: languages/vue.php:1653
7130
+ msgid "Read - How to Ethically Steal Your Competitor’s Traffic"
7131
+ msgstr ""
7132
+
7133
+ #: languages/vue.php:1656
7134
+ msgid "Thank you for using MonsterInsights!"
7135
+ msgstr ""
7136
+
7137
+ #: languages/vue.php:1659
7138
+ 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."
7139
+ msgstr ""
7140
+
7141
+ #: languages/vue.php:1662
7142
+ msgid "Here's to an amazing 2021!"
7143
+ msgstr ""
7144
+
7145
+ #: languages/vue.php:1665
7146
+ msgid "Enjoying MonsterInsights"
7147
  msgstr ""
7148
 
7149
  #: languages/vue.php:1668
7150
+ msgid "Leave a five star review!"
7151
  msgstr ""
7152
 
7153
  #: languages/vue.php:1671
7154
+ msgid "Syed Balkhi"
7155
  msgstr ""
7156
 
7157
  #: languages/vue.php:1674
7158
+ msgid "Chris Christoff"
7159
+ msgstr ""
7160
+
7161
+ #: languages/vue.php:1677
7162
+ msgid "Write Review"
7163
  msgstr ""
7164
 
7165
  #: languages/vue.php:1680
7166
+ msgid "Did you know over 10 million websites use our plugins?"
7167
  msgstr ""
7168
 
7169
  #: languages/vue.php:1683
7170
+ msgid "Try our other popular WordPress plugins to grow your website in 2021."
7171
  msgstr ""
7172
 
7173
  #: languages/vue.php:1686
7174
+ msgid "Join our Communities!"
7175
  msgstr ""
7176
 
7177
  #: languages/vue.php:1689
7178
+ msgid "Become a WordPress expert in 2021. Join our amazing communities and take your website to the next level."
7179
  msgstr ""
7180
 
7181
  #: languages/vue.php:1692
7182
+ msgid "Facebook Group"
7183
  msgstr ""
7184
 
7185
  #: languages/vue.php:1695
7186
+ msgid "Join our team of WordPress experts and other motivated website owners in the WPBeginner Engage Facebook Group."
7187
  msgstr ""
7188
 
7189
  #: languages/vue.php:1698
7190
+ msgid "Join Now...It’s Free!"
7191
  msgstr ""
7192
 
7193
  #: languages/vue.php:1701
7194
+ msgid "WordPress Tutorials by WPBeginner"
7195
  msgstr ""
7196
 
7197
  #: languages/vue.php:1704
7198
+ msgid "WPBeginner is the largest free WordPress resource site for beginners and non-techy users."
7199
  msgstr ""
7200
 
7201
  #: languages/vue.php:1707
7202
+ msgid "Visit WPBeginner"
7203
  msgstr ""
7204
 
7205
  #: languages/vue.php:1710
7206
+ msgid "Follow Us!"
7207
  msgstr ""
7208
 
7209
  #: languages/vue.php:1713
7210
+ 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."
7211
  msgstr ""
7212
 
7213
  #: languages/vue.php:1716
7214
+ msgid "Copyright MonsterInsights, 2021"
7215
  msgstr ""
7216
 
7217
  #: languages/vue.php:1719
7218
+ msgid "Upgrade to MonsterInsights Pro to Unlock Additional Actionable Insights"
7219
  msgstr ""
7220
 
7221
  #: languages/vue.php:1722
7222
+ msgid "January"
7223
  msgstr ""
7224
 
7225
  #: languages/vue.php:1725
7226
+ msgid "February"
7227
  msgstr ""
7228
 
7229
  #: languages/vue.php:1728
7230
+ msgid "March"
7231
  msgstr ""
7232
 
7233
  #: languages/vue.php:1731
7234
+ msgid "April"
7235
  msgstr ""
7236
 
7237
  #: languages/vue.php:1734
7238
+ msgid "May"
7239
  msgstr ""
7240
 
7241
  #: languages/vue.php:1737
7242
+ msgid "June"
7243
  msgstr ""
7244
 
7245
  #: languages/vue.php:1740
7246
+ msgid "July"
7247
  msgstr ""
7248
 
7249
  #: languages/vue.php:1743
7250
+ msgid "August"
7251
  msgstr ""
7252
 
7253
  #: languages/vue.php:1746
7254
+ msgid "September"
7255
  msgstr ""
7256
 
7257
+ #: languages/vue.php:1749
7258
+ msgid "October"
 
7259
  msgstr ""
7260
 
7261
+ #: languages/vue.php:1752
7262
+ msgid "November"
7263
  msgstr ""
7264
 
7265
+ #: languages/vue.php:1755
7266
+ msgid "December"
 
7267
  msgstr ""
7268
 
7269
+ #. Translators: Number of visitors.
7270
+ #: languages/vue.php:1759
7271
+ msgid "Your best month was <strong>%1$s</strong> with <strong>%2$s visitors!</strong>"
7272
  msgstr ""
7273
 
7274
+ #: languages/vue.php:1762
7275
+ msgid "See the top Traffic Sources and Top Pages for the Month of %s in the Overview Report to replicate your success."
7276
  msgstr ""
7277
 
7278
+ #. Translators: Number of visitors.
7279
+ #: languages/vue.php:1766
7280
+ msgid "Your <strong>%1$s</strong> visitors came from <strong>%2$s</strong> different countries."
7281
  msgstr ""
7282
 
7283
+ #. Translators: Number of visitors.
7284
+ #: languages/vue.php:1770
7285
+ msgid "%s Visitors"
7286
  msgstr ""
7287
 
7288
+ #. Translators: Percent and Number of visitors.
7289
+ #: languages/vue.php:1774
7290
+ msgid "%1$s&#37 of your visitors were %2$s"
7291
  msgstr ""
7292
 
7293
+ #. Translators: Number of visitors and their age.
7294
+ #: languages/vue.php:1778
7295
+ msgid "%1$s&#37 of your visitors were between the ages of %2$s"
7296
  msgstr ""
7297
 
7298
+ #. Translators: Number of visitors and number of pages.
7299
+ #: languages/vue.php:1782
7300
+ 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>"
7301
  msgstr ""
7302
 
7303
+ #. Translators: Number of minutes spent on site.
7304
  #: languages/vue.php:1786
7305
+ msgid "Each visitor spent an average of %s minutes on your website in 2020."
7306
  msgstr ""
7307
 
7308
+ #. Translators: Name of device type.
7309
+ #: languages/vue.php:1790
7310
+ msgid "Most of your visitors viewed your website from their <strong>%s</strong> device."
7311
  msgstr ""
7312
 
7313
+ #. Translators: Number of visitors and device percentage.
7314
+ #: languages/vue.php:1794
7315
+ msgid "%1$s&#37 of your visitors were on a %2$s device."
7316
  msgstr ""
7317
 
 
7318
  #: languages/vue.php:1797
7319
+ msgid "Desktop"
7320
  msgstr ""
7321
 
7322
+ #: languages/vue.php:1800
7323
+ msgid "Tablet"
 
7324
  msgstr ""
7325
 
7326
+ #: languages/vue.php:1803
7327
+ msgid "Mobile"
 
7328
  msgstr ""
7329
 
7330
+ #: languages/vue.php:1806
7331
+ msgid "Right Now"
7332
  msgstr ""
7333
 
7334
+ #: languages/vue.php:1809
7335
+ msgid "Active users on site"
7336
  msgstr ""
7337
 
7338
+ #: languages/vue.php:1812
7339
+ msgid "The real-time graph of visitors over time is not currently available for this site. Please try again later."
7340
  msgstr ""
7341
 
7342
+ #: languages/vue.php:1815
7343
+ 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."
7344
  msgstr ""
7345
 
7346
+ #: languages/vue.php:1818
7347
+ msgid "The real-time report automatically updates approximately every 60 seconds."
7348
  msgstr ""
7349
 
7350
+ #. Translators: Number of seconds that have passed since the report was refreshed.
7351
+ #: languages/vue.php:1822
7352
+ msgid "The real-time report was last updated %s seconds ago."
7353
  msgstr ""
7354
 
7355
+ #: languages/vue.php:1825
7356
+ msgid "The latest data will be automatically shown on this page when it becomes available."
7357
  msgstr ""
7358
 
7359
+ #: languages/vue.php:1828
7360
+ msgid "There is no need to refresh the browser (doing so won't have any effect)."
7361
  msgstr ""
7362
 
7363
+ #: languages/vue.php:1831
7364
+ msgid "Pageviews Per Minute"
7365
  msgstr ""
7366
 
7367
+ #: languages/vue.php:1834
7368
+ msgid "Top Pages"
7369
  msgstr ""
7370
 
7371
+ #: languages/vue.php:1837
7372
+ msgid "No pageviews currently."
7373
  msgstr ""
7374
 
7375
+ #: languages/vue.php:1840
7376
+ msgid "Page"
7377
  msgstr ""
7378
 
7379
+ #: languages/vue.php:1843
7380
+ msgid "Pageview Count"
 
7381
  msgstr ""
7382
 
7383
+ #: languages/vue.php:1846
7384
+ msgid "Percent of Total"
7385
  msgstr ""
7386
 
7387
+ #: languages/vue.php:1849
7388
+ msgid "This is the number of active users currently on your site."
7389
  msgstr ""
7390
 
7391
+ #: languages/vue.php:1852
7392
+ msgid "This graph shows the number of pageviews for each of the last 30 minutes."
7393
+ msgstr ""
7394
+
7395
+ #: languages/vue.php:1855
7396
+ msgid "This list shows the top pages users are currently viewing on your site."
7397
+ msgstr ""
7398
+
7399
+ #: languages/vue.php:1858
7400
+ msgid "View All Real-Time Pageviews"
7401
  msgstr ""
7402
 
 
7403
  #: languages/vue.php:1861
7404
+ msgid "View All Real-Time Traffic Sources"
7405
  msgstr ""
7406
 
7407
+ #: languages/vue.php:1864
7408
+ msgid "View All Real-Time Traffic by Country"
 
7409
  msgstr ""
7410
 
7411
+ #: languages/vue.php:1867
7412
+ msgid "View All Real-Time Traffic by City"
 
7413
  msgstr ""
7414
 
7415
+ #: languages/vue.php:1870
7416
+ msgid "Show Overview Reports"
7417
  msgstr ""
7418
 
7419
+ #: languages/vue.php:1873
7420
+ msgid "Show Publishers Reports"
7421
  msgstr ""
7422
 
7423
+ #: languages/vue.php:1876
7424
+ msgid "Show eCommerce Reports"
7425
  msgstr ""
7426
 
7427
+ #: languages/vue.php:1879
7428
+ msgid "Settings Menu"
7429
  msgstr ""
7430
 
7431
+ #: languages/vue.php:1882
7432
+ msgid "Available in PRO version"
7433
  msgstr ""
7434
 
7435
+ #: languages/vue.php:1885
7436
+ msgid "Thank you for being a loyal MonsterInsights Lite user."
7437
  msgstr ""
7438
 
7439
+ #: languages/vue.php:1888
7440
+ msgid "Upgrade to MonsterInsights Pro and unlock all the awesome features."
7441
  msgstr ""
7442
 
7443
+ #. Translators: Gets replaced with the coupon code.
7444
+ #: languages/vue.php:1892
7445
+ msgid "Use coupon code %s to get 50%% off."
7446
  msgstr ""
7447
 
7448
+ #: languages/vue.php:1895
7449
+ msgid "Dashboard widget"
7450
  msgstr ""
7451
 
7452
  #: languages/vue.php:1899
7453
+ msgid "Affiliate Links"
7454
  msgstr ""
7455
 
7456
  #: languages/vue.php:1902
7457
+ msgid "Enhanced Ecommerce"
7458
  msgstr ""
7459
 
7460
  #: languages/vue.php:1905
7461
+ msgid "Banner Ads"
7462
  msgstr ""
7463
 
7464
  #: languages/vue.php:1908
7465
+ msgid "Google AMP"
7466
  msgstr ""
7467
 
7468
  #: languages/vue.php:1911
7469
+ msgid "SEO Score Tracking"
7470
  msgstr ""
7471
 
7472
+ #: languages/vue.php:1915
7473
+ msgid "Activating..."
7474
  msgstr ""
7475
 
7476
+ #: languages/vue.php:1918
7477
+ msgid "Deactivating..."
7478
  msgstr ""
7479
 
7480
+ #: languages/vue.php:1921
7481
+ msgid "Deactivate"
7482
  msgstr ""
7483
 
7484
+ #. Translators: The status of the addon (installed/active/inactive).
7485
+ #: languages/vue.php:1925
7486
+ msgid "Status: %s"
7487
  msgstr ""
7488
 
7489
+ #: languages/vue.php:1928
7490
+ msgid "Not Installed"
7491
  msgstr ""
7492
 
7493
+ #: languages/vue.php:1931
7494
+ msgid "Network Active"
7495
  msgstr ""
7496
 
7497
+ #: languages/vue.php:1934
7498
+ msgid "Active"
7499
  msgstr ""
7500
 
7501
+ #: languages/vue.php:1937
7502
+ msgid "Inactive"
 
7503
  msgstr ""
7504
 
7505
+ #. Translators: Adds a link to the general settings tab.
7506
+ #: languages/vue.php:1941
7507
+ 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."
7508
  msgstr ""
7509
 
 
7510
  #: languages/vue.php:1944
7511
+ msgid "Export PDF Reports"
7512
  msgstr ""
7513
 
7514
  #: languages/vue.php:1947
7515
+ msgid "Permissions"
7516
  msgstr ""
7517
 
7518
+ #: languages/vue.php:1950
7519
+ msgid "Allow These User Roles to See Reports"
 
7520
  msgstr ""
7521
 
7522
+ #: languages/vue.php:1953
7523
+ msgid "Users that have at least one of these roles will be able to view the reports."
7524
+ msgstr ""
7525
+
7526
+ #: languages/vue.php:1956
7527
+ 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."
7528
  msgstr ""
7529
 
 
7530
  #: languages/vue.php:1959
7531
+ msgid "Allow These User Roles to Save Settings"
7532
  msgstr ""
7533
 
7534
  #: languages/vue.php:1962
7535
+ msgid "Users that have at least one of these roles will be able to view and save the settings panel."
7536
  msgstr ""
7537
 
7538
+ #: languages/vue.php:1965
7539
+ 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."
 
7540
  msgstr ""
7541
 
7542
+ #: languages/vue.php:1968
7543
+ msgid "Exclude These User Roles From Tracking"
 
7544
  msgstr ""
7545
 
7546
+ #: languages/vue.php:1971
7547
+ msgid "Users that have at least one of these roles will not be tracked into Google Analytics."
7548
  msgstr ""
7549
 
7550
+ #: languages/vue.php:1974
7551
+ msgid "Performance"
 
7552
  msgstr ""
7553
 
7554
+ #: languages/vue.php:1977
7555
+ msgid "Custom code"
7556
  msgstr ""
7557
 
7558
+ #. Translators: Adds a link to the Google reference.
7559
+ #: languages/vue.php:1981
7560
+ 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."
7561
  msgstr ""
7562
 
7563
+ #: languages/vue.php:1987
7564
+ msgid "You must have the \"unfiltered_html\" capability to view/edit this setting."
7565
  msgstr ""
7566
 
7567
+ #: languages/vue.php:1990
7568
+ msgid "Hide Admin Bar Reports"
7569
  msgstr ""
7570
 
7571
+ #. Translators: placeholders make text small.
7572
+ #: languages/vue.php:1994
7573
+ msgid "Enabled %1$s- Show reports and dashboard widget.%2$s"
7574
  msgstr ""
7575
 
7576
+ #. Translators: placeholders make text small.
7577
+ #: languages/vue.php:1998
7578
+ msgid "Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s"
7579
  msgstr ""
7580
 
7581
+ #. Translators: placeholders make text small.
7582
+ #: languages/vue.php:2002
7583
+ msgid "Disabled %1$s- Hide reports and dashboard widget.%2$s"
7584
  msgstr ""
7585
 
7586
+ #: languages/vue.php:2005
7587
+ msgid "View notifications"
7588
  msgstr ""
7589
 
7590
+ #. Translators: Error status and error text.
7591
+ #: languages/vue.php:2009
7592
+ msgid "Can't load settings. Error: %1$s, %2$s"
7593
  msgstr ""
7594
 
7595
+ #: languages/vue.php:2012
7596
+ msgid "You appear to be offline."
 
7597
  msgstr ""
7598
 
7599
+ #. Translators: Error status and error text.
7600
+ #: languages/vue.php:2016
7601
+ msgid "Can't save settings. Error: %1$s, %2$s"
7602
  msgstr ""
7603
 
7604
+ #: languages/vue.php:2019
7605
+ msgid "Network error encountered. Settings not saved."
7606
  msgstr ""
7607
 
7608
+ #. Translators: Error status and error text.
7609
+ #: languages/vue.php:2023
7610
+ msgid "Can't deactivate the license. Error: %1$s, %2$s"
7611
  msgstr ""
7612
 
7613
+ #. Translators: Error status and error text.
7614
+ #: languages/vue.php:2027
7615
+ msgid "Can't upgrade to PRO please try again. Error: %1$s, %2$s"
7616
  msgstr ""
7617
 
7618
+ #. Translators: Error status and error text.
7619
+ #: languages/vue.php:2031
7620
+ msgid "Can't load license details. Error: %1$s, %2$s"
7621
  msgstr ""
7622
 
 
7623
  #: languages/vue.php:2034
7624
+ msgid "Error loading license details"
7625
  msgstr ""
7626
 
7627
+ #. Translators: Error status and error text.
7628
  #: languages/vue.php:2038
7629
+ msgid "Can't verify the license. Error: %1$s, %2$s"
 
 
 
 
7630
  msgstr ""
7631
 
7632
+ #. Translators: Error status and error text.
7633
+ #: languages/vue.php:2042
7634
+ msgid "Can't validate the license. Error: %1$s, %2$s"
7635
  msgstr ""
7636
 
7637
+ #. Translators: Error status and error text.
7638
+ #: languages/vue.php:2046
7639
+ msgid "Can't deauthenticate. Error: %1$s, %2$s"
7640
  msgstr ""
7641
 
7642
+ #. Translators: Error status and error text.
7643
  #: languages/vue.php:2050
7644
+ msgid "Can't load authentication details. Error: %1$s, %2$s"
7645
  msgstr ""
7646
 
7647
  #: languages/vue.php:2053
7648
+ msgid "You appear to be offline. Settings not saved."
 
 
 
 
7649
  msgstr ""
7650
 
7651
+ #. Translators: Error status and error text.
7652
+ #: languages/vue.php:2057
7653
+ msgid "Can't authenticate. Error: %1$s, %2$s"
7654
  msgstr ""
7655
 
7656
+ #. Translators: Error status and error text.
7657
+ #: languages/vue.php:2061
7658
+ msgid "Can't reauthenticate. Error: %1$s, %2$s"
7659
  msgstr ""
7660
 
7661
+ #. Translators: Error status and error text.
7662
  #: languages/vue.php:2065
7663
+ msgid "Can't verify credentials. Error: %1$s, %2$s"
7664
  msgstr ""
7665
 
7666
  #: languages/vue.php:2068
7667
+ msgid "Proceed"
7668
  msgstr ""
7669
 
7670
  #: languages/vue.php:2071
7671
+ msgid "Connection Information"
7672
  msgstr ""
7673
 
7674
  #: languages/vue.php:2074
7675
+ 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."
7676
  msgstr ""
7677
 
7678
+ #: languages/vue.php:2077
7679
+ msgid "Hostname"
 
7680
  msgstr ""
7681
 
7682
+ #: languages/vue.php:2080
7683
+ msgid "FTP Username"
7684
+ msgstr ""
7685
+
7686
+ #: languages/vue.php:2083
7687
+ msgid "FTP Password"
7688
  msgstr ""
7689
 
 
7690
  #: languages/vue.php:2086
7691
+ msgid "This password will not be stored on the server."
7692
  msgstr ""
7693
 
7694
  #: languages/vue.php:2089
7695
+ msgid "Connection Type"
7696
  msgstr ""
7697
 
7698
  #: languages/vue.php:2092
7699
+ msgid "Cancel"
7700
  msgstr ""
7701
 
7702
  #: languages/vue.php:2095
7703
+ msgid "You appear to be offline. WPForms not installed."
7704
  msgstr ""
7705
 
7706
+ #. Translators: Error status and error text.
7707
  #: languages/vue.php:2099
7708
+ msgid "Can't activate addon. Error: %1$s, %2$s"
7709
  msgstr ""
7710
 
7711
  #: languages/vue.php:2102
7712
+ msgid "You appear to be offline. Addon not activated."
7713
  msgstr ""
7714
 
7715
+ #. Translators: Error status and error text.
7716
  #: languages/vue.php:2106
7717
+ msgid "Can't deactivate addon. Error: %1$s, %2$s"
7718
  msgstr ""
7719
 
7720
+ #: languages/vue.php:2109
7721
+ msgid "You appear to be offline. Addon not deactivated."
 
7722
  msgstr ""
7723
 
7724
+ #. Translators: Error status and error text.
7725
  #: languages/vue.php:2113
7726
+ msgid "Can't install plugin. Error: %1$s, %2$s"
7727
  msgstr ""
7728
 
7729
  #: languages/vue.php:2116
7730
+ msgid "You appear to be offline. Plugin not installed."
7731
  msgstr ""
7732
 
7733
+ #. Translators: Error status and error text.
7734
+ #: languages/vue.php:2120
7735
+ msgid "Can't install addon. Error: %1$s, %2$s"
7736
  msgstr ""
7737
 
7738
+ #: languages/vue.php:2123
7739
+ msgid "You appear to be offline. Addon not installed."
7740
  msgstr ""
7741
 
7742
+ #. Translators: Error status and error text.
7743
+ #: languages/vue.php:2127
7744
+ msgid "Can't install WPForms. Error: %1$s, %2$s"
7745
  msgstr ""
7746
 
7747
+ #. Translators: Example path (/go/).
7748
+ #: languages/vue.php:2131
7749
+ msgid "Path (example: %s)"
7750
  msgstr ""
7751
 
 
7752
  #: languages/vue.php:2134
7753
+ msgid "Path has to start with a / and have no spaces"
7754
  msgstr ""
7755
 
7756
+ #. Translators: Example label (aff).
7757
  #: languages/vue.php:2138
7758
+ msgid "Label (example: %s)"
7759
  msgstr ""
7760
 
7761
  #: languages/vue.php:2141
7762
+ msgid "Label can't contain any spaces"
7763
  msgstr ""
7764
 
7765
+ #. Translators: Add links to documentation.
7766
  #: languages/vue.php:2145
7767
+ 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."
7768
  msgstr ""
7769
 
7770
+ #: languages/vue.php:2148
7771
+ msgid "Our affiliate link tracking works by setting path for internal links to track as outbound links."
 
7772
  msgstr ""
7773
 
7774
+ #: languages/vue.php:2151
7775
+ 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."
7776
  msgstr ""
7777
 
7778
+ #: languages/vue.php:2154
7779
+ msgid "Disable the Headline Analyzer"
7780
  msgstr ""
7781
 
7782
+ #: languages/vue.php:2157
7783
+ msgid "Warning: If you use a manual GA4 Measurement ID, you won't be able to use any of the reporting and some of the tracking features. Your Measurement ID should look like G-XXXXXXXXXX where the X's are numbers."
 
7784
  msgstr ""
7785
 
7786
+ #: languages/vue.php:2160
7787
+ msgid "Or manually enter UA code (limited functionality)"
7788
+ msgstr ""
7789
+
7790
+ #: languages/vue.php:2163
7791
+ msgid "Dual Tracking Profile"
7792
  msgstr ""
7793
 
 
7794
  #: languages/vue.php:2166
7795
+ msgid "The dual tracking feature allows you to continue tracking this site into an existing GAv3 property so you can continue to use the GA reports you are used to already. Learn more about this feature %1$shere%2$s."
7796
  msgstr ""
7797
 
7798
  #: languages/vue.php:2169
7799
+ msgid "Your Universal Analytics code should look like UA-XXXXXXXXXX where the X's are numbers."
7800
  msgstr ""
7801
 
7802
+ #: languages/vue.php:2172
7803
+ msgid "The dual tracking feature allows you to begin tracking this site into a GAv4 property to take advantage of the new GAv4 analysis tools. Learn more about this feature %1$shere%2$s."
 
7804
  msgstr ""
7805
 
7806
+ #: languages/vue.php:2175
7807
+ msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are numbers."
7808
  msgstr ""
7809
 
7810
+ #: languages/vue.php:2178
7811
+ msgid "Measurement Protocol API Secret"
 
7812
  msgstr ""
7813
 
7814
+ #: languages/vue.php:2181
7815
+ msgid "The Measurement Protocol API secret allows your site to send tracking data to Google Analytics. To retrieve your Measurement Protocol API Secret, follow %1$sthis guide%2$s."
7816
+ msgstr ""
7817
+
7818
+ #: languages/vue.php:2184
7819
+ msgid "Force Deauthenticate"
7820
  msgstr ""
7821
 
 
7822
  #: languages/vue.php:2187
7823
+ msgid "Disconnect MonsterInsights"
7824
  msgstr ""
7825
 
7826
  #: languages/vue.php:2190
7827
+ msgid "Authenticating"
7828
  msgstr ""
7829
 
7830
  #: languages/vue.php:2193
7831
+ msgid "Verifying Credentials"
7832
  msgstr ""
7833
 
7834
  #: languages/vue.php:2196
7835
+ msgid "Your site is connected to MonsterInsights!"
7836
  msgstr ""
7837
 
7838
  #: languages/vue.php:2199
7839
+ msgid "Deauthenticating"
7840
  msgstr ""
7841
 
7842
  #: languages/vue.php:2202
7843
+ 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."
7844
  msgstr ""
7845
 
7846
  #: languages/vue.php:2205
7847
+ msgid "Connect MonsterInsights"
7848
  msgstr ""
7849
 
7850
  #: languages/vue.php:2208
7851
+ msgid "Verify Credentials"
7852
  msgstr ""
7853
 
7854
  #: languages/vue.php:2211
7855
+ msgid "Website Profile"
7856
  msgstr ""
7857
 
7858
  #: languages/vue.php:2214
7859
+ msgid "Active Profile"
7860
  msgstr ""
7861
 
7862
  #: languages/vue.php:2217
7863
+ msgid "Your website profile has been set at the network level of your WordPress Multisite."
7864
  msgstr ""
7865
 
7866
  #: languages/vue.php:2220
7867
+ msgid "If you would like to use a different profile for this subsite, you can authenticate below."
7868
  msgstr ""
7869
 
7870
  #: languages/vue.php:2223
7871
+ msgid "Manually enter your UA code"
7872
  msgstr ""
7873
 
7874
  #: languages/vue.php:2226
7875
+ 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."
7876
  msgstr ""
7877
 
7878
  #: languages/vue.php:2229
7879
+ msgid "Manually enter your GA4 Measurement ID"
7880
  msgstr ""
7881
 
7882
  #: languages/vue.php:2232
7883
+ msgid "Enable Demographics and Interests Reports for Remarketing and Advertising"
7884
  msgstr ""
7885
 
7886
  #: languages/vue.php:2235
7887
+ msgid "Anonymize IP Addresses"
7888
  msgstr ""
7889
 
7890
  #: languages/vue.php:2238
7891
+ msgid "Link Attribution"
7892
  msgstr ""
7893
 
7894
  #: languages/vue.php:2241
7895
+ msgid "Enable Enhanced Link Attribution"
7896
  msgstr ""
7897
 
7898
  #: languages/vue.php:2244
7899
+ msgid "Enable Anchor Tracking"
7900
  msgstr ""
7901
 
7902
  #: languages/vue.php:2247
7903
+ msgid "Enable allowAnchor"
7904
  msgstr ""
7905
 
7906
  #: languages/vue.php:2250
7907
+ msgid "Enable allowLinker"
7908
  msgstr ""
7909
 
7910
  #: languages/vue.php:2253
7911
+ msgid "Enable Tag Links in RSS"
7912
  msgstr ""
7913
 
7914
  #: languages/vue.php:2256
7915
+ msgid "File Downloads"
7916
  msgstr ""
7917
 
7918
  #: languages/vue.php:2259
7919
+ msgid "Extensions of Files to Track as Downloads"
7920
  msgstr ""
7921
 
7922
  #: languages/vue.php:2262
7923
+ msgid "MonsterInsights will send an event to Google Analytics if a link to a file has one of the above extensions."
7924
  msgstr ""
7925
 
7926
+ #. Translators: Add links to the documentation.
7927
+ #: languages/vue.php:2266
7928
+ 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."
7929
  msgstr ""
7930
 
7931
+ #. Translators: Adds a link to the documentation.
7932
  #: languages/vue.php:2270
7933
+ 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."
7934
  msgstr ""
7935
 
7936
+ #. Translators: Adds a link to the documentation.
7937
+ #: languages/vue.php:2274
7938
+ 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."
7939
  msgstr ""
7940
 
7941
+ #: languages/vue.php:2277
7942
+ 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."
7943
  msgstr ""
7944
 
7945
+ #. Translators: Adds a link to the documentation.
7946
+ #: languages/vue.php:2281
7947
+ 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."
 
 
 
 
 
7948
  msgstr ""
7949
 
7950
+ #. Translators: Adds a link to the documentation.
7951
+ #: languages/vue.php:2285
7952
+ 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."
7953
  msgstr ""
7954
 
7955
+ #. Translators: Adds a link to the documentation.
7956
+ #: languages/vue.php:2289
7957
+ 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."
7958
  msgstr ""
7959
 
7960
+ #: languages/vue.php:2292
7961
+ msgid "Add domain"
7962
  msgstr ""
7963
 
7964
+ #. Translators: Example domain.
7965
  #: languages/vue.php:2296
7966
+ msgid "Domain (example: %s)"
 
 
 
 
7967
  msgstr ""
7968
 
7969
+ #. Translators: Current site domain to be avoided.
7970
+ #: languages/vue.php:2300
7971
+ msgid "Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s )."
7972
  msgstr ""
7973
 
7974
+ #: languages/vue.php:2303
7975
+ msgid "Cross Domain Tracking"
7976
  msgstr ""
7977
 
7978
+ #. Translators: Adds a link to the documentation.
7979
+ #: languages/vue.php:2307
7980
+ 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."
7981
  msgstr ""
7982
 
7983
+ #. Translators: Number of days.
7984
  #: languages/vue.php:2311
7985
+ msgid "vs. Previous Day"
7986
  msgstr ""
7987
 
7988
  #: languages/vue.php:2314
7989
+ msgid "No change"
7990
  msgstr ""
7991
 
7992
  #: languages/vue.php:2317
7993
+ msgid "Forms Tracking help you see who’s viewing your forms, so you can increase conversions."
7994
  msgstr ""
7995
 
7996
  #: languages/vue.php:2320
7997
+ msgid "Custom Dimensions show you popular categories, best time to publish, focus keywords, etc."
7998
  msgstr ""
7999
 
8000
  #: languages/vue.php:2323
8001
+ msgid "Make Google Analytics GDPR compliant with our EU Compliance addon."
8002
  msgstr ""
8003
 
8004
  #: languages/vue.php:2326
8005
+ msgid "Get real-time Google Analytics report right inside your WordPress dashboard."
8006
  msgstr ""
8007
 
8008
  #: languages/vue.php:2329
8009
+ msgid "Use Google Optimize to easily perform A/B split tests on your site."
8010
  msgstr ""
8011
 
8012
  #: languages/vue.php:2332
8013
+ msgid "See all your important store metrics in one place with Enhanced Ecommerce Tracking."
8014
  msgstr ""
8015
 
8016
  #: languages/vue.php:2335
8017
+ msgid "Unlock search console report to see your top performing keywords in Google."
8018
  msgstr ""
8019
 
8020
  #: languages/vue.php:2338
8021
+ msgid "Get Page Insights to see important metrics for individual posts / pages in WordPress."
8022
  msgstr ""
8023
 
8024
  #: languages/vue.php:2341
8025
+ msgid "Publishers Report shows your top performing pages, audience demographics, and more."
8026
  msgstr ""
8027
 
8028
  #: languages/vue.php:2344
8029
+ msgid "Get Scroll-Depth tracking to see how far users scroll on your pages before leaving."
8030
  msgstr ""
8031
 
8032
  #: languages/vue.php:2347
8033
+ msgid "Upgrade to Pro »"
8034
  msgstr ""
8035
 
8036
  #: languages/vue.php:2350
8037
+ msgid "Pro Tip:"
8038
  msgstr ""
8039
 
8040
  #: languages/vue.php:2353
8041
+ msgid "Show"
8042
  msgstr ""
8043
 
8044
  #: languages/vue.php:2356
8045
+ msgid "Hide dashboard widget"
8046
  msgstr ""
8047
 
8048
  #: languages/vue.php:2359
8049
+ msgid "Are you sure you want to hide the MonsterInsights Dashboard Widget? "
8050
  msgstr ""
8051
 
8052
  #: languages/vue.php:2362
8053
+ msgid "Yes, hide it!"
8054
  msgstr ""
8055
 
8056
  #: languages/vue.php:2365
8057
+ msgid "No, cancel!"
8058
  msgstr ""
8059
 
8060
  #: languages/vue.php:2368
8061
+ msgid "MonsterInsights Widget Hidden"
8062
  msgstr ""
8063
 
8064
  #: languages/vue.php:2371
8065
+ msgid "You can re-enable the MonsterInsights widget at any time using the \"Screen Options\" menu on the top right of this page"
8066
  msgstr ""
8067
 
8068
  #: languages/vue.php:2374
8069
+ msgid "Upgrade"
8070
  msgstr ""
8071
 
8072
  #: languages/vue.php:2377
8073
+ msgid "Usage Tracking"
8074
  msgstr ""
8075
 
8076
  #: languages/vue.php:2380
8077
+ msgid "Allow Usage Tracking"
8078
  msgstr ""
8079
 
8080
  #: languages/vue.php:2383
8081
+ 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."
 
 
 
 
8082
  msgstr ""
8083
 
8084
+ #. Translators: Add links to documentation.
8085
+ #: languages/vue.php:2387
8086
+ msgid "Complete documentation on usage tracking is available %1$shere%2$s."
8087
  msgstr ""
8088
 
8089
+ #. Translators: Make text green and add smiley face.
8090
+ #: languages/vue.php:2391
8091
+ msgid "You're using %1$sMonsterInsights Lite%2$s - no license needed. Enjoy! %3$s"
8092
  msgstr ""
8093
 
8094
+ #. Translators: Add link to upgrade.
8095
  #: languages/vue.php:2395
8096
+ msgid "To unlock more features consider %1$supgrading to PRO%2$s."
 
 
 
 
8097
  msgstr ""
8098
 
8099
+ #. Translators: Make text green.
8100
+ #: languages/vue.php:2399
8101
+ msgid "As a valued MonsterInsights Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!"
8102
  msgstr ""
8103
 
8104
+ #: languages/vue.php:2402
8105
+ msgid "Unlock PRO Features Now"
8106
  msgstr ""
8107
 
8108
+ #: languages/vue.php:2405
8109
+ msgid "Paste your license key here"
8110
  msgstr ""
8111
 
8112
+ #: languages/vue.php:2408
8113
+ msgid "Verify"
8114
  msgstr ""
8115
 
8116
+ #. Translators: Add link to retrieve license from account area.
8117
+ #: languages/vue.php:2412
8118
+ msgid "Already purchased? Simply enter your license key below to connect with MonsterInsights PRO! %1$sRetrieve your license key%2$s."
8119
  msgstr ""
8120
 
8121
+ #: languages/vue.php:2415
8122
+ msgid "There was an error unlocking MonsterInsights PRO please try again or install manually."
8123
  msgstr ""
8124
 
8125
+ #. Translators: Error status and error text.
8126
  #: languages/vue.php:2419
8127
+ msgid "Can't load errors. Error: %1$s, %2$s"
8128
  msgstr ""
8129
 
8130
  #: languages/vue.php:2422
8131
+ msgid "No options available"
 
8132
  msgstr ""
8133
 
8134
  #: languages/vue.php:2425
8135
+ msgid "%1$sAll-in-One SEO%2$s Makes SEO Simple. Gain Valuable Organic Traffic."
 
8136
  msgstr ""
8137
 
8138
  #: languages/vue.php:2428
8139
+ msgid "Automatically migrate all of your SEO settings with just 1 click!"
8140
  msgstr ""
8141
 
8142
  #: languages/vue.php:2431
8143
+ msgid "1,938"
8144
  msgstr ""
8145
 
8146
  #: languages/vue.php:2434
8147
+ msgid "2+ Million Active Installs"
8148
  msgstr ""
8149
 
8150
  #: languages/vue.php:2437
8151
+ msgid "AIOSEO is the DIY Solution for Managing your SEO"
8152
  msgstr ""
8153
 
8154
  #: languages/vue.php:2440
8155
+ msgid "Set up the proper SEO foundations in less than 10 minutes."
8156
  msgstr ""
8157
 
8158
  #: languages/vue.php:2443
8159
+ msgid "SEO Audit Checklist"
8160
  msgstr ""
8161
 
8162
  #: languages/vue.php:2446
8163
+ msgid "Analyze your entire WordPress site to detect critical errors and get actionable insights to boost your SEO and get more traffic."
8164
  msgstr ""
8165
 
8166
  #: languages/vue.php:2449
8167
+ msgid "Optimize Your Pages For Higher Rankings With TruSEO Score."
8168
  msgstr ""
8169
 
8170
  #: languages/vue.php:2452
8171
+ msgid "TruSEO Score gives you a more in-depth analysis into your optimization efforts than just a pass or fail. Our actionable checklist helps you to unlock maximum traffic with each page."
8172
  msgstr ""
8173
 
8174
  #: languages/vue.php:2455
8175
+ msgid "Get AIOSEO for WordPress"
8176
  msgstr ""
8177
 
8178
  #: languages/vue.php:2458
8179
+ msgid "Get the #1 Most Powerful WordPress SEO Plugin Today"
8180
  msgstr ""
8181
 
8182
  #: languages/vue.php:2461
8183
+ msgid "Try it out today, for free."
8184
  msgstr ""
8185
 
8186
  #: languages/vue.php:2464
8187
+ msgid "Join 2,000,000+ Professionals who use AIOSEO to Improve Their Website Search Rankings."
8188
  msgstr ""
8189
 
8190
  #: languages/vue.php:2467
8191
+ msgid "Activate and Install the Plugin with just one click!"
8192
  msgstr ""
8193
 
8194
  #: languages/vue.php:2470
8195
+ msgid "Installing AIOSEO..."
8196
  msgstr ""
8197
 
8198
  #: languages/vue.php:2473
8199
+ msgid "Congrats! All-in-One SEO Installed."
8200
  msgstr ""
8201
 
8202
  #: languages/vue.php:2476
8203
+ msgid "Switch to AIOSEO"
8204
  msgstr ""
8205
 
8206
  #: languages/vue.php:2479
8207
+ msgid "Installation Failed. Please refresh and try again."
8208
  msgstr ""
8209
 
8210
  #: languages/vue.php:2482
8211
+ msgid "Activating AIOSEO..."
8212
  msgstr ""
8213
 
8214
  #: languages/vue.php:2485
8215
+ msgid "Activate AIOSEO"
8216
  msgstr ""
8217
 
8218
+ #: languages/vue.php:2488
8219
+ msgid "Activation Failed. Please refresh and try again."
 
8220
  msgstr ""
8221
 
8222
+ #. Translators: The name of the field that is throwing a validation error.
8223
  #: languages/vue.php:2492
8224
+ msgid "%s can't be empty."
8225
  msgstr ""
8226
 
8227
+ #: languages/vue.php:2495
8228
+ msgid "Duplicate values are not allowed."
 
8229
  msgstr ""
8230
 
8231
+ #: languages/vue.php:2498
8232
+ msgid "You can add maximum 5 items."
 
8233
  msgstr ""
8234
 
8235
+ #: languages/vue.php:2501
8236
+ msgid "At least 0 item required."
8237
  msgstr ""
8238
 
8239
+ #: languages/vue.php:2504
8240
+ msgid "Add Another Link Path"
8241
  msgstr ""
8242
 
8243
+ #: languages/vue.php:2507
8244
+ msgid "Remove row"
8245
  msgstr ""
8246
 
8247
+ #: languages/vue.php:2510
8248
+ msgid "New"
8249
  msgstr ""
8250
 
8251
+ #: languages/vue.php:2513
8252
+ msgid "Returning"
8253
  msgstr ""
8254
 
8255
+ #: languages/vue.php:2516
8256
+ msgid "Top 10 Countries"
8257
  msgstr ""
8258
 
8259
+ #: languages/vue.php:2519
8260
+ msgid "View Countries Report"
8261
  msgstr ""
8262
 
8263
+ #: languages/vue.php:2522
8264
+ msgid "Top 10 Referrals"
8265
  msgstr ""
8266
 
8267
+ #: languages/vue.php:2525
8268
+ msgid "View All Referral Sources"
8269
  msgstr ""
8270
 
8271
+ #: languages/vue.php:2528
8272
+ msgid "View Full Posts/Pages Report"
8273
  msgstr ""
8274
 
8275
+ #: languages/vue.php:2531
8276
+ 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."
8277
  msgstr ""
8278
 
8279
+ #: languages/vue.php:2534
8280
+ msgid "This list shows the top countries your website visitors are from."
8281
  msgstr ""
8282
 
8283
+ #: languages/vue.php:2537
8284
+ msgid "This list shows the top websites that send your website traffic, known as referral traffic."
8285
  msgstr ""
8286
 
8287
+ #: languages/vue.php:2540
8288
+ msgid "Export PDF Overview Report"
8289
  msgstr ""
8290
 
8291
+ #: languages/vue.php:2543
8292
+ msgid "Reset to default"
8293
  msgstr ""
8294
 
8295
+ #: languages/vue.php:2546
8296
+ msgid "The value entered does not match the required format"
8297
  msgstr ""
8298
 
8299
+ #: languages/vue.php:2549
8300
+ msgid "Download the analytics reports instantly from the WordPress dashboard as PDF files and share them with anyone."
8301
  msgstr ""
8302
 
8303
+ #: languages/vue.php:2552
8304
+ msgid "Our email summaries feature sends a weekly summary of the most important site analytics information."
8305
  msgstr ""
8306
 
8307
+ #: languages/vue.php:2555
8308
+ msgid "Recommended Settings"
8309
  msgstr ""
8310
 
8311
+ #: languages/vue.php:2558
8312
+ msgid "MonsterInsights recommends the following settings based on your configuration."
 
8313
  msgstr ""
8314
 
8315
+ #: languages/vue.php:2561
8316
+ msgid "Events Tracking"
8317
  msgstr ""
8318
 
8319
+ #: languages/vue.php:2564
8320
+ msgid "Must have for all click tracking on site."
8321
  msgstr ""
8322
 
8323
+ #: languages/vue.php:2567
8324
+ 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."
 
8325
  msgstr ""
8326
 
8327
+ #: languages/vue.php:2570
8328
+ msgid "Enhanced Link Attribution"
 
8329
  msgstr ""
8330
 
8331
+ #: languages/vue.php:2573
8332
+ msgid "Improves the accuracy of your In-Page Analytics."
 
8333
  msgstr ""
8334
 
8335
+ #: languages/vue.php:2576
8336
+ 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."
8337
  msgstr ""
8338
 
8339
+ #: languages/vue.php:2579
8340
+ msgid "Install Updates Automatically"
8341
  msgstr ""
8342
 
8343
+ #: languages/vue.php:2582
8344
+ msgid "Get the latest features, bug fixes, and security updates as they are released."
8345
  msgstr ""
8346
 
8347
+ #: languages/vue.php:2585
8348
+ msgid "To ensure you get the latest bug fixes and security updates and avoid needing to spend time logging into your WordPress site to update MonsterInsights, we offer the ability to automatically have MonsterInsights update itself."
8349
  msgstr ""
8350
 
8351
+ #: languages/vue.php:2588
8352
+ msgid "File Download Tracking"
8353
  msgstr ""
8354
 
8355
+ #: languages/vue.php:2591
8356
+ msgid "Helps you see file downloads data."
8357
  msgstr ""
8358
 
8359
+ #: languages/vue.php:2594
8360
+ 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."
8361
  msgstr ""
8362
 
8363
+ #: languages/vue.php:2597
8364
+ msgid "Helps you increase affiliate revenue."
8365
  msgstr ""
8366
 
8367
+ #: languages/vue.php:2600
8368
+ 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."
8369
  msgstr ""
8370
 
8371
+ #: languages/vue.php:2603
8372
+ msgid "Affiliate Link Tracking"
 
8373
  msgstr ""
8374
 
8375
+ #: languages/vue.php:2606
8376
+ msgid "Who Can See Reports"
8377
  msgstr ""
8378
 
8379
+ #: languages/vue.php:2609
8380
+ msgid "These user roles will be able to access MonsterInsights' reports in the WordPress admin area."
8381
  msgstr ""
8382
 
8383
+ #: languages/vue.php:2612
8384
+ msgid "Save and continue"
8385
+ msgstr ""
8386
+
8387
+ #: languages/vue.php:2615
8388
+ msgid "Events Tracking is enabled the moment you set up MonsterInsights"
8389
+ msgstr ""
8390
+
8391
+ #: languages/vue.php:2618
8392
+ msgid "Enhanced Link Attribution is enabled the moment you set up MonsterInsights"
8393
+ msgstr ""
8394
+
8395
+ #: languages/vue.php:2621
8396
+ msgid "+ Add Role"
8397
+ msgstr ""
8398
+
8399
+ #: languages/vue.php:2624
8400
+ msgid "Connect MonsterInsights to Your Website"
8401
+ msgstr ""
8402
+
8403
+ #: languages/vue.php:2627
8404
+ msgid "MonsterInsights connects Google Analytics to WordPress and shows you stats that matter."
8405
+ msgstr ""
8406
+
8407
+ #: languages/vue.php:2630
8408
+ msgid "Whoops, something went wrong and we weren't able to connect to MonsterInsights. Please enter your Google UA code manually."
8409
+ msgstr ""
8410
+
8411
+ #: languages/vue.php:2633
8412
+ msgid "Save and Continue"
8413
+ msgstr ""
8414
+
8415
+ #: languages/vue.php:2636
8416
+ msgid "UA code can't be empty"
8417
+ msgstr ""
8418
+
8419
+ #: languages/vue.php:2639
8420
+ msgid "Saving UA code..."
8421
  msgstr ""
8422
 
8423
  #: languages/vue.php:2642
8424
+ msgid "Allow usage tracking"
8425
  msgstr ""
8426
 
8427
  #: languages/vue.php:2645
8428
+ 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."
8429
  msgstr ""
8430
 
8431
  #: languages/vue.php:2648
8432
+ msgid "Install All-in-One SEO"
8433
  msgstr ""
8434
 
8435
  #: languages/vue.php:2651
8436
+ msgid "Improve Your Website Search Rankings With All-In-One SEO"
8437
  msgstr ""
8438
 
8439
  #: languages/vue.php:2654
8440
+ msgid "If you’re not using a plugin to optimize your website’s SEO you’re missing out on valuable organic traffic!"
8441
  msgstr ""
8442
 
8443
  #: languages/vue.php:2657
8444
+ msgid "Finally, a WordPress SEO Plugin that’s Easy and Powerful!"
8445
  msgstr ""
8446
 
8447
  #: languages/vue.php:2660
8448
+ msgid "AIOSEO makes it easy to set up the proper SEO foundations in less than 10 minutes."
8449
  msgstr ""
8450
 
8451
  #: languages/vue.php:2663
8452
+ msgid "Local SEO"
8453
  msgstr ""
8454
 
8455
  #: languages/vue.php:2666
8456
+ msgid "All in One SEO gives you all the tools you need to improve your local SEO and rank higher on Google Maps."
8457
  msgstr ""
8458
 
8459
  #: languages/vue.php:2669
8460
+ msgid "WooCommerce SEO"
8461
  msgstr ""
8462
 
8463
  #: languages/vue.php:2672
8464
+ msgid "Advanced eCommerce SEO support for WooCommerce to optimize product pages, product categories, and more."
8465
  msgstr ""
8466
 
8467
  #: languages/vue.php:2675
8468
+ msgid "SEO Custom User Roles"
8469
  msgstr ""
8470
 
8471
  #: languages/vue.php:2678
8472
+ msgid "SEO user roles allow you to manage access to important SEO features without handing over control of your website."
8473
  msgstr ""
8474
 
8475
  #: languages/vue.php:2681
8476
+ msgid "Google News Sitemap"
8477
  msgstr ""
8478
 
8479
  #: languages/vue.php:2684
8480
+ msgid "Get higher rankings and unlock more traffic by submitting your latest news articles to Google News."
8481
  msgstr ""
8482
 
8483
  #: languages/vue.php:2687
8484
+ msgid "Smart XML Sitemaps"
8485
  msgstr ""
8486
 
8487
  #: languages/vue.php:2690
8488
+ msgid "Automatically generate a WordPress XML sitemap and notify all search engines of any updates."
8489
  msgstr ""
8490
 
8491
  #: languages/vue.php:2693
8492
+ msgid "Social Media Integration"
8493
  msgstr ""
8494
 
8495
  #: languages/vue.php:2696
8496
+ msgid "Easily control how your content and thumbnails look on Facebook, Twitter, and other social media networks."
8497
  msgstr ""
8498
 
8499
  #: languages/vue.php:2699
8500
+ msgid "TruSEO On-Page Analysis"
 
 
8501
  msgstr ""
8502
 
8503
+ #: languages/vue.php:2702
8504
+ msgid "Easily add title tags, meta descriptions, keywords, and everything else you need for proper on-page SEO optimization."
8505
  msgstr ""
8506
 
8507
+ #: languages/vue.php:2705
8508
+ msgid "& Many More!"
8509
  msgstr ""
8510
 
8511
+ #: languages/vue.php:2708
8512
+ msgid "Installing. Please wait.."
8513
  msgstr ""
8514
 
8515
+ #: languages/vue.php:2711
8516
+ msgid "Install All-in-One-SEO"
 
8517
  msgstr ""
8518
 
8519
+ #: languages/vue.php:2714
8520
+ msgid "Welcome to MonsterInsights!"
8521
  msgstr ""
8522
 
8523
+ #: languages/vue.php:2717
8524
+ msgid "Let's get you set up."
8525
+ msgstr ""
8526
+
8527
+ #: languages/vue.php:2720
8528
+ msgid "Which category best describes your website?"
8529
  msgstr ""
8530
 
 
8531
  #: languages/vue.php:2723
8532
+ msgid "We will recommend the optimal settings for MonsterInsights based on your choice."
8533
  msgstr ""
8534
 
8535
  #: languages/vue.php:2726
8536
+ msgid "Business Website"
8537
  msgstr ""
8538
 
8539
+ #. Translators: Make text bold.
8540
+ #: languages/vue.php:2730
8541
+ msgid "Publisher %1$s(Blog)%2$s"
8542
  msgstr ""
8543
 
8544
+ #: languages/vue.php:2733
8545
+ msgid "Ecommerce"
8546
  msgstr ""
8547
 
8548
+ #: languages/vue.php:2736
8549
+ msgid "Caching"
8550
  msgstr ""
8551
 
8552
+ #: languages/vue.php:2739
8553
+ msgid "Enable Data Caching"
8554
  msgstr ""
8555
 
8556
+ #: languages/vue.php:2742
8557
+ msgid "Refresh Cache Every"
8558
  msgstr ""
8559
 
8560
+ #: languages/vue.php:2745
8561
+ msgid "Choose how often to refresh the cache."
8562
  msgstr ""
8563
 
8564
+ #: languages/vue.php:2748
8565
+ msgid "Enable Ajaxify"
8566
  msgstr ""
8567
 
 
8568
  #: languages/vue.php:2751
8569
+ msgid "Ajaxify Widget"
8570
  msgstr ""
8571
 
8572
+ #: languages/vue.php:2754
8573
+ msgid "Use to bypass page caching."
 
8574
  msgstr ""
8575
 
8576
+ #: languages/vue.php:2757
8577
+ msgid "Empty Cache"
8578
+ msgstr ""
8579
+
8580
+ #: languages/vue.php:2760
8581
+ msgid "Click to manually wipe the cache right now."
8582
  msgstr ""
8583
 
 
8584
  #: languages/vue.php:2763
8585
+ msgid "Popular posts cache emptied"
8586
  msgstr ""
8587
 
8588
  #: languages/vue.php:2766
8589
+ msgid "Error emptying the popular posts cache. Please try again."
8590
  msgstr ""
8591
 
8592
  #: languages/vue.php:2769
8593
+ msgid "Choose Theme"
8594
  msgstr ""
8595
 
8596
  #: languages/vue.php:2772
8597
+ msgid "Widget Styling"
8598
  msgstr ""
8599
 
8600
  #: languages/vue.php:2775
8601
+ msgid "Choose how you want to determine the colors, font sizes and spacing of the widget."
8602
  msgstr ""
8603
 
8604
  #: languages/vue.php:2778
8605
+ msgid "Sort By"
8606
  msgstr ""
8607
 
8608
  #: languages/vue.php:2781
8609
+ msgid "Choose how you'd like the widget to determine your popular posts."
8610
  msgstr ""
8611
 
8612
  #: languages/vue.php:2784
8613
+ msgid "Display Title"
 
 
 
 
8614
  msgstr ""
8615
 
8616
  #: languages/vue.php:2790
8617
+ msgid "Title your widget and set its display preferences."
8618
  msgstr ""
8619
 
8620
  #: languages/vue.php:2793
8621
+ msgid "Include in Post Types"
8622
  msgstr ""
8623
 
8624
  #: languages/vue.php:2796
8625
+ msgid "Exclude from specific posts"
 
 
 
 
8626
  msgstr ""
8627
 
8628
+ #. Translators: Placeholders make the text bold.
8629
+ #: languages/vue.php:2800
8630
+ msgid "Choose which Post Types the widget %1$sWILL%2$s be placed."
8631
  msgstr ""
8632
 
8633
+ #. Translators: Placeholders make the text bold.
8634
+ #: languages/vue.php:2804
8635
+ msgid "Choose from which Posts the widget %1$sWILL NOT%2$s be placed."
8636
  msgstr ""
8637
 
8638
+ #: languages/vue.php:2807
8639
+ msgid "Loading Themes"
8640
  msgstr ""
8641
 
8642
+ #. Translators: placeholders make text small.
8643
  #: languages/vue.php:2811
8644
+ msgid "Default Styles %1$s- As seen above.%2$s"
 
 
 
 
8645
  msgstr ""
8646
 
8647
+ #. Translators: placeholders make text small.
8648
+ #: languages/vue.php:2815
8649
+ msgid "No Styles %1$s- Use your own CSS.%2$s"
8650
  msgstr ""
8651
 
8652
+ #. Translators: placeholders make text small.
8653
+ #: languages/vue.php:2819
8654
+ msgid "Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s"
8655
  msgstr ""
8656
 
8657
+ #. Translators: placeholders make text small.
8658
  #: languages/vue.php:2823
8659
+ msgid "SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s"
 
 
 
 
8660
  msgstr ""
8661
 
8662
+ #. Translators: placeholders make text small.
8663
+ #: languages/vue.php:2827
8664
+ msgid "Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s"
8665
  msgstr ""
8666
 
8667
+ #: languages/vue.php:2830
8668
+ msgid "Placement"
8669
  msgstr ""
8670
 
8671
+ #: languages/vue.php:2833
8672
+ msgid "Choose how you'd like to place the widget."
8673
  msgstr ""
8674
 
8675
+ #: languages/vue.php:2836
8676
+ msgid "Insert After"
8677
  msgstr ""
8678
 
8679
+ #: languages/vue.php:2839
8680
+ msgid "Choose where in the post body the widget will be placed."
8681
  msgstr ""
8682
 
8683
+ #: languages/vue.php:2842
8684
+ msgid "Customize Design"
8685
  msgstr ""
8686
 
8687
+ #: languages/vue.php:2845
8688
+ msgid "words"
8689
  msgstr ""
8690
 
8691
+ #: languages/vue.php:2848
8692
+ msgid "Please select at least one post to display."
8693
  msgstr ""
8694
 
8695
+ #. Translators: placeholders make text small.
8696
+ #: languages/vue.php:2852
8697
+ msgid "Automatic %1$s- The widget is automatically placed inside the post body.%2$s"
8698
  msgstr ""
8699
 
8700
+ #. Translators: placeholders make text small.
8701
  #: languages/vue.php:2856
8702
+ msgid "Manual %1$s- Manually place the widget using Gutenberg blocks or using our shortcode.%2$s"
8703
  msgstr ""
8704
 
8705
  #: languages/vue.php:2859
8706
+ msgid "Facebook Instant Articles"
8707
  msgstr ""
8708
 
8709
  #: languages/vue.php:2862
8710
+ msgid "Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to MonsterInsights Pro."
8711
  msgstr ""
8712
 
8713
  #: languages/vue.php:2865
8714
+ msgid "Want to use track users visiting your AMP pages? By upgrading to MonsterInsights Pro, you can enable AMP page tracking."
8715
  msgstr ""
8716
 
8717
  #: languages/vue.php:2868
8718
+ msgid "Ads Tracking"
8719
  msgstr ""
8720
 
8721
+ #: languages/vue.php:2871
8722
+ msgid "Add Ads tracking to see who's clicking on your Google Ads, so you can increase your revenue."
 
8723
  msgstr ""
8724
 
8725
+ #: languages/vue.php:2874
8726
+ msgid "2,000,000+ use AIOSEO to Improve Their Website Search Rankings"
8727
  msgstr ""
8728
 
8729
+ #: languages/vue.php:2877
8730
+ msgid "All-in-One SEO is a great product. I have been using it on all my WP sites for several years. I highly recommend it."
8731
  msgstr ""
8732
 
8733
+ #: languages/vue.php:2880
8734
+ msgid "Jack Brown"
8735
  msgstr ""
8736
 
8737
+ #: languages/vue.php:2883
8738
+ msgid "PJB Internet Marketing"
8739
  msgstr ""
8740
 
8741
+ #: languages/vue.php:2886
8742
+ msgid "I’m a professional SEO and used many tools and extensions. Regarding simplicity, individuality and configurability All in One SEO Pro is by far the best SEO plugin out there for WordPress."
8743
+ msgstr ""
8744
+
8745
+ #: languages/vue.php:2889
8746
+ msgid "Joel Steinmann"
8747
  msgstr ""
8748
 
 
8749
  #: languages/vue.php:2892
8750
+ msgid "CEO, Solergo"
8751
  msgstr ""
8752
 
8753
+ #: languages/vue.php:2895
8754
+ msgid "Recommended Addons"
 
8755
  msgstr ""
8756
 
8757
+ #: languages/vue.php:2898
8758
+ msgid "To unlock more features consider upgrading to PRO. As a valued MonsterInsights Lite user you receive 50% off, automatically applied at checkout!"
8759
  msgstr ""
8760
 
8761
+ #: languages/vue.php:2901
8762
+ msgid "Other Addons"
8763
  msgstr ""
8764
 
8765
+ #: languages/vue.php:2904
8766
+ msgid "View all MonsterInsights addons"
8767
  msgstr ""
8768
 
8769
+ #: languages/vue.php:2907
8770
+ msgid "Scroll Tracking"
 
8771
  msgstr ""
8772
 
8773
+ #: languages/vue.php:2910
8774
+ 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."
8775
  msgstr ""
8776
 
8777
+ #: languages/vue.php:2913
8778
+ msgid ""
8779
+ "The EU Compliance addon allows you to improve compliance with GDPR\n"
8780
+ " and other privacy regulations."
8781
  msgstr ""
8782
 
8783
+ #: languages/vue.php:2917
8784
+ msgid "EU Compliance"
8785
  msgstr ""
8786
 
8787
+ #: languages/vue.php:2920
8788
+ msgid "Compatibility mode"
8789
  msgstr ""
8790
 
8791
+ #: languages/vue.php:2923
8792
+ msgid "Enable _gtagTracker Compatibility"
8793
  msgstr ""
8794
 
8795
+ #. Translators: Placeholder gets replaced with default GA js function.
8796
+ #: languages/vue.php:2927
8797
+ msgid "This enables MonsterInsights to work with plugins that use %1$s and don't support %2$s"
8798
  msgstr ""
8799
 
8800
+ #. Translators: Page number of total pages. 1 & 2 make the first part of the text bold.
8801
  #: languages/vue.php:2931
8802
+ msgid "%1$sPage %3$s%2$s of %4$s"
8803
  msgstr ""
8804
 
8805
  #: languages/vue.php:2934
8806
+ #: lite/includes/popular-posts/class-popular-posts-widget-sidebar.php:257
8807
+ msgid "Theme Preview"
8808
  msgstr ""
8809
 
8810
  #: languages/vue.php:2937
8811
+ msgid "Wide"
8812
  msgstr ""
8813
 
8814
  #: languages/vue.php:2940
8815
+ msgid "Narrow"
8816
  msgstr ""
8817
 
8818
  #: languages/vue.php:2943
8819
+ msgid "Title"
8820
  msgstr ""
8821
 
8822
  #: languages/vue.php:2946
8823
+ msgid "Color"
8824
+ msgstr ""
8825
+
8826
+ #: languages/vue.php:2949
8827
+ msgid "Size"
8828
+ msgstr ""
8829
+
8830
+ #: languages/vue.php:2952
8831
+ msgid "Border"
8832
+ msgstr ""
8833
+
8834
+ #: languages/vue.php:2955
8835
+ msgid "Author/Date"
8836
+ msgstr ""
8837
+
8838
+ #: languages/vue.php:2958
8839
+ msgid "Label"
8840
+ msgstr ""
8841
+
8842
+ #: languages/vue.php:2961
8843
+ msgid "Background"
8844
+ msgstr ""
8845
+
8846
+ #: languages/vue.php:2973
8847
+ msgid "Choose which content you would like displayed in the widget."
8848
+ msgstr ""
8849
+
8850
+ #: languages/vue.php:2985
8851
+ msgid "Comments"
8852
+ msgstr ""
8853
+
8854
+ #: languages/vue.php:2991
8855
+ msgid "Choose how many posts you’d like displayed in the widget."
8856
+ msgstr ""
8857
+
8858
+ #: languages/vue.php:2994
8859
+ msgid "Popular Posts data can be fetched correctly"
8860
+ msgstr ""
8861
+
8862
+ #: languages/vue.php:2997
8863
+ 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."
8864
+ msgstr ""
8865
+
8866
+ #: languages/vue.php:3000
8867
+ msgid "Close"
8868
+ msgstr ""
8869
+
8870
+ #: languages/vue.php:3003
8871
+ msgid "Add Top 5 Posts from Google Analytics"
8872
+ msgstr ""
8873
+
8874
+ #: languages/vue.php:3006
8875
+ 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."
8876
+ msgstr ""
8877
+
8878
+ #: languages/vue.php:3009
8879
+ msgid "Test Automated Posts"
8880
+ msgstr ""
8881
+
8882
+ #. Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc.
8883
+ #: languages/vue.php:3013
8884
+ msgid "Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics."
8885
+ msgstr ""
8886
+
8887
+ #: languages/vue.php:3016
8888
+ msgid "Automated + Curated"
8889
+ msgstr ""
8890
+
8891
+ #. Translators: Placeholder adds a link to the Custom Dimensions settings.
8892
+ #: languages/vue.php:3020
8893
+ 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."
8894
+ msgstr ""
8895
+
8896
+ #. Translators: Placeholder gets replaced with current license version.
8897
+ #: languages/vue.php:3024
8898
+ msgid "Pro version is required."
8899
+ msgstr ""
8900
+
8901
+ #: languages/vue.php:3027
8902
+ msgid "Verifying Popular Posts data"
8903
+ msgstr ""
8904
+
8905
+ #: languages/vue.php:3030
8906
+ msgid "Select posts/search"
8907
+ msgstr ""
8908
+
8909
+ #: languages/vue.php:3033
8910
+ msgid "Oops! No posts found."
8911
+ msgstr ""
8912
+
8913
+ #: languages/vue.php:3036
8914
+ msgid "Search by post title"
8915
+ msgstr ""
8916
+
8917
+ #: languages/vue.php:3039
8918
+ msgid "Can't load posts."
8919
+ msgstr ""
8920
+
8921
+ #: languages/vue.php:3042
8922
+ msgid "SharedCount API Key"
8923
+ msgstr ""
8924
+
8925
+ #: languages/vue.php:3045
8926
+ msgid "Insert your sharedcount API key found in your %1$sSettings%2$s panel. After, click Start Indexing."
8927
+ msgstr ""
8928
+
8929
+ #: languages/vue.php:3048
8930
+ msgid "Start Indexing"
8931
+ msgstr ""
8932
+
8933
+ #: languages/vue.php:3051
8934
+ msgid "%1$sIndex Progress: %2$s%%.%3$s You may leave this page during indexing."
8935
+ msgstr ""
8936
+
8937
+ #: languages/vue.php:3054
8938
+ msgid "Indexing completed, counts will update automatically every day."
8939
+ msgstr ""
8940
+
8941
+ #: languages/vue.php:3057
8942
+ msgid "Sartorial taxidermy venmo you probably haven't heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu."
8943
+ msgstr ""
8944
+
8945
+ #: languages/vue.php:3060
8946
+ msgid "Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan"
8947
+ msgstr ""
8948
+
8949
+ #: languages/vue.php:3063
8950
+ msgid "Icon"
8951
+ msgstr ""
8952
+
8953
+ #. Translators: Minimum and maximum number that can be used.
8954
+ #: languages/vue.php:3067
8955
+ msgid "Please enter a value between %1$s and %2$s"
8956
+ msgstr ""
8957
+
8958
+ #. Translators: The minimum set value.
8959
+ #: languages/vue.php:3071
8960
+ msgid "Please enter a value higher than %s"
8961
+ msgstr ""
8962
+
8963
+ #. Translators: The maximum set value.
8964
+ #: languages/vue.php:3075
8965
+ msgid "Please enter a value lower than %s"
8966
+ msgstr ""
8967
+
8968
+ #: languages/vue.php:3078
8969
+ msgid "Please enter a number"
8970
+ msgstr ""
8971
+
8972
+ #: languages/vue.php:3081
8973
+ msgid "Value has to be a round number"
8974
+ msgstr ""
8975
+
8976
+ #: languages/vue.php:3084
8977
+ msgid "Export PDF Report"
8978
+ msgstr ""
8979
+
8980
+ #: languages/vue.php:3087
8981
+ msgid "You can export PDF reports only in the PRO version."
8982
+ msgstr ""
8983
+
8984
+ #: languages/vue.php:3090
8985
+ msgid "Upgrade to MonsterInsights Pro to Unlock More Actionable Insights"
8986
+ msgstr ""
8987
+
8988
+ #: languages/vue.php:3093
8989
+ 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!"
8990
+ msgstr ""
8991
+
8992
+ #: languages/vue.php:3096
8993
+ msgid "Upgrade to MonsterInsights Pro and Save 50% OFF!"
8994
+ msgstr ""
8995
+
8996
+ #. Translators: Makes text bold.
8997
+ #: languages/vue.php:3100
8998
+ msgid "Use coupon code %1$sLITEUPGRADE%2$s"
8999
+ msgstr ""
9000
+
9001
+ #. Translators: Make text green.
9002
+ #: languages/vue.php:3104
9003
+ msgid "Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s"
9004
+ msgstr ""
9005
+
9006
+ #. Translators: Placeholder adds a line break.
9007
+ #: languages/vue.php:3108
9008
+ msgid "You can customize your %sdate range only in the PRO version."
9009
+ msgstr ""
9010
+
9011
+ #: languages/vue.php:3111
9012
+ msgid "Help Us Improve"
9013
  msgstr ""
9014
 
9015
+ #: languages/vue.php:3114
9016
+ msgid "Help us better understand our users and their website needs."
9017
  msgstr ""
9018
 
9019
+ #. Translators: Adds a link to the documentation.
9020
+ #: languages/vue.php:3118
9021
+ 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"
9022
  msgstr ""
9023
 
9024
+ #: languages/vue.php:3121
9025
+ msgid "Website profile"
9026
  msgstr ""
9027
 
9028
+ #: languages/vue.php:3124
9029
+ msgid "Active profile"
9030
  msgstr ""
9031
 
9032
+ #: languages/vue.php:3127
9033
+ msgid "Skip and Keep Connection"
9034
  msgstr ""
9035
 
9036
+ #: languages/vue.php:3130
9037
+ msgid "This feature requires MonsterInsights Pro"
9038
  msgstr ""
9039
 
9040
+ #: languages/vue.php:3133
9041
+ msgid "By upgrading you will also get access to advanced eCommerce tracking, Custom Dimensions and more."
9042
  msgstr ""
9043
 
9044
+ #: languages/vue.php:3136
9045
+ msgid "Upgrade to Pro and Unlock Popular Products"
9046
  msgstr ""
9047
 
9048
+ #: languages/vue.php:3139
9049
+ msgid "View all Pro features"
9050
  msgstr ""
9051
 
9052
+ #: languages/vue.php:3142
9053
+ msgid "Days"
9054
  msgstr ""
9055
 
9056
+ #. Translators: placeholders make text small.
9057
+ #: languages/vue.php:3146
9058
+ msgid "7 days"
9059
  msgstr ""
9060
 
9061
+ #: languages/vue.php:3149
9062
+ msgid "30 days"
9063
  msgstr ""
9064
 
9065
+ #: languages/vue.php:3152
9066
+ msgid "Custom"
9067
  msgstr ""
9068
 
9069
+ #: languages/vue.php:3155
9070
+ msgid "Only Show Posts from These Categories"
9071
  msgstr ""
9072
 
9073
+ #: languages/vue.php:3158
9074
+ msgid "Choose from which categories posts will be displayed in the widget. All categories will be used if left empty."
9075
  msgstr ""
9076
 
9077
+ #: languages/vue.php:3161
9078
+ msgid "Multiple Entries"
9079
  msgstr ""
9080
 
9081
+ #: languages/vue.php:3164
9082
+ msgid "Total Number of Widgets to Show"
9083
  msgstr ""
9084
 
9085
+ #: languages/vue.php:3167
9086
+ msgid "Choose how many widgets will be placed in a single Post."
9087
  msgstr ""
9088
 
9089
+ #: languages/vue.php:3170
9090
+ msgid "Minimum Distance Between Widgets"
9091
  msgstr ""
9092
 
9093
+ #: languages/vue.php:3173
9094
+ msgid "Choose the distance between widgets."
9095
  msgstr ""
9096
 
9097
+ #: languages/vue.php:3176
9098
+ msgid "Minimum Word Count to Display Multiple Widgets"
9099
  msgstr ""
9100
 
9101
+ #: languages/vue.php:3179
9102
+ msgid "Choose the minimum word count for a Post to have multiple entries."
9103
  msgstr ""
9104
 
9105
+ #: languages/vue.php:3182
9106
+ msgid "Pro version is required"
9107
  msgstr ""
9108
 
9109
+ #. Translators: Placeholder adds a link to the Custom Dimensions settings.
9110
+ #: languages/vue.php:3186
9111
+ 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)."
9112
  msgstr ""
9113
 
9114
+ #: languages/vue.php:3189
9115
+ msgid "Unlock with %s"
9116
  msgstr ""
9117
 
9118
+ #: languages/vue.php:3192
9119
+ msgid "Automatic Placement"
9120
  msgstr ""
9121
 
9122
+ #: languages/vue.php:3195
9123
+ msgid "Display using Gutenberg Blocks"
9124
  msgstr ""
9125
 
9126
+ #: languages/vue.php:3198
9127
+ msgid "Embed Options"
9128
  msgstr ""
9129
 
9130
+ #: languages/vue.php:3201
9131
+ msgid "All Embed Options can be used in conjunction with one another."
 
9132
  msgstr ""
9133
 
9134
+ #: languages/vue.php:3205
9135
+ msgid "Using the Gutenberg Block"
9136
  msgstr ""
9137
 
9138
+ #: languages/vue.php:3208
9139
+ msgid "Using Automatic Embed"
9140
  msgstr ""
9141
 
9142
+ #: languages/vue.php:3211
9143
+ 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."
9144
  msgstr ""
9145
 
9146
+ #: languages/vue.php:3214
9147
+ 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."
9148
  msgstr ""
9149
 
9150
+ #: languages/vue.php:3217
9151
+ msgid "Learn how to insert the Popular Posts Widget using a shortcode. To style this widget use the Customize Design panel above."
9152
  msgstr ""
9153
 
9154
+ #: languages/vue.php:3220
9155
+ msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using Gutenberg"
 
9156
  msgstr ""
9157
 
9158
+ #: languages/vue.php:3224
9159
+ msgid "%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page."
 
9160
  msgstr ""
9161
 
9162
+ #: languages/vue.php:3227
9163
+ msgid "%1$sStep 2%2$s - Search for “Popular Posts”."
 
9164
  msgstr ""
9165
 
9166
+ #: languages/vue.php:3231
9167
+ msgid "%1$sStep 3%2$s - Style the widget using the Block Settings sidebar."
9168
  msgstr ""
9169
 
9170
+ #: languages/vue.php:3234
9171
+ 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."
 
9172
  msgstr ""
9173
 
9174
+ #: languages/vue.php:3237
9175
+ 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."
 
9176
  msgstr ""
9177
 
9178
+ #: languages/vue.php:3240
9179
+ msgid "%1$sStep 3%2$s - The widget options should automatically expand allowing you to customize the design."
 
9180
  msgstr ""
9181
 
9182
+ #: languages/vue.php:3243
9183
+ msgid "Display using a Shortcode"
9184
  msgstr ""
9185
 
9186
+ #: languages/vue.php:3247
9187
+ msgid "Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin."
9188
  msgstr ""
9189
 
9190
+ #: languages/vue.php:3251
9191
+ msgid "Copy Shortcode"
9192
  msgstr ""
9193
 
9194
+ #: languages/vue.php:3254
9195
+ msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using our Shortcode"
9196
  msgstr ""
9197
 
9198
+ #: languages/vue.php:3257
9199
+ msgid "Enable Automatic Placement"
9200
  msgstr ""
9201
 
9202
+ #: languages/vue.php:3260
9203
+ msgid "Display in a Sidebar"
9204
  msgstr ""
9205
 
9206
+ #: languages/vue.php:3263
9207
+ msgid "Learn how to insert the Popular Posts Widget into a Sidebar. To style this widget use the Customize Design panel above."
 
9208
  msgstr ""
9209
 
9210
+ #: languages/vue.php:3266
9211
+ msgid "Watch Video - How to Add the Popular Posts widget using Widgets"
9212
  msgstr ""
9213
 
9214
+ #: languages/vue.php:3269
9215
  msgid "Display Method"
9216
  msgstr ""
9217
 
9218
+ #: languages/vue.php:3272
9219
  msgid "There are two ways to manual include the widget in your posts."
9220
  msgstr ""
9221
 
9222
+ #: languages/vue.php:3275
9223
  msgid "Using the Shortcode"
9224
  msgstr ""
9225
 
9226
+ #: languages/vue.php:3278
9227
  msgid "Learn how to insert the widget using Gutenberg blocks."
9228
  msgstr ""
9229
 
9230
+ #: languages/vue.php:3281
9231
  msgid "Learn how to insert the widget using out Shortcode."
9232
  msgstr ""
9233
 
9234
+ #: languages/vue.php:3284
9235
  msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg"
9236
  msgstr ""
9237
 
9238
+ #: languages/vue.php:3287
9239
  msgid "%1$sStep 2%2$s - Search for “Inline Popular Posts by MonsterInsights”."
9240
  msgstr ""
9241
 
9242
+ #: languages/vue.php:3290
9243
  msgid "Shortcode"
9244
  msgstr ""
9245
 
9246
+ #: languages/vue.php:3293
9247
  msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using our Shortcode"
9248
  msgstr ""
9249
 
9250
+ #: languages/vue.php:3296
9251
+ msgid "Facebook Instant Articleasdasdasds"
9252
  msgstr ""
9253
 
9254
+ #: languages/vue.php:3299
9255
+ msgid "Media"
9256
  msgstr ""
9257
 
9258
+ #: languages/vue.php:3302
9259
+ msgid "Track how your users interact with videos on your website. Upgrade to MonsterInsights Pro."
9260
  msgstr ""
9261
 
9262
+ #: languages/vue.php:3305
9263
+ msgid "Improve Your Conversion Rate With Insights Into Which Content Works Best."
9264
  msgstr ""
9265
 
9266
+ #: languages/vue.php:3308
9267
+ msgid "Top Affilliate Links"
9268
  msgstr ""
9269
 
9270
+ #: languages/vue.php:3311
9271
+ msgid "Scroll Depth"
9272
  msgstr ""
9273
 
9274
+ #: languages/vue.php:3314
9275
+ msgid "Increase Sales and Make More Money With Enhanced eCommerce Insights."
9276
  msgstr ""
9277
 
9278
+ #: languages/vue.php:3317
9279
+ msgid "10+ eCommerce Integrations"
9280
  msgstr ""
9281
 
9282
+ #: languages/vue.php:3320
9283
+ msgid "Average Order Value"
 
9284
  msgstr ""
9285
 
9286
+ #: languages/vue.php:3323
9287
+ msgid "Total Revenue"
 
9288
  msgstr ""
9289
 
9290
+ #: languages/vue.php:3326
9291
+ msgid "Number of Transactions"
9292
  msgstr ""
9293
 
9294
+ #: languages/vue.php:3329
9295
+ msgid "Increase Engagement and Unlock New Insights About Your Site."
9296
  msgstr ""
9297
 
9298
+ #: languages/vue.php:3332
9299
+ msgid "User ID Tracking"
9300
  msgstr ""
9301
 
9302
+ #: languages/vue.php:3335
9303
+ msgid "Post Types"
9304
  msgstr ""
9305
 
9306
+ #: languages/vue.php:3338
9307
+ msgid "Tag Tracking"
9308
  msgstr ""
9309
 
9310
+ #: languages/vue.php:3341
9311
+ msgid "Categories"
9312
  msgstr ""
9313
 
9314
+ #: languages/vue.php:3344
9315
+ msgid "SEO Scores"
9316
  msgstr ""
9317
 
9318
+ #: languages/vue.php:3347
9319
+ msgid "Publish Times"
9320
  msgstr ""
9321
 
9322
+ #: languages/vue.php:3350
9323
+ msgid "Focus Keywords"
9324
  msgstr ""
9325
 
9326
+ #: languages/vue.php:3353
9327
+ msgid "Track Every Type of Web Form and Gain Visibility Into Your Customer Journey."
9328
  msgstr ""
9329
 
9330
+ #: languages/vue.php:3356
9331
+ msgid "Conversion Counts"
9332
  msgstr ""
9333
 
9334
+ #: languages/vue.php:3359
9335
+ msgid "Impression Counts"
9336
  msgstr ""
9337
 
9338
+ #: languages/vue.php:3362
9339
+ msgid "Conversion Rates"
9340
  msgstr ""
9341
 
9342
+ #: languages/vue.php:3365
9343
+ msgid "See Exactly How Visitors Find Your Website From Google."
9344
  msgstr ""
9345
 
9346
+ #: languages/vue.php:3368
9347
+ msgid "Top Google Search Terms"
9348
  msgstr ""
9349
 
9350
+ #: languages/vue.php:3371
9351
+ msgid "Number of Clicks"
9352
  msgstr ""
9353
 
9354
+ #: languages/vue.php:3374
9355
+ msgid "Click-through Ratio"
9356
  msgstr ""
9357
 
9358
+ #: languages/vue.php:3377
9359
+ msgid "Average Results Position"
9360
  msgstr ""
9361
 
9362
+ #: languages/vue.php:3380
9363
+ msgid "Realtime Report"
9364
  msgstr ""
9365
 
9366
+ #: languages/vue.php:3383
9367
+ msgid "See Who And What is Happening on Your Website in Realtime."
9368
  msgstr ""
9369
 
9370
+ #: languages/vue.php:3386
9371
+ msgid "Top Page Views"
9372
  msgstr ""
9373
 
9374
+ #: languages/vue.php:3389
9375
+ msgid "Current Active Users"
9376
  msgstr ""
9377
 
9378
+ #: languages/vue.php:3392
9379
+ msgid "Top Referral Sources"
9380
  msgstr ""
9381
 
9382
+ #: languages/vue.php:3395
9383
+ msgid "Top Countries"
9384
  msgstr ""
9385
 
9386
+ #: languages/vue.php:3398
9387
+ msgid "Top Cities"
9388
  msgstr ""
9389
 
9390
+ #: languages/vue.php:3401
9391
+ msgid "Improve Your User Experience and Improve Search Engine Rankings."
9392
  msgstr ""
9393
 
9394
+ #: languages/vue.php:3404
9395
+ msgid "Overall Site Speed Score"
9396
  msgstr ""
9397
 
9398
+ #: languages/vue.php:3407
9399
+ msgid "Server Response Times"
9400
  msgstr ""
9401
 
9402
+ #: languages/vue.php:3410
9403
+ msgid "Mobile and Desktop Scores"
9404
  msgstr ""
9405
 
9406
+ #: languages/vue.php:3413
9407
+ msgid "First Contentful Paint"
9408
  msgstr ""
9409
 
9410
+ #: languages/vue.php:3416
9411
+ msgid "Automatic Recommendations"
9412
  msgstr ""
9413
 
9414
+ #: languages/vue.php:3419
9415
+ msgid "Total Blocking Time"
9416
  msgstr ""
9417
 
9418
+ #: languages/vue.php:3422
9419
+ msgid "On-Demand Audits"
9420
  msgstr ""
9421
 
9422
+ #: languages/vue.php:3425
9423
+ msgid "Time to Interactive"
9424
  msgstr ""
9425
 
9426
+ #: languages/vue.php:3428
9427
+ msgid "2021 Year in Review"
9428
  msgstr ""
9429
 
9430
+ #: languages/vue.php:3431
9431
+ msgid "Realtime"
9432
  msgstr ""
9433
 
9434
+ #. Translators: Placeholders are used for making text bold and adding a link.
9435
+ #: languages/vue.php:3435
9436
+ msgid "%1$sYou're using %2$s Lite%3$s. To unlock all reports, consider %4$supgrading to Pro%5$s."
9437
  msgstr ""
9438
 
9439
+ #: languages/vue.php:3438
9440
+ msgid "Featured"
9441
  msgstr ""
9442
 
9443
+ #: languages/vue.php:3441
9444
+ msgid "Traffic"
9445
  msgstr ""
9446
 
9447
+ #: languages/vue.php:3444
9448
+ msgid "Revenue"
9449
  msgstr ""
9450
 
9451
+ #: languages/vue.php:3447
9452
+ msgid "Guides & Resources"
 
9453
  msgstr ""
9454
 
9455
+ #: languages/vue.php:3450
9456
+ msgid "Upgrade and Unlock"
9457
  msgstr ""
9458
 
9459
+ #: languages/vue.php:3453
9460
+ msgid "What’s in the %1$s?"
9461
  msgstr ""
9462
 
9463
+ #: languages/vue.php:3456
9464
+ msgid "%1$sPlus%2$s, upgrading to Pro will unlock %1$sall%2$s advanced reports, tracking, and integrations. %3$sLearn more about Pro%4$s"
9465
  msgstr ""
9466
 
9467
+ #: languages/vue.php:3459
9468
+ msgid "Your 2021 Year in Review is still calculating. Please check back later to see how your website performed last year."
9469
  msgstr ""
9470
 
9471
+ #: languages/vue.php:3462
9472
+ msgid "Your 2021 Analytics Report"
9473
  msgstr ""
9474
 
9475
+ #: languages/vue.php:3468
9476
+ msgid "January 1, 2021 - December 31, 2021"
9477
  msgstr ""
9478
 
9479
+ #: languages/vue.php:3471
9480
+ msgid "A Tip for 2022"
9481
  msgstr ""
9482
 
9483
+ #: languages/vue.php:3474
9484
+ msgid "A Tip For 2022"
9485
+ msgstr ""
9486
+
9487
+ #: languages/vue.php:3477
9488
+ msgid "Here's to an amazing 2022!"
9489
+ msgstr ""
9490
+
9491
+ #: languages/vue.php:3480
9492
+ msgid "Try our other popular WordPress plugins to grow your website in 2022."
9493
+ msgstr ""
9494
+
9495
+ #: languages/vue.php:3483
9496
+ msgid "Become a WordPress expert in 2022. Join our amazing communities and take your website to the next level."
9497
+ msgstr ""
9498
+
9499
+ #: languages/vue.php:3486
9500
+ msgid "Copyright MonsterInsights, 2022"
9501
+ msgstr ""
9502
+
9503
+ #. Translators: Number of minutes spent on site.
9504
+ #: languages/vue.php:3490
9505
+ msgid "Each visitor spent an average of %s minutes on your website in 2021."
9506
  msgstr ""
9507
 
9508
+ #: languages/vue.php:3493
9509
  msgid "RafflePress"
9510
  msgstr ""
9511
 
9512
+ #: languages/vue.php:3496
9513
  msgid "Launch giveaways and raffle campaigns to grow your email lists, increase traffic, and get more social media followers."
9514
  msgstr ""
9515
 
9516
+ #: languages/vue.php:3499
9517
  msgid "Constant Contact"
9518
  msgstr ""
9519
 
9520
+ #: languages/vue.php:3502
9521
  msgid "Create amazing email marketing campaigns with drag and drop simplicity. Exclusive Offer: Save 20%."
9522
  msgstr ""
9523
 
9524
+ #: languages/vue.php:3505
9525
  msgid "SEMRUSH"
9526
  msgstr ""
9527
 
9528
+ #: languages/vue.php:3508
9529
  msgid "Perform SEO and content marketing research, track keywords, and much more. Special Offer: First 30 Days Free."
9530
  msgstr ""
9531
 
9532
+ #: languages/vue.php:3511
9533
  msgid "Engagement Tools"
9534
  msgstr ""
9535
 
9536
+ #: languages/vue.php:3514
9537
  msgid "WPForms"
9538
  msgstr ""
9539
 
9540
+ #: languages/vue.php:3517
9541
  msgid "The world’s most popular WordPress form builder, trusted by over 5 million websites. Easily build contact forms, payment forms, and more."
9542
  msgstr ""
9543
 
9544
+ #: languages/vue.php:3520
9545
  msgid "OptinMonster"
9546
  msgstr ""
9547
 
9548
+ #: languages/vue.php:3523
9549
  msgid "Convert and monetize more of your website traffic with engaging pop-up and gamified tools. Great for all types of websites."
9550
  msgstr ""
9551
 
9552
+ #: languages/vue.php:3526
9553
  msgid "Smash Balloon - Facebook"
9554
  msgstr ""
9555
 
9556
+ #: languages/vue.php:3529
9557
  msgid "Smash Balloon - Instagram"
9558
  msgstr ""
9559
 
9560
+ #: languages/vue.php:3532
9561
  msgid "Quickly add social media feeds from Facebook, Instagram, Twitter, and others to your website, with no coding needed."
9562
  msgstr ""
9563
 
9564
+ #: languages/vue.php:3535
9565
  msgid "Popular Posts by MonsterInsights"
9566
  msgstr ""
9567
 
9568
+ #: languages/vue.php:3538
9569
  msgid "Increase your visitor engagement by automatically embedding popular and related content from your website."
9570
  msgstr ""
9571
 
9572
+ #: languages/vue.php:3541
9573
  msgid "Popular Products by MonsterInsights"
9574
  msgstr ""
9575
 
9576
+ #: languages/vue.php:3544
9577
  msgid "Automatically show related products to increase conversion rates and increase cart sizes on your eCommerce website."
9578
  msgstr ""
9579
 
9580
+ #: languages/vue.php:3547
9581
  msgid "Revenue Tools"
9582
  msgstr ""
9583
 
9584
+ #: languages/vue.php:3550
9585
  msgid "SeedProd"
9586
  msgstr ""
9587
 
9588
+ #: languages/vue.php:3553
9589
  msgid "Use the best drag-and-drop landing page builder for WordPress to instantly build coming soon pages, sales pages, opt-in pages, webinar pages, maintenance pages, and more. Includes 100+ free templates."
9590
  msgstr ""
9591
 
9592
+ #: languages/vue.php:3556
9593
  msgid "Featured Tools"
9594
  msgstr ""
9595
 
9596
+ #: languages/vue.php:3559
9597
  msgid "Easy Affiliate"
9598
  msgstr ""
9599
 
9600
+ #: languages/vue.php:3562
9601
  msgid "Launch, grow, and manage an affiliate program, all right from your WordPress dashboard. Works automatically with MonsterInsights."
9602
  msgstr ""
9603
 
9604
+ #: languages/vue.php:3565
9605
  msgid "SearchWP"
9606
  msgstr ""
9607
 
9608
+ #: languages/vue.php:3568
9609
  msgid "Unlock better search results for your website. Perfect for any information or eCommerce store to help users find exactly what content and products they’re looking for."
9610
  msgstr ""
9611
 
9612
+ #: languages/vue.php:3571
9613
  msgid "Easily sell digital products like ebooks, plugins, and courses with WordPress. Built-in payment processing, coupons, shopping cart, detailed reporting, and more."
9614
  msgstr ""
9615
 
9616
+ #: languages/vue.php:3574
9617
  msgid "Create a membership website. Works automatically with MonsterInsights, no coding needed."
9618
  msgstr ""
9619
 
9620
+ #: languages/vue.php:3577
9621
  msgid "Thirsty Affiliates"
9622
  msgstr ""
9623
 
9624
+ #: languages/vue.php:3580
9625
  msgid "Manage all your affiliate links with features designed to help make bloggers more money."
9626
  msgstr ""
9627
 
9628
+ #: languages/vue.php:3583
9629
  msgid "Upgrade to unlock advanced reporting and features designed to help you get more traffic and make more money from your website. Special Offer: Save 50% today."
9630
  msgstr ""
9631
 
9632
+ #: languages/vue.php:3586
9633
  msgid "Advanced Coupons"
9634
  msgstr ""
9635
 
9636
+ #: languages/vue.php:3589
9637
  msgid "Create coupons, reward loyal customers, and schedule promotions for your eCommerce store."
9638
  msgstr ""
9639
 
9640
+ #: languages/vue.php:3592
9641
  msgid "PrettyLinks"
9642
  msgstr ""
9643
 
9644
+ #: languages/vue.php:3595
9645
  msgid "Automatically monetize your website content with affiliate links added automatically to your content."
9646
  msgstr ""
9647
 
9648
+ #: languages/vue.php:3598
9649
  msgid "Install Now"
9650
  msgstr ""
9651
 
9652
+ #: languages/vue.php:3601
9653
  msgid "Online Marketing Guides & Resources"
9654
  msgstr ""
9655
 
9656
+ #: languages/vue.php:3604
9657
  msgid "MonsterInsights Pro"
9658
  msgstr ""
9659
 
9660
+ #: languages/vue.php:3607
9661
  msgid "Upgrade to unlock eCommerce tracking, Custom Dimensions, Form Tracking, and much more. Special Offer: Save 50% today."
9662
  msgstr ""
9663
 
9664
+ #: languages/vue.php:3610
9665
  msgid "Traffic Tools"
9666
  msgstr ""
9667
 
9668
+ #: languages/vue.php:3613
9669
  msgid "All in One SEO (AIOSEO)"
9670
  msgstr ""
9671
 
9672
+ #: languages/vue.php:3616
9673
  msgid "The best WordPress SEO plugin that works automatically with MonsterInsights."
9674
  msgstr ""
9675
 
9676
+ #: languages/vue.php:3619
9677
  msgid "PushEngage"
9678
  msgstr ""
9679
 
9680
+ #: languages/vue.php:3622
9681
  msgid "Send push notifications to your visitors to drive more traffic and boost sales."
9682
  msgstr ""
9683
 
9684
+ #: languages/vue.php:3625
9685
+ msgid "With MonsterInsights Pro, you can easily measure individual affiliate performance inside Google Analytics, no coding needed. Track clicks, revenue, and more."
9686
+ msgstr ""
9687
+
9688
+ #: languages/vue.php:3628
9689
+ msgid "Works automatically with WooCommerce, MemberPress, and EasyDigitalDownloads."
9690
+ msgstr ""
9691
+
9692
+ #: languages/vue.php:3631
9693
+ msgid "Media Tracking"
9694
+ msgstr ""
9695
+
9696
+ #: languages/vue.php:3634
9697
  msgid "Get Started"
9698
  msgstr ""
9699
 
languages/vue.php CHANGED
@@ -7,34 +7,115 @@ $generated_i18n_strings = array(
7
  // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:97
8
  __( '2', 'google-analytics-for-wordpress' ),
9
 
10
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:293
11
- // Reference: src/plugins/monsterinsights-frontend-helper-plugin.js:13
12
  __( 'Error', 'google-analytics-for-wordpress' ),
13
 
14
- // Reference: src/plugins/monsterinsights-frontend-helper-plugin.js:14
15
  __( 'Please try again.', 'google-analytics-for-wordpress' ),
16
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
  // Reference: src/plugins/monsterinsights-wizard-helper-plugin.js:13
18
  __( 'Loading settings', 'google-analytics-for-wordpress' ),
19
 
20
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:188
21
- __( 'Refreshing Report', 'google-analytics-for-wordpress' ),
22
 
23
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:189
24
- __( 'Loading new report data...', 'google-analytics-for-wordpress' ),
 
 
 
 
 
25
 
26
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:236
27
  __( 'Unlock the Publishers Report and Focus on the Content that Matters', 'google-analytics-for-wordpress' ),
28
 
29
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:237
30
  __( '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' ),
31
 
32
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:248
33
  __( 'Unlock the Publishers Report and Focus on the Content That Matters', 'google-analytics-for-wordpress' ),
34
 
35
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:249
36
  __( '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' ),
37
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
38
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:251
39
  __( 'See Your Top Landing Pages to Improve Engagement', 'google-analytics-for-wordpress' ),
40
 
@@ -53,9 +134,6 @@ $generated_i18n_strings = array(
53
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:256
54
  __( 'See Audience Demographic Report ( Age / Gender / Interests )', 'google-analytics-for-wordpress' ),
55
 
56
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:260
57
- __( 'Unlock the eCommerce Report and See Your Important Store Metrics', 'google-analytics-for-wordpress' ),
58
-
59
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:261
60
  __( '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' ),
61
 
@@ -83,12 +161,6 @@ $generated_i18n_strings = array(
83
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:270
84
  __( 'See How Many Sessions are Needed for a Purchase', 'google-analytics-for-wordpress' ),
85
 
86
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:274
87
- __( 'Unlock the Dimensions Report and Track Your Own Custom Data', 'google-analytics-for-wordpress' ),
88
-
89
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:275
90
- __( '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' ),
91
-
92
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:277
93
  __( 'See Which Authors Generate the Most Traffic', 'google-analytics-for-wordpress' ),
94
 
@@ -104,12 +176,6 @@ $generated_i18n_strings = array(
104
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:281
105
  __( 'See Which Focus Keyword is Performing Better in Search Engines', 'google-analytics-for-wordpress' ),
106
 
107
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:285
108
- __( 'Unlock the Forms Report and Improve Conversions', 'google-analytics-for-wordpress' ),
109
-
110
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:286
111
- __( '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' ),
112
-
113
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:288
114
  __( 'See Reports for Any Contact Form Plugin or Sign-up Form', 'google-analytics-for-wordpress' ),
115
 
@@ -119,12 +185,6 @@ $generated_i18n_strings = array(
119
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:290
120
  __( 'See Your Forms Impressions Count to Find the Best Placement', 'google-analytics-for-wordpress' ),
121
 
122
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:294
123
- __( 'Unlock the Search Console Report and See How People Find Your Website', 'google-analytics-for-wordpress' ),
124
-
125
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:295
126
- __( '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' ),
127
-
128
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:297
129
  __( 'See Your Top Google Search Terms and Optimize Content', 'google-analytics-for-wordpress' ),
130
 
@@ -137,12 +197,6 @@ $generated_i18n_strings = array(
137
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:300
138
  __( 'See The Average Results Position and Focus on what works', 'google-analytics-for-wordpress' ),
139
 
140
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:304
141
- __( 'Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time', 'google-analytics-for-wordpress' ),
142
-
143
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:305
144
- __( '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' ),
145
-
146
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:307
147
  __( 'See Your Active Visitors and Track Their Behaviour to Optimize', 'google-analytics-for-wordpress' ),
148
 
@@ -158,12 +212,6 @@ $generated_i18n_strings = array(
158
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:311
159
  __( 'Get Fresh Report Data Every 60 Seconds', 'google-analytics-for-wordpress' ),
160
 
161
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:315
162
- __( 'Unlock the Site Speed Report and Improve the Performance of Your Site', 'google-analytics-for-wordpress' ),
163
-
164
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:316
165
- __( 'See How Your Homepage Performs According to Google’s Own Criteria and See How You Can Improve to Increase Your Ranking', 'google-analytics-for-wordpress' ),
166
-
167
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:318
168
  __( 'See Your Homepage\'s Overall Performance Score', 'google-analytics-for-wordpress' ),
169
 
@@ -176,84 +224,6 @@ $generated_i18n_strings = array(
176
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:321
177
  __( 'Learn How to Improve the Core Metrics that Google Uses to Rank Your Site', 'google-analytics-for-wordpress' ),
178
 
179
- // Reference: src/plugins/monsterinsights-widget-helper-plugin.js:42
180
- __( 'Today', 'google-analytics-for-wordpress' ),
181
-
182
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:67
183
- __( 'Yesterday', 'google-analytics-for-wordpress' ),
184
-
185
- // Reference: src/plugins/monsterinsights-widget-helper-plugin.js:54
186
- __( 'Last Week', 'google-analytics-for-wordpress' ),
187
-
188
- // Reference: src/plugins/monsterinsights-widget-helper-plugin.js:60
189
- __( 'Last Month', 'google-analytics-for-wordpress' ),
190
-
191
- // Reference: src/plugins/monsterinsights-widget-helper-plugin.js:66
192
- __( 'Last 7 days', 'google-analytics-for-wordpress' ),
193
-
194
- // Reference: src/plugins/monsterinsights-widget-helper-plugin.js:72
195
- __( 'Last 30 days', 'google-analytics-for-wordpress' ),
196
-
197
- // Reference: src/plugins/monsterinsights-settings-helper-plugin.js:111
198
- __( 'Loading Settings', 'google-analytics-for-wordpress' ),
199
-
200
- // Reference: src/plugins/monsterinsights-settings-helper-plugin.js:19
201
- __( 'Saving Changes...', 'google-analytics-for-wordpress' ),
202
-
203
- // Reference: src/plugins/monsterinsights-settings-helper-plugin.js:48
204
- __( 'Settings Updated', 'google-analytics-for-wordpress' ),
205
-
206
- // Reference: src/plugins/monsterinsights-settings-helper-plugin.js:6
207
- /* Translators: Adds a link to the settings panel. */
208
- __( 'You need to %1$sconnect MonsterInsights%2$s first', 'google-analytics-for-wordpress' ),
209
-
210
- // Reference: src/plugins/monsterinsights-settings-helper-plugin.js:82
211
- __( 'Could Not Save Changes', 'google-analytics-for-wordpress' ),
212
-
213
- // Reference: src/modules/frontend/monsterinsights-frontend.vue:36
214
- __( 'Insights', 'google-analytics-for-wordpress' ),
215
-
216
- // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:129
217
- __( 'Loading new report data', 'google-analytics-for-wordpress' ),
218
-
219
- // Reference: src/components/TheAppFTPForm.vue:110
220
- __( 'Please wait...', 'google-analytics-for-wordpress' ),
221
-
222
- // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:143
223
- /* Translators: Adds an arrow icon. */
224
- __( 'Continue %s', 'google-analytics-for-wordpress' ),
225
-
226
- // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:190
227
- __( 'Increase your sales & revenue with insights. ExactMetrics answers all your top eCommerce questions using metrics like total revenue, conversion rate, average order value, top products, top referral sources and more.', 'google-analytics-for-wordpress' ),
228
-
229
- // Reference: src/plugins/monsterinsights-compatibility-plugin.js:13
230
- /* Translators: Current PHP version and recommended PHP version. */
231
- __( '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' ),
232
-
233
- // Reference: src/plugins/monsterinsights-compatibility-plugin.js:27
234
- /* Translators: Current WordPress version. */
235
- __( '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' ),
236
-
237
- // Reference: src/plugins/monsterinsights-compatibility-plugin.js:39
238
- __( 'Yikes! PHP Update Required', 'google-analytics-for-wordpress' ),
239
-
240
- // Reference: src/plugins/monsterinsights-compatibility-plugin.js:41
241
- /* Translators: Current PHP version and recommended PHP version. */
242
- __( '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' ),
243
-
244
- // Reference: src/plugins/monsterinsights-compatibility-plugin.js:45
245
- __( 'Learn more about updating PHP', 'google-analytics-for-wordpress' ),
246
-
247
- // Reference: src/plugins/monsterinsights-compatibility-plugin.js:53
248
- __( 'Yikes! WordPress Update Required', 'google-analytics-for-wordpress' ),
249
-
250
- // Reference: src/plugins/monsterinsights-compatibility-plugin.js:55
251
- /* Translators: Current WordPress version. */
252
- __( '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' ),
253
-
254
- // Reference: src/plugins/monsterinsights-compatibility-plugin.js:59
255
- __( 'Learn more about updating WordPress', 'google-analytics-for-wordpress' ),
256
-
257
  // Reference: src/modules/widget/components/WidgetReminder.vue:33
258
  /* Translators: Number of visitors. */
259
  __( 'See how %s visitors found your site!', 'google-analytics-for-wordpress' ),
@@ -265,16 +235,20 @@ $generated_i18n_strings = array(
265
  // Reference: src/modules/widget/components/WidgetReminder.vue:36
266
  __( 'See the full analytics report!', 'google-analytics-for-wordpress' ),
267
 
268
- // Reference: src/modules/widget/widget.vue:25
269
- __( 'Overview Report', 'google-analytics-for-wordpress' ),
270
-
271
  // Reference: src/modules/settings/monsterinsights-site.vue:78
272
  __( 'Congratulations! ', 'google-analytics-for-wordpress' ),
273
 
274
  // Reference: src/modules/settings/monsterinsights-site.vue:79
275
  __( 'You Successfully Unlocked the most powerful Analytics plugin', 'google-analytics-for-wordpress' ),
276
 
277
- // Reference: src/modules/settings/components/SettingsFirstTImeNotice.vue:41
 
 
 
 
 
 
 
278
  __( 'Welcome to MonsterInsights', 'google-analytics-for-wordpress' ),
279
 
280
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:126
@@ -298,20 +272,20 @@ $generated_i18n_strings = array(
298
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:132
299
  __( 'See All Features', 'google-analytics-for-wordpress' ),
300
 
301
- // Reference: src/modules/frontend/components/FrontendUpsell-Lite.vue:11
302
  __( 'Upgrade to PRO', 'google-analytics-for-wordpress' ),
303
 
304
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:134
305
  __( 'per year', 'google-analytics-for-wordpress' ),
306
 
307
  // Reference: src/modules/growth-tools/monsterinsights-growth-tools.vue:206
308
- // Reference: src/modules/reports/components/reports-overview/ReportOverviewUpsellMobile-Lite.vue:22
309
  __( 'Upgrade Now', 'google-analytics-for-wordpress' ),
310
 
311
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:136
312
  __( 'Testimonials', 'google-analytics-for-wordpress' ),
313
 
314
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:62
 
315
  __( 'Universal Tracking', 'google-analytics-for-wordpress' ),
316
 
317
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:141
@@ -360,14 +334,12 @@ $generated_i18n_strings = array(
360
  __( 'Ecommerce Report', 'google-analytics-for-wordpress' ),
361
 
362
  // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:30
363
- // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:182
364
  __( 'Form Conversions', 'google-analytics-for-wordpress' ),
365
 
366
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabConversions-Lite.vue:35
367
  __( 'Custom Dimensions', 'google-analytics-for-wordpress' ),
368
 
369
  // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:29
370
- // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:184
371
  __( 'Author Tracking', 'google-analytics-for-wordpress' ),
372
 
373
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabConversions-Lite.vue:33
@@ -388,51 +360,33 @@ $generated_i18n_strings = array(
388
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:190
389
  __( 'LifterLMS', 'google-analytics-for-wordpress' ),
390
 
391
- // Reference: src/modules/reports/routes/index.js:33
392
- __( 'Publishers Report', 'google-analytics-for-wordpress' ),
393
-
394
- // Reference: src/modules/reports/routes/index.js:41
395
- __( 'eCommerce Report', 'google-analytics-for-wordpress' ),
396
-
397
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportSearchConsole-Lite.vue:26
398
- __( 'Search Console Report', 'google-analytics-for-wordpress' ),
399
-
400
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportDimensions-Lite.vue:23
401
- __( 'Dimensions Report', 'google-analytics-for-wordpress' ),
402
-
403
- // Reference: src/modules/reports/routes/index.js:65
404
- __( 'Forms Report', 'google-analytics-for-wordpress' ),
405
-
406
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:51
407
- __( 'Real-Time Report', 'google-analytics-for-wordpress' ),
408
-
409
- // Reference: src/modules/reports/routes/index.js:81
410
- __( 'Site Speed Report', 'google-analytics-for-wordpress' ),
411
-
412
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:263
413
- __( '2020 Year in Review', 'google-analytics-for-wordpress' ),
414
 
415
- // Reference: src/modules/frontend/components/FrontendNoAuth.vue:24
416
- __( 'Please Setup Website Analytics to See Audience Insights', 'google-analytics-for-wordpress' ),
 
417
 
418
- // Reference: src/modules/frontend/components/FrontendNoAuth.vue:25
419
- __( 'MonsterInsights, WordPress analytics plugin, helps you connect your website with Google Analytics, so you can see how people find and use your website. Over 3 million website owners use MonsterInsights to see the stats that matter and grow their business.', 'google-analytics-for-wordpress' ),
420
 
421
- // Reference: src/modules/frontend/components/FrontendNoAuth.vue:26
422
- __( 'Connect MonsterInsights and Setup Website Analytics', 'google-analytics-for-wordpress' ),
 
423
 
424
- // Reference: src/modules/wizard-onboarding/components/OnboardingAddon-Lite.vue:26
425
- __( 'Learn More', 'google-analytics-for-wordpress' ),
426
 
427
- // Reference: src/modules/frontend/components/FrontendPoweredBy.vue:12
428
- __( 'Powered by MonsterInsights', 'google-analytics-for-wordpress' ),
429
 
430
- // Reference: src/modules/reports/api/index.js:21
431
- /* Translators: Error status and error text. */
432
- __( 'Can\'t load report data. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
433
 
434
- // Reference: src/modules/reports/api/index.js:28
435
- __( 'Error loading report data', 'google-analytics-for-wordpress' ),
436
 
437
  // Reference: src/modules/reports/components/ReportReAuth.vue:19
438
  __( 'MonsterInsights encountered an error loading your report data', 'google-analytics-for-wordpress' ),
@@ -440,36 +394,15 @@ $generated_i18n_strings = array(
440
  // Reference: src/modules/reports/components/ReportReAuth.vue:20
441
  __( 'There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating.', 'google-analytics-for-wordpress' ),
442
 
443
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:92
444
  __( 'Reconnect MonsterInsights', 'google-analytics-for-wordpress' ),
445
 
446
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:209
447
  __( 'Re-Authenticating', 'google-analytics-for-wordpress' ),
448
 
449
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:295
450
  __( 'Ok', 'google-analytics-for-wordpress' ),
451
 
452
- // Reference: src/modules/notifications/components/monsterinsights-Notifications.vue:75
453
- __( 'Inbox', 'google-analytics-for-wordpress' ),
454
-
455
- // Reference: src/modules/notifications/components/monsterinsights-Notifications.vue:76
456
- __( 'Back to Inbox', 'google-analytics-for-wordpress' ),
457
-
458
- // Reference: src/modules/notifications/components/monsterinsights-Notifications.vue:77
459
- __( 'View Dismissed', 'google-analytics-for-wordpress' ),
460
-
461
- // Reference: src/modules/notifications/components/monsterinsights-Notifications.vue:78
462
- __( 'Notifications', 'google-analytics-for-wordpress' ),
463
-
464
- // Reference: src/modules/notifications/components/monsterinsights-Notifications.vue:79
465
- __( 'Dismiss All', 'google-analytics-for-wordpress' ),
466
-
467
- // Reference: src/modules/notifications/components/monsterinsights-Notifications.vue:80
468
- __( 'Dismissed', 'google-analytics-for-wordpress' ),
469
-
470
- // Reference: src/modules/notifications/components/monsterinsights-Notifications.vue:81
471
- __( 'No Notifications', 'google-analytics-for-wordpress' ),
472
-
473
  // Reference: src/components/TheQuickLinks.vue:31
474
  __( 'See Quick Links', 'google-analytics-for-wordpress' ),
475
 
@@ -485,28 +418,98 @@ $generated_i18n_strings = array(
485
  // Reference: src/components/TheQuickLinks.vue:78
486
  __( 'Upgrade to Pro &#187;', 'google-analytics-for-wordpress' ),
487
 
488
- // Reference: src/modules/settings/routes/site.js:103
489
- __( 'Import Export', 'google-analytics-for-wordpress' ),
490
-
491
- // Reference: src/modules/settings/routes/site.js:111
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
492
  __( 'PrettyLinks Integration', 'google-analytics-for-wordpress' ),
493
 
494
- // Reference: src/modules/settings/routes/site.js:125
 
495
  __( 'About Us', 'google-analytics-for-wordpress' ),
496
 
497
- // Reference: src/modules/settings/routes/site.js:133
 
498
  __( 'Getting Started', 'google-analytics-for-wordpress' ),
499
 
500
- // Reference: src/modules/settings/routes/site.js:142
 
501
  __( 'Lite vs Pro', 'google-analytics-for-wordpress' ),
502
 
503
- // Reference: src/modules/settings/routes/site.js:163
504
  __( 'Inline Popular Posts', 'google-analytics-for-wordpress' ),
505
 
506
- // Reference: src/modules/settings/routes/site.js:171
507
  __( 'Popular Posts Widget', 'google-analytics-for-wordpress' ),
508
 
509
- // Reference: src/modules/settings/routes/site.js:180
510
  __( 'Popular Products', 'google-analytics-for-wordpress' ),
511
 
512
  // Reference: src/modules/settings/routes/site.js:189
@@ -515,94 +518,112 @@ $generated_i18n_strings = array(
515
  // Reference: src/modules/settings/routes/site.js:200
516
  __( 'Sub menu item for WooCommerce Analytics', 'google-analytics-for-wordpress' ),
517
 
518
- // Reference: src/modules/settings/routes/site.js:38
519
  __( 'General', 'google-analytics-for-wordpress' ),
520
 
521
- // Reference: src/modules/settings/routes/site.js:46
522
  __( 'Engagement', 'google-analytics-for-wordpress' ),
523
 
524
- // Reference: src/modules/settings/routes/site.js:54
 
525
  __( 'eCommerce', 'google-analytics-for-wordpress' ),
526
 
527
- // Reference: src/modules/settings/routes/site.js:62
528
  __( 'Publisher', 'google-analytics-for-wordpress' ),
529
 
530
- // Reference: src/modules/settings/routes/site.js:70
531
  __( 'Conversions', 'google-analytics-for-wordpress' ),
532
 
533
- // Reference: src/modules/settings/routes/site.js:78
534
  __( 'Advanced', 'google-analytics-for-wordpress' ),
535
 
536
- // Reference: src/modules/settings/routes/site.js:95
537
  __( 'URL Builder', 'google-analytics-for-wordpress' ),
538
 
539
- // Reference: src/modules/widget/components/WidgetFooter.vue:19
540
- /* Translators: Placeholder is replaced with WPForms. */
541
- __( 'Recommended Plugin: %s', 'google-analytics-for-wordpress' ),
542
 
543
- // Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:42
544
- __( 'Install', 'google-analytics-for-wordpress' ),
545
 
546
- // Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:38
547
- __( 'Activate', 'google-analytics-for-wordpress' ),
548
 
549
- // Reference: src/modules/widget/components/monsterinsights-WidgetSettings-Lite.vue:19
550
- /* Translators: Number of days in interval. */
551
- __( 'Last %s days', 'google-analytics-for-wordpress' ),
552
 
553
- // Reference: src/modules/settings/components/SettingsFirstTImeNotice.vue:40
554
- __( 'View Reports', 'google-analytics-for-wordpress' ),
555
 
556
- // Reference: src/modules/settings/components/SettingsFirstTImeNotice.vue:42
557
- __( 'Congratulations!', 'google-analytics-for-wordpress' ),
558
 
559
- // Reference: src/modules/settings/components/SettingsFirstTImeNotice.vue:44
560
- /* Translators: Add link to YouTube video and Onboarding Wizard. */
561
- __( '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' ),
562
 
563
- // Reference: src/modules/settings/components/SettingsFirstTImeNotice.vue:44
564
- /* Translators: Add link to YouTube video and Onboarding Wizard. */
565
- __( 'Onboarding Wizard', 'google-analytics-for-wordpress' ),
566
 
567
- // Reference: src/modules/settings/components/SettingsFirstTImeNotice.vue:45
568
- __( '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' ),
 
569
 
570
- // Reference: src/modules/license/store/actions.js:61
571
- /* Translators: Adds a link to the license renewal. */
572
- __( 'Your license key for MonsterInsights has expired. %1$sPlease click here to renew your license key.%2$s', 'google-analytics-for-wordpress' ),
573
 
574
- // Reference: src/modules/license/store/actions.js:71
575
- __( 'Your license key for MonsterInsights has been disabled. Please use a different key.', 'google-analytics-for-wordpress' ),
576
 
577
- // Reference: src/modules/license/store/actions.js:81
578
- __( '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' ),
579
 
580
- // Reference: src/modules/settings/components/SettingsButtonSave.vue:49
581
- __( 'Save Changes', 'google-analytics-for-wordpress' ),
582
 
583
- // Reference: src/modules/addons/store/actions.js:33
584
- /* Translators: Adds a link to documentation. */
585
- __( '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' ),
586
 
587
- // Reference: src/modules/addons/store/actions.js:36
588
- /* Translators: Adds link to activate/install plugin and documentation. */
589
- __( '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' ),
590
 
591
- // Reference: src/modules/addons/store/actions.js:51
592
- /* Translators: Adds a link to documentation. */
593
- __( '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' ),
594
 
595
- // Reference: src/modules/addons/store/actions.js:54
596
- /* Translators: Adds link to activate/install plugin and documentation. */
597
- __( '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' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
598
 
599
- // Reference: src/modules/widget/store/index.js:103
 
 
 
 
600
  __( 'Time to Purchase', 'google-analytics-for-wordpress' ),
601
 
602
  // Reference: src/modules/widget/store/index.js:104
603
  __( 'This list shows how many days from first visit it took users to purchase products from your site.', 'google-analytics-for-wordpress' ),
604
 
605
- // Reference: src/modules/widget/store/index.js:111
 
606
  __( 'Sessions to Purchase', 'google-analytics-for-wordpress' ),
607
 
608
  // Reference: src/modules/widget/store/index.js:112
@@ -638,19 +659,19 @@ $generated_i18n_strings = array(
638
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:281
639
  __( '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' ),
640
 
641
- // Reference: src/modules/widget/store/index.js:41
642
  __( 'Top Landing Pages', 'google-analytics-for-wordpress' ),
643
 
644
  // Reference: src/modules/widget/store/index.js:42
645
  __( 'This list shows the top pages users first land on when visiting your website.', 'google-analytics-for-wordpress' ),
646
 
647
- // Reference: src/modules/widget/store/index.js:48
648
  __( 'Top Exit Pages', 'google-analytics-for-wordpress' ),
649
 
650
  // Reference: src/modules/widget/store/index.js:49
651
  __( 'This list shows the top pages users exit your website from.', 'google-analytics-for-wordpress' ),
652
 
653
- // Reference: src/modules/widget/store/index.js:56
654
  __( 'Top Outbound Links', 'google-analytics-for-wordpress' ),
655
 
656
  // Reference: src/modules/widget/store/index.js:57
@@ -662,22 +683,19 @@ $generated_i18n_strings = array(
662
  // Reference: src/modules/widget/store/index.js:64
663
  __( 'This list shows the top affiliate links your visitors clicked on.', 'google-analytics-for-wordpress' ),
664
 
665
- // Reference: src/modules/widget/store/index.js:70
666
  __( 'Top Download Links', 'google-analytics-for-wordpress' ),
667
 
668
  // Reference: src/modules/widget/store/index.js:71
669
  __( 'This list shows the download links your visitors clicked the most.', 'google-analytics-for-wordpress' ),
670
 
671
- // Reference: src/modules/widget/store/index.js:77
672
- __( 'Overview', 'google-analytics-for-wordpress' ),
673
-
674
- // Reference: src/modules/widget/store/index.js:83
675
  __( 'Top Products', 'google-analytics-for-wordpress' ),
676
 
677
  // Reference: src/modules/widget/store/index.js:84
678
  __( 'This list shows the top selling products on your website.', 'google-analytics-for-wordpress' ),
679
 
680
- // Reference: src/modules/widget/store/index.js:90
681
  __( 'Top Conversion Sources', 'google-analytics-for-wordpress' ),
682
 
683
  // Reference: src/modules/widget/store/index.js:91
@@ -686,491 +704,624 @@ $generated_i18n_strings = array(
686
  // Reference: src/modules/widget/store/index.js:97
687
  __( 'Total Add/Remove', 'google-analytics-for-wordpress' ),
688
 
689
- // Reference: src/modules/reports/components/reports/monsterinsights-SiteSpeed-Lite.vue:23
690
- __( 'Site Speed', 'google-analytics-for-wordpress' ),
 
691
 
692
- // Reference: src/modules/addons/components/AddonsNavigation.vue:18
693
- __( 'MonsterInsights Addons', 'google-analytics-for-wordpress' ),
694
 
695
- // Reference: src/modules/addons/components/AddonsNavigation.vue:19
696
- __( 'Search Addons', 'google-analytics-for-wordpress' ),
697
 
698
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportPublishers-Lite.vue:25
699
- __( 'Publishers', 'google-analytics-for-wordpress' ),
 
700
 
701
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportDimensions-Lite.vue:22
702
- __( 'Dimensions', 'google-analytics-for-wordpress' ),
 
703
 
704
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:52
705
- __( 'Right Now', 'google-analytics-for-wordpress' ),
 
706
 
707
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:53
708
- __( 'Active users on site', 'google-analytics-for-wordpress' ),
 
709
 
710
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:54
711
- __( 'The real-time graph of visitors over time is not currently available for this site. Please try again later.', 'google-analytics-for-wordpress' ),
712
 
713
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:55
714
- __( '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' ),
715
 
716
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:56
717
- __( 'The real-time report automatically updates approximately every 60 seconds.', 'google-analytics-for-wordpress' ),
718
 
719
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:58
720
- /* Translators: Number of seconds that have passed since the report was refreshed. */
721
- __( 'The real-time report was last updated %s seconds ago.', 'google-analytics-for-wordpress' ),
722
 
723
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:59
724
- __( 'The latest data will be automatically shown on this page when it becomes available.', 'google-analytics-for-wordpress' ),
725
 
726
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:60
727
- __( 'There is no need to refresh the browser (doing so won\'t have any effect).', 'google-analytics-for-wordpress' ),
728
 
729
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:61
730
- __( 'Pageviews Per Minute', 'google-analytics-for-wordpress' ),
731
 
732
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:262
733
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:63
734
- /* Translators: Number of unique pageviews. */
735
- __( 'Unique %s Pageviews', 'google-analytics-for-wordpress' ),
736
 
737
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:64
738
- __( 'Top Pages', 'google-analytics-for-wordpress' ),
739
 
740
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:65
741
- __( 'No pageviews currently.', 'google-analytics-for-wordpress' ),
742
 
743
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:67
744
- __( 'Page', 'google-analytics-for-wordpress' ),
745
 
746
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:68
747
- __( 'Pageview Count', 'google-analytics-for-wordpress' ),
748
 
749
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:69
750
- __( 'Percent of Total', 'google-analytics-for-wordpress' ),
751
 
752
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:72
753
- __( 'This is the number of active users currently on your site.', 'google-analytics-for-wordpress' ),
 
754
 
755
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:73
756
- __( 'This graph shows the number of pageviews for each of the last 30 minutes.', 'google-analytics-for-wordpress' ),
757
 
758
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:74
759
- __( 'This list shows the top pages users are currently viewing on your site.', 'google-analytics-for-wordpress' ),
760
 
761
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:75
762
- __( 'View All Real-Time Pageviews', 'google-analytics-for-wordpress' ),
763
 
764
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:76
765
- __( 'View All Real-Time Traffic Sources', 'google-analytics-for-wordpress' ),
766
 
767
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:77
768
- __( 'View All Real-Time Traffic by Country', 'google-analytics-for-wordpress' ),
769
 
770
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:78
771
- __( 'View All Real-Time Traffic by City', 'google-analytics-for-wordpress' ),
772
 
773
- // Reference: src/modules/reports/store/actions.js:132
774
- __( 'Installing Addon', 'google-analytics-for-wordpress' ),
775
 
776
- // Reference: src/modules/reports/store/actions.js:155
777
- __( 'Activating Addon', 'google-analytics-for-wordpress' ),
778
 
779
- // Reference: src/modules/reports/store/actions.js:170
780
- __( 'Addon Activated', 'google-analytics-for-wordpress' ),
781
 
782
- // Reference: src/modules/reports/store/actions.js:171
783
- __( 'Loading report data', 'google-analytics-for-wordpress' ),
784
 
785
- // Reference: src/modules/reports/store/actions.js:188
786
- __( 'Please activate manually', 'google-analytics-for-wordpress' ),
 
787
 
788
- // Reference: src/modules/reports/store/actions.js:191
789
- /* Translators: Adds the error status and status text. */
790
- __( 'Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
 
791
 
792
- // Reference: src/modules/reports/store/actions.js:197
793
- __( 'Error Activating Addon', 'google-analytics-for-wordpress' ),
794
 
795
- // Reference: src/modules/reports/store/actions.js:203
796
- __( 'View Addons', 'google-analytics-for-wordpress' ),
797
 
798
- // Reference: src/modules/notifications/components/Notification.vue:34
799
- // Reference: src/modules/seo/components/aioseo.vue:246
800
- __( 'Dismiss', 'google-analytics-for-wordpress' ),
801
 
802
- // Reference: src/modules/reports/store/actions.js:211
803
- __( 'Redirecting', 'google-analytics-for-wordpress' ),
804
 
805
- // Reference: src/modules/reports/store/actions.js:212
806
- __( 'Please wait', 'google-analytics-for-wordpress' ),
807
 
808
- // Reference: src/modules/reports/store/actions.js:52
809
- __( 'activate', 'google-analytics-for-wordpress' ),
810
 
811
- // Reference: src/modules/reports/store/actions.js:52
812
- __( 'install', 'google-analytics-for-wordpress' ),
813
 
814
- // Reference: src/modules/reports/store/actions.js:56
815
- __( 'Visit addons page', 'google-analytics-for-wordpress' ),
816
 
817
- // Reference: src/modules/reports/store/actions.js:64
818
- __( 'Report Unavailable', 'google-analytics-for-wordpress' ),
819
 
820
- // Reference: src/modules/reports/store/actions.js:71
821
- /* Translators: Install/Activate the addon. */
822
- __( '%s Addon', 'google-analytics-for-wordpress' ),
823
 
824
- // Reference: src/modules/reports/store/actions.js:90
825
- __( 'Go Back To Reports', 'google-analytics-for-wordpress' ),
826
 
827
- // Reference: src/modules/reports/store/actions.js:91
828
- __( 'Enable Enhanced eCommerce', 'google-analytics-for-wordpress' ),
829
 
830
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:167
831
- __( 'New', 'google-analytics-for-wordpress' ),
832
 
833
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:168
834
- __( 'Returning', 'google-analytics-for-wordpress' ),
835
 
836
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:510
837
- __( 'Desktop', 'google-analytics-for-wordpress' ),
838
 
839
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:511
840
- __( 'Tablet', 'google-analytics-for-wordpress' ),
841
 
842
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:512
843
- __( 'Mobile', 'google-analytics-for-wordpress' ),
 
844
 
845
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:257
846
- __( 'Sessions', 'google-analytics-for-wordpress' ),
847
 
848
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:259
849
- /* Translators: Placeholder adds a line break. */
850
- __( 'Unique %s Sessions', 'google-analytics-for-wordpress' ),
851
 
852
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:300
853
- __( 'Pageviews', 'google-analytics-for-wordpress' ),
854
 
855
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:263
856
- __( 'Avg. Session Duration', 'google-analytics-for-wordpress' ),
857
 
858
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:264
859
- __( 'Bounce Rate', 'google-analytics-for-wordpress' ),
860
 
861
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:265
862
- __( 'Total Users', 'google-analytics-for-wordpress' ),
863
 
864
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:268
865
- __( 'Top 10 Countries', 'google-analytics-for-wordpress' ),
866
 
867
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:269
868
- __( 'View Countries Report', 'google-analytics-for-wordpress' ),
869
 
870
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:270
871
- __( 'Top 10 Referrals', 'google-analytics-for-wordpress' ),
872
 
873
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:271
874
- __( 'View All Referral Sources', 'google-analytics-for-wordpress' ),
875
 
876
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:273
877
- __( 'View Full Posts/Pages Report', 'google-analytics-for-wordpress' ),
878
 
879
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:275
880
- __( 'A session is the browsing session of a single user to your site.', 'google-analytics-for-wordpress' ),
881
 
882
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:276
883
- __( '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' ),
884
 
885
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:277
886
- __( 'Total duration of all sessions (in seconds) / number of sessions.', 'google-analytics-for-wordpress' ),
887
 
888
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:278
889
- __( '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' ),
890
 
891
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:279
892
- __( 'The number of distinct tracked users', 'google-analytics-for-wordpress' ),
893
 
894
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:282
895
- __( 'This list shows the top countries your website visitors are from.', 'google-analytics-for-wordpress' ),
896
 
897
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:283
898
- __( 'This list shows the top websites that send your website traffic, known as referral traffic.', 'google-analytics-for-wordpress' ),
899
 
900
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:285
901
- __( 'Export PDF Overview Report', 'google-analytics-for-wordpress' ),
902
 
903
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:259
904
- __( 'Still Calculating...', 'google-analytics-for-wordpress' ),
905
 
906
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:260
907
- __( 'Your 2020 Year in Review is still calculating. Please check back later to see how your website performed last year.', 'google-analytics-for-wordpress' ),
908
 
909
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:261
910
- __( 'Back to Overview Report', 'google-analytics-for-wordpress' ),
911
 
912
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:262
913
- __( 'Your 2020 Analytics Report', 'google-analytics-for-wordpress' ),
914
 
915
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:264
916
- __( 'See how your website performed this year and find tips along the way to help grow even more in 2021!', 'google-analytics-for-wordpress' ),
917
 
918
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:265
919
- __( 'Audience', 'google-analytics-for-wordpress' ),
920
 
921
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:266
922
- __( 'Congrats', 'google-analytics-for-wordpress' ),
923
 
924
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:267
925
- __( 'Your website was quite popular this year! ', 'google-analytics-for-wordpress' ),
926
 
927
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:268
928
- __( 'You had ', 'google-analytics-for-wordpress' ),
929
 
930
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:269
931
- __( ' visitors!', 'google-analytics-for-wordpress' ),
932
 
933
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:270
934
- __( ' visitors', 'google-analytics-for-wordpress' ),
935
 
936
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:271
937
- __( 'Total Visitors', 'google-analytics-for-wordpress' ),
938
 
939
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:272
940
- __( 'Total Sessions', 'google-analytics-for-wordpress' ),
941
 
942
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:273
943
- __( 'Visitors by Month', 'google-analytics-for-wordpress' ),
944
 
945
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:274
946
- __( 'January 1, 2020 - December 31, 2020', 'google-analytics-for-wordpress' ),
947
 
948
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:275
949
- __( 'A Tip for 2021', 'google-analytics-for-wordpress' ),
950
 
951
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:276
952
- __( 'Demographics', 'google-analytics-for-wordpress' ),
 
953
 
954
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:277
955
- __( '#1', 'google-analytics-for-wordpress' ),
 
956
 
957
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:278
958
- __( 'You Top 5 Countries', 'google-analytics-for-wordpress' ),
959
 
960
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:279
961
- __( 'Let’s get to know your visitors a little better, shall we?', 'google-analytics-for-wordpress' ),
962
 
963
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:280
964
- __( 'Gender', 'google-analytics-for-wordpress' ),
965
 
966
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:281
967
- __( 'Female', 'google-analytics-for-wordpress' ),
968
 
969
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:282
970
- __( 'Women', 'google-analytics-for-wordpress' ),
971
 
972
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:283
973
- __( 'Male', 'google-analytics-for-wordpress' ),
974
 
975
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:284
976
- __( 'Average Age', 'google-analytics-for-wordpress' ),
977
 
978
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:285
979
- __( 'Behavior', 'google-analytics-for-wordpress' ),
980
 
981
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:286
982
- __( 'Your Top 5 Pages', 'google-analytics-for-wordpress' ),
983
 
984
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:288
985
- __( 'Time Spent on Site', 'google-analytics-for-wordpress' ),
986
 
987
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:289
988
- __( 'minutes', 'google-analytics-for-wordpress' ),
989
 
990
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:290
991
- __( 'Device Type', 'google-analytics-for-wordpress' ),
992
 
993
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:291
994
- __( 'A Tip For 2021', 'google-analytics-for-wordpress' ),
995
 
996
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:292
997
- __( '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' ),
998
 
999
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:293
1000
- __( 'Read - 32 Marketing Hacks to Grow Your Traffic', 'google-analytics-for-wordpress' ),
1001
 
1002
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:295
1003
- __( 'So, where did all of these visitors come from?', 'google-analytics-for-wordpress' ),
1004
 
1005
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:296
1006
- __( 'Clicks', 'google-analytics-for-wordpress' ),
1007
 
1008
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:297
1009
- __( 'Your Top 5 Keywords', 'google-analytics-for-wordpress' ),
1010
 
1011
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:298
1012
- __( 'What keywords visitors searched for to find your site', 'google-analytics-for-wordpress' ),
1013
 
1014
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:299
1015
- __( 'Your Top 5 Referrals', 'google-analytics-for-wordpress' ),
1016
 
1017
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:301
1018
- __( 'The websites that link back to your website', 'google-analytics-for-wordpress' ),
1019
 
1020
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:302
1021
- __( 'Opportunity', 'google-analytics-for-wordpress' ),
1022
 
1023
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:303
1024
- __( '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' ),
1025
 
1026
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:304
1027
- __( 'Read - How to Ethically Steal Your Competitor’s Traffic', 'google-analytics-for-wordpress' ),
1028
 
1029
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:306
1030
- __( 'Thank you for using MonsterInsights!', 'google-analytics-for-wordpress' ),
1031
 
1032
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:307
1033
- __( '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' ),
1034
 
1035
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:308
1036
- __( 'Here\'s to an amazing 2021!', 'google-analytics-for-wordpress' ),
1037
 
1038
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:309
1039
- __( 'Enjoying MonsterInsights', 'google-analytics-for-wordpress' ),
1040
 
1041
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:310
1042
- __( 'Leave a five star review!', 'google-analytics-for-wordpress' ),
1043
 
1044
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:311
1045
- __( 'Syed Balkhi', 'google-analytics-for-wordpress' ),
1046
 
1047
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:312
1048
- __( 'Chris Christoff', 'google-analytics-for-wordpress' ),
 
1049
 
1050
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:313
1051
- __( 'Write Review', 'google-analytics-for-wordpress' ),
 
1052
 
1053
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:314
1054
- __( 'Did you know over 10 million websites use our plugins?', 'google-analytics-for-wordpress' ),
 
1055
 
1056
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:315
1057
- __( 'Try our other popular WordPress plugins to grow your website in 2021.', 'google-analytics-for-wordpress' ),
 
1058
 
1059
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:316
1060
- __( 'Join our Communities!', 'google-analytics-for-wordpress' ),
 
1061
 
1062
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:317
1063
- __( 'Become a WordPress expert in 2021. Join our amazing communities and take your website to the next level.', 'google-analytics-for-wordpress' ),
 
1064
 
1065
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:318
1066
- __( 'Facebook Group', 'google-analytics-for-wordpress' ),
1067
 
1068
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:319
1069
- __( 'Join our team of WordPress experts and other motivated website owners in the WPBeginner Engage Facebook Group.', 'google-analytics-for-wordpress' ),
1070
 
1071
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:320
1072
- __( 'Join Now...It’s Free!', 'google-analytics-for-wordpress' ),
1073
 
1074
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:321
1075
- __( 'WordPress Tutorials by WPBeginner', 'google-analytics-for-wordpress' ),
 
1076
 
1077
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:322
1078
- __( 'WPBeginner is the largest free WordPress resource site for beginners and non-techy users.', 'google-analytics-for-wordpress' ),
1079
 
1080
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:323
1081
- __( 'Visit WPBeginner', 'google-analytics-for-wordpress' ),
1082
 
1083
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:324
1084
- __( 'Follow Us!', 'google-analytics-for-wordpress' ),
1085
 
1086
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:325
1087
- __( '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' ),
1088
 
1089
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:326
1090
- __( 'Copyright MonsterInsights, 2021', 'google-analytics-for-wordpress' ),
1091
 
1092
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:327
1093
- __( 'Upgrade to MonsterInsights Pro to Unlock Additional Actionable Insights', 'google-analytics-for-wordpress' ),
1094
 
1095
- // Reference: src/modules/reports/components/reports-overview/monsterinsights-ReportOverviewUpsell-Lite.vue:31
1096
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:328
1097
- // Reference: src/modules/reports/components/upsells/ReportUpsellOverlay.vue:29
1098
- __( 'Upgrade to MonsterInsights Pro', 'google-analytics-for-wordpress' ),
1099
 
1100
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:331
1101
- __( 'January', 'google-analytics-for-wordpress' ),
1102
 
1103
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:332
1104
- __( 'February', 'google-analytics-for-wordpress' ),
1105
 
1106
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:333
1107
- __( 'March', 'google-analytics-for-wordpress' ),
1108
 
1109
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:334
1110
- __( 'April', 'google-analytics-for-wordpress' ),
1111
 
1112
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:335
1113
- __( 'May', 'google-analytics-for-wordpress' ),
1114
 
1115
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:336
1116
- __( 'June', 'google-analytics-for-wordpress' ),
1117
 
1118
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:337
1119
- __( 'July', 'google-analytics-for-wordpress' ),
1120
 
1121
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:338
1122
- __( 'August', 'google-analytics-for-wordpress' ),
1123
 
1124
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:339
1125
- __( 'September', 'google-analytics-for-wordpress' ),
1126
 
1127
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:340
1128
- __( 'October', 'google-analytics-for-wordpress' ),
1129
 
1130
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:341
1131
- __( 'November', 'google-analytics-for-wordpress' ),
1132
 
1133
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:342
1134
- __( 'December', 'google-analytics-for-wordpress' ),
 
1135
 
1136
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:370
1137
- /* Translators: Number of visitors. */
1138
- __( 'Your best month was <strong>%1$s</strong> with <strong>%2$s visitors!</strong>', 'google-analytics-for-wordpress' ),
1139
 
1140
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:373
1141
- __( 'See the top Traffic Sources and Top Pages for the Month of %s in the Overview Report to replicate your success.', 'google-analytics-for-wordpress' ),
1142
 
1143
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:392
1144
- /* Translators: Number of visitors. */
1145
- __( 'Your <strong>%1$s</strong> visitors came from <strong>%2$s</strong> different countries.', 'google-analytics-for-wordpress' ),
1146
 
1147
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:399
1148
- /* Translators: Number of visitors. */
1149
- __( '%s Visitors', 'google-analytics-for-wordpress' ),
1150
 
1151
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:414
1152
- /* Translators: Percent and Number of visitors. */
1153
- __( '%1$s&#37 of your visitors were %2$s', 'google-analytics-for-wordpress' ),
1154
 
1155
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:421
1156
- /* Translators: Number of visitors and their age. */
1157
- __( '%1$s&#37 of your visitors were between the ages of %2$s', 'google-analytics-for-wordpress' ),
1158
 
1159
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:434
1160
- /* Translators: Number of visitors and number of pages. */
1161
- __( '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' ),
1162
 
1163
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:459
1164
- /* Translators: Number of minutes spent on site. */
1165
- __( 'Each visitor spent an average of %s minutes on your website in 2020.', 'google-analytics-for-wordpress' ),
1166
 
1167
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:481
1168
- /* Translators: Name of device type. */
1169
- __( 'Most of your visitors viewed your website from their <strong>%s</strong> device.', 'google-analytics-for-wordpress' ),
1170
 
1171
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:485
1172
- /* Translators: Number of visitors and device percentage. */
1173
- __( '%1$s&#37 of your visitors were on a %2$s device.', 'google-analytics-for-wordpress' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1174
 
1175
  // Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:29
1176
  __( 'Last 30 Days Insights for:', 'google-analytics-for-wordpress' ),
@@ -1178,725 +1329,904 @@ $generated_i18n_strings = array(
1178
  // Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:30
1179
  __( 'Your Website', 'google-analytics-for-wordpress' ),
1180
 
 
 
 
 
 
 
1181
  // Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:33
1182
  __( 'Avg. Duration', 'google-analytics-for-wordpress' ),
1183
 
 
 
 
 
 
 
1184
  // Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:44
1185
  __( 'More data is available', 'google-analytics-for-wordpress' ),
1186
 
1187
  // Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:46
1188
  __( 'Want to see page-specific stats?', 'google-analytics-for-wordpress' ),
1189
 
1190
- // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:104
1191
- __( 'GDPR Guide', 'google-analytics-for-wordpress' ),
1192
 
1193
- // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:105
1194
- __( '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. ', 'google-analytics-for-wordpress' ),
1195
 
1196
- // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:110
1197
- __( 'How to Install and Activate MonsterInsights Addons', 'google-analytics-for-wordpress' ),
1198
 
1199
- // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:111
1200
- __( '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.', 'google-analytics-for-wordpress' ),
1201
 
1202
- // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:116
1203
- __( 'Enabling eCommerce Tracking and Reports', 'google-analytics-for-wordpress' ),
 
1204
 
1205
- // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:117
1206
- __( '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.', 'google-analytics-for-wordpress' ),
1207
 
1208
- // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:121
1209
- __( 'Read Documentation', 'google-analytics-for-wordpress' ),
1210
 
1211
- // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:64
1212
- __( 'Getting Started with MonsterInsights', 'google-analytics-for-wordpress' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1213
 
1214
- // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:65
1215
- __( '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.', 'google-analytics-for-wordpress' ),
1216
 
1217
- // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:66
1218
- __( 'To begin with, we’ll get your site authorized with Google Analytics, so we can start tracking and generating reports for you right away.', 'google-analytics-for-wordpress' ),
1219
 
1220
- // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:67
1221
- __( '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!.', 'google-analytics-for-wordpress' ),
1222
 
1223
- // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:68
1224
- __( 'Launch the wizard!', 'google-analytics-for-wordpress' ),
1225
 
1226
- // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:69
1227
- __( 'Get MonsterInsights Pro and Unlock all the Powerful Features', 'google-analytics-for-wordpress' ),
1228
 
1229
- // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:71
1230
- /* Translators: Makes text bold. */
1231
- __( '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.', 'google-analytics-for-wordpress' ),
1232
 
1233
- // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:73
1234
- __( 'Universal Tracking across devices and campaigns with just a few clicks.', 'google-analytics-for-wordpress' ),
1235
 
1236
- // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:74
1237
- __( 'See your website analytics reports inside the WordPress dashboard', 'google-analytics-for-wordpress' ),
1238
 
1239
- // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:75
1240
- __( 'Get real-time stats right inside WordPress', 'google-analytics-for-wordpress' ),
1241
 
1242
- // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:76
1243
- __( '1-click Google Analytics Enhanced eCommerce tracking', 'google-analytics-for-wordpress' ),
1244
 
1245
- // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:77
1246
- __( 'Get detailed stats for each post and page.', 'google-analytics-for-wordpress' ),
1247
 
1248
- // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:80
1249
- __( 'Automatically track clicks on your affiliate links and ads.', 'google-analytics-for-wordpress' ),
1250
 
1251
- // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:81
1252
- __( 'Make Google Analytics GDPR compliant automatically', 'google-analytics-for-wordpress' ),
1253
 
1254
- // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:82
1255
- __( 'Setup tracking for authors, categories, tags, custom post types, users and more', 'google-analytics-for-wordpress' ),
1256
 
1257
- // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:83
1258
- __( 'Enable Google Optimize for A/B testing, adjust sample speed & sample rate.', 'google-analytics-for-wordpress' ),
1259
 
1260
- // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:84
1261
- __( 'More advanced features', 'google-analytics-for-wordpress' ),
1262
 
1263
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:57
1264
- __( 'Get MonsterInsights Pro Today and Unlock all the Powerful Features', 'google-analytics-for-wordpress' ),
1265
 
1266
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:59
1267
- /* Translators: Makes text green. */
1268
- __( 'Bonus: MonsterInsights Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout.', 'google-analytics-for-wordpress' ),
1269
 
1270
- // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:92
1271
- __( 'How to Connect to Google Analytics', 'google-analytics-for-wordpress' ),
1272
 
1273
- // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:93
1274
- __( '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.', 'google-analytics-for-wordpress' ),
1275
 
1276
- // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:98
1277
- __( 'Guide and Checklist for Advanced Insights', 'google-analytics-for-wordpress' ),
1278
 
1279
- // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:99
1280
- __( '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' ),
1281
 
1282
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:162
1283
- __( 'Custom Campaign Parameters', 'google-analytics-for-wordpress' ),
1284
 
1285
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:163
1286
- __( 'The URL builder helps you add parameters to your URLs you use in custom web or email ad campaigns.', 'google-analytics-for-wordpress' ),
1287
 
1288
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:164
1289
- __( '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' ),
1290
 
1291
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:166
1292
- /* Translators: Marks the field as required. */
1293
- __( 'Website URL %s', 'google-analytics-for-wordpress' ),
1294
 
1295
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:168
1296
- /* Translators: Display the current website url in italic. */
1297
- __( 'The full website URL (e.g. %1$s %2$s%3$s)', 'google-analytics-for-wordpress' ),
1298
 
1299
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:170
1300
- /* Translators: Marks the field as required. */
1301
- __( 'Campaign Source %s', 'google-analytics-for-wordpress' ),
1302
 
1303
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:172
1304
- /* Translators: Make the text italic. */
1305
- __( 'Enter a referrer (e.g. %1$sfacebook, newsletter, google%2$s)', 'google-analytics-for-wordpress' ),
1306
 
1307
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:175
1308
- /* Translators: Make the text italic. */
1309
- __( 'Enter a marketing medium (e.g. %1$scpc, banner, email%2$s)', 'google-analytics-for-wordpress' ),
1310
 
1311
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:178
1312
- /* Translators: Make the text italic. */
1313
- __( 'Enter a name to easily identify (e.g. %1$sspring_sale%2$s)', 'google-analytics-for-wordpress' ),
1314
 
1315
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:180
1316
- __( 'Enter the paid keyword', 'google-analytics-for-wordpress' ),
1317
 
1318
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:182
1319
- __( 'Enter something to differentiate ads', 'google-analytics-for-wordpress' ),
1320
 
1321
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:183
1322
- __( 'Use Fragment', 'google-analytics-for-wordpress' ),
1323
 
1324
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:185
1325
- /* Translators: Make the text bold. */
1326
- __( 'Set the parameters in the fragment portion of the URL %1$s(not recommended)%2$s', 'google-analytics-for-wordpress' ),
1327
 
1328
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:186
1329
- __( 'URL to use', 'google-analytics-for-wordpress' ),
1330
 
1331
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:187
1332
- __( '(Updates automatically)', 'google-analytics-for-wordpress' ),
1333
 
1334
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:188
1335
- __( 'Copy to Clipboard', 'google-analytics-for-wordpress' ),
1336
 
1337
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:189
1338
- __( 'Copy to Pretty Links', 'google-analytics-for-wordpress' ),
1339
 
1340
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:190
1341
- __( 'Make your campaign links prettier!', 'google-analytics-for-wordpress' ),
1342
 
1343
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:191
1344
- __( 'Pretty Links turns those ugly, long campaign links into clean, memorable, speakable and totally shareable links.', 'google-analytics-for-wordpress' ),
1345
 
1346
- // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:89
1347
- __( 'Download Pretty Links', 'google-analytics-for-wordpress' ),
1348
 
1349
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:193
1350
- __( 'More Information & Examples', 'google-analytics-for-wordpress' ),
1351
 
1352
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:194
1353
- __( 'The following table gives a detailed explanation and example of each of the campaign parameters.', 'google-analytics-for-wordpress' ),
1354
 
1355
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:202
1356
- __( 'Campaign Source', 'google-analytics-for-wordpress' ),
1357
 
1358
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:203
1359
- __( 'Required. Use utm_source to identify a search engine, newsletter name, or other source.', 'google-analytics-for-wordpress' ),
1360
 
1361
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:204
1362
- __( 'Campaign Medium', 'google-analytics-for-wordpress' ),
1363
 
1364
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:205
1365
- __( 'Use utm_medium to identify a medium such as email or cost-per-click.', 'google-analytics-for-wordpress' ),
1366
 
1367
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:206
1368
- __( 'Campaign Name', 'google-analytics-for-wordpress' ),
1369
 
1370
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:207
1371
- __( 'Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign.', 'google-analytics-for-wordpress' ),
1372
 
1373
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:208
1374
- __( 'Campaign Term', 'google-analytics-for-wordpress' ),
1375
 
1376
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:209
1377
- __( 'Used for paid search. Use utm_term to note the keywords for this ad.', 'google-analytics-for-wordpress' ),
1378
 
1379
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:210
1380
- __( 'Campaign Content', 'google-analytics-for-wordpress' ),
1381
 
1382
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:211
1383
- __( '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' ),
1384
 
1385
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:213
1386
- /* Translators: Example. */
1387
- __( 'Example: %s', 'google-analytics-for-wordpress' ),
1388
 
1389
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:215
1390
- /* Translators: Examples. */
1391
- __( 'Examples: %s', 'google-analytics-for-wordpress' ),
1392
 
1393
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:218
1394
- __( 'About Campaigns', 'google-analytics-for-wordpress' ),
1395
 
1396
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:222
1397
- __( 'About Custom Campaigns', 'google-analytics-for-wordpress' ),
1398
 
1399
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:226
1400
- __( 'Best Practices for Creating Custom Campaigns', 'google-analytics-for-wordpress' ),
1401
 
1402
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:230
1403
- __( 'About the Referral Traffic Report', 'google-analytics-for-wordpress' ),
 
1404
 
1405
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:234
1406
- __( 'About Traffic Source Dimensions', 'google-analytics-for-wordpress' ),
1407
 
1408
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:238
1409
- __( 'AdWords Auto-Tagging', 'google-analytics-for-wordpress' ),
 
1410
 
1411
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:242
1412
- __( 'Additional Information', 'google-analytics-for-wordpress' ),
 
1413
 
1414
- // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:45
1415
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:94
1416
- __( 'License Key', 'google-analytics-for-wordpress' ),
1417
 
1418
- // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:47
1419
- /* Translators: Add link to retrieve license key from account. */
1420
- __( 'Add your MonsterInsights license key from the email receipt or account area. %1$sRetrieve your license key%2$s.', 'google-analytics-for-wordpress' ),
1421
 
1422
- // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:48
1423
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:95
1424
- __( 'Google Authentication', 'google-analytics-for-wordpress' ),
1425
 
1426
- // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:49
1427
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:96
1428
- __( 'Connect Google Analytics + WordPress', 'google-analytics-for-wordpress' ),
1429
 
1430
- // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:50
1431
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:97
1432
- __( 'You will be taken to the MonsterInsights website where you\'ll need to connect your Analytics account.', 'google-analytics-for-wordpress' ),
1433
 
1434
- // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:51
1435
- __( 'Miscellaneous', 'google-analytics-for-wordpress' ),
 
1436
 
1437
- // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:53
1438
- __( 'Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes.', 'google-analytics-for-wordpress' ),
1439
 
1440
- // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:54
1441
- __( 'Hide Announcements', 'google-analytics-for-wordpress' ),
1442
 
1443
- // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:55
1444
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:99
1445
- __( 'Setup Wizard', 'google-analytics-for-wordpress' ),
1446
 
1447
- // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:56
1448
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:100
1449
- __( 'Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks).', 'google-analytics-for-wordpress' ),
1450
 
1451
- // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:57
1452
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:101
1453
- __( 'Launch Setup Wizard', 'google-analytics-for-wordpress' ),
1454
 
1455
- // Reference: src/modules/widget/components/WidgetReportsLink.vue:17
1456
- __( 'See All Reports', 'google-analytics-for-wordpress' ),
1457
 
1458
- // Reference: src/modules/widget/components/WidgetReportsLink.vue:18
1459
- __( 'Go to the Analytics Dashboard', 'google-analytics-for-wordpress' ),
1460
 
1461
- // Reference: src/modules/about/components/monsterinsights-AboutTabAboutUs.vue:31
1462
- __( 'Hello and welcome to MonsterInsights, the best Google Analytics plugin for WordPress. MonsterInsights shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions.', 'google-analytics-for-wordpress' ),
1463
 
1464
- // Reference: src/modules/about/components/monsterinsights-AboutTabAboutUs.vue:32
1465
- __( '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' ),
 
1466
 
1467
- // Reference: src/modules/about/components/monsterinsights-AboutTabAboutUs.vue:33
1468
- __( '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' ),
1469
 
1470
- // Reference: src/modules/about/components/monsterinsights-AboutTabAboutUs.vue:34
1471
- __( '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' ),
1472
 
1473
- // Reference: src/modules/about/components/monsterinsights-AboutTabAboutUs.vue:35
1474
- __( 'Yup, we know a thing or two about building awesome products that customers love.', 'google-analytics-for-wordpress' ),
1475
 
1476
- // Reference: src/modules/about/components/monsterinsights-AboutTabAboutUs.vue:36
1477
- __( 'The MonsterInsights Team', 'google-analytics-for-wordpress' ),
1478
 
1479
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:42
1480
- __( 'Import/Export', 'google-analytics-for-wordpress' ),
1481
 
1482
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:43
1483
- __( 'Import', 'google-analytics-for-wordpress' ),
1484
 
1485
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:44
1486
- __( 'Import settings from another MonsterInsights website.', 'google-analytics-for-wordpress' ),
1487
 
1488
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:45
1489
- __( 'Export', 'google-analytics-for-wordpress' ),
1490
 
1491
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:46
1492
- __( 'Export settings to import into another MonsterInsights install.', 'google-analytics-for-wordpress' ),
1493
 
1494
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:47
1495
- __( 'Import Settings', 'google-analytics-for-wordpress' ),
1496
 
1497
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:48
1498
- __( 'Export Settings', 'google-analytics-for-wordpress' ),
1499
 
1500
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:49
1501
- __( 'Please choose a file to import', 'google-analytics-for-wordpress' ),
1502
 
1503
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:50
1504
- __( 'Click Choose file below to select the settings export file from another site.', 'google-analytics-for-wordpress' ),
1505
 
1506
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:51
1507
- __( 'Use the button below to export a file with your MonsterInsights settings.', 'google-analytics-for-wordpress' ),
1508
 
1509
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:64
1510
- __( 'Uploading file...', 'google-analytics-for-wordpress' ),
1511
 
1512
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:79
1513
- __( 'File imported', 'google-analytics-for-wordpress' ),
1514
 
1515
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:80
1516
- __( 'Settings successfully updated!', 'google-analytics-for-wordpress' ),
1517
 
1518
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:86
1519
- __( 'Error importing settings', 'google-analytics-for-wordpress' ),
1520
 
1521
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:87
1522
- __( 'Please choose a .json file generated by a MonsterInsights settings export.', 'google-analytics-for-wordpress' ),
1523
 
1524
- // Reference: src/modules/woocommerce-insights/woocommerce-insights-Lite.vue:100
1525
- __( 'Get MonsterInsights Pro', 'google-analytics-for-wordpress' ),
1526
 
1527
- // Reference: src/modules/wizard-onboarding/components/OnboardingAddon-Lite.vue:27
1528
- __( 'Upgrade to Pro', 'google-analytics-for-wordpress' ),
1529
 
1530
- // Reference: src/modules/woocommerce-insights/woocommerce-insights-Lite.vue:107
1531
- __( 'Cart Funnel', 'google-analytics-for-wordpress' ),
1532
 
1533
- // Reference: src/modules/woocommerce-insights/woocommerce-insights-Lite.vue:112
1534
- __( 'Customer Insights', 'google-analytics-for-wordpress' ),
 
1535
 
1536
- // Reference: src/modules/woocommerce-insights/woocommerce-insights-Lite.vue:117
1537
- __( 'Campaign Measurement', 'google-analytics-for-wordpress' ),
1538
 
1539
- // Reference: src/modules/woocommerce-insights/woocommerce-insights-Lite.vue:122
1540
- __( 'Customer Profiles', 'google-analytics-for-wordpress' ),
 
1541
 
1542
- // Reference: src/modules/woocommerce-insights/woocommerce-insights-Lite.vue:133
1543
- __( 'See all the critical eCommerce data you need at a glance: your conversion rate, transactions, revenue, and average order value, and more.', 'google-analytics-for-wordpress' ),
1544
 
1545
- // Reference: src/modules/woocommerce-insights/woocommerce-insights-Lite.vue:86
1546
- __( 'Truly Understand Your%1$s Customers With %2$sMonsterInsights%3$s', 'google-analytics-for-wordpress' ),
1547
 
1548
- // Reference: src/modules/woocommerce-insights/woocommerce-insights-Lite.vue:87
1549
- __( 'You never truly understand your customers until you used Enhanced %1$s eCommerce from MonsterInsights!', 'google-analytics-for-wordpress' ),
1550
 
1551
- // Reference: src/modules/woocommerce-insights/woocommerce-insights-Lite.vue:88
1552
- __( 'Track all-new metrics!', 'google-analytics-for-wordpress' ),
1553
 
1554
- // Reference: src/modules/woocommerce-insights/woocommerce-insights-Lite.vue:89
1555
- __( 'Get stats WooCommerce doesn’t give you like: Conversion Sources, Avg. Order Value, Revenue per Source, Total Add to Carts & More!', 'google-analytics-for-wordpress' ),
 
1556
 
1557
- // Reference: src/modules/woocommerce-insights/woocommerce-insights-Lite.vue:90
1558
- __( 'FEATURES', 'google-analytics-for-wordpress' ),
1559
 
1560
- // Reference: src/modules/woocommerce-insights/woocommerce-insights-Lite.vue:91
1561
- __( 'Get The Unique Metrics Neccessary for Growth', 'google-analytics-for-wordpress' ),
1562
 
1563
- // Reference: src/modules/woocommerce-insights/woocommerce-insights-Lite.vue:92
1564
- __( 'See all the critical eCommerce data you need at a glance: your conversion rate, transactions, %1$srevenue, and average order value, and more.', 'google-analytics-for-wordpress' ),
 
1565
 
1566
- // Reference: src/modules/woocommerce-insights/woocommerce-insights-Lite.vue:93
1567
- __( 'Get Answers to the important questions %1$syou should know.', 'google-analytics-for-wordpress' ),
1568
 
1569
- // Reference: src/modules/woocommerce-insights/woocommerce-insights-Lite.vue:95
1570
- __( 'Did the login/registration step of the checkout put users off?', 'google-analytics-for-wordpress' ),
1571
 
1572
- // Reference: src/modules/woocommerce-insights/woocommerce-insights-Lite.vue:96
1573
- __( 'Which ad campaign is driving the most revenue?', 'google-analytics-for-wordpress' ),
1574
 
1575
- // Reference: src/modules/woocommerce-insights/woocommerce-insights-Lite.vue:97
1576
- __( 'Who is my typical customer?', 'google-analytics-for-wordpress' ),
1577
 
1578
- // Reference: src/modules/woocommerce-insights/woocommerce-insights-Lite.vue:99
1579
- __( 'Level-up Your eCommerce store with %1$sMonsterInsights + WooCommerce!%1$s', 'google-analytics-for-wordpress' ),
 
1580
 
1581
- // Reference: src/modules/addons/monsterinsights-addons-Lite.vue:40
1582
- __( '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' ),
1583
 
1584
- // Reference: src/modules/addons/monsterinsights-addons-Lite.vue:41
1585
- __( 'No addons found.', 'google-analytics-for-wordpress' ),
1586
 
1587
- // Reference: src/modules/addons/monsterinsights-addons-Lite.vue:42
1588
- __( 'Refresh Addons', 'google-analytics-for-wordpress' ),
1589
 
1590
- // Reference: src/modules/addons/monsterinsights-addons-Lite.vue:65
1591
- __( 'Refreshing Addons', 'google-analytics-for-wordpress' ),
1592
 
1593
- // Reference: src/modules/addons/monsterinsights-addons-Lite.vue:76
1594
- /* Translators: Make text green. */
1595
- __( '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' ),
1596
 
1597
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:100
1598
- __( 'WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin', 'google-analytics-for-wordpress' ),
1599
 
1600
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:103
1601
- __( 'WordPress Admin Area Reports', 'google-analytics-for-wordpress' ),
1602
 
1603
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:106
1604
- __( 'Standard Reports', 'google-analytics-for-wordpress' ),
1605
 
1606
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:107
1607
- __( 'Overview Reports for the last 30 days.', 'google-analytics-for-wordpress' ),
1608
 
1609
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:108
1610
- __( 'Advanced Reports', 'google-analytics-for-wordpress' ),
1611
 
1612
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:109
1613
- __( 'Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection', 'google-analytics-for-wordpress' ),
1614
 
1615
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:112
1616
- __( 'Dashboard Widget', 'google-analytics-for-wordpress' ),
1617
 
1618
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:115
1619
- __( 'Basic Widget', 'google-analytics-for-wordpress' ),
 
1620
 
1621
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:116
1622
- __( 'Overview Report Synopsis', 'google-analytics-for-wordpress' ),
1623
 
1624
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:117
1625
- __( 'Advanced Dashboard Widget', 'google-analytics-for-wordpress' ),
1626
 
1627
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:118
1628
- __( 'Includes the complete Overview report, Publisher reports and 6 different eCommerce reports', 'google-analytics-for-wordpress' ),
1629
 
1630
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:67
1631
- __( 'Headline Analyzer', 'google-analytics-for-wordpress' ),
 
1632
 
1633
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:57
1634
- __( 'Email Summaries', 'google-analytics-for-wordpress' ),
 
1635
 
1636
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:130
1637
- __( 'Included', 'google-analytics-for-wordpress' ),
 
1638
 
1639
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:131
1640
- __( 'Get weekly traffic reports directly in your inbox.', 'google-analytics-for-wordpress' ),
1641
 
1642
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:136
1643
- __( 'Publisher Reports', 'google-analytics-for-wordpress' ),
 
1644
 
1645
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:140
1646
- __( 'Advanced Publisher Reports & Tracking', 'google-analytics-for-wordpress' ),
1647
 
1648
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:141
1649
- __( 'View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more', 'google-analytics-for-wordpress' ),
 
1650
 
1651
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:144
1652
- __( 'Popular Posts', 'google-analytics-for-wordpress' ),
1653
 
1654
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:147
1655
- __( 'Basic Options', 'google-analytics-for-wordpress' ),
 
1656
 
1657
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:148
1658
- __( 'Order Popular Posts by comments or shares with 3 simple theme choices.', 'google-analytics-for-wordpress' ),
 
1659
 
1660
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:149
1661
- __( 'Dynamic Popular Posts & Popular Products', 'google-analytics-for-wordpress' ),
 
1662
 
1663
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:150
1664
- __( 'Display Popular Posts based on your actual traffic data from Google Analytics and choose from over 20 advanced themes. Display Popular WooCommerce products using widgets or Gutenberg blocks.', 'google-analytics-for-wordpress' ),
1665
 
1666
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:156
1667
- // Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:84
1668
- __( 'Not Available', 'google-analytics-for-wordpress' ),
1669
 
1670
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:157
1671
- __( 'Complete Custom Dimensions Tracking', 'google-analytics-for-wordpress' ),
 
1672
 
1673
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:158
1674
- __( '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' ),
 
1675
 
1676
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:161
1677
- __( 'Support', 'google-analytics-for-wordpress' ),
 
1678
 
1679
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:164
1680
- __( 'Limited Support', 'google-analytics-for-wordpress' ),
1681
 
1682
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:165
1683
- __( 'Priority Support', 'google-analytics-for-wordpress' ),
 
1684
 
1685
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:53
1686
- __( 'Get the most out of MonsterInsights by upgrading to Pro and unlocking all of the powerful features.', 'google-analytics-for-wordpress' ),
 
1687
 
1688
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:54
1689
- __( 'Feature', 'google-analytics-for-wordpress' ),
 
1690
 
1691
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:55
1692
- __( 'Lite', 'google-analytics-for-wordpress' ),
1693
 
1694
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:56
1695
- __( 'Pro', 'google-analytics-for-wordpress' ),
1696
 
1697
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:69
1698
- __( 'Custom Google Analytics Link Tracking', 'google-analytics-for-wordpress' ),
1699
 
1700
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:72
1701
- __( 'Standard Tracking', 'google-analytics-for-wordpress' ),
1702
 
1703
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:73
1704
- __( 'Advanced Tracking', 'google-analytics-for-wordpress' ),
1705
 
1706
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:74
1707
- __( 'Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking', 'google-analytics-for-wordpress' ),
1708
 
1709
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:75
1710
- __( 'Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers', 'google-analytics-for-wordpress' ),
1711
 
1712
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:78
1713
- __( 'No-Code-Needed Tracking Features', 'google-analytics-for-wordpress' ),
1714
 
1715
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:81
1716
- __( 'Basic Tracking Options', 'google-analytics-for-wordpress' ),
1717
 
1718
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:82
1719
- __( 'Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking', 'google-analytics-for-wordpress' ),
1720
 
1721
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:83
1722
- __( 'Advanced Tracking Options', 'google-analytics-for-wordpress' ),
 
1723
 
1724
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:84
1725
- __( 'Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors', 'google-analytics-for-wordpress' ),
1726
 
1727
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:87
1728
- __( 'eCommerce Tracking', 'google-analytics-for-wordpress' ),
 
1729
 
1730
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:91
1731
- __( 'One-click Complete eCommerce tracking', 'google-analytics-for-wordpress' ),
1732
 
1733
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:92
1734
- __( 'Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required', 'google-analytics-for-wordpress' ),
 
1735
 
1736
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabConversions-Lite.vue:31
1737
- __( 'Forms Tracking', 'google-analytics-for-wordpress' ),
1738
 
1739
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:99
1740
- __( 'One-click Form Events Tracking', 'google-analytics-for-wordpress' ),
 
1741
 
1742
- // Reference: src/modules/widget/components/settings/WidgetSettingsWidth.vue:40
1743
- __( 'Show in widget mode', 'google-analytics-for-wordpress' ),
1744
 
1745
- // Reference: src/modules/widget/components/settings/WidgetSettingsWidth.vue:40
1746
- __( 'Show in full-width mode', 'google-analytics-for-wordpress' ),
 
1747
 
1748
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:50
1749
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:71
1750
  /* Translators: Example path (/go/). */
1751
  __( 'Path (example: %s)', 'google-analytics-for-wordpress' ),
1752
 
1753
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:52
1754
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:73
1755
  __( 'Path has to start with a / and have no spaces', 'google-analytics-for-wordpress' ),
1756
 
1757
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:57
1758
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:78
1759
  /* Translators: Example label (aff). */
1760
  __( 'Label (example: %s)', 'google-analytics-for-wordpress' ),
1761
 
1762
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:59
1763
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:80
1764
- __( 'Label can\'t contain any spaces', 'google-analytics-for-wordpress' ),
1765
-
1766
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:62
1767
- __( 'Affiliate Links', 'google-analytics-for-wordpress' ),
1768
 
1769
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:64
1770
  /* Translators: Add links to documentation. */
1771
- __( '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' ),
1772
-
1773
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:65
1774
- __( 'Our affiliate link tracking works by setting path for internal links to track as outbound links.', 'google-analytics-for-wordpress' ),
1775
-
1776
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:68
1777
- __( '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' ),
1778
-
1779
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:69
1780
- __( 'Disable the Headline Analyzer', 'google-analytics-for-wordpress' ),
1781
-
1782
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabConversions-Lite.vue:32
1783
- __( 'See who\'s viewing and submitting your forms, so you can increase your conversion rate.', 'google-analytics-for-wordpress' ),
1784
-
1785
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabConversions-Lite.vue:34
1786
- __( 'Use Google Optimize to retarget your website visitors and perform A/B split tests with ease.', 'google-analytics-for-wordpress' ),
1787
-
1788
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabConversions-Lite.vue:36
1789
- __( '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' ),
1790
-
1791
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:94
1792
- /* Translators: placeholders make text small. */
1793
- __( 'Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s', 'google-analytics-for-wordpress' ),
1794
-
1795
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:99
1796
- /* Translators: placeholders make text small. */
1797
- __( 'Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s', 'google-analytics-for-wordpress' ),
1798
-
1799
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:104
1800
- /* Translators: placeholders make text small. */
1801
- __( 'None %1$s- Manually update everything.%2$s', 'google-analytics-for-wordpress' ),
1802
-
1803
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:162
1804
- /* Translators: Adds a link to the general settings tab. */
1805
- __( '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' ),
1806
-
1807
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:58
1808
- __( 'Export PDF Reports', 'google-analytics-for-wordpress' ),
1809
-
1810
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:59
1811
- __( 'Permissions', 'google-analytics-for-wordpress' ),
1812
 
1813
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:60
1814
- __( 'Allow These User Roles to See Reports', 'google-analytics-for-wordpress' ),
1815
 
1816
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:61
1817
- __( 'Users that have at least one of these roles will be able to view the reports.', 'google-analytics-for-wordpress' ),
1818
 
1819
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:88
1820
- __( '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' ),
1821
 
1822
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:63
1823
- __( 'Allow These User Roles to Save Settings', 'google-analytics-for-wordpress' ),
1824
 
1825
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:64
1826
- __( 'Users that have at least one of these roles will be able to view and save the settings panel.', 'google-analytics-for-wordpress' ),
1827
 
1828
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:65
1829
- __( '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' ),
1830
 
1831
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:66
1832
- __( 'Exclude These User Roles From Tracking', 'google-analytics-for-wordpress' ),
1833
 
1834
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:68
1835
- __( 'Users that have at least one of these roles will not be tracked into Google Analytics.', 'google-analytics-for-wordpress' ),
1836
 
1837
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:69
1838
- __( 'Performance', 'google-analytics-for-wordpress' ),
1839
 
1840
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:77
1841
- __( 'Custom code', 'google-analytics-for-wordpress' ),
1842
 
1843
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:79
1844
- /* Translators: Adds a link to the Google reference. */
1845
- __( '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' ),
1846
 
1847
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:70
1848
- __( 'Reports', 'google-analytics-for-wordpress' ),
1849
 
1850
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:71
1851
- __( 'Automatic Updates', 'google-analytics-for-wordpress' ),
1852
 
1853
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:82
1854
- __( 'You must have the "unfiltered_html" capability to view/edit this setting.', 'google-analytics-for-wordpress' ),
1855
 
1856
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:72
1857
- __( 'Hide Admin Bar Reports', 'google-analytics-for-wordpress' ),
1858
 
1859
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:77
1860
- /* Translators: placeholders make text small. */
1861
- __( 'Enabled %1$s- Show reports and dashboard widget.%2$s', 'google-analytics-for-wordpress' ),
1862
 
1863
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:82
1864
- /* Translators: placeholders make text small. */
1865
- __( 'Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s', 'google-analytics-for-wordpress' ),
1866
 
1867
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:87
1868
- /* Translators: placeholders make text small. */
1869
- __( 'Disabled %1$s- Hide reports and dashboard widget.%2$s', 'google-analytics-for-wordpress' ),
1870
 
1871
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEcommerce-Lite.vue:44
1872
- __( 'See All Your Important Store Metrics in One Place', 'google-analytics-for-wordpress' ),
1873
 
1874
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEcommerce-Lite.vue:45
1875
- __( 'Get an Answer to All Your Top Ecommerce Questions From a Single Report', 'google-analytics-for-wordpress' ),
1876
 
1877
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEcommerce-Lite.vue:46
1878
- __( 'ONE-CLICK INTEGRATIONS', 'google-analytics-for-wordpress' ),
1879
 
1880
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEcommerce-Lite.vue:48
1881
- __( 'Enable Ecommerce Tracking and Grow Your Business with Confidence', 'google-analytics-for-wordpress' ),
1882
 
1883
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEcommerce-Lite.vue:49
1884
- __( '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' ),
1885
 
1886
- // Reference: src/modules/widget/components/settings/WidgetSettingsReports-Lite.vue:68
1887
- __( 'Show Overview Reports', 'google-analytics-for-wordpress' ),
1888
 
1889
- // Reference: src/modules/widget/components/settings/WidgetSettingsReports-Lite.vue:69
1890
- __( 'Show Publishers Reports', 'google-analytics-for-wordpress' ),
1891
 
1892
- // Reference: src/modules/widget/components/settings/WidgetSettingsReports-Lite.vue:70
1893
- __( 'Show eCommerce Reports', 'google-analytics-for-wordpress' ),
1894
 
1895
- // Reference: src/modules/widget/components/settings/WidgetSettingsReports-Lite.vue:71
1896
- __( 'Settings Menu', 'google-analytics-for-wordpress' ),
1897
 
1898
- // Reference: src/modules/widget/components/settings/WidgetSettingsReports-Lite.vue:73
1899
- __( 'Available in PRO version', 'google-analytics-for-wordpress' ),
1900
 
1901
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:60
1902
  __( 'Enable Demographics and Interests Reports for Remarketing and Advertising', 'google-analytics-for-wordpress' ),
@@ -1976,215 +2306,120 @@ $generated_i18n_strings = array(
1976
  /* Translators: Adds a link to the documentation. */
1977
  __( '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' ),
1978
 
1979
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:105
1980
- __( 'Choose Theme', 'google-analytics-for-wordpress' ),
1981
-
1982
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:107
1983
- __( 'Widget Styling', 'google-analytics-for-wordpress' ),
1984
-
1985
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:108
1986
- __( 'Choose how you want to determine the colors, font sizes and spacing of the widget.', 'google-analytics-for-wordpress' ),
1987
-
1988
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:109
1989
- __( 'Sort By', 'google-analytics-for-wordpress' ),
1990
-
1991
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:110
1992
- __( 'Choose how you\'d like the widget to determine your popular posts.', 'google-analytics-for-wordpress' ),
1993
-
1994
- // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:106
1995
- __( 'Display Title', 'google-analytics-for-wordpress' ),
1996
-
1997
- // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:107
1998
- __( 'Widget Title', 'google-analytics-for-wordpress' ),
1999
-
2000
- // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:108
2001
- __( 'Title your widget and set its display preferences.', 'google-analytics-for-wordpress' ),
2002
-
2003
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:115
2004
- __( 'Include in Post Types', 'google-analytics-for-wordpress' ),
2005
-
2006
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:116
2007
- __( 'Exclude from specific posts', 'google-analytics-for-wordpress' ),
2008
-
2009
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:118
2010
- /* Translators: Placeholders make the text bold. */
2011
- __( 'Choose which Post Types the widget %1$sWILL%2$s be placed.', 'google-analytics-for-wordpress' ),
2012
-
2013
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:120
2014
- /* Translators: Placeholders make the text bold. */
2015
- __( 'Choose from which Posts the widget %1$sWILL NOT%2$s be placed.', 'google-analytics-for-wordpress' ),
2016
-
2017
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:122
2018
- __( 'Loading Themes', 'google-analytics-for-wordpress' ),
2019
-
2020
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:129
2021
- /* Translators: placeholders make text small. */
2022
- __( 'Default Styles %1$s- As seen above.%2$s', 'google-analytics-for-wordpress' ),
2023
-
2024
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:134
2025
- /* Translators: placeholders make text small. */
2026
- __( 'No Styles %1$s- Use your own CSS.%2$s', 'google-analytics-for-wordpress' ),
2027
-
2028
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:141
2029
- /* Translators: placeholders make text small. */
2030
- __( 'Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s', 'google-analytics-for-wordpress' ),
2031
-
2032
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:146
2033
- /* Translators: placeholders make text small. */
2034
- __( 'SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s', 'google-analytics-for-wordpress' ),
2035
-
2036
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:151
2037
- /* Translators: placeholders make text small. */
2038
- __( 'Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s', 'google-analytics-for-wordpress' ),
2039
-
2040
- // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:83
2041
- __( 'Make your MonsterInsights campaign links prettier with Pretty Links!', 'google-analytics-for-wordpress' ),
2042
-
2043
- // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:84
2044
- __( 'Pretty Links turns those ugly, long campaign links into clean, memorable, speakable, totally shareable links.', 'google-analytics-for-wordpress' ),
2045
-
2046
- // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:85
2047
- __( 'Take your MonsterInsights campaign links from our URL Builder and shorten them with Pretty Links!', 'google-analytics-for-wordpress' ),
2048
-
2049
- // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:86
2050
- __( 'Over 200,000 websites use Pretty Links!', 'google-analytics-for-wordpress' ),
2051
-
2052
- // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:87
2053
- __( 'Install Pretty Links', 'google-analytics-for-wordpress' ),
2054
-
2055
- // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:88
2056
- __( 'Pretty Links Installed & Activated', 'google-analytics-for-wordpress' ),
2057
-
2058
- // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:90
2059
- __( 'Install Pretty Links from the WordPress.org plugin repository.', 'google-analytics-for-wordpress' ),
2060
-
2061
- // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:91
2062
- __( 'Activate Pretty Links', 'google-analytics-for-wordpress' ),
2063
-
2064
- // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:92
2065
- __( 'Activating Pretty Links...', 'google-analytics-for-wordpress' ),
2066
-
2067
- // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:93
2068
- __( 'Create New Pretty Link', 'google-analytics-for-wordpress' ),
2069
 
2070
- // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:94
2071
- __( 'Create a New Pretty Link', 'google-analytics-for-wordpress' ),
2072
 
2073
- // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:95
2074
- __( 'Grab your campaign link and paste it into the Target URL field.', 'google-analytics-for-wordpress' ),
2075
 
2076
- // Reference: src/modules/settings/api/index.js:23
2077
- /* Translators: Error status and error text. */
2078
- __( 'Can\'t load settings. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2079
 
2080
- // Reference: src/modules/license/api/index.js:149
2081
- // Reference: src/modules/settings/api/index.js:27
2082
- __( 'You appear to be offline.', 'google-analytics-for-wordpress' ),
2083
 
2084
- // Reference: src/modules/settings/api/index.js:77
2085
- /* Translators: Error status and error text. */
2086
- __( 'Can\'t save settings. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2087
 
2088
- // Reference: src/modules/settings/api/index.js:81
2089
- __( 'Network error encountered. Settings not saved.', 'google-analytics-for-wordpress' ),
2090
 
2091
- // Reference: src/modules/reports/components/reports-year-in-review/ReportYearInReviewListBox.vue:38
2092
- __( 'Show', 'google-analytics-for-wordpress' ),
2093
 
2094
- // Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:26
2095
- __( 'Activating...', 'google-analytics-for-wordpress' ),
2096
 
2097
- // Reference: src/modules/addons/components/AddonButton.vue:38
2098
- // Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:103
2099
- __( 'Deactivating...', 'google-analytics-for-wordpress' ),
2100
 
2101
- // Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:30
2102
- __( 'Installing...', 'google-analytics-for-wordpress' ),
2103
 
2104
- // Reference: src/modules/addons/components/AddonButton.vue:46
2105
- // Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:109
2106
- __( 'Deactivate', 'google-analytics-for-wordpress' ),
2107
 
2108
- // Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:43
2109
- /* Translators: The status of the addon (installed/active/inactive). */
2110
- __( 'Status: %s', 'google-analytics-for-wordpress' ),
2111
 
2112
- // Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:81
2113
- __( 'Not Installed', 'google-analytics-for-wordpress' ),
2114
 
2115
- // Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:87
2116
- __( 'Network Active', 'google-analytics-for-wordpress' ),
2117
 
2118
- // Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:87
2119
- __( 'Active', 'google-analytics-for-wordpress' ),
2120
 
2121
- // Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:89
2122
- __( 'Inactive', 'google-analytics-for-wordpress' ),
2123
 
2124
- // Reference: src/modules/reports/components/reports-overview/ReportOverviewUpsellMobile-Lite.vue:21
2125
- /* Translators: Make text green. */
2126
- __( 'Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s', 'google-analytics-for-wordpress' ),
2127
 
2128
- // Reference: src/modules/license/api/index.js:118
2129
- /* Translators: Error status and error text. */
2130
- __( 'Can\'t deactivate the license. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2131
 
2132
- // Reference: src/modules/license/api/index.js:145
2133
- /* Translators: Error status and error text. */
2134
- __( 'Can\'t upgrade to PRO please try again. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2135
 
2136
- // Reference: src/modules/license/api/index.js:18
2137
- /* Translators: Error status and error text. */
2138
- __( 'Can\'t load license details. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2139
 
2140
- // Reference: src/modules/license/api/index.js:24
2141
- __( 'Error loading license details', 'google-analytics-for-wordpress' ),
2142
 
2143
- // Reference: src/modules/license/api/index.js:57
2144
- /* Translators: Error status and error text. */
2145
- __( 'Can\'t verify the license. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2146
 
2147
- // Reference: src/modules/license/api/index.js:82
2148
- /* Translators: Error status and error text. */
2149
- __( 'Can\'t validate the license. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2150
 
2151
- // Reference: src/modules/notifications/components/NotificationsIndicator.vue:19
2152
- __( 'View notifications', 'google-analytics-for-wordpress' ),
2153
 
2154
- // Reference: src/modules/addons/api/index.js:103
2155
- __( 'You appear to be offline. WPForms not installed.', 'google-analytics-for-wordpress' ),
 
2156
 
2157
- // Reference: src/modules/addons/api/index.js:132
2158
- /* Translators: Error status and error text. */
2159
- __( 'Can\'t activate addon. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2160
 
2161
- // Reference: src/modules/addons/api/index.js:136
2162
- __( 'You appear to be offline. Addon not activated.', 'google-analytics-for-wordpress' ),
 
2163
 
2164
- // Reference: src/modules/addons/api/index.js:165
2165
- /* Translators: Error status and error text. */
2166
- __( 'Can\'t deactivate addon. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2167
 
2168
- // Reference: src/modules/addons/api/index.js:169
2169
- __( 'You appear to be offline. Addon not deactivated.', 'google-analytics-for-wordpress' ),
2170
 
2171
- // Reference: src/modules/addons/api/index.js:200
2172
- /* Translators: Error status and error text. */
2173
- __( 'Can\'t install plugin. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2174
 
2175
- // Reference: src/modules/addons/api/index.js:204
2176
- __( 'You appear to be offline. Plugin not installed.', 'google-analytics-for-wordpress' ),
2177
 
2178
- // Reference: src/modules/addons/api/index.js:64
2179
- /* Translators: Error status and error text. */
2180
- __( 'Can\'t install addon. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2181
 
2182
- // Reference: src/modules/addons/api/index.js:68
2183
- __( 'You appear to be offline. Addon not installed.', 'google-analytics-for-wordpress' ),
2184
 
2185
- // Reference: src/modules/addons/api/index.js:99
2186
  /* Translators: Error status and error text. */
2187
- __( 'Can\'t install WPForms. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
 
 
 
2188
 
2189
  // Reference: src/modules/seo/components/yoast.vue:137
2190
  __( '%1$sAll-in-One SEO%2$s Makes SEO Simple. Gain Valuable Organic Traffic.', 'google-analytics-for-wordpress' ),
@@ -2192,10 +2427,10 @@ $generated_i18n_strings = array(
2192
  // Reference: src/modules/seo/components/yoast.vue:138
2193
  __( 'Automatically migrate all of your SEO settings with just 1 click!', 'google-analytics-for-wordpress' ),
2194
 
2195
- // Reference: src/modules/seo/components/aioseo.vue:155
2196
  __( '1,938', 'google-analytics-for-wordpress' ),
2197
 
2198
- // Reference: src/modules/seo/components/aioseo.vue:156
2199
  __( '2+ Million Active Installs', 'google-analytics-for-wordpress' ),
2200
 
2201
  // Reference: src/modules/seo/components/yoast.vue:143
@@ -2204,10 +2439,10 @@ $generated_i18n_strings = array(
2204
  // Reference: src/modules/seo/components/yoast.vue:144
2205
  __( 'Set up the proper SEO foundations in less than 10 minutes.', 'google-analytics-for-wordpress' ),
2206
 
2207
- // Reference: src/modules/seo/components/aioseo.vue:165
2208
  __( 'SEO Audit Checklist', 'google-analytics-for-wordpress' ),
2209
 
2210
- // Reference: src/modules/seo/components/aioseo.vue:166
2211
  __( 'Analyze your entire WordPress site to detect critical errors and get actionable insights to boost your SEO and get more traffic.', 'google-analytics-for-wordpress' ),
2212
 
2213
  // Reference: src/modules/seo/components/yoast.vue:147
@@ -2219,96 +2454,195 @@ $generated_i18n_strings = array(
2219
  // Reference: src/modules/seo/components/yoast.vue:149
2220
  __( 'Get AIOSEO for WordPress', 'google-analytics-for-wordpress' ),
2221
 
2222
- // Reference: src/modules/seo/components/aioseo.vue:180
2223
  __( 'Get the #1 Most Powerful WordPress SEO Plugin Today', 'google-analytics-for-wordpress' ),
2224
 
2225
- // Reference: src/modules/seo/components/aioseo.vue:181
2226
  __( 'Try it out today, for free.', 'google-analytics-for-wordpress' ),
2227
 
2228
- // Reference: src/modules/seo/components/aioseo.vue:184
2229
  __( 'Join 2,000,000+ Professionals who use AIOSEO to Improve Their Website Search Rankings.', 'google-analytics-for-wordpress' ),
2230
 
2231
- // Reference: src/modules/seo/components/aioseo.vue:185
2232
  __( 'Activate and Install the Plugin with just one click!', 'google-analytics-for-wordpress' ),
2233
 
2234
  // Reference: src/modules/seo/components/yoast.vue:222
2235
  __( 'Installing AIOSEO...', 'google-analytics-for-wordpress' ),
2236
 
2237
- // Reference: src/modules/seo/components/aioseo.vue:240
2238
  __( 'Congrats! All-in-One SEO Installed.', 'google-analytics-for-wordpress' ),
2239
 
2240
  // Reference: src/modules/seo/components/yoast.vue:248
2241
  __( 'Switch to AIOSEO', 'google-analytics-for-wordpress' ),
2242
 
2243
- // Reference: src/modules/seo/components/aioseo.vue:261
2244
  __( 'Installation Failed. Please refresh and try again.', 'google-analytics-for-wordpress' ),
2245
 
2246
- // Reference: src/modules/seo/components/aioseo.vue:268
2247
  __( 'Activating AIOSEO...', 'google-analytics-for-wordpress' ),
2248
 
2249
- // Reference: src/modules/seo/components/aioseo.vue:275
2250
  __( 'Activate AIOSEO', 'google-analytics-for-wordpress' ),
2251
 
2252
- // Reference: src/modules/seo/components/aioseo.vue:279
2253
  __( 'Activation Failed. Please refresh and try again.', 'google-analytics-for-wordpress' ),
2254
 
2255
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:111
2256
- __( 'Placement', 'google-analytics-for-wordpress' ),
 
2257
 
2258
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:112
2259
- __( 'Choose how you\'d like to place the widget.', 'google-analytics-for-wordpress' ),
2260
 
2261
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:113
2262
- __( 'Insert After', 'google-analytics-for-wordpress' ),
2263
 
2264
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:114
2265
- __( 'Choose where in the post body the widget will be placed.', 'google-analytics-for-wordpress' ),
2266
 
2267
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:121
2268
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:109
2269
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:136
2270
- __( 'Customize Design', 'google-analytics-for-wordpress' ),
2271
 
2272
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:123
2273
- __( 'words', 'google-analytics-for-wordpress' ),
2274
 
2275
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:124
2276
- __( 'Please select at least one post to display.', 'google-analytics-for-wordpress' ),
2277
 
2278
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:158
2279
- /* Translators: placeholders make text small. */
2280
- __( 'Automatic %1$s- The widget is automatically placed inside the post body.%2$s', 'google-analytics-for-wordpress' ),
2281
 
2282
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:163
2283
- /* Translators: placeholders make text small. */
2284
- __( 'Manual %1$s- Manually place the widget using Gutenberg blocks or using our shortcode.%2$s', 'google-analytics-for-wordpress' ),
2285
 
2286
- // Reference: src/components/TheAppFTPForm.vue:100
2287
- __( 'Proceed', 'google-analytics-for-wordpress' ),
2288
 
2289
- // Reference: src/components/TheAppFTPForm.vue:92
2290
- __( 'Connection Information', 'google-analytics-for-wordpress' ),
2291
 
2292
- // Reference: src/components/TheAppFTPForm.vue:93
2293
- __( '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' ),
2294
 
2295
- // Reference: src/components/TheAppFTPForm.vue:94
2296
- __( 'Hostname', 'google-analytics-for-wordpress' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2297
 
2298
- // Reference: src/components/TheAppFTPForm.vue:95
2299
- __( 'FTP Username', 'google-analytics-for-wordpress' ),
2300
 
2301
- // Reference: src/components/TheAppFTPForm.vue:96
2302
- __( 'FTP Password', 'google-analytics-for-wordpress' ),
2303
 
2304
- // Reference: src/components/TheAppFTPForm.vue:97
2305
- __( 'This password will not be stored on the server.', 'google-analytics-for-wordpress' ),
2306
 
2307
- // Reference: src/components/TheAppFTPForm.vue:98
2308
- __( 'Connection Type', 'google-analytics-for-wordpress' ),
2309
 
2310
- // Reference: src/components/TheAppFTPForm.vue:99
2311
- __( 'Cancel', 'google-analytics-for-wordpress' ),
2312
 
2313
  // Reference: src/modules/seo/components/aioseo.vue:149
2314
  __( 'Install All-in-One SEO', 'google-analytics-for-wordpress' ),
@@ -2376,6 +2710,28 @@ $generated_i18n_strings = array(
2376
  // Reference: src/modules/seo/components/aioseo.vue:257
2377
  __( 'Install All-in-One-SEO', 'google-analytics-for-wordpress' ),
2378
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2379
  // Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:45
2380
  __( 'Caching', 'google-analytics-for-wordpress' ),
2381
 
@@ -2409,228 +2765,113 @@ $generated_i18n_strings = array(
2409
  // Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:92
2410
  __( 'Error emptying the popular posts cache. Please try again.', 'google-analytics-for-wordpress' ),
2411
 
2412
- // Reference: src/modules/reports/components/ReportNoAuth.vue:25
2413
- __( 'You must connect with MonsterInsights before you can view reports.', 'google-analytics-for-wordpress' ),
2414
-
2415
- // Reference: src/modules/reports/components/ReportNoAuth.vue:26
2416
- __( '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' ),
2417
-
2418
- // Reference: src/modules/reports/components/ReportNoAuth.vue:28
2419
- __( 'Please ask your webmaster to connect MonsterInsights to Google Analytics.', 'google-analytics-for-wordpress' ),
2420
-
2421
- // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:46
2422
- __( 'Search Console', 'google-analytics-for-wordpress' ),
2423
-
2424
- // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:48
2425
- __( 'Forms', 'google-analytics-for-wordpress' ),
2426
-
2427
- // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:49
2428
- __( 'Real-Time', 'google-analytics-for-wordpress' ),
2429
-
2430
- // Reference: src/modules/popular-posts/components/input/PopularPostsSharedCount.vue:31
2431
- __( 'SharedCount API Key', 'google-analytics-for-wordpress' ),
2432
-
2433
- // Reference: src/modules/popular-posts/components/input/PopularPostsSharedCount.vue:32
2434
- __( 'Insert your sharedcount API key found in your %1$sSettings%2$s panel. After, click Start Indexing.', 'google-analytics-for-wordpress' ),
2435
-
2436
- // Reference: src/modules/popular-posts/components/input/PopularPostsSharedCount.vue:33
2437
- __( 'Start Indexing', 'google-analytics-for-wordpress' ),
2438
-
2439
- // Reference: src/modules/popular-posts/components/input/PopularPostsSharedCount.vue:37
2440
- __( '%1$sIndex Progress: %2$s%%.%3$s You may leave this page during indexing.', 'google-analytics-for-wordpress' ),
2441
-
2442
- // Reference: src/modules/popular-posts/components/input/PopularPostsSharedCount.vue:38
2443
- __( 'Indexing completed, counts will update automatically every day.', 'google-analytics-for-wordpress' ),
2444
-
2445
- // Reference: src/modules/popular-posts/components/input/PopularPostsPostsPicker.vue:45
2446
- __( 'Select posts/search', 'google-analytics-for-wordpress' ),
2447
-
2448
- // Reference: src/modules/popular-posts/components/input/PopularPostsPostsPicker.vue:55
2449
- __( 'Oops! No posts found.', 'google-analytics-for-wordpress' ),
2450
-
2451
- // Reference: src/modules/popular-posts/components/input/PopularPostsPostsPicker.vue:56
2452
- __( 'Search by post title', 'google-analytics-for-wordpress' ),
2453
-
2454
- // Reference: src/modules/popular-posts/components/input/PopularPostsPostsPicker.vue:92
2455
- __( 'Can\'t load posts.', 'google-analytics-for-wordpress' ),
2456
-
2457
- // Reference: src/modules/settings/components/input/SettingsInputNumber.vue:56
2458
- __( 'Reset to default', 'google-analytics-for-wordpress' ),
2459
-
2460
- // Reference: src/modules/settings/components/input/SettingsInputText.vue:51
2461
- __( 'The value entered does not match the required format', 'google-analytics-for-wordpress' ),
2462
-
2463
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetCategory-Lite.vue:24
2464
- __( 'Only Show Posts from These Categories', 'google-analytics-for-wordpress' ),
2465
-
2466
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetCategory-Lite.vue:25
2467
- __( 'Choose from which categories posts will be displayed in the widget. All categories will be used if left empty.', 'google-analytics-for-wordpress' ),
2468
-
2469
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:107
2470
- __( 'Popular Posts data can be fetched correctly', 'google-analytics-for-wordpress' ),
2471
-
2472
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:108
2473
- __( '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' ),
2474
-
2475
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:112
2476
- __( 'Close', 'google-analytics-for-wordpress' ),
2477
-
2478
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:28
2479
- __( 'Add Top 5 Posts from Google Analytics', 'google-analytics-for-wordpress' ),
2480
-
2481
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:49
2482
- __( '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.', 'google-analytics-for-wordpress' ),
2483
-
2484
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:50
2485
- __( 'Test Automated Posts', 'google-analytics-for-wordpress' ),
2486
-
2487
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:52
2488
- /* Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc. */
2489
- __( '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' ),
2490
-
2491
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:30
2492
- __( 'Automated + Curated', 'google-analytics-for-wordpress' ),
2493
-
2494
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:55
2495
- /* Translators: Placeholder adds a link to the Custom Dimensions settings. */
2496
- __( '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' ),
2497
-
2498
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:57
2499
- /* Translators: Placeholder gets replaced with current license version. */
2500
- __( 'Pro version is required.', 'google-analytics-for-wordpress' ),
2501
-
2502
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:95
2503
- __( 'Verifying Popular Posts data', 'google-analytics-for-wordpress' ),
2504
-
2505
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:51
2506
- __( 'Title', 'google-analytics-for-wordpress' ),
2507
-
2508
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:49
2509
- __( 'Color', 'google-analytics-for-wordpress' ),
2510
-
2511
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:50
2512
- __( 'Size', 'google-analytics-for-wordpress' ),
2513
-
2514
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:54
2515
- __( 'Border', 'google-analytics-for-wordpress' ),
2516
-
2517
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:141
2518
- __( 'Author/Date', 'google-analytics-for-wordpress' ),
2519
-
2520
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:52
2521
- __( 'Label', 'google-analytics-for-wordpress' ),
2522
-
2523
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:53
2524
- __( 'Background', 'google-analytics-for-wordpress' ),
2525
-
2526
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:144
2527
- __( 'Wide-Layout Options', 'google-analytics-for-wordpress' ),
2528
-
2529
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:145
2530
- __( 'Adjust the number of columns displayed when the widget is placed in a wide container.', 'google-analytics-for-wordpress' ),
2531
-
2532
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:146
2533
- __( 'Display Options', 'google-analytics-for-wordpress' ),
2534
 
2535
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:147
2536
- __( 'Choose which content you would like displayed in the widget.', 'google-analytics-for-wordpress' ),
2537
 
2538
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:148
2539
- __( 'Display Author', 'google-analytics-for-wordpress' ),
2540
 
2541
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:149
2542
- __( 'Display Date', 'google-analytics-for-wordpress' ),
2543
 
2544
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:150
2545
- __( 'Display Comments', 'google-analytics-for-wordpress' ),
2546
 
2547
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:151
2548
- __( 'Comments', 'google-analytics-for-wordpress' ),
2549
 
2550
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:152
2551
- __( 'Post Count', 'google-analytics-for-wordpress' ),
2552
 
2553
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:153
2554
- __( 'Choose how many posts you’d like displayed in the widget.', 'google-analytics-for-wordpress' ),
2555
 
2556
- // Reference: src/modules/settings/components/input/tab-publisher/monsterinsights-SettingsInputFbia-Lite.vue:22
2557
- __( 'Facebook Instant Articles', 'google-analytics-for-wordpress' ),
2558
 
2559
- // Reference: src/modules/settings/components/input/tab-publisher/monsterinsights-SettingsInputFbia-Lite.vue:23
2560
- __( 'Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to MonsterInsights Pro.', 'google-analytics-for-wordpress' ),
2561
 
2562
- // Reference: src/modules/popular-posts/components/PopularPostsProductsUpsell.vue:19
2563
- __( 'This feature requires MonsterInsights Pro', 'google-analytics-for-wordpress' ),
 
2564
 
2565
- // Reference: src/modules/popular-posts/components/PopularPostsProductsUpsell.vue:20
2566
- __( 'By upgrading you will also get access to advanced eCommerce tracking, Custom Dimensions and more.', 'google-analytics-for-wordpress' ),
 
2567
 
2568
- // Reference: src/modules/popular-posts/components/PopularPostsProductsUpsell.vue:21
2569
- __( 'Upgrade to Pro and Unlock Popular Products', 'google-analytics-for-wordpress' ),
2570
 
2571
- // Reference: src/modules/popular-posts/components/PopularPostsProductsUpsell.vue:22
2572
- __( 'View all Pro features', 'google-analytics-for-wordpress' ),
 
2573
 
2574
- // Reference: src/modules/settings/components/input/tab-engagement/SettingsInputScroll-Lite.vue:18
2575
- __( 'Scroll Tracking', 'google-analytics-for-wordpress' ),
 
2576
 
2577
- // Reference: src/modules/settings/components/input/tab-engagement/SettingsInputScroll-Lite.vue:19
2578
- __( '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' ),
 
2579
 
2580
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:60
2581
- __( 'Theme Preview', 'google-analytics-for-wordpress' ),
 
2582
 
2583
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:61
2584
- __( 'Wide', 'google-analytics-for-wordpress' ),
 
2585
 
2586
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:62
2587
- __( 'Narrow', 'google-analytics-for-wordpress' ),
2588
 
2589
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemePicker.vue:70
2590
- /* Translators: Page number of total pages. 1 & 2 make the first part of the text bold. */
2591
- __( '%1$sPage %3$s%2$s of %4$s', 'google-analytics-for-wordpress' ),
2592
 
2593
- // Reference: src/components/TheFloatingBar-Lite.vue:29
2594
- /* Translators: Placeholders are used for making text bold and adding a link. */
2595
- __( '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' ),
2596
 
2597
- // Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:171
2598
- /* Translators: The name of the field that is throwing a validation error. */
2599
- __( '%s can\'t be empty.', 'google-analytics-for-wordpress' ),
2600
 
2601
- // Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:192
2602
- __( 'Duplicate values are not allowed.', 'google-analytics-for-wordpress' ),
2603
 
2604
- // Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:54
2605
- __( 'You can add maximum 5 items.', 'google-analytics-for-wordpress' ),
2606
 
2607
- // Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:58
2608
- __( 'At least 0 item required.', 'google-analytics-for-wordpress' ),
2609
 
2610
- // Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:63
2611
- __( 'Add Another Link Path', 'google-analytics-for-wordpress' ),
 
2612
 
2613
- // Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:64
2614
- __( 'Remove row', 'google-analytics-for-wordpress' ),
 
2615
 
2616
- // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputPerformance-Lite.vue:18
2617
- __( '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' ),
2618
 
2619
- // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:39
2620
- __( 'Usage Tracking', 'google-analytics-for-wordpress' ),
2621
 
2622
- // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:40
2623
- __( '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' ),
2624
 
2625
- // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:41
2626
- __( 'Allow usage tracking', 'google-analytics-for-wordpress' ),
2627
 
2628
- // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:43
2629
- /* Translators: Add links to documentation. */
2630
- __( 'Complete documentation on usage tracking is available %1$shere%2$s.', 'google-analytics-for-wordpress' ),
2631
 
2632
- // Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:89
2633
- __( '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' ),
2634
 
2635
  // Reference: src/modules/seo/components/common/testimonials.vue:43
2636
  __( 'All-in-One SEO is a great product. I have been using it on all my WP sites for several years. I highly recommend it.', 'google-analytics-for-wordpress' ),
@@ -2650,50 +2891,23 @@ $generated_i18n_strings = array(
2650
  // Reference: src/modules/seo/components/common/testimonials.vue:48
2651
  __( 'CEO, Solergo', 'google-analytics-for-wordpress' ),
2652
 
2653
- // Reference: src/modules/seo/components/common/client-logos.vue:39
2654
- __( '2,000,000+ use AIOSEO to Improve Their Website Search Rankings', 'google-analytics-for-wordpress' ),
2655
-
2656
- // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputPdfReports-Lite.vue:16
2657
- __( 'Upgrade', 'google-analytics-for-wordpress' ),
2658
-
2659
- // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputEmailSummaries-Lite.vue:17
2660
- __( 'Our email summaries feature sends a weekly summary of the most important site analytics information.', 'google-analytics-for-wordpress' ),
2661
-
2662
- // Reference: src/modules/settings/components/input/tab-publisher/monsterinsights-SettingsInputAmp-Lite.vue:22
2663
- __( 'Google AMP', 'google-analytics-for-wordpress' ),
2664
-
2665
- // Reference: src/modules/settings/components/input/tab-publisher/monsterinsights-SettingsInputAmp-Lite.vue:23
2666
- __( 'Want to use track users visiting your AMP pages? By upgrading to MonsterInsights Pro, you can enable AMP page tracking.', 'google-analytics-for-wordpress' ),
2667
-
2668
- // Reference: src/modules/settings/components/input/tab-publisher/monsterinsights-SettingsInputAds-Lite.vue:22
2669
- __( 'Ads Tracking', 'google-analytics-for-wordpress' ),
2670
-
2671
- // Reference: src/modules/settings/components/input/tab-publisher/monsterinsights-SettingsInputAds-Lite.vue:23
2672
- __( 'Add Ads tracking to see who\'s clicking on your Google Ads, so you can increase your revenue.', 'google-analytics-for-wordpress' ),
2673
-
2674
- // Reference: src/modules/settings/components/input/SettingsInputSelect.vue:62
2675
- __( 'No options available', 'google-analytics-for-wordpress' ),
2676
-
2677
- // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputPdfReports-Lite.vue:17
2678
- __( 'Download the analytics reports instantly from the WordPress dashboard as PDF files and share them with anyone.', 'google-analytics-for-wordpress' ),
2679
-
2680
- // Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:14
2681
- __( 'Hide dashboard widget', 'google-analytics-for-wordpress' ),
2682
 
2683
- // Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:31
2684
- __( 'Are you sure you want to hide the MonsterInsights Dashboard Widget? ', 'google-analytics-for-wordpress' ),
2685
 
2686
- // Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:33
2687
- __( 'Yes, hide it!', 'google-analytics-for-wordpress' ),
2688
 
2689
- // Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:34
2690
- __( 'No, cancel!', 'google-analytics-for-wordpress' ),
2691
 
2692
- // Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:40
2693
- __( 'MonsterInsights Widget Hidden', 'google-analytics-for-wordpress' ),
2694
 
2695
- // Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:41
2696
- __( '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' ),
2697
 
2698
  // Reference: src/modules/settings/components/input/tab-engagement/SettingsInputEUCompliance-Lite.vue:23
2699
  __( 'The EU Compliance addon allows you to improve compliance with GDPR
@@ -2712,393 +2926,344 @@ $generated_i18n_strings = array(
2712
  /* Translators: Placeholder gets replaced with default GA js function. */
2713
  __( 'This enables MonsterInsights to work with plugins that use %1$s and don\'t support %2$s', 'google-analytics-for-wordpress' ),
2714
 
2715
- // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:19
2716
- __( 'Thank you for being a loyal MonsterInsights Lite user.', 'google-analytics-for-wordpress' ),
2717
-
2718
- // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:20
2719
- __( 'Upgrade to MonsterInsights Pro and unlock all the awesome features.', 'google-analytics-for-wordpress' ),
2720
-
2721
- // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:22
2722
- /* Translators: Gets replaced with the coupon code. */
2723
- __( 'Use coupon code %s to get 50%% off.', 'google-analytics-for-wordpress' ),
2724
-
2725
- // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:24
2726
- __( 'Dashboard widget', 'google-analytics-for-wordpress' ),
2727
-
2728
- // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:27
2729
- __( 'Enhanced Ecommerce', 'google-analytics-for-wordpress' ),
2730
-
2731
- // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:28
2732
- __( 'Banner Ads', 'google-analytics-for-wordpress' ),
2733
-
2734
- // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:32
2735
- __( 'SEO Score Tracking', 'google-analytics-for-wordpress' ),
2736
-
2737
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:47
2738
- __( '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' ),
2739
-
2740
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:48
2741
- __( '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' ),
2742
-
2743
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:55
2744
- __( 'Icon', 'google-analytics-for-wordpress' ),
2745
-
2746
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:29
2747
- __( 'Pro version is required', 'google-analytics-for-wordpress' ),
2748
-
2749
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:32
2750
- /* Translators: Placeholder adds a link to the Custom Dimensions settings. */
2751
- __( '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' ),
2752
-
2753
- // Reference: src/modules/settings/components/input/SettingsInputNumber.vue:58
2754
- /* Translators: Minimum and maximum number that can be used. */
2755
- __( 'Please enter a value between %1$s and %2$s', 'google-analytics-for-wordpress' ),
2756
-
2757
- // Reference: src/modules/settings/components/input/SettingsInputNumber.vue:60
2758
- /* Translators: The minimum set value. */
2759
- __( 'Please enter a value higher than %s', 'google-analytics-for-wordpress' ),
2760
-
2761
- // Reference: src/modules/settings/components/input/SettingsInputNumber.vue:62
2762
- /* Translators: The maximum set value. */
2763
- __( 'Please enter a value lower than %s', 'google-analytics-for-wordpress' ),
2764
-
2765
- // Reference: src/modules/settings/components/input/SettingsInputNumber.vue:63
2766
- __( 'Please enter a number', 'google-analytics-for-wordpress' ),
2767
-
2768
- // Reference: src/modules/settings/components/input/SettingsInputNumber.vue:64
2769
- __( 'Value has to be a round number', 'google-analytics-for-wordpress' ),
2770
 
2771
- // Reference: src/modules/popular-posts/components/input/PopularPostsMultipleEntries-Lite.vue:21
2772
- __( 'Multiple Entries', 'google-analytics-for-wordpress' ),
2773
 
2774
- // Reference: src/modules/popular-posts/components/input/PopularPostsMultipleEntries-Lite.vue:22
2775
- __( 'Total Number of Widgets to Show', 'google-analytics-for-wordpress' ),
2776
 
2777
- // Reference: src/modules/popular-posts/components/input/PopularPostsMultipleEntries-Lite.vue:23
2778
- __( 'Choose how many widgets will be placed in a single Post.', 'google-analytics-for-wordpress' ),
2779
 
2780
- // Reference: src/modules/popular-posts/components/input/PopularPostsMultipleEntries-Lite.vue:24
2781
- __( 'Minimum Distance Between Widgets', 'google-analytics-for-wordpress' ),
2782
 
2783
- // Reference: src/modules/popular-posts/components/input/PopularPostsMultipleEntries-Lite.vue:25
2784
- __( 'Choose the distance between widgets.', 'google-analytics-for-wordpress' ),
2785
 
2786
- // Reference: src/modules/popular-posts/components/input/PopularPostsMultipleEntries-Lite.vue:26
2787
- __( 'Minimum Word Count to Display Multiple Widgets', 'google-analytics-for-wordpress' ),
2788
 
2789
- // Reference: src/modules/popular-posts/components/input/PopularPostsMultipleEntries-Lite.vue:27
2790
- __( 'Choose the minimum word count for a Post to have multiple entries.', 'google-analytics-for-wordpress' ),
2791
 
2792
- // Reference: src/modules/wizard-onboarding/components/TheWizardHeader.vue:24
2793
- __( 'Exit Setup', 'google-analytics-for-wordpress' ),
2794
 
2795
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:101
2796
- __( 'Automatic Placement', 'google-analytics-for-wordpress' ),
2797
 
2798
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:102
2799
- __( 'Display using Gutenberg Blocks', 'google-analytics-for-wordpress' ),
2800
 
2801
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:103
2802
- __( 'Embed Options', 'google-analytics-for-wordpress' ),
2803
 
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:105
2808
- __( 'Using the Gutenberg Block', 'google-analytics-for-wordpress' ),
2809
 
2810
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:106
2811
- __( 'Using Automatic Embed', 'google-analytics-for-wordpress' ),
2812
 
2813
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:108
2814
- __( '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.', 'google-analytics-for-wordpress' ),
2815
 
2816
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:109
2817
- __( '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.', 'google-analytics-for-wordpress' ),
2818
 
2819
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:110
2820
- __( 'Learn how to insert the Popular Posts Widget using a shortcode. To style this widget use the Customize Design panel above.', 'google-analytics-for-wordpress' ),
2821
 
2822
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:111
2823
- __( '%1$sWatch Video%2$s - How to Add the Popular Posts widget using Gutenberg', 'google-analytics-for-wordpress' ),
2824
 
2825
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:113
2826
- __( '%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page.', 'google-analytics-for-wordpress' ),
2827
 
2828
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:114
2829
- __( '%1$sStep 2%2$s - Search for “Popular Posts”.', 'google-analytics-for-wordpress' ),
2830
 
2831
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:115
2832
- __( '%1$sStep 3%2$s - Style the widget using the Block Settings sidebar.', 'google-analytics-for-wordpress' ),
2833
 
2834
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:118
2835
- __( '%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' ),
2836
 
2837
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:119
2838
- __( '%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.', 'google-analytics-for-wordpress' ),
2839
 
2840
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:120
2841
- __( '%1$sStep 3%2$s - The widget options should automatically expand allowing you to customize the design.', 'google-analytics-for-wordpress' ),
2842
 
2843
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:122
2844
- __( 'Display using a Shortcode', 'google-analytics-for-wordpress' ),
2845
 
2846
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:123
2847
- __( 'Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin.', 'google-analytics-for-wordpress' ),
2848
 
2849
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:124
2850
- __( 'Copy Shortcode', 'google-analytics-for-wordpress' ),
 
2851
 
2852
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:125
2853
- __( '%1$sWatch Video%2$s - How to Add the Popular Posts widget using our Shortcode', 'google-analytics-for-wordpress' ),
2854
 
2855
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:126
2856
- __( 'Enable Automatic Placement', 'google-analytics-for-wordpress' ),
 
2857
 
2858
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:127
2859
- __( 'Display in a Sidebar', 'google-analytics-for-wordpress' ),
 
2860
 
2861
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:128
2862
- __( 'Learn how to insert the Popular Posts Widget into a Sidebar. To style this widget use the Customize Design panel above.', 'google-analytics-for-wordpress' ),
2863
 
2864
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:129
2865
- __( 'Watch Video - How to Add the Popular Posts widget using Widgets', 'google-analytics-for-wordpress' ),
2866
 
2867
- // Reference: src/modules/popular-posts/components/input/PopularPostsCacheInterval-Lite.vue:14
2868
- __( 'Days', 'google-analytics-for-wordpress' ),
2869
 
2870
- // Reference: src/modules/popular-posts/components/input/PopularPostsCacheInterval-Lite.vue:19
2871
- /* Translators: placeholders make text small. */
2872
- __( '7 days', 'google-analytics-for-wordpress' ),
2873
 
2874
- // Reference: src/modules/popular-posts/components/input/PopularPostsCacheInterval-Lite.vue:23
2875
- __( '30 days', 'google-analytics-for-wordpress' ),
2876
 
2877
- // Reference: src/modules/popular-posts/components/input/PopularPostsCacheInterval-Lite.vue:28
2878
- __( 'Custom', 'google-analytics-for-wordpress' ),
2879
 
2880
- // Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:28
2881
- __( 'Allow Usage Tracking', 'google-analytics-for-wordpress' ),
2882
 
2883
- // Reference: src/modules/popular-posts/components/PopularPostsUpgradeOverlay.vue:23
2884
- __( 'Unlock with %s', 'google-analytics-for-wordpress' ),
2885
 
2886
- // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:30
2887
- /* Translators: Make text green and add smiley face. */
2888
- __( 'You\'re using %1$sMonsterInsights Lite%2$s - no license needed. Enjoy! %3$s', 'google-analytics-for-wordpress' ),
2889
 
2890
- // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:32
2891
- /* Translators: Add link to upgrade. */
2892
- __( 'To unlock more features consider %1$supgrading to PRO%2$s.', 'google-analytics-for-wordpress' ),
2893
 
2894
- // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:34
2895
- /* Translators: Make text green. */
2896
- __( 'As a valued MonsterInsights Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!', 'google-analytics-for-wordpress' ),
2897
 
2898
- // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:35
2899
- __( 'Unlock PRO Features Now', 'google-analytics-for-wordpress' ),
2900
 
2901
- // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:36
2902
- __( 'Paste your license key here', 'google-analytics-for-wordpress' ),
2903
 
2904
- // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:37
2905
- __( 'Verify', 'google-analytics-for-wordpress' ),
 
2906
 
2907
- // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:39
2908
- /* Translators: Add link to retrieve license from account area. */
2909
- __( 'Already purchased? Simply enter your license key below to connect with MonsterInsights PRO! %1$sRetrieve your license key%2$s.', 'google-analytics-for-wordpress' ),
2910
 
2911
- // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:69
2912
- __( 'There was an error unlocking MonsterInsights PRO please try again or install manually.', 'google-analytics-for-wordpress' ),
 
2913
 
2914
- // Reference: src/modules/reports/components/ReportInfobox.vue:40
2915
- /* Translators: Number of days. */
2916
- __( 'vs. Previous Day', 'google-analytics-for-wordpress' ),
2917
 
2918
- // Reference: src/modules/reports/components/ReportInfobox.vue:57
2919
- __( 'No change', 'google-analytics-for-wordpress' ),
2920
 
2921
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:100
2922
- __( 'Warning: If you use a manual GA4 Measurement ID, you won\'t be able to use any of the reporting and some of the tracking features. Your Measurement ID should look like G-XXXXXXXXXX where the X\'s are numbers.', 'google-analytics-for-wordpress' ),
2923
 
2924
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:101
2925
- __( 'Or manually enter UA code (limited functionality)', 'google-analytics-for-wordpress' ),
2926
 
2927
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:102
2928
- __( 'Dual Tracking Profile', 'google-analytics-for-wordpress' ),
2929
 
2930
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:104
2931
- __( 'The dual tracking feature allows you to continue tracking this site into an existing GAv3 property so you can continue to use the GA reports you are used to already. Learn more about this feature %1$shere%2$s.', 'google-analytics-for-wordpress' ),
2932
 
2933
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:108
2934
- __( 'Your Universal Analytics code should look like UA-XXXXXXXXXX where the X\'s are numbers.', 'google-analytics-for-wordpress' ),
2935
 
2936
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:110
2937
- __( 'The dual tracking feature allows you to begin tracking this site into a GAv4 property to take advantage of the new GAv4 analysis tools. Learn more about this feature %1$shere%2$s.', 'google-analytics-for-wordpress' ),
 
2938
 
2939
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:114
2940
- __( 'Your Measurement ID should look like G-XXXXXXXXXX where the X\'s are numbers.', 'google-analytics-for-wordpress' ),
 
2941
 
2942
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:115
2943
- __( 'Measurement Protocol API Secret', 'google-analytics-for-wordpress' ),
 
2944
 
2945
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:117
2946
- __( 'The Measurement Protocol API secret allows your site to send tracking data to Google Analytics. To retrieve your Measurement Protocol API Secret, follow %1$sthis guide%2$s.', 'google-analytics-for-wordpress' ),
2947
 
2948
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:129
2949
- __( 'Force Deauthenticate', 'google-analytics-for-wordpress' ),
2950
 
2951
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:129
2952
- __( 'Disconnect MonsterInsights', 'google-analytics-for-wordpress' ),
 
2953
 
2954
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:182
2955
- __( 'Authenticating', 'google-analytics-for-wordpress' ),
2956
 
2957
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:236
2958
- __( 'Verifying Credentials', 'google-analytics-for-wordpress' ),
2959
 
2960
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:251
2961
- __( 'Your site is connected to MonsterInsights!', 'google-analytics-for-wordpress' ),
2962
 
2963
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:269
2964
- __( 'Deauthenticating', 'google-analytics-for-wordpress' ),
2965
 
2966
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:287
2967
- __( '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' ),
2968
 
2969
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:90
2970
- __( 'Connect MonsterInsights', 'google-analytics-for-wordpress' ),
2971
 
2972
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:91
2973
- __( 'Verify Credentials', 'google-analytics-for-wordpress' ),
2974
 
2975
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:93
2976
- __( 'Website Profile', 'google-analytics-for-wordpress' ),
2977
 
2978
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:94
2979
- __( 'Active Profile', 'google-analytics-for-wordpress' ),
 
2980
 
2981
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:95
2982
- __( 'Your website profile has been set at the network level of your WordPress Multisite.', 'google-analytics-for-wordpress' ),
2983
 
2984
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:96
2985
- __( 'If you would like to use a different profile for this subsite, you can authenticate below.', 'google-analytics-for-wordpress' ),
2986
 
2987
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:97
2988
- __( 'Manually enter your UA code', 'google-analytics-for-wordpress' ),
2989
 
2990
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:98
2991
- __( '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' ),
2992
 
2993
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:99
2994
- __( 'Manually enter your GA4 Measurement ID', 'google-analytics-for-wordpress' ),
2995
 
2996
- // Reference: src/modules/widget/components/WidgetTips.vue:19
2997
- __( 'Forms Tracking help you see who’s viewing your forms, so you can increase conversions.', 'google-analytics-for-wordpress' ),
2998
 
2999
- // Reference: src/modules/widget/components/WidgetTips.vue:24
3000
- __( 'Custom Dimensions show you popular categories, best time to publish, focus keywords, etc.', 'google-analytics-for-wordpress' ),
3001
 
3002
- // Reference: src/modules/widget/components/WidgetTips.vue:29
3003
- __( 'Make Google Analytics GDPR compliant with our EU Compliance addon.', 'google-analytics-for-wordpress' ),
3004
 
3005
- // Reference: src/modules/widget/components/WidgetTips.vue:34
3006
- __( 'Get real-time Google Analytics report right inside your WordPress dashboard.', 'google-analytics-for-wordpress' ),
3007
 
3008
- // Reference: src/modules/widget/components/WidgetTips.vue:39
3009
- __( 'Use Google Optimize to easily perform A/B split tests on your site.', 'google-analytics-for-wordpress' ),
3010
 
3011
- // Reference: src/modules/widget/components/WidgetTips.vue:44
3012
- __( 'See all your important store metrics in one place with Enhanced Ecommerce Tracking.', 'google-analytics-for-wordpress' ),
3013
 
3014
- // Reference: src/modules/widget/components/WidgetTips.vue:49
3015
- __( 'Unlock search console report to see your top performing keywords in Google.', 'google-analytics-for-wordpress' ),
3016
 
3017
- // Reference: src/modules/widget/components/WidgetTips.vue:54
3018
- __( 'Get Page Insights to see important metrics for individual posts / pages in WordPress.', 'google-analytics-for-wordpress' ),
 
3019
 
3020
- // Reference: src/modules/widget/components/WidgetTips.vue:59
3021
- __( 'Publishers Report shows your top performing pages, audience demographics, and more.', 'google-analytics-for-wordpress' ),
3022
 
3023
- // Reference: src/modules/widget/components/WidgetTips.vue:64
3024
- __( 'Get Scroll-Depth tracking to see how far users scroll on your pages before leaving.', 'google-analytics-for-wordpress' ),
3025
 
3026
- // Reference: src/modules/widget/components/WidgetTips.vue:69
3027
- __( 'Upgrade to Pro »', 'google-analytics-for-wordpress' ),
3028
 
3029
- // Reference: src/modules/widget/components/WidgetTips.vue:70
3030
- __( 'Pro Tip:', 'google-analytics-for-wordpress' ),
3031
 
3032
- // Reference: src/modules/reports/components/reports-overview/monsterinsights-ReportOverviewDatePicker-Lite.vue:50
3033
- /* Translators: Placeholder adds a line break. */
3034
- __( 'You can customize your %sdate range only in the PRO version.', 'google-analytics-for-wordpress' ),
3035
 
3036
- // Reference: src/modules/reports/components/monsterinsights-ReportsPdfExport-Lite.vue:42
3037
- __( 'Export PDF Report', 'google-analytics-for-wordpress' ),
 
3038
 
3039
- // Reference: src/modules/reports/components/monsterinsights-ReportsPdfExport-Lite.vue:50
3040
- __( 'You can export PDF reports only in the PRO version.', 'google-analytics-for-wordpress' ),
3041
 
3042
- // Reference: src/modules/reports/components/reports-overview/monsterinsights-ReportOverviewUpsell-Lite.vue:26
3043
- __( 'Upgrade to MonsterInsights Pro to Unlock More Actionable Insights', 'google-analytics-for-wordpress' ),
3044
 
3045
- // Reference: src/modules/reports/components/reports-overview/monsterinsights-ReportOverviewUpsell-Lite.vue:27
3046
- __( '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' ),
3047
 
3048
- // Reference: src/modules/reports/components/reports-overview/monsterinsights-ReportOverviewUpsell-Lite.vue:28
3049
- __( 'Upgrade to MonsterInsights Pro and Save 50% OFF!', 'google-analytics-for-wordpress' ),
3050
 
3051
- // Reference: src/modules/reports/components/reports-overview/monsterinsights-ReportOverviewUpsell-Lite.vue:30
3052
- /* Translators: Makes text bold. */
3053
- __( 'Use coupon code %1$sLITEUPGRADE%2$s', 'google-analytics-for-wordpress' ),
3054
 
3055
- // Reference: src/modules/auth/api/index.js:119
3056
- /* Translators: Error status and error text. */
3057
- __( 'Can\'t deauthenticate. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
3058
 
3059
- // Reference: src/modules/auth/api/index.js:17
3060
- /* Translators: Error status and error text. */
3061
- __( 'Can\'t load authentication details. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
3062
 
3063
- // Reference: src/modules/auth/api/index.js:236
3064
- __( 'You appear to be offline. Settings not saved.', 'google-analytics-for-wordpress' ),
 
3065
 
3066
- // Reference: src/modules/auth/api/index.js:42
3067
- /* Translators: Error status and error text. */
3068
- __( 'Can\'t authenticate. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
3069
 
3070
- // Reference: src/modules/auth/api/index.js:67
3071
- /* Translators: Error status and error text. */
3072
- __( 'Can\'t reauthenticate. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
3073
 
3074
- // Reference: src/modules/auth/api/index.js:90
3075
- /* Translators: Error status and error text. */
3076
- __( 'Can\'t verify credentials. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
3077
 
3078
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:32
3079
- __( 'Welcome to MonsterInsights!', 'google-analytics-for-wordpress' ),
3080
 
3081
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:33
3082
- __( 'Let\'s get you set up.', 'google-analytics-for-wordpress' ),
 
3083
 
3084
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:55
3085
- __( 'Save and Continue', 'google-analytics-for-wordpress' ),
 
3086
 
3087
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:35
3088
- __( 'Which category best describes your website?', 'google-analytics-for-wordpress' ),
3089
 
3090
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:36
3091
- __( 'We will recommend the optimal settings for MonsterInsights based on your choice.', 'google-analytics-for-wordpress' ),
3092
 
3093
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:40
3094
- __( 'Business Website', 'google-analytics-for-wordpress' ),
3095
 
3096
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:45
3097
- /* Translators: Make text bold. */
3098
- __( 'Publisher %1$s(Blog)%2$s', 'google-analytics-for-wordpress' ),
3099
 
3100
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:49
3101
- __( 'Ecommerce', 'google-analytics-for-wordpress' ),
3102
 
3103
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:77
3104
  __( 'Display Method', 'google-analytics-for-wordpress' ),
@@ -3127,174 +3292,147 @@ $generated_i18n_strings = array(
3127
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:92
3128
  __( '%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using our Shortcode', 'google-analytics-for-wordpress' ),
3129
 
3130
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:40
3131
- __( 'MonsterInsights Recommends WPForms', 'google-analytics-for-wordpress' ),
3132
-
3133
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:41
3134
- __( 'Built by the folks behind MonsterInsights, WPForms is the most beginner friendly form plugin in the market.', 'google-analytics-for-wordpress' ),
3135
-
3136
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:42
3137
- __( 'Used on over 4,000,000 websites!', 'google-analytics-for-wordpress' ),
3138
-
3139
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:43
3140
- __( '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' ),
3141
-
3142
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:44
3143
- __( 'Skip this Step', 'google-analytics-for-wordpress' ),
3144
-
3145
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:45
3146
- __( 'Continue & Install WPForms', 'google-analytics-for-wordpress' ),
3147
-
3148
- // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:31
3149
- __( 'Awesome, You\'re All Set!', 'google-analytics-for-wordpress' ),
3150
-
3151
- // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:32
3152
- __( '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' ),
3153
-
3154
- // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:34
3155
- /* Translators: Make text bold. */
3156
- __( '%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' ),
3157
 
3158
- // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:36
3159
- /* Translators: Link to our blog. */
3160
- __( '%1$sSubscribe to the MonsterInsights blog%2$s for tips on how to get more traffic and grow your business.', 'google-analytics-for-wordpress' ),
3161
 
3162
- // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:37
3163
- __( 'Finish Setup & Exit Wizard', 'google-analytics-for-wordpress' ),
3164
 
3165
- // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:50
3166
- __( 'Checking your website...', 'google-analytics-for-wordpress' ),
3167
 
3168
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:48
3169
- __( 'Connect MonsterInsights to Your Website', 'google-analytics-for-wordpress' ),
3170
 
3171
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:49
3172
- __( 'MonsterInsights connects Google Analytics to WordPress and shows you stats that matter.', 'google-analytics-for-wordpress' ),
3173
 
3174
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:52
3175
- __( 'Whoops, something went wrong and we weren\'t able to connect to MonsterInsights. Please enter your Google UA code manually.', 'google-analytics-for-wordpress' ),
3176
 
3177
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:81
3178
- __( 'UA code can\'t be empty', 'google-analytics-for-wordpress' ),
3179
 
3180
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:93
3181
- __( 'Saving UA code...', 'google-analytics-for-wordpress' ),
3182
 
3183
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:53
3184
- __( 'Recommended Settings', 'google-analytics-for-wordpress' ),
3185
 
3186
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:54
3187
- __( 'MonsterInsights recommends the following settings based on your configuration.', 'google-analytics-for-wordpress' ),
3188
 
3189
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:55
3190
- __( 'Events Tracking', 'google-analytics-for-wordpress' ),
3191
 
3192
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:56
3193
- __( 'Must have for all click tracking on site.', 'google-analytics-for-wordpress' ),
3194
 
3195
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:57
3196
- __( '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' ),
3197
 
3198
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:58
3199
- __( 'Enhanced Link Attribution', 'google-analytics-for-wordpress' ),
3200
 
3201
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:59
3202
- __( 'Improves the accuracy of your In-Page Analytics.', 'google-analytics-for-wordpress' ),
3203
 
3204
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:60
3205
- __( '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' ),
3206
 
3207
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:61
3208
- __( 'Install Updates Automatically', 'google-analytics-for-wordpress' ),
3209
 
3210
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:62
3211
- __( 'Get the latest features, bug fixes, and security updates as they are released.', 'google-analytics-for-wordpress' ),
3212
 
3213
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:63
3214
- __( 'To ensure you get the latest bug fixes 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' ),
3215
 
3216
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:64
3217
- __( 'File Download Tracking', 'google-analytics-for-wordpress' ),
3218
 
3219
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:65
3220
- __( 'Helps you see file downloads data.', 'google-analytics-for-wordpress' ),
3221
 
3222
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:66
3223
- __( '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' ),
3224
 
3225
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:83
3226
- __( 'Helps you increase affiliate revenue.', 'google-analytics-for-wordpress' ),
3227
 
3228
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:84
3229
- __( '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' ),
3230
 
3231
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:85
3232
- __( 'Affiliate Link Tracking', 'google-analytics-for-wordpress' ),
3233
 
3234
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:86
3235
- __( 'Who Can See Reports', 'google-analytics-for-wordpress' ),
3236
 
3237
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:87
3238
- __( 'These user roles will be able to access MonsterInsights\' reports in the WordPress admin area.', 'google-analytics-for-wordpress' ),
3239
 
3240
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:89
3241
- __( 'Save and continue', 'google-analytics-for-wordpress' ),
3242
 
3243
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:91
3244
- __( 'Events Tracking is enabled the moment you set up MonsterInsights', 'google-analytics-for-wordpress' ),
3245
 
3246
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:92
3247
- __( 'Enhanced Link Attribution is enabled the moment you set up MonsterInsights', 'google-analytics-for-wordpress' ),
3248
 
3249
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:93
3250
- __( '+ Add Role', 'google-analytics-for-wordpress' ),
3251
 
3252
- // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:45
3253
- __( 'Recommended Addons', 'google-analytics-for-wordpress' ),
3254
 
3255
- // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:46
3256
- __( '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' ),
3257
 
3258
- // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:47
3259
- __( 'Other Addons', 'google-analytics-for-wordpress' ),
3260
 
3261
- // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:48
3262
- __( 'View all MonsterInsights addons', 'google-analytics-for-wordpress' ),
3263
 
3264
- // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingImprove-Lite.vue:17
3265
- __( 'Help Us Improve', 'google-analytics-for-wordpress' ),
3266
 
3267
- // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingImprove-Lite.vue:18
3268
- __( 'Help us better understand our users and their website needs.', 'google-analytics-for-wordpress' ),
3269
 
3270
- // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingImprove-Lite.vue:20
3271
- /* Translators: Adds a link to the documentation. */
3272
- __( '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' ),
3273
 
3274
- // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:48
3275
- __( 'Website profile', 'google-analytics-for-wordpress' ),
3276
 
3277
- // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:49
3278
- __( 'Active profile', 'google-analytics-for-wordpress' ),
3279
 
3280
- // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:52
3281
- __( 'Skip and Keep Connection', 'google-analytics-for-wordpress' ),
3282
 
3283
- // Reference: src/modules/wizard-onboarding/api/index.js:18
3284
- /* Translators: Error status and error text. */
3285
- __( 'Can\'t load errors. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
3286
 
3287
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEcommerce-Lite.vue:52
3288
- __( 'Affiliate Tracking', 'google-analytics-for-wordpress' ),
3289
 
3290
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEcommerce-Lite.vue:53
3291
- __( 'Automatically Track Affiliate Sales', 'google-analytics-for-wordpress' ),
3292
 
3293
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEcommerce-Lite.vue:54
3294
- __( 'The MonsterInsights eCommerce addon works with EasyAffiliate to automatically attribute orders originating from an EasyAffiliate link in Google Analytics. Gain valuable insights into your top affiliates with no coding required.', 'google-analytics-for-wordpress' ),
3295
 
3296
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEcommerce-Lite.vue:55
3297
- __( 'Works with WooCommerce, MemberPress and Easy Digital Downloads.', 'google-analytics-for-wordpress' ),
 
3298
 
3299
  // Reference: src/modules/growth-tools/components/GrowthNavigation.vue:17
3300
  __( 'Featured', 'google-analytics-for-wordpress' ),
@@ -3308,6 +3446,49 @@ $generated_i18n_strings = array(
3308
  // Reference: src/modules/growth-tools/components/GrowthNavigation.vue:21
3309
  __( 'Guides & Resources', 'google-analytics-for-wordpress' ),
3310
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3311
  // Reference: src/modules/growth-tools/monsterinsights-growth-tools.vue:105
3312
  __( 'RafflePress', 'google-analytics-for-wordpress' ),
3313
 
@@ -3440,6 +3621,15 @@ $generated_i18n_strings = array(
3440
  // Reference: src/modules/growth-tools/monsterinsights-growth-tools.vue:95
3441
  __( 'Send push notifications to your visitors to drive more traffic and boost sales.', 'google-analytics-for-wordpress' ),
3442
 
 
 
 
 
 
 
 
 
 
3443
  // Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:34
3444
  __( 'Get Started', 'google-analytics-for-wordpress' )
3445
  );
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:223
17
+ __( 'Today', 'google-analytics-for-wordpress' ),
18
+
19
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:229
20
+ __( 'Yesterday', 'google-analytics-for-wordpress' ),
21
+
22
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:235
23
+ __( 'Last Week', 'google-analytics-for-wordpress' ),
24
+
25
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:241
26
+ __( 'Last Month', 'google-analytics-for-wordpress' ),
27
+
28
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:247
29
+ __( 'Last 7 days', 'google-analytics-for-wordpress' ),
30
+
31
+ // Reference: src/modules/reports/components/reports-overview/monsterinsights-ReportOverviewDatePicker-Lite.vue:48
32
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:253
33
+ __( 'Last 30 days', 'google-analytics-for-wordpress' ),
34
+
35
  // Reference: src/plugins/monsterinsights-wizard-helper-plugin.js:13
36
  __( 'Loading settings', 'google-analytics-for-wordpress' ),
37
 
38
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:129
39
+ __( 'Loading new report data', 'google-analytics-for-wordpress' ),
40
 
41
+ // Reference: src/components/TheAppFTPForm.vue:110
42
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:130
43
+ __( 'Please wait...', 'google-analytics-for-wordpress' ),
44
+
45
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:143
46
+ /* Translators: Adds an arrow icon. */
47
+ __( 'Continue %s', 'google-analytics-for-wordpress' ),
48
 
49
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:181
50
  __( 'Unlock the Publishers Report and Focus on the Content that Matters', 'google-analytics-for-wordpress' ),
51
 
52
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:182
53
  __( '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' ),
54
 
55
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:185
56
  __( 'Unlock the Publishers Report and Focus on the Content That Matters', 'google-analytics-for-wordpress' ),
57
 
58
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:186
59
  __( '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' ),
60
 
61
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:189
62
+ __( 'Unlock the eCommerce Report and See Your Important Store Metrics', 'google-analytics-for-wordpress' ),
63
+
64
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:190
65
+ __( 'Increase your sales & revenue with insights. ExactMetrics answers all your top eCommerce questions using metrics like total revenue, conversion rate, average order value, top products, top referral sources and more.', 'google-analytics-for-wordpress' ),
66
+
67
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:193
68
+ __( 'Unlock the Dimensions Report and Track Your Own Custom Data', 'google-analytics-for-wordpress' ),
69
+
70
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:194
71
+ __( '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' ),
72
+
73
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:197
74
+ __( 'Unlock the Forms Report and Improve Conversions', 'google-analytics-for-wordpress' ),
75
+
76
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:198
77
+ __( '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' ),
78
+
79
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:201
80
+ __( 'Unlock the Search Console Report and See How People Find Your Website', 'google-analytics-for-wordpress' ),
81
+
82
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:202
83
+ __( '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' ),
84
+
85
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:205
86
+ __( 'Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time', 'google-analytics-for-wordpress' ),
87
+
88
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:206
89
+ __( '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' ),
90
+
91
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:209
92
+ __( 'Unlock the Site Speed Report and Improve the Performance of Your Site', 'google-analytics-for-wordpress' ),
93
+
94
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:210
95
+ __( 'See How Your Homepage Performs According to Google’s Own Criteria and See How You Can Improve to Increase Your Ranking', 'google-analytics-for-wordpress' ),
96
+
97
+ // Reference: src/plugins/monsterinsights-settings-helper-plugin.js:111
98
+ __( 'Loading Settings', 'google-analytics-for-wordpress' ),
99
+
100
+ // Reference: src/plugins/monsterinsights-settings-helper-plugin.js:19
101
+ __( 'Saving Changes...', 'google-analytics-for-wordpress' ),
102
+
103
+ // Reference: src/plugins/monsterinsights-settings-helper-plugin.js:48
104
+ __( 'Settings Updated', 'google-analytics-for-wordpress' ),
105
+
106
+ // Reference: src/plugins/monsterinsights-settings-helper-plugin.js:6
107
+ /* Translators: Adds a link to the settings panel. */
108
+ __( 'You need to %1$sconnect MonsterInsights%2$s first', 'google-analytics-for-wordpress' ),
109
+
110
+ // Reference: src/plugins/monsterinsights-settings-helper-plugin.js:82
111
+ __( 'Could Not Save Changes', 'google-analytics-for-wordpress' ),
112
+
113
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:188
114
+ __( 'Refreshing Report', 'google-analytics-for-wordpress' ),
115
+
116
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:189
117
+ __( 'Loading new report data...', 'google-analytics-for-wordpress' ),
118
+
119
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:251
120
  __( 'See Your Top Landing Pages to Improve Engagement', 'google-analytics-for-wordpress' ),
121
 
134
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:256
135
  __( 'See Audience Demographic Report ( Age / Gender / Interests )', 'google-analytics-for-wordpress' ),
136
 
 
 
 
137
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:261
138
  __( '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' ),
139
 
161
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:270
162
  __( 'See How Many Sessions are Needed for a Purchase', 'google-analytics-for-wordpress' ),
163
 
 
 
 
 
 
 
164
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:277
165
  __( 'See Which Authors Generate the Most Traffic', 'google-analytics-for-wordpress' ),
166
 
176
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:281
177
  __( 'See Which Focus Keyword is Performing Better in Search Engines', 'google-analytics-for-wordpress' ),
178
 
 
 
 
 
 
 
179
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:288
180
  __( 'See Reports for Any Contact Form Plugin or Sign-up Form', 'google-analytics-for-wordpress' ),
181
 
185
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:290
186
  __( 'See Your Forms Impressions Count to Find the Best Placement', 'google-analytics-for-wordpress' ),
187
 
 
 
 
 
 
 
188
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:297
189
  __( 'See Your Top Google Search Terms and Optimize Content', 'google-analytics-for-wordpress' ),
190
 
197
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:300
198
  __( 'See The Average Results Position and Focus on what works', 'google-analytics-for-wordpress' ),
199
 
 
 
 
 
 
 
200
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:307
201
  __( 'See Your Active Visitors and Track Their Behaviour to Optimize', 'google-analytics-for-wordpress' ),
202
 
212
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:311
213
  __( 'Get Fresh Report Data Every 60 Seconds', 'google-analytics-for-wordpress' ),
214
 
 
 
 
 
 
 
215
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:318
216
  __( 'See Your Homepage\'s Overall Performance Score', 'google-analytics-for-wordpress' ),
217
 
224
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:321
225
  __( 'Learn How to Improve the Core Metrics that Google Uses to Rank Your Site', 'google-analytics-for-wordpress' ),
226
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
227
  // Reference: src/modules/widget/components/WidgetReminder.vue:33
228
  /* Translators: Number of visitors. */
229
  __( 'See how %s visitors found your site!', 'google-analytics-for-wordpress' ),
235
  // Reference: src/modules/widget/components/WidgetReminder.vue:36
236
  __( 'See the full analytics report!', 'google-analytics-for-wordpress' ),
237
 
 
 
 
238
  // Reference: src/modules/settings/monsterinsights-site.vue:78
239
  __( 'Congratulations! ', 'google-analytics-for-wordpress' ),
240
 
241
  // Reference: src/modules/settings/monsterinsights-site.vue:79
242
  __( 'You Successfully Unlocked the most powerful Analytics plugin', 'google-analytics-for-wordpress' ),
243
 
244
+ // Reference: src/modules/frontend/monsterinsights-frontend.vue:36
245
+ __( 'Insights', 'google-analytics-for-wordpress' ),
246
+
247
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:256
248
+ // Reference: src/modules/reports/routes/index.js:25
249
+ __( 'Overview Report', 'google-analytics-for-wordpress' ),
250
+
251
+ // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:125
252
  __( 'Welcome to MonsterInsights', 'google-analytics-for-wordpress' ),
253
 
254
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:126
272
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:132
273
  __( 'See All Features', 'google-analytics-for-wordpress' ),
274
 
275
+ // Reference: src/modules/reports/components/reports-overview/monsterinsights-ReportOverviewDatePicker-Lite.vue:51
276
  __( 'Upgrade to PRO', 'google-analytics-for-wordpress' ),
277
 
278
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:134
279
  __( 'per year', 'google-analytics-for-wordpress' ),
280
 
281
  // Reference: src/modules/growth-tools/monsterinsights-growth-tools.vue:206
 
282
  __( 'Upgrade Now', 'google-analytics-for-wordpress' ),
283
 
284
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:136
285
  __( 'Testimonials', 'google-analytics-for-wordpress' ),
286
 
287
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:62
288
+ // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:140
289
  __( 'Universal Tracking', 'google-analytics-for-wordpress' ),
290
 
291
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:141
334
  __( 'Ecommerce Report', 'google-analytics-for-wordpress' ),
335
 
336
  // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:30
 
337
  __( 'Form Conversions', 'google-analytics-for-wordpress' ),
338
 
339
+ // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:26
340
  __( 'Custom Dimensions', 'google-analytics-for-wordpress' ),
341
 
342
  // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:29
 
343
  __( 'Author Tracking', 'google-analytics-for-wordpress' ),
344
 
345
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabConversions-Lite.vue:33
360
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:190
361
  __( 'LifterLMS', 'google-analytics-for-wordpress' ),
362
 
363
+ // Reference: src/plugins/monsterinsights-compatibility-plugin.js:13
364
+ /* Translators: Current PHP version and recommended PHP version. */
365
+ __( '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' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
366
 
367
+ // Reference: src/plugins/monsterinsights-compatibility-plugin.js:27
368
+ /* Translators: Current WordPress version. */
369
+ __( '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' ),
370
 
371
+ // Reference: src/plugins/monsterinsights-compatibility-plugin.js:39
372
+ __( 'Yikes! PHP Update Required', 'google-analytics-for-wordpress' ),
373
 
374
+ // Reference: src/plugins/monsterinsights-compatibility-plugin.js:41
375
+ /* Translators: Current PHP version and recommended PHP version. */
376
+ __( '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' ),
377
 
378
+ // Reference: src/plugins/monsterinsights-compatibility-plugin.js:45
379
+ __( 'Learn more about updating PHP', 'google-analytics-for-wordpress' ),
380
 
381
+ // Reference: src/plugins/monsterinsights-compatibility-plugin.js:53
382
+ __( 'Yikes! WordPress Update Required', 'google-analytics-for-wordpress' ),
383
 
384
+ // Reference: src/plugins/monsterinsights-compatibility-plugin.js:55
385
+ /* Translators: Current WordPress version. */
386
+ __( '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' ),
387
 
388
+ // Reference: src/plugins/monsterinsights-compatibility-plugin.js:59
389
+ __( 'Learn more about updating WordPress', 'google-analytics-for-wordpress' ),
390
 
391
  // Reference: src/modules/reports/components/ReportReAuth.vue:19
392
  __( 'MonsterInsights encountered an error loading your report data', 'google-analytics-for-wordpress' ),
394
  // Reference: src/modules/reports/components/ReportReAuth.vue:20
395
  __( 'There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating.', 'google-analytics-for-wordpress' ),
396
 
397
+ // Reference: src/modules/reports/components/ReportReAuth.vue:21
398
  __( 'Reconnect MonsterInsights', 'google-analytics-for-wordpress' ),
399
 
400
+ // Reference: src/modules/reports/components/ReportReAuth.vue:30
401
  __( 'Re-Authenticating', 'google-analytics-for-wordpress' ),
402
 
403
+ // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:78
404
  __( 'Ok', 'google-analytics-for-wordpress' ),
405
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
406
  // Reference: src/components/TheQuickLinks.vue:31
407
  __( 'See Quick Links', 'google-analytics-for-wordpress' ),
408
 
418
  // Reference: src/components/TheQuickLinks.vue:78
419
  __( 'Upgrade to Pro &#187;', 'google-analytics-for-wordpress' ),
420
 
421
+ // Reference: src/modules/widget/components/WidgetFooter.vue:19
422
+ /* Translators: Placeholder is replaced with WPForms. */
423
+ __( 'Recommended Plugin: %s', 'google-analytics-for-wordpress' ),
424
+
425
+ // Reference: src/modules/widget/components/WidgetFooter.vue:20
426
+ __( 'Install', 'google-analytics-for-wordpress' ),
427
+
428
+ // Reference: src/modules/widget/components/WidgetFooter.vue:21
429
+ __( 'Activate', 'google-analytics-for-wordpress' ),
430
+
431
+ // Reference: src/modules/growth-tools/monsterinsights-growth-tools.vue:246
432
+ // Reference: src/modules/widget/components/WidgetFooter.vue:22
433
+ __( 'Learn More', 'google-analytics-for-wordpress' ),
434
+
435
+ // Reference: src/modules/frontend/components/FrontendPoweredBy.vue:12
436
+ __( 'Powered by MonsterInsights', 'google-analytics-for-wordpress' ),
437
+
438
+ // Reference: src/modules/settings/components/SettingsFirstTImeNotice.vue:40
439
+ __( 'View Reports', 'google-analytics-for-wordpress' ),
440
+
441
+ // Reference: src/modules/settings/components/SettingsFirstTImeNotice.vue:42
442
+ __( 'Congratulations!', 'google-analytics-for-wordpress' ),
443
+
444
+ // Reference: src/modules/settings/components/SettingsFirstTImeNotice.vue:44
445
+ /* Translators: Add link to YouTube video and Onboarding Wizard. */
446
+ __( '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' ),
447
+
448
+ // Reference: src/modules/settings/components/SettingsFirstTImeNotice.vue:44
449
+ /* Translators: Add link to YouTube video and Onboarding Wizard. */
450
+ __( 'Onboarding Wizard', 'google-analytics-for-wordpress' ),
451
+
452
+ // Reference: src/modules/settings/components/SettingsFirstTImeNotice.vue:45
453
+ __( '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' ),
454
+
455
+ // Reference: src/modules/settings/components/SettingsButtonSave.vue:49
456
+ __( 'Save Changes', 'google-analytics-for-wordpress' ),
457
+
458
+ // Reference: src/modules/notifications/components/monsterinsights-Notifications.vue:75
459
+ __( 'Inbox', 'google-analytics-for-wordpress' ),
460
+
461
+ // Reference: src/modules/notifications/components/monsterinsights-Notifications.vue:76
462
+ __( 'Back to Inbox', 'google-analytics-for-wordpress' ),
463
+
464
+ // Reference: src/modules/notifications/components/monsterinsights-Notifications.vue:77
465
+ __( 'View Dismissed', 'google-analytics-for-wordpress' ),
466
+
467
+ // Reference: src/modules/notifications/components/monsterinsights-Notifications.vue:78
468
+ __( 'Notifications', 'google-analytics-for-wordpress' ),
469
+
470
+ // Reference: src/modules/notifications/components/monsterinsights-Notifications.vue:79
471
+ __( 'Dismiss All', 'google-analytics-for-wordpress' ),
472
+
473
+ // Reference: src/modules/notifications/components/monsterinsights-Notifications.vue:80
474
+ __( 'Dismissed', 'google-analytics-for-wordpress' ),
475
+
476
+ // Reference: src/modules/notifications/components/monsterinsights-Notifications.vue:81
477
+ __( 'No Notifications', 'google-analytics-for-wordpress' ),
478
+
479
+ // Reference: src/modules/frontend/components/FrontendNoAuth.vue:24
480
+ __( 'Please Setup Website Analytics to See Audience Insights', 'google-analytics-for-wordpress' ),
481
+
482
+ // Reference: src/modules/frontend/components/FrontendNoAuth.vue:25
483
+ __( 'MonsterInsights, WordPress analytics plugin, helps you connect your website with Google Analytics, so you can see how people find and use your website. Over 3 million website owners use MonsterInsights to see the stats that matter and grow their business.', 'google-analytics-for-wordpress' ),
484
+
485
+ // Reference: src/modules/frontend/components/FrontendNoAuth.vue:26
486
+ __( 'Connect MonsterInsights and Setup Website Analytics', 'google-analytics-for-wordpress' ),
487
+
488
+ // Reference: src/modules/tools/components/ToolsNavigation.vue:14
489
+ __( 'Import Export', 'google-analytics-for-wordpress' ),
490
+
491
+ // Reference: src/modules/settings/routes/site.js:111
492
  __( 'PrettyLinks Integration', 'google-analytics-for-wordpress' ),
493
 
494
+ // Reference: src/modules/about/components/AboutNavigation-Lite.vue:15
495
+ // Reference: src/modules/settings/routes/network.js:35
496
  __( 'About Us', 'google-analytics-for-wordpress' ),
497
 
498
+ // Reference: src/modules/about/components/AboutNavigation-Lite.vue:16
499
+ // Reference: src/modules/settings/routes/network.js:43
500
  __( 'Getting Started', 'google-analytics-for-wordpress' ),
501
 
502
+ // Reference: src/modules/about/components/AboutNavigation-Lite.vue:17
503
+ // Reference: src/modules/settings/routes/network.js:52
504
  __( 'Lite vs Pro', 'google-analytics-for-wordpress' ),
505
 
506
+ // Reference: src/modules/popular-posts/components/PopularPostsNavigation.vue:22
507
  __( 'Inline Popular Posts', 'google-analytics-for-wordpress' ),
508
 
509
+ // Reference: src/modules/popular-posts/components/PopularPostsNavigation.vue:23
510
  __( 'Popular Posts Widget', 'google-analytics-for-wordpress' ),
511
 
512
+ // Reference: src/modules/popular-posts/components/PopularPostsNavigation.vue:24
513
  __( 'Popular Products', 'google-analytics-for-wordpress' ),
514
 
515
  // Reference: src/modules/settings/routes/site.js:189
518
  // Reference: src/modules/settings/routes/site.js:200
519
  __( 'Sub menu item for WooCommerce Analytics', 'google-analytics-for-wordpress' ),
520
 
521
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabsNavigation.vue:75
522
  __( 'General', 'google-analytics-for-wordpress' ),
523
 
524
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabsNavigation.vue:76
525
  __( 'Engagement', 'google-analytics-for-wordpress' ),
526
 
527
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportEcommerce-Lite.vue:22
528
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabsNavigation.vue:77
529
  __( 'eCommerce', 'google-analytics-for-wordpress' ),
530
 
531
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabsNavigation.vue:78
532
  __( 'Publisher', 'google-analytics-for-wordpress' ),
533
 
534
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabsNavigation.vue:79
535
  __( 'Conversions', 'google-analytics-for-wordpress' ),
536
 
537
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabsNavigation.vue:80
538
  __( 'Advanced', 'google-analytics-for-wordpress' ),
539
 
540
+ // Reference: src/modules/tools/components/ToolsNavigation.vue:15
541
  __( 'URL Builder', 'google-analytics-for-wordpress' ),
542
 
543
+ // Reference: src/modules/addons/components/AddonsNavigation.vue:18
544
+ __( 'MonsterInsights Addons', 'google-analytics-for-wordpress' ),
 
545
 
546
+ // Reference: src/modules/addons/components/AddonsNavigation.vue:19
547
+ __( 'Search Addons', 'google-analytics-for-wordpress' ),
548
 
549
+ // Reference: src/modules/wizard-onboarding/components/TheWizardHeader.vue:24
550
+ __( 'Exit Setup', 'google-analytics-for-wordpress' ),
551
 
552
+ // Reference: src/modules/reports/components/ReportNoAuth.vue:25
553
+ __( 'You must connect with MonsterInsights before you can view reports.', 'google-analytics-for-wordpress' ),
 
554
 
555
+ // Reference: src/modules/reports/components/ReportNoAuth.vue:26
556
+ __( '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' ),
557
 
558
+ // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:57
559
+ __( 'Launch Setup Wizard', 'google-analytics-for-wordpress' ),
560
 
561
+ // Reference: src/modules/reports/components/ReportNoAuth.vue:28
562
+ __( 'Please ask your webmaster to connect MonsterInsights to Google Analytics.', 'google-analytics-for-wordpress' ),
 
563
 
564
+ // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:43
565
+ __( 'Overview', 'google-analytics-for-wordpress' ),
 
566
 
567
+ // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:44
568
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportPublishers-Lite.vue:25
569
+ __( 'Publishers', 'google-analytics-for-wordpress' ),
570
 
571
+ // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:46
572
+ __( 'Search Console', 'google-analytics-for-wordpress' ),
 
573
 
574
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportDimensions-Lite.vue:22
575
+ __( 'Dimensions', 'google-analytics-for-wordpress' ),
576
 
577
+ // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:48
578
+ __( 'Forms', 'google-analytics-for-wordpress' ),
579
 
580
+ // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:49
581
+ __( 'Real-Time', 'google-analytics-for-wordpress' ),
582
 
583
+ // Reference: src/modules/reports/components/reports/monsterinsights-SiteSpeed-Lite.vue:23
584
+ __( 'Site Speed', 'google-analytics-for-wordpress' ),
 
585
 
586
+ // Reference: src/modules/reports/routes/index.js:94
587
+ __( '2020 Year in Review', 'google-analytics-for-wordpress' ),
 
588
 
589
+ // Reference: src/modules/reports/api/index.js:21
590
+ /* Translators: Error status and error text. */
591
+ __( 'Can\'t load report data. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
592
 
593
+ // Reference: src/modules/reports/api/index.js:28
594
+ __( 'Error loading report data', 'google-analytics-for-wordpress' ),
595
+
596
+ // Reference: src/modules/reports/routes/index.js:33
597
+ __( 'Publishers Report', 'google-analytics-for-wordpress' ),
598
+
599
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportEcommerce-Lite.vue:23
600
+ // Reference: src/modules/reports/routes/index.js:41
601
+ __( 'eCommerce Report', 'google-analytics-for-wordpress' ),
602
+
603
+ // Reference: src/modules/reports/routes/index.js:49
604
+ __( 'Search Console Report', 'google-analytics-for-wordpress' ),
605
+
606
+ // Reference: src/modules/reports/routes/index.js:57
607
+ __( 'Dimensions Report', 'google-analytics-for-wordpress' ),
608
+
609
+ // Reference: src/modules/reports/routes/index.js:65
610
+ __( 'Forms Report', 'google-analytics-for-wordpress' ),
611
+
612
+ // Reference: src/modules/reports/routes/index.js:73
613
+ __( 'Real-Time Report', 'google-analytics-for-wordpress' ),
614
 
615
+ // Reference: src/modules/reports/routes/index.js:81
616
+ __( 'Site Speed Report', 'google-analytics-for-wordpress' ),
617
+
618
+ // Reference: src/modules/woocommerce-insights/woocommerce-insights-Lite.vue:132
619
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:271
620
  __( 'Time to Purchase', 'google-analytics-for-wordpress' ),
621
 
622
  // Reference: src/modules/widget/store/index.js:104
623
  __( 'This list shows how many days from first visit it took users to purchase products from your site.', 'google-analytics-for-wordpress' ),
624
 
625
+ // Reference: src/modules/woocommerce-insights/woocommerce-insights-Lite.vue:127
626
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:267
627
  __( 'Sessions to Purchase', 'google-analytics-for-wordpress' ),
628
 
629
  // Reference: src/modules/widget/store/index.js:112
659
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:281
660
  __( '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' ),
661
 
662
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:252
663
  __( 'Top Landing Pages', 'google-analytics-for-wordpress' ),
664
 
665
  // Reference: src/modules/widget/store/index.js:42
666
  __( 'This list shows the top pages users first land on when visiting your website.', 'google-analytics-for-wordpress' ),
667
 
668
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:254
669
  __( 'Top Exit Pages', 'google-analytics-for-wordpress' ),
670
 
671
  // Reference: src/modules/widget/store/index.js:49
672
  __( 'This list shows the top pages users exit your website from.', 'google-analytics-for-wordpress' ),
673
 
674
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:256
675
  __( 'Top Outbound Links', 'google-analytics-for-wordpress' ),
676
 
677
  // Reference: src/modules/widget/store/index.js:57
683
  // Reference: src/modules/widget/store/index.js:64
684
  __( 'This list shows the top affiliate links your visitors clicked on.', 'google-analytics-for-wordpress' ),
685
 
686
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:255
687
  __( 'Top Download Links', 'google-analytics-for-wordpress' ),
688
 
689
  // Reference: src/modules/widget/store/index.js:71
690
  __( 'This list shows the download links your visitors clicked the most.', 'google-analytics-for-wordpress' ),
691
 
692
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:269
 
 
 
693
  __( 'Top Products', 'google-analytics-for-wordpress' ),
694
 
695
  // Reference: src/modules/widget/store/index.js:84
696
  __( 'This list shows the top selling products on your website.', 'google-analytics-for-wordpress' ),
697
 
698
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:268
699
  __( 'Top Conversion Sources', 'google-analytics-for-wordpress' ),
700
 
701
  // Reference: src/modules/widget/store/index.js:91
704
  // Reference: src/modules/widget/store/index.js:97
705
  __( 'Total Add/Remove', 'google-analytics-for-wordpress' ),
706
 
707
+ // Reference: src/modules/license/store/actions.js:61
708
+ /* Translators: Adds a link to the license renewal. */
709
+ __( 'Your license key for MonsterInsights has expired. %1$sPlease click here to renew your license key.%2$s', 'google-analytics-for-wordpress' ),
710
 
711
+ // Reference: src/modules/license/store/actions.js:71
712
+ __( 'Your license key for MonsterInsights has been disabled. Please use a different key.', 'google-analytics-for-wordpress' ),
713
 
714
+ // Reference: src/modules/license/store/actions.js:81
715
+ __( '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' ),
716
 
717
+ // Reference: src/modules/addons/store/actions.js:33
718
+ /* Translators: Adds a link to documentation. */
719
+ __( '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' ),
720
 
721
+ // Reference: src/modules/addons/store/actions.js:36
722
+ /* Translators: Adds link to activate/install plugin and documentation. */
723
+ __( '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' ),
724
 
725
+ // Reference: src/modules/addons/store/actions.js:51
726
+ /* Translators: Adds a link to documentation. */
727
+ __( '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' ),
728
 
729
+ // Reference: src/modules/addons/store/actions.js:54
730
+ /* Translators: Adds link to activate/install plugin and documentation. */
731
+ __( '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' ),
732
 
733
+ // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:104
734
+ __( 'GDPR Guide', 'google-analytics-for-wordpress' ),
735
 
736
+ // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:105
737
+ __( '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. ', 'google-analytics-for-wordpress' ),
738
 
739
+ // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:110
740
+ __( 'How to Install and Activate MonsterInsights Addons', 'google-analytics-for-wordpress' ),
741
 
742
+ // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:111
743
+ __( '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.', 'google-analytics-for-wordpress' ),
 
744
 
745
+ // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:116
746
+ __( 'Enabling eCommerce Tracking and Reports', 'google-analytics-for-wordpress' ),
747
 
748
+ // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:117
749
+ __( '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.', 'google-analytics-for-wordpress' ),
750
 
751
+ // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:121
752
+ __( 'Read Documentation', 'google-analytics-for-wordpress' ),
753
 
754
+ // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:64
755
+ __( 'Getting Started with MonsterInsights', 'google-analytics-for-wordpress' ),
 
 
756
 
757
+ // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:65
758
+ __( '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.', 'google-analytics-for-wordpress' ),
759
 
760
+ // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:66
761
+ __( 'To begin with, we’ll get your site authorized with Google Analytics, so we can start tracking and generating reports for you right away.', 'google-analytics-for-wordpress' ),
762
 
763
+ // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:67
764
+ __( '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!.', 'google-analytics-for-wordpress' ),
765
 
766
+ // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:68
767
+ __( 'Launch the wizard!', 'google-analytics-for-wordpress' ),
768
 
769
+ // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:69
770
+ __( 'Get MonsterInsights Pro and Unlock all the Powerful Features', 'google-analytics-for-wordpress' ),
771
 
772
+ // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:71
773
+ /* Translators: Makes text bold. */
774
+ __( '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.', 'google-analytics-for-wordpress' ),
775
 
776
+ // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:73
777
+ __( 'Universal Tracking across devices and campaigns with just a few clicks.', 'google-analytics-for-wordpress' ),
778
 
779
+ // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:74
780
+ __( 'See your website analytics reports inside the WordPress dashboard', 'google-analytics-for-wordpress' ),
781
 
782
+ // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:75
783
+ __( 'Get real-time stats right inside WordPress', 'google-analytics-for-wordpress' ),
784
 
785
+ // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:76
786
+ __( '1-click Google Analytics Enhanced eCommerce tracking', 'google-analytics-for-wordpress' ),
787
 
788
+ // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:77
789
+ __( 'Get detailed stats for each post and page.', 'google-analytics-for-wordpress' ),
790
 
791
+ // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:80
792
+ __( 'Automatically track clicks on your affiliate links and ads.', 'google-analytics-for-wordpress' ),
793
 
794
+ // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:81
795
+ __( 'Make Google Analytics GDPR compliant automatically', 'google-analytics-for-wordpress' ),
796
 
797
+ // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:82
798
+ __( 'Setup tracking for authors, categories, tags, custom post types, users and more', 'google-analytics-for-wordpress' ),
799
 
800
+ // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:83
801
+ __( 'Enable Google Optimize for A/B testing, adjust sample speed & sample rate.', 'google-analytics-for-wordpress' ),
802
 
803
+ // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:84
804
+ __( 'More advanced features', 'google-analytics-for-wordpress' ),
805
 
806
+ // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:86
807
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:57
808
+ __( 'Get MonsterInsights Pro Today and Unlock all the Powerful Features', 'google-analytics-for-wordpress' ),
809
 
810
+ // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:88
811
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:59
812
+ /* Translators: Makes text green. */
813
+ __( 'Bonus: MonsterInsights Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout.', 'google-analytics-for-wordpress' ),
814
 
815
+ // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:92
816
+ __( 'How to Connect to Google Analytics', 'google-analytics-for-wordpress' ),
817
 
818
+ // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:93
819
+ __( '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.', 'google-analytics-for-wordpress' ),
820
 
821
+ // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:98
822
+ __( 'Guide and Checklist for Advanced Insights', 'google-analytics-for-wordpress' ),
 
823
 
824
+ // Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:99
825
+ __( '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' ),
826
 
827
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:100
828
+ __( 'WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin', 'google-analytics-for-wordpress' ),
829
 
830
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:103
831
+ __( 'WordPress Admin Area Reports', 'google-analytics-for-wordpress' ),
832
 
833
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:106
834
+ __( 'Standard Reports', 'google-analytics-for-wordpress' ),
835
 
836
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:107
837
+ __( 'Overview Reports for the last 30 days.', 'google-analytics-for-wordpress' ),
838
 
839
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:108
840
+ __( 'Advanced Reports', 'google-analytics-for-wordpress' ),
841
 
842
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:109
843
+ __( 'Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection', 'google-analytics-for-wordpress' ),
 
844
 
845
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:112
846
+ __( 'Dashboard Widget', 'google-analytics-for-wordpress' ),
847
 
848
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:115
849
+ __( 'Basic Widget', 'google-analytics-for-wordpress' ),
850
 
851
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:116
852
+ __( 'Overview Report Synopsis', 'google-analytics-for-wordpress' ),
853
 
854
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:117
855
+ __( 'Advanced Dashboard Widget', 'google-analytics-for-wordpress' ),
856
 
857
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:118
858
+ __( 'Includes the complete Overview report, Publisher reports and 6 different eCommerce reports', 'google-analytics-for-wordpress' ),
859
 
860
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:70
861
+ __( 'Headline Analyzer', 'google-analytics-for-wordpress' ),
862
 
863
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:128
864
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:57
865
+ __( 'Email Summaries', 'google-analytics-for-wordpress' ),
866
 
867
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:130
868
+ __( 'Included', 'google-analytics-for-wordpress' ),
869
 
870
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:131
871
+ __( 'Get weekly traffic reports directly in your inbox.', 'google-analytics-for-wordpress' ),
 
872
 
873
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:136
874
+ __( 'Publisher Reports', 'google-analytics-for-wordpress' ),
875
 
876
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:140
877
+ __( 'Advanced Publisher Reports & Tracking', 'google-analytics-for-wordpress' ),
878
 
879
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:141
880
+ __( 'View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more', 'google-analytics-for-wordpress' ),
881
 
882
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:144
883
+ __( 'Popular Posts', 'google-analytics-for-wordpress' ),
884
 
885
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:147
886
+ __( 'Basic Options', 'google-analytics-for-wordpress' ),
887
 
888
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:148
889
+ __( 'Order Popular Posts by comments or shares with 3 simple theme choices.', 'google-analytics-for-wordpress' ),
890
 
891
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:149
892
+ __( 'Dynamic Popular Posts & Popular Products', 'google-analytics-for-wordpress' ),
893
 
894
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:150
895
+ __( 'Display Popular Posts based on your actual traffic data from Google Analytics and choose from over 20 advanced themes. Display Popular WooCommerce products using widgets or Gutenberg blocks.', 'google-analytics-for-wordpress' ),
896
 
897
+ // Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:84
898
+ __( 'Not Available', 'google-analytics-for-wordpress' ),
899
 
900
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:157
901
+ __( 'Complete Custom Dimensions Tracking', 'google-analytics-for-wordpress' ),
902
 
903
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:158
904
+ __( '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' ),
905
 
906
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:161
907
+ __( 'Support', 'google-analytics-for-wordpress' ),
908
 
909
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:164
910
+ __( 'Limited Support', 'google-analytics-for-wordpress' ),
911
 
912
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:165
913
+ __( 'Priority Support', 'google-analytics-for-wordpress' ),
914
 
915
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:53
916
+ __( 'Get the most out of MonsterInsights by upgrading to Pro and unlocking all of the powerful features.', 'google-analytics-for-wordpress' ),
917
 
918
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:54
919
+ __( 'Feature', 'google-analytics-for-wordpress' ),
920
 
921
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:55
922
+ __( 'Lite', 'google-analytics-for-wordpress' ),
923
 
924
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:56
925
+ __( 'Pro', 'google-analytics-for-wordpress' ),
926
 
927
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:69
928
+ __( 'Custom Google Analytics Link Tracking', 'google-analytics-for-wordpress' ),
929
 
930
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:72
931
+ __( 'Standard Tracking', 'google-analytics-for-wordpress' ),
932
 
933
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:73
934
+ __( 'Advanced Tracking', 'google-analytics-for-wordpress' ),
935
 
936
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:74
937
+ __( 'Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking', 'google-analytics-for-wordpress' ),
938
 
939
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:75
940
+ __( 'Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers', 'google-analytics-for-wordpress' ),
941
 
942
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:78
943
+ __( 'No-Code-Needed Tracking Features', 'google-analytics-for-wordpress' ),
944
 
945
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:81
946
+ __( 'Basic Tracking Options', 'google-analytics-for-wordpress' ),
947
 
948
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:82
949
+ __( 'Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking', 'google-analytics-for-wordpress' ),
950
 
951
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:83
952
+ __( 'Advanced Tracking Options', 'google-analytics-for-wordpress' ),
953
 
954
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:84
955
+ __( 'Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors', 'google-analytics-for-wordpress' ),
956
 
957
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:87
958
+ __( 'eCommerce Tracking', 'google-analytics-for-wordpress' ),
959
 
960
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:91
961
+ __( 'One-click Complete eCommerce tracking', 'google-analytics-for-wordpress' ),
962
 
963
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:92
964
+ __( 'Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required', 'google-analytics-for-wordpress' ),
965
 
966
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabConversions-Lite.vue:31
967
+ __( 'Forms Tracking', 'google-analytics-for-wordpress' ),
968
 
969
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:99
970
+ __( 'One-click Form Events Tracking', 'google-analytics-for-wordpress' ),
971
 
972
+ // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:45
973
+ // Reference: src/modules/wizard-onboarding/components/inputs/monsterinsights-OnboardingLicense-Lite.vue:27
974
+ __( 'License Key', 'google-analytics-for-wordpress' ),
975
 
976
+ // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:47
977
+ /* Translators: Add link to retrieve license key from account. */
978
+ __( 'Add your MonsterInsights license key from the email receipt or account area. %1$sRetrieve your license key%2$s.', 'google-analytics-for-wordpress' ),
979
 
980
+ // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:48
981
+ __( 'Google Authentication', 'google-analytics-for-wordpress' ),
982
 
983
+ // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:49
984
+ __( 'Connect Google Analytics + WordPress', 'google-analytics-for-wordpress' ),
985
 
986
+ // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:50
987
+ __( 'You will be taken to the MonsterInsights website where you\'ll need to connect your Analytics account.', 'google-analytics-for-wordpress' ),
988
 
989
+ // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:51
990
+ __( 'Miscellaneous', 'google-analytics-for-wordpress' ),
991
 
992
+ // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:53
993
+ __( 'Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes.', 'google-analytics-for-wordpress' ),
994
 
995
+ // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:54
996
+ __( 'Hide Announcements', 'google-analytics-for-wordpress' ),
997
 
998
+ // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:55
999
+ __( 'Setup Wizard', 'google-analytics-for-wordpress' ),
1000
 
1001
+ // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:56
1002
+ __( 'Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks).', 'google-analytics-for-wordpress' ),
1003
 
1004
+ // Reference: src/modules/about/components/monsterinsights-AboutTabAboutUs.vue:31
1005
+ __( 'Hello and welcome to MonsterInsights, the best Google Analytics plugin for WordPress. MonsterInsights shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions.', 'google-analytics-for-wordpress' ),
1006
 
1007
+ // Reference: src/modules/about/components/monsterinsights-AboutTabAboutUs.vue:32
1008
+ __( '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' ),
1009
 
1010
+ // Reference: src/modules/about/components/monsterinsights-AboutTabAboutUs.vue:33
1011
+ __( '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' ),
1012
 
1013
+ // Reference: src/modules/about/components/monsterinsights-AboutTabAboutUs.vue:34
1014
+ __( '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' ),
1015
 
1016
+ // Reference: src/modules/about/components/monsterinsights-AboutTabAboutUs.vue:35
1017
+ __( 'Yup, we know a thing or two about building awesome products that customers love.', 'google-analytics-for-wordpress' ),
1018
 
1019
+ // Reference: src/modules/about/components/monsterinsights-AboutTabAboutUs.vue:36
1020
+ __( 'The MonsterInsights Team', 'google-analytics-for-wordpress' ),
1021
 
1022
+ // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:83
1023
+ __( 'Make your MonsterInsights campaign links prettier with Pretty Links!', 'google-analytics-for-wordpress' ),
1024
 
1025
+ // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:84
1026
+ __( 'Pretty Links turns those ugly, long campaign links into clean, memorable, speakable, totally shareable links.', 'google-analytics-for-wordpress' ),
1027
 
1028
+ // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:85
1029
+ __( 'Take your MonsterInsights campaign links from our URL Builder and shorten them with Pretty Links!', 'google-analytics-for-wordpress' ),
1030
 
1031
+ // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:86
1032
+ __( 'Over 200,000 websites use Pretty Links!', 'google-analytics-for-wordpress' ),
1033
 
1034
+ // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:87
1035
+ __( 'Install Pretty Links', 'google-analytics-for-wordpress' ),
1036
 
1037
+ // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:88
1038
+ __( 'Pretty Links Installed & Activated', 'google-analytics-for-wordpress' ),
1039
 
1040
+ // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:89
1041
+ __( 'Download Pretty Links', 'google-analytics-for-wordpress' ),
1042
 
1043
+ // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:90
1044
+ __( 'Install Pretty Links from the WordPress.org plugin repository.', 'google-analytics-for-wordpress' ),
1045
 
1046
+ // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:91
1047
+ __( 'Activate Pretty Links', 'google-analytics-for-wordpress' ),
1048
 
1049
+ // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:92
1050
+ __( 'Activating Pretty Links...', 'google-analytics-for-wordpress' ),
1051
 
1052
+ // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:93
1053
+ __( 'Create New Pretty Link', 'google-analytics-for-wordpress' ),
1054
 
1055
+ // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:94
1056
+ __( 'Create a New Pretty Link', 'google-analytics-for-wordpress' ),
1057
 
1058
+ // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:95
1059
+ __( 'Grab your campaign link and paste it into the Target URL field.', 'google-analytics-for-wordpress' ),
1060
 
1061
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:162
1062
+ __( 'Custom Campaign Parameters', 'google-analytics-for-wordpress' ),
1063
 
1064
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:163
1065
+ __( 'The URL builder helps you add parameters to your URLs you use in custom web or email ad campaigns.', 'google-analytics-for-wordpress' ),
1066
 
1067
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:164
1068
+ __( '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' ),
1069
 
1070
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:166
1071
+ /* Translators: Marks the field as required. */
1072
+ __( 'Website URL %s', 'google-analytics-for-wordpress' ),
1073
 
1074
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:168
1075
+ /* Translators: Display the current website url in italic. */
1076
+ __( 'The full website URL (e.g. %1$s %2$s%3$s)', 'google-analytics-for-wordpress' ),
1077
 
1078
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:170
1079
+ /* Translators: Marks the field as required. */
1080
+ __( 'Campaign Source %s', 'google-analytics-for-wordpress' ),
1081
 
1082
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:172
1083
+ /* Translators: Make the text italic. */
1084
+ __( 'Enter a referrer (e.g. %1$sfacebook, newsletter, google%2$s)', 'google-analytics-for-wordpress' ),
1085
 
1086
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:175
1087
+ /* Translators: Make the text italic. */
1088
+ __( 'Enter a marketing medium (e.g. %1$scpc, banner, email%2$s)', 'google-analytics-for-wordpress' ),
1089
 
1090
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:178
1091
+ /* Translators: Make the text italic. */
1092
+ __( 'Enter a name to easily identify (e.g. %1$sspring_sale%2$s)', 'google-analytics-for-wordpress' ),
1093
 
1094
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:180
1095
+ __( 'Enter the paid keyword', 'google-analytics-for-wordpress' ),
1096
 
1097
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:182
1098
+ __( 'Enter something to differentiate ads', 'google-analytics-for-wordpress' ),
1099
 
1100
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:183
1101
+ __( 'Use Fragment', 'google-analytics-for-wordpress' ),
1102
 
1103
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:185
1104
+ /* Translators: Make the text bold. */
1105
+ __( 'Set the parameters in the fragment portion of the URL %1$s(not recommended)%2$s', 'google-analytics-for-wordpress' ),
1106
 
1107
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:186
1108
+ __( 'URL to use', 'google-analytics-for-wordpress' ),
1109
 
1110
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:187
1111
+ __( '(Updates automatically)', 'google-analytics-for-wordpress' ),
1112
 
1113
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:188
1114
+ __( 'Copy to Clipboard', 'google-analytics-for-wordpress' ),
1115
 
1116
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:189
1117
+ __( 'Copy to Pretty Links', 'google-analytics-for-wordpress' ),
1118
 
1119
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:190
1120
+ __( 'Make your campaign links prettier!', 'google-analytics-for-wordpress' ),
1121
 
1122
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:191
1123
+ __( 'Pretty Links turns those ugly, long campaign links into clean, memorable, speakable and totally shareable links.', 'google-analytics-for-wordpress' ),
1124
 
1125
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:193
1126
+ __( 'More Information & Examples', 'google-analytics-for-wordpress' ),
 
 
1127
 
1128
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:194
1129
+ __( 'The following table gives a detailed explanation and example of each of the campaign parameters.', 'google-analytics-for-wordpress' ),
1130
 
1131
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:202
1132
+ __( 'Campaign Source', 'google-analytics-for-wordpress' ),
1133
 
1134
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:203
1135
+ __( 'Required. Use utm_source to identify a search engine, newsletter name, or other source.', 'google-analytics-for-wordpress' ),
1136
 
1137
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:204
1138
+ __( 'Campaign Medium', 'google-analytics-for-wordpress' ),
1139
 
1140
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:205
1141
+ __( 'Use utm_medium to identify a medium such as email or cost-per-click.', 'google-analytics-for-wordpress' ),
1142
 
1143
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:206
1144
+ __( 'Campaign Name', 'google-analytics-for-wordpress' ),
1145
 
1146
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:207
1147
+ __( 'Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign.', 'google-analytics-for-wordpress' ),
1148
 
1149
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:208
1150
+ __( 'Campaign Term', 'google-analytics-for-wordpress' ),
1151
 
1152
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:209
1153
+ __( 'Used for paid search. Use utm_term to note the keywords for this ad.', 'google-analytics-for-wordpress' ),
1154
 
1155
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:210
1156
+ __( 'Campaign Content', 'google-analytics-for-wordpress' ),
1157
 
1158
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:211
1159
+ __( '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' ),
1160
 
1161
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:213
1162
+ /* Translators: Example. */
1163
+ __( 'Example: %s', 'google-analytics-for-wordpress' ),
1164
 
1165
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:215
1166
+ /* Translators: Examples. */
1167
+ __( 'Examples: %s', 'google-analytics-for-wordpress' ),
1168
 
1169
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:218
1170
+ __( 'About Campaigns', 'google-analytics-for-wordpress' ),
1171
 
1172
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:222
1173
+ __( 'About Custom Campaigns', 'google-analytics-for-wordpress' ),
 
1174
 
1175
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:226
1176
+ __( 'Best Practices for Creating Custom Campaigns', 'google-analytics-for-wordpress' ),
 
1177
 
1178
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:230
1179
+ __( 'About the Referral Traffic Report', 'google-analytics-for-wordpress' ),
 
1180
 
1181
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:234
1182
+ __( 'About Traffic Source Dimensions', 'google-analytics-for-wordpress' ),
 
1183
 
1184
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:238
1185
+ __( 'AdWords Auto-Tagging', 'google-analytics-for-wordpress' ),
 
1186
 
1187
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:242
1188
+ __( 'Additional Information', 'google-analytics-for-wordpress' ),
 
1189
 
1190
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:42
1191
+ __( 'Import/Export', 'google-analytics-for-wordpress' ),
 
1192
 
1193
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:43
1194
+ __( 'Import', 'google-analytics-for-wordpress' ),
1195
+
1196
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:44
1197
+ __( 'Import settings from another MonsterInsights website.', 'google-analytics-for-wordpress' ),
1198
+
1199
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:45
1200
+ __( 'Export', 'google-analytics-for-wordpress' ),
1201
+
1202
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:46
1203
+ __( 'Export settings to import into another MonsterInsights install.', 'google-analytics-for-wordpress' ),
1204
+
1205
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:47
1206
+ __( 'Import Settings', 'google-analytics-for-wordpress' ),
1207
+
1208
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:48
1209
+ __( 'Export Settings', 'google-analytics-for-wordpress' ),
1210
+
1211
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:49
1212
+ __( 'Please choose a file to import', 'google-analytics-for-wordpress' ),
1213
+
1214
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:50
1215
+ __( 'Click Choose file below to select the settings export file from another site.', 'google-analytics-for-wordpress' ),
1216
+
1217
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:51
1218
+ __( 'Use the button below to export a file with your MonsterInsights settings.', 'google-analytics-for-wordpress' ),
1219
+
1220
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:64
1221
+ __( 'Uploading file...', 'google-analytics-for-wordpress' ),
1222
+
1223
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:79
1224
+ __( 'File imported', 'google-analytics-for-wordpress' ),
1225
+
1226
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:80
1227
+ __( 'Settings successfully updated!', 'google-analytics-for-wordpress' ),
1228
+
1229
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:86
1230
+ __( 'Error importing settings', 'google-analytics-for-wordpress' ),
1231
+
1232
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:87
1233
+ __( 'Please choose a .json file generated by a MonsterInsights settings export.', 'google-analytics-for-wordpress' ),
1234
+
1235
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:40
1236
+ __( 'MonsterInsights Recommends WPForms', 'google-analytics-for-wordpress' ),
1237
+
1238
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:41
1239
+ __( 'Built by the folks behind MonsterInsights, WPForms is the most beginner friendly form plugin in the market.', 'google-analytics-for-wordpress' ),
1240
+
1241
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:42
1242
+ __( 'Used on over 4,000,000 websites!', 'google-analytics-for-wordpress' ),
1243
+
1244
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:43
1245
+ __( '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' ),
1246
+
1247
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:44
1248
+ __( 'Skip this Step', 'google-analytics-for-wordpress' ),
1249
+
1250
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:45
1251
+ __( 'Continue & Install WPForms', 'google-analytics-for-wordpress' ),
1252
+
1253
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:46
1254
+ __( 'Installing...', 'google-analytics-for-wordpress' ),
1255
+
1256
+ // Reference: src/modules/widget/components/settings/WidgetSettingsWidth.vue:40
1257
+ __( 'Show in widget mode', 'google-analytics-for-wordpress' ),
1258
+
1259
+ // Reference: src/modules/widget/components/settings/WidgetSettingsWidth.vue:40
1260
+ __( 'Show in full-width mode', 'google-analytics-for-wordpress' ),
1261
+
1262
+ // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:34
1263
+ __( 'Upgrade to MonsterInsights Pro', 'google-analytics-for-wordpress' ),
1264
+
1265
+ // Reference: src/modules/reports/store/actions.js:132
1266
+ __( 'Installing Addon', 'google-analytics-for-wordpress' ),
1267
+
1268
+ // Reference: src/modules/reports/store/actions.js:155
1269
+ __( 'Activating Addon', 'google-analytics-for-wordpress' ),
1270
+
1271
+ // Reference: src/modules/reports/store/actions.js:170
1272
+ __( 'Addon Activated', 'google-analytics-for-wordpress' ),
1273
+
1274
+ // Reference: src/modules/reports/store/actions.js:171
1275
+ __( 'Loading report data', 'google-analytics-for-wordpress' ),
1276
+
1277
+ // Reference: src/modules/reports/store/actions.js:188
1278
+ __( 'Please activate manually', 'google-analytics-for-wordpress' ),
1279
+
1280
+ // Reference: src/modules/reports/store/actions.js:191
1281
+ /* Translators: Adds the error status and status text. */
1282
+ __( 'Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
1283
+
1284
+ // Reference: src/modules/reports/store/actions.js:197
1285
+ __( 'Error Activating Addon', 'google-analytics-for-wordpress' ),
1286
+
1287
+ // Reference: src/modules/reports/store/actions.js:203
1288
+ __( 'View Addons', 'google-analytics-for-wordpress' ),
1289
+
1290
+ // Reference: src/modules/reports/store/actions.js:204
1291
+ // Reference: src/modules/seo/components/yoast.vue:237
1292
+ __( 'Dismiss', 'google-analytics-for-wordpress' ),
1293
+
1294
+ // Reference: src/modules/reports/store/actions.js:211
1295
+ __( 'Redirecting', 'google-analytics-for-wordpress' ),
1296
+
1297
+ // Reference: src/modules/reports/store/actions.js:212
1298
+ __( 'Please wait', 'google-analytics-for-wordpress' ),
1299
+
1300
+ // Reference: src/modules/reports/store/actions.js:52
1301
+ __( 'activate', 'google-analytics-for-wordpress' ),
1302
+
1303
+ // Reference: src/modules/reports/store/actions.js:52
1304
+ __( 'install', 'google-analytics-for-wordpress' ),
1305
+
1306
+ // Reference: src/modules/reports/store/actions.js:56
1307
+ __( 'Visit addons page', 'google-analytics-for-wordpress' ),
1308
+
1309
+ // Reference: src/modules/reports/store/actions.js:64
1310
+ __( 'Report Unavailable', 'google-analytics-for-wordpress' ),
1311
+
1312
+ // Reference: src/modules/reports/store/actions.js:71
1313
+ /* Translators: Install/Activate the addon. */
1314
+ __( '%s Addon', 'google-analytics-for-wordpress' ),
1315
+
1316
+ // Reference: src/modules/reports/store/actions.js:90
1317
+ __( 'Go Back To Reports', 'google-analytics-for-wordpress' ),
1318
+
1319
+ // Reference: src/modules/reports/store/actions.js:91
1320
+ __( 'Enable Enhanced eCommerce', 'google-analytics-for-wordpress' ),
1321
+
1322
+ // Reference: src/components/TheFloatingBar-Lite.vue:29
1323
+ /* Translators: Placeholders are used for making text bold and adding a link. */
1324
+ __( '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' ),
1325
 
1326
  // Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:29
1327
  __( 'Last 30 Days Insights for:', 'google-analytics-for-wordpress' ),
1329
  // Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:30
1330
  __( 'Your Website', 'google-analytics-for-wordpress' ),
1331
 
1332
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:257
1333
+ __( 'Sessions', 'google-analytics-for-wordpress' ),
1334
+
1335
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:260
1336
+ __( 'Pageviews', 'google-analytics-for-wordpress' ),
1337
+
1338
  // Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:33
1339
  __( 'Avg. Duration', 'google-analytics-for-wordpress' ),
1340
 
1341
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:264
1342
+ __( 'Bounce Rate', 'google-analytics-for-wordpress' ),
1343
+
1344
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:265
1345
+ __( 'Total Users', 'google-analytics-for-wordpress' ),
1346
+
1347
  // Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:44
1348
  __( 'More data is available', 'google-analytics-for-wordpress' ),
1349
 
1350
  // Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:46
1351
  __( 'Want to see page-specific stats?', 'google-analytics-for-wordpress' ),
1352
 
1353
+ // Reference: src/modules/addons/monsterinsights-addons-Lite.vue:40
1354
+ __( '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' ),
1355
 
1356
+ // Reference: src/modules/addons/monsterinsights-addons-Lite.vue:41
1357
+ __( 'No addons found.', 'google-analytics-for-wordpress' ),
1358
 
1359
+ // Reference: src/modules/addons/monsterinsights-addons-Lite.vue:42
1360
+ __( 'Refresh Addons', 'google-analytics-for-wordpress' ),
1361
 
1362
+ // Reference: src/modules/addons/monsterinsights-addons-Lite.vue:65
1363
+ __( 'Refreshing Addons', 'google-analytics-for-wordpress' ),
1364
 
1365
+ // Reference: src/modules/addons/monsterinsights-addons-Lite.vue:76
1366
+ /* Translators: Make text green. */
1367
+ __( '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' ),
1368
 
1369
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabConversions-Lite.vue:32
1370
+ __( 'See who\'s viewing and submitting your forms, so you can increase your conversion rate.', 'google-analytics-for-wordpress' ),
1371
 
1372
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabConversions-Lite.vue:34
1373
+ __( 'Use Google Optimize to retarget your website visitors and perform A/B split tests with ease.', 'google-analytics-for-wordpress' ),
1374
 
1375
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabConversions-Lite.vue:36
1376
+ __( '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' ),
1377
+
1378
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEcommerce-Lite.vue:44
1379
+ __( 'See All Your Important Store Metrics in One Place', 'google-analytics-for-wordpress' ),
1380
+
1381
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEcommerce-Lite.vue:45
1382
+ __( 'Get an Answer to All Your Top Ecommerce Questions From a Single Report', 'google-analytics-for-wordpress' ),
1383
+
1384
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEcommerce-Lite.vue:46
1385
+ __( 'ONE-CLICK INTEGRATIONS', 'google-analytics-for-wordpress' ),
1386
+
1387
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEcommerce-Lite.vue:48
1388
+ __( 'Enable Ecommerce Tracking and Grow Your Business with Confidence', 'google-analytics-for-wordpress' ),
1389
+
1390
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEcommerce-Lite.vue:49
1391
+ __( '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' ),
1392
+
1393
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEcommerce-Lite.vue:52
1394
+ __( 'Affiliate Tracking', 'google-analytics-for-wordpress' ),
1395
+
1396
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEcommerce-Lite.vue:53
1397
+ __( 'Automatically Track Affiliate Sales', 'google-analytics-for-wordpress' ),
1398
+
1399
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEcommerce-Lite.vue:54
1400
+ __( 'The MonsterInsights eCommerce addon works with EasyAffiliate to automatically attribute orders originating from an EasyAffiliate link in Google Analytics. Gain valuable insights into your top affiliates with no coding required.', 'google-analytics-for-wordpress' ),
1401
+
1402
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEcommerce-Lite.vue:55
1403
+ __( 'Works with WooCommerce, MemberPress and Easy Digital Downloads.', 'google-analytics-for-wordpress' ),
1404
+
1405
+ // Reference: src/modules/woocommerce-insights/woocommerce-insights-Lite.vue:100
1406
+ __( 'Get MonsterInsights Pro', 'google-analytics-for-wordpress' ),
1407
+
1408
+ // Reference: src/modules/wizard-onboarding/components/OnboardingAddon-Lite.vue:27
1409
+ __( 'Upgrade to Pro', 'google-analytics-for-wordpress' ),
1410
+
1411
+ // Reference: src/modules/woocommerce-insights/woocommerce-insights-Lite.vue:107
1412
+ __( 'Cart Funnel', 'google-analytics-for-wordpress' ),
1413
+
1414
+ // Reference: src/modules/woocommerce-insights/woocommerce-insights-Lite.vue:112
1415
+ __( 'Customer Insights', 'google-analytics-for-wordpress' ),
1416
+
1417
+ // Reference: src/modules/woocommerce-insights/woocommerce-insights-Lite.vue:117
1418
+ __( 'Campaign Measurement', 'google-analytics-for-wordpress' ),
1419
+
1420
+ // Reference: src/modules/woocommerce-insights/woocommerce-insights-Lite.vue:122
1421
+ __( 'Customer Profiles', 'google-analytics-for-wordpress' ),
1422
+
1423
+ // Reference: src/modules/woocommerce-insights/woocommerce-insights-Lite.vue:133
1424
+ __( 'See all the critical eCommerce data you need at a glance: your conversion rate, transactions, revenue, and average order value, and more.', 'google-analytics-for-wordpress' ),
1425
+
1426
+ // Reference: src/modules/woocommerce-insights/woocommerce-insights-Lite.vue:86
1427
+ __( 'Truly Understand Your%1$s Customers With %2$sMonsterInsights%3$s', 'google-analytics-for-wordpress' ),
1428
+
1429
+ // Reference: src/modules/woocommerce-insights/woocommerce-insights-Lite.vue:87
1430
+ __( 'You never truly understand your customers until you used Enhanced %1$s eCommerce from MonsterInsights!', 'google-analytics-for-wordpress' ),
1431
+
1432
+ // Reference: src/modules/woocommerce-insights/woocommerce-insights-Lite.vue:88
1433
+ __( 'Track all-new metrics!', 'google-analytics-for-wordpress' ),
1434
+
1435
+ // Reference: src/modules/woocommerce-insights/woocommerce-insights-Lite.vue:89
1436
+ __( 'Get stats WooCommerce doesn’t give you like: Conversion Sources, Avg. Order Value, Revenue per Source, Total Add to Carts & More!', 'google-analytics-for-wordpress' ),
1437
+
1438
+ // Reference: src/modules/woocommerce-insights/woocommerce-insights-Lite.vue:90
1439
+ __( 'FEATURES', 'google-analytics-for-wordpress' ),
1440
+
1441
+ // Reference: src/modules/woocommerce-insights/woocommerce-insights-Lite.vue:91
1442
+ __( 'Get The Unique Metrics Neccessary for Growth', 'google-analytics-for-wordpress' ),
1443
+
1444
+ // Reference: src/modules/woocommerce-insights/woocommerce-insights-Lite.vue:92
1445
+ __( 'See all the critical eCommerce data you need at a glance: your conversion rate, transactions, %1$srevenue, and average order value, and more.', 'google-analytics-for-wordpress' ),
1446
+
1447
+ // Reference: src/modules/woocommerce-insights/woocommerce-insights-Lite.vue:93
1448
+ __( 'Get Answers to the important questions %1$syou should know.', 'google-analytics-for-wordpress' ),
1449
+
1450
+ // Reference: src/modules/woocommerce-insights/woocommerce-insights-Lite.vue:95
1451
+ __( 'Did the login/registration step of the checkout put users off?', 'google-analytics-for-wordpress' ),
1452
+
1453
+ // Reference: src/modules/woocommerce-insights/woocommerce-insights-Lite.vue:96
1454
+ __( 'Which ad campaign is driving the most revenue?', 'google-analytics-for-wordpress' ),
1455
+
1456
+ // Reference: src/modules/woocommerce-insights/woocommerce-insights-Lite.vue:97
1457
+ __( 'Who is my typical customer?', 'google-analytics-for-wordpress' ),
1458
+
1459
+ // Reference: src/modules/woocommerce-insights/woocommerce-insights-Lite.vue:99
1460
+ __( 'Level-up Your eCommerce store with %1$sMonsterInsights + WooCommerce!%1$s', 'google-analytics-for-wordpress' ),
1461
+
1462
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:94
1463
+ /* Translators: placeholders make text small. */
1464
+ __( 'Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s', 'google-analytics-for-wordpress' ),
1465
+
1466
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:99
1467
+ /* Translators: placeholders make text small. */
1468
+ __( 'Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s', 'google-analytics-for-wordpress' ),
1469
+
1470
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:104
1471
+ /* Translators: placeholders make text small. */
1472
+ __( 'None %1$s- Manually update everything.%2$s', 'google-analytics-for-wordpress' ),
1473
+
1474
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:71
1475
+ __( 'Automatic Updates', 'google-analytics-for-wordpress' ),
1476
+
1477
+ // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:31
1478
+ __( 'Awesome, You\'re All Set!', 'google-analytics-for-wordpress' ),
1479
+
1480
+ // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:32
1481
+ __( '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' ),
1482
+
1483
+ // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:34
1484
+ /* Translators: Make text bold. */
1485
+ __( '%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' ),
1486
+
1487
+ // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:36
1488
+ /* Translators: Link to our blog. */
1489
+ __( '%1$sSubscribe to the MonsterInsights blog%2$s for tips on how to get more traffic and grow your business.', 'google-analytics-for-wordpress' ),
1490
+
1491
+ // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:37
1492
+ __( 'Finish Setup & Exit Wizard', 'google-analytics-for-wordpress' ),
1493
+
1494
+ // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:50
1495
+ __( 'Checking your website...', 'google-analytics-for-wordpress' ),
1496
+
1497
+ // Reference: src/modules/widget/components/WidgetReportsLink.vue:17
1498
+ __( 'See All Reports', 'google-analytics-for-wordpress' ),
1499
+
1500
+ // Reference: src/modules/widget/components/WidgetReportsLink.vue:18
1501
+ __( 'Go to the Analytics Dashboard', 'google-analytics-for-wordpress' ),
1502
+
1503
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:259
1504
+ /* Translators: Placeholder adds a line break. */
1505
+ __( 'Unique %s Sessions', 'google-analytics-for-wordpress' ),
1506
+
1507
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:262
1508
+ /* Translators: Placeholder adds a line break. */
1509
+ __( 'Unique %s Pageviews', 'google-analytics-for-wordpress' ),
1510
+
1511
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:275
1512
+ __( 'A session is the browsing session of a single user to your site.', 'google-analytics-for-wordpress' ),
1513
+
1514
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:276
1515
+ __( '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' ),
1516
+
1517
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:277
1518
+ __( 'Total duration of all sessions (in seconds) / number of sessions.', 'google-analytics-for-wordpress' ),
1519
+
1520
+ // Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:89
1521
+ __( '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' ),
1522
+
1523
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:279
1524
+ __( 'The number of distinct tracked users', 'google-analytics-for-wordpress' ),
1525
+
1526
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:263
1527
+ __( 'Avg. Session Duration', 'google-analytics-for-wordpress' ),
1528
+
1529
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:259
1530
+ __( 'Still Calculating...', 'google-analytics-for-wordpress' ),
1531
+
1532
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:260
1533
+ __( 'Your 2020 Year in Review is still calculating. Please check back later to see how your website performed last year.', 'google-analytics-for-wordpress' ),
1534
+
1535
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:261
1536
+ __( 'Back to Overview Report', 'google-analytics-for-wordpress' ),
1537
+
1538
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:262
1539
+ __( 'Your 2020 Analytics Report', 'google-analytics-for-wordpress' ),
1540
+
1541
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:264
1542
+ __( 'See how your website performed this year and find tips along the way to help grow even more in 2021!', 'google-analytics-for-wordpress' ),
1543
+
1544
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:265
1545
+ __( 'Audience', 'google-analytics-for-wordpress' ),
1546
+
1547
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:266
1548
+ __( 'Congrats', 'google-analytics-for-wordpress' ),
1549
+
1550
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:267
1551
+ __( 'Your website was quite popular this year! ', 'google-analytics-for-wordpress' ),
1552
+
1553
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:268
1554
+ __( 'You had ', 'google-analytics-for-wordpress' ),
1555
+
1556
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:269
1557
+ __( ' visitors!', 'google-analytics-for-wordpress' ),
1558
+
1559
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:270
1560
+ __( ' visitors', 'google-analytics-for-wordpress' ),
1561
+
1562
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:271
1563
+ __( 'Total Visitors', 'google-analytics-for-wordpress' ),
1564
+
1565
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:272
1566
+ __( 'Total Sessions', 'google-analytics-for-wordpress' ),
1567
+
1568
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:273
1569
+ __( 'Visitors by Month', 'google-analytics-for-wordpress' ),
1570
+
1571
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:274
1572
+ __( 'January 1, 2020 - December 31, 2020', 'google-analytics-for-wordpress' ),
1573
+
1574
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:275
1575
+ __( 'A Tip for 2021', 'google-analytics-for-wordpress' ),
1576
+
1577
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:59
1578
+ __( 'Demographics', 'google-analytics-for-wordpress' ),
1579
 
1580
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:277
1581
+ __( '#1', 'google-analytics-for-wordpress' ),
1582
 
1583
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:278
1584
+ __( 'You Top 5 Countries', 'google-analytics-for-wordpress' ),
1585
 
1586
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:279
1587
+ __( 'Let’s get to know your visitors a little better, shall we?', 'google-analytics-for-wordpress' ),
1588
 
1589
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:280
1590
+ __( 'Gender', 'google-analytics-for-wordpress' ),
1591
 
1592
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:281
1593
+ __( 'Female', 'google-analytics-for-wordpress' ),
1594
 
1595
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:282
1596
+ __( 'Women', 'google-analytics-for-wordpress' ),
 
1597
 
1598
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:283
1599
+ __( 'Male', 'google-analytics-for-wordpress' ),
1600
 
1601
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:284
1602
+ __( 'Average Age', 'google-analytics-for-wordpress' ),
1603
 
1604
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:106
1605
+ __( 'Behavior', 'google-analytics-for-wordpress' ),
1606
 
1607
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:286
1608
+ __( 'Your Top 5 Pages', 'google-analytics-for-wordpress' ),
1609
 
1610
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:288
1611
+ __( 'Time Spent on Site', 'google-analytics-for-wordpress' ),
1612
 
1613
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:289
1614
+ __( 'minutes', 'google-analytics-for-wordpress' ),
1615
 
1616
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:290
1617
+ __( 'Device Type', 'google-analytics-for-wordpress' ),
1618
 
1619
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:291
1620
+ __( 'A Tip For 2021', 'google-analytics-for-wordpress' ),
1621
 
1622
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:292
1623
+ __( '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' ),
1624
 
1625
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:293
1626
+ __( 'Read - 32 Marketing Hacks to Grow Your Traffic', 'google-analytics-for-wordpress' ),
1627
 
1628
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:295
1629
+ __( 'So, where did all of these visitors come from?', 'google-analytics-for-wordpress' ),
1630
 
1631
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:296
1632
+ __( 'Clicks', 'google-analytics-for-wordpress' ),
 
1633
 
1634
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:297
1635
+ __( 'Your Top 5 Keywords', 'google-analytics-for-wordpress' ),
1636
 
1637
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:298
1638
+ __( 'What keywords visitors searched for to find your site', 'google-analytics-for-wordpress' ),
1639
 
1640
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:299
1641
+ __( 'Your Top 5 Referrals', 'google-analytics-for-wordpress' ),
1642
 
1643
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:301
1644
+ __( 'The websites that link back to your website', 'google-analytics-for-wordpress' ),
1645
 
1646
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:302
1647
+ __( 'Opportunity', 'google-analytics-for-wordpress' ),
1648
 
1649
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:303
1650
+ __( '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' ),
1651
 
1652
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:304
1653
+ __( 'Read - How to Ethically Steal Your Competitor’s Traffic', 'google-analytics-for-wordpress' ),
1654
 
1655
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:306
1656
+ __( 'Thank you for using MonsterInsights!', 'google-analytics-for-wordpress' ),
 
1657
 
1658
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:307
1659
+ __( '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' ),
 
1660
 
1661
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:308
1662
+ __( 'Here\'s to an amazing 2021!', 'google-analytics-for-wordpress' ),
 
1663
 
1664
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:309
1665
+ __( 'Enjoying MonsterInsights', 'google-analytics-for-wordpress' ),
 
1666
 
1667
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:310
1668
+ __( 'Leave a five star review!', 'google-analytics-for-wordpress' ),
 
1669
 
1670
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:311
1671
+ __( 'Syed Balkhi', 'google-analytics-for-wordpress' ),
 
1672
 
1673
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:312
1674
+ __( 'Chris Christoff', 'google-analytics-for-wordpress' ),
1675
 
1676
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:313
1677
+ __( 'Write Review', 'google-analytics-for-wordpress' ),
1678
 
1679
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:314
1680
+ __( 'Did you know over 10 million websites use our plugins?', 'google-analytics-for-wordpress' ),
1681
 
1682
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:315
1683
+ __( 'Try our other popular WordPress plugins to grow your website in 2021.', 'google-analytics-for-wordpress' ),
 
1684
 
1685
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:316
1686
+ __( 'Join our Communities!', 'google-analytics-for-wordpress' ),
1687
 
1688
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:317
1689
+ __( 'Become a WordPress expert in 2021. Join our amazing communities and take your website to the next level.', 'google-analytics-for-wordpress' ),
1690
 
1691
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:318
1692
+ __( 'Facebook Group', 'google-analytics-for-wordpress' ),
1693
 
1694
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:319
1695
+ __( 'Join our team of WordPress experts and other motivated website owners in the WPBeginner Engage Facebook Group.', 'google-analytics-for-wordpress' ),
1696
 
1697
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:320
1698
+ __( 'Join Now...It’s Free!', 'google-analytics-for-wordpress' ),
1699
 
1700
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:321
1701
+ __( 'WordPress Tutorials by WPBeginner', 'google-analytics-for-wordpress' ),
1702
 
1703
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:322
1704
+ __( 'WPBeginner is the largest free WordPress resource site for beginners and non-techy users.', 'google-analytics-for-wordpress' ),
1705
 
1706
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:323
1707
+ __( 'Visit WPBeginner', 'google-analytics-for-wordpress' ),
1708
 
1709
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:324
1710
+ __( 'Follow Us!', 'google-analytics-for-wordpress' ),
1711
 
1712
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:325
1713
+ __( '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' ),
1714
 
1715
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:326
1716
+ __( 'Copyright MonsterInsights, 2021', 'google-analytics-for-wordpress' ),
1717
 
1718
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:327
1719
+ __( 'Upgrade to MonsterInsights Pro to Unlock Additional Actionable Insights', 'google-analytics-for-wordpress' ),
1720
 
1721
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:331
1722
+ __( 'January', 'google-analytics-for-wordpress' ),
1723
 
1724
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:332
1725
+ __( 'February', 'google-analytics-for-wordpress' ),
1726
 
1727
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:333
1728
+ __( 'March', 'google-analytics-for-wordpress' ),
1729
 
1730
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:334
1731
+ __( 'April', 'google-analytics-for-wordpress' ),
1732
 
1733
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:335
1734
+ __( 'May', 'google-analytics-for-wordpress' ),
1735
 
1736
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:336
1737
+ __( 'June', 'google-analytics-for-wordpress' ),
1738
 
1739
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:337
1740
+ __( 'July', 'google-analytics-for-wordpress' ),
1741
 
1742
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:338
1743
+ __( 'August', 'google-analytics-for-wordpress' ),
 
1744
 
1745
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:339
1746
+ __( 'September', 'google-analytics-for-wordpress' ),
 
1747
 
1748
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:340
1749
+ __( 'October', 'google-analytics-for-wordpress' ),
1750
 
1751
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:341
1752
+ __( 'November', 'google-analytics-for-wordpress' ),
1753
 
1754
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:342
1755
+ __( 'December', 'google-analytics-for-wordpress' ),
1756
 
1757
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:370
1758
+ /* Translators: Number of visitors. */
1759
+ __( 'Your best month was <strong>%1$s</strong> with <strong>%2$s visitors!</strong>', 'google-analytics-for-wordpress' ),
1760
 
1761
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:373
1762
+ __( 'See the top Traffic Sources and Top Pages for the Month of %s in the Overview Report to replicate your success.', 'google-analytics-for-wordpress' ),
1763
 
1764
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:392
1765
+ /* Translators: Number of visitors. */
1766
+ __( 'Your <strong>%1$s</strong> visitors came from <strong>%2$s</strong> different countries.', 'google-analytics-for-wordpress' ),
1767
 
1768
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:399
1769
+ /* Translators: Number of visitors. */
1770
+ __( '%s Visitors', 'google-analytics-for-wordpress' ),
1771
 
1772
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:414
1773
+ /* Translators: Percent and Number of visitors. */
1774
+ __( '%1$s&#37 of your visitors were %2$s', 'google-analytics-for-wordpress' ),
1775
 
1776
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:421
1777
+ /* Translators: Number of visitors and their age. */
1778
+ __( '%1$s&#37 of your visitors were between the ages of %2$s', 'google-analytics-for-wordpress' ),
1779
 
1780
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:434
1781
+ /* Translators: Number of visitors and number of pages. */
1782
+ __( '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' ),
1783
 
1784
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:459
1785
+ /* Translators: Number of minutes spent on site. */
1786
+ __( 'Each visitor spent an average of %s minutes on your website in 2020.', 'google-analytics-for-wordpress' ),
1787
 
1788
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:481
1789
+ /* Translators: Name of device type. */
1790
+ __( 'Most of your visitors viewed your website from their <strong>%s</strong> device.', 'google-analytics-for-wordpress' ),
1791
 
1792
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:485
1793
+ /* Translators: Number of visitors and device percentage. */
1794
+ __( '%1$s&#37 of your visitors were on a %2$s device.', 'google-analytics-for-wordpress' ),
1795
 
1796
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:198
1797
+ __( 'Desktop', 'google-analytics-for-wordpress' ),
1798
 
1799
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:199
1800
+ __( 'Tablet', 'google-analytics-for-wordpress' ),
1801
 
1802
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:200
1803
+ __( 'Mobile', 'google-analytics-for-wordpress' ),
 
1804
 
1805
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:52
1806
+ __( 'Right Now', 'google-analytics-for-wordpress' ),
 
1807
 
1808
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:53
1809
+ __( 'Active users on site', 'google-analytics-for-wordpress' ),
 
1810
 
1811
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:54
1812
+ __( 'The real-time graph of visitors over time is not currently available for this site. Please try again later.', 'google-analytics-for-wordpress' ),
1813
 
1814
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:55
1815
+ __( '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' ),
1816
 
1817
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:56
1818
+ __( 'The real-time report automatically updates approximately every 60 seconds.', 'google-analytics-for-wordpress' ),
1819
 
1820
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:58
1821
+ /* Translators: Number of seconds that have passed since the report was refreshed. */
1822
+ __( 'The real-time report was last updated %s seconds ago.', 'google-analytics-for-wordpress' ),
1823
 
1824
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:59
1825
+ __( 'The latest data will be automatically shown on this page when it becomes available.', 'google-analytics-for-wordpress' ),
1826
 
1827
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:60
1828
+ __( 'There is no need to refresh the browser (doing so won\'t have any effect).', 'google-analytics-for-wordpress' ),
1829
 
1830
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:316
1831
+ __( 'Pageviews Per Minute', 'google-analytics-for-wordpress' ),
1832
 
1833
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:64
1834
+ __( 'Top Pages', 'google-analytics-for-wordpress' ),
1835
 
1836
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:65
1837
+ __( 'No pageviews currently.', 'google-analytics-for-wordpress' ),
1838
 
1839
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:67
1840
+ __( 'Page', 'google-analytics-for-wordpress' ),
1841
 
1842
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:68
1843
+ __( 'Pageview Count', 'google-analytics-for-wordpress' ),
1844
 
1845
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:69
1846
+ __( 'Percent of Total', 'google-analytics-for-wordpress' ),
1847
 
1848
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:72
1849
+ __( 'This is the number of active users currently on your site.', 'google-analytics-for-wordpress' ),
1850
 
1851
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:73
1852
+ __( 'This graph shows the number of pageviews for each of the last 30 minutes.', 'google-analytics-for-wordpress' ),
1853
 
1854
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:74
1855
+ __( 'This list shows the top pages users are currently viewing on your site.', 'google-analytics-for-wordpress' ),
1856
 
1857
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:75
1858
+ __( 'View All Real-Time Pageviews', 'google-analytics-for-wordpress' ),
1859
 
1860
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:76
1861
+ __( 'View All Real-Time Traffic Sources', 'google-analytics-for-wordpress' ),
1862
 
1863
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:77
1864
+ __( 'View All Real-Time Traffic by Country', 'google-analytics-for-wordpress' ),
1865
 
1866
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:78
1867
+ __( 'View All Real-Time Traffic by City', 'google-analytics-for-wordpress' ),
1868
 
1869
+ // Reference: src/modules/widget/components/settings/WidgetSettingsReports-Lite.vue:68
1870
+ __( 'Show Overview Reports', 'google-analytics-for-wordpress' ),
1871
 
1872
+ // Reference: src/modules/widget/components/settings/WidgetSettingsReports-Lite.vue:69
1873
+ __( 'Show Publishers Reports', 'google-analytics-for-wordpress' ),
1874
 
1875
+ // Reference: src/modules/widget/components/settings/WidgetSettingsReports-Lite.vue:70
1876
+ __( 'Show eCommerce Reports', 'google-analytics-for-wordpress' ),
1877
 
1878
+ // Reference: src/modules/widget/components/settings/WidgetSettingsReports-Lite.vue:71
1879
+ __( 'Settings Menu', 'google-analytics-for-wordpress' ),
1880
 
1881
+ // Reference: src/modules/widget/components/settings/WidgetSettingsReports-Lite.vue:73
1882
+ __( 'Available in PRO version', 'google-analytics-for-wordpress' ),
1883
 
1884
+ // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:19
1885
+ __( 'Thank you for being a loyal MonsterInsights Lite user.', 'google-analytics-for-wordpress' ),
1886
 
1887
+ // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:20
1888
+ __( 'Upgrade to MonsterInsights Pro and unlock all the awesome features.', 'google-analytics-for-wordpress' ),
1889
 
1890
+ // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:22
1891
+ /* Translators: Gets replaced with the coupon code. */
1892
+ __( 'Use coupon code %s to get 50%% off.', 'google-analytics-for-wordpress' ),
1893
 
1894
+ // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:24
1895
+ __( 'Dashboard widget', 'google-analytics-for-wordpress' ),
1896
 
1897
+ // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:25
1898
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:65
1899
+ __( 'Affiliate Links', 'google-analytics-for-wordpress' ),
1900
 
1901
+ // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:27
1902
+ __( 'Enhanced Ecommerce', 'google-analytics-for-wordpress' ),
1903
 
1904
+ // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:28
1905
+ __( 'Banner Ads', 'google-analytics-for-wordpress' ),
1906
 
1907
+ // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:31
1908
+ __( 'Google AMP', 'google-analytics-for-wordpress' ),
1909
 
1910
+ // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:32
1911
+ __( 'SEO Score Tracking', 'google-analytics-for-wordpress' ),
1912
 
1913
+ // Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:100
1914
+ // Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:26
1915
+ __( 'Activating...', 'google-analytics-for-wordpress' ),
1916
 
1917
+ // Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:103
1918
+ __( 'Deactivating...', 'google-analytics-for-wordpress' ),
1919
 
1920
+ // Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:109
1921
+ __( 'Deactivate', 'google-analytics-for-wordpress' ),
1922
 
1923
+ // Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:43
1924
+ /* Translators: The status of the addon (installed/active/inactive). */
1925
+ __( 'Status: %s', 'google-analytics-for-wordpress' ),
1926
 
1927
+ // Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:81
1928
+ __( 'Not Installed', 'google-analytics-for-wordpress' ),
1929
 
1930
+ // Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:87
1931
+ __( 'Network Active', 'google-analytics-for-wordpress' ),
1932
 
1933
+ // Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:87
1934
+ __( 'Active', 'google-analytics-for-wordpress' ),
1935
 
1936
+ // Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:89
1937
+ __( 'Inactive', 'google-analytics-for-wordpress' ),
1938
 
1939
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:162
1940
+ /* Translators: Adds a link to the general settings tab. */
1941
+ __( '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' ),
1942
 
1943
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:58
1944
+ __( 'Export PDF Reports', 'google-analytics-for-wordpress' ),
1945
 
1946
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:59
1947
+ __( 'Permissions', 'google-analytics-for-wordpress' ),
1948
 
1949
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:60
1950
+ __( 'Allow These User Roles to See Reports', 'google-analytics-for-wordpress' ),
1951
 
1952
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:61
1953
+ __( 'Users that have at least one of these roles will be able to view the reports.', 'google-analytics-for-wordpress' ),
1954
 
1955
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:62
1956
+ __( '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' ),
 
1957
 
1958
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:63
1959
+ __( 'Allow These User Roles to Save Settings', 'google-analytics-for-wordpress' ),
1960
 
1961
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:64
1962
+ __( 'Users that have at least one of these roles will be able to view and save the settings panel.', 'google-analytics-for-wordpress' ),
1963
 
1964
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:65
1965
+ __( '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' ),
1966
 
1967
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:66
1968
+ __( 'Exclude These User Roles From Tracking', 'google-analytics-for-wordpress' ),
1969
 
1970
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:68
1971
+ __( 'Users that have at least one of these roles will not be tracked into Google Analytics.', 'google-analytics-for-wordpress' ),
1972
 
1973
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:69
1974
+ __( 'Performance', 'google-analytics-for-wordpress' ),
1975
 
1976
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:77
1977
+ __( 'Custom code', 'google-analytics-for-wordpress' ),
1978
 
1979
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:79
1980
+ /* Translators: Adds a link to the Google reference. */
1981
+ __( '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' ),
1982
 
1983
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:70
1984
+ __( 'Reports', 'google-analytics-for-wordpress' ),
1985
 
1986
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:82
1987
+ __( 'You must have the "unfiltered_html" capability to view/edit this setting.', 'google-analytics-for-wordpress' ),
1988
 
1989
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:72
1990
+ __( 'Hide Admin Bar Reports', 'google-analytics-for-wordpress' ),
1991
 
1992
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:77
1993
+ /* Translators: placeholders make text small. */
1994
+ __( 'Enabled %1$s- Show reports and dashboard widget.%2$s', 'google-analytics-for-wordpress' ),
1995
 
1996
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:82
1997
+ /* Translators: placeholders make text small. */
1998
+ __( 'Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s', 'google-analytics-for-wordpress' ),
1999
 
2000
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:87
2001
+ /* Translators: placeholders make text small. */
2002
+ __( 'Disabled %1$s- Hide reports and dashboard widget.%2$s', 'google-analytics-for-wordpress' ),
2003
 
2004
+ // Reference: src/modules/notifications/components/NotificationsIndicator.vue:19
2005
+ __( 'View notifications', 'google-analytics-for-wordpress' ),
2006
 
2007
+ // Reference: src/modules/settings/api/index.js:23
2008
+ /* Translators: Error status and error text. */
2009
+ __( 'Can\'t load settings. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2010
 
2011
+ // Reference: src/modules/wizard-onboarding/api/index.js:22
2012
+ __( 'You appear to be offline.', 'google-analytics-for-wordpress' ),
2013
 
2014
+ // Reference: src/modules/popular-posts/api/index.js:43
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/popular-posts/api/index.js:47
2019
+ __( 'Network error encountered. Settings not saved.', 'google-analytics-for-wordpress' ),
2020
 
2021
+ // Reference: src/modules/license/api/index.js:118
2022
+ /* Translators: Error status and error text. */
2023
+ __( 'Can\'t deactivate the license. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2024
 
2025
+ // Reference: src/modules/license/api/index.js:145
2026
+ /* Translators: Error status and error text. */
2027
+ __( 'Can\'t upgrade to PRO please try again. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2028
 
2029
+ // Reference: src/modules/license/api/index.js:18
2030
+ /* Translators: Error status and error text. */
2031
+ __( 'Can\'t load license details. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2032
 
2033
+ // Reference: src/modules/license/api/index.js:24
2034
+ __( 'Error loading license details', 'google-analytics-for-wordpress' ),
2035
 
2036
+ // Reference: src/modules/license/api/index.js:57
2037
+ /* Translators: Error status and error text. */
2038
+ __( 'Can\'t verify the license. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2039
 
2040
+ // Reference: src/modules/license/api/index.js:82
2041
+ /* Translators: Error status and error text. */
2042
+ __( 'Can\'t validate the license. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2043
 
2044
+ // Reference: src/modules/auth/api/index.js:119
2045
+ /* Translators: Error status and error text. */
2046
+ __( 'Can\'t deauthenticate. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2047
 
2048
+ // Reference: src/modules/auth/api/index.js:17
2049
+ /* Translators: Error status and error text. */
2050
+ __( 'Can\'t load authentication details. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2051
 
2052
+ // Reference: src/modules/auth/api/index.js:236
2053
+ __( 'You appear to be offline. Settings not saved.', 'google-analytics-for-wordpress' ),
2054
 
2055
+ // Reference: src/modules/auth/api/index.js:42
2056
+ /* Translators: Error status and error text. */
2057
+ __( 'Can\'t authenticate. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2058
 
2059
+ // Reference: src/modules/auth/api/index.js:67
2060
+ /* Translators: Error status and error text. */
2061
+ __( 'Can\'t reauthenticate. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2062
 
2063
+ // Reference: src/modules/auth/api/index.js:90
2064
+ /* Translators: Error status and error text. */
2065
+ __( 'Can\'t verify credentials. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2066
 
2067
+ // Reference: src/components/TheAppFTPForm.vue:100
2068
+ __( 'Proceed', 'google-analytics-for-wordpress' ),
2069
 
2070
+ // Reference: src/components/TheAppFTPForm.vue:92
2071
+ __( 'Connection Information', 'google-analytics-for-wordpress' ),
2072
 
2073
+ // Reference: src/components/TheAppFTPForm.vue:93
2074
+ __( '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' ),
2075
 
2076
+ // Reference: src/components/TheAppFTPForm.vue:94
2077
+ __( 'Hostname', 'google-analytics-for-wordpress' ),
2078
 
2079
+ // Reference: src/components/TheAppFTPForm.vue:95
2080
+ __( 'FTP Username', 'google-analytics-for-wordpress' ),
2081
 
2082
+ // Reference: src/components/TheAppFTPForm.vue:96
2083
+ __( 'FTP Password', 'google-analytics-for-wordpress' ),
2084
 
2085
+ // Reference: src/components/TheAppFTPForm.vue:97
2086
+ __( 'This password will not be stored on the server.', 'google-analytics-for-wordpress' ),
2087
 
2088
+ // Reference: src/components/TheAppFTPForm.vue:98
2089
+ __( 'Connection Type', 'google-analytics-for-wordpress' ),
2090
 
2091
+ // Reference: src/components/TheAppFTPForm.vue:99
2092
+ __( 'Cancel', 'google-analytics-for-wordpress' ),
2093
 
2094
+ // Reference: src/modules/addons/api/index.js:103
2095
+ __( 'You appear to be offline. WPForms not installed.', 'google-analytics-for-wordpress' ),
2096
 
2097
+ // Reference: src/modules/addons/api/index.js:132
2098
+ /* Translators: Error status and error text. */
2099
+ __( 'Can\'t activate addon. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2100
 
2101
+ // Reference: src/modules/addons/api/index.js:136
2102
+ __( 'You appear to be offline. Addon not activated.', 'google-analytics-for-wordpress' ),
2103
 
2104
+ // Reference: src/modules/addons/api/index.js:165
2105
+ /* Translators: Error status and error text. */
2106
+ __( 'Can\'t deactivate addon. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2107
 
2108
+ // Reference: src/modules/addons/api/index.js:169
2109
+ __( 'You appear to be offline. Addon not deactivated.', 'google-analytics-for-wordpress' ),
2110
 
2111
+ // Reference: src/modules/addons/api/index.js:200
2112
+ /* Translators: Error status and error text. */
2113
+ __( 'Can\'t install plugin. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2114
 
2115
+ // Reference: src/modules/addons/api/index.js:204
2116
+ __( 'You appear to be offline. Plugin not installed.', 'google-analytics-for-wordpress' ),
2117
 
2118
+ // Reference: src/modules/addons/api/index.js:64
2119
+ /* Translators: Error status and error text. */
2120
+ __( 'Can\'t install addon. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2121
 
2122
+ // Reference: src/modules/addons/api/index.js:68
2123
+ __( 'You appear to be offline. Addon not installed.', 'google-analytics-for-wordpress' ),
2124
 
2125
+ // Reference: src/modules/addons/api/index.js:99
2126
+ /* Translators: Error status and error text. */
2127
+ __( 'Can\'t install WPForms. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2128
 
2129
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:53
 
2130
  /* Translators: Example path (/go/). */
2131
  __( 'Path (example: %s)', 'google-analytics-for-wordpress' ),
2132
 
2133
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:55
 
2134
  __( 'Path has to start with a / and have no spaces', 'google-analytics-for-wordpress' ),
2135
 
2136
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:60
 
2137
  /* Translators: Example label (aff). */
2138
  __( 'Label (example: %s)', 'google-analytics-for-wordpress' ),
2139
 
 
 
 
 
2140
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:62
2141
+ __( 'Label can\'t contain any spaces', 'google-analytics-for-wordpress' ),
2142
 
2143
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:67
2144
  /* Translators: Add links to documentation. */
2145
+ __( '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' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2146
 
2147
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:68
2148
+ __( 'Our affiliate link tracking works by setting path for internal links to track as outbound links.', 'google-analytics-for-wordpress' ),
2149
 
2150
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:71
2151
+ __( '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' ),
2152
 
2153
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:72
2154
+ __( 'Disable the Headline Analyzer', 'google-analytics-for-wordpress' ),
2155
 
2156
+ // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:100
2157
+ __( 'Warning: If you use a manual GA4 Measurement ID, you won\'t be able to use any of the reporting and some of the tracking features. Your Measurement ID should look like G-XXXXXXXXXX where the X\'s are numbers.', 'google-analytics-for-wordpress' ),
2158
 
2159
+ // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:101
2160
+ __( 'Or manually enter UA code (limited functionality)', 'google-analytics-for-wordpress' ),
2161
 
2162
+ // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:102
2163
+ __( 'Dual Tracking Profile', 'google-analytics-for-wordpress' ),
2164
 
2165
+ // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:104
2166
+ __( 'The dual tracking feature allows you to continue tracking this site into an existing GAv3 property so you can continue to use the GA reports you are used to already. Learn more about this feature %1$shere%2$s.', 'google-analytics-for-wordpress' ),
2167
 
2168
+ // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:108
2169
+ __( 'Your Universal Analytics code should look like UA-XXXXXXXXXX where the X\'s are numbers.', 'google-analytics-for-wordpress' ),
2170
 
2171
+ // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:110
2172
+ __( 'The dual tracking feature allows you to begin tracking this site into a GAv4 property to take advantage of the new GAv4 analysis tools. Learn more about this feature %1$shere%2$s.', 'google-analytics-for-wordpress' ),
2173
 
2174
+ // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:114
2175
+ __( 'Your Measurement ID should look like G-XXXXXXXXXX where the X\'s are numbers.', 'google-analytics-for-wordpress' ),
2176
 
2177
+ // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:115
2178
+ __( 'Measurement Protocol API Secret', 'google-analytics-for-wordpress' ),
 
2179
 
2180
+ // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:117
2181
+ __( 'The Measurement Protocol API secret allows your site to send tracking data to Google Analytics. To retrieve your Measurement Protocol API Secret, follow %1$sthis guide%2$s.', 'google-analytics-for-wordpress' ),
2182
 
2183
+ // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:129
2184
+ __( 'Force Deauthenticate', 'google-analytics-for-wordpress' ),
2185
 
2186
+ // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:129
2187
+ __( 'Disconnect MonsterInsights', 'google-analytics-for-wordpress' ),
2188
 
2189
+ // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:182
2190
+ __( 'Authenticating', 'google-analytics-for-wordpress' ),
2191
 
2192
+ // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:236
2193
+ __( 'Verifying Credentials', 'google-analytics-for-wordpress' ),
 
2194
 
2195
+ // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:251
2196
+ __( 'Your site is connected to MonsterInsights!', 'google-analytics-for-wordpress' ),
 
2197
 
2198
+ // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:269
2199
+ __( 'Deauthenticating', 'google-analytics-for-wordpress' ),
 
2200
 
2201
+ // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:287
2202
+ __( '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' ),
2203
 
2204
+ // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:90
2205
+ __( 'Connect MonsterInsights', 'google-analytics-for-wordpress' ),
2206
 
2207
+ // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:91
2208
+ __( 'Verify Credentials', 'google-analytics-for-wordpress' ),
2209
 
2210
+ // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:93
2211
+ __( 'Website Profile', 'google-analytics-for-wordpress' ),
2212
 
2213
+ // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:94
2214
+ __( 'Active Profile', 'google-analytics-for-wordpress' ),
2215
 
2216
+ // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:95
2217
+ __( 'Your website profile has been set at the network level of your WordPress Multisite.', 'google-analytics-for-wordpress' ),
2218
 
2219
+ // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:96
2220
+ __( 'If you would like to use a different profile for this subsite, you can authenticate below.', 'google-analytics-for-wordpress' ),
2221
 
2222
+ // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:97
2223
+ __( 'Manually enter your UA code', 'google-analytics-for-wordpress' ),
2224
 
2225
+ // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:98
2226
+ __( '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' ),
2227
 
2228
+ // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:99
2229
+ __( 'Manually enter your GA4 Measurement ID', 'google-analytics-for-wordpress' ),
2230
 
2231
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:60
2232
  __( 'Enable Demographics and Interests Reports for Remarketing and Advertising', 'google-analytics-for-wordpress' ),
2306
  /* Translators: Adds a link to the documentation. */
2307
  __( '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' ),
2308
 
2309
+ // Reference: src/modules/reports/components/ReportInfobox.vue:41
2310
+ /* Translators: Number of days. */
2311
+ __( 'vs. Previous Day', 'google-analytics-for-wordpress' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2312
 
2313
+ // Reference: src/modules/reports/components/ReportInfobox.vue:58
2314
+ __( 'No change', 'google-analytics-for-wordpress' ),
2315
 
2316
+ // Reference: src/modules/widget/components/WidgetTips.vue:19
2317
+ __( 'Forms Tracking help you see who’s viewing your forms, so you can increase conversions.', 'google-analytics-for-wordpress' ),
2318
 
2319
+ // Reference: src/modules/widget/components/WidgetTips.vue:24
2320
+ __( 'Custom Dimensions show you popular categories, best time to publish, focus keywords, etc.', 'google-analytics-for-wordpress' ),
 
2321
 
2322
+ // Reference: src/modules/widget/components/WidgetTips.vue:29
2323
+ __( 'Make Google Analytics GDPR compliant with our EU Compliance addon.', 'google-analytics-for-wordpress' ),
 
2324
 
2325
+ // Reference: src/modules/widget/components/WidgetTips.vue:34
2326
+ __( 'Get real-time Google Analytics report right inside your WordPress dashboard.', 'google-analytics-for-wordpress' ),
 
2327
 
2328
+ // Reference: src/modules/widget/components/WidgetTips.vue:39
2329
+ __( 'Use Google Optimize to easily perform A/B split tests on your site.', 'google-analytics-for-wordpress' ),
2330
 
2331
+ // Reference: src/modules/widget/components/WidgetTips.vue:44
2332
+ __( 'See all your important store metrics in one place with Enhanced Ecommerce Tracking.', 'google-analytics-for-wordpress' ),
2333
 
2334
+ // Reference: src/modules/widget/components/WidgetTips.vue:49
2335
+ __( 'Unlock search console report to see your top performing keywords in Google.', 'google-analytics-for-wordpress' ),
2336
 
2337
+ // Reference: src/modules/widget/components/WidgetTips.vue:54
2338
+ __( 'Get Page Insights to see important metrics for individual posts / pages in WordPress.', 'google-analytics-for-wordpress' ),
 
2339
 
2340
+ // Reference: src/modules/widget/components/WidgetTips.vue:59
2341
+ __( 'Publishers Report shows your top performing pages, audience demographics, and more.', 'google-analytics-for-wordpress' ),
2342
 
2343
+ // Reference: src/modules/widget/components/WidgetTips.vue:64
2344
+ __( 'Get Scroll-Depth tracking to see how far users scroll on your pages before leaving.', 'google-analytics-for-wordpress' ),
 
2345
 
2346
+ // Reference: src/modules/widget/components/WidgetTips.vue:69
2347
+ __( 'Upgrade to Pro »', 'google-analytics-for-wordpress' ),
 
2348
 
2349
+ // Reference: src/modules/widget/components/WidgetTips.vue:70
2350
+ __( 'Pro Tip:', 'google-analytics-for-wordpress' ),
2351
 
2352
+ // Reference: src/modules/reports/components/reports-year-in-review/ReportYearInReviewListBox.vue:38
2353
+ __( 'Show', 'google-analytics-for-wordpress' ),
2354
 
2355
+ // Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:14
2356
+ __( 'Hide dashboard widget', 'google-analytics-for-wordpress' ),
2357
 
2358
+ // Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:31
2359
+ __( 'Are you sure you want to hide the MonsterInsights Dashboard Widget? ', 'google-analytics-for-wordpress' ),
2360
 
2361
+ // Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:33
2362
+ __( 'Yes, hide it!', 'google-analytics-for-wordpress' ),
 
2363
 
2364
+ // Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:34
2365
+ __( 'No, cancel!', 'google-analytics-for-wordpress' ),
 
2366
 
2367
+ // Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:40
2368
+ __( 'MonsterInsights Widget Hidden', 'google-analytics-for-wordpress' ),
 
2369
 
2370
+ // Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:41
2371
+ __( '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' ),
 
2372
 
2373
+ // Reference: src/modules/settings/components/input/tab-engagement/SettingsInputEUCompliance-Lite.vue:22
2374
+ __( 'Upgrade', 'google-analytics-for-wordpress' ),
2375
 
2376
+ // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:39
2377
+ __( 'Usage Tracking', 'google-analytics-for-wordpress' ),
 
2378
 
2379
+ // Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:28
2380
+ __( 'Allow Usage Tracking', 'google-analytics-for-wordpress' ),
 
2381
 
2382
+ // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:40
2383
+ __( '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' ),
2384
 
2385
+ // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:43
2386
+ /* Translators: Add links to documentation. */
2387
+ __( 'Complete documentation on usage tracking is available %1$shere%2$s.', 'google-analytics-for-wordpress' ),
2388
 
2389
+ // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:30
2390
+ /* Translators: Make text green and add smiley face. */
2391
+ __( 'You\'re using %1$sMonsterInsights Lite%2$s - no license needed. Enjoy! %3$s', 'google-analytics-for-wordpress' ),
2392
 
2393
+ // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:32
2394
+ /* Translators: Add link to upgrade. */
2395
+ __( 'To unlock more features consider %1$supgrading to PRO%2$s.', 'google-analytics-for-wordpress' ),
2396
 
2397
+ // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:34
2398
+ /* Translators: Make text green. */
2399
+ __( 'As a valued MonsterInsights Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!', 'google-analytics-for-wordpress' ),
2400
 
2401
+ // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:35
2402
+ __( 'Unlock PRO Features Now', 'google-analytics-for-wordpress' ),
2403
 
2404
+ // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:36
2405
+ __( 'Paste your license key here', 'google-analytics-for-wordpress' ),
 
2406
 
2407
+ // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:37
2408
+ __( 'Verify', 'google-analytics-for-wordpress' ),
2409
 
2410
+ // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:39
2411
+ /* Translators: Add link to retrieve license from account area. */
2412
+ __( 'Already purchased? Simply enter your license key below to connect with MonsterInsights PRO! %1$sRetrieve your license key%2$s.', 'google-analytics-for-wordpress' ),
2413
 
2414
+ // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:69
2415
+ __( 'There was an error unlocking MonsterInsights PRO please try again or install manually.', 'google-analytics-for-wordpress' ),
2416
 
2417
+ // Reference: src/modules/wizard-onboarding/api/index.js:18
2418
  /* Translators: Error status and error text. */
2419
+ __( 'Can\'t load errors. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2420
+
2421
+ // Reference: src/modules/settings/components/input/SettingsInputSelect.vue:62
2422
+ __( 'No options available', 'google-analytics-for-wordpress' ),
2423
 
2424
  // Reference: src/modules/seo/components/yoast.vue:137
2425
  __( '%1$sAll-in-One SEO%2$s Makes SEO Simple. Gain Valuable Organic Traffic.', 'google-analytics-for-wordpress' ),
2427
  // Reference: src/modules/seo/components/yoast.vue:138
2428
  __( 'Automatically migrate all of your SEO settings with just 1 click!', 'google-analytics-for-wordpress' ),
2429
 
2430
+ // Reference: src/modules/seo/components/yoast.vue:139
2431
  __( '1,938', 'google-analytics-for-wordpress' ),
2432
 
2433
+ // Reference: src/modules/seo/components/yoast.vue:140
2434
  __( '2+ Million Active Installs', 'google-analytics-for-wordpress' ),
2435
 
2436
  // Reference: src/modules/seo/components/yoast.vue:143
2439
  // Reference: src/modules/seo/components/yoast.vue:144
2440
  __( 'Set up the proper SEO foundations in less than 10 minutes.', 'google-analytics-for-wordpress' ),
2441
 
2442
+ // Reference: src/modules/seo/components/yoast.vue:145
2443
  __( 'SEO Audit Checklist', 'google-analytics-for-wordpress' ),
2444
 
2445
+ // Reference: src/modules/seo/components/yoast.vue:146
2446
  __( 'Analyze your entire WordPress site to detect critical errors and get actionable insights to boost your SEO and get more traffic.', 'google-analytics-for-wordpress' ),
2447
 
2448
  // Reference: src/modules/seo/components/yoast.vue:147
2454
  // Reference: src/modules/seo/components/yoast.vue:149
2455
  __( 'Get AIOSEO for WordPress', 'google-analytics-for-wordpress' ),
2456
 
2457
+ // Reference: src/modules/seo/components/yoast.vue:152
2458
  __( 'Get the #1 Most Powerful WordPress SEO Plugin Today', 'google-analytics-for-wordpress' ),
2459
 
2460
+ // Reference: src/modules/seo/components/yoast.vue:153
2461
  __( 'Try it out today, for free.', 'google-analytics-for-wordpress' ),
2462
 
2463
+ // Reference: src/modules/seo/components/yoast.vue:156
2464
  __( 'Join 2,000,000+ Professionals who use AIOSEO to Improve Their Website Search Rankings.', 'google-analytics-for-wordpress' ),
2465
 
2466
+ // Reference: src/modules/seo/components/yoast.vue:157
2467
  __( 'Activate and Install the Plugin with just one click!', 'google-analytics-for-wordpress' ),
2468
 
2469
  // Reference: src/modules/seo/components/yoast.vue:222
2470
  __( 'Installing AIOSEO...', 'google-analytics-for-wordpress' ),
2471
 
2472
+ // Reference: src/modules/seo/components/yoast.vue:231
2473
  __( 'Congrats! All-in-One SEO Installed.', 'google-analytics-for-wordpress' ),
2474
 
2475
  // Reference: src/modules/seo/components/yoast.vue:248
2476
  __( 'Switch to AIOSEO', 'google-analytics-for-wordpress' ),
2477
 
2478
+ // Reference: src/modules/seo/components/yoast.vue:252
2479
  __( 'Installation Failed. Please refresh and try again.', 'google-analytics-for-wordpress' ),
2480
 
2481
+ // Reference: src/modules/seo/components/yoast.vue:259
2482
  __( 'Activating AIOSEO...', 'google-analytics-for-wordpress' ),
2483
 
2484
+ // Reference: src/modules/seo/components/yoast.vue:266
2485
  __( 'Activate AIOSEO', 'google-analytics-for-wordpress' ),
2486
 
2487
+ // Reference: src/modules/seo/components/yoast.vue:270
2488
  __( 'Activation Failed. Please refresh and try again.', 'google-analytics-for-wordpress' ),
2489
 
2490
+ // Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:171
2491
+ /* Translators: The name of the field that is throwing a validation error. */
2492
+ __( '%s can\'t be empty.', 'google-analytics-for-wordpress' ),
2493
 
2494
+ // Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:192
2495
+ __( 'Duplicate values are not allowed.', 'google-analytics-for-wordpress' ),
2496
 
2497
+ // Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:54
2498
+ __( 'You can add maximum 5 items.', 'google-analytics-for-wordpress' ),
2499
 
2500
+ // Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:58
2501
+ __( 'At least 0 item required.', 'google-analytics-for-wordpress' ),
2502
 
2503
+ // Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:63
2504
+ __( 'Add Another Link Path', 'google-analytics-for-wordpress' ),
 
 
2505
 
2506
+ // Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:64
2507
+ __( 'Remove row', 'google-analytics-for-wordpress' ),
2508
 
2509
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:167
2510
+ __( 'New', 'google-analytics-for-wordpress' ),
2511
 
2512
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:168
2513
+ __( 'Returning', 'google-analytics-for-wordpress' ),
 
2514
 
2515
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:268
2516
+ __( 'Top 10 Countries', 'google-analytics-for-wordpress' ),
 
2517
 
2518
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:269
2519
+ __( 'View Countries Report', 'google-analytics-for-wordpress' ),
2520
 
2521
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:270
2522
+ __( 'Top 10 Referrals', 'google-analytics-for-wordpress' ),
2523
 
2524
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:271
2525
+ __( 'View All Referral Sources', 'google-analytics-for-wordpress' ),
2526
 
2527
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:273
2528
+ __( 'View Full Posts/Pages Report', 'google-analytics-for-wordpress' ),
2529
+
2530
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:278
2531
+ __( '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' ),
2532
+
2533
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:282
2534
+ __( 'This list shows the top countries your website visitors are from.', 'google-analytics-for-wordpress' ),
2535
+
2536
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:283
2537
+ __( 'This list shows the top websites that send your website traffic, known as referral traffic.', 'google-analytics-for-wordpress' ),
2538
+
2539
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:285
2540
+ __( 'Export PDF Overview Report', 'google-analytics-for-wordpress' ),
2541
+
2542
+ // Reference: src/modules/settings/components/input/SettingsInputNumber.vue:56
2543
+ __( 'Reset to default', 'google-analytics-for-wordpress' ),
2544
+
2545
+ // Reference: src/modules/settings/components/input/SettingsInputText.vue:51
2546
+ __( 'The value entered does not match the required format', 'google-analytics-for-wordpress' ),
2547
+
2548
+ // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputPdfReports-Lite.vue:17
2549
+ __( 'Download the analytics reports instantly from the WordPress dashboard as PDF files and share them with anyone.', 'google-analytics-for-wordpress' ),
2550
+
2551
+ // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputEmailSummaries-Lite.vue:17
2552
+ __( 'Our email summaries feature sends a weekly summary of the most important site analytics information.', 'google-analytics-for-wordpress' ),
2553
+
2554
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:53
2555
+ __( 'Recommended Settings', 'google-analytics-for-wordpress' ),
2556
+
2557
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:54
2558
+ __( 'MonsterInsights recommends the following settings based on your configuration.', 'google-analytics-for-wordpress' ),
2559
+
2560
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:55
2561
+ __( 'Events Tracking', 'google-analytics-for-wordpress' ),
2562
+
2563
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:56
2564
+ __( 'Must have for all click tracking on site.', 'google-analytics-for-wordpress' ),
2565
+
2566
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:57
2567
+ __( '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' ),
2568
+
2569
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:58
2570
+ __( 'Enhanced Link Attribution', 'google-analytics-for-wordpress' ),
2571
+
2572
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:59
2573
+ __( 'Improves the accuracy of your In-Page Analytics.', 'google-analytics-for-wordpress' ),
2574
+
2575
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:60
2576
+ __( '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' ),
2577
+
2578
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:61
2579
+ __( 'Install Updates Automatically', 'google-analytics-for-wordpress' ),
2580
+
2581
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:62
2582
+ __( 'Get the latest features, bug fixes, and security updates as they are released.', 'google-analytics-for-wordpress' ),
2583
+
2584
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:63
2585
+ __( 'To ensure you get the latest bug fixes 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' ),
2586
+
2587
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:64
2588
+ __( 'File Download Tracking', 'google-analytics-for-wordpress' ),
2589
+
2590
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:65
2591
+ __( 'Helps you see file downloads data.', 'google-analytics-for-wordpress' ),
2592
+
2593
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:66
2594
+ __( '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' ),
2595
+
2596
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:83
2597
+ __( 'Helps you increase affiliate revenue.', 'google-analytics-for-wordpress' ),
2598
+
2599
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:84
2600
+ __( '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' ),
2601
+
2602
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:85
2603
+ __( 'Affiliate Link Tracking', 'google-analytics-for-wordpress' ),
2604
+
2605
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:86
2606
+ __( 'Who Can See Reports', 'google-analytics-for-wordpress' ),
2607
+
2608
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:87
2609
+ __( 'These user roles will be able to access MonsterInsights\' reports in the WordPress admin area.', 'google-analytics-for-wordpress' ),
2610
+
2611
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:89
2612
+ __( 'Save and continue', 'google-analytics-for-wordpress' ),
2613
+
2614
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:91
2615
+ __( 'Events Tracking is enabled the moment you set up MonsterInsights', 'google-analytics-for-wordpress' ),
2616
+
2617
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:92
2618
+ __( 'Enhanced Link Attribution is enabled the moment you set up MonsterInsights', 'google-analytics-for-wordpress' ),
2619
+
2620
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:93
2621
+ __( '+ Add Role', 'google-analytics-for-wordpress' ),
2622
+
2623
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:48
2624
+ __( 'Connect MonsterInsights to Your Website', 'google-analytics-for-wordpress' ),
2625
+
2626
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:49
2627
+ __( 'MonsterInsights connects Google Analytics to WordPress and shows you stats that matter.', 'google-analytics-for-wordpress' ),
2628
+
2629
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:52
2630
+ __( 'Whoops, something went wrong and we weren\'t able to connect to MonsterInsights. Please enter your Google UA code manually.', 'google-analytics-for-wordpress' ),
2631
 
2632
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:34
2633
+ __( 'Save and Continue', 'google-analytics-for-wordpress' ),
2634
 
2635
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:81
2636
+ __( 'UA code can\'t be empty', 'google-analytics-for-wordpress' ),
2637
 
2638
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:93
2639
+ __( 'Saving UA code...', 'google-analytics-for-wordpress' ),
2640
 
2641
+ // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:41
2642
+ __( 'Allow usage tracking', 'google-analytics-for-wordpress' ),
2643
 
2644
+ // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputPerformance-Lite.vue:18
2645
+ __( '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' ),
2646
 
2647
  // Reference: src/modules/seo/components/aioseo.vue:149
2648
  __( 'Install All-in-One SEO', 'google-analytics-for-wordpress' ),
2710
  // Reference: src/modules/seo/components/aioseo.vue:257
2711
  __( 'Install All-in-One-SEO', 'google-analytics-for-wordpress' ),
2712
 
2713
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:32
2714
+ __( 'Welcome to MonsterInsights!', 'google-analytics-for-wordpress' ),
2715
+
2716
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:33
2717
+ __( 'Let\'s get you set up.', 'google-analytics-for-wordpress' ),
2718
+
2719
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:35
2720
+ __( 'Which category best describes your website?', 'google-analytics-for-wordpress' ),
2721
+
2722
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:36
2723
+ __( 'We will recommend the optimal settings for MonsterInsights based on your choice.', 'google-analytics-for-wordpress' ),
2724
+
2725
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:40
2726
+ __( 'Business Website', 'google-analytics-for-wordpress' ),
2727
+
2728
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:45
2729
+ /* Translators: Make text bold. */
2730
+ __( 'Publisher %1$s(Blog)%2$s', 'google-analytics-for-wordpress' ),
2731
+
2732
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:49
2733
+ __( 'Ecommerce', 'google-analytics-for-wordpress' ),
2734
+
2735
  // Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:45
2736
  __( 'Caching', 'google-analytics-for-wordpress' ),
2737
 
2765
  // Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:92
2766
  __( 'Error emptying the popular posts cache. Please try again.', 'google-analytics-for-wordpress' ),
2767
 
2768
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:105
2769
+ __( 'Choose Theme', 'google-analytics-for-wordpress' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2770
 
2771
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:107
2772
+ __( 'Widget Styling', 'google-analytics-for-wordpress' ),
2773
 
2774
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:108
2775
+ __( 'Choose how you want to determine the colors, font sizes and spacing of the widget.', 'google-analytics-for-wordpress' ),
2776
 
2777
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:109
2778
+ __( 'Sort By', 'google-analytics-for-wordpress' ),
2779
 
2780
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:110
2781
+ __( 'Choose how you\'d like the widget to determine your popular posts.', 'google-analytics-for-wordpress' ),
2782
 
2783
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:106
2784
+ __( 'Display Title', 'google-analytics-for-wordpress' ),
2785
 
2786
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:107
2787
+ __( 'Widget Title', 'google-analytics-for-wordpress' ),
2788
 
2789
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:108
2790
+ __( 'Title your widget and set its display preferences.', 'google-analytics-for-wordpress' ),
2791
 
2792
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:115
2793
+ __( 'Include in Post Types', 'google-analytics-for-wordpress' ),
2794
 
2795
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:116
2796
+ __( 'Exclude from specific posts', 'google-analytics-for-wordpress' ),
2797
 
2798
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:118
2799
+ /* Translators: Placeholders make the text bold. */
2800
+ __( 'Choose which Post Types the widget %1$sWILL%2$s be placed.', 'google-analytics-for-wordpress' ),
2801
 
2802
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:120
2803
+ /* Translators: Placeholders make the text bold. */
2804
+ __( 'Choose from which Posts the widget %1$sWILL NOT%2$s be placed.', 'google-analytics-for-wordpress' ),
2805
 
2806
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:122
2807
+ __( 'Loading Themes', 'google-analytics-for-wordpress' ),
2808
 
2809
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:129
2810
+ /* Translators: placeholders make text small. */
2811
+ __( 'Default Styles %1$s- As seen above.%2$s', 'google-analytics-for-wordpress' ),
2812
 
2813
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:134
2814
+ /* Translators: placeholders make text small. */
2815
+ __( 'No Styles %1$s- Use your own CSS.%2$s', 'google-analytics-for-wordpress' ),
2816
 
2817
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:141
2818
+ /* Translators: placeholders make text small. */
2819
+ __( 'Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s', 'google-analytics-for-wordpress' ),
2820
 
2821
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:146
2822
+ /* Translators: placeholders make text small. */
2823
+ __( 'SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s', 'google-analytics-for-wordpress' ),
2824
 
2825
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:151
2826
+ /* Translators: placeholders make text small. */
2827
+ __( 'Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s', 'google-analytics-for-wordpress' ),
2828
 
2829
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:111
2830
+ __( 'Placement', 'google-analytics-for-wordpress' ),
2831
 
2832
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:112
2833
+ __( 'Choose how you\'d like to place the widget.', 'google-analytics-for-wordpress' ),
 
2834
 
2835
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:113
2836
+ __( 'Insert After', 'google-analytics-for-wordpress' ),
 
2837
 
2838
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:114
2839
+ __( 'Choose where in the post body the widget will be placed.', 'google-analytics-for-wordpress' ),
 
2840
 
2841
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:136
2842
+ __( 'Customize Design', 'google-analytics-for-wordpress' ),
2843
 
2844
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:123
2845
+ __( 'words', 'google-analytics-for-wordpress' ),
2846
 
2847
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:124
2848
+ __( 'Please select at least one post to display.', 'google-analytics-for-wordpress' ),
2849
 
2850
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:158
2851
+ /* Translators: placeholders make text small. */
2852
+ __( 'Automatic %1$s- The widget is automatically placed inside the post body.%2$s', 'google-analytics-for-wordpress' ),
2853
 
2854
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:163
2855
+ /* Translators: placeholders make text small. */
2856
+ __( 'Manual %1$s- Manually place the widget using Gutenberg blocks or using our shortcode.%2$s', 'google-analytics-for-wordpress' ),
2857
 
2858
+ // Reference: src/modules/settings/components/input/tab-publisher/monsterinsights-SettingsInputFbia-Lite.vue:22
2859
+ __( 'Facebook Instant Articles', 'google-analytics-for-wordpress' ),
2860
 
2861
+ // Reference: src/modules/settings/components/input/tab-publisher/monsterinsights-SettingsInputFbia-Lite.vue:23
2862
+ __( 'Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to MonsterInsights Pro.', 'google-analytics-for-wordpress' ),
2863
 
2864
+ // Reference: src/modules/settings/components/input/tab-publisher/monsterinsights-SettingsInputAmp-Lite.vue:23
2865
+ __( 'Want to use track users visiting your AMP pages? By upgrading to MonsterInsights Pro, you can enable AMP page tracking.', 'google-analytics-for-wordpress' ),
2866
 
2867
+ // Reference: src/modules/settings/components/input/tab-publisher/monsterinsights-SettingsInputAds-Lite.vue:22
2868
+ __( 'Ads Tracking', 'google-analytics-for-wordpress' ),
2869
 
2870
+ // Reference: src/modules/settings/components/input/tab-publisher/monsterinsights-SettingsInputAds-Lite.vue:23
2871
+ __( 'Add Ads tracking to see who\'s clicking on your Google Ads, so you can increase your revenue.', 'google-analytics-for-wordpress' ),
 
2872
 
2873
+ // Reference: src/modules/seo/components/common/client-logos.vue:39
2874
+ __( '2,000,000+ use AIOSEO to Improve Their Website Search Rankings', 'google-analytics-for-wordpress' ),
2875
 
2876
  // Reference: src/modules/seo/components/common/testimonials.vue:43
2877
  __( 'All-in-One SEO is a great product. I have been using it on all my WP sites for several years. I highly recommend it.', 'google-analytics-for-wordpress' ),
2891
  // Reference: src/modules/seo/components/common/testimonials.vue:48
2892
  __( 'CEO, Solergo', 'google-analytics-for-wordpress' ),
2893
 
2894
+ // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:45
2895
+ __( 'Recommended Addons', 'google-analytics-for-wordpress' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2896
 
2897
+ // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:46
2898
+ __( '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' ),
2899
 
2900
+ // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:47
2901
+ __( 'Other Addons', 'google-analytics-for-wordpress' ),
2902
 
2903
+ // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:48
2904
+ __( 'View all MonsterInsights addons', 'google-analytics-for-wordpress' ),
2905
 
2906
+ // Reference: src/modules/settings/components/input/tab-engagement/SettingsInputScroll-Lite.vue:18
2907
+ __( 'Scroll Tracking', 'google-analytics-for-wordpress' ),
2908
 
2909
+ // Reference: src/modules/settings/components/input/tab-engagement/SettingsInputScroll-Lite.vue:19
2910
+ __( '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' ),
2911
 
2912
  // Reference: src/modules/settings/components/input/tab-engagement/SettingsInputEUCompliance-Lite.vue:23
2913
  __( 'The EU Compliance addon allows you to improve compliance with GDPR
2926
  /* Translators: Placeholder gets replaced with default GA js function. */
2927
  __( 'This enables MonsterInsights to work with plugins that use %1$s and don\'t support %2$s', 'google-analytics-for-wordpress' ),
2928
 
2929
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemePicker.vue:70
2930
+ /* Translators: Page number of total pages. 1 & 2 make the first part of the text bold. */
2931
+ __( '%1$sPage %3$s%2$s of %4$s', 'google-analytics-for-wordpress' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2932
 
2933
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:46
2934
+ __( 'Theme Preview', 'google-analytics-for-wordpress' ),
2935
 
2936
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:61
2937
+ __( 'Wide', 'google-analytics-for-wordpress' ),
2938
 
2939
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:62
2940
+ __( 'Narrow', 'google-analytics-for-wordpress' ),
2941
 
2942
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:137
2943
+ __( 'Title', 'google-analytics-for-wordpress' ),
2944
 
2945
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:138
2946
+ __( 'Color', 'google-analytics-for-wordpress' ),
2947
 
2948
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:139
2949
+ __( 'Size', 'google-analytics-for-wordpress' ),
2950
 
2951
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:140
2952
+ __( 'Border', 'google-analytics-for-wordpress' ),
2953
 
2954
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:141
2955
+ __( 'Author/Date', 'google-analytics-for-wordpress' ),
2956
 
2957
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:142
2958
+ __( 'Label', 'google-analytics-for-wordpress' ),
2959
 
2960
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:143
2961
+ __( 'Background', 'google-analytics-for-wordpress' ),
2962
 
2963
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:144
2964
+ __( 'Wide-Layout Options', 'google-analytics-for-wordpress' ),
2965
 
2966
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:145
2967
+ __( 'Adjust the number of columns displayed when the widget is placed in a wide container.', 'google-analytics-for-wordpress' ),
2968
 
2969
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:146
2970
+ __( 'Display Options', 'google-analytics-for-wordpress' ),
2971
 
2972
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:147
2973
+ __( 'Choose which content you would like displayed in the widget.', 'google-analytics-for-wordpress' ),
2974
 
2975
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:148
2976
+ __( 'Display Author', 'google-analytics-for-wordpress' ),
2977
 
2978
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:149
2979
+ __( 'Display Date', 'google-analytics-for-wordpress' ),
2980
 
2981
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:150
2982
+ __( 'Display Comments', 'google-analytics-for-wordpress' ),
2983
 
2984
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:151
2985
+ __( 'Comments', 'google-analytics-for-wordpress' ),
2986
 
2987
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:152
2988
+ __( 'Post Count', 'google-analytics-for-wordpress' ),
2989
 
2990
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:153
2991
+ __( 'Choose how many posts you’d like displayed in the widget.', 'google-analytics-for-wordpress' ),
2992
 
2993
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:107
2994
+ __( 'Popular Posts data can be fetched correctly', 'google-analytics-for-wordpress' ),
2995
 
2996
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:108
2997
+ __( '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' ),
2998
 
2999
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:112
3000
+ __( 'Close', 'google-analytics-for-wordpress' ),
3001
 
3002
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:28
3003
+ __( 'Add Top 5 Posts from Google Analytics', 'google-analytics-for-wordpress' ),
3004
 
3005
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:49
3006
+ __( '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.', 'google-analytics-for-wordpress' ),
3007
 
3008
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:50
3009
+ __( 'Test Automated Posts', 'google-analytics-for-wordpress' ),
3010
 
3011
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:52
3012
+ /* Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc. */
3013
+ __( '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' ),
3014
 
3015
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:30
3016
+ __( 'Automated + Curated', 'google-analytics-for-wordpress' ),
3017
 
3018
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:55
3019
+ /* Translators: Placeholder adds a link to the Custom Dimensions settings. */
3020
+ __( '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' ),
3021
 
3022
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:57
3023
+ /* Translators: Placeholder gets replaced with current license version. */
3024
+ __( 'Pro version is required.', 'google-analytics-for-wordpress' ),
3025
 
3026
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:95
3027
+ __( 'Verifying Popular Posts data', 'google-analytics-for-wordpress' ),
3028
 
3029
+ // Reference: src/modules/popular-posts/components/input/PopularPostsPostsPicker.vue:45
3030
+ __( 'Select posts/search', 'google-analytics-for-wordpress' ),
3031
 
3032
+ // Reference: src/modules/popular-posts/components/input/PopularPostsPostsPicker.vue:55
3033
+ __( 'Oops! No posts found.', 'google-analytics-for-wordpress' ),
3034
 
3035
+ // Reference: src/modules/popular-posts/components/input/PopularPostsPostsPicker.vue:56
3036
+ __( 'Search by post title', 'google-analytics-for-wordpress' ),
 
3037
 
3038
+ // Reference: src/modules/popular-posts/components/input/PopularPostsPostsPicker.vue:92
3039
+ __( 'Can\'t load posts.', 'google-analytics-for-wordpress' ),
3040
 
3041
+ // Reference: src/modules/popular-posts/components/input/PopularPostsSharedCount.vue:31
3042
+ __( 'SharedCount API Key', 'google-analytics-for-wordpress' ),
3043
 
3044
+ // Reference: src/modules/popular-posts/components/input/PopularPostsSharedCount.vue:32
3045
+ __( 'Insert your sharedcount API key found in your %1$sSettings%2$s panel. After, click Start Indexing.', 'google-analytics-for-wordpress' ),
3046
 
3047
+ // Reference: src/modules/popular-posts/components/input/PopularPostsSharedCount.vue:33
3048
+ __( 'Start Indexing', 'google-analytics-for-wordpress' ),
3049
 
3050
+ // Reference: src/modules/popular-posts/components/input/PopularPostsSharedCount.vue:37
3051
+ __( '%1$sIndex Progress: %2$s%%.%3$s You may leave this page during indexing.', 'google-analytics-for-wordpress' ),
 
3052
 
3053
+ // Reference: src/modules/popular-posts/components/input/PopularPostsSharedCount.vue:38
3054
+ __( 'Indexing completed, counts will update automatically every day.', 'google-analytics-for-wordpress' ),
 
3055
 
3056
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:47
3057
+ __( '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' ),
 
3058
 
3059
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:48
3060
+ __( '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' ),
3061
 
3062
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:55
3063
+ __( 'Icon', 'google-analytics-for-wordpress' ),
3064
 
3065
+ // Reference: src/modules/settings/components/input/SettingsInputNumber.vue:58
3066
+ /* Translators: Minimum and maximum number that can be used. */
3067
+ __( 'Please enter a value between %1$s and %2$s', 'google-analytics-for-wordpress' ),
3068
 
3069
+ // Reference: src/modules/settings/components/input/SettingsInputNumber.vue:60
3070
+ /* Translators: The minimum set value. */
3071
+ __( 'Please enter a value higher than %s', 'google-analytics-for-wordpress' ),
3072
 
3073
+ // Reference: src/modules/settings/components/input/SettingsInputNumber.vue:62
3074
+ /* Translators: The maximum set value. */
3075
+ __( 'Please enter a value lower than %s', 'google-analytics-for-wordpress' ),
3076
 
3077
+ // Reference: src/modules/settings/components/input/SettingsInputNumber.vue:63
3078
+ __( 'Please enter a number', 'google-analytics-for-wordpress' ),
 
3079
 
3080
+ // Reference: src/modules/settings/components/input/SettingsInputNumber.vue:64
3081
+ __( 'Value has to be a round number', 'google-analytics-for-wordpress' ),
3082
 
3083
+ // Reference: src/modules/reports/components/monsterinsights-ReportsPdfExport-Lite.vue:42
3084
+ __( 'Export PDF Report', 'google-analytics-for-wordpress' ),
3085
 
3086
+ // Reference: src/modules/reports/components/monsterinsights-ReportsPdfExport-Lite.vue:50
3087
+ __( 'You can export PDF reports only in the PRO version.', 'google-analytics-for-wordpress' ),
3088
 
3089
+ // Reference: src/modules/reports/components/reports-overview/monsterinsights-ReportOverviewUpsell-Lite.vue:26
3090
+ __( 'Upgrade to MonsterInsights Pro to Unlock More Actionable Insights', 'google-analytics-for-wordpress' ),
3091
 
3092
+ // Reference: src/modules/reports/components/reports-overview/monsterinsights-ReportOverviewUpsell-Lite.vue:27
3093
+ __( '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' ),
3094
 
3095
+ // Reference: src/modules/reports/components/reports-overview/monsterinsights-ReportOverviewUpsell-Lite.vue:28
3096
+ __( 'Upgrade to MonsterInsights Pro and Save 50% OFF!', 'google-analytics-for-wordpress' ),
3097
 
3098
+ // Reference: src/modules/reports/components/reports-overview/monsterinsights-ReportOverviewUpsell-Lite.vue:30
3099
+ /* Translators: Makes text bold. */
3100
+ __( 'Use coupon code %1$sLITEUPGRADE%2$s', 'google-analytics-for-wordpress' ),
3101
 
3102
+ // Reference: src/modules/reports/components/reports-overview/ReportOverviewUpsellMobile-Lite.vue:21
3103
+ /* Translators: Make text green. */
3104
+ __( 'Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s', 'google-analytics-for-wordpress' ),
3105
 
3106
+ // Reference: src/modules/reports/components/reports-overview/monsterinsights-ReportOverviewDatePicker-Lite.vue:50
3107
+ /* Translators: Placeholder adds a line break. */
3108
+ __( 'You can customize your %sdate range only in the PRO version.', 'google-analytics-for-wordpress' ),
3109
 
3110
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingImprove-Lite.vue:17
3111
+ __( 'Help Us Improve', 'google-analytics-for-wordpress' ),
3112
 
3113
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingImprove-Lite.vue:18
3114
+ __( 'Help us better understand our users and their website needs.', 'google-analytics-for-wordpress' ),
3115
 
3116
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingImprove-Lite.vue:20
3117
+ /* Translators: Adds a link to the documentation. */
3118
+ __( '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' ),
3119
 
3120
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:48
3121
+ __( 'Website profile', 'google-analytics-for-wordpress' ),
3122
 
3123
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:49
3124
+ __( 'Active profile', 'google-analytics-for-wordpress' ),
3125
 
3126
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:52
3127
+ __( 'Skip and Keep Connection', 'google-analytics-for-wordpress' ),
3128
 
3129
+ // Reference: src/modules/popular-posts/components/PopularPostsProductsUpsell.vue:19
3130
+ __( 'This feature requires MonsterInsights Pro', 'google-analytics-for-wordpress' ),
3131
 
3132
+ // Reference: src/modules/popular-posts/components/PopularPostsProductsUpsell.vue:20
3133
+ __( 'By upgrading you will also get access to advanced eCommerce tracking, Custom Dimensions and more.', 'google-analytics-for-wordpress' ),
3134
 
3135
+ // Reference: src/modules/popular-posts/components/PopularPostsProductsUpsell.vue:21
3136
+ __( 'Upgrade to Pro and Unlock Popular Products', 'google-analytics-for-wordpress' ),
3137
 
3138
+ // Reference: src/modules/popular-posts/components/PopularPostsProductsUpsell.vue:22
3139
+ __( 'View all Pro features', 'google-analytics-for-wordpress' ),
3140
 
3141
+ // Reference: src/modules/popular-posts/components/input/PopularPostsCacheInterval-Lite.vue:14
3142
+ __( 'Days', 'google-analytics-for-wordpress' ),
3143
 
3144
+ // Reference: src/modules/popular-posts/components/input/PopularPostsCacheInterval-Lite.vue:19
3145
+ /* Translators: placeholders make text small. */
3146
+ __( '7 days', 'google-analytics-for-wordpress' ),
3147
 
3148
+ // Reference: src/modules/popular-posts/components/input/PopularPostsCacheInterval-Lite.vue:23
3149
+ __( '30 days', 'google-analytics-for-wordpress' ),
3150
 
3151
+ // Reference: src/modules/popular-posts/components/input/PopularPostsCacheInterval-Lite.vue:28
3152
+ __( 'Custom', 'google-analytics-for-wordpress' ),
3153
 
3154
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetCategory-Lite.vue:24
3155
+ __( 'Only Show Posts from These Categories', 'google-analytics-for-wordpress' ),
3156
 
3157
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetCategory-Lite.vue:25
3158
+ __( 'Choose from which categories posts will be displayed in the widget. All categories will be used if left empty.', 'google-analytics-for-wordpress' ),
3159
 
3160
+ // Reference: src/modules/popular-posts/components/input/PopularPostsMultipleEntries-Lite.vue:21
3161
+ __( 'Multiple Entries', 'google-analytics-for-wordpress' ),
3162
 
3163
+ // Reference: src/modules/popular-posts/components/input/PopularPostsMultipleEntries-Lite.vue:22
3164
+ __( 'Total Number of Widgets to Show', 'google-analytics-for-wordpress' ),
3165
 
3166
+ // Reference: src/modules/popular-posts/components/input/PopularPostsMultipleEntries-Lite.vue:23
3167
+ __( 'Choose how many widgets will be placed in a single Post.', 'google-analytics-for-wordpress' ),
3168
 
3169
+ // Reference: src/modules/popular-posts/components/input/PopularPostsMultipleEntries-Lite.vue:24
3170
+ __( 'Minimum Distance Between Widgets', 'google-analytics-for-wordpress' ),
3171
 
3172
+ // Reference: src/modules/popular-posts/components/input/PopularPostsMultipleEntries-Lite.vue:25
3173
+ __( 'Choose the distance between widgets.', 'google-analytics-for-wordpress' ),
3174
 
3175
+ // Reference: src/modules/popular-posts/components/input/PopularPostsMultipleEntries-Lite.vue:26
3176
+ __( 'Minimum Word Count to Display Multiple Widgets', 'google-analytics-for-wordpress' ),
3177
 
3178
+ // Reference: src/modules/popular-posts/components/input/PopularPostsMultipleEntries-Lite.vue:27
3179
+ __( 'Choose the minimum word count for a Post to have multiple entries.', 'google-analytics-for-wordpress' ),
3180
 
3181
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:29
3182
+ __( 'Pro version is required', 'google-analytics-for-wordpress' ),
3183
 
3184
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:32
3185
+ /* Translators: Placeholder adds a link to the Custom Dimensions settings. */
3186
+ __( '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' ),
3187
 
3188
+ // Reference: src/modules/popular-posts/components/PopularPostsUpgradeOverlay.vue:23
3189
+ __( 'Unlock with %s', 'google-analytics-for-wordpress' ),
3190
 
3191
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:101
3192
+ __( 'Automatic Placement', 'google-analytics-for-wordpress' ),
3193
 
3194
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:102
3195
+ __( 'Display using Gutenberg Blocks', 'google-analytics-for-wordpress' ),
3196
 
3197
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:103
3198
+ __( 'Embed Options', 'google-analytics-for-wordpress' ),
3199
 
3200
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:104
3201
+ __( 'All Embed Options can be used in conjunction with one another.', 'google-analytics-for-wordpress' ),
 
3202
 
3203
+ // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:79
3204
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:105
3205
+ __( 'Using the Gutenberg Block', 'google-analytics-for-wordpress' ),
3206
 
3207
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:106
3208
+ __( 'Using Automatic Embed', 'google-analytics-for-wordpress' ),
3209
 
3210
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:108
3211
+ __( '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.', 'google-analytics-for-wordpress' ),
3212
 
3213
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:109
3214
+ __( '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.', 'google-analytics-for-wordpress' ),
3215
 
3216
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:110
3217
+ __( 'Learn how to insert the Popular Posts Widget using a shortcode. To style this widget use the Customize Design panel above.', 'google-analytics-for-wordpress' ),
3218
 
3219
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:111
3220
+ __( '%1$sWatch Video%2$s - How to Add the Popular Posts widget using Gutenberg', 'google-analytics-for-wordpress' ),
 
3221
 
3222
+ // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:85
3223
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:113
3224
+ __( '%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page.', 'google-analytics-for-wordpress' ),
3225
 
3226
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:114
3227
+ __( '%1$sStep 2%2$s - Search for “Popular Posts”.', 'google-analytics-for-wordpress' ),
 
3228
 
3229
+ // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:87
3230
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:115
3231
+ __( '%1$sStep 3%2$s - Style the widget using the Block Settings sidebar.', 'google-analytics-for-wordpress' ),
3232
 
3233
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:118
3234
+ __( '%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' ),
 
3235
 
3236
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:119
3237
+ __( '%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.', 'google-analytics-for-wordpress' ),
 
3238
 
3239
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:120
3240
+ __( '%1$sStep 3%2$s - The widget options should automatically expand allowing you to customize the design.', 'google-analytics-for-wordpress' ),
 
3241
 
3242
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:122
3243
+ __( 'Display using a Shortcode', 'google-analytics-for-wordpress' ),
3244
 
3245
+ // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:90
3246
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:123
3247
+ __( 'Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin.', 'google-analytics-for-wordpress' ),
3248
 
3249
+ // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:91
3250
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:124
3251
+ __( 'Copy Shortcode', 'google-analytics-for-wordpress' ),
3252
 
3253
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:125
3254
+ __( '%1$sWatch Video%2$s - How to Add the Popular Posts widget using our Shortcode', 'google-analytics-for-wordpress' ),
3255
 
3256
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:126
3257
+ __( 'Enable Automatic Placement', 'google-analytics-for-wordpress' ),
3258
 
3259
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:127
3260
+ __( 'Display in a Sidebar', 'google-analytics-for-wordpress' ),
3261
 
3262
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:128
3263
+ __( 'Learn how to insert the Popular Posts Widget into a Sidebar. To style this widget use the Customize Design panel above.', 'google-analytics-for-wordpress' ),
 
3264
 
3265
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:129
3266
+ __( 'Watch Video - How to Add the Popular Posts widget using Widgets', 'google-analytics-for-wordpress' ),
3267
 
3268
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:77
3269
  __( 'Display Method', 'google-analytics-for-wordpress' ),
3292
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:92
3293
  __( '%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using our Shortcode', 'google-analytics-for-wordpress' ),
3294
 
3295
+ // Reference: src/modules/settings/components/input/tab-publisher/monsterinsights-SettingsInputFbia-Lite.vue:22
3296
+ __( 'Facebook Instant Articleasdasdasds', 'google-analytics-for-wordpress' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3297
 
3298
+ // Reference: src/modules/settings/components/input/tab-publisher/monsterinsights-SettingsInputMedia-Lite.vue:22
3299
+ __( 'Media', 'google-analytics-for-wordpress' ),
 
3300
 
3301
+ // Reference: src/modules/settings/components/input/tab-publisher/monsterinsights-SettingsInputMedia-Lite.vue:23
3302
+ __( 'Track how your users interact with videos on your website. Upgrade to MonsterInsights Pro.', 'google-analytics-for-wordpress' ),
3303
 
3304
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:250
3305
+ __( 'Improve Your Conversion Rate With Insights Into Which Content Works Best.', 'google-analytics-for-wordpress' ),
3306
 
3307
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:253
3308
+ __( 'Top Affilliate Links', 'google-analytics-for-wordpress' ),
3309
 
3310
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:257
3311
+ __( 'Scroll Depth', 'google-analytics-for-wordpress' ),
3312
 
3313
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:262
3314
+ __( 'Increase Sales and Make More Money With Enhanced eCommerce Insights.', 'google-analytics-for-wordpress' ),
3315
 
3316
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:264
3317
+ __( '10+ eCommerce Integrations', 'google-analytics-for-wordpress' ),
3318
 
3319
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:265
3320
+ __( 'Average Order Value', 'google-analytics-for-wordpress' ),
3321
 
3322
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:266
3323
+ __( 'Total Revenue', 'google-analytics-for-wordpress' ),
3324
 
3325
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:270
3326
+ __( 'Number of Transactions', 'google-analytics-for-wordpress' ),
3327
 
3328
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:276
3329
+ __( 'Increase Engagement and Unlock New Insights About Your Site.', 'google-analytics-for-wordpress' ),
3330
 
3331
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:279
3332
+ __( 'User ID Tracking', 'google-analytics-for-wordpress' ),
3333
 
3334
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:280
3335
+ __( 'Post Types', 'google-analytics-for-wordpress' ),
3336
 
3337
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:281
3338
+ __( 'Tag Tracking', 'google-analytics-for-wordpress' ),
3339
 
3340
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:282
3341
+ __( 'Categories', 'google-analytics-for-wordpress' ),
3342
 
3343
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:283
3344
+ __( 'SEO Scores', 'google-analytics-for-wordpress' ),
3345
 
3346
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:284
3347
+ __( 'Publish Times', 'google-analytics-for-wordpress' ),
3348
 
3349
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:285
3350
+ __( 'Focus Keywords', 'google-analytics-for-wordpress' ),
3351
 
3352
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:290
3353
+ __( 'Track Every Type of Web Form and Gain Visibility Into Your Customer Journey.', 'google-analytics-for-wordpress' ),
3354
 
3355
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:293
3356
+ __( 'Conversion Counts', 'google-analytics-for-wordpress' ),
3357
 
3358
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:294
3359
+ __( 'Impression Counts', 'google-analytics-for-wordpress' ),
3360
 
3361
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:295
3362
+ __( 'Conversion Rates', 'google-analytics-for-wordpress' ),
3363
 
3364
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:300
3365
+ __( 'See Exactly How Visitors Find Your Website From Google.', 'google-analytics-for-wordpress' ),
3366
 
3367
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:303
3368
+ __( 'Top Google Search Terms', 'google-analytics-for-wordpress' ),
3369
 
3370
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:304
3371
+ __( 'Number of Clicks', 'google-analytics-for-wordpress' ),
3372
 
3373
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:305
3374
+ __( 'Click-through Ratio', 'google-analytics-for-wordpress' ),
3375
 
3376
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:306
3377
+ __( 'Average Results Position', 'google-analytics-for-wordpress' ),
3378
 
3379
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:310
3380
+ __( 'Realtime Report', 'google-analytics-for-wordpress' ),
3381
 
3382
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:311
3383
+ __( 'See Who And What is Happening on Your Website in Realtime.', 'google-analytics-for-wordpress' ),
3384
 
3385
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:313
3386
+ __( 'Top Page Views', 'google-analytics-for-wordpress' ),
3387
 
3388
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:314
3389
+ __( 'Current Active Users', 'google-analytics-for-wordpress' ),
3390
 
3391
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:315
3392
+ __( 'Top Referral Sources', 'google-analytics-for-wordpress' ),
3393
 
3394
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:317
3395
+ __( 'Top Countries', 'google-analytics-for-wordpress' ),
3396
 
3397
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:318
3398
+ __( 'Top Cities', 'google-analytics-for-wordpress' ),
3399
 
3400
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:323
3401
+ __( 'Improve Your User Experience and Improve Search Engine Rankings.', 'google-analytics-for-wordpress' ),
3402
 
3403
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:325
3404
+ __( 'Overall Site Speed Score', 'google-analytics-for-wordpress' ),
3405
 
3406
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:326
3407
+ __( 'Server Response Times', 'google-analytics-for-wordpress' ),
3408
 
3409
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:327
3410
+ __( 'Mobile and Desktop Scores', 'google-analytics-for-wordpress' ),
 
3411
 
3412
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:328
3413
+ __( 'First Contentful Paint', 'google-analytics-for-wordpress' ),
3414
 
3415
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:329
3416
+ __( 'Automatic Recommendations', 'google-analytics-for-wordpress' ),
3417
 
3418
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:330
3419
+ __( 'Total Blocking Time', 'google-analytics-for-wordpress' ),
3420
 
3421
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:331
3422
+ __( 'On-Demand Audits', 'google-analytics-for-wordpress' ),
 
3423
 
3424
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:332
3425
+ __( 'Time to Interactive', 'google-analytics-for-wordpress' ),
3426
 
3427
+ // Reference: src/modules/reports/routes/index.js:95
3428
+ __( '2021 Year in Review', 'google-analytics-for-wordpress' ),
3429
 
3430
+ // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:49
3431
+ __( 'Realtime', 'google-analytics-for-wordpress' ),
3432
 
3433
+ // Reference: src/components/TheFloatingBar-Lite.vue:29
3434
+ /* Translators: Placeholders are used for making text bold and adding a link. */
3435
+ __( '%1$sYou\'re using %2$s Lite%3$s. To unlock all reports, consider %4$supgrading to Pro%5$s.', 'google-analytics-for-wordpress' ),
3436
 
3437
  // Reference: src/modules/growth-tools/components/GrowthNavigation.vue:17
3438
  __( 'Featured', 'google-analytics-for-wordpress' ),
3446
  // Reference: src/modules/growth-tools/components/GrowthNavigation.vue:21
3447
  __( 'Guides & Resources', 'google-analytics-for-wordpress' ),
3448
 
3449
+ // Reference: src/modules/reports/components/upsells/ReportUpsellOverlay.vue:32
3450
+ __( 'Upgrade and Unlock', 'google-analytics-for-wordpress' ),
3451
+
3452
+ // Reference: src/modules/reports/components/upsells/ReportUpsellOverlay.vue:44
3453
+ __( 'What’s in the %1$s?', 'google-analytics-for-wordpress' ),
3454
+
3455
+ // Reference: src/modules/reports/components/upsells/ReportUpsellOverlay.vue:50
3456
+ __( '%1$sPlus%2$s, upgrading to Pro will unlock %1$sall%2$s advanced reports, tracking, and integrations. %3$sLearn more about Pro%4$s', 'google-analytics-for-wordpress' ),
3457
+
3458
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:260
3459
+ __( 'Your 2021 Year in Review is still calculating. Please check back later to see how your website performed last year.', 'google-analytics-for-wordpress' ),
3460
+
3461
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:262
3462
+ __( 'Your 2021 Analytics Report', 'google-analytics-for-wordpress' ),
3463
+
3464
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:264
3465
+ __( 'See how your website performed this year and find tips along the way to help grow even more in 2022!', 'google-analytics-for-wordpress' ),
3466
+
3467
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:274
3468
+ __( 'January 1, 2021 - December 31, 2021', 'google-analytics-for-wordpress' ),
3469
+
3470
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:275
3471
+ __( 'A Tip for 2022', 'google-analytics-for-wordpress' ),
3472
+
3473
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:291
3474
+ __( 'A Tip For 2022', 'google-analytics-for-wordpress' ),
3475
+
3476
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:308
3477
+ __( 'Here\'s to an amazing 2022!', 'google-analytics-for-wordpress' ),
3478
+
3479
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:315
3480
+ __( 'Try our other popular WordPress plugins to grow your website in 2022.', 'google-analytics-for-wordpress' ),
3481
+
3482
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:317
3483
+ __( 'Become a WordPress expert in 2022. Join our amazing communities and take your website to the next level.', 'google-analytics-for-wordpress' ),
3484
+
3485
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:326
3486
+ __( 'Copyright MonsterInsights, 2022', 'google-analytics-for-wordpress' ),
3487
+
3488
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:459
3489
+ /* Translators: Number of minutes spent on site. */
3490
+ __( 'Each visitor spent an average of %s minutes on your website in 2021.', 'google-analytics-for-wordpress' ),
3491
+
3492
  // Reference: src/modules/growth-tools/monsterinsights-growth-tools.vue:105
3493
  __( 'RafflePress', 'google-analytics-for-wordpress' ),
3494
 
3621
  // Reference: src/modules/growth-tools/monsterinsights-growth-tools.vue:95
3622
  __( 'Send push notifications to your visitors to drive more traffic and boost sales.', 'google-analytics-for-wordpress' ),
3623
 
3624
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEcommerce-Lite.vue:54
3625
+ __( 'With MonsterInsights Pro, you can easily measure individual affiliate performance inside Google Analytics, no coding needed. Track clicks, revenue, and more.', 'google-analytics-for-wordpress' ),
3626
+
3627
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEcommerce-Lite.vue:55
3628
+ __( 'Works automatically with WooCommerce, MemberPress, and EasyDigitalDownloads.', 'google-analytics-for-wordpress' ),
3629
+
3630
+ // Reference: src/modules/settings/components/input/tab-publisher/monsterinsights-SettingsInputMedia-Lite.vue:22
3631
+ __( 'Media Tracking', 'google-analytics-for-wordpress' ),
3632
+
3633
  // Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:34
3634
  __( 'Get Started', 'google-analytics-for-wordpress' )
3635
  );
lite/assets/vue/css/chunk-common.css CHANGED
@@ -1 +1 @@
1
- @import url(https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap);strong[data-v-a9c27d52]{display:block}[data-v-6038a3d0]{will-change:height;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.expand-enter-active,.expand-leave-active{-webkit-transition:height .5s ease-in-out;transition:height .5s ease-in-out;overflow:hidden}.expand-enter,.expand-leave-to{height:0}.monsterinsights-dark[data-v-54110c18]{display:block}.monsterinsights-reset-default[data-v-54110c18]{margin-left:5px}.monsterinsights-dark[data-v-7262cc05]{display:block}.monsterinsights-admin-page .monsterinsights-floating-bar{background:#4e5c66;color:#fff;font-size:13px;padding:10px;text-align:center;position:relative;margin:-20px -10px 20px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-floating-bar{margin-top:-10px;padding-right:20px;padding-left:20px}}.monsterinsights-admin-page .monsterinsights-floating-bar a{text-decoration:underline;color:#fff}.monsterinsights-admin-page .monsterinsights-floating-bar a:focus,.monsterinsights-admin-page .monsterinsights-floating-bar a:hover{color:#fff;text-decoration:none}.monsterinsights-admin-page .monsterinsights-floating-bar .monsterinsights-floating-bar-close{padding:0;border:0;background:rgba(0,0,0,0);color:#fff;font-size:10px;position:absolute;right:15px;top:50%;margin-top:-5px}.monsterinsights-admin-page .monsterinsights-slide-enter-active,.monsterinsights-admin-page .monsterinsights-slide-leave-active{-webkit-transition-duration:.5s;transition-duration:.5s}.monsterinsights-admin-page .monsterinsights-slide-enter-to,.monsterinsights-admin-page .monsterinsights-slide-leave{max-height:100px;overflow:hidden}.monsterinsights-admin-page .monsterinsights-slide-enter,.monsterinsights-admin-page .monsterinsights-slide-leave-to{overflow:hidden;max-height:0}.monsterinsights-container[data-v-102a61b0]:after{display:table;clear:both;content:""}.monsterinsights-quick-links{position:fixed;bottom:25px;right:25px;-webkit-box-shadow:0 0 10px 0 #ababab;box-shadow:0 0 10px 0 #ababab;width:60px;height:60px;border-radius:50%;background:#fff;z-index:1000;padding:5px 10px}.monsterinsights-quick-links.monsterinsights-quick-links-open,.monsterinsights-quick-links:focus,.monsterinsights-quick-links:hover{-webkit-box-shadow:0 0 15px 2px #ababab;box-shadow:0 0 15px 2px #ababab}.monsterinsights-quick-links-label{border-radius:50%;background:#fff;border:2px solid rgba(147,120,207,.21);position:absolute;left:2px;right:2px;top:2px;bottom:2px;padding:6px 6px 6px 8px;display:block;width:56px;height:56px;outline:none;cursor:pointer}.monsterinsights-quick-links-open .monsterinsights-quick-links-label .monsterinsights-quick-link-title{opacity:0;pointer-events:none}.monsterinsights-bg-img.monsterinsights-quick-links-mascot{-webkit-transform:rotate(-15deg);-ms-transform:rotate(-15deg);transform:rotate(-15deg);-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;padding-top:100%;-webkit-transition:-webkit-transform .3s ease;transition:-webkit-transform .3s ease;transition:transform .3s ease;transition:transform .3s ease,-webkit-transform .3s ease;display:block}.monsterinsights-bg-img.monsterinsights-quick-links-mascot:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFIAAABQCAMAAAC9OtKiAAAC91BMVEUAAABvS7ttSbluSrpvS7tuSrpvS7tvS7tvSrtsSLdsTLFvS7tuSrluSrpvS7tvS7ttSblvS7tpRrRvS7tvS7tvS7tvS7tvS7tgP6lhP6pvS7tvS7s0OkZvS7tvS7tvS7s5P0xnRbJsSLc2PElvS7s5P0w5P0w5P0w6P05vS7tvS7thP6lfPqc5P0wvMUFgPqg5P0xfPqcrMDk5P0xfPqcrMDlXRolqR7U5P0xfPqeUeM+ljdTT6O////9vS7t9XcI5P0xfPqfqTmQjIyOSdc1/X8OiitOkjNQyMjKYftCGZ8d4VcDsYndxTbxkQqyLbcmagdFmRLChh9N2U7+DZMZ6WMFzUL1yTr2fhdKQc80ewYX/iTrY6/GXe9CPcsx7W8H9/v6BYcUrMDqNb8uIasmdhNGcgtGVec9uSrrv9/lsSbb4/P1pRrTz+fvQ5u2Ia8fn8vfg7/SOcsqEZsTb7PJzVLY+Q1OsotugoqJESFrk8PXS5u/O4+pTT3FUXWkvLi/V4+ihsbr8+vvr9PjAw+XG2eDA09r0sbyZmZlKSmRMVGE9NV9BSFUxNETk5PTO3uzK2evEzejM4OeljNS3ydGLccJ/YcB5WruJlqDyiprweoxteINganVbZHCcRVMoKCrx8/n98PLRzeu2teClktbNzc2Xf8u0w8r0usO2t7jkvqBwYZx1folncX1LO3rdS2Dq6uq8vuO+sOGxqd2x4duY3M3ausWtvsSF18KDbrfgqbWYp7FeP6OEj5hYPpV5hpBhWoToboHtZnrLSFxzOkXs7Pf84eTW2ODY09e6zdXb1s6vwMjdtb52Vb2ss7Vs0LKKebLkxa2kqqx7aKtHyZ1pWJZkWopROonndYfoWGzrVmzQWWtFPGr5llRSUlI/Pz88MjQ4KCouJSbX39/l2tvAwb6XyL2Sf7x+Ybv0pbHfl6ZbuJfihZbig5RnqpHss4mrlomIiIjNaXfTY3PHWGiDV2bxnWTSkGRiYmKmQ1NTQVBENkBUODwEKmHaAAAAOnRSTlMA7wscTEHV+/QT/tyvt5+JXjYE4cmWVij05W9nWoV8dkA6LxGlJerYxMGofEnhx8ChkXZrJOnf0JN2dWY7XQAACrdJREFUWMOdmGVgWlcUgEnSxaVpI+187dxdHo/DI+WRAcECgbAREgKBuGuTZsvqXTvptnbd1s7bbpW5u7u7u7vrj51773s8LMuW7weFW/hy7rn3XHmqydm1MD1V8275qumSkwaZ5Umt6fsCzJiushQAsssSGsszsTVz1vSMGVngFwH2iGuckQ0ekwdmTk9ZCGb7eTaA/JiE7gng9NtEmD2tMHOywGZUq40WyMyQmmYVAmg5LiROL0wMyMnVqdXqWjfkZTDjwQAujuNMWhFKpqOcDSaOUyPVZsjLIS37AjYhLlTCvP8sSi/IYW+KwaLnOANxGsxQgvncgxoRUautiY5a0ZQTahfIK2dfhRr8da2axumGQlWZbNRrtRhmJosgH4qmUu4lT8VMKgirKWGAvdJA5ChBqoQMaZIeNJXyYPAAlKar0gG8+HOjmuEHwNFihLSIE8qwMrPBAtlTKTPB2wswu2wX8HCESqY8rx4gKCkDWgIUzTsIwBwi4f47aeCvDJsB0kgqaTIZTdhthpcaRfwGWAJcwA37TKHE/taqK70eYArsuYRJr/QbCQBAjR/9zinWEJpCMr8NvW4XMxgkZS0nIUpR1pBEmKZSIlmYsmqiqLTXUYOdTCJ91wW9UpQ2LcXkl+aTG3aZsmZC0c7WGjmk+oLW1mYAaB2wEYlIQjR5o0kAKP+3Xs8ozQMIRMcEQ60O69En0bwee+oy2fychJfmNO3gmZMMetlBWYDU6yNcpFIts9naLvmI+RnJpUwnlxkImXumUhYBZtxuwKExKuPcZNVZobndqiNYHa0iK8lQSM9WJBt+sIlOgJLUpdgniwy18jgPoAmtA+u6/KSjtui6Ieo5byjISbigIJVyJgTUiWzWIbl9XDxBLWKLywAUplLOgBppTJRMfo4xojABf5JSm3o9KgY37TTOnLpqSZmry/VzyZhwWOIa6mGvlBsiADFGOILktObquVR4/fIb9v9mmDlJLeKg2LnY0nbQn6qvOOuRxd39Z597w5AxMVyROierymzA2Oo4BlvNScJuvEzDaGjx8Z03GGKVopRTNxSnVOZBU1QZYYs5xw1RoSzt5nn+BruiDElRTrZoloAd5zZHsVOlkbuiQRNHCzrPvkpx6tkrQHpKZQFgBitpturYPKo7S5PIYnSODiXOqsl2i0Lg2PpjbEIjAY1J9PBIgjMIs1Mri8CvjuMKTQraiHJU7vsF2+5fhOw8fr9J9ltbnPFGzONkYZ5jJCnctlKIcsAx81MVuSlOGR3rpBFCruS4bSOCsHrHhRO33TZx4cWrBWH/Y5KLnK4b0QJfoklNG1V2bl4kCON3jfG8z+cjnyc2CsKB85OKvIZUj3GyIM9YvuGiizYsv5wql60SVt816uvu6OjuQWV3Sz8/MSIclpDSDLJuRPfEoUThhiqJL0+nxvFlfHcDmigtGk2Hb+lGYf/9EoucRplyuB99oEqmourxsXFh41pfWxsKGR2ktnrGLhEOmJ9Q5DTA1HOyYeuDVW9t2vQzKive2C6sWtrf0OHjZdo0hIVrx4UjE4q8WlEu1CTy9PsnI+9vqqh4SBC2+Bo6eIUGzeUb3qxa3vPEoLB3fJE3KcqeJGXDeycTLt1U8bBwH9/Rxseg0VxUgWz1XSgcGKvMB7ui9GmS+J0YT1uw4A9hcGlPQz+v4NNcXkF4feHYSFyYpWBUlJ1tScp3aZALFvwlbOfbFvMx9EvKn1YM3yOcGHeH4BTl2d2Ki1Xm41KQC9YIE/0Nvlhlj9TxO6++5kXhsNjrJvQqynN4JcytxHn9u9SICMLa7hY+FhzLj39848HlWK6jq4X5scouRbmE70cRY8NFy7f+8J5svFRYxbf0xCmxR9cMn8HKdWNMMovToE9R3oTdkZ1f4ARnvWbKS3gyJW++/ZZOSblYc/2KqzUU/mJh96gx2wNaRXlVJ2a9TSodVP5NRoZymrCDx34/d8opp7wsOVtokEy5PaosT3P3gjl6CmwKL6FJYtIHq6rewhAlJUbZzd98CuF2qR5JkIlRpmdagpzFIhm9ASeA7Uo65RYubmlZ/iaWzAfM+OEmYZzv4W+hyuckZTTINv4SOZeFEMIdXi7yWtwqTR7oPYeX+AZnyHUPf4DChx+6Thgc80lRfvvsMp4//YVrv5eD7OBHhP2k5dcWwXOIrDyPHgxEEGXn6Q+gE63Xkdc/hadw+/mK5PK24RXDn7xz6qmnXruQjWX3E8L+7FqcZya7bT0r8ujaboOuUdn5dUWUX7DE+S0rPiUj3nn+i7+dSjidX0ykWORHSjPSTg4FYmyRM+cQL3Pr60z4wNNbhNVrl654lpf4lSqfxLR3aFo6V7FUzpqtxX6Sk2ed5DJ5r6L/itpRPspjt955562P4XFjpXDh8PCY3PydFCWy0HeXcADLJInOgAcx0DNjNYQ1Z9xYiW88S/hEzrW/JKweXsrLfERzyVOWjkhTqMCJ41GJpyawSan0WB7R2O2k6/bOeOHZ5KSxSNgYDZKOOHabMHqJtFzmZPmJJ8IFozt5F0TOEg0YpsFlv+mcmAhvqqOHjBFhRyefzH3CYO4+7ExQy5ReECWlwQmmXpKBaj2etA1DVy4599wlVw41cRJ3DAo71iYKxy4WBp8X0zJQua+TavDvKxUZdkM9nVEk0rAxwskozlVPxRvPH0cjBlNA7o0hWemxqKNOM1j6jJXoNLCCSnTieejiLTHC7YKw8jOigWI8EkSYklWkjMFkAbA4zZbeRCVD/+ogHmHumTh/2bLzJ+4ZFwTh/iYD+aKlFKdQk6yskbddfSXefqqD9R6AmurUShyk+1EaZU3jK45cdIbrM1W7Ais/rEitXJFdXecZw8RlUK74KdC/9OrbIyMjKxctWtPYeKa1uXW9ujISyFKVOllHMcqAvEcawWQIRyJ1RruiTI0lwCGbiREArGE75wJVAZ05dg4xRffIPnAGmwzVGP8USo/IIZGVa+5ubXdYdXg9FLNUJSY1rR0kpOyRxq6uCAqnVJrNHGFb42s6wjockBJVni2qDILZz9XZw7XVBgPxTa7U671BW8hkcpnJI6qugdy77yVOjFJvKVKl0cjC0v0yBo+7pkYrii6CyVVjpjidbrfHAjFgz9c3Q7N155qd1mZHMADlqqwutlTQ6vWboGCP0vws8FgsMDkWC2pLSov23HXmvhDk1rW363Rvn+kAaM61FJJjZT1WiXzX08OueOCy1Gtl6hEn7DZvXraHvNVGcaflsI3QE/TrEDKJ8JHFbGydC81gcentvXpZWQyiKyBqFczkYVCaW6sgBlwuzx7sQJ5nca3T6e49U0chK9ERYLW2y/2xACrzzfIY6P1JyhC2chRXWjpbHPPBXb/+lcYz70bjnFnYcghGOxfA6nCcUNDe3tp6SE5WSBnZJKVNuehDmfwgFZPf2ti4Zue9c06igc/RHXVUayv+gWNnzdU52g8tA/9USoa7ULk7FM84vBE5mn08dBfVPg6Hbs6hKtW8udY56Rl5Tu9/UdZnYavC7kwZ5Yg5+cfSvBwyE+PO9AQG+jjvgCO3L0nZN2DN7eJsA+vM2fFPH+Yf13i4fMKiqvT459aOdt2Ao7lZpxuoQZxU6SFvn7Hq2sGxXudonVuu+h/MmosrgM6B2dDpgECVQMAmq4O+WCd9vPoPhumB3HmlMigAAAAASUVORK5CYII=)}.monsterinsights-quick-links-open .monsterinsights-bg-img.monsterinsights-quick-links-mascot{-webkit-transform:rotate(15deg);-ms-transform:rotate(15deg);transform:rotate(15deg)}.monsterinsights-quick-links-menu{position:absolute;bottom:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse;right:6px;margin-bottom:10px}.monsterinsights-quick-links-menu .monsterinsights-quick-links-menu-item{display:block;width:48px;height:48px;background:#509fe2;border-radius:50%;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);-webkit-transition:-webkit-transform .2s;transition:-webkit-transform .2s;transition:transform .2s;transition:transform .2s,-webkit-transform .2s;position:relative;-webkit-box-shadow:0 0 10px 0 #ababab;box-shadow:0 0 10px 0 #ababab;margin-bottom:6px;color:#fff;text-decoration:none;text-align:center;font-size:18px;line-height:48px}.monsterinsights-quick-links-menu .monsterinsights-quick-links-menu-item:hover{color:#fff;background:#50abee;-webkit-box-shadow:0 0 15px 2px #ababab;box-shadow:0 0 15px 2px #ababab}.monsterinsights-quick-links-menu .monsterinsights-quick-links-menu-item.monsterinsights-show{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.monsterinsights-quick-links-menu .monsterinsights-quick-links-menu-item.monsterinsights-quick-links-item-upgrade{background:#704cbc}.monsterinsights-quick-links-menu .monsterinsights-quick-links-menu-item.monsterinsights-quick-links-item-upgrade:hover{background:#509fe2}.monsterinsights-quick-link-title{position:absolute;right:100%;margin-right:10px;font-size:13px;color:#fff;background:#595959;border-radius:5px;white-space:nowrap;padding:6px 8px;display:block;top:50%;margin-top:-12px;line-height:1;-webkit-transition:opacity .2s ease;transition:opacity .2s ease;outline:none}@font-face{font-family:Lato;src:url(../fonts/lato-regular-webfont.woff) format("woff"),url(../fonts/lato-regular-webfont.woff2) format("woff2");font-weight:400;font-style:normal}@font-face{font-family:Lato;src:url(../fonts/lato-bold-webfont.woff) format("woff"),url(../fonts/lato-bold-webfont.woff2) format("woff2");font-weight:700;font-style:normal}@font-face{font-family:text-security-disc;src:url(data:font/woff2;base64,d09GMgABAAAAAAjoAAsAAAAAMGgAAAidAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHFQGVgDWYgpQdQE2AiQDCAsGAAQgBYUOBy4bvi8lYxtWw7BxAPB87x5FmeAMlf3/96RzDN74RcXUcjTKmrJ3T2VDSShiPhfiIJxxS7DiLkHFfQV33CM4427mAred74pWur/J3dyVsKy7coREA8fzvPvpfUk+tB3R8YTCzE0SCLepejmJ2u1yqp+kC7W4Rc/tDTs3GpNJ8ttRPOSTPhsXlwbi4kVYWQmAcXmlrqYHMMsBwP/zHMz7fkF1gijOKuFQIxjwlGa2lkARhYaBxFHT54IOgBMQADi3LipIMAA3geO41EUkBTCO2gkxnOwnKYBx1E6p5WS+QUCMq50rNch6MwUCAAiAcdgttYVSIfPJ5kn6ApRFQ6I88BxLvvIC/maHUHS3TIoKiwLbbM8nEFWgE1oDz3woSxpagWbBXcQWhKtPeIlg6tK+7vX57QOszwU3sGUJrA7h2Mx1IWCNr9BKxsYo+pzS/OCO0OG9mwBkx337+lcuSxRdBcc+fJxlcAjK/zCfdgtBzuxQcTqfY4Yn6EB/Az3JS/RMu5f6B8wrn55S0IxdlLn+4Yb/ctIT+ocWYPcGAOvxSjEjpSiVMqSgFWVjzpCCXjAIRirTABpEQ2gYjaBRNIbG0QSaRFNoGs2gWTSH5tECWkRLaBmtoFW0htbRBtpEW2gb7aBdtIf20QE6REdFDlkZEh2jE3SKztA5ukCX6Apdoxt0i+7QPXpAj+gJPaMX9Ire0Dv6QJ/oC/qKvqHv6Af6iX6h3+gP+ov+of+I+ECMxETMiDmxIJbEilgTG2JL7Ig9cSCOxIk4ExfiStyIO/EgnsSLeBMf4kv8iD/taQANoiE0jEbQKBpD42gCTaIpNI1m0CyaQ/NoAS2iJbSMVtAqWkPraANtoi20jXbQLtpD++gAHaIjdIxO0Ck6Q+foAl2iK3SNbtAtukP36AE9oif0jF7QK3pD79B79AF9RJ/QZ/QFfUXf0Hf0A/1Ev9Bv9Af9Rf/Qf9DQABpEQ2gYjaBRNIbG0QSaRFNoGs2gWTSH5tECWkRLaBmtoFW0htbRBtpEW2gb7aBdtIf20QE6REfoGJ2gU3SGztEFukRX6BrdoFt0h+7RA3pET+gZvaBX9Aa9Re/Qe/QBfUSf0Gf0BX1F39B39AP9RL/Qb/QH/UX/0P8l9vq9gXwDIUCliyAhRAgTIoQoIUaIExKEJCFFSBMyhCwhR8gTCoQioUQoEyqEKqFGqBMahCahRWgTOoQuoUfoEwaEIWFEGBMmhClhRpgTFoQlYUVYEzaELWFH2BMOhGPCCeGUcEY4J1wQLglXhGvCDeGWcEe4JzwQHglPhGfCC+GV8EZ4J3wQPglfhG/CD+GX8Ef4p9sdgoQQIUyIEKKEGCFOSBCShBQhTcgQsoQcIU8oEIqEEqFMqBCqhBqhTmgkNBGaCS2EVkIboZ3QQegkdBG6CT2EXkIfoZ8wQBgkDBGGCSOEUcIYYZwwQZgkTBGmCTOEWcIcYZ6wQFgkLBGWCSuEVcIaYZ2wQdgkbBG2CTuEXcIeYZ9wQDgkHBGOCSeEU8IZ4ZxwQbgkXBGuCTeEW8Id4Z7wQHgkPBGeCS+EV8Ib4Z3wQfgkfBG+CT+EX8If4Z8AZpAQIoQJEUKUECPECQlCkpAipAkZQpaQI+QJBUKRUCKUCRVClVAj1AkNQpPQIrQJHUKX0CP0CQPCkDAijAkTwpQwI8wJC8KSsCKsCRvClrAj7AkHwpFwIpwJF8IV4ZpwQ7gl3BHuCQ+ER8IT4ZnwQnglvBHeCR+ET8IX4ZvwQ/gl/BH+lzv+AmMkTYAmSBOiCdNEaKI0MZo4TYImSZOiSdNkaLI0OZo8TYGmSFOiKdNUaKo0NZo6TYOmSdOiadN0aLo0PZo+zYBmSDOiGdNMaKY0M5o5zYJmSbOiWdNsaLY0O5o9zYHmmOaE5pTmjOac5oLmkuaK5prmhuaW5o7mnuaB5pHmieaZ5oXmleaN5p3mg+aT5ovmm+aH5pfmj2ZRAqCCoEKgwqAioKKgYqDioBKgkqBSoNKgMqCyoHKg8qAKoIqgSqDKoCqgqqBqoOqgGkE1gWoG1QKqFVQbqHZQHaA6QXWB6gbVA6oXVB+oflADoAZBDYH+uxaEWDBiIYiFIhaGWDhiEYhFIhaFWDRiMYjFIhaHWDxiCYglIpaEWDJiKYilIpaGWDpiGYhlIpaFWDZiOYjlIpaHWD5iBYgVIlaEWDFiJYiVIlaGWDliFYhVIlaFWDViNYjVIlaHWD1iDYg1ItaEWDNiLYi1ItaGWDtiHYh1ItaFWDdiPYj1ItaHWD9iA4gNIjaE2DBiI4iNIjaG2DhiE4hNIjaF2DRiM4jNIjaH2DxiC4gtIraE2DJiK4itIraG2DpiG4htIraF2DZiO4jtIraH2D5iB4gdInaE2DFiJ4idInaG2DliF4hdInaF2DViN4jdInaH2D1iD4g9IvaE2DNiL4i9IvaG2DvE3iP2AbGPiH1C7DNiXxD7itg3xL4j9gOxn4j9Quw3Yn8Q+4vYP8T+M6cIDBz9EXfeUHR1JyygPL/++I3R1cRvdDr+E12Jfh3Q0EN/fHn2mXptpJxUkIqu/Cs2egM33OjSLcT33I82+B9nP37X/c0W52623s45CYCo03QIBCVrAFAycnSYSqvO4YJt/NP73YqA/giNZhJ6sBbmql+0SQZaxNOZudJbc2nqxNvpM+veq7Sz2LUgFEu+VLs+Ay3yp7MVertp6i23v2Rmv5gmHDhSQ6t5GmTaqTsqhpWwmbOk3uKJrNOmwSSMC17jghqygilDOUU3KlLmHHNrajw3DVNVGWytGZDisM/cbkdRnvfIUJkaGJlgAYcoQ5bGptTmGc1R7pBC3XhFsLXnXR54qrMc+dGNBkqE4laBi4KmZYGom8vIy0lTyBkppBjLoTndMmrofIRORirsNlCbXzCgulmo36KztS2iV8rrNoRUL5VdkMSGoSXroC1KOQAA) format("woff2"),url(data:font/woff;base64,d09GRgABAAAAAAusAAsAAAAAMGgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPgAAAFZjRmM5Y21hcAAAAYQAAAgCAAArYmjjYVVnbHlmAAAJiAAAAEEAAABQiOYj2mhlYWQAAAnMAAAALgAAADYR8XmmaGhlYQAACfwAAAAcAAAAJAqNAyNobXR4AAAKGAAAAAgAAAAIAyAAAGxvY2EAAAogAAAABgAAAAYAKAAAbWF4cAAACigAAAAeAAAAIAEOACJuYW1lAAAKSAAAAUIAAAKOcN63t3Bvc3QAAAuMAAAAHQAAAC5lhHRpeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGScwDiBgZWBgSGVtYKBgVECQjMfYEhiYmFgYGJgZWbACgLSXFMYHIAq/rNfAHK3gEmgASACAIekCT4AAHic7dhl0zDVmUXh5+XFHYK7E0IguFtwt4QQgmtwd3d3d7cED+4SXIO7u7vbsNfaUzU1fyGcu66u1adOf+6uHhgYGGpgYGDwL37/iyEHBoZZcWDQLzUw9NK/7A5if/DA8OwPOfQknBky+0P8/PPPOcd1UJ785frr/Dq/zq/z6/w3zsCgoX/xX74GRsxbcYpRB1iDB/7PGvT/DFGDenBwe8hKD1XpoSs9TKWHrfRwlR6+0iNUesRKj1TpkSs9SqVHrfRolR690r+p9BiVHrPSY1V67EqPU+lxKz1epcev9ASVnrDSE1V64kpPUulJKz1ZpSev9BSVnrLSU1V66kr/ttLTVPp3lZ62/KJSerpKT1/pP1R6hkrPWOmZKj1zpWep9KyVnq3Ss1d6jkrPWem5Kj13peep9LyVnq/S81d6gUr/sdILVnqhSi9c6UUqvWilF6v04pVeotJLVnqpSi9d6WUqvWyll6v08pVeodIrVvpPlf5zpVeq9F8qvXKl/1rpVSr9t0qvWunVKr16pdeo9JqVXqvSa1d6nUqvW+n1Kr1+pTeo9N8rvWGlN6r0xpXepNKbVnqzSm9e6S0qvWWlt6r01pXeptLbVnq7Sm9f6R0qvWOld6r0zpXepdK7Vnq3Su9e6T0qvWel96r03pXep9L7Vnq/Su9f6QMqfWClD6r0wZU+pNKHVvqwSh9e6SMqfWSlj6r00ZU+ptLHVvq4Sh9f6RMqfWKlT6r0yZU+pdKnVvq0Sp9e6TMqfWalz6r02ZU+p9LnVvq8Sp9f6QsqfWGl/1Hpf1b6okpfXOlLKn1ppS+r9OWVvqLS/6r0lZW+qtJXV/qaSl9b6esqfX2lb6j0jZW+qdI3V/qWSt9a6dsqfXul76j0vyt9Z6XvqvTdlb6n0vdW+r5K31/pByr9YKUfqvTDlX6k0v+p9KOVfqzSj1f6iUo/WemnKv10pZ+p9LOVfq7Sz1f6hUq/WOmXKv1ypV+p9KuVfq3Sr1f6jUq/Wem3Kv12pd+p9LuVfq/S71f6g0p/WOmPKv1xpT+p9KeV/qzSn1f6i0p/WemvKv11pb+p9LeV/q7S31f6h0r/WOmfKv1zDfI26KKHED1Y9JCihxI9tOhhRA8rejjRw4seQfSIokcSPbLoUUSPKno00aOL/o3oMUSPKXos0WOLHkf0uKLHEz2+6AlETyh6ItETi55E9KSiJxM9uegpRE8peirRU4v+rehpRP9O9LSify96OtHTi/6D6BlEzyh6JtEzi55F9KyiZxM9u+g5RM8pei7Rc4ueR/S8oucTPb/oBUT/UfSCohcSvbDoRUQvKnox0YuLXkL0kqKXEr206GVELyt6OdHLi15B9Iqi/yT6z6JXEv0X0SuL/qvoVUT/TfSqolcTvbroNUSvKXot0WuLXkf0uqLXE72+6A1E/130hqI3Er2x6E1Ebyp6M9Gbi95C9JaitxK9tehtRG8rejvR24veQfSOoncSvbPoXUTvKno30buL3kP0nqL3Er236H1E7yt6P9H7iz5A9IGiDxJ9sOhDRB8q+jDRh4s+QvSRoo8SfbToY0QfK/o40ceLPkH0iaJPEn2y6FNEnyr6NNGniz5D9JmizxJ9tuhzRJ8r+jzR54u+QPSFov8h+p+iLxJ9sehLRF8q+jLRl4u+QvS/RF8p+irRV4u+RvS1oq8Tfb3oG0TfKPom0TeLvkX0raJvE3276DtE/1v0naLvEn236HtE3yv6PtH3i35A9IOiHxL9sOhHRP9H9KOiHxP9uOgnRD8p+inRT4t+RvSzop8T/bzoF0S/KPol0S+LfkX0q6JfE/266DdEvyn6LdFvi35H9Lui3xP9vugPRH8o+iPRH4v+RPSnoj8T/bnoL0R/Kfor0V+L/kb0t6K/E/296B9E/yj6J9E/K/2/v/npoocQPVj0kKKHEj206GFEDyt6ONHDix5B9IiiRxI9suhRRI8qejTRo4v+jegxRI8peizRY4seR/S4oscTPb7oCURPKHoi0ROLnkT0pKInEz256ClETyl6KtFTi/6t6GlE/070tKJ/L3o60dOL/oPoGUTPKHom0TOLnkX0rKJnEz276DlEzyl6LtFzi55H9Lyi5xM9v+gFRP9R9IKiFxK9sOhFRC8qejHRi4teQvSSopcSvbToZUQvK3o50cuLXkH0iqL/JPrPolcS/RfRK4v+q+hVRP9N9KqiVxO9uug1RK8pei3Ra4teR/S6otcTvb7oDUT/XfSGojcSvbHoTURvKnoz0ZuL3kL0lqK3Er216G1Ebyt6O9Hbi95B9I6idxK9s+hdRO8qejfRu4veQ/SeovcSvbfofUTvK3o/0fuLPkD0gaIPEn2w6ENEHyr6MNGHiz5C9JGijxJ9tOhjRB8r+jjRx4s+QfSJok8SfbLoU0SfKvo00aeLPkP0maLPEn226HNEnyv6PNHni75A9IWi/yH6n6IvEn2x6EtEXyr6MtGXi75C9L9EXyn6KtFXi75G9LWirxN9vegbRN8o+ibRN4u+RfStom8TfbvoO0T/W/Sdou8Sfbfoe0TfK/o+0feLfkD0g6IfEv2w6EdE/0f0o6IfE/246CdEPyn6KdFPi35G9LOinxP9vOgXRL8o+iXRL4t+RfSrol8T/broN0S/Kfot0W+Lfkf0u6LfE/2+6A9Efyj6I9Efi/5E9KeiPxP9uegvRH8p+ivRX4v+RvS3or8T/b3oH0T/KPon0T9rYND/AOaSEScAAHicY2BiAAKmPSy+QEqUgYFRUURcTFzMyNzM3MxEXU1dTYmdjZ2NccK/K5oaLm6L3Fw0NOEMZoVAFD6IAQD4PA9iAAAAeJxjYGRgYADilrme/fH8Nl8ZuNkvAEUYbnDPcEOmmfaw+AIpDgYmEA8AHMMJGAAAeJxjYGRgYL/AAATMCiCSaQ8DIwMqYAIAK/QBvQAAAAADIAAAAAAAAAAoAAB4nGNgZGBgYGIQA2IGMIuBgQsIGRj+g/kMAArUATEAAHicjY69TsMwFIWP+4doJYSKhMTmoUJIqOnPWIm1ZWDq0IEtTZw2VRpHjlu1D8A7MPMczAw8DM/AifFEl9qS9d1zzr3XAK7xBYHqCHTdW50aLlj9cZ1057lBfvTcRAdPnlvUnz23mXj13MEN3jhBNC6p9PDuuYYrfHquU//23CD/eG7iVnQ9t9ATD57bWIgXzx3ciw+rDrZfqmhnUnvsx2kZzdVql4Xm1DhVFsqUqc7lKBiemjOVKxNaFcvlUZb71djaRCZGb+VU51ZlmZaF0RsV2WBtbTEZDBKvB5HewkLhwLePkhRhB4OU9ZFKTCqpzems6GQI6Z7TcU5mQceQUmjkkBghwPCszhmd3HWHLh+ze8mEpLvnT8dULRLWCTMaW9LUbanSGa+mUjhv47ZY7l67rgITDHiTf/mAKU76BTuXfk8AAHicY2BigAARBuyAiZGJkZmBJSWzOJmBAQALQwHHAAAA) format("woff"),url(../fonts/text-security-disc.ttf) format("truetype")}@font-face{font-family:Misettings;src:url(../fonts/icons.woff2) format("woff2"),url(../fonts/icons.woff) format("woff"),url(../fonts/icons.ttf) format("truetype"),url(../fonts/icons.otf) format("opentype");font-weight:400;font-style:normal}[class*=monstericon-]:before,body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before,body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before,body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.monstericon-times-circle:before{content:"\f01b"}.monstericon-times:before{content:"\f021"}.monstericon-info-circle-regular:before{content:"\f01e"}.monstericon-arrow{-webkit-transition:-webkit-transform .5s ease;transition:-webkit-transform .5s ease;transition:transform .5s ease;transition:transform .5s ease,-webkit-transform .5s ease;-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg);display:inline-block}.monstericon-arrow.monstericon-down{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0)}.monstericon-arrow:before{content:"\f01f"}.monstericon-check:before{content:"\f015"}.monstericon-warning-triangle:before{content:"\f020"}.monstericon-star:before{content:"\f025"}.monstericon-files:before{content:"\f028"}.monstericon-search:before{content:"\f029"}.monstericon-user:before{content:"\f02a"}.monstericon-eye:before{content:"\f02b"}.monstericon-cog:before{content:"\f02c"}.monstericon-expand:before{content:"\f02d"}.monstericon-compress:before{content:"\f02f"}.monstericon-life-ring:before{content:"\f030"}.monstericon-wpbeginner:before{content:"\f031"}.monstericon-lightbulb:before{content:"\f032"}.monstericon-shopping-cart:before{content:"\f033"}.monstericon-calendar-alt:before{content:"\f04e"}.monstericon-long-arrow-right-light:before{content:"\f06a"}.monstericon-download:before{content:"\0046"}@media (max-width:782px){.monsterinsights-notices-area{margin-left:10px;margin-right:10px}}.monsterinsights-notice{position:relative;color:#444}.monsterinsights-notice .monsterinsights-notice-inner{margin-top:25px;padding:20px;background:#fff;border-left:3px solid;line-height:1.5;font-size:14px}.monsterinsights-notice .monsterinsights-notice-inner .notice-title{color:#393f4c;font-weight:700;display:block;margin:0 0 6px;padding:0}@media (max-width:782px){.monsterinsights-notice .monsterinsights-notice-inner{padding:10px}}.monsterinsights-notice.monsterinsights-notice-error .monsterinsights-notice-inner{border-left-color:#ea4e64}.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-notice-inner{border-left-color:#f5c953}.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-notice-inner{border-left-color:#509fe2}.monsterinsights-notice.monsterinsights-notice-info-xl .monsterinsights-notice-inner{border:1px solid #509fe2;border-left-width:3px;color:#777}.monsterinsights-notice.monsterinsights-notice-info-xl .monsterinsights-notice-inner .monsterinsights-button{color:#fff;margin:15px 0 0}.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-notice-inner{border-left-color:#5cc0a5}.monsterinsights-notice .notice-content{margin-right:20px}.monsterinsights-notice .notice-content a{color:#444}.monsterinsights-notice .dismiss-notice{border:none;background:none;padding:0;margin:0;display:inline-block;cursor:pointer;color:#acbdc9;position:relative;float:right}.monsterinsights-notice .dismiss-notice:focus,.monsterinsights-notice .dismiss-notice:hover{color:#444}.monsterinsights-notice.monsterinsights-notice-info .notice-content,.monsterinsights-notice.monsterinsights-notice-success .notice-content,.monsterinsights-notice.monsterinsights-notice-warning .notice-content{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:425px){.monsterinsights-notice.monsterinsights-notice-info .notice-content,.monsterinsights-notice.monsterinsights-notice-success .notice-content,.monsterinsights-notice.monsterinsights-notice-warning .notice-content{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}}.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-notice-button{-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;margin-right:-20px;margin-left:auto}@media (max-width:782px){.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-notice-button{margin-left:0}}.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-button{margin-top:0;padding:10px 16px 8px;line-height:1;font-size:14px;font-weight:600}@media (max-width:782px){.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-button{margin-top:10px;margin-left:0}}.monsterinsights-notice.monsterinsights-notice-error .monsterinsights-button{margin-top:10px;margin-left:0;color:#fff}body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-end,body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-right{top:32px}@media screen and (max-width:767px){body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-end,body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-right{top:42px;right:auto;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast{border-radius:0;padding:9px;border-left:3px solid #fff}@media screen and (max-width:767px){body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast{width:80vw}}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast.mi-success{border-left-color:#5cc0a5}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast.mi-info{border-left-color:#509fe2}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast.mi-error{border-left-color:#ea4e64}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-title{color:#393f4c;font-size:13px;font-weight:400}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-close{font-size:15px;width:10px;height:10px;line-height:10px}@media screen and (max-width:767px){body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-close{padding:9px;line-height:0}}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon{width:14px;height:14px;min-width:14px;margin:0;border:0}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info{border:none;position:relative}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before{content:"\f01e";position:absolute;top:-1px;left:0;color:#509fe2;line-height:1}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info .swal2-icon-text{display:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error{border:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before{content:"\f023";position:absolute;top:-1px;left:0;color:#ea4e64;line-height:1}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error .swal2-x-mark *{display:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon [class^=-ring]{width:14px;height:14px;top:0;left:0}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:14px;height:14px;top:0;left:0;border:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring:before{content:"\f027";position:absolute;top:-1px;left:0;color:#5cc0a5;line-height:1}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success [class^=swal2-success-line]{display:none}@-webkit-keyframes swal2-show{0%{-webkit-transform:scale(.7);transform:scale(.7)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes swal2-show{0%{-webkit-transform:scale(.7);transform:scale(.7)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}to{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes swal2-hide{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}to{-webkit-transform:scale(.5);transform:scale(.5);opacity:0}}@keyframes swal2-hide{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}to{-webkit-transform:scale(.5);transform:scale(.5);opacity:0}}@-webkit-keyframes swal2-animate-success-line-tip{0%{top:1.1875em;left:.0625em;width:0}54%{top:1.0625em;left:.125em;width:0}70%{top:2.1875em;left:-.375em;width:3.125em}84%{top:3em;left:1.3125em;width:1.0625em}to{top:2.8125em;left:.875em;width:1.5625em}}@keyframes swal2-animate-success-line-tip{0%{top:1.1875em;left:.0625em;width:0}54%{top:1.0625em;left:.125em;width:0}70%{top:2.1875em;left:-.375em;width:3.125em}84%{top:3em;left:1.3125em;width:1.0625em}to{top:2.8125em;left:.875em;width:1.5625em}}@-webkit-keyframes swal2-animate-success-line-long{0%{top:3.375em;right:2.875em;width:0}65%{top:3.375em;right:2.875em;width:0}84%{top:2.1875em;right:0;width:3.4375em}to{top:2.375em;right:.5em;width:2.9375em}}@keyframes swal2-animate-success-line-long{0%{top:3.375em;right:2.875em;width:0}65%{top:3.375em;right:2.875em;width:0}84%{top:2.1875em;right:0;width:3.4375em}to{top:2.375em;right:.5em;width:2.9375em}}@-webkit-keyframes swal2-rotate-success-circular-line{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}5%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}12%{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}to{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}}@keyframes swal2-rotate-success-circular-line{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}5%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}12%{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}to{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}}@-webkit-keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}@-webkit-keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}}@keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}}.monsterinsights_page body.swal2-toast-shown .swal2-container,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-shown{background-color:rgba(0,0,0,0)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top{top:0;right:auto;bottom:auto;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-end,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-right{top:0;right:0;bottom:auto;left:auto}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-left,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-start{top:0;right:auto;bottom:auto;left:0}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center-left,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center-start{top:50%;right:auto;bottom:auto;left:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center{top:50%;right:auto;bottom:auto;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center-end,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center-right{top:50%;right:0;bottom:auto;left:auto;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-left,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-start{top:auto;right:auto;bottom:0;left:0}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom{top:auto;right:auto;bottom:0;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-end,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-right{top:auto;right:0;bottom:0;left:auto}.monsterinsights_page body.swal2-toast-column .swal2-toast{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-actions{-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-item-align:stretch;align-self:stretch;height:2.2em;margin-top:.3125em}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-loading{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-input{height:2em;margin:.3125em auto;font-size:1em}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-validation-message{font-size:1em}.monsterinsights_page .swal2-popup.swal2-toast{-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:auto;padding:.625em;-webkit-box-shadow:0 0 .625em #d9d9d9;box-shadow:0 0 .625em #d9d9d9;overflow-y:hidden}.monsterinsights_page .swal2-popup.swal2-toast,.monsterinsights_page .swal2-popup.swal2-toast .swal2-header{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.monsterinsights_page .swal2-popup.swal2-toast .swal2-title{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;margin:0 .6em;font-size:1em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-footer{margin:.5em 0 0;padding:.5em 0 0;font-size:.8em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-close{position:static;width:.8em;height:.8em;line-height:.8}.monsterinsights_page .swal2-popup.swal2-toast .swal2-content{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;font-size:1em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon{width:2em;min-width:2em;height:2em;margin:0}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon-text{font-size:2em;font-weight:700;line-height:1em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:2em;height:2em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line]{top:.875em;width:1.375em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:.3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:.3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-actions{height:auto;margin:0 .3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-styled{margin:0 .3125em;padding:.3125em .625em;font-size:1em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-styled:focus{-webkit-box-shadow:0 0 0 .0625em #fff,0 0 0 .125em rgba(50,100,150,.4);box-shadow:0 0 0 .0625em #fff,0 0 0 .125em rgba(50,100,150,.4)}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success{border-color:#a5dc86}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line]{position:absolute;width:2em;height:2.8125em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);border-radius:50%}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.25em;left:-.9375em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:2em 2em;-ms-transform-origin:2em 2em;transform-origin:2em 2em;border-radius:4em 0 0 4em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.25em;left:.9375em;-webkit-transform-origin:0 2em;-ms-transform-origin:0 2em;transform-origin:0 2em;border-radius:0 4em 4em 0}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success .swal2-success-ring{width:2em;height:2em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success .swal2-success-fix{top:0;left:.4375em;width:.4375em;height:2.6875em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line]{height:.3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip]{top:1.125em;left:.1875em;width:.75em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long]{top:.9375em;right:.1875em;width:1.375em}.monsterinsights_page .swal2-popup.swal2-toast.swal2-show{-webkit-animation:showSweetToast .5s;animation:showSweetToast .5s}.monsterinsights_page .swal2-popup.swal2-toast.swal2-hide{-webkit-animation:hideSweetToast .2s forwards;animation:hideSweetToast .2s forwards}.monsterinsights_page .swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:animate-toast-success-tip .75s;animation:animate-toast-success-tip .75s}.monsterinsights_page .swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:animate-toast-success-long .75s;animation:animate-toast-success-long .75s}@-webkit-keyframes showSweetToast{0%{-webkit-transform:translateY(-.625em) rotate(2deg);transform:translateY(-.625em) rotate(2deg);opacity:0}33%{-webkit-transform:translateY(0) rotate(-2deg);transform:translateY(0) rotate(-2deg);opacity:.5}66%{-webkit-transform:translateY(.3125em) rotate(2deg);transform:translateY(.3125em) rotate(2deg);opacity:.7}to{-webkit-transform:translateY(0) rotate(0);transform:translateY(0) rotate(0);opacity:1}}@keyframes showSweetToast{0%{-webkit-transform:translateY(-.625em) rotate(2deg);transform:translateY(-.625em) rotate(2deg);opacity:0}33%{-webkit-transform:translateY(0) rotate(-2deg);transform:translateY(0) rotate(-2deg);opacity:.5}66%{-webkit-transform:translateY(.3125em) rotate(2deg);transform:translateY(.3125em) rotate(2deg);opacity:.7}to{-webkit-transform:translateY(0) rotate(0);transform:translateY(0) rotate(0);opacity:1}}@-webkit-keyframes hideSweetToast{0%{opacity:1}33%{opacity:.5}to{-webkit-transform:rotate(1deg);transform:rotate(1deg);opacity:0}}@keyframes hideSweetToast{0%{opacity:1}33%{opacity:.5}to{-webkit-transform:rotate(1deg);transform:rotate(1deg);opacity:0}}@-webkit-keyframes animate-toast-success-tip{0%{top:.5625em;left:.0625em;width:0}54%{top:.125em;left:.125em;width:0}70%{top:.625em;left:-.25em;width:1.625em}84%{top:1.0625em;left:.75em;width:.5em}to{top:1.125em;left:.1875em;width:.75em}}@keyframes animate-toast-success-tip{0%{top:.5625em;left:.0625em;width:0}54%{top:.125em;left:.125em;width:0}70%{top:.625em;left:-.25em;width:1.625em}84%{top:1.0625em;left:.75em;width:.5em}to{top:1.125em;left:.1875em;width:.75em}}@-webkit-keyframes animate-toast-success-long{0%{top:1.625em;right:1.375em;width:0}65%{top:1.25em;right:.9375em;width:0}84%{top:.9375em;right:0;width:1.125em}to{top:.9375em;right:.1875em;width:1.375em}}@keyframes animate-toast-success-long{0%{top:1.625em;right:1.375em;width:0}65%{top:1.25em;right:.9375em;width:0}84%{top:.9375em;right:0;width:1.125em}to{top:.9375em;right:.1875em;width:1.375em}}.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow:hidden}.monsterinsights_page body.swal2-height-auto{height:auto!important}.monsterinsights_page body.swal2-no-backdrop .swal2-shown{top:auto;right:auto;bottom:auto;left:auto;background-color:rgba(0,0,0,0)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown>.swal2-modal{-webkit-box-shadow:0 0 10px rgba(0,0,0,.4);box-shadow:0 0 10px rgba(0,0,0,.4)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top{top:0;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-left,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-start{top:0;left:0}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-end,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-right{top:0;right:0}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center{top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center-left,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center-start{top:50%;left:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center-end,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center-right{top:50%;right:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom{bottom:0;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-left,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-start{bottom:0;left:0}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-end,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-right{right:0;bottom:0}.monsterinsights_page .swal2-container{display:-webkit-box;display:-ms-flexbox;display:flex;position:fixed;top:0;right:0;bottom:0;left:0;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:10px;background-color:rgba(0,0,0,0);z-index:1060;overflow-x:hidden;-webkit-overflow-scrolling:touch}.monsterinsights_page .swal2-container.swal2-top{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.monsterinsights_page .swal2-container.swal2-top-left,.monsterinsights_page .swal2-container.swal2-top-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.monsterinsights_page .swal2-container.swal2-top-end,.monsterinsights_page .swal2-container.swal2-top-right{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.monsterinsights_page .swal2-container.swal2-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights_page .swal2-container.swal2-center-left,.monsterinsights_page .swal2-container.swal2-center-start{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.monsterinsights_page .swal2-container.swal2-center-end,.monsterinsights_page .swal2-container.swal2-center-right{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.monsterinsights_page .swal2-container.swal2-bottom{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.monsterinsights_page .swal2-container.swal2-bottom-left,.monsterinsights_page .swal2-container.swal2-bottom-start{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.monsterinsights_page .swal2-container.swal2-bottom-end,.monsterinsights_page .swal2-container.swal2-bottom-right{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.monsterinsights_page .swal2-container.swal2-grow-fullscreen>.swal2-modal{-ms-flex:1;flex:1;-ms-flex-item-align:stretch;align-self:stretch;-ms-flex-pack:center}.monsterinsights_page .swal2-container.swal2-grow-fullscreen>.swal2-modal,.monsterinsights_page .swal2-container.swal2-grow-row>.swal2-modal{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-flex:1;-webkit-box-pack:center;justify-content:center}.monsterinsights_page .swal2-container.swal2-grow-row>.swal2-modal{-ms-flex:1;flex:1;-ms-flex-line-pack:center;align-content:center;-ms-flex-pack:center}.monsterinsights_page .swal2-container.swal2-grow-column{-webkit-box-flex:1;-ms-flex:1;flex:1;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-left,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-start,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-left,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-start,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-left,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-end,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-right,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-end,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-right,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-end,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-right{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.monsterinsights_page .swal2-container.swal2-grow-column>.swal2-modal{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-line-pack:center;align-content:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights_page .swal2-container:not(.swal2-top):not(.swal2-top-start):not(.swal2-top-end):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-start):not(.swal2-center-end):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-start):not(.swal2-bottom-end):not(.swal2-bottom-left):not(.swal2-bottom-right):not(.swal2-grow-fullscreen)>.swal2-modal{margin:auto}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.monsterinsights_page .swal2-container .swal2-modal{margin:0!important}}.monsterinsights_page .swal2-container.swal2-fade{-webkit-transition:background-color .1s;transition:background-color .1s}.monsterinsights_page .swal2-container.swal2-shown{background-color:rgba(0,0,0,.4)}.monsterinsights_page .swal2-popup{display:none;position:relative;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:32em;max-width:100%;padding:1.25em;border-radius:.3125em;background:#fff;font-family:inherit;font-size:1rem;-webkit-box-sizing:border-box;box-sizing:border-box;left:0;top:0}.monsterinsights_page .swal2-popup:focus{outline:0}.monsterinsights_page .swal2-popup.swal2-loading{overflow-y:hidden}.monsterinsights_page .swal2-popup .swal2-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights_page .swal2-popup .swal2-title{display:block;position:relative;max-width:100%;margin:0 0 .4em;padding:0;color:#595959;font-size:1.875em;font-weight:600;text-align:center;text-transform:none;word-wrap:break-word}.monsterinsights_page .swal2-popup .swal2-actions{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:1.25em auto 0;z-index:1}.monsterinsights_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled[disabled]{opacity:.4}.monsterinsights_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:hover{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.1)),to(rgba(0,0,0,.1)));background-image:linear-gradient(rgba(0,0,0,.1),rgba(0,0,0,.1))}.monsterinsights_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:active{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.2)),to(rgba(0,0,0,.2)));background-image:linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.2))}.monsterinsights_page .swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-confirm{width:2.5em;height:2.5em;margin:.46875em;padding:0;border-radius:100%;border:.25em solid rgba(0,0,0,0);background-color:rgba(0,0,0,0)!important;color:rgba(0,0,0,0);cursor:default;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.monsterinsights_page .swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-cancel{margin-right:30px;margin-left:30px}.monsterinsights_page .swal2-popup .swal2-actions.swal2-loading :not(.swal2-styled).swal2-confirm:after{display:inline-block;width:15px;height:15px;margin-left:5px;border-radius:50%;border:3px solid #999;border-right-color:rgba(0,0,0,0);-webkit-box-shadow:1px 1px 1px #fff;box-shadow:1px 1px 1px #fff;content:"";-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal}.monsterinsights_page .swal2-popup .swal2-styled{margin:.3125em;padding:.625em 2em;font-weight:500;-webkit-box-shadow:none;box-shadow:none}.monsterinsights_page .swal2-popup .swal2-styled:not([disabled]){cursor:pointer}.monsterinsights_page .swal2-popup .swal2-styled.swal2-confirm{border:0;border-radius:.25em;background:initial;background-color:#3085d6;color:#fff;font-size:1.0625em}.monsterinsights_page .swal2-popup .swal2-styled.swal2-cancel{border:0;border-radius:.25em;background:initial;background-color:#aaa;color:#fff;font-size:1.0625em}.monsterinsights_page .swal2-popup .swal2-styled:focus{outline:0;-webkit-box-shadow:0 0 0 2px #fff,0 0 0 4px rgba(50,100,150,.4);box-shadow:0 0 0 2px #fff,0 0 0 4px rgba(50,100,150,.4)}.monsterinsights_page .swal2-popup .swal2-styled::-moz-focus-inner{border:0}.monsterinsights_page .swal2-popup .swal2-footer{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:1.25em 0 0;padding:1em 0 0;border-top:1px solid #eee;color:#545454;font-size:1em}.monsterinsights_page .swal2-popup .swal2-image{max-width:100%;margin:1.25em auto}.monsterinsights_page .swal2-popup .swal2-close{position:absolute;top:0;right:0;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:1.2em;height:1.2em;padding:0;-webkit-transition:color .1s ease-out;transition:color .1s ease-out;border:none;border-radius:0;outline:initial;background:0 0;color:#ccc;font-family:serif;font-size:2.5em;line-height:1.2;cursor:pointer;overflow:hidden}.monsterinsights_page .swal2-popup .swal2-close:hover{-webkit-transform:none;-ms-transform:none;transform:none;color:#f27474}.monsterinsights_page .swal2-popup>.swal2-checkbox,.monsterinsights_page .swal2-popup>.swal2-file,.monsterinsights_page .swal2-popup>.swal2-input,.monsterinsights_page .swal2-popup>.swal2-radio,.monsterinsights_page .swal2-popup>.swal2-select,.monsterinsights_page .swal2-popup>.swal2-textarea{display:none}.monsterinsights_page .swal2-popup .swal2-content{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:0;padding:0;color:#545454;font-size:1.125em;font-weight:300;line-height:normal;z-index:1;word-wrap:break-word}.monsterinsights_page .swal2-popup #swal2-content{text-align:center}.monsterinsights_page .swal2-popup .swal2-checkbox,.monsterinsights_page .swal2-popup .swal2-file,.monsterinsights_page .swal2-popup .swal2-input,.monsterinsights_page .swal2-popup .swal2-radio,.monsterinsights_page .swal2-popup .swal2-select,.monsterinsights_page .swal2-popup .swal2-textarea{margin:1em auto}.monsterinsights_page .swal2-popup .swal2-file,.monsterinsights_page .swal2-popup .swal2-input,.monsterinsights_page .swal2-popup .swal2-textarea{width:100%;-webkit-transition:border-color .3s,-webkit-box-shadow .3s;transition:border-color .3s,-webkit-box-shadow .3s;transition:border-color .3s,box-shadow .3s;transition:border-color .3s,box-shadow .3s,-webkit-box-shadow .3s;border:1px solid #d9d9d9;border-radius:.1875em;font-size:1.125em;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.06);box-shadow:inset 0 1px 1px rgba(0,0,0,.06);-webkit-box-sizing:border-box;box-sizing:border-box}.monsterinsights_page .swal2-popup .swal2-file.swal2-inputerror,.monsterinsights_page .swal2-popup .swal2-input.swal2-inputerror,.monsterinsights_page .swal2-popup .swal2-textarea.swal2-inputerror{border-color:#f27474!important;-webkit-box-shadow:0 0 2px #f27474!important;box-shadow:0 0 2px #f27474!important}.monsterinsights_page .swal2-popup .swal2-file:focus,.monsterinsights_page .swal2-popup .swal2-input:focus,.monsterinsights_page .swal2-popup .swal2-textarea:focus{border:1px solid #b4dbed;outline:0;-webkit-box-shadow:0 0 3px #c4e6f5;box-shadow:0 0 3px #c4e6f5}.monsterinsights_page .swal2-popup .swal2-file::-webkit-input-placeholder,.monsterinsights_page .swal2-popup .swal2-input::-webkit-input-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::-webkit-input-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file::-moz-placeholder,.monsterinsights_page .swal2-popup .swal2-input::-moz-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::-moz-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file:-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-input:-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea:-ms-input-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file::-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-input::-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::-ms-input-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file::placeholder,.monsterinsights_page .swal2-popup .swal2-input::placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-range input{width:80%}.monsterinsights_page .swal2-popup .swal2-range output{width:20%;font-weight:600;text-align:center}.monsterinsights_page .swal2-popup .swal2-range input,.monsterinsights_page .swal2-popup .swal2-range output{height:2.625em;margin:1em auto;padding:0;font-size:1.125em;line-height:2.625em}.monsterinsights_page .swal2-popup .swal2-input{height:2.625em;padding:0 .75em}.monsterinsights_page .swal2-popup .swal2-input[type=number]{max-width:10em}.monsterinsights_page .swal2-popup .swal2-file{font-size:1.125em}.monsterinsights_page .swal2-popup .swal2-textarea{height:6.75em;padding:.75em}.monsterinsights_page .swal2-popup .swal2-select{min-width:50%;max-width:100%;padding:.375em .625em;color:#545454;font-size:1.125em}.monsterinsights_page .swal2-popup .swal2-checkbox,.monsterinsights_page .swal2-popup .swal2-radio{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights_page .swal2-popup .swal2-checkbox label,.monsterinsights_page .swal2-popup .swal2-radio label{margin:0 .6em;font-size:1.125em}.monsterinsights_page .swal2-popup .swal2-checkbox input,.monsterinsights_page .swal2-popup .swal2-radio input{margin:0 .4em}.monsterinsights_page .swal2-popup .swal2-validation-message{display:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:.625em;background:#f0f0f0;color:#666;font-size:1em;font-weight:300;overflow:hidden}.monsterinsights_page .swal2-popup .swal2-validation-message:before{display:inline-block;width:1.5em;min-width:1.5em;height:1.5em;margin:0 .625em;border-radius:50%;background-color:#f27474;color:#fff;font-weight:600;line-height:1.5em;text-align:center;content:"!";zoom:normal}@supports (-ms-accelerator:true){.monsterinsights_page .swal2-range input{width:100%!important}.monsterinsights_page .swal2-range output{display:none}}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.monsterinsights_page .swal2-range input{width:100%!important}.monsterinsights_page .swal2-range output{display:none}}@-moz-document url-prefix(){.monsterinsights_page .swal2-close:focus{outline:2px solid rgba(50,100,150,.4)}}.monsterinsights_page .swal2-icon{position:relative;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:5em;height:5em;margin:1.25em auto 1.875em;border:.25em solid rgba(0,0,0,0);border-radius:50%;line-height:5em;cursor:default;-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;zoom:normal}.monsterinsights_page .swal2-icon-text{font-size:3.75em}.monsterinsights_page .swal2-icon.swal2-error{border-color:#f27474}.monsterinsights_page .swal2-icon.swal2-error .swal2-x-mark{position:relative;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.monsterinsights_page .swal2-icon.swal2-error [class^=swal2-x-mark-line]{display:block;position:absolute;top:2.3125em;width:2.9375em;height:.3125em;border-radius:.125em;background-color:#f27474}.monsterinsights_page .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:1.0625em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.monsterinsights_page .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:1em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.monsterinsights_page .swal2-icon.swal2-warning{border-color:#facea8;color:#f8bb86}.monsterinsights_page .swal2-icon.swal2-info{border-color:#9de0f6;color:#3fc3ee;font-size:1rem}.monsterinsights_page .swal2-icon.swal2-question{border-color:#c9dae1;color:#87adbd}.monsterinsights_page .swal2-icon.swal2-success{border-color:#a5dc86}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-circular-line]{position:absolute;width:3.75em;height:7.5em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);border-radius:50%}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.4375em;left:-2.0635em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:3.75em 3.75em;-ms-transform-origin:3.75em 3.75em;transform-origin:3.75em 3.75em;border-radius:7.5em 0 0 7.5em}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.6875em;left:1.875em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:0 3.75em;-ms-transform-origin:0 3.75em;transform-origin:0 3.75em;border-radius:0 7.5em 7.5em 0}.monsterinsights_page .swal2-icon.swal2-success .swal2-success-ring{position:absolute;top:-.25em;left:-.25em;width:100%;height:100%;border:.25em solid rgba(165,220,134,.3);border-radius:50%;z-index:2;-webkit-box-sizing:content-box;box-sizing:content-box}.monsterinsights_page .swal2-icon.swal2-success .swal2-success-fix{position:absolute;top:.5em;left:1.625em;width:.4375em;height:5.625em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);z-index:1}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-line]{display:block;position:absolute;height:.3125em;border-radius:.125em;background-color:#a5dc86;z-index:2}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-line][class$=tip]{top:2.875em;left:.875em;width:1.5625em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-line][class$=long]{top:2.375em;right:.5em;width:2.9375em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.monsterinsights_page .swal2-progresssteps{-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:0 0 1.25em;padding:0;font-weight:600}.monsterinsights_page .swal2-progresssteps li{display:inline-block;position:relative}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle{width:2em;height:2em;border-radius:2em;background:#3085d6;color:#fff;line-height:2em;text-align:center;z-index:20}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle:first-child{margin-left:0}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle:last-child{margin-right:0}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep{background:#3085d6}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progresscircle,.monsterinsights_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progressline{background:#add8e6}.monsterinsights_page .swal2-progresssteps .swal2-progressline{width:2.5em;height:.4em;margin:0 -1px;background:#3085d6;z-index:10}.monsterinsights_page [class^=swal2]{-webkit-tap-highlight-color:transparent}.monsterinsights_page .swal2-show{-webkit-animation:swal2-show .3s;animation:swal2-show .3s}.monsterinsights_page .swal2-show.swal2-noanimation{-webkit-animation:none;animation:none}.monsterinsights_page .swal2-hide{-webkit-animation:swal2-hide .15s forwards;animation:swal2-hide .15s forwards}.monsterinsights_page .swal2-hide.swal2-noanimation{-webkit-animation:none;animation:none}.monsterinsights_page .swal2-rtl .swal2-close{right:auto;left:0}.monsterinsights_page .swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:swal2-animate-success-line-tip .75s;animation:swal2-animate-success-line-tip .75s}.monsterinsights_page .swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:swal2-animate-success-line-long .75s;animation:swal2-animate-success-line-long .75s}.monsterinsights_page .swal2-animate-success-icon .swal2-success-circular-line-right{-webkit-animation:swal2-rotate-success-circular-line 4.25s ease-in;animation:swal2-rotate-success-circular-line 4.25s ease-in}.monsterinsights_page .swal2-animate-error-icon{-webkit-animation:swal2-animate-error-icon .5s;animation:swal2-animate-error-icon .5s}.monsterinsights_page .swal2-animate-error-icon .swal2-x-mark{-webkit-animation:swal2-animate-error-x-mark .5s;animation:swal2-animate-error-x-mark .5s}@-webkit-keyframes swal2-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes swal2-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@media print{.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow-y:scroll!important}.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown)>[aria-hidden=true]{display:none}.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container{position:static!important}}.monsterinsights-notifications-display{background:#fff;border-left:3px solid #509fe2;padding:20px;border-radius:3px 0 0 3px;margin-bottom:50px;position:relative}.monsterinsights-settings-content .monsterinsights-notifications-display{margin-top:20px;margin-bottom:20px}.monsterinsights-notifications-display h3{margin:0 0 4px;font-size:16px;line-height:20px}.monsterinsights-notifications-display p{margin-top:4px;margin-bottom:12px;font-size:14px;line-height:18px}.monsterinsights-notifications-display .monsterinsights-notification{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-notifications-display .monsterinsights-notification .monsterinsights-notifications-indicator{padding-top:10px}.monsterinsights-notifications-display .monsterinsights-notification .monsterinsights-notifications-indicator a{position:relative}.monsterinsights-notifications-display .monsterinsights-notification-inner{margin-left:25px}.monsterinsights-notifications-display .monsterinsights-button{margin-right:15px}.monsterinsights-notifications-display .monsterinsights-notification-navigation{position:absolute;right:0;top:100%}.monsterinsights-notifications-display .monsterinsights-notification-navigation button{background:#fff;border:none;border-radius:0 0 3px 3px;margin:0;padding:5px 8px 7px;color:#a8aebd;cursor:pointer}.monsterinsights-notifications-display .monsterinsights-notification-navigation button:focus,.monsterinsights-notifications-display .monsterinsights-notification-navigation button:hover{color:#509fe2}.monsterinsights-notifications-display .monsterinsights-notification-navigation button .monstericon-arrow{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);font-size:10px}.monsterinsights-notifications-display .monsterinsights-notification-navigation button.monsterinsights-notification-previous{margin-right:2px}.monsterinsights-notifications-display .monsterinsights-notification-navigation button.monsterinsights-notification-previous .monstericon-arrow{-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.monsterinsights-notifications-display .monsterinsights-notification-dismiss{border:none;background:none;color:#a8aebd;position:absolute;right:12px;top:9px;padding:0;margin:0;font-size:16px;cursor:pointer}.monsterinsights-notifications-display .monsterinsights-notifications-unread{min-width:10px;height:16px;background:#c84b29;border:1.72823px solid #f9fbff;position:absolute;bottom:12px;left:18px;border-radius:20px;line-height:16px;color:#fff;font-weight:700;text-align:center;display:inline-block;padding:0 3px}.monsterinsights-report .monsterinsights-notifications-display .monsterinsights-notifications-unread{min-width:16px;height:16px;background:#c84b29;border:1.72823px solid #f9fbff;position:absolute;bottom:4px;border-radius:20px;line-height:1;color:#fff;font-weight:700;text-align:center;padding:0 2px;left:20px}.monsterinsights-admin-page.monsterinsights-path-about-us .monsterinsights-notificationsv3-container,.monsterinsights-admin-page.monsterinsights-path-addons .monsterinsights-notificationsv3-container,.monsterinsights-admin-page.monsterinsights-path-tools-import-export .monsterinsights-notificationsv3-container,.monsterinsights-admin-page.monsterinsights-path-tools-url-builder .monsterinsights-notificationsv3-container,.monsterinsights-admin-page.monsterinsights-reports-page .monsterinsights-notificationsv3-container{margin-right:0}.monsterinsights-admin-page .monsterinsights-notificationsv3-container{display:inline-block;margin-right:20px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-number{position:absolute;top:-11px;min-width:20px;height:20px;line-height:20px;display:block;background:#eb5757;border-radius:20px;font-size:12px;color:#fff;font-weight:700;text-align:center;padding:0 6px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-number.number-greater-than-10{right:-13px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-number.number-less-than-10{right:-10px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-dismissed-number{min-width:24px;height:24px;background:#7c869d;border-radius:20px;display:inline-block;text-align:center;vertical-align:middle;line-height:24px;color:#fff;font-size:14px;font-weight:700;padding:0 8px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-no-notifications{text-align:center;position:absolute;top:50%;margin-top:-69px;width:100%}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-no-notifications h4{font-size:16px;color:#7c869d}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button{position:relative}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button{position:absolute;top:21px;right:15px}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button{background:#f0f2f4;border-radius:3px;padding:11px 7px;line-height:0;vertical-align:middle;margin-top:-2px;border:solid #d3d7de;border-width:1px 1px 2px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button{display:inline-block}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button:hover{background:#e7eaec;border-color:#d3d7de;outline:none}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-notificationsv3-inbox-number{cursor:pointer}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar{width:440px;position:fixed;top:32px;right:0;background:#fff;z-index:1001;overflow:scroll;height:100%;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-fill-mode:both;animation-fill-mode:both}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar{top:46px;width:300px}}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(50px)}to{opacity:1;-webkit-transform:translateX(0)}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(50px);transform:translateX(50px)}to{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar.monsterinsights-notificationsv3-sidebar-in{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-single-notification{padding:0 16px;overflow:hidden}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top{background:#2679c1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:50px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-title{width:50%}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-title svg{margin-right:10px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-title h3{display:inline-block;color:#fff;font-size:18px;font-weight:700}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions{width:50%;text-align:right}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button{color:#fff;text-decoration:underline;border:0;padding:0;background:rgba(0,0,0,0);border-radius:0}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button{display:inline-block}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button:hover{color:#efe5e5}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button:focus{outline:none}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-notificationsv3-sidebar-close{margin-left:12px;vertical-align:bottom}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-notificationsv3-sidebar-close:active svg path,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-notificationsv3-sidebar-close:focus svg path,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-notificationsv3-sidebar-close:hover svg path{fill:#efe5e5}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:60px;border-bottom:1px solid #e2e4e9;margin:0 16px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-notifications-count{width:50%}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-notifications-count .monsterinsights-notificationsv3-inbox-number{position:relative;display:inline-block;top:inherit;right:inherit;min-width:24px;height:24px;line-height:24px;margin-right:8px;padding:0 8px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-notifications-count .monsterinsights-notificationsv3-dismissed-number{margin-right:8px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-notifications-count h4{display:inline-block}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions{width:50%;text-align:right}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions span{text-decoration:underline;color:#99a1b3;cursor:pointer}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions span:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions span:focus,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions span:hover{color:#a9b1c3}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications{display:block;margin-bottom:32px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications{margin-bottom:46px}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification{border-bottom:1px solid #e2e4e9;padding-bottom:24px;display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-icon{width:54px;float:left;text-align:center;padding-top:24px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-icon{float:none;margin:0 auto}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details{float:left;width:354px;padding-top:20px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details{width:260px}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-title h5{margin-top:0;margin-bottom:0;color:#393f4c;font-size:13px;font-weight:700;width:70%;display:inline-block}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-title h5{width:65%}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-title span{color:#7f899f;font-size:13px;float:right}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-content p{color:#393f4c;font-size:13px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-top:2px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions .monsterinsights-button{display:block;background:#f0f2f4;border:1px solid #d3d7de;border-radius:3px;font-weight:500;font-size:13px;color:#393f4c;letter-spacing:.02em;padding:6px 11px;margin-right:10px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions .monsterinsights-button:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions .monsterinsights-button:hover{background:#d3d7de}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions span{font-size:13px;color:#7f899f;cursor:pointer}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions span:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions span:focus,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions span:hover{color:#a9b1c3}.monsterinsights-tooltip{display:block!important;z-index:10000;max-width:350px}.monsterinsights-tooltip .monsterinsights-tooltip-inner{background:#5f6197;color:#fff;border-radius:5px;padding:16px 20px;font-size:14px;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}.monsterinsights-tooltip .monsterinsights-tooltip-inner a{color:#fff;font-weight:700}.monsterinsights-tooltip .monsterinsights-tooltip-arrow{width:0;height:0;border-style:solid;position:absolute;margin:5px;border-color:#5f6197;z-index:1}.monsterinsights-tooltip[x-placement^=top]{padding-bottom:5px}.monsterinsights-tooltip[x-placement^=top] .monsterinsights-tooltip-arrow{border-width:5px 5px 0;border-left-color:rgba(0,0,0,0)!important;border-right-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;bottom:0;left:calc(50% - 5px);margin-top:0;margin-bottom:0}.monsterinsights-tooltip[x-placement^=bottom]{padding-top:5px}.monsterinsights-tooltip[x-placement^=bottom] .monsterinsights-tooltip-arrow{border-width:0 5px 5px;border-left-color:rgba(0,0,0,0)!important;border-right-color:rgba(0,0,0,0)!important;border-top-color:rgba(0,0,0,0)!important;top:0;left:calc(50% - 5px);margin-top:0;margin-bottom:0}.monsterinsights-tooltip[x-placement^=right]{padding-left:5px}.monsterinsights-tooltip[x-placement^=right] .monsterinsights-tooltip-arrow{border-width:5px 5px 5px 0;border-left-color:rgba(0,0,0,0)!important;border-top-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;left:0;top:calc(50% - 5px);margin-left:0;margin-right:0}.monsterinsights-tooltip[x-placement^=left]{padding-right:5px}.monsterinsights-tooltip[x-placement^=left] .monsterinsights-tooltip-arrow{border-width:5px 0 5px 5px;border-top-color:rgba(0,0,0,0)!important;border-right-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;right:0;top:calc(50% - 5px);margin-left:0;margin-right:0}.monsterinsights-tooltip.popover .popover-inner{background:#fff;color:#5f6197;padding:24px;border-radius:5px;-webkit-box-shadow:0 5px 30px rgba(0,0,0,.1);box-shadow:0 5px 30px rgba(0,0,0,.1)}.monsterinsights-tooltip.popover .popover-arrow{border-color:#fff}.monsterinsights-tooltip[aria-hidden=true]{visibility:hidden;opacity:0;-webkit-transition:opacity .15s,visibility .15s;transition:opacity .15s,visibility .15s}.monsterinsights-tooltip[aria-hidden=false]{visibility:visible;opacity:1;-webkit-transition:opacity .15s;transition:opacity .15s}.monsterinsights-conditional-logic-container button:focus{outline:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-header{margin-bottom:30px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-header .monsterinsights-conditional-rule-sets-number{float:right}.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator{text-align:center;font-weight:700;display:block;margin:0 auto 20px;position:relative}.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator:after,.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator:before{content:"";position:absolute;top:45%;width:45%;height:2px;background:#d6e2ed;margin-top:-1px}.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator:before{left:0}.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator:after{right:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:24px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column{width:100%;margin-right:18px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field{text-transform:capitalize;width:100%;height:38px;min-height:38px;line-height:38px;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field.text-input{padding:0 8px;border-color:#ddd;text-transform:none;border-radius:5px;-webkit-box-sizing:border-box;box-sizing:border-box;height:38px;margin-top:0;line-height:38px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field input[type=text]{padding-top:5px;padding-bottom:5px;height:inherit}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field.multiselect--active .multiselect__tags .multiselect__spinner{z-index:1}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags{padding:0;height:38px;min-height:38px;border-color:#ddd;margin-top:0;-webkit-box-sizing:border-box;box-sizing:border-box}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags input[type=text]{border:0;height:36px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags .multiselect__single{margin-bottom:0;padding:0 8px;line-height:36px;font-size:14px;white-space:pre}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags .multiselect__placeholder{display:block;margin-bottom:0;line-height:36px;padding:0 8px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags .multiselect__spinner{width:35px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .add-new-condition{padding:6px 12px;margin:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .add-new-condition:focus{outline:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .remove-condition{border:0;padding:0;margin:0;background:rgba(0,0,0,0)}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .remove-condition:focus{outline:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .remove-condition .monstericon-times-circle{color:#dc3232;cursor:pointer;padding:0;margin:0 15px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .remove-condition .monstericon-times-circle:focus{outline:0}.monsterinsights-upload-media-wrapper .monsterinsights-dark{display:block}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media-label{margin-bottom:0}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media{display:block;width:100%;margin-top:20px;position:relative;max-width:300px}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media .monsterinsights-uploaded-media-overlay{display:none;background:rgba(0,0,0,.7);width:100%;position:absolute;top:0;left:0;height:100%;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media .monsterinsights-uploaded-media-overlay .monsterinsights-remove-uploaded-media{color:#fff;text-decoration:underline;margin-left:auto;cursor:pointer;padding:0 10px 10px 0}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media .monsterinsights-uploaded-media-overlay .monsterinsights-remove-uploaded-media:hover{text-decoration:none}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media:hover .monsterinsights-uploaded-media-overlay{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media img{max-width:100%;display:inline-block}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media{overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;margin-top:20px}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-input{width:73%;margin-right:2%;float:left;position:relative}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-button{width:25%;float:left;font-size:15px}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-button:active,.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-button:focus,.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-button:hover{outline:none}.monsterinsights-email-summaries-settings a{color:#509fe2!important}.monsterinsights-email-summaries-settings a:focus,.monsterinsights-email-summaries-settings a:hover{color:#393f4c!important}.monsterinsights-email-summaries-settings .monsterinsights-dark{display:block}.monsterinsights-email-summaries-settings .inline-field .monsterinsights-button:first-child{margin-left:0}.monsterinsights-email-summaries-settings .monsterinsights-settings-input-repeater{margin-bottom:18px}.monsterinsights-email-summaries-settings .monsterinsights-button.monsterinsights-button-disabled{cursor:not-allowed;background:#39967e!important;border-color:#4ab99b!important}.monsterinsights-accordion .monsterinsights-accordion{padding:0;border:1px solid #e0e0e0}.monsterinsights-accordion .monsterinsights-accordion div:not(:last-child){border-bottom:1px solid rgba(10,10,10,.1)}.monsterinsights-accordion .monsterinsights-accordion div:last-child .monsterinsights-accordion-item-details{border-radius:5px}.monsterinsights-accordion .monsterinsights-accordion dd{margin-left:0;margin-bottom:0}.monsterinsights-accordion .monsterinsights-accordion-item-trigger{cursor:pointer;outline:none}.monsterinsights-accordion .monsterinsights-accordion-item-details-inner,.monsterinsights-accordion .monsterinsights-accordion-item-trigger{padding:0 20px 30px}.monsterinsights-accordion .monsterinsights-accordion-item.is-active .monsterinsights-accordion-item-title{border-bottom:1px solid #e0e0e0}.monsterinsights-accordion .monsterinsights-accordion-item-title{position:relative;background-color:#fff;cursor:pointer}.monsterinsights-accordion .monsterinsights-accordion-item-title h4.monsterinsights-accordion-item-title-text{font-size:20px;margin-bottom:0;padding-right:1.25rem}.monsterinsights-accordion .monsterinsights-accordion-item-title h4.monsterinsights-accordion-item-title-text .title{padding-left:15px}.monsterinsights-accordion .monsterinsights-accordion-item-trigger{width:100%;text-align:left;background-color:rgba(0,0,0,0);border:none}.monsterinsights-accordion .monsterinsights-accordion-item-trigger-icon{display:block;position:absolute;top:0;right:1.5rem;bottom:0;margin:auto;width:8px;height:8px;border-right:2px solid #363636;border-bottom:2px solid #363636;-webkit-transform:translateY(-2px) rotate(45deg);-ms-transform:translateY(-2px) rotate(45deg);transform:translateY(-2px) rotate(45deg);-webkit-transition:-webkit-transform .2s ease;transition:-webkit-transform .2s ease;transition:transform .2s ease;transition:transform .2s ease,-webkit-transform .2s ease}.monsterinsights-accordion .monsterinsights-accordion-item-trigger-icon.is-active{-webkit-transform:translateY(2px) rotate(225deg);-ms-transform:translateY(2px) rotate(225deg);transform:translateY(2px) rotate(225deg)}.monsterinsights-accordion .monsterinsights-accordion-item-details{overflow:hidden;background-color:#fff;padding-top:15px}.monsterinsights-accordion .monsterinsights-accordion-item-details p,.monsterinsights-accordion .monsterinsights-accordion-item-details ul{font-size:1.2em;line-height:1.8}.monsterinsights-accordion .monsterinsights-accordion-item-enter-active,.monsterinsights-accordion .monsterinsights-accordion-item-leave-active{will-change:height;-webkit-transition:height .2s ease;transition:height .2s ease}.monsterinsights-accordion .monsterinsights-accordion-item-enter,.monsterinsights-accordion .monsterinsights-accordion-item-leave-to{height:0!important}body{background:#f3f6ff;margin:0}.monsterinsights-admin-page,.monsterinsights-admin-page *{-webkit-box-sizing:border-box;box-sizing:border-box;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}#wpcontent,.auto-fold #wpcontent{padding-left:0}.monsterinsights-highlighted-text{color:#64bfa5;font-weight:700}.monsterinsights-bold{font-weight:700}.monsterinsights-bg-img{width:100%;padding-top:66%;position:relative}.monsterinsights-bg-img:after{content:"";position:absolute;top:0;left:0;bottom:0;right:0;background-repeat:no-repeat;background-size:contain}.monsterinsights-header{padding:20px 10px;background-color:#f9fbff;min-height:85px}.monsterinsights-settings-panel-network>.monsterinsights-header{background-color:rgba(0,0,0,0)}.monsterinsights-logo-area{float:left;max-width:calc(100vw - 170px)}.monsterinsights-logo-area img{display:block;max-width:100%}@media (max-width:782px){.monsterinsights-logo-area{text-align:center;margin:0 auto;float:none}.monsterinsights-logo-area img{display:inline-block;max-height:35px}}@media (max-width:782px){.monsterinsights-header .monsterinsights-container,.monsterinsights-navigation-bar .monsterinsights-container{padding:0;width:100%}}.monsterinsights-navigation-bar{width:100%;background:#fff;border-top:1px solid #d5e2ed;border-bottom:1px solid #d5e2ed;padding:0 10px}@media (max-width:782px){.monsterinsights-navigation-bar{padding:0;border:0}}@media (max-width:750px){.monsterinsights-navigation-bar{background:none}}.monsterinsights-admin-page{position:relative}.monsterinsights-admin-page .monsterinsights-blocked{position:absolute;top:0;bottom:0;right:0;left:0;background:hsla(0,0%,100%,.5);z-index:999}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-header{padding-bottom:5px}.monsterinsights-admin-page .monsterinsights-header .monsterinsights-button{display:none}}.swal2-popup .swal2-title{line-height:1.2}#footer-left{color:#393f4c}#footer-left .monsterinsights-no-text-decoration{text-decoration:none;color:#fdb72c;font-size:14px}#footer-left a{color:#509fe1}#wpfooter{position:relative}#wpfooter:before{left:20px;right:20px;height:1px;background:#d6e2ed;content:"";position:absolute;top:-12px}.monsterinsights-container{margin:0 auto;max-width:100%;width:750px}.monsterinsights-admin-page .monsterinsights-navigation-tab-link{text-decoration:none;padding:17px 0 15px;border-bottom:2px solid #fff;font-size:14px;color:#393f4c;display:inline-block;margin-right:25px;line-height:1;outline:none;font-family:Lato,sans-serif}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.router-link-exact-active,.monsterinsights-admin-page .monsterinsights-navigation-tab-link:focus,.monsterinsights-admin-page .monsterinsights-navigation-tab-link:hover{color:#509fe2;border-bottom-color:#509fe2;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.router-link-exact-active{font-weight:700}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.monsterinsights-navigation-tab-disabled:focus,.monsterinsights-admin-page .monsterinsights-navigation-tab-link.monsterinsights-navigation-tab-disabled:hover{border-bottom-color:rgba(0,0,0,0);color:#393f4c;cursor:default}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.year-in-review{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAANCAYAAACdKY9CAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAJKSURBVHgBjdJbSFMBHMfx/7lMT7qdk5s7IsvWdIqZ6UFNJC+Yl4EGQUkYItHN8NZl7KESohUUVKCst8QoYkTFlLzlhWHZispSK7NWyjbdZmPJ5tbuLk9ZBD0U+H35v3xe/vADAEDgr15nZ3PgPymLi3E0o9F4XJim5P7GtfEpvIJHNYrJE6UXDXF/4MdKec3qrU2pakNS6+YuhULhQL98z3tvR26C58OKgY7aVJjWd/bUT8OuwtGsvSXJuICKQPEyLJZpTvjutI4UURqgiNm7NqE+I1EvXNDu60rShr2mM5K8etOK22H2OrCsCXUbGnD0PgD8a2B0uvKKTySBzVJqC8IsHR3cVhHNCgia3F2N0wKxnuUR4wiCsL8eLj8wxuyM0Q3l5nTTfDwIQhcNVL4HXK6Aqq9Dfu/2xpJoHhmViaEIiTyT1dMzQl0yKjqoI9e5kbStQ0ByMfBhcaCeqQO3n5i1hxgVB/NP8jiRDtzjXIoUb6fPR0h6EONwA9gIHsQXDQNfhMMR8j5Q9nHpp88uN8rEmJjSt1bMshDrSywoa0mNnxKI06fAZZEBTuwCPrMIaMQiPNEavvnZ5fl0WaqnKUnEYK3XhIVBc4GCR6yHDdIvkFw+BwSXghc3xOGBnonOEVdmg+Ly41uNEg7fGeKb8ahIulqSpwH7Ozl4pTtg2aOBN7rWO2NW69UuatrC4qFsJbSjKE5wM5sGX0H7oZu2+f7DbNBSFXqqOj3QnK7M+dcsjOc6Tz6sOEbCy+v7W56runvVF8rzYQ39AJVT15Tcu/1IAAAAAElFTkSuQmCC);background-repeat:no-repeat;background-position:0 50%;padding-left:18px;font-weight:700}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-navigation-tab-link{width:100%;text-align:center;padding:10px;color:#509fe2;font-size:16px;background:#fff;border:none}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.router-link-exact-active{display:none}.monsterinsights-admin-page .monsterinsights-navigation-tab-link:focus{color:#393f4c;text-decoration:underline}}.monsterinsights-admin-page .monsterinsights-button{background:#509fe2;border:solid #2e7fbe;border-width:1px 1px 2px;border-radius:3px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:10px 20px;text-decoration:none}.monsterinsights-admin-page .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-button:hover{background-color:#3a93dd;border-color:#2971a9;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-disabled{background:#f3f6ff;border-color:#d6e2eb;color:#8ba4b7}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary{background:#8da4b5;border-color:#6f8ca0;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary:hover{background-color:#7e98ab;border-color:#627f94;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green{background:#5cc0a5;border-color:#40a88d;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green:hover{background-color:#4ab99b;border-color:#39967e;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-gray{background:#8ea4b4;border-color:#738ea1;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-gray:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-gray:hover{background-color:#596771;border-color:#738ea1}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-gray.monsterinsights-button-disabled{pointer-events:none}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-text{background:rgba(0,0,0,0);border:none;color:#509fe2;padding:0;border-radius:0;text-decoration:underline}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-text:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-text:hover{background:rgba(0,0,0,0);color:#393f4c}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-red{background:#ea4e64;border-color:#d21933;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-large{font-size:16px;padding:14px 27px}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-small{font-size:13px;line-height:20px;padding:5px 10px}.monsterinsights-green-text{color:#5cc0a5;font-weight:700}@media (max-width:782px){.wp-responsive-open #wpbody{margin-left:-18px}}.monsterinsights-mobile-nav-trigger{color:#393f4c;font-size:16px;font-weight:500;width:100%;display:block;border-color:#d6e2ed;border-style:solid;border-width:1px 0;background:#fff;padding:15px 10px;line-height:1;margin:0}@media (min-width:783px){.monsterinsights-mobile-nav-trigger{display:none}}.monsterinsights-mobile-nav-trigger i{color:#acbdc9;margin-left:10px;vertical-align:middle}@media (max-width:782px){.monsterinsights-main-navigation{background:#fff;height:0;overflow:hidden}.monsterinsights-main-navigation.monsterinsights-main-navigation-open{padding:10px 0;height:auto;border-bottom:1px solid #d6e2ed}}@media (min-width:782px){.wp-admin .monsterinsights-swal{margin-left:160px}.auto-fold .wp-admin .monsterinsights-swal{margin-left:36px}}@media (min-width:961px){.auto-fold .wp-admin .monsterinsights-swal{margin-left:160px}.folded .wp-admin .monsterinsights-swal{margin-left:36px}}.monsterinsights-modal{position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,.8);z-index:99999;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights-modal .monsterinsights-modal-inner{background:#fff;padding:50px;border:1px solid #d6e2ed;text-align:center;width:750px}.monsterinsights-modal .monsterinsights-modal-inner h2{margin-top:0;margin-bottom:0;line-height:1.4}.monsterinsights-modal .monsterinsights-modal-inner p{margin-bottom:0}.monsterinsights-modal .monsterinsights-modal-inner .monsterinsights-modal-buttons{margin-top:50px}.monsterinsights-modal .monsterinsights-modal-inner .monsterinsights-button{margin:0 10px}.monsterinsights-welcome-overlay{position:fixed;top:0;left:0;right:0;bottom:0;z-index:99999999;font-family:inherit;overflow:hidden;background-color:rgba(0,0,0,.5)}.monsterinsights-welcome-overlay .monsterinsights-welcome-overlay-inner{background:#fff;padding:30px;width:70%;margin:0 auto;position:relative;top:10%;height:80%}.monsterinsights-welcome-overlay .monsterinsights-overlay-close{background:none;border:none;position:absolute;top:5px;right:7px;padding:0;color:#777}.monsterinsights-welcome-overlay .monsterinsights-welcome-overlay-content{height:100%}.monsterinsights-welcome-overlay .monsterinsights-welcome-overlay-content iframe{height:100%;width:100%}.monsterinsights-float-right{float:right}.monsterinsights-loading-spinner-inline{text-align:center;margin:25px}.monsterinsights-loading-spinner-inline .monsterinsights-loading-spinner-inline-loader-holder{display:inline-block}.monsterinsights-semrush-cta{background:#fff;border-left:3px solid #338eef;padding:20px 26px;border-radius:3px 0 0 3px;position:relative}.monsterinsights-semrush-cta br{display:none}.monsterinsights-semrush-cta .monsterinsights-semrush-cta-close{position:absolute;top:12px;right:12px;cursor:pointer;border:0;background:rgba(0,0,0,0);padding:0;margin:0;outline:none}.monsterinsights-semrush-cta .monsterinsights-semrush-cta-title{font-weight:700;font-size:16px;line-height:20px;color:#393f4c;margin:0}.monsterinsights-semrush-cta .monsterinsights-semrush-cta-content{font-weight:400;font-size:14px;color:#393f4c}.monsterinsights-semrush-cta .monsterinsights-button{background:#338eef;border-radius:3px;font-weight:400;font-size:14px;border-width:0;padding:7px 12px}.monsterinsights-semrush-cta .monsterinsights-button:active,.monsterinsights-semrush-cta .monsterinsights-button:focus,.monsterinsights-semrush-cta .monsterinsights-button:hover{background:#3088e6;outline:none}.monsterinsights-row-highlight{-webkit-animation-name:color;animation-name:color;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-iteration-count:2;animation-iteration-count:2}@-webkit-keyframes color{0%{background-color:#fff}50%{background-color:#509fe2}to{background-color:#fff}}@keyframes color{0%{background-color:#fff}50%{background-color:#509fe2}to{background-color:#fff}}
1
+ @import url(https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap);strong[data-v-a9c27d52]{display:block}[data-v-6038a3d0]{will-change:height;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.expand-enter-active,.expand-leave-active{-webkit-transition:height .5s ease-in-out;transition:height .5s ease-in-out;overflow:hidden}.expand-enter,.expand-leave-to{height:0}.monsterinsights-dark[data-v-54110c18]{display:block}.monsterinsights-reset-default[data-v-54110c18]{margin-left:5px}.monsterinsights-dark[data-v-7262cc05]{display:block}.monsterinsights-admin-page .monsterinsights-floating-bar{background:#338eef;color:#fff;font-size:16px;line-height:140%;padding:16px 32px 16px 58px;text-align:left;position:relative;margin:-20px -10px 20px}.monsterinsights-admin-page .monsterinsights-floating-bar:before{content:"";width:16px;height:16px;background:url(../img/icon-info.svg) no-repeat 50%;position:absolute;left:32px;top:20px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-floating-bar{margin-top:-10px;padding-right:20px;padding-left:20px}}.monsterinsights-admin-page .monsterinsights-floating-bar a{text-decoration:underline;color:#fff}.monsterinsights-admin-page .monsterinsights-floating-bar a:focus,.monsterinsights-admin-page .monsterinsights-floating-bar a:hover{color:#fff;text-decoration:none}.monsterinsights-admin-page .monsterinsights-floating-bar .monsterinsights-floating-bar-close{padding:0;border:0;background:rgba(0,0,0,0);color:#fff;font-size:16px;position:absolute;right:15px;top:calc(50% - 5px);margin-top:-5px}.monsterinsights-admin-page .monsterinsights-slide-enter-active,.monsterinsights-admin-page .monsterinsights-slide-leave-active{-webkit-transition-duration:.5s;transition-duration:.5s}.monsterinsights-admin-page .monsterinsights-slide-enter-to,.monsterinsights-admin-page .monsterinsights-slide-leave{max-height:100px;overflow:hidden}.monsterinsights-admin-page .monsterinsights-slide-enter,.monsterinsights-admin-page .monsterinsights-slide-leave-to{overflow:hidden;max-height:0}.monsterinsights-container[data-v-102a61b0]:after{display:table;clear:both;content:""}.monsterinsights-quick-links{position:fixed;bottom:25px;right:25px;-webkit-box-shadow:0 0 10px 0 #ababab;box-shadow:0 0 10px 0 #ababab;width:60px;height:60px;border-radius:50%;background:#fff;z-index:1000;padding:5px 10px}.monsterinsights-quick-links.monsterinsights-quick-links-open,.monsterinsights-quick-links:focus,.monsterinsights-quick-links:hover{-webkit-box-shadow:0 0 15px 2px #ababab;box-shadow:0 0 15px 2px #ababab}.monsterinsights-quick-links-label{border-radius:50%;background:#fff;border:2px solid rgba(147,120,207,.21);position:absolute;left:2px;right:2px;top:2px;bottom:2px;padding:6px 6px 6px 8px;display:block;width:56px;height:56px;outline:none;cursor:pointer}.monsterinsights-quick-links-open .monsterinsights-quick-links-label .monsterinsights-quick-link-title{opacity:0;pointer-events:none}.monsterinsights-bg-img.monsterinsights-quick-links-mascot{-webkit-transform:rotate(-15deg);-ms-transform:rotate(-15deg);transform:rotate(-15deg);-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;padding-top:100%;-webkit-transition:-webkit-transform .3s ease;transition:-webkit-transform .3s ease;transition:transform .3s ease;transition:transform .3s ease,-webkit-transform .3s ease;display:block}.monsterinsights-bg-img.monsterinsights-quick-links-mascot:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFIAAABQCAMAAAC9OtKiAAAC91BMVEUAAABvS7ttSbluSrpvS7tuSrpvS7tvS7tvSrtsSLdsTLFvS7tuSrluSrpvS7tvS7ttSblvS7tpRrRvS7tvS7tvS7tvS7tvS7tgP6lhP6pvS7tvS7s0OkZvS7tvS7tvS7s5P0xnRbJsSLc2PElvS7s5P0w5P0w5P0w6P05vS7tvS7thP6lfPqc5P0wvMUFgPqg5P0xfPqcrMDk5P0xfPqcrMDlXRolqR7U5P0xfPqeUeM+ljdTT6O////9vS7t9XcI5P0xfPqfqTmQjIyOSdc1/X8OiitOkjNQyMjKYftCGZ8d4VcDsYndxTbxkQqyLbcmagdFmRLChh9N2U7+DZMZ6WMFzUL1yTr2fhdKQc80ewYX/iTrY6/GXe9CPcsx7W8H9/v6BYcUrMDqNb8uIasmdhNGcgtGVec9uSrrv9/lsSbb4/P1pRrTz+fvQ5u2Ia8fn8vfg7/SOcsqEZsTb7PJzVLY+Q1OsotugoqJESFrk8PXS5u/O4+pTT3FUXWkvLi/V4+ihsbr8+vvr9PjAw+XG2eDA09r0sbyZmZlKSmRMVGE9NV9BSFUxNETk5PTO3uzK2evEzejM4OeljNS3ydGLccJ/YcB5WruJlqDyiprweoxteINganVbZHCcRVMoKCrx8/n98PLRzeu2teClktbNzc2Xf8u0w8r0usO2t7jkvqBwYZx1folncX1LO3rdS2Dq6uq8vuO+sOGxqd2x4duY3M3ausWtvsSF18KDbrfgqbWYp7FeP6OEj5hYPpV5hpBhWoToboHtZnrLSFxzOkXs7Pf84eTW2ODY09e6zdXb1s6vwMjdtb52Vb2ss7Vs0LKKebLkxa2kqqx7aKtHyZ1pWJZkWopROonndYfoWGzrVmzQWWtFPGr5llRSUlI/Pz88MjQ4KCouJSbX39/l2tvAwb6XyL2Sf7x+Ybv0pbHfl6ZbuJfihZbig5RnqpHss4mrlomIiIjNaXfTY3PHWGiDV2bxnWTSkGRiYmKmQ1NTQVBENkBUODwEKmHaAAAAOnRSTlMA7wscTEHV+/QT/tyvt5+JXjYE4cmWVij05W9nWoV8dkA6LxGlJerYxMGofEnhx8ChkXZrJOnf0JN2dWY7XQAACrdJREFUWMOdmGVgWlcUgEnSxaVpI+187dxdHo/DI+WRAcECgbAREgKBuGuTZsvqXTvptnbd1s7bbpW5u7u7u7vrj51773s8LMuW7weFW/hy7rn3XHmqydm1MD1V8275qumSkwaZ5Umt6fsCzJiushQAsssSGsszsTVz1vSMGVngFwH2iGuckQ0ekwdmTk9ZCGb7eTaA/JiE7gng9NtEmD2tMHOywGZUq40WyMyQmmYVAmg5LiROL0wMyMnVqdXqWjfkZTDjwQAujuNMWhFKpqOcDSaOUyPVZsjLIS37AjYhLlTCvP8sSi/IYW+KwaLnOANxGsxQgvncgxoRUautiY5a0ZQTahfIK2dfhRr8da2axumGQlWZbNRrtRhmJosgH4qmUu4lT8VMKgirKWGAvdJA5ChBqoQMaZIeNJXyYPAAlKar0gG8+HOjmuEHwNFihLSIE8qwMrPBAtlTKTPB2wswu2wX8HCESqY8rx4gKCkDWgIUzTsIwBwi4f47aeCvDJsB0kgqaTIZTdhthpcaRfwGWAJcwA37TKHE/taqK70eYArsuYRJr/QbCQBAjR/9zinWEJpCMr8NvW4XMxgkZS0nIUpR1pBEmKZSIlmYsmqiqLTXUYOdTCJ91wW9UpQ2LcXkl+aTG3aZsmZC0c7WGjmk+oLW1mYAaB2wEYlIQjR5o0kAKP+3Xs8ozQMIRMcEQ60O69En0bwee+oy2fychJfmNO3gmZMMetlBWYDU6yNcpFIts9naLvmI+RnJpUwnlxkImXumUhYBZtxuwKExKuPcZNVZobndqiNYHa0iK8lQSM9WJBt+sIlOgJLUpdgniwy18jgPoAmtA+u6/KSjtui6Ieo5byjISbigIJVyJgTUiWzWIbl9XDxBLWKLywAUplLOgBppTJRMfo4xojABf5JSm3o9KgY37TTOnLpqSZmry/VzyZhwWOIa6mGvlBsiADFGOILktObquVR4/fIb9v9mmDlJLeKg2LnY0nbQn6qvOOuRxd39Z597w5AxMVyROierymzA2Oo4BlvNScJuvEzDaGjx8Z03GGKVopRTNxSnVOZBU1QZYYs5xw1RoSzt5nn+BruiDElRTrZoloAd5zZHsVOlkbuiQRNHCzrPvkpx6tkrQHpKZQFgBitpturYPKo7S5PIYnSODiXOqsl2i0Lg2PpjbEIjAY1J9PBIgjMIs1Mri8CvjuMKTQraiHJU7vsF2+5fhOw8fr9J9ltbnPFGzONkYZ5jJCnctlKIcsAx81MVuSlOGR3rpBFCruS4bSOCsHrHhRO33TZx4cWrBWH/Y5KLnK4b0QJfoklNG1V2bl4kCON3jfG8z+cjnyc2CsKB85OKvIZUj3GyIM9YvuGiizYsv5wql60SVt816uvu6OjuQWV3Sz8/MSIclpDSDLJuRPfEoUThhiqJL0+nxvFlfHcDmigtGk2Hb+lGYf/9EoucRplyuB99oEqmourxsXFh41pfWxsKGR2ktnrGLhEOmJ9Q5DTA1HOyYeuDVW9t2vQzKive2C6sWtrf0OHjZdo0hIVrx4UjE4q8WlEu1CTy9PsnI+9vqqh4SBC2+Bo6eIUGzeUb3qxa3vPEoLB3fJE3KcqeJGXDeycTLt1U8bBwH9/Rxseg0VxUgWz1XSgcGKvMB7ui9GmS+J0YT1uw4A9hcGlPQz+v4NNcXkF4feHYSFyYpWBUlJ1tScp3aZALFvwlbOfbFvMx9EvKn1YM3yOcGHeH4BTl2d2Ki1Xm41KQC9YIE/0Nvlhlj9TxO6++5kXhsNjrJvQqynN4JcytxHn9u9SICMLa7hY+FhzLj39848HlWK6jq4X5scouRbmE70cRY8NFy7f+8J5svFRYxbf0xCmxR9cMn8HKdWNMMovToE9R3oTdkZ1f4ARnvWbKS3gyJW++/ZZOSblYc/2KqzUU/mJh96gx2wNaRXlVJ2a9TSodVP5NRoZymrCDx34/d8opp7wsOVtokEy5PaosT3P3gjl6CmwKL6FJYtIHq6rewhAlJUbZzd98CuF2qR5JkIlRpmdagpzFIhm9ASeA7Uo65RYubmlZ/iaWzAfM+OEmYZzv4W+hyuckZTTINv4SOZeFEMIdXi7yWtwqTR7oPYeX+AZnyHUPf4DChx+6Thgc80lRfvvsMp4//YVrv5eD7OBHhP2k5dcWwXOIrDyPHgxEEGXn6Q+gE63Xkdc/hadw+/mK5PK24RXDn7xz6qmnXruQjWX3E8L+7FqcZya7bT0r8ujaboOuUdn5dUWUX7DE+S0rPiUj3nn+i7+dSjidX0ykWORHSjPSTg4FYmyRM+cQL3Pr60z4wNNbhNVrl654lpf4lSqfxLR3aFo6V7FUzpqtxX6Sk2ed5DJ5r6L/itpRPspjt955562P4XFjpXDh8PCY3PydFCWy0HeXcADLJInOgAcx0DNjNYQ1Z9xYiW88S/hEzrW/JKweXsrLfERzyVOWjkhTqMCJ41GJpyawSan0WB7R2O2k6/bOeOHZ5KSxSNgYDZKOOHabMHqJtFzmZPmJJ8IFozt5F0TOEg0YpsFlv+mcmAhvqqOHjBFhRyefzH3CYO4+7ExQy5ReECWlwQmmXpKBaj2etA1DVy4599wlVw41cRJ3DAo71iYKxy4WBp8X0zJQua+TavDvKxUZdkM9nVEk0rAxwskozlVPxRvPH0cjBlNA7o0hWemxqKNOM1j6jJXoNLCCSnTieejiLTHC7YKw8jOigWI8EkSYklWkjMFkAbA4zZbeRCVD/+ogHmHumTh/2bLzJ+4ZFwTh/iYD+aKlFKdQk6yskbddfSXefqqD9R6AmurUShyk+1EaZU3jK45cdIbrM1W7Ais/rEitXJFdXecZw8RlUK74KdC/9OrbIyMjKxctWtPYeKa1uXW9ujISyFKVOllHMcqAvEcawWQIRyJ1RruiTI0lwCGbiREArGE75wJVAZ05dg4xRffIPnAGmwzVGP8USo/IIZGVa+5ubXdYdXg9FLNUJSY1rR0kpOyRxq6uCAqnVJrNHGFb42s6wjockBJVni2qDILZz9XZw7XVBgPxTa7U671BW8hkcpnJI6qugdy77yVOjFJvKVKl0cjC0v0yBo+7pkYrii6CyVVjpjidbrfHAjFgz9c3Q7N155qd1mZHMADlqqwutlTQ6vWboGCP0vws8FgsMDkWC2pLSov23HXmvhDk1rW363Rvn+kAaM61FJJjZT1WiXzX08OueOCy1Gtl6hEn7DZvXraHvNVGcaflsI3QE/TrEDKJ8JHFbGydC81gcentvXpZWQyiKyBqFczkYVCaW6sgBlwuzx7sQJ5nca3T6e49U0chK9ERYLW2y/2xACrzzfIY6P1JyhC2chRXWjpbHPPBXb/+lcYz70bjnFnYcghGOxfA6nCcUNDe3tp6SE5WSBnZJKVNuehDmfwgFZPf2ti4Zue9c06igc/RHXVUayv+gWNnzdU52g8tA/9USoa7ULk7FM84vBE5mn08dBfVPg6Hbs6hKtW8udY56Rl5Tu9/UdZnYavC7kwZ5Yg5+cfSvBwyE+PO9AQG+jjvgCO3L0nZN2DN7eJsA+vM2fFPH+Yf13i4fMKiqvT459aOdt2Ao7lZpxuoQZxU6SFvn7Hq2sGxXudonVuu+h/MmosrgM6B2dDpgECVQMAmq4O+WCd9vPoPhumB3HmlMigAAAAASUVORK5CYII=)}.monsterinsights-quick-links-open .monsterinsights-bg-img.monsterinsights-quick-links-mascot{-webkit-transform:rotate(15deg);-ms-transform:rotate(15deg);transform:rotate(15deg)}.monsterinsights-quick-links-menu{position:absolute;bottom:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse;right:6px;margin-bottom:10px}.monsterinsights-quick-links-menu .monsterinsights-quick-links-menu-item{display:block;width:48px;height:48px;background:#509fe2;border-radius:50%;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);-webkit-transition:-webkit-transform .2s;transition:-webkit-transform .2s;transition:transform .2s;transition:transform .2s,-webkit-transform .2s;position:relative;-webkit-box-shadow:0 0 10px 0 #ababab;box-shadow:0 0 10px 0 #ababab;margin-bottom:6px;color:#fff;text-decoration:none;text-align:center;font-size:18px;line-height:48px}.monsterinsights-quick-links-menu .monsterinsights-quick-links-menu-item:hover{color:#fff;background:#50abee;-webkit-box-shadow:0 0 15px 2px #ababab;box-shadow:0 0 15px 2px #ababab}.monsterinsights-quick-links-menu .monsterinsights-quick-links-menu-item.monsterinsights-show{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.monsterinsights-quick-links-menu .monsterinsights-quick-links-menu-item.monsterinsights-quick-links-item-upgrade{background:#704cbc}.monsterinsights-quick-links-menu .monsterinsights-quick-links-menu-item.monsterinsights-quick-links-item-upgrade:hover{background:#509fe2}.monsterinsights-quick-link-title{position:absolute;right:100%;margin-right:10px;font-size:13px;color:#fff;background:#595959;border-radius:5px;white-space:nowrap;padding:6px 8px;display:block;top:50%;margin-top:-12px;line-height:1;-webkit-transition:opacity .2s ease;transition:opacity .2s ease;outline:none}@font-face{font-family:Lato;src:url(../fonts/lato-regular-webfont.woff) format("woff"),url(../fonts/lato-regular-webfont.woff2) format("woff2");font-weight:400;font-style:normal}@font-face{font-family:Lato;src:url(../fonts/lato-bold-webfont.woff) format("woff"),url(../fonts/lato-bold-webfont.woff2) format("woff2");font-weight:700;font-style:normal}@font-face{font-family:text-security-disc;src:url(data:font/woff2;base64,d09GMgABAAAAAAjoAAsAAAAAMGgAAAidAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHFQGVgDWYgpQdQE2AiQDCAsGAAQgBYUOBy4bvi8lYxtWw7BxAPB87x5FmeAMlf3/96RzDN74RcXUcjTKmrJ3T2VDSShiPhfiIJxxS7DiLkHFfQV33CM4427mAred74pWur/J3dyVsKy7coREA8fzvPvpfUk+tB3R8YTCzE0SCLepejmJ2u1yqp+kC7W4Rc/tDTs3GpNJ8ttRPOSTPhsXlwbi4kVYWQmAcXmlrqYHMMsBwP/zHMz7fkF1gijOKuFQIxjwlGa2lkARhYaBxFHT54IOgBMQADi3LipIMAA3geO41EUkBTCO2gkxnOwnKYBx1E6p5WS+QUCMq50rNch6MwUCAAiAcdgttYVSIfPJ5kn6ApRFQ6I88BxLvvIC/maHUHS3TIoKiwLbbM8nEFWgE1oDz3woSxpagWbBXcQWhKtPeIlg6tK+7vX57QOszwU3sGUJrA7h2Mx1IWCNr9BKxsYo+pzS/OCO0OG9mwBkx337+lcuSxRdBcc+fJxlcAjK/zCfdgtBzuxQcTqfY4Yn6EB/Az3JS/RMu5f6B8wrn55S0IxdlLn+4Yb/ctIT+ocWYPcGAOvxSjEjpSiVMqSgFWVjzpCCXjAIRirTABpEQ2gYjaBRNIbG0QSaRFNoGs2gWTSH5tECWkRLaBmtoFW0htbRBtpEW2gb7aBdtIf20QE6REdFDlkZEh2jE3SKztA5ukCX6Apdoxt0i+7QPXpAj+gJPaMX9Ire0Dv6QJ/oC/qKvqHv6Af6iX6h3+gP+ov+of+I+ECMxETMiDmxIJbEilgTG2JL7Ig9cSCOxIk4ExfiStyIO/EgnsSLeBMf4kv8iD/taQANoiE0jEbQKBpD42gCTaIpNI1m0CyaQ/NoAS2iJbSMVtAqWkPraANtoi20jXbQLtpD++gAHaIjdIxO0Ck6Q+foAl2iK3SNbtAtukP36AE9oif0jF7QK3pD79B79AF9RJ/QZ/QFfUXf0Hf0A/1Ev9Bv9Af9Rf/Qf9DQABpEQ2gYjaBRNIbG0QSaRFNoGs2gWTSH5tECWkRLaBmtoFW0htbRBtpEW2gb7aBdtIf20QE6REfoGJ2gU3SGztEFukRX6BrdoFt0h+7RA3pET+gZvaBX9Aa9Re/Qe/QBfUSf0Gf0BX1F39B39AP9RL/Qb/QH/UX/0P8l9vq9gXwDIUCliyAhRAgTIoQoIUaIExKEJCFFSBMyhCwhR8gTCoQioUQoEyqEKqFGqBMahCahRWgTOoQuoUfoEwaEIWFEGBMmhClhRpgTFoQlYUVYEzaELWFH2BMOhGPCCeGUcEY4J1wQLglXhGvCDeGWcEe4JzwQHglPhGfCC+GV8EZ4J3wQPglfhG/CD+GX8Ef4p9sdgoQQIUyIEKKEGCFOSBCShBQhTcgQsoQcIU8oEIqEEqFMqBCqhBqhTmgkNBGaCS2EVkIboZ3QQegkdBG6CT2EXkIfoZ8wQBgkDBGGCSOEUcIYYZwwQZgkTBGmCTOEWcIcYZ6wQFgkLBGWCSuEVcIaYZ2wQdgkbBG2CTuEXcIeYZ9wQDgkHBGOCSeEU8IZ4ZxwQbgkXBGuCTeEW8Id4Z7wQHgkPBGeCS+EV8Ib4Z3wQfgkfBG+CT+EX8If4Z8AZpAQIoQJEUKUECPECQlCkpAipAkZQpaQI+QJBUKRUCKUCRVClVAj1AkNQpPQIrQJHUKX0CP0CQPCkDAijAkTwpQwI8wJC8KSsCKsCRvClrAj7AkHwpFwIpwJF8IV4ZpwQ7gl3BHuCQ+ER8IT4ZnwQnglvBHeCR+ET8IX4ZvwQ/gl/BH+lzv+AmMkTYAmSBOiCdNEaKI0MZo4TYImSZOiSdNkaLI0OZo8TYGmSFOiKdNUaKo0NZo6TYOmSdOiadN0aLo0PZo+zYBmSDOiGdNMaKY0M5o5zYJmSbOiWdNsaLY0O5o9zYHmmOaE5pTmjOac5oLmkuaK5prmhuaW5o7mnuaB5pHmieaZ5oXmleaN5p3mg+aT5ovmm+aH5pfmj2ZRAqCCoEKgwqAioKKgYqDioBKgkqBSoNKgMqCyoHKg8qAKoIqgSqDKoCqgqqBqoOqgGkE1gWoG1QKqFVQbqHZQHaA6QXWB6gbVA6oXVB+oflADoAZBDYH+uxaEWDBiIYiFIhaGWDhiEYhFIhaFWDRiMYjFIhaHWDxiCYglIpaEWDJiKYilIpaGWDpiGYhlIpaFWDZiOYjlIpaHWD5iBYgVIlaEWDFiJYiVIlaGWDliFYhVIlaFWDViNYjVIlaHWD1iDYg1ItaEWDNiLYi1ItaGWDtiHYh1ItaFWDdiPYj1ItaHWD9iA4gNIjaE2DBiI4iNIjaG2DhiE4hNIjaF2DRiM4jNIjaH2DxiC4gtIraE2DJiK4itIraG2DpiG4htIraF2DZiO4jtIraH2D5iB4gdInaE2DFiJ4idInaG2DliF4hdInaF2DViN4jdInaH2D1iD4g9IvaE2DNiL4i9IvaG2DvE3iP2AbGPiH1C7DNiXxD7itg3xL4j9gOxn4j9Quw3Yn8Q+4vYP8T+M6cIDBz9EXfeUHR1JyygPL/++I3R1cRvdDr+E12Jfh3Q0EN/fHn2mXptpJxUkIqu/Cs2egM33OjSLcT33I82+B9nP37X/c0W52623s45CYCo03QIBCVrAFAycnSYSqvO4YJt/NP73YqA/giNZhJ6sBbmql+0SQZaxNOZudJbc2nqxNvpM+veq7Sz2LUgFEu+VLs+Ay3yp7MVertp6i23v2Rmv5gmHDhSQ6t5GmTaqTsqhpWwmbOk3uKJrNOmwSSMC17jghqygilDOUU3KlLmHHNrajw3DVNVGWytGZDisM/cbkdRnvfIUJkaGJlgAYcoQ5bGptTmGc1R7pBC3XhFsLXnXR54qrMc+dGNBkqE4laBi4KmZYGom8vIy0lTyBkppBjLoTndMmrofIRORirsNlCbXzCgulmo36KztS2iV8rrNoRUL5VdkMSGoSXroC1KOQAA) format("woff2"),url(data:font/woff;base64,d09GRgABAAAAAAusAAsAAAAAMGgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPgAAAFZjRmM5Y21hcAAAAYQAAAgCAAArYmjjYVVnbHlmAAAJiAAAAEEAAABQiOYj2mhlYWQAAAnMAAAALgAAADYR8XmmaGhlYQAACfwAAAAcAAAAJAqNAyNobXR4AAAKGAAAAAgAAAAIAyAAAGxvY2EAAAogAAAABgAAAAYAKAAAbWF4cAAACigAAAAeAAAAIAEOACJuYW1lAAAKSAAAAUIAAAKOcN63t3Bvc3QAAAuMAAAAHQAAAC5lhHRpeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGScwDiBgZWBgSGVtYKBgVECQjMfYEhiYmFgYGJgZWbACgLSXFMYHIAq/rNfAHK3gEmgASACAIekCT4AAHic7dhl0zDVmUXh5+XFHYK7E0IguFtwt4QQgmtwd3d3d7cED+4SXIO7u7vbsNfaUzU1fyGcu66u1adOf+6uHhgYGGpgYGDwL37/iyEHBoZZcWDQLzUw9NK/7A5if/DA8OwPOfQknBky+0P8/PPPOcd1UJ785frr/Dq/zq/z6/w3zsCgoX/xX74GRsxbcYpRB1iDB/7PGvT/DFGDenBwe8hKD1XpoSs9TKWHrfRwlR6+0iNUesRKj1TpkSs9SqVHrfRolR690r+p9BiVHrPSY1V67EqPU+lxKz1epcev9ASVnrDSE1V64kpPUulJKz1ZpSev9BSVnrLSU1V66kr/ttLTVPp3lZ62/KJSerpKT1/pP1R6hkrPWOmZKj1zpWep9KyVnq3Ss1d6jkrPWem5Kj13peep9LyVnq/S81d6gUr/sdILVnqhSi9c6UUqvWilF6v04pVeotJLVnqpSi9d6WUqvWyll6v08pVeodIrVvpPlf5zpVeq9F8qvXKl/1rpVSr9t0qvWunVKr16pdeo9JqVXqvSa1d6nUqvW+n1Kr1+pTeo9N8rvWGlN6r0xpXepNKbVnqzSm9e6S0qvWWlt6r01pXeptLbVnq7Sm9f6R0qvWOld6r0zpXepdK7Vnq3Su9e6T0qvWel96r03pXep9L7Vnq/Su9f6QMqfWClD6r0wZU+pNKHVvqwSh9e6SMqfWSlj6r00ZU+ptLHVvq4Sh9f6RMqfWKlT6r0yZU+pdKnVvq0Sp9e6TMqfWalz6r02ZU+p9LnVvq8Sp9f6QsqfWGl/1Hpf1b6okpfXOlLKn1ppS+r9OWVvqLS/6r0lZW+qtJXV/qaSl9b6esqfX2lb6j0jZW+qdI3V/qWSt9a6dsqfXul76j0vyt9Z6XvqvTdlb6n0vdW+r5K31/pByr9YKUfqvTDlX6k0v+p9KOVfqzSj1f6iUo/WemnKv10pZ+p9LOVfq7Sz1f6hUq/WOmXKv1ypV+p9KuVfq3Sr1f6jUq/Wem3Kv12pd+p9LuVfq/S71f6g0p/WOmPKv1xpT+p9KeV/qzSn1f6i0p/WemvKv11pb+p9LeV/q7S31f6h0r/WOmfKv1zDfI26KKHED1Y9JCihxI9tOhhRA8rejjRw4seQfSIokcSPbLoUUSPKno00aOL/o3oMUSPKXos0WOLHkf0uKLHEz2+6AlETyh6ItETi55E9KSiJxM9uegpRE8peirRU4v+rehpRP9O9LSify96OtHTi/6D6BlEzyh6JtEzi55F9KyiZxM9u+g5RM8pei7Rc4ueR/S8oucTPb/oBUT/UfSCohcSvbDoRUQvKnox0YuLXkL0kqKXEr206GVELyt6OdHLi15B9Iqi/yT6z6JXEv0X0SuL/qvoVUT/TfSqolcTvbroNUSvKXot0WuLXkf0uqLXE72+6A1E/130hqI3Er2x6E1Ebyp6M9Gbi95C9JaitxK9tehtRG8rejvR24veQfSOoncSvbPoXUTvKno30buL3kP0nqL3Er236H1E7yt6P9H7iz5A9IGiDxJ9sOhDRB8q+jDRh4s+QvSRoo8SfbToY0QfK/o40ceLPkH0iaJPEn2y6FNEnyr6NNGniz5D9JmizxJ9tuhzRJ8r+jzR54u+QPSFov8h+p+iLxJ9sehLRF8q+jLRl4u+QvS/RF8p+irRV4u+RvS1oq8Tfb3oG0TfKPom0TeLvkX0raJvE3276DtE/1v0naLvEn236HtE3yv6PtH3i35A9IOiHxL9sOhHRP9H9KOiHxP9uOgnRD8p+inRT4t+RvSzop8T/bzoF0S/KPol0S+LfkX0q6JfE/266DdEvyn6LdFvi35H9Lui3xP9vugPRH8o+iPRH4v+RPSnoj8T/bnoL0R/Kfor0V+L/kb0t6K/E/296B9E/yj6J9E/K/2/v/npoocQPVj0kKKHEj206GFEDyt6ONHDix5B9IiiRxI9suhRRI8qejTRo4v+jegxRI8peizRY4seR/S4oscTPb7oCURPKHoi0ROLnkT0pKInEz256ClETyl6KtFTi/6t6GlE/070tKJ/L3o60dOL/oPoGUTPKHom0TOLnkX0rKJnEz276DlEzyl6LtFzi55H9Lyi5xM9v+gFRP9R9IKiFxK9sOhFRC8qejHRi4teQvSSopcSvbToZUQvK3o50cuLXkH0iqL/JPrPolcS/RfRK4v+q+hVRP9N9KqiVxO9uug1RK8pei3Ra4teR/S6otcTvb7oDUT/XfSGojcSvbHoTURvKnoz0ZuL3kL0lqK3Er216G1Ebyt6O9Hbi95B9I6idxK9s+hdRO8qejfRu4veQ/SeovcSvbfofUTvK3o/0fuLPkD0gaIPEn2w6ENEHyr6MNGHiz5C9JGijxJ9tOhjRB8r+jjRx4s+QfSJok8SfbLoU0SfKvo00aeLPkP0maLPEn226HNEnyv6PNHni75A9IWi/yH6n6IvEn2x6EtEXyr6MtGXi75C9L9EXyn6KtFXi75G9LWirxN9vegbRN8o+ibRN4u+RfStom8TfbvoO0T/W/Sdou8Sfbfoe0TfK/o+0feLfkD0g6IfEv2w6EdE/0f0o6IfE/246CdEPyn6KdFPi35G9LOinxP9vOgXRL8o+iXRL4t+RfSrol8T/broN0S/Kfot0W+Lfkf0u6LfE/2+6A9Efyj6I9Efi/5E9KeiPxP9uegvRH8p+ivRX4v+RvS3or8T/b3oH0T/KPon0T9rYND/AOaSEScAAHicY2BiAAKmPSy+QEqUgYFRUURcTFzMyNzM3MxEXU1dTYmdjZ2NccK/K5oaLm6L3Fw0NOEMZoVAFD6IAQD4PA9iAAAAeJxjYGRgYADilrme/fH8Nl8ZuNkvAEUYbnDPcEOmmfaw+AIpDgYmEA8AHMMJGAAAeJxjYGRgYL/AAATMCiCSaQ8DIwMqYAIAK/QBvQAAAAADIAAAAAAAAAAoAAB4nGNgZGBgYGIQA2IGMIuBgQsIGRj+g/kMAArUATEAAHicjY69TsMwFIWP+4doJYSKhMTmoUJIqOnPWIm1ZWDq0IEtTZw2VRpHjlu1D8A7MPMczAw8DM/AifFEl9qS9d1zzr3XAK7xBYHqCHTdW50aLlj9cZ1057lBfvTcRAdPnlvUnz23mXj13MEN3jhBNC6p9PDuuYYrfHquU//23CD/eG7iVnQ9t9ATD57bWIgXzx3ciw+rDrZfqmhnUnvsx2kZzdVql4Xm1DhVFsqUqc7lKBiemjOVKxNaFcvlUZb71djaRCZGb+VU51ZlmZaF0RsV2WBtbTEZDBKvB5HewkLhwLePkhRhB4OU9ZFKTCqpzems6GQI6Z7TcU5mQceQUmjkkBghwPCszhmd3HWHLh+ze8mEpLvnT8dULRLWCTMaW9LUbanSGa+mUjhv47ZY7l67rgITDHiTf/mAKU76BTuXfk8AAHicY2BigAARBuyAiZGJkZmBJSWzOJmBAQALQwHHAAAA) format("woff"),url(../fonts/text-security-disc.ttf) format("truetype")}@font-face{font-family:Misettings;src:url(../fonts/icons.woff2) format("woff2"),url(../fonts/icons.woff) format("woff"),url(../fonts/icons.ttf) format("truetype"),url(../fonts/icons.otf) format("opentype");font-weight:400;font-style:normal}[class*=monstericon-]:before,body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before,body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before,body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.monstericon-times-circle:before{content:"\f01b"}.monstericon-times:before{content:"\f021"}.monstericon-info-circle-regular:before{content:"\f01e"}.monstericon-arrow{-webkit-transition:-webkit-transform .5s ease;transition:-webkit-transform .5s ease;transition:transform .5s ease;transition:transform .5s ease,-webkit-transform .5s ease;-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg);display:inline-block}.monstericon-arrow.monstericon-down{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0)}.monstericon-arrow:before{content:"\f01f"}.monstericon-check:before{content:"\f015"}.monstericon-warning-triangle:before{content:"\f020"}.monstericon-star:before{content:"\f025"}.monstericon-files:before{content:"\f028"}.monstericon-search:before{content:"\f029"}.monstericon-user:before{content:"\f02a"}.monstericon-eye:before{content:"\f02b"}.monstericon-cog:before{content:"\f02c"}.monstericon-expand:before{content:"\f02d"}.monstericon-compress:before{content:"\f02f"}.monstericon-life-ring:before{content:"\f030"}.monstericon-wpbeginner:before{content:"\f031"}.monstericon-lightbulb:before{content:"\f032"}.monstericon-shopping-cart:before{content:"\f033"}.monstericon-calendar-alt:before{content:"\f04e"}.monstericon-long-arrow-right-light:before{content:"\f06a"}.monstericon-download:before{content:"\0046"}@media (max-width:782px){.monsterinsights-notices-area{margin-left:10px;margin-right:10px}}.monsterinsights-notice{position:relative;color:#444}.monsterinsights-notice .monsterinsights-notice-inner{margin-top:25px;padding:20px;background:#fff;border-left:3px solid;line-height:1.5;font-size:14px}.monsterinsights-notice .monsterinsights-notice-inner .notice-title{color:#393f4c;font-weight:700;display:block;margin:0 0 6px;padding:0}@media (max-width:782px){.monsterinsights-notice .monsterinsights-notice-inner{padding:10px}}.monsterinsights-notice.monsterinsights-notice-error .monsterinsights-notice-inner{border-left-color:#ea4e64}.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-notice-inner{border-left-color:#f5c953}.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-notice-inner{border-left-color:#509fe2}.monsterinsights-notice.monsterinsights-notice-info-xl .monsterinsights-notice-inner{border:1px solid #509fe2;border-left-width:3px;color:#777}.monsterinsights-notice.monsterinsights-notice-info-xl .monsterinsights-notice-inner .monsterinsights-button{color:#fff;margin:15px 0 0}.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-notice-inner{border-left-color:#5cc0a5}.monsterinsights-notice .notice-content{margin-right:20px}.monsterinsights-notice .notice-content a{color:#444}.monsterinsights-notice .dismiss-notice{border:none;background:none;padding:0;margin:0;display:inline-block;cursor:pointer;color:#acbdc9;position:relative;float:right}.monsterinsights-notice .dismiss-notice:focus,.monsterinsights-notice .dismiss-notice:hover{color:#444}.monsterinsights-notice.monsterinsights-notice-info .notice-content,.monsterinsights-notice.monsterinsights-notice-success .notice-content,.monsterinsights-notice.monsterinsights-notice-warning .notice-content{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:425px){.monsterinsights-notice.monsterinsights-notice-info .notice-content,.monsterinsights-notice.monsterinsights-notice-success .notice-content,.monsterinsights-notice.monsterinsights-notice-warning .notice-content{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}}.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-notice-button{-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;margin-right:-20px;margin-left:auto}@media (max-width:782px){.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-notice-button{margin-left:0}}.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-button{margin-top:0;padding:10px 16px 8px;line-height:1;font-size:14px;font-weight:600}@media (max-width:782px){.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-button{margin-top:10px;margin-left:0}}.monsterinsights-notice.monsterinsights-notice-error .monsterinsights-button{margin-top:10px;margin-left:0;color:#fff}body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-end,body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-right{top:32px}@media screen and (max-width:767px){body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-end,body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-right{top:42px;right:auto;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast{border-radius:0;padding:9px;border-left:3px solid #fff}@media screen and (max-width:767px){body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast{width:80vw}}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast.mi-success{border-left-color:#5cc0a5}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast.mi-info{border-left-color:#509fe2}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast.mi-error{border-left-color:#ea4e64}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-title{color:#393f4c;font-size:13px;font-weight:400}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-close{font-size:15px;width:10px;height:10px;line-height:10px}@media screen and (max-width:767px){body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-close{padding:9px;line-height:0}}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon{width:14px;height:14px;min-width:14px;margin:0;border:0}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info{border:none;position:relative}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before{content:"\f01e";position:absolute;top:-1px;left:0;color:#509fe2;line-height:1}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info .swal2-icon-text{display:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error{border:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before{content:"\f023";position:absolute;top:-1px;left:0;color:#ea4e64;line-height:1}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error .swal2-x-mark *{display:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon [class^=-ring]{width:14px;height:14px;top:0;left:0}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:14px;height:14px;top:0;left:0;border:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring:before{content:"\f027";position:absolute;top:-1px;left:0;color:#5cc0a5;line-height:1}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success [class^=swal2-success-line]{display:none}@-webkit-keyframes swal2-show{0%{-webkit-transform:scale(.7);transform:scale(.7)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes swal2-show{0%{-webkit-transform:scale(.7);transform:scale(.7)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}to{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes swal2-hide{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}to{-webkit-transform:scale(.5);transform:scale(.5);opacity:0}}@keyframes swal2-hide{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}to{-webkit-transform:scale(.5);transform:scale(.5);opacity:0}}@-webkit-keyframes swal2-animate-success-line-tip{0%{top:1.1875em;left:.0625em;width:0}54%{top:1.0625em;left:.125em;width:0}70%{top:2.1875em;left:-.375em;width:3.125em}84%{top:3em;left:1.3125em;width:1.0625em}to{top:2.8125em;left:.875em;width:1.5625em}}@keyframes swal2-animate-success-line-tip{0%{top:1.1875em;left:.0625em;width:0}54%{top:1.0625em;left:.125em;width:0}70%{top:2.1875em;left:-.375em;width:3.125em}84%{top:3em;left:1.3125em;width:1.0625em}to{top:2.8125em;left:.875em;width:1.5625em}}@-webkit-keyframes swal2-animate-success-line-long{0%{top:3.375em;right:2.875em;width:0}65%{top:3.375em;right:2.875em;width:0}84%{top:2.1875em;right:0;width:3.4375em}to{top:2.375em;right:.5em;width:2.9375em}}@keyframes swal2-animate-success-line-long{0%{top:3.375em;right:2.875em;width:0}65%{top:3.375em;right:2.875em;width:0}84%{top:2.1875em;right:0;width:3.4375em}to{top:2.375em;right:.5em;width:2.9375em}}@-webkit-keyframes swal2-rotate-success-circular-line{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}5%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}12%{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}to{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}}@keyframes swal2-rotate-success-circular-line{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}5%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}12%{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}to{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}}@-webkit-keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}@-webkit-keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}}@keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}}.monsterinsights_page body.swal2-toast-shown .swal2-container,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-shown{background-color:rgba(0,0,0,0)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top{top:0;right:auto;bottom:auto;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-end,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-right{top:0;right:0;bottom:auto;left:auto}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-left,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-start{top:0;right:auto;bottom:auto;left:0}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center-left,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center-start{top:50%;right:auto;bottom:auto;left:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center{top:50%;right:auto;bottom:auto;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center-end,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center-right{top:50%;right:0;bottom:auto;left:auto;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-left,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-start{top:auto;right:auto;bottom:0;left:0}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom{top:auto;right:auto;bottom:0;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-end,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-right{top:auto;right:0;bottom:0;left:auto}.monsterinsights_page body.swal2-toast-column .swal2-toast{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-actions{-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-item-align:stretch;align-self:stretch;height:2.2em;margin-top:.3125em}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-loading{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-input{height:2em;margin:.3125em auto;font-size:1em}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-validation-message{font-size:1em}.monsterinsights_page .swal2-popup.swal2-toast{-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:auto;padding:.625em;-webkit-box-shadow:0 0 .625em #d9d9d9;box-shadow:0 0 .625em #d9d9d9;overflow-y:hidden}.monsterinsights_page .swal2-popup.swal2-toast,.monsterinsights_page .swal2-popup.swal2-toast .swal2-header{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.monsterinsights_page .swal2-popup.swal2-toast .swal2-title{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;margin:0 .6em;font-size:1em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-footer{margin:.5em 0 0;padding:.5em 0 0;font-size:.8em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-close{position:static;width:.8em;height:.8em;line-height:.8}.monsterinsights_page .swal2-popup.swal2-toast .swal2-content{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;font-size:1em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon{width:2em;min-width:2em;height:2em;margin:0}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon-text{font-size:2em;font-weight:700;line-height:1em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:2em;height:2em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line]{top:.875em;width:1.375em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:.3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:.3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-actions{height:auto;margin:0 .3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-styled{margin:0 .3125em;padding:.3125em .625em;font-size:1em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-styled:focus{-webkit-box-shadow:0 0 0 .0625em #fff,0 0 0 .125em rgba(50,100,150,.4);box-shadow:0 0 0 .0625em #fff,0 0 0 .125em rgba(50,100,150,.4)}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success{border-color:#a5dc86}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line]{position:absolute;width:2em;height:2.8125em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);border-radius:50%}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.25em;left:-.9375em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:2em 2em;-ms-transform-origin:2em 2em;transform-origin:2em 2em;border-radius:4em 0 0 4em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.25em;left:.9375em;-webkit-transform-origin:0 2em;-ms-transform-origin:0 2em;transform-origin:0 2em;border-radius:0 4em 4em 0}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success .swal2-success-ring{width:2em;height:2em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success .swal2-success-fix{top:0;left:.4375em;width:.4375em;height:2.6875em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line]{height:.3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip]{top:1.125em;left:.1875em;width:.75em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long]{top:.9375em;right:.1875em;width:1.375em}.monsterinsights_page .swal2-popup.swal2-toast.swal2-show{-webkit-animation:showSweetToast .5s;animation:showSweetToast .5s}.monsterinsights_page .swal2-popup.swal2-toast.swal2-hide{-webkit-animation:hideSweetToast .2s forwards;animation:hideSweetToast .2s forwards}.monsterinsights_page .swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:animate-toast-success-tip .75s;animation:animate-toast-success-tip .75s}.monsterinsights_page .swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:animate-toast-success-long .75s;animation:animate-toast-success-long .75s}@-webkit-keyframes showSweetToast{0%{-webkit-transform:translateY(-.625em) rotate(2deg);transform:translateY(-.625em) rotate(2deg);opacity:0}33%{-webkit-transform:translateY(0) rotate(-2deg);transform:translateY(0) rotate(-2deg);opacity:.5}66%{-webkit-transform:translateY(.3125em) rotate(2deg);transform:translateY(.3125em) rotate(2deg);opacity:.7}to{-webkit-transform:translateY(0) rotate(0);transform:translateY(0) rotate(0);opacity:1}}@keyframes showSweetToast{0%{-webkit-transform:translateY(-.625em) rotate(2deg);transform:translateY(-.625em) rotate(2deg);opacity:0}33%{-webkit-transform:translateY(0) rotate(-2deg);transform:translateY(0) rotate(-2deg);opacity:.5}66%{-webkit-transform:translateY(.3125em) rotate(2deg);transform:translateY(.3125em) rotate(2deg);opacity:.7}to{-webkit-transform:translateY(0) rotate(0);transform:translateY(0) rotate(0);opacity:1}}@-webkit-keyframes hideSweetToast{0%{opacity:1}33%{opacity:.5}to{-webkit-transform:rotate(1deg);transform:rotate(1deg);opacity:0}}@keyframes hideSweetToast{0%{opacity:1}33%{opacity:.5}to{-webkit-transform:rotate(1deg);transform:rotate(1deg);opacity:0}}@-webkit-keyframes animate-toast-success-tip{0%{top:.5625em;left:.0625em;width:0}54%{top:.125em;left:.125em;width:0}70%{top:.625em;left:-.25em;width:1.625em}84%{top:1.0625em;left:.75em;width:.5em}to{top:1.125em;left:.1875em;width:.75em}}@keyframes animate-toast-success-tip{0%{top:.5625em;left:.0625em;width:0}54%{top:.125em;left:.125em;width:0}70%{top:.625em;left:-.25em;width:1.625em}84%{top:1.0625em;left:.75em;width:.5em}to{top:1.125em;left:.1875em;width:.75em}}@-webkit-keyframes animate-toast-success-long{0%{top:1.625em;right:1.375em;width:0}65%{top:1.25em;right:.9375em;width:0}84%{top:.9375em;right:0;width:1.125em}to{top:.9375em;right:.1875em;width:1.375em}}@keyframes animate-toast-success-long{0%{top:1.625em;right:1.375em;width:0}65%{top:1.25em;right:.9375em;width:0}84%{top:.9375em;right:0;width:1.125em}to{top:.9375em;right:.1875em;width:1.375em}}.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow:hidden}.monsterinsights_page body.swal2-height-auto{height:auto!important}.monsterinsights_page body.swal2-no-backdrop .swal2-shown{top:auto;right:auto;bottom:auto;left:auto;background-color:rgba(0,0,0,0)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown>.swal2-modal{-webkit-box-shadow:0 0 10px rgba(0,0,0,.4);box-shadow:0 0 10px rgba(0,0,0,.4)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top{top:0;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-left,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-start{top:0;left:0}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-end,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-right{top:0;right:0}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center{top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center-left,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center-start{top:50%;left:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center-end,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center-right{top:50%;right:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom{bottom:0;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-left,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-start{bottom:0;left:0}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-end,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-right{right:0;bottom:0}.monsterinsights_page .swal2-container{display:-webkit-box;display:-ms-flexbox;display:flex;position:fixed;top:0;right:0;bottom:0;left:0;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:10px;background-color:rgba(0,0,0,0);z-index:1060;overflow-x:hidden;-webkit-overflow-scrolling:touch}.monsterinsights_page .swal2-container.swal2-top{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.monsterinsights_page .swal2-container.swal2-top-left,.monsterinsights_page .swal2-container.swal2-top-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.monsterinsights_page .swal2-container.swal2-top-end,.monsterinsights_page .swal2-container.swal2-top-right{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.monsterinsights_page .swal2-container.swal2-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights_page .swal2-container.swal2-center-left,.monsterinsights_page .swal2-container.swal2-center-start{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.monsterinsights_page .swal2-container.swal2-center-end,.monsterinsights_page .swal2-container.swal2-center-right{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.monsterinsights_page .swal2-container.swal2-bottom{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.monsterinsights_page .swal2-container.swal2-bottom-left,.monsterinsights_page .swal2-container.swal2-bottom-start{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.monsterinsights_page .swal2-container.swal2-bottom-end,.monsterinsights_page .swal2-container.swal2-bottom-right{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.monsterinsights_page .swal2-container.swal2-grow-fullscreen>.swal2-modal{-ms-flex:1;flex:1;-ms-flex-item-align:stretch;align-self:stretch;-ms-flex-pack:center}.monsterinsights_page .swal2-container.swal2-grow-fullscreen>.swal2-modal,.monsterinsights_page .swal2-container.swal2-grow-row>.swal2-modal{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-flex:1;-webkit-box-pack:center;justify-content:center}.monsterinsights_page .swal2-container.swal2-grow-row>.swal2-modal{-ms-flex:1;flex:1;-ms-flex-line-pack:center;align-content:center;-ms-flex-pack:center}.monsterinsights_page .swal2-container.swal2-grow-column{-webkit-box-flex:1;-ms-flex:1;flex:1;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-left,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-start,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-left,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-start,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-left,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-end,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-right,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-end,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-right,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-end,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-right{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.monsterinsights_page .swal2-container.swal2-grow-column>.swal2-modal{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-line-pack:center;align-content:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights_page .swal2-container:not(.swal2-top):not(.swal2-top-start):not(.swal2-top-end):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-start):not(.swal2-center-end):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-start):not(.swal2-bottom-end):not(.swal2-bottom-left):not(.swal2-bottom-right):not(.swal2-grow-fullscreen)>.swal2-modal{margin:auto}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.monsterinsights_page .swal2-container .swal2-modal{margin:0!important}}.monsterinsights_page .swal2-container.swal2-fade{-webkit-transition:background-color .1s;transition:background-color .1s}.monsterinsights_page .swal2-container.swal2-shown{background-color:rgba(0,0,0,.4)}.monsterinsights_page .swal2-popup{display:none;position:relative;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:32em;max-width:100%;padding:1.25em;border-radius:.3125em;background:#fff;font-family:inherit;font-size:1rem;-webkit-box-sizing:border-box;box-sizing:border-box;left:0;top:0}.monsterinsights_page .swal2-popup:focus{outline:0}.monsterinsights_page .swal2-popup.swal2-loading{overflow-y:hidden}.monsterinsights_page .swal2-popup .swal2-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights_page .swal2-popup .swal2-title{display:block;position:relative;max-width:100%;margin:0 0 .4em;padding:0;color:#595959;font-size:1.875em;font-weight:600;text-align:center;text-transform:none;word-wrap:break-word}.monsterinsights_page .swal2-popup .swal2-actions{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:1.25em auto 0;z-index:1}.monsterinsights_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled[disabled]{opacity:.4}.monsterinsights_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:hover{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.1)),to(rgba(0,0,0,.1)));background-image:linear-gradient(rgba(0,0,0,.1),rgba(0,0,0,.1))}.monsterinsights_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:active{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.2)),to(rgba(0,0,0,.2)));background-image:linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.2))}.monsterinsights_page .swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-confirm{width:2.5em;height:2.5em;margin:.46875em;padding:0;border-radius:100%;border:.25em solid rgba(0,0,0,0);background-color:rgba(0,0,0,0)!important;color:rgba(0,0,0,0);cursor:default;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.monsterinsights_page .swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-cancel{margin-right:30px;margin-left:30px}.monsterinsights_page .swal2-popup .swal2-actions.swal2-loading :not(.swal2-styled).swal2-confirm:after{display:inline-block;width:15px;height:15px;margin-left:5px;border-radius:50%;border:3px solid #999;border-right-color:rgba(0,0,0,0);-webkit-box-shadow:1px 1px 1px #fff;box-shadow:1px 1px 1px #fff;content:"";-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal}.monsterinsights_page .swal2-popup .swal2-styled{margin:.3125em;padding:.625em 2em;font-weight:500;-webkit-box-shadow:none;box-shadow:none}.monsterinsights_page .swal2-popup .swal2-styled:not([disabled]){cursor:pointer}.monsterinsights_page .swal2-popup .swal2-styled.swal2-confirm{border:0;border-radius:.25em;background:initial;background-color:#3085d6;color:#fff;font-size:1.0625em}.monsterinsights_page .swal2-popup .swal2-styled.swal2-cancel{border:0;border-radius:.25em;background:initial;background-color:#aaa;color:#fff;font-size:1.0625em}.monsterinsights_page .swal2-popup .swal2-styled:focus{outline:0;-webkit-box-shadow:0 0 0 2px #fff,0 0 0 4px rgba(50,100,150,.4);box-shadow:0 0 0 2px #fff,0 0 0 4px rgba(50,100,150,.4)}.monsterinsights_page .swal2-popup .swal2-styled::-moz-focus-inner{border:0}.monsterinsights_page .swal2-popup .swal2-footer{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:1.25em 0 0;padding:1em 0 0;border-top:1px solid #eee;color:#545454;font-size:1em}.monsterinsights_page .swal2-popup .swal2-image{max-width:100%;margin:1.25em auto}.monsterinsights_page .swal2-popup .swal2-close{position:absolute;top:0;right:0;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:1.2em;height:1.2em;padding:0;-webkit-transition:color .1s ease-out;transition:color .1s ease-out;border:none;border-radius:0;outline:initial;background:0 0;color:#ccc;font-family:serif;font-size:2.5em;line-height:1.2;cursor:pointer;overflow:hidden}.monsterinsights_page .swal2-popup .swal2-close:hover{-webkit-transform:none;-ms-transform:none;transform:none;color:#f27474}.monsterinsights_page .swal2-popup>.swal2-checkbox,.monsterinsights_page .swal2-popup>.swal2-file,.monsterinsights_page .swal2-popup>.swal2-input,.monsterinsights_page .swal2-popup>.swal2-radio,.monsterinsights_page .swal2-popup>.swal2-select,.monsterinsights_page .swal2-popup>.swal2-textarea{display:none}.monsterinsights_page .swal2-popup .swal2-content{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:0;padding:0;color:#545454;font-size:1.125em;font-weight:300;line-height:normal;z-index:1;word-wrap:break-word}.monsterinsights_page .swal2-popup #swal2-content{text-align:center}.monsterinsights_page .swal2-popup .swal2-checkbox,.monsterinsights_page .swal2-popup .swal2-file,.monsterinsights_page .swal2-popup .swal2-input,.monsterinsights_page .swal2-popup .swal2-radio,.monsterinsights_page .swal2-popup .swal2-select,.monsterinsights_page .swal2-popup .swal2-textarea{margin:1em auto}.monsterinsights_page .swal2-popup .swal2-file,.monsterinsights_page .swal2-popup .swal2-input,.monsterinsights_page .swal2-popup .swal2-textarea{width:100%;-webkit-transition:border-color .3s,-webkit-box-shadow .3s;transition:border-color .3s,-webkit-box-shadow .3s;transition:border-color .3s,box-shadow .3s;transition:border-color .3s,box-shadow .3s,-webkit-box-shadow .3s;border:1px solid #d9d9d9;border-radius:.1875em;font-size:1.125em;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.06);box-shadow:inset 0 1px 1px rgba(0,0,0,.06);-webkit-box-sizing:border-box;box-sizing:border-box}.monsterinsights_page .swal2-popup .swal2-file.swal2-inputerror,.monsterinsights_page .swal2-popup .swal2-input.swal2-inputerror,.monsterinsights_page .swal2-popup .swal2-textarea.swal2-inputerror{border-color:#f27474!important;-webkit-box-shadow:0 0 2px #f27474!important;box-shadow:0 0 2px #f27474!important}.monsterinsights_page .swal2-popup .swal2-file:focus,.monsterinsights_page .swal2-popup .swal2-input:focus,.monsterinsights_page .swal2-popup .swal2-textarea:focus{border:1px solid #b4dbed;outline:0;-webkit-box-shadow:0 0 3px #c4e6f5;box-shadow:0 0 3px #c4e6f5}.monsterinsights_page .swal2-popup .swal2-file::-webkit-input-placeholder,.monsterinsights_page .swal2-popup .swal2-input::-webkit-input-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::-webkit-input-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file::-moz-placeholder,.monsterinsights_page .swal2-popup .swal2-input::-moz-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::-moz-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file:-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-input:-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea:-ms-input-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file::-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-input::-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::-ms-input-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file::placeholder,.monsterinsights_page .swal2-popup .swal2-input::placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-range input{width:80%}.monsterinsights_page .swal2-popup .swal2-range output{width:20%;font-weight:600;text-align:center}.monsterinsights_page .swal2-popup .swal2-range input,.monsterinsights_page .swal2-popup .swal2-range output{height:2.625em;margin:1em auto;padding:0;font-size:1.125em;line-height:2.625em}.monsterinsights_page .swal2-popup .swal2-input{height:2.625em;padding:0 .75em}.monsterinsights_page .swal2-popup .swal2-input[type=number]{max-width:10em}.monsterinsights_page .swal2-popup .swal2-file{font-size:1.125em}.monsterinsights_page .swal2-popup .swal2-textarea{height:6.75em;padding:.75em}.monsterinsights_page .swal2-popup .swal2-select{min-width:50%;max-width:100%;padding:.375em .625em;color:#545454;font-size:1.125em}.monsterinsights_page .swal2-popup .swal2-checkbox,.monsterinsights_page .swal2-popup .swal2-radio{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights_page .swal2-popup .swal2-checkbox label,.monsterinsights_page .swal2-popup .swal2-radio label{margin:0 .6em;font-size:1.125em}.monsterinsights_page .swal2-popup .swal2-checkbox input,.monsterinsights_page .swal2-popup .swal2-radio input{margin:0 .4em}.monsterinsights_page .swal2-popup .swal2-validation-message{display:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:.625em;background:#f0f0f0;color:#666;font-size:1em;font-weight:300;overflow:hidden}.monsterinsights_page .swal2-popup .swal2-validation-message:before{display:inline-block;width:1.5em;min-width:1.5em;height:1.5em;margin:0 .625em;border-radius:50%;background-color:#f27474;color:#fff;font-weight:600;line-height:1.5em;text-align:center;content:"!";zoom:normal}@supports (-ms-accelerator:true){.monsterinsights_page .swal2-range input{width:100%!important}.monsterinsights_page .swal2-range output{display:none}}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.monsterinsights_page .swal2-range input{width:100%!important}.monsterinsights_page .swal2-range output{display:none}}@-moz-document url-prefix(){.monsterinsights_page .swal2-close:focus{outline:2px solid rgba(50,100,150,.4)}}.monsterinsights_page .swal2-icon{position:relative;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:5em;height:5em;margin:1.25em auto 1.875em;border:.25em solid rgba(0,0,0,0);border-radius:50%;line-height:5em;cursor:default;-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;zoom:normal}.monsterinsights_page .swal2-icon-text{font-size:3.75em}.monsterinsights_page .swal2-icon.swal2-error{border-color:#f27474}.monsterinsights_page .swal2-icon.swal2-error .swal2-x-mark{position:relative;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.monsterinsights_page .swal2-icon.swal2-error [class^=swal2-x-mark-line]{display:block;position:absolute;top:2.3125em;width:2.9375em;height:.3125em;border-radius:.125em;background-color:#f27474}.monsterinsights_page .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:1.0625em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.monsterinsights_page .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:1em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.monsterinsights_page .swal2-icon.swal2-warning{border-color:#facea8;color:#f8bb86}.monsterinsights_page .swal2-icon.swal2-info{border-color:#9de0f6;color:#3fc3ee;font-size:1rem}.monsterinsights_page .swal2-icon.swal2-question{border-color:#c9dae1;color:#87adbd}.monsterinsights_page .swal2-icon.swal2-success{border-color:#a5dc86}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-circular-line]{position:absolute;width:3.75em;height:7.5em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);border-radius:50%}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.4375em;left:-2.0635em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:3.75em 3.75em;-ms-transform-origin:3.75em 3.75em;transform-origin:3.75em 3.75em;border-radius:7.5em 0 0 7.5em}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.6875em;left:1.875em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:0 3.75em;-ms-transform-origin:0 3.75em;transform-origin:0 3.75em;border-radius:0 7.5em 7.5em 0}.monsterinsights_page .swal2-icon.swal2-success .swal2-success-ring{position:absolute;top:-.25em;left:-.25em;width:100%;height:100%;border:.25em solid rgba(165,220,134,.3);border-radius:50%;z-index:2;-webkit-box-sizing:content-box;box-sizing:content-box}.monsterinsights_page .swal2-icon.swal2-success .swal2-success-fix{position:absolute;top:.5em;left:1.625em;width:.4375em;height:5.625em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);z-index:1}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-line]{display:block;position:absolute;height:.3125em;border-radius:.125em;background-color:#a5dc86;z-index:2}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-line][class$=tip]{top:2.875em;left:.875em;width:1.5625em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-line][class$=long]{top:2.375em;right:.5em;width:2.9375em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.monsterinsights_page .swal2-progresssteps{-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:0 0 1.25em;padding:0;font-weight:600}.monsterinsights_page .swal2-progresssteps li{display:inline-block;position:relative}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle{width:2em;height:2em;border-radius:2em;background:#3085d6;color:#fff;line-height:2em;text-align:center;z-index:20}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle:first-child{margin-left:0}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle:last-child{margin-right:0}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep{background:#3085d6}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progresscircle,.monsterinsights_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progressline{background:#add8e6}.monsterinsights_page .swal2-progresssteps .swal2-progressline{width:2.5em;height:.4em;margin:0 -1px;background:#3085d6;z-index:10}.monsterinsights_page [class^=swal2]{-webkit-tap-highlight-color:transparent}.monsterinsights_page .swal2-show{-webkit-animation:swal2-show .3s;animation:swal2-show .3s}.monsterinsights_page .swal2-show.swal2-noanimation{-webkit-animation:none;animation:none}.monsterinsights_page .swal2-hide{-webkit-animation:swal2-hide .15s forwards;animation:swal2-hide .15s forwards}.monsterinsights_page .swal2-hide.swal2-noanimation{-webkit-animation:none;animation:none}.monsterinsights_page .swal2-rtl .swal2-close{right:auto;left:0}.monsterinsights_page .swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:swal2-animate-success-line-tip .75s;animation:swal2-animate-success-line-tip .75s}.monsterinsights_page .swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:swal2-animate-success-line-long .75s;animation:swal2-animate-success-line-long .75s}.monsterinsights_page .swal2-animate-success-icon .swal2-success-circular-line-right{-webkit-animation:swal2-rotate-success-circular-line 4.25s ease-in;animation:swal2-rotate-success-circular-line 4.25s ease-in}.monsterinsights_page .swal2-animate-error-icon{-webkit-animation:swal2-animate-error-icon .5s;animation:swal2-animate-error-icon .5s}.monsterinsights_page .swal2-animate-error-icon .swal2-x-mark{-webkit-animation:swal2-animate-error-x-mark .5s;animation:swal2-animate-error-x-mark .5s}@-webkit-keyframes swal2-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes swal2-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@media print{.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow-y:scroll!important}.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown)>[aria-hidden=true]{display:none}.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container{position:static!important}}.monsterinsights-notifications-display{background:#fff;border-left:3px solid #509fe2;padding:20px;border-radius:3px 0 0 3px;margin-bottom:50px;position:relative}.monsterinsights-settings-content .monsterinsights-notifications-display{margin-top:20px;margin-bottom:20px}.monsterinsights-notifications-display h3{margin:0 0 4px;font-size:16px;line-height:20px}.monsterinsights-notifications-display p{margin-top:4px;margin-bottom:12px;font-size:14px;line-height:18px}.monsterinsights-notifications-display .monsterinsights-notification{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-notifications-display .monsterinsights-notification .monsterinsights-notifications-indicator{padding-top:10px}.monsterinsights-notifications-display .monsterinsights-notification .monsterinsights-notifications-indicator a{position:relative}.monsterinsights-notifications-display .monsterinsights-notification-inner{margin-left:25px}.monsterinsights-notifications-display .monsterinsights-button{margin-right:15px}.monsterinsights-notifications-display .monsterinsights-notification-navigation{position:absolute;right:0;top:100%}.monsterinsights-notifications-display .monsterinsights-notification-navigation button{background:#fff;border:none;border-radius:0 0 3px 3px;margin:0;padding:5px 8px 7px;color:#a8aebd;cursor:pointer}.monsterinsights-notifications-display .monsterinsights-notification-navigation button:focus,.monsterinsights-notifications-display .monsterinsights-notification-navigation button:hover{color:#509fe2}.monsterinsights-notifications-display .monsterinsights-notification-navigation button .monstericon-arrow{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);font-size:10px}.monsterinsights-notifications-display .monsterinsights-notification-navigation button.monsterinsights-notification-previous{margin-right:2px}.monsterinsights-notifications-display .monsterinsights-notification-navigation button.monsterinsights-notification-previous .monstericon-arrow{-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.monsterinsights-notifications-display .monsterinsights-notification-dismiss{border:none;background:none;color:#a8aebd;position:absolute;right:12px;top:9px;padding:0;margin:0;font-size:16px;cursor:pointer}.monsterinsights-notifications-display .monsterinsights-notifications-unread{min-width:10px;height:16px;background:#c84b29;border:1.72823px solid #f9fbff;position:absolute;bottom:12px;left:18px;border-radius:20px;line-height:16px;color:#fff;font-weight:700;text-align:center;display:inline-block;padding:0 3px}.monsterinsights-report .monsterinsights-notifications-display .monsterinsights-notifications-unread{min-width:16px;height:16px;background:#c84b29;border:1.72823px solid #f9fbff;position:absolute;bottom:4px;border-radius:20px;line-height:1;color:#fff;font-weight:700;text-align:center;padding:0 2px;left:20px}.monsterinsights-admin-page.monsterinsights-path-about-us .monsterinsights-notificationsv3-container,.monsterinsights-admin-page.monsterinsights-path-addons .monsterinsights-notificationsv3-container,.monsterinsights-admin-page.monsterinsights-path-tools-import-export .monsterinsights-notificationsv3-container,.monsterinsights-admin-page.monsterinsights-path-tools-url-builder .monsterinsights-notificationsv3-container,.monsterinsights-admin-page.monsterinsights-reports-page .monsterinsights-notificationsv3-container{margin-right:0}.monsterinsights-admin-page .monsterinsights-notificationsv3-container{display:inline-block;margin-right:20px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-number{position:absolute;top:-11px;min-width:20px;height:20px;line-height:20px;display:block;background:#eb5757;border-radius:20px;font-size:12px;color:#fff;font-weight:700;text-align:center;padding:0 6px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-number.number-greater-than-10{right:-13px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-number.number-less-than-10{right:-10px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-dismissed-number{min-width:24px;height:24px;background:#7c869d;border-radius:20px;display:inline-block;text-align:center;vertical-align:middle;line-height:24px;color:#fff;font-size:14px;font-weight:700;padding:0 8px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-no-notifications{text-align:center;position:absolute;top:50%;margin-top:-69px;width:100%}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-no-notifications h4{font-size:16px;color:#7c869d}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button{position:relative}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button{position:absolute;top:21px;right:15px}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button{background:#f0f2f4;border-radius:3px;padding:11px 7px;line-height:0;vertical-align:middle;margin-top:-2px;border:solid #d3d7de;border-width:1px 1px 2px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button{display:inline-block}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button:hover{background:#e7eaec;border-color:#d3d7de;outline:none}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-notificationsv3-inbox-number{cursor:pointer}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar{width:440px;position:fixed;top:32px;right:0;background:#fff;z-index:1001;overflow:scroll;height:100%;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-fill-mode:both;animation-fill-mode:both}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar{top:46px;width:300px}}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(50px)}to{opacity:1;-webkit-transform:translateX(0)}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(50px);transform:translateX(50px)}to{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar.monsterinsights-notificationsv3-sidebar-in{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-single-notification{padding:0 16px;overflow:hidden}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top{background:#2679c1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:50px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-title{width:50%}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-title svg{margin-right:10px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-title h3{display:inline-block;color:#fff;font-size:18px;font-weight:700}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions{width:50%;text-align:right}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button{color:#fff;text-decoration:underline;border:0;padding:0;background:rgba(0,0,0,0);border-radius:0}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button{display:inline-block}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button:hover{color:#efe5e5}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button:focus{outline:none}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-notificationsv3-sidebar-close{margin-left:12px;vertical-align:bottom}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-notificationsv3-sidebar-close:active svg path,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-notificationsv3-sidebar-close:focus svg path,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-notificationsv3-sidebar-close:hover svg path{fill:#efe5e5}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:60px;border-bottom:1px solid #e2e4e9;margin:0 16px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-notifications-count{width:50%}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-notifications-count .monsterinsights-notificationsv3-inbox-number{position:relative;display:inline-block;top:inherit;right:inherit;min-width:24px;height:24px;line-height:24px;margin-right:8px;padding:0 8px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-notifications-count .monsterinsights-notificationsv3-dismissed-number{margin-right:8px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-notifications-count h4{display:inline-block}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions{width:50%;text-align:right}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions span{text-decoration:underline;color:#99a1b3;cursor:pointer}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions span:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions span:focus,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions span:hover{color:#a9b1c3}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications{display:block;margin-bottom:32px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications{margin-bottom:46px}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification{border-bottom:1px solid #e2e4e9;padding-bottom:24px;display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-icon{width:54px;float:left;text-align:center;padding-top:24px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-icon{float:none;margin:0 auto}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details{float:left;width:354px;padding-top:20px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details{width:260px}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-title h5{margin-top:0;margin-bottom:0;color:#393f4c;font-size:13px;font-weight:700;width:70%;display:inline-block}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-title h5{width:65%}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-title span{color:#7f899f;font-size:13px;float:right}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-content p{color:#393f4c;font-size:13px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-top:2px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions .monsterinsights-button{display:block;background:#f0f2f4;border:1px solid #d3d7de;border-radius:3px;font-weight:500;font-size:13px;color:#393f4c;letter-spacing:.02em;padding:6px 11px;margin-right:10px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions .monsterinsights-button:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions .monsterinsights-button:hover{background:#d3d7de}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions span{font-size:13px;color:#7f899f;cursor:pointer}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions span:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions span:focus,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions span:hover{color:#a9b1c3}.monsterinsights-tooltip{display:block!important;z-index:10000;max-width:350px}.monsterinsights-tooltip .monsterinsights-tooltip-inner{background:#5f6197;color:#fff;border-radius:5px;padding:16px 20px;font-size:14px;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}.monsterinsights-tooltip .monsterinsights-tooltip-inner a{color:#fff;font-weight:700}.monsterinsights-tooltip .monsterinsights-tooltip-arrow{width:0;height:0;border-style:solid;position:absolute;margin:5px;border-color:#5f6197;z-index:1}.monsterinsights-tooltip[x-placement^=top]{padding-bottom:5px}.monsterinsights-tooltip[x-placement^=top] .monsterinsights-tooltip-arrow{border-width:5px 5px 0;border-left-color:rgba(0,0,0,0)!important;border-right-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;bottom:0;left:calc(50% - 5px);margin-top:0;margin-bottom:0}.monsterinsights-tooltip[x-placement^=bottom]{padding-top:5px}.monsterinsights-tooltip[x-placement^=bottom] .monsterinsights-tooltip-arrow{border-width:0 5px 5px;border-left-color:rgba(0,0,0,0)!important;border-right-color:rgba(0,0,0,0)!important;border-top-color:rgba(0,0,0,0)!important;top:0;left:calc(50% - 5px);margin-top:0;margin-bottom:0}.monsterinsights-tooltip[x-placement^=right]{padding-left:5px}.monsterinsights-tooltip[x-placement^=right] .monsterinsights-tooltip-arrow{border-width:5px 5px 5px 0;border-left-color:rgba(0,0,0,0)!important;border-top-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;left:0;top:calc(50% - 5px);margin-left:0;margin-right:0}.monsterinsights-tooltip[x-placement^=left]{padding-right:5px}.monsterinsights-tooltip[x-placement^=left] .monsterinsights-tooltip-arrow{border-width:5px 0 5px 5px;border-top-color:rgba(0,0,0,0)!important;border-right-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;right:0;top:calc(50% - 5px);margin-left:0;margin-right:0}.monsterinsights-tooltip.popover .popover-inner{background:#fff;color:#5f6197;padding:24px;border-radius:5px;-webkit-box-shadow:0 5px 30px rgba(0,0,0,.1);box-shadow:0 5px 30px rgba(0,0,0,.1)}.monsterinsights-tooltip.popover .popover-arrow{border-color:#fff}.monsterinsights-tooltip[aria-hidden=true]{visibility:hidden;opacity:0;-webkit-transition:opacity .15s,visibility .15s;transition:opacity .15s,visibility .15s}.monsterinsights-tooltip[aria-hidden=false]{visibility:visible;opacity:1;-webkit-transition:opacity .15s;transition:opacity .15s}.monsterinsights-conditional-logic-container button:focus{outline:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-header{margin-bottom:30px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-header .monsterinsights-conditional-rule-sets-number{float:right}.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator{text-align:center;font-weight:700;display:block;margin:0 auto 20px;position:relative}.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator:after,.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator:before{content:"";position:absolute;top:45%;width:45%;height:2px;background:#d6e2ed;margin-top:-1px}.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator:before{left:0}.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator:after{right:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:24px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column{width:100%;margin-right:18px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field{text-transform:capitalize;width:100%;height:38px;min-height:38px;line-height:38px;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field.text-input{padding:0 8px;border-color:#ddd;text-transform:none;border-radius:5px;-webkit-box-sizing:border-box;box-sizing:border-box;height:38px;margin-top:0;line-height:38px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field input[type=text]{padding-top:5px;padding-bottom:5px;height:inherit}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field.multiselect--active .multiselect__tags .multiselect__spinner{z-index:1}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags{padding:0;height:38px;min-height:38px;border-color:#ddd;margin-top:0;-webkit-box-sizing:border-box;box-sizing:border-box}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags input[type=text]{border:0;height:36px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags .multiselect__single{margin-bottom:0;padding:0 8px;line-height:36px;font-size:14px;white-space:pre}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags .multiselect__placeholder{display:block;margin-bottom:0;line-height:36px;padding:0 8px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags .multiselect__spinner{width:35px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .add-new-condition{padding:6px 12px;margin:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .add-new-condition:focus{outline:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .remove-condition{border:0;padding:0;margin:0;background:rgba(0,0,0,0)}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .remove-condition:focus{outline:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .remove-condition .monstericon-times-circle{color:#dc3232;cursor:pointer;padding:0;margin:0 15px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .remove-condition .monstericon-times-circle:focus{outline:0}.monsterinsights-upload-media-wrapper .monsterinsights-dark{display:block}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media-label{margin-bottom:0}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media{display:block;width:100%;margin-top:20px;position:relative;max-width:300px}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media .monsterinsights-uploaded-media-overlay{display:none;background:rgba(0,0,0,.7);width:100%;position:absolute;top:0;left:0;height:100%;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media .monsterinsights-uploaded-media-overlay .monsterinsights-remove-uploaded-media{color:#fff;text-decoration:underline;margin-left:auto;cursor:pointer;padding:0 10px 10px 0}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media .monsterinsights-uploaded-media-overlay .monsterinsights-remove-uploaded-media:hover{text-decoration:none}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media:hover .monsterinsights-uploaded-media-overlay{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media img{max-width:100%;display:inline-block}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media{overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;margin-top:20px}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-input{width:73%;margin-right:2%;float:left;position:relative}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-button{width:25%;float:left;font-size:15px}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-button:active,.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-button:focus,.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-button:hover{outline:none}.monsterinsights-email-summaries-settings a{color:#509fe2!important}.monsterinsights-email-summaries-settings a:focus,.monsterinsights-email-summaries-settings a:hover{color:#393f4c!important}.monsterinsights-email-summaries-settings .monsterinsights-dark{display:block}.monsterinsights-email-summaries-settings .inline-field .monsterinsights-button:first-child{margin-left:0}.monsterinsights-email-summaries-settings .monsterinsights-settings-input-repeater{margin-bottom:18px}.monsterinsights-email-summaries-settings .monsterinsights-button.monsterinsights-button-disabled{cursor:not-allowed;background:#39967e!important;border-color:#4ab99b!important}.monsterinsights-accordion .monsterinsights-accordion{padding:0;border:1px solid #e0e0e0}.monsterinsights-accordion .monsterinsights-accordion div:not(:last-child){border-bottom:1px solid rgba(10,10,10,.1)}.monsterinsights-accordion .monsterinsights-accordion div:last-child .monsterinsights-accordion-item-details{border-radius:5px}.monsterinsights-accordion .monsterinsights-accordion dd{margin-left:0;margin-bottom:0}.monsterinsights-accordion .monsterinsights-accordion-item-trigger{cursor:pointer;outline:none}.monsterinsights-accordion .monsterinsights-accordion-item-details-inner,.monsterinsights-accordion .monsterinsights-accordion-item-trigger{padding:0 20px 30px}.monsterinsights-accordion .monsterinsights-accordion-item.is-active .monsterinsights-accordion-item-title{border-bottom:1px solid #e0e0e0}.monsterinsights-accordion .monsterinsights-accordion-item-title{position:relative;background-color:#fff;cursor:pointer}.monsterinsights-accordion .monsterinsights-accordion-item-title h4.monsterinsights-accordion-item-title-text{font-size:20px;margin-bottom:0;padding-right:1.25rem}.monsterinsights-accordion .monsterinsights-accordion-item-title h4.monsterinsights-accordion-item-title-text .title{padding-left:15px}.monsterinsights-accordion .monsterinsights-accordion-item-trigger{width:100%;text-align:left;background-color:rgba(0,0,0,0);border:none}.monsterinsights-accordion .monsterinsights-accordion-item-trigger-icon{display:block;position:absolute;top:0;right:1.5rem;bottom:0;margin:auto;width:8px;height:8px;border-right:2px solid #363636;border-bottom:2px solid #363636;-webkit-transform:translateY(-2px) rotate(45deg);-ms-transform:translateY(-2px) rotate(45deg);transform:translateY(-2px) rotate(45deg);-webkit-transition:-webkit-transform .2s ease;transition:-webkit-transform .2s ease;transition:transform .2s ease;transition:transform .2s ease,-webkit-transform .2s ease}.monsterinsights-accordion .monsterinsights-accordion-item-trigger-icon.is-active{-webkit-transform:translateY(2px) rotate(225deg);-ms-transform:translateY(2px) rotate(225deg);transform:translateY(2px) rotate(225deg)}.monsterinsights-accordion .monsterinsights-accordion-item-details{overflow:hidden;background-color:#fff;padding-top:15px}.monsterinsights-accordion .monsterinsights-accordion-item-details p,.monsterinsights-accordion .monsterinsights-accordion-item-details ul{font-size:1.2em;line-height:1.8}.monsterinsights-accordion .monsterinsights-accordion-item-enter-active,.monsterinsights-accordion .monsterinsights-accordion-item-leave-active{will-change:height;-webkit-transition:height .2s ease;transition:height .2s ease}.monsterinsights-accordion .monsterinsights-accordion-item-enter,.monsterinsights-accordion .monsterinsights-accordion-item-leave-to{height:0!important}body{background:#f3f6ff;margin:0}.monsterinsights-admin-page,.monsterinsights-admin-page *{-webkit-box-sizing:border-box;box-sizing:border-box;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}#wpcontent,.auto-fold #wpcontent{padding-left:0}.monsterinsights-highlighted-text{color:#64bfa5;font-weight:700}.monsterinsights-bold{font-weight:700}.monsterinsights-bg-img{width:100%;padding-top:66%;position:relative}.monsterinsights-bg-img:after{content:"";position:absolute;top:0;left:0;bottom:0;right:0;background-repeat:no-repeat;background-size:contain}.monsterinsights-header{padding:20px 10px;background-color:#f9fbff;min-height:85px}.monsterinsights-settings-panel-network>.monsterinsights-header{background-color:rgba(0,0,0,0)}.monsterinsights-logo-area{float:left;max-width:calc(100vw - 170px)}.monsterinsights-logo-area img{display:block;max-width:100%}@media (max-width:782px){.monsterinsights-logo-area{text-align:center;margin:0 auto;float:none}.monsterinsights-logo-area img{display:inline-block;max-height:35px}}@media (max-width:782px){.monsterinsights-header .monsterinsights-container,.monsterinsights-navigation-bar .monsterinsights-container{padding:0;width:100%}}.monsterinsights-navigation-bar{width:100%;background:#fff;border-top:1px solid #d5e2ed;border-bottom:1px solid #d5e2ed;padding:0 10px}@media (max-width:782px){.monsterinsights-navigation-bar{padding:0;border:0}}@media (max-width:750px){.monsterinsights-navigation-bar{background:none}}.monsterinsights-admin-page{position:relative}.monsterinsights-admin-page .monsterinsights-blocked{position:absolute;top:0;bottom:0;right:0;left:0;background:hsla(0,0%,100%,.5);z-index:999}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-header{padding-bottom:5px}.monsterinsights-admin-page .monsterinsights-header .monsterinsights-button{display:none}}.swal2-popup .swal2-title{line-height:1.2}#footer-left{color:#393f4c}#footer-left .monsterinsights-no-text-decoration{text-decoration:none;color:#fdb72c;font-size:14px}#footer-left a{color:#509fe1}#wpfooter{position:relative}#wpfooter:before{left:20px;right:20px;height:1px;background:#d6e2ed;content:"";position:absolute;top:-12px}.monsterinsights-container{margin:0 auto;max-width:100%;width:750px}.monsterinsights-admin-page .monsterinsights-navigation-tab-link{text-decoration:none;padding:17px 0 15px;border-bottom:2px solid #fff;font-size:14px;color:#393f4c;display:inline-block;margin-right:25px;line-height:1;outline:none;font-family:Lato,sans-serif}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.router-link-exact-active,.monsterinsights-admin-page .monsterinsights-navigation-tab-link:focus,.monsterinsights-admin-page .monsterinsights-navigation-tab-link:hover{color:#509fe2;border-bottom-color:#509fe2;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.router-link-exact-active{font-weight:700}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.monsterinsights-navigation-tab-disabled:focus,.monsterinsights-admin-page .monsterinsights-navigation-tab-link.monsterinsights-navigation-tab-disabled:hover{border-bottom-color:rgba(0,0,0,0);color:#393f4c;cursor:default}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.year-in-review{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAANCAYAAACdKY9CAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAJKSURBVHgBjdJbSFMBHMfx/7lMT7qdk5s7IsvWdIqZ6UFNJC+Yl4EGQUkYItHN8NZl7KESohUUVKCst8QoYkTFlLzlhWHZispSK7NWyjbdZmPJ5tbuLk9ZBD0U+H35v3xe/vADAEDgr15nZ3PgPymLi3E0o9F4XJim5P7GtfEpvIJHNYrJE6UXDXF/4MdKec3qrU2pakNS6+YuhULhQL98z3tvR26C58OKgY7aVJjWd/bUT8OuwtGsvSXJuICKQPEyLJZpTvjutI4UURqgiNm7NqE+I1EvXNDu60rShr2mM5K8etOK22H2OrCsCXUbGnD0PgD8a2B0uvKKTySBzVJqC8IsHR3cVhHNCgia3F2N0wKxnuUR4wiCsL8eLj8wxuyM0Q3l5nTTfDwIQhcNVL4HXK6Aqq9Dfu/2xpJoHhmViaEIiTyT1dMzQl0yKjqoI9e5kbStQ0ByMfBhcaCeqQO3n5i1hxgVB/NP8jiRDtzjXIoUb6fPR0h6EONwA9gIHsQXDQNfhMMR8j5Q9nHpp88uN8rEmJjSt1bMshDrSywoa0mNnxKI06fAZZEBTuwCPrMIaMQiPNEavvnZ5fl0WaqnKUnEYK3XhIVBc4GCR6yHDdIvkFw+BwSXghc3xOGBnonOEVdmg+Ly41uNEg7fGeKb8ahIulqSpwH7Ozl4pTtg2aOBN7rWO2NW69UuatrC4qFsJbSjKE5wM5sGX0H7oZu2+f7DbNBSFXqqOj3QnK7M+dcsjOc6Tz6sOEbCy+v7W56runvVF8rzYQ39AJVT15Tcu/1IAAAAAElFTkSuQmCC);background-repeat:no-repeat;background-position:0 50%;padding-left:18px;font-weight:700}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-navigation-tab-link{width:100%;text-align:center;padding:10px;color:#509fe2;font-size:16px;background:#fff;border:none}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.router-link-exact-active{display:none}.monsterinsights-admin-page .monsterinsights-navigation-tab-link:focus{color:#393f4c;text-decoration:underline}}.monsterinsights-admin-page .monsterinsights-button{background:#509fe2;border:solid #2e7fbe;border-width:1px 1px 2px;border-radius:3px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:10px 20px;text-decoration:none}.monsterinsights-admin-page .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-button:hover{background-color:#3a93dd;border-color:#2971a9;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-disabled{background:#f3f6ff;border-color:#d6e2eb;color:#8ba4b7}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary{background:#8da4b5;border-color:#6f8ca0;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary:hover{background-color:#7e98ab;border-color:#627f94;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green{background:#5cc0a5;border-color:#40a88d;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green:hover{background-color:#4ab99b;border-color:#39967e;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-gray{background:#8ea4b4;border-color:#738ea1;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-gray:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-gray:hover{background-color:#596771;border-color:#738ea1}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-gray.monsterinsights-button-disabled{pointer-events:none}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-text{background:rgba(0,0,0,0);border:none;color:#509fe2;padding:0;border-radius:0;text-decoration:underline}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-text:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-text:hover{background:rgba(0,0,0,0);color:#393f4c}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-red{background:#ea4e64;border-color:#d21933;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-large{font-size:16px;padding:14px 27px}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-small{font-size:13px;line-height:20px;padding:5px 10px}.monsterinsights-green-text{color:#5cc0a5;font-weight:700}@media (max-width:782px){.wp-responsive-open #wpbody{margin-left:-18px}}.monsterinsights-mobile-nav-trigger{color:#393f4c;font-size:16px;font-weight:500;width:100%;display:block;border-color:#d6e2ed;border-style:solid;border-width:1px 0;background:#fff;padding:15px 10px;line-height:1;margin:0}@media (min-width:783px){.monsterinsights-mobile-nav-trigger{display:none}}.monsterinsights-mobile-nav-trigger i{color:#acbdc9;margin-left:10px;vertical-align:middle}@media (max-width:782px){.monsterinsights-main-navigation{background:#fff;height:0;overflow:hidden}.monsterinsights-main-navigation.monsterinsights-main-navigation-open{padding:10px 0;height:auto;border-bottom:1px solid #d6e2ed}}@media (min-width:782px){.wp-admin .monsterinsights-swal{margin-left:160px}.auto-fold .wp-admin .monsterinsights-swal{margin-left:36px}}@media (min-width:961px){.auto-fold .wp-admin .monsterinsights-swal{margin-left:160px}.folded .wp-admin .monsterinsights-swal{margin-left:36px}}.monsterinsights-modal{position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,.8);z-index:99999;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights-modal .monsterinsights-modal-inner{background:#fff;padding:50px;border:1px solid #d6e2ed;text-align:center;width:750px}.monsterinsights-modal .monsterinsights-modal-inner h2{margin-top:0;margin-bottom:0;line-height:1.4}.monsterinsights-modal .monsterinsights-modal-inner p{margin-bottom:0}.monsterinsights-modal .monsterinsights-modal-inner .monsterinsights-modal-buttons{margin-top:50px}.monsterinsights-modal .monsterinsights-modal-inner .monsterinsights-button{margin:0 10px}.monsterinsights-welcome-overlay{position:fixed;top:0;left:0;right:0;bottom:0;z-index:99999999;font-family:inherit;overflow:hidden;background-color:rgba(0,0,0,.5)}.monsterinsights-welcome-overlay .monsterinsights-welcome-overlay-inner{background:#fff;padding:30px;width:70%;margin:0 auto;position:relative;top:10%;height:80%}.monsterinsights-welcome-overlay .monsterinsights-overlay-close{background:none;border:none;position:absolute;top:5px;right:7px;padding:0;color:#777}.monsterinsights-welcome-overlay .monsterinsights-welcome-overlay-content{height:100%}.monsterinsights-welcome-overlay .monsterinsights-welcome-overlay-content iframe{height:100%;width:100%}.monsterinsights-float-right{float:right}.monsterinsights-loading-spinner-inline{text-align:center;margin:25px}.monsterinsights-loading-spinner-inline .monsterinsights-loading-spinner-inline-loader-holder{display:inline-block}.monsterinsights-semrush-cta{background:#fff;border-left:3px solid #338eef;padding:20px 26px;border-radius:3px 0 0 3px;position:relative}.monsterinsights-semrush-cta br{display:none}.monsterinsights-semrush-cta .monsterinsights-semrush-cta-close{position:absolute;top:12px;right:12px;cursor:pointer;border:0;background:rgba(0,0,0,0);padding:0;margin:0;outline:none}.monsterinsights-semrush-cta .monsterinsights-semrush-cta-title{font-weight:700;font-size:16px;line-height:20px;color:#393f4c;margin:0}.monsterinsights-semrush-cta .monsterinsights-semrush-cta-content{font-weight:400;font-size:14px;color:#393f4c}.monsterinsights-semrush-cta .monsterinsights-button{background:#338eef;border-radius:3px;font-weight:400;font-size:14px;border-width:0;padding:7px 12px}.monsterinsights-semrush-cta .monsterinsights-button:active,.monsterinsights-semrush-cta .monsterinsights-button:focus,.monsterinsights-semrush-cta .monsterinsights-button:hover{background:#3088e6;outline:none}.monsterinsights-row-highlight{-webkit-animation-name:color;animation-name:color;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-iteration-count:2;animation-iteration-count:2}@-webkit-keyframes color{0%{background-color:#fff}50%{background-color:#509fe2}to{background-color:#fff}}@keyframes color{0%{background-color:#fff}50%{background-color:#509fe2}to{background-color:#fff}}
lite/assets/vue/css/chunk-common.rtl.css CHANGED
@@ -1 +1 @@
1
- @import url(https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap);strong[data-v-a9c27d52]{display:block}[data-v-6038a3d0]{will-change:height;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.expand-enter-active,.expand-leave-active{-webkit-transition:height .5s ease-in-out;transition:height .5s ease-in-out;overflow:hidden}.expand-enter,.expand-leave-to{height:0}.monsterinsights-dark[data-v-54110c18]{display:block}.monsterinsights-reset-default[data-v-54110c18]{margin-right:5px}.monsterinsights-dark[data-v-7262cc05]{display:block}.monsterinsights-admin-page .monsterinsights-floating-bar{background:#4e5c66;color:#fff;font-size:13px;padding:10px;text-align:center;position:relative;margin:-20px -10px 20px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-floating-bar{margin-top:-10px;padding-left:20px;padding-right:20px}}.monsterinsights-admin-page .monsterinsights-floating-bar a{text-decoration:underline;color:#fff}.monsterinsights-admin-page .monsterinsights-floating-bar a:focus,.monsterinsights-admin-page .monsterinsights-floating-bar a:hover{color:#fff;text-decoration:none}.monsterinsights-admin-page .monsterinsights-floating-bar .monsterinsights-floating-bar-close{padding:0;border:0;background:rgba(0,0,0,0);color:#fff;font-size:10px;position:absolute;left:15px;top:50%;margin-top:-5px}.monsterinsights-admin-page .monsterinsights-slide-enter-active,.monsterinsights-admin-page .monsterinsights-slide-leave-active{-webkit-transition-duration:.5s;transition-duration:.5s}.monsterinsights-admin-page .monsterinsights-slide-enter-to,.monsterinsights-admin-page .monsterinsights-slide-leave{max-height:100px;overflow:hidden}.monsterinsights-admin-page .monsterinsights-slide-enter,.monsterinsights-admin-page .monsterinsights-slide-leave-to{overflow:hidden;max-height:0}.monsterinsights-container[data-v-102a61b0]:after{display:table;clear:both;content:""}.monsterinsights-quick-links{position:fixed;bottom:25px;left:25px;-webkit-box-shadow:0 0 10px 0 #ababab;box-shadow:0 0 10px 0 #ababab;width:60px;height:60px;border-radius:50%;background:#fff;z-index:1000;padding:5px 10px}.monsterinsights-quick-links.monsterinsights-quick-links-open,.monsterinsights-quick-links:focus,.monsterinsights-quick-links:hover{-webkit-box-shadow:0 0 15px 2px #ababab;box-shadow:0 0 15px 2px #ababab}.monsterinsights-quick-links-label{border-radius:50%;background:#fff;border:2px solid rgba(147,120,207,.21);position:absolute;right:2px;left:2px;top:2px;bottom:2px;padding:6px 8px 6px 6px;display:block;width:56px;height:56px;outline:none;cursor:pointer}.monsterinsights-quick-links-open .monsterinsights-quick-links-label .monsterinsights-quick-link-title{opacity:0;pointer-events:none}.monsterinsights-bg-img.monsterinsights-quick-links-mascot{-webkit-transform:rotate(15deg);-ms-transform:rotate(15deg);transform:rotate(15deg);-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;padding-top:100%;-webkit-transition:-webkit-transform .3s ease;transition:-webkit-transform .3s ease;transition:transform .3s ease;transition:transform .3s ease,-webkit-transform .3s ease;display:block}.monsterinsights-bg-img.monsterinsights-quick-links-mascot:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFIAAABQCAMAAAC9OtKiAAAC91BMVEUAAABvS7ttSbluSrpvS7tuSrpvS7tvS7tvSrtsSLdsTLFvS7tuSrluSrpvS7tvS7ttSblvS7tpRrRvS7tvS7tvS7tvS7tvS7tgP6lhP6pvS7tvS7s0OkZvS7tvS7tvS7s5P0xnRbJsSLc2PElvS7s5P0w5P0w5P0w6P05vS7tvS7thP6lfPqc5P0wvMUFgPqg5P0xfPqcrMDk5P0xfPqcrMDlXRolqR7U5P0xfPqeUeM+ljdTT6O////9vS7t9XcI5P0xfPqfqTmQjIyOSdc1/X8OiitOkjNQyMjKYftCGZ8d4VcDsYndxTbxkQqyLbcmagdFmRLChh9N2U7+DZMZ6WMFzUL1yTr2fhdKQc80ewYX/iTrY6/GXe9CPcsx7W8H9/v6BYcUrMDqNb8uIasmdhNGcgtGVec9uSrrv9/lsSbb4/P1pRrTz+fvQ5u2Ia8fn8vfg7/SOcsqEZsTb7PJzVLY+Q1OsotugoqJESFrk8PXS5u/O4+pTT3FUXWkvLi/V4+ihsbr8+vvr9PjAw+XG2eDA09r0sbyZmZlKSmRMVGE9NV9BSFUxNETk5PTO3uzK2evEzejM4OeljNS3ydGLccJ/YcB5WruJlqDyiprweoxteINganVbZHCcRVMoKCrx8/n98PLRzeu2teClktbNzc2Xf8u0w8r0usO2t7jkvqBwYZx1folncX1LO3rdS2Dq6uq8vuO+sOGxqd2x4duY3M3ausWtvsSF18KDbrfgqbWYp7FeP6OEj5hYPpV5hpBhWoToboHtZnrLSFxzOkXs7Pf84eTW2ODY09e6zdXb1s6vwMjdtb52Vb2ss7Vs0LKKebLkxa2kqqx7aKtHyZ1pWJZkWopROonndYfoWGzrVmzQWWtFPGr5llRSUlI/Pz88MjQ4KCouJSbX39/l2tvAwb6XyL2Sf7x+Ybv0pbHfl6ZbuJfihZbig5RnqpHss4mrlomIiIjNaXfTY3PHWGiDV2bxnWTSkGRiYmKmQ1NTQVBENkBUODwEKmHaAAAAOnRSTlMA7wscTEHV+/QT/tyvt5+JXjYE4cmWVij05W9nWoV8dkA6LxGlJerYxMGofEnhx8ChkXZrJOnf0JN2dWY7XQAACrdJREFUWMOdmGVgWlcUgEnSxaVpI+187dxdHo/DI+WRAcECgbAREgKBuGuTZsvqXTvptnbd1s7bbpW5u7u7u7vrj51773s8LMuW7weFW/hy7rn3XHmqydm1MD1V8275qumSkwaZ5Umt6fsCzJiushQAsssSGsszsTVz1vSMGVngFwH2iGuckQ0ekwdmTk9ZCGb7eTaA/JiE7gng9NtEmD2tMHOywGZUq40WyMyQmmYVAmg5LiROL0wMyMnVqdXqWjfkZTDjwQAujuNMWhFKpqOcDSaOUyPVZsjLIS37AjYhLlTCvP8sSi/IYW+KwaLnOANxGsxQgvncgxoRUautiY5a0ZQTahfIK2dfhRr8da2axumGQlWZbNRrtRhmJosgH4qmUu4lT8VMKgirKWGAvdJA5ChBqoQMaZIeNJXyYPAAlKar0gG8+HOjmuEHwNFihLSIE8qwMrPBAtlTKTPB2wswu2wX8HCESqY8rx4gKCkDWgIUzTsIwBwi4f47aeCvDJsB0kgqaTIZTdhthpcaRfwGWAJcwA37TKHE/taqK70eYArsuYRJr/QbCQBAjR/9zinWEJpCMr8NvW4XMxgkZS0nIUpR1pBEmKZSIlmYsmqiqLTXUYOdTCJ91wW9UpQ2LcXkl+aTG3aZsmZC0c7WGjmk+oLW1mYAaB2wEYlIQjR5o0kAKP+3Xs8ozQMIRMcEQ60O69En0bwee+oy2fychJfmNO3gmZMMetlBWYDU6yNcpFIts9naLvmI+RnJpUwnlxkImXumUhYBZtxuwKExKuPcZNVZobndqiNYHa0iK8lQSM9WJBt+sIlOgJLUpdgniwy18jgPoAmtA+u6/KSjtui6Ieo5byjISbigIJVyJgTUiWzWIbl9XDxBLWKLywAUplLOgBppTJRMfo4xojABf5JSm3o9KgY37TTOnLpqSZmry/VzyZhwWOIa6mGvlBsiADFGOILktObquVR4/fIb9v9mmDlJLeKg2LnY0nbQn6qvOOuRxd39Z597w5AxMVyROierymzA2Oo4BlvNScJuvEzDaGjx8Z03GGKVopRTNxSnVOZBU1QZYYs5xw1RoSzt5nn+BruiDElRTrZoloAd5zZHsVOlkbuiQRNHCzrPvkpx6tkrQHpKZQFgBitpturYPKo7S5PIYnSODiXOqsl2i0Lg2PpjbEIjAY1J9PBIgjMIs1Mri8CvjuMKTQraiHJU7vsF2+5fhOw8fr9J9ltbnPFGzONkYZ5jJCnctlKIcsAx81MVuSlOGR3rpBFCruS4bSOCsHrHhRO33TZx4cWrBWH/Y5KLnK4b0QJfoklNG1V2bl4kCON3jfG8z+cjnyc2CsKB85OKvIZUj3GyIM9YvuGiizYsv5wql60SVt816uvu6OjuQWV3Sz8/MSIclpDSDLJuRPfEoUThhiqJL0+nxvFlfHcDmigtGk2Hb+lGYf/9EoucRplyuB99oEqmourxsXFh41pfWxsKGR2ktnrGLhEOmJ9Q5DTA1HOyYeuDVW9t2vQzKive2C6sWtrf0OHjZdo0hIVrx4UjE4q8WlEu1CTy9PsnI+9vqqh4SBC2+Bo6eIUGzeUb3qxa3vPEoLB3fJE3KcqeJGXDeycTLt1U8bBwH9/Rxseg0VxUgWz1XSgcGKvMB7ui9GmS+J0YT1uw4A9hcGlPQz+v4NNcXkF4feHYSFyYpWBUlJ1tScp3aZALFvwlbOfbFvMx9EvKn1YM3yOcGHeH4BTl2d2Ki1Xm41KQC9YIE/0Nvlhlj9TxO6++5kXhsNjrJvQqynN4JcytxHn9u9SICMLa7hY+FhzLj39848HlWK6jq4X5scouRbmE70cRY8NFy7f+8J5svFRYxbf0xCmxR9cMn8HKdWNMMovToE9R3oTdkZ1f4ARnvWbKS3gyJW++/ZZOSblYc/2KqzUU/mJh96gx2wNaRXlVJ2a9TSodVP5NRoZymrCDx34/d8opp7wsOVtokEy5PaosT3P3gjl6CmwKL6FJYtIHq6rewhAlJUbZzd98CuF2qR5JkIlRpmdagpzFIhm9ASeA7Uo65RYubmlZ/iaWzAfM+OEmYZzv4W+hyuckZTTINv4SOZeFEMIdXi7yWtwqTR7oPYeX+AZnyHUPf4DChx+6Thgc80lRfvvsMp4//YVrv5eD7OBHhP2k5dcWwXOIrDyPHgxEEGXn6Q+gE63Xkdc/hadw+/mK5PK24RXDn7xz6qmnXruQjWX3E8L+7FqcZya7bT0r8ujaboOuUdn5dUWUX7DE+S0rPiUj3nn+i7+dSjidX0ykWORHSjPSTg4FYmyRM+cQL3Pr60z4wNNbhNVrl654lpf4lSqfxLR3aFo6V7FUzpqtxX6Sk2ed5DJ5r6L/itpRPspjt955562P4XFjpXDh8PCY3PydFCWy0HeXcADLJInOgAcx0DNjNYQ1Z9xYiW88S/hEzrW/JKweXsrLfERzyVOWjkhTqMCJ41GJpyawSan0WB7R2O2k6/bOeOHZ5KSxSNgYDZKOOHabMHqJtFzmZPmJJ8IFozt5F0TOEg0YpsFlv+mcmAhvqqOHjBFhRyefzH3CYO4+7ExQy5ReECWlwQmmXpKBaj2etA1DVy4599wlVw41cRJ3DAo71iYKxy4WBp8X0zJQua+TavDvKxUZdkM9nVEk0rAxwskozlVPxRvPH0cjBlNA7o0hWemxqKNOM1j6jJXoNLCCSnTieejiLTHC7YKw8jOigWI8EkSYklWkjMFkAbA4zZbeRCVD/+ogHmHumTh/2bLzJ+4ZFwTh/iYD+aKlFKdQk6yskbddfSXefqqD9R6AmurUShyk+1EaZU3jK45cdIbrM1W7Ais/rEitXJFdXecZw8RlUK74KdC/9OrbIyMjKxctWtPYeKa1uXW9ujISyFKVOllHMcqAvEcawWQIRyJ1RruiTI0lwCGbiREArGE75wJVAZ05dg4xRffIPnAGmwzVGP8USo/IIZGVa+5ubXdYdXg9FLNUJSY1rR0kpOyRxq6uCAqnVJrNHGFb42s6wjockBJVni2qDILZz9XZw7XVBgPxTa7U671BW8hkcpnJI6qugdy77yVOjFJvKVKl0cjC0v0yBo+7pkYrii6CyVVjpjidbrfHAjFgz9c3Q7N155qd1mZHMADlqqwutlTQ6vWboGCP0vws8FgsMDkWC2pLSov23HXmvhDk1rW363Rvn+kAaM61FJJjZT1WiXzX08OueOCy1Gtl6hEn7DZvXraHvNVGcaflsI3QE/TrEDKJ8JHFbGydC81gcentvXpZWQyiKyBqFczkYVCaW6sgBlwuzx7sQJ5nca3T6e49U0chK9ERYLW2y/2xACrzzfIY6P1JyhC2chRXWjpbHPPBXb/+lcYz70bjnFnYcghGOxfA6nCcUNDe3tp6SE5WSBnZJKVNuehDmfwgFZPf2ti4Zue9c06igc/RHXVUayv+gWNnzdU52g8tA/9USoa7ULk7FM84vBE5mn08dBfVPg6Hbs6hKtW8udY56Rl5Tu9/UdZnYavC7kwZ5Yg5+cfSvBwyE+PO9AQG+jjvgCO3L0nZN2DN7eJsA+vM2fFPH+Yf13i4fMKiqvT459aOdt2Ao7lZpxuoQZxU6SFvn7Hq2sGxXudonVuu+h/MmosrgM6B2dDpgECVQMAmq4O+WCd9vPoPhumB3HmlMigAAAAASUVORK5CYII=)}.monsterinsights-quick-links-open .monsterinsights-bg-img.monsterinsights-quick-links-mascot{-webkit-transform:rotate(-15deg);-ms-transform:rotate(-15deg);transform:rotate(-15deg)}.monsterinsights-quick-links-menu{position:absolute;bottom:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse;left:6px;margin-bottom:10px}.monsterinsights-quick-links-menu .monsterinsights-quick-links-menu-item{display:block;width:48px;height:48px;background:#509fe2;border-radius:50%;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);-webkit-transition:-webkit-transform .2s;transition:-webkit-transform .2s;transition:transform .2s;transition:transform .2s,-webkit-transform .2s;position:relative;-webkit-box-shadow:0 0 10px 0 #ababab;box-shadow:0 0 10px 0 #ababab;margin-bottom:6px;color:#fff;text-decoration:none;text-align:center;font-size:18px;line-height:48px}.monsterinsights-quick-links-menu .monsterinsights-quick-links-menu-item:hover{color:#fff;background:#50abee;-webkit-box-shadow:0 0 15px 2px #ababab;box-shadow:0 0 15px 2px #ababab}.monsterinsights-quick-links-menu .monsterinsights-quick-links-menu-item.monsterinsights-show{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.monsterinsights-quick-links-menu .monsterinsights-quick-links-menu-item.monsterinsights-quick-links-item-upgrade{background:#704cbc}.monsterinsights-quick-links-menu .monsterinsights-quick-links-menu-item.monsterinsights-quick-links-item-upgrade:hover{background:#509fe2}.monsterinsights-quick-link-title{position:absolute;left:100%;margin-left:10px;font-size:13px;color:#fff;background:#595959;border-radius:5px;white-space:nowrap;padding:6px 8px;display:block;top:50%;margin-top:-12px;line-height:1;-webkit-transition:opacity .2s ease;transition:opacity .2s ease;outline:none}@font-face{font-family:Lato;src:url(../fonts/lato-regular-webfont.woff) format("woff"),url(../fonts/lato-regular-webfont.woff2) format("woff2");font-weight:400;font-style:normal}@font-face{font-family:Lato;src:url(../fonts/lato-bold-webfont.woff) format("woff"),url(../fonts/lato-bold-webfont.woff2) format("woff2");font-weight:700;font-style:normal}@font-face{font-family:text-security-disc;src:url(data:font/woff2;base64,d09GMgABAAAAAAjoAAsAAAAAMGgAAAidAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHFQGVgDWYgpQdQE2AiQDCAsGAAQgBYUOBy4bvi8lYxtWw7BxAPB87x5FmeAMlf3/96RzDN74RcXUcjTKmrJ3T2VDSShiPhfiIJxxS7DiLkHFfQV33CM4427mAred74pWur/J3dyVsKy7coREA8fzvPvpfUk+tB3R8YTCzE0SCLepejmJ2u1yqp+kC7W4Rc/tDTs3GpNJ8ttRPOSTPhsXlwbi4kVYWQmAcXmlrqYHMMsBwP/zHMz7fkF1gijOKuFQIxjwlGa2lkARhYaBxFHT54IOgBMQADi3LipIMAA3geO41EUkBTCO2gkxnOwnKYBx1E6p5WS+QUCMq50rNch6MwUCAAiAcdgttYVSIfPJ5kn6ApRFQ6I88BxLvvIC/maHUHS3TIoKiwLbbM8nEFWgE1oDz3woSxpagWbBXcQWhKtPeIlg6tK+7vX57QOszwU3sGUJrA7h2Mx1IWCNr9BKxsYo+pzS/OCO0OG9mwBkx337+lcuSxRdBcc+fJxlcAjK/zCfdgtBzuxQcTqfY4Yn6EB/Az3JS/RMu5f6B8wrn55S0IxdlLn+4Yb/ctIT+ocWYPcGAOvxSjEjpSiVMqSgFWVjzpCCXjAIRirTABpEQ2gYjaBRNIbG0QSaRFNoGs2gWTSH5tECWkRLaBmtoFW0htbRBtpEW2gb7aBdtIf20QE6REdFDlkZEh2jE3SKztA5ukCX6Apdoxt0i+7QPXpAj+gJPaMX9Ire0Dv6QJ/oC/qKvqHv6Af6iX6h3+gP+ov+of+I+ECMxETMiDmxIJbEilgTG2JL7Ig9cSCOxIk4ExfiStyIO/EgnsSLeBMf4kv8iD/taQANoiE0jEbQKBpD42gCTaIpNI1m0CyaQ/NoAS2iJbSMVtAqWkPraANtoi20jXbQLtpD++gAHaIjdIxO0Ck6Q+foAl2iK3SNbtAtukP36AE9oif0jF7QK3pD79B79AF9RJ/QZ/QFfUXf0Hf0A/1Ev9Bv9Af9Rf/Qf9DQABpEQ2gYjaBRNIbG0QSaRFNoGs2gWTSH5tECWkRLaBmtoFW0htbRBtpEW2gb7aBdtIf20QE6REfoGJ2gU3SGztEFukRX6BrdoFt0h+7RA3pET+gZvaBX9Aa9Re/Qe/QBfUSf0Gf0BX1F39B39AP9RL/Qb/QH/UX/0P8l9vq9gXwDIUCliyAhRAgTIoQoIUaIExKEJCFFSBMyhCwhR8gTCoQioUQoEyqEKqFGqBMahCahRWgTOoQuoUfoEwaEIWFEGBMmhClhRpgTFoQlYUVYEzaELWFH2BMOhGPCCeGUcEY4J1wQLglXhGvCDeGWcEe4JzwQHglPhGfCC+GV8EZ4J3wQPglfhG/CD+GX8Ef4p9sdgoQQIUyIEKKEGCFOSBCShBQhTcgQsoQcIU8oEIqEEqFMqBCqhBqhTmgkNBGaCS2EVkIboZ3QQegkdBG6CT2EXkIfoZ8wQBgkDBGGCSOEUcIYYZwwQZgkTBGmCTOEWcIcYZ6wQFgkLBGWCSuEVcIaYZ2wQdgkbBG2CTuEXcIeYZ9wQDgkHBGOCSeEU8IZ4ZxwQbgkXBGuCTeEW8Id4Z7wQHgkPBGeCS+EV8Ib4Z3wQfgkfBG+CT+EX8If4Z8AZpAQIoQJEUKUECPECQlCkpAipAkZQpaQI+QJBUKRUCKUCRVClVAj1AkNQpPQIrQJHUKX0CP0CQPCkDAijAkTwpQwI8wJC8KSsCKsCRvClrAj7AkHwpFwIpwJF8IV4ZpwQ7gl3BHuCQ+ER8IT4ZnwQnglvBHeCR+ET8IX4ZvwQ/gl/BH+lzv+AmMkTYAmSBOiCdNEaKI0MZo4TYImSZOiSdNkaLI0OZo8TYGmSFOiKdNUaKo0NZo6TYOmSdOiadN0aLo0PZo+zYBmSDOiGdNMaKY0M5o5zYJmSbOiWdNsaLY0O5o9zYHmmOaE5pTmjOac5oLmkuaK5prmhuaW5o7mnuaB5pHmieaZ5oXmleaN5p3mg+aT5ovmm+aH5pfmj2ZRAqCCoEKgwqAioKKgYqDioBKgkqBSoNKgMqCyoHKg8qAKoIqgSqDKoCqgqqBqoOqgGkE1gWoG1QKqFVQbqHZQHaA6QXWB6gbVA6oXVB+oflADoAZBDYH+uxaEWDBiIYiFIhaGWDhiEYhFIhaFWDRiMYjFIhaHWDxiCYglIpaEWDJiKYilIpaGWDpiGYhlIpaFWDZiOYjlIpaHWD5iBYgVIlaEWDFiJYiVIlaGWDliFYhVIlaFWDViNYjVIlaHWD1iDYg1ItaEWDNiLYi1ItaGWDtiHYh1ItaFWDdiPYj1ItaHWD9iA4gNIjaE2DBiI4iNIjaG2DhiE4hNIjaF2DRiM4jNIjaH2DxiC4gtIraE2DJiK4itIraG2DpiG4htIraF2DZiO4jtIraH2D5iB4gdInaE2DFiJ4idInaG2DliF4hdInaF2DViN4jdInaH2D1iD4g9IvaE2DNiL4i9IvaG2DvE3iP2AbGPiH1C7DNiXxD7itg3xL4j9gOxn4j9Quw3Yn8Q+4vYP8T+M6cIDBz9EXfeUHR1JyygPL/++I3R1cRvdDr+E12Jfh3Q0EN/fHn2mXptpJxUkIqu/Cs2egM33OjSLcT33I82+B9nP37X/c0W52623s45CYCo03QIBCVrAFAycnSYSqvO4YJt/NP73YqA/giNZhJ6sBbmql+0SQZaxNOZudJbc2nqxNvpM+veq7Sz2LUgFEu+VLs+Ay3yp7MVertp6i23v2Rmv5gmHDhSQ6t5GmTaqTsqhpWwmbOk3uKJrNOmwSSMC17jghqygilDOUU3KlLmHHNrajw3DVNVGWytGZDisM/cbkdRnvfIUJkaGJlgAYcoQ5bGptTmGc1R7pBC3XhFsLXnXR54qrMc+dGNBkqE4laBi4KmZYGom8vIy0lTyBkppBjLoTndMmrofIRORirsNlCbXzCgulmo36KztS2iV8rrNoRUL5VdkMSGoSXroC1KOQAA) format("woff2"),url(data:font/woff;base64,d09GRgABAAAAAAusAAsAAAAAMGgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPgAAAFZjRmM5Y21hcAAAAYQAAAgCAAArYmjjYVVnbHlmAAAJiAAAAEEAAABQiOYj2mhlYWQAAAnMAAAALgAAADYR8XmmaGhlYQAACfwAAAAcAAAAJAqNAyNobXR4AAAKGAAAAAgAAAAIAyAAAGxvY2EAAAogAAAABgAAAAYAKAAAbWF4cAAACigAAAAeAAAAIAEOACJuYW1lAAAKSAAAAUIAAAKOcN63t3Bvc3QAAAuMAAAAHQAAAC5lhHRpeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGScwDiBgZWBgSGVtYKBgVECQjMfYEhiYmFgYGJgZWbACgLSXFMYHIAq/rNfAHK3gEmgASACAIekCT4AAHic7dhl0zDVmUXh5+XFHYK7E0IguFtwt4QQgmtwd3d3d7cED+4SXIO7u7vbsNfaUzU1fyGcu66u1adOf+6uHhgYGGpgYGDwL37/iyEHBoZZcWDQLzUw9NK/7A5if/DA8OwPOfQknBky+0P8/PPPOcd1UJ785frr/Dq/zq/z6/w3zsCgoX/xX74GRsxbcYpRB1iDB/7PGvT/DFGDenBwe8hKD1XpoSs9TKWHrfRwlR6+0iNUesRKj1TpkSs9SqVHrfRolR690r+p9BiVHrPSY1V67EqPU+lxKz1epcev9ASVnrDSE1V64kpPUulJKz1ZpSev9BSVnrLSU1V66kr/ttLTVPp3lZ62/KJSerpKT1/pP1R6hkrPWOmZKj1zpWep9KyVnq3Ss1d6jkrPWem5Kj13peep9LyVnq/S81d6gUr/sdILVnqhSi9c6UUqvWilF6v04pVeotJLVnqpSi9d6WUqvWyll6v08pVeodIrVvpPlf5zpVeq9F8qvXKl/1rpVSr9t0qvWunVKr16pdeo9JqVXqvSa1d6nUqvW+n1Kr1+pTeo9N8rvWGlN6r0xpXepNKbVnqzSm9e6S0qvWWlt6r01pXeptLbVnq7Sm9f6R0qvWOld6r0zpXepdK7Vnq3Su9e6T0qvWel96r03pXep9L7Vnq/Su9f6QMqfWClD6r0wZU+pNKHVvqwSh9e6SMqfWSlj6r00ZU+ptLHVvq4Sh9f6RMqfWKlT6r0yZU+pdKnVvq0Sp9e6TMqfWalz6r02ZU+p9LnVvq8Sp9f6QsqfWGl/1Hpf1b6okpfXOlLKn1ppS+r9OWVvqLS/6r0lZW+qtJXV/qaSl9b6esqfX2lb6j0jZW+qdI3V/qWSt9a6dsqfXul76j0vyt9Z6XvqvTdlb6n0vdW+r5K31/pByr9YKUfqvTDlX6k0v+p9KOVfqzSj1f6iUo/WemnKv10pZ+p9LOVfq7Sz1f6hUq/WOmXKv1ypV+p9KuVfq3Sr1f6jUq/Wem3Kv12pd+p9LuVfq/S71f6g0p/WOmPKv1xpT+p9KeV/qzSn1f6i0p/WemvKv11pb+p9LeV/q7S31f6h0r/WOmfKv1zDfI26KKHED1Y9JCihxI9tOhhRA8rejjRw4seQfSIokcSPbLoUUSPKno00aOL/o3oMUSPKXos0WOLHkf0uKLHEz2+6AlETyh6ItETi55E9KSiJxM9uegpRE8peirRU4v+rehpRP9O9LSify96OtHTi/6D6BlEzyh6JtEzi55F9KyiZxM9u+g5RM8pei7Rc4ueR/S8oucTPb/oBUT/UfSCohcSvbDoRUQvKnox0YuLXkL0kqKXEr206GVELyt6OdHLi15B9Iqi/yT6z6JXEv0X0SuL/qvoVUT/TfSqolcTvbroNUSvKXot0WuLXkf0uqLXE72+6A1E/130hqI3Er2x6E1Ebyp6M9Gbi95C9JaitxK9tehtRG8rejvR24veQfSOoncSvbPoXUTvKno30buL3kP0nqL3Er236H1E7yt6P9H7iz5A9IGiDxJ9sOhDRB8q+jDRh4s+QvSRoo8SfbToY0QfK/o40ceLPkH0iaJPEn2y6FNEnyr6NNGniz5D9JmizxJ9tuhzRJ8r+jzR54u+QPSFov8h+p+iLxJ9sehLRF8q+jLRl4u+QvS/RF8p+irRV4u+RvS1oq8Tfb3oG0TfKPom0TeLvkX0raJvE3276DtE/1v0naLvEn236HtE3yv6PtH3i35A9IOiHxL9sOhHRP9H9KOiHxP9uOgnRD8p+inRT4t+RvSzop8T/bzoF0S/KPol0S+LfkX0q6JfE/266DdEvyn6LdFvi35H9Lui3xP9vugPRH8o+iPRH4v+RPSnoj8T/bnoL0R/Kfor0V+L/kb0t6K/E/296B9E/yj6J9E/K/2/v/npoocQPVj0kKKHEj206GFEDyt6ONHDix5B9IiiRxI9suhRRI8qejTRo4v+jegxRI8peizRY4seR/S4oscTPb7oCURPKHoi0ROLnkT0pKInEz256ClETyl6KtFTi/6t6GlE/070tKJ/L3o60dOL/oPoGUTPKHom0TOLnkX0rKJnEz276DlEzyl6LtFzi55H9Lyi5xM9v+gFRP9R9IKiFxK9sOhFRC8qejHRi4teQvSSopcSvbToZUQvK3o50cuLXkH0iqL/JPrPolcS/RfRK4v+q+hVRP9N9KqiVxO9uug1RK8pei3Ra4teR/S6otcTvb7oDUT/XfSGojcSvbHoTURvKnoz0ZuL3kL0lqK3Er216G1Ebyt6O9Hbi95B9I6idxK9s+hdRO8qejfRu4veQ/SeovcSvbfofUTvK3o/0fuLPkD0gaIPEn2w6ENEHyr6MNGHiz5C9JGijxJ9tOhjRB8r+jjRx4s+QfSJok8SfbLoU0SfKvo00aeLPkP0maLPEn226HNEnyv6PNHni75A9IWi/yH6n6IvEn2x6EtEXyr6MtGXi75C9L9EXyn6KtFXi75G9LWirxN9vegbRN8o+ibRN4u+RfStom8TfbvoO0T/W/Sdou8Sfbfoe0TfK/o+0feLfkD0g6IfEv2w6EdE/0f0o6IfE/246CdEPyn6KdFPi35G9LOinxP9vOgXRL8o+iXRL4t+RfSrol8T/broN0S/Kfot0W+Lfkf0u6LfE/2+6A9Efyj6I9Efi/5E9KeiPxP9uegvRH8p+ivRX4v+RvS3or8T/b3oH0T/KPon0T9rYND/AOaSEScAAHicY2BiAAKmPSy+QEqUgYFRUURcTFzMyNzM3MxEXU1dTYmdjZ2NccK/K5oaLm6L3Fw0NOEMZoVAFD6IAQD4PA9iAAAAeJxjYGRgYADilrme/fH8Nl8ZuNkvAEUYbnDPcEOmmfaw+AIpDgYmEA8AHMMJGAAAeJxjYGRgYL/AAATMCiCSaQ8DIwMqYAIAK/QBvQAAAAADIAAAAAAAAAAoAAB4nGNgZGBgYGIQA2IGMIuBgQsIGRj+g/kMAArUATEAAHicjY69TsMwFIWP+4doJYSKhMTmoUJIqOnPWIm1ZWDq0IEtTZw2VRpHjlu1D8A7MPMczAw8DM/AifFEl9qS9d1zzr3XAK7xBYHqCHTdW50aLlj9cZ1057lBfvTcRAdPnlvUnz23mXj13MEN3jhBNC6p9PDuuYYrfHquU//23CD/eG7iVnQ9t9ATD57bWIgXzx3ciw+rDrZfqmhnUnvsx2kZzdVql4Xm1DhVFsqUqc7lKBiemjOVKxNaFcvlUZb71djaRCZGb+VU51ZlmZaF0RsV2WBtbTEZDBKvB5HewkLhwLePkhRhB4OU9ZFKTCqpzems6GQI6Z7TcU5mQceQUmjkkBghwPCszhmd3HWHLh+ze8mEpLvnT8dULRLWCTMaW9LUbanSGa+mUjhv47ZY7l67rgITDHiTf/mAKU76BTuXfk8AAHicY2BigAARBuyAiZGJkZmBJSWzOJmBAQALQwHHAAAA) format("woff"),url(../fonts/text-security-disc.ttf) format("truetype")}@font-face{font-family:Misettings;src:url(../fonts/icons.woff2) format("woff2"),url(../fonts/icons.woff) format("woff"),url(../fonts/icons.ttf) format("truetype"),url(../fonts/icons.otf) format("opentype");font-weight:400;font-style:normal}[class*=monstericon-]:before,body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before,body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before,body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.monstericon-times-circle:before{content:"\f01b"}.monstericon-times:before{content:"\f021"}.monstericon-info-circle-regular:before{content:"\f01e"}.monstericon-arrow{-webkit-transition:-webkit-transform .5s ease;transition:-webkit-transform .5s ease;transition:transform .5s ease;transition:transform .5s ease,-webkit-transform .5s ease;-webkit-transform:rotate(-180deg);-ms-transform:rotate(-180deg);transform:rotate(-180deg);display:inline-block}.monstericon-arrow.monstericon-down{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0)}.monstericon-arrow:before{content:"\f01f"}.monstericon-check:before{content:"\f015"}.monstericon-warning-triangle:before{content:"\f020"}.monstericon-star:before{content:"\f025"}.monstericon-files:before{content:"\f028"}.monstericon-search:before{content:"\f029"}.monstericon-user:before{content:"\f02a"}.monstericon-eye:before{content:"\f02b"}.monstericon-cog:before{content:"\f02c"}.monstericon-expand:before{content:"\f02d"}.monstericon-compress:before{content:"\f02f"}.monstericon-life-ring:before{content:"\f030"}.monstericon-wpbeginner:before{content:"\f031"}.monstericon-lightbulb:before{content:"\f032"}.monstericon-shopping-cart:before{content:"\f033"}.monstericon-calendar-alt:before{content:"\f04e"}.monstericon-long-arrow-right-light:before{content:"\f06a"}.monstericon-download:before{content:"\0046"}@media (max-width:782px){.monsterinsights-notices-area{margin-right:10px;margin-left:10px}}.monsterinsights-notice{position:relative;color:#444}.monsterinsights-notice .monsterinsights-notice-inner{margin-top:25px;padding:20px;background:#fff;border-right:3px solid;line-height:1.5;font-size:14px}.monsterinsights-notice .monsterinsights-notice-inner .notice-title{color:#393f4c;font-weight:700;display:block;margin:0 0 6px;padding:0}@media (max-width:782px){.monsterinsights-notice .monsterinsights-notice-inner{padding:10px}}.monsterinsights-notice.monsterinsights-notice-error .monsterinsights-notice-inner{border-right-color:#ea4e64}.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-notice-inner{border-right-color:#f5c953}.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-notice-inner{border-right-color:#509fe2}.monsterinsights-notice.monsterinsights-notice-info-xl .monsterinsights-notice-inner{border:1px solid #509fe2;border-right-width:3px;color:#777}.monsterinsights-notice.monsterinsights-notice-info-xl .monsterinsights-notice-inner .monsterinsights-button{color:#fff;margin:15px 0 0}.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-notice-inner{border-right-color:#5cc0a5}.monsterinsights-notice .notice-content{margin-left:20px}.monsterinsights-notice .notice-content a{color:#444}.monsterinsights-notice .dismiss-notice{border:none;background:none;padding:0;margin:0;display:inline-block;cursor:pointer;color:#acbdc9;position:relative;float:left}.monsterinsights-notice .dismiss-notice:focus,.monsterinsights-notice .dismiss-notice:hover{color:#444}.monsterinsights-notice.monsterinsights-notice-info .notice-content,.monsterinsights-notice.monsterinsights-notice-success .notice-content,.monsterinsights-notice.monsterinsights-notice-warning .notice-content{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:425px){.monsterinsights-notice.monsterinsights-notice-info .notice-content,.monsterinsights-notice.monsterinsights-notice-success .notice-content,.monsterinsights-notice.monsterinsights-notice-warning .notice-content{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}}.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-notice-button{-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;margin-left:-20px;margin-right:auto}@media (max-width:782px){.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-notice-button{margin-right:0}}.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-button{margin-top:0;padding:10px 16px 8px;line-height:1;font-size:14px;font-weight:600}@media (max-width:782px){.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-button{margin-top:10px;margin-right:0}}.monsterinsights-notice.monsterinsights-notice-error .monsterinsights-button{margin-top:10px;margin-right:0;color:#fff}body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-end,body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-right{top:32px}@media screen and (max-width:767px){body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-end,body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-right{top:42px;left:auto;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast{border-radius:0;padding:9px;border-right:3px solid #fff}@media screen and (max-width:767px){body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast{width:80vw}}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast.mi-success{border-right-color:#5cc0a5}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast.mi-info{border-right-color:#509fe2}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast.mi-error{border-right-color:#ea4e64}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-title{color:#393f4c;font-size:13px;font-weight:400}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-close{font-size:15px;width:10px;height:10px;line-height:10px}@media screen and (max-width:767px){body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-close{padding:9px;line-height:0}}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon{width:14px;height:14px;min-width:14px;margin:0;border:0}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info{border:none;position:relative}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before{content:"\f01e";position:absolute;top:-1px;right:0;color:#509fe2;line-height:1}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info .swal2-icon-text{display:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error{border:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before{content:"\f023";position:absolute;top:-1px;right:0;color:#ea4e64;line-height:1}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error .swal2-x-mark *{display:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon [class^=-ring]{width:14px;height:14px;top:0;right:0}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:14px;height:14px;top:0;right:0;border:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring:before{content:"\f027";position:absolute;top:-1px;right:0;color:#5cc0a5;line-height:1}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success [class^=swal2-success-line]{display:none}@-webkit-keyframes swal2-show{0%{-webkit-transform:scale(.7);transform:scale(.7)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes swal2-show{0%{-webkit-transform:scale(.7);transform:scale(.7)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}to{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes swal2-hide{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}to{-webkit-transform:scale(.5);transform:scale(.5);opacity:0}}@keyframes swal2-hide{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}to{-webkit-transform:scale(.5);transform:scale(.5);opacity:0}}@-webkit-keyframes swal2-animate-success-line-tip{0%{top:1.1875em;right:.0625em;width:0}54%{top:1.0625em;right:.125em;width:0}70%{top:2.1875em;right:-.375em;width:3.125em}84%{top:3em;right:1.3125em;width:1.0625em}to{top:2.8125em;right:.875em;width:1.5625em}}@keyframes swal2-animate-success-line-tip{0%{top:1.1875em;right:.0625em;width:0}54%{top:1.0625em;right:.125em;width:0}70%{top:2.1875em;right:-.375em;width:3.125em}84%{top:3em;right:1.3125em;width:1.0625em}to{top:2.8125em;right:.875em;width:1.5625em}}@-webkit-keyframes swal2-animate-success-line-long{0%{top:3.375em;left:2.875em;width:0}65%{top:3.375em;left:2.875em;width:0}84%{top:2.1875em;left:0;width:3.4375em}to{top:2.375em;left:.5em;width:2.9375em}}@keyframes swal2-animate-success-line-long{0%{top:3.375em;left:2.875em;width:0}65%{top:3.375em;left:2.875em;width:0}84%{top:2.1875em;left:0;width:3.4375em}to{top:2.375em;left:.5em;width:2.9375em}}@-webkit-keyframes swal2-rotate-success-circular-line{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg)}5%{-webkit-transform:rotate(45deg);transform:rotate(45deg)}12%{-webkit-transform:rotate(405deg);transform:rotate(405deg)}to{-webkit-transform:rotate(405deg);transform:rotate(405deg)}}@keyframes swal2-rotate-success-circular-line{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg)}5%{-webkit-transform:rotate(45deg);transform:rotate(45deg)}12%{-webkit-transform:rotate(405deg);transform:rotate(405deg)}to{-webkit-transform:rotate(405deg);transform:rotate(405deg)}}@-webkit-keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}@-webkit-keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}}@keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}}.monsterinsights_page body.swal2-toast-shown .swal2-container,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-shown{background-color:rgba(0,0,0,0)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top{top:0;left:auto;bottom:auto;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-end,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-right{top:0;left:0;bottom:auto;right:auto}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-left,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-start{top:0;left:auto;bottom:auto;right:0}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center-left,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center-start{top:50%;left:auto;bottom:auto;right:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center{top:50%;left:auto;bottom:auto;right:50%;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center-end,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center-right{top:50%;left:0;bottom:auto;right:auto;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-left,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-start{top:auto;left:auto;bottom:0;right:0}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom{top:auto;left:auto;bottom:0;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-end,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-right{top:auto;left:0;bottom:0;right:auto}.monsterinsights_page body.swal2-toast-column .swal2-toast{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-actions{-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-item-align:stretch;align-self:stretch;height:2.2em;margin-top:.3125em}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-loading{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-input{height:2em;margin:.3125em auto;font-size:1em}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-validation-message{font-size:1em}.monsterinsights_page .swal2-popup.swal2-toast{-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:auto;padding:.625em;-webkit-box-shadow:0 0 .625em #d9d9d9;box-shadow:0 0 .625em #d9d9d9;overflow-y:hidden}.monsterinsights_page .swal2-popup.swal2-toast,.monsterinsights_page .swal2-popup.swal2-toast .swal2-header{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.monsterinsights_page .swal2-popup.swal2-toast .swal2-title{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;margin:0 .6em;font-size:1em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-footer{margin:.5em 0 0;padding:.5em 0 0;font-size:.8em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-close{position:static;width:.8em;height:.8em;line-height:.8}.monsterinsights_page .swal2-popup.swal2-toast .swal2-content{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;font-size:1em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon{width:2em;min-width:2em;height:2em;margin:0}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon-text{font-size:2em;font-weight:700;line-height:1em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:2em;height:2em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line]{top:.875em;width:1.375em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{right:.3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{left:.3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-actions{height:auto;margin:0 .3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-styled{margin:0 .3125em;padding:.3125em .625em;font-size:1em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-styled:focus{-webkit-box-shadow:0 0 0 .0625em #fff,0 0 0 .125em rgba(50,100,150,.4);box-shadow:0 0 0 .0625em #fff,0 0 0 .125em rgba(50,100,150,.4)}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success{border-color:#a5dc86}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line]{position:absolute;width:2em;height:2.8125em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);border-radius:50%}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.25em;right:-.9375em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transform-origin:2em 2em;-ms-transform-origin:2em 2em;transform-origin:2em 2em;border-radius:0 4em 4em 0}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.25em;right:.9375em;-webkit-transform-origin:100% 2em;-ms-transform-origin:100% 2em;transform-origin:100% 2em;border-radius:4em 0 0 4em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success .swal2-success-ring{width:2em;height:2em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success .swal2-success-fix{top:0;right:.4375em;width:.4375em;height:2.6875em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line]{height:.3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip]{top:1.125em;right:.1875em;width:.75em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long]{top:.9375em;left:.1875em;width:1.375em}.monsterinsights_page .swal2-popup.swal2-toast.swal2-show{-webkit-animation:showSweetToast .5s;animation:showSweetToast .5s}.monsterinsights_page .swal2-popup.swal2-toast.swal2-hide{-webkit-animation:hideSweetToast .2s forwards;animation:hideSweetToast .2s forwards}.monsterinsights_page .swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:animate-toast-success-tip .75s;animation:animate-toast-success-tip .75s}.monsterinsights_page .swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:animate-toast-success-long .75s;animation:animate-toast-success-long .75s}@-webkit-keyframes showSweetToast{0%{-webkit-transform:translateY(-.625em) rotate(-2deg);transform:translateY(-.625em) rotate(-2deg);opacity:0}33%{-webkit-transform:translateY(0) rotate(2deg);transform:translateY(0) rotate(2deg);opacity:.5}66%{-webkit-transform:translateY(.3125em) rotate(-2deg);transform:translateY(.3125em) rotate(-2deg);opacity:.7}to{-webkit-transform:translateY(0) rotate(0);transform:translateY(0) rotate(0);opacity:1}}@keyframes showSweetToast{0%{-webkit-transform:translateY(-.625em) rotate(-2deg);transform:translateY(-.625em) rotate(-2deg);opacity:0}33%{-webkit-transform:translateY(0) rotate(2deg);transform:translateY(0) rotate(2deg);opacity:.5}66%{-webkit-transform:translateY(.3125em) rotate(-2deg);transform:translateY(.3125em) rotate(-2deg);opacity:.7}to{-webkit-transform:translateY(0) rotate(0);transform:translateY(0) rotate(0);opacity:1}}@-webkit-keyframes hideSweetToast{0%{opacity:1}33%{opacity:.5}to{-webkit-transform:rotate(-1deg);transform:rotate(-1deg);opacity:0}}@keyframes hideSweetToast{0%{opacity:1}33%{opacity:.5}to{-webkit-transform:rotate(-1deg);transform:rotate(-1deg);opacity:0}}@-webkit-keyframes animate-toast-success-tip{0%{top:.5625em;right:.0625em;width:0}54%{top:.125em;right:.125em;width:0}70%{top:.625em;right:-.25em;width:1.625em}84%{top:1.0625em;right:.75em;width:.5em}to{top:1.125em;right:.1875em;width:.75em}}@keyframes animate-toast-success-tip{0%{top:.5625em;right:.0625em;width:0}54%{top:.125em;right:.125em;width:0}70%{top:.625em;right:-.25em;width:1.625em}84%{top:1.0625em;right:.75em;width:.5em}to{top:1.125em;right:.1875em;width:.75em}}@-webkit-keyframes animate-toast-success-long{0%{top:1.625em;left:1.375em;width:0}65%{top:1.25em;left:.9375em;width:0}84%{top:.9375em;left:0;width:1.125em}to{top:.9375em;left:.1875em;width:1.375em}}@keyframes animate-toast-success-long{0%{top:1.625em;left:1.375em;width:0}65%{top:1.25em;left:.9375em;width:0}84%{top:.9375em;left:0;width:1.125em}to{top:.9375em;left:.1875em;width:1.375em}}.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow:hidden}.monsterinsights_page body.swal2-height-auto{height:auto!important}.monsterinsights_page body.swal2-no-backdrop .swal2-shown{top:auto;left:auto;bottom:auto;right:auto;background-color:rgba(0,0,0,0)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown>.swal2-modal{-webkit-box-shadow:0 0 10px rgba(0,0,0,.4);box-shadow:0 0 10px rgba(0,0,0,.4)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top{top:0;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-left,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-start{top:0;right:0}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-end,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-right{top:0;left:0}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center{top:50%;right:50%;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center-left,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center-start{top:50%;right:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center-end,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center-right{top:50%;left:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom{bottom:0;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-left,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-start{bottom:0;right:0}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-end,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-right{left:0;bottom:0}.monsterinsights_page .swal2-container{display:-webkit-box;display:-ms-flexbox;display:flex;position:fixed;top:0;left:0;bottom:0;right:0;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:10px;background-color:rgba(0,0,0,0);z-index:1060;overflow-x:hidden;-webkit-overflow-scrolling:touch}.monsterinsights_page .swal2-container.swal2-top{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.monsterinsights_page .swal2-container.swal2-top-left,.monsterinsights_page .swal2-container.swal2-top-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.monsterinsights_page .swal2-container.swal2-top-end,.monsterinsights_page .swal2-container.swal2-top-right{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.monsterinsights_page .swal2-container.swal2-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights_page .swal2-container.swal2-center-left,.monsterinsights_page .swal2-container.swal2-center-start{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.monsterinsights_page .swal2-container.swal2-center-end,.monsterinsights_page .swal2-container.swal2-center-right{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.monsterinsights_page .swal2-container.swal2-bottom{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.monsterinsights_page .swal2-container.swal2-bottom-left,.monsterinsights_page .swal2-container.swal2-bottom-start{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.monsterinsights_page .swal2-container.swal2-bottom-end,.monsterinsights_page .swal2-container.swal2-bottom-right{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.monsterinsights_page .swal2-container.swal2-grow-fullscreen>.swal2-modal{-ms-flex:1;flex:1;-ms-flex-item-align:stretch;align-self:stretch;-ms-flex-pack:center}.monsterinsights_page .swal2-container.swal2-grow-fullscreen>.swal2-modal,.monsterinsights_page .swal2-container.swal2-grow-row>.swal2-modal{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-flex:1;-webkit-box-pack:center;justify-content:center}.monsterinsights_page .swal2-container.swal2-grow-row>.swal2-modal{-ms-flex:1;flex:1;-ms-flex-line-pack:center;align-content:center;-ms-flex-pack:center}.monsterinsights_page .swal2-container.swal2-grow-column{-webkit-box-flex:1;-ms-flex:1;flex:1;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-left,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-start,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-left,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-start,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-left,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-end,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-right,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-end,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-right,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-end,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-right{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.monsterinsights_page .swal2-container.swal2-grow-column>.swal2-modal{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-line-pack:center;align-content:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights_page .swal2-container:not(.swal2-top):not(.swal2-top-start):not(.swal2-top-end):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-start):not(.swal2-center-end):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-start):not(.swal2-bottom-end):not(.swal2-bottom-left):not(.swal2-bottom-right):not(.swal2-grow-fullscreen)>.swal2-modal{margin:auto}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.monsterinsights_page .swal2-container .swal2-modal{margin:0!important}}.monsterinsights_page .swal2-container.swal2-fade{-webkit-transition:background-color .1s;transition:background-color .1s}.monsterinsights_page .swal2-container.swal2-shown{background-color:rgba(0,0,0,.4)}.monsterinsights_page .swal2-popup{display:none;position:relative;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:32em;max-width:100%;padding:1.25em;border-radius:.3125em;background:#fff;font-family:inherit;font-size:1rem;-webkit-box-sizing:border-box;box-sizing:border-box;right:0;top:0}.monsterinsights_page .swal2-popup:focus{outline:0}.monsterinsights_page .swal2-popup.swal2-loading{overflow-y:hidden}.monsterinsights_page .swal2-popup .swal2-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights_page .swal2-popup .swal2-title{display:block;position:relative;max-width:100%;margin:0 0 .4em;padding:0;color:#595959;font-size:1.875em;font-weight:600;text-align:center;text-transform:none;word-wrap:break-word}.monsterinsights_page .swal2-popup .swal2-actions{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:1.25em auto 0;z-index:1}.monsterinsights_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled[disabled]{opacity:.4}.monsterinsights_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:hover{background-image:-webkit-gradient(linear,right top,right bottom,from(rgba(0,0,0,.1)),to(rgba(0,0,0,.1)));background-image:linear-gradient(rgba(0,0,0,.1),rgba(0,0,0,.1))}.monsterinsights_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:active{background-image:-webkit-gradient(linear,right top,right bottom,from(rgba(0,0,0,.2)),to(rgba(0,0,0,.2)));background-image:linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.2))}.monsterinsights_page .swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-confirm{width:2.5em;height:2.5em;margin:.46875em;padding:0;border-radius:100%;border:.25em solid rgba(0,0,0,0);background-color:rgba(0,0,0,0)!important;color:rgba(0,0,0,0);cursor:default;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.monsterinsights_page .swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-cancel{margin-left:30px;margin-right:30px}.monsterinsights_page .swal2-popup .swal2-actions.swal2-loading :not(.swal2-styled).swal2-confirm:after{display:inline-block;width:15px;height:15px;margin-right:5px;border-radius:50%;border:3px solid #999;border-left-color:rgba(0,0,0,0);-webkit-box-shadow:-1px 1px 1px #fff;box-shadow:-1px 1px 1px #fff;content:"";-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal}.monsterinsights_page .swal2-popup .swal2-styled{margin:.3125em;padding:.625em 2em;font-weight:500;-webkit-box-shadow:none;box-shadow:none}.monsterinsights_page .swal2-popup .swal2-styled:not([disabled]){cursor:pointer}.monsterinsights_page .swal2-popup .swal2-styled.swal2-confirm{border:0;border-radius:.25em;background:initial;background-color:#3085d6;color:#fff;font-size:1.0625em}.monsterinsights_page .swal2-popup .swal2-styled.swal2-cancel{border:0;border-radius:.25em;background:initial;background-color:#aaa;color:#fff;font-size:1.0625em}.monsterinsights_page .swal2-popup .swal2-styled:focus{outline:0;-webkit-box-shadow:0 0 0 2px #fff,0 0 0 4px rgba(50,100,150,.4);box-shadow:0 0 0 2px #fff,0 0 0 4px rgba(50,100,150,.4)}.monsterinsights_page .swal2-popup .swal2-styled::-moz-focus-inner{border:0}.monsterinsights_page .swal2-popup .swal2-footer{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:1.25em 0 0;padding:1em 0 0;border-top:1px solid #eee;color:#545454;font-size:1em}.monsterinsights_page .swal2-popup .swal2-image{max-width:100%;margin:1.25em auto}.monsterinsights_page .swal2-popup .swal2-close{position:absolute;top:0;left:0;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:1.2em;height:1.2em;padding:0;-webkit-transition:color .1s ease-out;transition:color .1s ease-out;border:none;border-radius:0;outline:initial;background:100% 0;color:#ccc;font-family:serif;font-size:2.5em;line-height:1.2;cursor:pointer;overflow:hidden}.monsterinsights_page .swal2-popup .swal2-close:hover{-webkit-transform:none;-ms-transform:none;transform:none;color:#f27474}.monsterinsights_page .swal2-popup>.swal2-checkbox,.monsterinsights_page .swal2-popup>.swal2-file,.monsterinsights_page .swal2-popup>.swal2-input,.monsterinsights_page .swal2-popup>.swal2-radio,.monsterinsights_page .swal2-popup>.swal2-select,.monsterinsights_page .swal2-popup>.swal2-textarea{display:none}.monsterinsights_page .swal2-popup .swal2-content{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:0;padding:0;color:#545454;font-size:1.125em;font-weight:300;line-height:normal;z-index:1;word-wrap:break-word}.monsterinsights_page .swal2-popup #swal2-content{text-align:center}.monsterinsights_page .swal2-popup .swal2-checkbox,.monsterinsights_page .swal2-popup .swal2-file,.monsterinsights_page .swal2-popup .swal2-input,.monsterinsights_page .swal2-popup .swal2-radio,.monsterinsights_page .swal2-popup .swal2-select,.monsterinsights_page .swal2-popup .swal2-textarea{margin:1em auto}.monsterinsights_page .swal2-popup .swal2-file,.monsterinsights_page .swal2-popup .swal2-input,.monsterinsights_page .swal2-popup .swal2-textarea{width:100%;-webkit-transition:border-color .3s,-webkit-box-shadow .3s;transition:border-color .3s,-webkit-box-shadow .3s;transition:border-color .3s,box-shadow .3s;transition:border-color .3s,box-shadow .3s,-webkit-box-shadow .3s;border:1px solid #d9d9d9;border-radius:.1875em;font-size:1.125em;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.06);box-shadow:inset 0 1px 1px rgba(0,0,0,.06);-webkit-box-sizing:border-box;box-sizing:border-box}.monsterinsights_page .swal2-popup .swal2-file.swal2-inputerror,.monsterinsights_page .swal2-popup .swal2-input.swal2-inputerror,.monsterinsights_page .swal2-popup .swal2-textarea.swal2-inputerror{border-color:#f27474!important;-webkit-box-shadow:0 0 2px #f27474!important;box-shadow:0 0 2px #f27474!important}.monsterinsights_page .swal2-popup .swal2-file:focus,.monsterinsights_page .swal2-popup .swal2-input:focus,.monsterinsights_page .swal2-popup .swal2-textarea:focus{border:1px solid #b4dbed;outline:0;-webkit-box-shadow:0 0 3px #c4e6f5;box-shadow:0 0 3px #c4e6f5}.monsterinsights_page .swal2-popup .swal2-file::-webkit-input-placeholder,.monsterinsights_page .swal2-popup .swal2-input::-webkit-input-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::-webkit-input-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file::-moz-placeholder,.monsterinsights_page .swal2-popup .swal2-input::-moz-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::-moz-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file:-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-input:-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea:-ms-input-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file::-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-input::-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::-ms-input-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file::placeholder,.monsterinsights_page .swal2-popup .swal2-input::placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-range input{width:80%}.monsterinsights_page .swal2-popup .swal2-range output{width:20%;font-weight:600;text-align:center}.monsterinsights_page .swal2-popup .swal2-range input,.monsterinsights_page .swal2-popup .swal2-range output{height:2.625em;margin:1em auto;padding:0;font-size:1.125em;line-height:2.625em}.monsterinsights_page .swal2-popup .swal2-input{height:2.625em;padding:0 .75em}.monsterinsights_page .swal2-popup .swal2-input[type=number]{max-width:10em}.monsterinsights_page .swal2-popup .swal2-file{font-size:1.125em}.monsterinsights_page .swal2-popup .swal2-textarea{height:6.75em;padding:.75em}.monsterinsights_page .swal2-popup .swal2-select{min-width:50%;max-width:100%;padding:.375em .625em;color:#545454;font-size:1.125em}.monsterinsights_page .swal2-popup .swal2-checkbox,.monsterinsights_page .swal2-popup .swal2-radio{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights_page .swal2-popup .swal2-checkbox label,.monsterinsights_page .swal2-popup .swal2-radio label{margin:0 .6em;font-size:1.125em}.monsterinsights_page .swal2-popup .swal2-checkbox input,.monsterinsights_page .swal2-popup .swal2-radio input{margin:0 .4em}.monsterinsights_page .swal2-popup .swal2-validation-message{display:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:.625em;background:#f0f0f0;color:#666;font-size:1em;font-weight:300;overflow:hidden}.monsterinsights_page .swal2-popup .swal2-validation-message:before{display:inline-block;width:1.5em;min-width:1.5em;height:1.5em;margin:0 .625em;border-radius:50%;background-color:#f27474;color:#fff;font-weight:600;line-height:1.5em;text-align:center;content:"!";zoom:normal}@supports (-ms-accelerator:true){.monsterinsights_page .swal2-range input{width:100%!important}.monsterinsights_page .swal2-range output{display:none}}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.monsterinsights_page .swal2-range input{width:100%!important}.monsterinsights_page .swal2-range output{display:none}}@-moz-document url-prefix(){.monsterinsights_page .swal2-close:focus{outline:2px solid rgba(50,100,150,.4)}}.monsterinsights_page .swal2-icon{position:relative;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:5em;height:5em;margin:1.25em auto 1.875em;border:.25em solid rgba(0,0,0,0);border-radius:50%;line-height:5em;cursor:default;-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;zoom:normal}.monsterinsights_page .swal2-icon-text{font-size:3.75em}.monsterinsights_page .swal2-icon.swal2-error{border-color:#f27474}.monsterinsights_page .swal2-icon.swal2-error .swal2-x-mark{position:relative;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.monsterinsights_page .swal2-icon.swal2-error [class^=swal2-x-mark-line]{display:block;position:absolute;top:2.3125em;width:2.9375em;height:.3125em;border-radius:.125em;background-color:#f27474}.monsterinsights_page .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{right:1.0625em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.monsterinsights_page .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{left:1em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.monsterinsights_page .swal2-icon.swal2-warning{border-color:#facea8;color:#f8bb86}.monsterinsights_page .swal2-icon.swal2-info{border-color:#9de0f6;color:#3fc3ee;font-size:1rem}.monsterinsights_page .swal2-icon.swal2-question{border-color:#c9dae1;color:#87adbd}.monsterinsights_page .swal2-icon.swal2-success{border-color:#a5dc86}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-circular-line]{position:absolute;width:3.75em;height:7.5em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);border-radius:50%}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.4375em;right:-2.0635em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transform-origin:3.75em 3.75em;-ms-transform-origin:3.75em 3.75em;transform-origin:3.75em 3.75em;border-radius:0 7.5em 7.5em 0}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.6875em;right:1.875em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transform-origin:100% 3.75em;-ms-transform-origin:100% 3.75em;transform-origin:100% 3.75em;border-radius:7.5em 0 0 7.5em}.monsterinsights_page .swal2-icon.swal2-success .swal2-success-ring{position:absolute;top:-.25em;right:-.25em;width:100%;height:100%;border:.25em solid rgba(165,220,134,.3);border-radius:50%;z-index:2;-webkit-box-sizing:content-box;box-sizing:content-box}.monsterinsights_page .swal2-icon.swal2-success .swal2-success-fix{position:absolute;top:.5em;right:1.625em;width:.4375em;height:5.625em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);z-index:1}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-line]{display:block;position:absolute;height:.3125em;border-radius:.125em;background-color:#a5dc86;z-index:2}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-line][class$=tip]{top:2.875em;right:.875em;width:1.5625em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-line][class$=long]{top:2.375em;left:.5em;width:2.9375em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.monsterinsights_page .swal2-progresssteps{-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:0 0 1.25em;padding:0;font-weight:600}.monsterinsights_page .swal2-progresssteps li{display:inline-block;position:relative}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle{width:2em;height:2em;border-radius:2em;background:#3085d6;color:#fff;line-height:2em;text-align:center;z-index:20}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle:first-child{margin-right:0}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle:last-child{margin-left:0}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep{background:#3085d6}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progresscircle,.monsterinsights_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progressline{background:#add8e6}.monsterinsights_page .swal2-progresssteps .swal2-progressline{width:2.5em;height:.4em;margin:0 -1px;background:#3085d6;z-index:10}.monsterinsights_page [class^=swal2]{-webkit-tap-highlight-color:transparent}.monsterinsights_page .swal2-show{-webkit-animation:swal2-show .3s;animation:swal2-show .3s}.monsterinsights_page .swal2-show.swal2-noanimation{-webkit-animation:none;animation:none}.monsterinsights_page .swal2-hide{-webkit-animation:swal2-hide .15s forwards;animation:swal2-hide .15s forwards}.monsterinsights_page .swal2-hide.swal2-noanimation{-webkit-animation:none;animation:none}.monsterinsights_page .swal2-rtl .swal2-close{left:auto;right:0}.monsterinsights_page .swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:swal2-animate-success-line-tip .75s;animation:swal2-animate-success-line-tip .75s}.monsterinsights_page .swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:swal2-animate-success-line-long .75s;animation:swal2-animate-success-line-long .75s}.monsterinsights_page .swal2-animate-success-icon .swal2-success-circular-line-right{-webkit-animation:swal2-rotate-success-circular-line 4.25s ease-in;animation:swal2-rotate-success-circular-line 4.25s ease-in}.monsterinsights_page .swal2-animate-error-icon{-webkit-animation:swal2-animate-error-icon .5s;animation:swal2-animate-error-icon .5s}.monsterinsights_page .swal2-animate-error-icon .swal2-x-mark{-webkit-animation:swal2-animate-error-x-mark .5s;animation:swal2-animate-error-x-mark .5s}@-webkit-keyframes swal2-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}@keyframes swal2-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}@media print{.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow-y:scroll!important}.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown)>[aria-hidden=true]{display:none}.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container{position:static!important}}.monsterinsights-notifications-display{background:#fff;border-right:3px solid #509fe2;padding:20px;border-radius:0 3px 3px 0;margin-bottom:50px;position:relative}.monsterinsights-settings-content .monsterinsights-notifications-display{margin-top:20px;margin-bottom:20px}.monsterinsights-notifications-display h3{margin:0 0 4px;font-size:16px;line-height:20px}.monsterinsights-notifications-display p{margin-top:4px;margin-bottom:12px;font-size:14px;line-height:18px}.monsterinsights-notifications-display .monsterinsights-notification{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-notifications-display .monsterinsights-notification .monsterinsights-notifications-indicator{padding-top:10px}.monsterinsights-notifications-display .monsterinsights-notification .monsterinsights-notifications-indicator a{position:relative}.monsterinsights-notifications-display .monsterinsights-notification-inner{margin-right:25px}.monsterinsights-notifications-display .monsterinsights-button{margin-left:15px}.monsterinsights-notifications-display .monsterinsights-notification-navigation{position:absolute;left:0;top:100%}.monsterinsights-notifications-display .monsterinsights-notification-navigation button{background:#fff;border:none;border-radius:0 0 3px 3px;margin:0;padding:5px 8px 7px;color:#a8aebd;cursor:pointer}.monsterinsights-notifications-display .monsterinsights-notification-navigation button:focus,.monsterinsights-notifications-display .monsterinsights-notification-navigation button:hover{color:#509fe2}.monsterinsights-notifications-display .monsterinsights-notification-navigation button .monstericon-arrow{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);font-size:10px}.monsterinsights-notifications-display .monsterinsights-notification-navigation button.monsterinsights-notification-previous{margin-left:2px}.monsterinsights-notifications-display .monsterinsights-notification-navigation button.monsterinsights-notification-previous .monstericon-arrow{-webkit-transform:rotate(-270deg);-ms-transform:rotate(-270deg);transform:rotate(-270deg)}.monsterinsights-notifications-display .monsterinsights-notification-dismiss{border:none;background:none;color:#a8aebd;position:absolute;left:12px;top:9px;padding:0;margin:0;font-size:16px;cursor:pointer}.monsterinsights-notifications-display .monsterinsights-notifications-unread{min-width:10px;height:16px;background:#c84b29;border:1.72823px solid #f9fbff;position:absolute;bottom:12px;right:18px;border-radius:20px;line-height:16px;color:#fff;font-weight:700;text-align:center;display:inline-block;padding:0 3px}.monsterinsights-report .monsterinsights-notifications-display .monsterinsights-notifications-unread{min-width:16px;height:16px;background:#c84b29;border:1.72823px solid #f9fbff;position:absolute;bottom:4px;border-radius:20px;line-height:1;color:#fff;font-weight:700;text-align:center;padding:0 2px;right:20px}.monsterinsights-admin-page.monsterinsights-path-about-us .monsterinsights-notificationsv3-container,.monsterinsights-admin-page.monsterinsights-path-addons .monsterinsights-notificationsv3-container,.monsterinsights-admin-page.monsterinsights-path-tools-import-export .monsterinsights-notificationsv3-container,.monsterinsights-admin-page.monsterinsights-path-tools-url-builder .monsterinsights-notificationsv3-container,.monsterinsights-admin-page.monsterinsights-reports-page .monsterinsights-notificationsv3-container{margin-left:0}.monsterinsights-admin-page .monsterinsights-notificationsv3-container{display:inline-block;margin-left:20px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-number{position:absolute;top:-11px;min-width:20px;height:20px;line-height:20px;display:block;background:#eb5757;border-radius:20px;font-size:12px;color:#fff;font-weight:700;text-align:center;padding:0 6px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-number.number-greater-than-10{left:-13px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-number.number-less-than-10{left:-10px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-dismissed-number{min-width:24px;height:24px;background:#7c869d;border-radius:20px;display:inline-block;text-align:center;vertical-align:middle;line-height:24px;color:#fff;font-size:14px;font-weight:700;padding:0 8px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-no-notifications{text-align:center;position:absolute;top:50%;margin-top:-69px;width:100%}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-no-notifications h4{font-size:16px;color:#7c869d}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button{position:relative}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button{position:absolute;top:21px;left:15px}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button{background:#f0f2f4;border-radius:3px;padding:11px 7px;line-height:0;vertical-align:middle;margin-top:-2px;border:solid #d3d7de;border-width:1px 1px 2px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button{display:inline-block}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button:hover{background:#e7eaec;border-color:#d3d7de;outline:none}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-notificationsv3-inbox-number{cursor:pointer}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar{width:440px;position:fixed;top:32px;left:0;background:#fff;z-index:1001;overflow:scroll;height:100%;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-fill-mode:both;animation-fill-mode:both}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar{top:46px;width:300px}}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(-50px)}to{opacity:1;-webkit-transform:translateX(0)}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(-50px);transform:translateX(-50px)}to{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar.monsterinsights-notificationsv3-sidebar-in{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-single-notification{padding:0 16px;overflow:hidden}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top{background:#2679c1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:50px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-title{width:50%}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-title svg{margin-left:10px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-title h3{display:inline-block;color:#fff;font-size:18px;font-weight:700}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions{width:50%;text-align:left}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button{color:#fff;text-decoration:underline;border:0;padding:0;background:rgba(0,0,0,0);border-radius:0}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button{display:inline-block}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button:hover{color:#efe5e5}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button:focus{outline:none}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-notificationsv3-sidebar-close{margin-right:12px;vertical-align:bottom}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-notificationsv3-sidebar-close:active svg path,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-notificationsv3-sidebar-close:focus svg path,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-notificationsv3-sidebar-close:hover svg path{fill:#efe5e5}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:60px;border-bottom:1px solid #e2e4e9;margin:0 16px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-notifications-count{width:50%}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-notifications-count .monsterinsights-notificationsv3-inbox-number{position:relative;display:inline-block;top:inherit;left:inherit;min-width:24px;height:24px;line-height:24px;margin-left:8px;padding:0 8px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-notifications-count .monsterinsights-notificationsv3-dismissed-number{margin-left:8px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-notifications-count h4{display:inline-block}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions{width:50%;text-align:left}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions span{text-decoration:underline;color:#99a1b3;cursor:pointer}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions span:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions span:focus,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions span:hover{color:#a9b1c3}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications{display:block;margin-bottom:32px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications{margin-bottom:46px}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification{border-bottom:1px solid #e2e4e9;padding-bottom:24px;display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-icon{width:54px;float:right;text-align:center;padding-top:24px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-icon{float:none;margin:0 auto}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details{float:right;width:354px;padding-top:20px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details{width:260px}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-title h5{margin-top:0;margin-bottom:0;color:#393f4c;font-size:13px;font-weight:700;width:70%;display:inline-block}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-title h5{width:65%}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-title span{color:#7f899f;font-size:13px;float:left}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-content p{color:#393f4c;font-size:13px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-top:2px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions .monsterinsights-button{display:block;background:#f0f2f4;border:1px solid #d3d7de;border-radius:3px;font-weight:500;font-size:13px;color:#393f4c;letter-spacing:.02em;padding:6px 11px;margin-left:10px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions .monsterinsights-button:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions .monsterinsights-button:hover{background:#d3d7de}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions span{font-size:13px;color:#7f899f;cursor:pointer}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions span:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions span:focus,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions span:hover{color:#a9b1c3}.monsterinsights-tooltip{display:block!important;z-index:10000;max-width:350px}.monsterinsights-tooltip .monsterinsights-tooltip-inner{background:#5f6197;color:#fff;border-radius:5px;padding:16px 20px;font-size:14px;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}.monsterinsights-tooltip .monsterinsights-tooltip-inner a{color:#fff;font-weight:700}.monsterinsights-tooltip .monsterinsights-tooltip-arrow{width:0;height:0;border-style:solid;position:absolute;margin:5px;border-color:#5f6197;z-index:1}.monsterinsights-tooltip[x-placement^=top]{padding-bottom:5px}.monsterinsights-tooltip[x-placement^=top] .monsterinsights-tooltip-arrow{border-width:5px 5px 0;border-right-color:rgba(0,0,0,0)!important;border-left-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;bottom:0;right:calc(50% - 5px);margin-top:0;margin-bottom:0}.monsterinsights-tooltip[x-placement^=bottom]{padding-top:5px}.monsterinsights-tooltip[x-placement^=bottom] .monsterinsights-tooltip-arrow{border-width:0 5px 5px;border-right-color:rgba(0,0,0,0)!important;border-left-color:rgba(0,0,0,0)!important;border-top-color:rgba(0,0,0,0)!important;top:0;right:calc(50% - 5px);margin-top:0;margin-bottom:0}.monsterinsights-tooltip[x-placement^=right]{padding-right:5px}.monsterinsights-tooltip[x-placement^=right] .monsterinsights-tooltip-arrow{border-width:5px 0 5px 5px;border-right-color:rgba(0,0,0,0)!important;border-top-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;right:0;top:calc(50% - 5px);margin-right:0;margin-left:0}.monsterinsights-tooltip[x-placement^=left]{padding-left:5px}.monsterinsights-tooltip[x-placement^=left] .monsterinsights-tooltip-arrow{border-width:5px 5px 5px 0;border-top-color:rgba(0,0,0,0)!important;border-left-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;left:0;top:calc(50% - 5px);margin-right:0;margin-left:0}.monsterinsights-tooltip.popover .popover-inner{background:#fff;color:#5f6197;padding:24px;border-radius:5px;-webkit-box-shadow:0 5px 30px rgba(0,0,0,.1);box-shadow:0 5px 30px rgba(0,0,0,.1)}.monsterinsights-tooltip.popover .popover-arrow{border-color:#fff}.monsterinsights-tooltip[aria-hidden=true]{visibility:hidden;opacity:0;-webkit-transition:opacity .15s,visibility .15s;transition:opacity .15s,visibility .15s}.monsterinsights-tooltip[aria-hidden=false]{visibility:visible;opacity:1;-webkit-transition:opacity .15s;transition:opacity .15s}.monsterinsights-conditional-logic-container button:focus{outline:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-header{margin-bottom:30px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-header .monsterinsights-conditional-rule-sets-number{float:left}.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator{text-align:center;font-weight:700;display:block;margin:0 auto 20px;position:relative}.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator:after,.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator:before{content:"";position:absolute;top:45%;width:45%;height:2px;background:#d6e2ed;margin-top:-1px}.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator:before{right:0}.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator:after{left:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:24px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column{width:100%;margin-left:18px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field{text-transform:capitalize;width:100%;height:38px;min-height:38px;line-height:38px;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field.text-input{padding:0 8px;border-color:#ddd;text-transform:none;border-radius:5px;-webkit-box-sizing:border-box;box-sizing:border-box;height:38px;margin-top:0;line-height:38px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field input[type=text]{padding-top:5px;padding-bottom:5px;height:inherit}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field.multiselect--active .multiselect__tags .multiselect__spinner{z-index:1}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags{padding:0;height:38px;min-height:38px;border-color:#ddd;margin-top:0;-webkit-box-sizing:border-box;box-sizing:border-box}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags input[type=text]{border:0;height:36px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags .multiselect__single{margin-bottom:0;padding:0 8px;line-height:36px;font-size:14px;white-space:pre}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags .multiselect__placeholder{display:block;margin-bottom:0;line-height:36px;padding:0 8px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags .multiselect__spinner{width:35px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .add-new-condition{padding:6px 12px;margin:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .add-new-condition:focus{outline:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .remove-condition{border:0;padding:0;margin:0;background:rgba(0,0,0,0)}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .remove-condition:focus{outline:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .remove-condition .monstericon-times-circle{color:#dc3232;cursor:pointer;padding:0;margin:0 15px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .remove-condition .monstericon-times-circle:focus{outline:0}.monsterinsights-upload-media-wrapper .monsterinsights-dark{display:block}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media-label{margin-bottom:0}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media{display:block;width:100%;margin-top:20px;position:relative;max-width:300px}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media .monsterinsights-uploaded-media-overlay{display:none;background:rgba(0,0,0,.7);width:100%;position:absolute;top:0;right:0;height:100%;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media .monsterinsights-uploaded-media-overlay .monsterinsights-remove-uploaded-media{color:#fff;text-decoration:underline;margin-right:auto;cursor:pointer;padding:0 0 10px 10px}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media .monsterinsights-uploaded-media-overlay .monsterinsights-remove-uploaded-media:hover{text-decoration:none}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media:hover .monsterinsights-uploaded-media-overlay{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media img{max-width:100%;display:inline-block}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media{overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;margin-top:20px}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-input{width:73%;margin-left:2%;float:right;position:relative}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-button{width:25%;float:right;font-size:15px}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-button:active,.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-button:focus,.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-button:hover{outline:none}.monsterinsights-email-summaries-settings a{color:#509fe2!important}.monsterinsights-email-summaries-settings a:focus,.monsterinsights-email-summaries-settings a:hover{color:#393f4c!important}.monsterinsights-email-summaries-settings .monsterinsights-dark{display:block}.monsterinsights-email-summaries-settings .inline-field .monsterinsights-button:first-child{margin-right:0}.monsterinsights-email-summaries-settings .monsterinsights-settings-input-repeater{margin-bottom:18px}.monsterinsights-email-summaries-settings .monsterinsights-button.monsterinsights-button-disabled{cursor:not-allowed;background:#39967e!important;border-color:#4ab99b!important}.monsterinsights-accordion .monsterinsights-accordion{padding:0;border:1px solid #e0e0e0}.monsterinsights-accordion .monsterinsights-accordion div:not(:last-child){border-bottom:1px solid rgba(10,10,10,.1)}.monsterinsights-accordion .monsterinsights-accordion div:last-child .monsterinsights-accordion-item-details{border-radius:5px}.monsterinsights-accordion .monsterinsights-accordion dd{margin-right:0;margin-bottom:0}.monsterinsights-accordion .monsterinsights-accordion-item-trigger{cursor:pointer;outline:none}.monsterinsights-accordion .monsterinsights-accordion-item-details-inner,.monsterinsights-accordion .monsterinsights-accordion-item-trigger{padding:0 20px 30px}.monsterinsights-accordion .monsterinsights-accordion-item.is-active .monsterinsights-accordion-item-title{border-bottom:1px solid #e0e0e0}.monsterinsights-accordion .monsterinsights-accordion-item-title{position:relative;background-color:#fff;cursor:pointer}.monsterinsights-accordion .monsterinsights-accordion-item-title h4.monsterinsights-accordion-item-title-text{font-size:20px;margin-bottom:0;padding-left:1.25rem}.monsterinsights-accordion .monsterinsights-accordion-item-title h4.monsterinsights-accordion-item-title-text .title{padding-right:15px}.monsterinsights-accordion .monsterinsights-accordion-item-trigger{width:100%;text-align:right;background-color:rgba(0,0,0,0);border:none}.monsterinsights-accordion .monsterinsights-accordion-item-trigger-icon{display:block;position:absolute;top:0;left:1.5rem;bottom:0;margin:auto;width:8px;height:8px;border-left:2px solid #363636;border-bottom:2px solid #363636;-webkit-transform:translateY(-2px) rotate(-45deg);-ms-transform:translateY(-2px) rotate(-45deg);transform:translateY(-2px) rotate(-45deg);-webkit-transition:-webkit-transform .2s ease;transition:-webkit-transform .2s ease;transition:transform .2s ease;transition:transform .2s ease,-webkit-transform .2s ease}.monsterinsights-accordion .monsterinsights-accordion-item-trigger-icon.is-active{-webkit-transform:translateY(2px) rotate(-225deg);-ms-transform:translateY(2px) rotate(-225deg);transform:translateY(2px) rotate(-225deg)}.monsterinsights-accordion .monsterinsights-accordion-item-details{overflow:hidden;background-color:#fff;padding-top:15px}.monsterinsights-accordion .monsterinsights-accordion-item-details p,.monsterinsights-accordion .monsterinsights-accordion-item-details ul{font-size:1.2em;line-height:1.8}.monsterinsights-accordion .monsterinsights-accordion-item-enter-active,.monsterinsights-accordion .monsterinsights-accordion-item-leave-active{will-change:height;-webkit-transition:height .2s ease;transition:height .2s ease}.monsterinsights-accordion .monsterinsights-accordion-item-enter,.monsterinsights-accordion .monsterinsights-accordion-item-leave-to{height:0!important}body{background:#f3f6ff;margin:0}.monsterinsights-admin-page,.monsterinsights-admin-page *{-webkit-box-sizing:border-box;box-sizing:border-box;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}#wpcontent,.auto-fold #wpcontent{padding-right:0}.monsterinsights-highlighted-text{color:#64bfa5;font-weight:700}.monsterinsights-bold{font-weight:700}.monsterinsights-bg-img{width:100%;padding-top:66%;position:relative}.monsterinsights-bg-img:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;background-repeat:no-repeat;background-size:contain}.monsterinsights-header{padding:20px 10px;background-color:#f9fbff;min-height:85px}.monsterinsights-settings-panel-network>.monsterinsights-header{background-color:rgba(0,0,0,0)}.monsterinsights-logo-area{float:right;max-width:calc(100vw - 170px)}.monsterinsights-logo-area img{display:block;max-width:100%}@media (max-width:782px){.monsterinsights-logo-area{text-align:center;margin:0 auto;float:none}.monsterinsights-logo-area img{display:inline-block;max-height:35px}}@media (max-width:782px){.monsterinsights-header .monsterinsights-container,.monsterinsights-navigation-bar .monsterinsights-container{padding:0;width:100%}}.monsterinsights-navigation-bar{width:100%;background:#fff;border-top:1px solid #d5e2ed;border-bottom:1px solid #d5e2ed;padding:0 10px}@media (max-width:782px){.monsterinsights-navigation-bar{padding:0;border:0}}@media (max-width:750px){.monsterinsights-navigation-bar{background:none}}.monsterinsights-admin-page{position:relative}.monsterinsights-admin-page .monsterinsights-blocked{position:absolute;top:0;bottom:0;left:0;right:0;background:hsla(0,0%,100%,.5);z-index:999}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-header{padding-bottom:5px}.monsterinsights-admin-page .monsterinsights-header .monsterinsights-button{display:none}}.swal2-popup .swal2-title{line-height:1.2}#footer-left{color:#393f4c}#footer-left .monsterinsights-no-text-decoration{text-decoration:none;color:#fdb72c;font-size:14px}#footer-left a{color:#509fe1}#wpfooter{position:relative}#wpfooter:before{right:20px;left:20px;height:1px;background:#d6e2ed;content:"";position:absolute;top:-12px}.monsterinsights-container{margin:0 auto;max-width:100%;width:750px}.monsterinsights-admin-page .monsterinsights-navigation-tab-link{text-decoration:none;padding:17px 0 15px;border-bottom:2px solid #fff;font-size:14px;color:#393f4c;display:inline-block;margin-left:25px;line-height:1;outline:none;font-family:Lato,sans-serif}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.router-link-exact-active,.monsterinsights-admin-page .monsterinsights-navigation-tab-link:focus,.monsterinsights-admin-page .monsterinsights-navigation-tab-link:hover{color:#509fe2;border-bottom-color:#509fe2;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.router-link-exact-active{font-weight:700}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.monsterinsights-navigation-tab-disabled:focus,.monsterinsights-admin-page .monsterinsights-navigation-tab-link.monsterinsights-navigation-tab-disabled:hover{border-bottom-color:rgba(0,0,0,0);color:#393f4c;cursor:default}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.year-in-review{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAANCAYAAACdKY9CAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAJKSURBVHgBjdJbSFMBHMfx/7lMT7qdk5s7IsvWdIqZ6UFNJC+Yl4EGQUkYItHN8NZl7KESohUUVKCst8QoYkTFlLzlhWHZispSK7NWyjbdZmPJ5tbuLk9ZBD0U+H35v3xe/vADAEDgr15nZ3PgPymLi3E0o9F4XJim5P7GtfEpvIJHNYrJE6UXDXF/4MdKec3qrU2pakNS6+YuhULhQL98z3tvR26C58OKgY7aVJjWd/bUT8OuwtGsvSXJuICKQPEyLJZpTvjutI4UURqgiNm7NqE+I1EvXNDu60rShr2mM5K8etOK22H2OrCsCXUbGnD0PgD8a2B0uvKKTySBzVJqC8IsHR3cVhHNCgia3F2N0wKxnuUR4wiCsL8eLj8wxuyM0Q3l5nTTfDwIQhcNVL4HXK6Aqq9Dfu/2xpJoHhmViaEIiTyT1dMzQl0yKjqoI9e5kbStQ0ByMfBhcaCeqQO3n5i1hxgVB/NP8jiRDtzjXIoUb6fPR0h6EONwA9gIHsQXDQNfhMMR8j5Q9nHpp88uN8rEmJjSt1bMshDrSywoa0mNnxKI06fAZZEBTuwCPrMIaMQiPNEavvnZ5fl0WaqnKUnEYK3XhIVBc4GCR6yHDdIvkFw+BwSXghc3xOGBnonOEVdmg+Ly41uNEg7fGeKb8ahIulqSpwH7Ozl4pTtg2aOBN7rWO2NW69UuatrC4qFsJbSjKE5wM5sGX0H7oZu2+f7DbNBSFXqqOj3QnK7M+dcsjOc6Tz6sOEbCy+v7W56runvVF8rzYQ39AJVT15Tcu/1IAAAAAElFTkSuQmCC);background-repeat:no-repeat;background-position:100% 50%;padding-right:18px;font-weight:700}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-navigation-tab-link{width:100%;text-align:center;padding:10px;color:#509fe2;font-size:16px;background:#fff;border:none}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.router-link-exact-active{display:none}.monsterinsights-admin-page .monsterinsights-navigation-tab-link:focus{color:#393f4c;text-decoration:underline}}.monsterinsights-admin-page .monsterinsights-button{background:#509fe2;border:solid #2e7fbe;border-width:1px 1px 2px;border-radius:3px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:10px 20px;text-decoration:none}.monsterinsights-admin-page .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-button:hover{background-color:#3a93dd;border-color:#2971a9;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-disabled{background:#f3f6ff;border-color:#d6e2eb;color:#8ba4b7}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary{background:#8da4b5;border-color:#6f8ca0;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary:hover{background-color:#7e98ab;border-color:#627f94;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green{background:#5cc0a5;border-color:#40a88d;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green:hover{background-color:#4ab99b;border-color:#39967e;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-gray{background:#8ea4b4;border-color:#738ea1;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-gray:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-gray:hover{background-color:#596771;border-color:#738ea1}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-gray.monsterinsights-button-disabled{pointer-events:none}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-text{background:rgba(0,0,0,0);border:none;color:#509fe2;padding:0;border-radius:0;text-decoration:underline}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-text:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-text:hover{background:rgba(0,0,0,0);color:#393f4c}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-red{background:#ea4e64;border-color:#d21933;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-large{font-size:16px;padding:14px 27px}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-small{font-size:13px;line-height:20px;padding:5px 10px}.monsterinsights-green-text{color:#5cc0a5;font-weight:700}@media (max-width:782px){.wp-responsive-open #wpbody{margin-right:-18px}}.monsterinsights-mobile-nav-trigger{color:#393f4c;font-size:16px;font-weight:500;width:100%;display:block;border-color:#d6e2ed;border-style:solid;border-width:1px 0;background:#fff;padding:15px 10px;line-height:1;margin:0}@media (min-width:783px){.monsterinsights-mobile-nav-trigger{display:none}}.monsterinsights-mobile-nav-trigger i{color:#acbdc9;margin-right:10px;vertical-align:middle}@media (max-width:782px){.monsterinsights-main-navigation{background:#fff;height:0;overflow:hidden}.monsterinsights-main-navigation.monsterinsights-main-navigation-open{padding:10px 0;height:auto;border-bottom:1px solid #d6e2ed}}@media (min-width:782px){.wp-admin .monsterinsights-swal{margin-right:160px}.auto-fold .wp-admin .monsterinsights-swal{margin-right:36px}}@media (min-width:961px){.auto-fold .wp-admin .monsterinsights-swal{margin-right:160px}.folded .wp-admin .monsterinsights-swal{margin-right:36px}}.monsterinsights-modal{position:fixed;top:0;right:0;left:0;bottom:0;background:rgba(0,0,0,.8);z-index:99999;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights-modal .monsterinsights-modal-inner{background:#fff;padding:50px;border:1px solid #d6e2ed;text-align:center;width:750px}.monsterinsights-modal .monsterinsights-modal-inner h2{margin-top:0;margin-bottom:0;line-height:1.4}.monsterinsights-modal .monsterinsights-modal-inner p{margin-bottom:0}.monsterinsights-modal .monsterinsights-modal-inner .monsterinsights-modal-buttons{margin-top:50px}.monsterinsights-modal .monsterinsights-modal-inner .monsterinsights-button{margin:0 10px}.monsterinsights-welcome-overlay{position:fixed;top:0;right:0;left:0;bottom:0;z-index:99999999;font-family:inherit;overflow:hidden;background-color:rgba(0,0,0,.5)}.monsterinsights-welcome-overlay .monsterinsights-welcome-overlay-inner{background:#fff;padding:30px;width:70%;margin:0 auto;position:relative;top:10%;height:80%}.monsterinsights-welcome-overlay .monsterinsights-overlay-close{background:none;border:none;position:absolute;top:5px;left:7px;padding:0;color:#777}.monsterinsights-welcome-overlay .monsterinsights-welcome-overlay-content{height:100%}.monsterinsights-welcome-overlay .monsterinsights-welcome-overlay-content iframe{height:100%;width:100%}.monsterinsights-float-right{float:left}.monsterinsights-loading-spinner-inline{text-align:center;margin:25px}.monsterinsights-loading-spinner-inline .monsterinsights-loading-spinner-inline-loader-holder{display:inline-block}.monsterinsights-semrush-cta{background:#fff;border-right:3px solid #338eef;padding:20px 26px;border-radius:0 3px 3px 0;position:relative}.monsterinsights-semrush-cta br{display:none}.monsterinsights-semrush-cta .monsterinsights-semrush-cta-close{position:absolute;top:12px;left:12px;cursor:pointer;border:0;background:rgba(0,0,0,0);padding:0;margin:0;outline:none}.monsterinsights-semrush-cta .monsterinsights-semrush-cta-title{font-weight:700;font-size:16px;line-height:20px;color:#393f4c;margin:0}.monsterinsights-semrush-cta .monsterinsights-semrush-cta-content{font-weight:400;font-size:14px;color:#393f4c}.monsterinsights-semrush-cta .monsterinsights-button{background:#338eef;border-radius:3px;font-weight:400;font-size:14px;border-width:0;padding:7px 12px}.monsterinsights-semrush-cta .monsterinsights-button:active,.monsterinsights-semrush-cta .monsterinsights-button:focus,.monsterinsights-semrush-cta .monsterinsights-button:hover{background:#3088e6;outline:none}.monsterinsights-row-highlight{-webkit-animation-name:color;animation-name:color;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-iteration-count:2;animation-iteration-count:2}@-webkit-keyframes color{0%{background-color:#fff}50%{background-color:#509fe2}to{background-color:#fff}}@keyframes color{0%{background-color:#fff}50%{background-color:#509fe2}to{background-color:#fff}}
1
+ @import url(https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap);strong[data-v-a9c27d52]{display:block}[data-v-6038a3d0]{will-change:height;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.expand-enter-active,.expand-leave-active{-webkit-transition:height .5s ease-in-out;transition:height .5s ease-in-out;overflow:hidden}.expand-enter,.expand-leave-to{height:0}.monsterinsights-dark[data-v-54110c18]{display:block}.monsterinsights-reset-default[data-v-54110c18]{margin-right:5px}.monsterinsights-dark[data-v-7262cc05]{display:block}.monsterinsights-admin-page .monsterinsights-floating-bar{background:#338eef;color:#fff;font-size:16px;line-height:140%;padding:16px 58px 16px 32px;text-align:right;position:relative;margin:-20px -10px 20px}.monsterinsights-admin-page .monsterinsights-floating-bar:before{content:"";width:16px;height:16px;background:url(../img/icon-info.svg) no-repeat 50%;position:absolute;right:32px;top:20px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-floating-bar{margin-top:-10px;padding-left:20px;padding-right:20px}}.monsterinsights-admin-page .monsterinsights-floating-bar a{text-decoration:underline;color:#fff}.monsterinsights-admin-page .monsterinsights-floating-bar a:focus,.monsterinsights-admin-page .monsterinsights-floating-bar a:hover{color:#fff;text-decoration:none}.monsterinsights-admin-page .monsterinsights-floating-bar .monsterinsights-floating-bar-close{padding:0;border:0;background:rgba(0,0,0,0);color:#fff;font-size:16px;position:absolute;left:15px;top:calc(50% - 5px);margin-top:-5px}.monsterinsights-admin-page .monsterinsights-slide-enter-active,.monsterinsights-admin-page .monsterinsights-slide-leave-active{-webkit-transition-duration:.5s;transition-duration:.5s}.monsterinsights-admin-page .monsterinsights-slide-enter-to,.monsterinsights-admin-page .monsterinsights-slide-leave{max-height:100px;overflow:hidden}.monsterinsights-admin-page .monsterinsights-slide-enter,.monsterinsights-admin-page .monsterinsights-slide-leave-to{overflow:hidden;max-height:0}.monsterinsights-container[data-v-102a61b0]:after{display:table;clear:both;content:""}.monsterinsights-quick-links{position:fixed;bottom:25px;left:25px;-webkit-box-shadow:0 0 10px 0 #ababab;box-shadow:0 0 10px 0 #ababab;width:60px;height:60px;border-radius:50%;background:#fff;z-index:1000;padding:5px 10px}.monsterinsights-quick-links.monsterinsights-quick-links-open,.monsterinsights-quick-links:focus,.monsterinsights-quick-links:hover{-webkit-box-shadow:0 0 15px 2px #ababab;box-shadow:0 0 15px 2px #ababab}.monsterinsights-quick-links-label{border-radius:50%;background:#fff;border:2px solid rgba(147,120,207,.21);position:absolute;right:2px;left:2px;top:2px;bottom:2px;padding:6px 8px 6px 6px;display:block;width:56px;height:56px;outline:none;cursor:pointer}.monsterinsights-quick-links-open .monsterinsights-quick-links-label .monsterinsights-quick-link-title{opacity:0;pointer-events:none}.monsterinsights-bg-img.monsterinsights-quick-links-mascot{-webkit-transform:rotate(15deg);-ms-transform:rotate(15deg);transform:rotate(15deg);-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;padding-top:100%;-webkit-transition:-webkit-transform .3s ease;transition:-webkit-transform .3s ease;transition:transform .3s ease;transition:transform .3s ease,-webkit-transform .3s ease;display:block}.monsterinsights-bg-img.monsterinsights-quick-links-mascot:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFIAAABQCAMAAAC9OtKiAAAC91BMVEUAAABvS7ttSbluSrpvS7tuSrpvS7tvS7tvSrtsSLdsTLFvS7tuSrluSrpvS7tvS7ttSblvS7tpRrRvS7tvS7tvS7tvS7tvS7tgP6lhP6pvS7tvS7s0OkZvS7tvS7tvS7s5P0xnRbJsSLc2PElvS7s5P0w5P0w5P0w6P05vS7tvS7thP6lfPqc5P0wvMUFgPqg5P0xfPqcrMDk5P0xfPqcrMDlXRolqR7U5P0xfPqeUeM+ljdTT6O////9vS7t9XcI5P0xfPqfqTmQjIyOSdc1/X8OiitOkjNQyMjKYftCGZ8d4VcDsYndxTbxkQqyLbcmagdFmRLChh9N2U7+DZMZ6WMFzUL1yTr2fhdKQc80ewYX/iTrY6/GXe9CPcsx7W8H9/v6BYcUrMDqNb8uIasmdhNGcgtGVec9uSrrv9/lsSbb4/P1pRrTz+fvQ5u2Ia8fn8vfg7/SOcsqEZsTb7PJzVLY+Q1OsotugoqJESFrk8PXS5u/O4+pTT3FUXWkvLi/V4+ihsbr8+vvr9PjAw+XG2eDA09r0sbyZmZlKSmRMVGE9NV9BSFUxNETk5PTO3uzK2evEzejM4OeljNS3ydGLccJ/YcB5WruJlqDyiprweoxteINganVbZHCcRVMoKCrx8/n98PLRzeu2teClktbNzc2Xf8u0w8r0usO2t7jkvqBwYZx1folncX1LO3rdS2Dq6uq8vuO+sOGxqd2x4duY3M3ausWtvsSF18KDbrfgqbWYp7FeP6OEj5hYPpV5hpBhWoToboHtZnrLSFxzOkXs7Pf84eTW2ODY09e6zdXb1s6vwMjdtb52Vb2ss7Vs0LKKebLkxa2kqqx7aKtHyZ1pWJZkWopROonndYfoWGzrVmzQWWtFPGr5llRSUlI/Pz88MjQ4KCouJSbX39/l2tvAwb6XyL2Sf7x+Ybv0pbHfl6ZbuJfihZbig5RnqpHss4mrlomIiIjNaXfTY3PHWGiDV2bxnWTSkGRiYmKmQ1NTQVBENkBUODwEKmHaAAAAOnRSTlMA7wscTEHV+/QT/tyvt5+JXjYE4cmWVij05W9nWoV8dkA6LxGlJerYxMGofEnhx8ChkXZrJOnf0JN2dWY7XQAACrdJREFUWMOdmGVgWlcUgEnSxaVpI+187dxdHo/DI+WRAcECgbAREgKBuGuTZsvqXTvptnbd1s7bbpW5u7u7u7vrj51773s8LMuW7weFW/hy7rn3XHmqydm1MD1V8275qumSkwaZ5Umt6fsCzJiushQAsssSGsszsTVz1vSMGVngFwH2iGuckQ0ekwdmTk9ZCGb7eTaA/JiE7gng9NtEmD2tMHOywGZUq40WyMyQmmYVAmg5LiROL0wMyMnVqdXqWjfkZTDjwQAujuNMWhFKpqOcDSaOUyPVZsjLIS37AjYhLlTCvP8sSi/IYW+KwaLnOANxGsxQgvncgxoRUautiY5a0ZQTahfIK2dfhRr8da2axumGQlWZbNRrtRhmJosgH4qmUu4lT8VMKgirKWGAvdJA5ChBqoQMaZIeNJXyYPAAlKar0gG8+HOjmuEHwNFihLSIE8qwMrPBAtlTKTPB2wswu2wX8HCESqY8rx4gKCkDWgIUzTsIwBwi4f47aeCvDJsB0kgqaTIZTdhthpcaRfwGWAJcwA37TKHE/taqK70eYArsuYRJr/QbCQBAjR/9zinWEJpCMr8NvW4XMxgkZS0nIUpR1pBEmKZSIlmYsmqiqLTXUYOdTCJ91wW9UpQ2LcXkl+aTG3aZsmZC0c7WGjmk+oLW1mYAaB2wEYlIQjR5o0kAKP+3Xs8ozQMIRMcEQ60O69En0bwee+oy2fychJfmNO3gmZMMetlBWYDU6yNcpFIts9naLvmI+RnJpUwnlxkImXumUhYBZtxuwKExKuPcZNVZobndqiNYHa0iK8lQSM9WJBt+sIlOgJLUpdgniwy18jgPoAmtA+u6/KSjtui6Ieo5byjISbigIJVyJgTUiWzWIbl9XDxBLWKLywAUplLOgBppTJRMfo4xojABf5JSm3o9KgY37TTOnLpqSZmry/VzyZhwWOIa6mGvlBsiADFGOILktObquVR4/fIb9v9mmDlJLeKg2LnY0nbQn6qvOOuRxd39Z597w5AxMVyROierymzA2Oo4BlvNScJuvEzDaGjx8Z03GGKVopRTNxSnVOZBU1QZYYs5xw1RoSzt5nn+BruiDElRTrZoloAd5zZHsVOlkbuiQRNHCzrPvkpx6tkrQHpKZQFgBitpturYPKo7S5PIYnSODiXOqsl2i0Lg2PpjbEIjAY1J9PBIgjMIs1Mri8CvjuMKTQraiHJU7vsF2+5fhOw8fr9J9ltbnPFGzONkYZ5jJCnctlKIcsAx81MVuSlOGR3rpBFCruS4bSOCsHrHhRO33TZx4cWrBWH/Y5KLnK4b0QJfoklNG1V2bl4kCON3jfG8z+cjnyc2CsKB85OKvIZUj3GyIM9YvuGiizYsv5wql60SVt816uvu6OjuQWV3Sz8/MSIclpDSDLJuRPfEoUThhiqJL0+nxvFlfHcDmigtGk2Hb+lGYf/9EoucRplyuB99oEqmourxsXFh41pfWxsKGR2ktnrGLhEOmJ9Q5DTA1HOyYeuDVW9t2vQzKive2C6sWtrf0OHjZdo0hIVrx4UjE4q8WlEu1CTy9PsnI+9vqqh4SBC2+Bo6eIUGzeUb3qxa3vPEoLB3fJE3KcqeJGXDeycTLt1U8bBwH9/Rxseg0VxUgWz1XSgcGKvMB7ui9GmS+J0YT1uw4A9hcGlPQz+v4NNcXkF4feHYSFyYpWBUlJ1tScp3aZALFvwlbOfbFvMx9EvKn1YM3yOcGHeH4BTl2d2Ki1Xm41KQC9YIE/0Nvlhlj9TxO6++5kXhsNjrJvQqynN4JcytxHn9u9SICMLa7hY+FhzLj39848HlWK6jq4X5scouRbmE70cRY8NFy7f+8J5svFRYxbf0xCmxR9cMn8HKdWNMMovToE9R3oTdkZ1f4ARnvWbKS3gyJW++/ZZOSblYc/2KqzUU/mJh96gx2wNaRXlVJ2a9TSodVP5NRoZymrCDx34/d8opp7wsOVtokEy5PaosT3P3gjl6CmwKL6FJYtIHq6rewhAlJUbZzd98CuF2qR5JkIlRpmdagpzFIhm9ASeA7Uo65RYubmlZ/iaWzAfM+OEmYZzv4W+hyuckZTTINv4SOZeFEMIdXi7yWtwqTR7oPYeX+AZnyHUPf4DChx+6Thgc80lRfvvsMp4//YVrv5eD7OBHhP2k5dcWwXOIrDyPHgxEEGXn6Q+gE63Xkdc/hadw+/mK5PK24RXDn7xz6qmnXruQjWX3E8L+7FqcZya7bT0r8ujaboOuUdn5dUWUX7DE+S0rPiUj3nn+i7+dSjidX0ykWORHSjPSTg4FYmyRM+cQL3Pr60z4wNNbhNVrl654lpf4lSqfxLR3aFo6V7FUzpqtxX6Sk2ed5DJ5r6L/itpRPspjt955562P4XFjpXDh8PCY3PydFCWy0HeXcADLJInOgAcx0DNjNYQ1Z9xYiW88S/hEzrW/JKweXsrLfERzyVOWjkhTqMCJ41GJpyawSan0WB7R2O2k6/bOeOHZ5KSxSNgYDZKOOHabMHqJtFzmZPmJJ8IFozt5F0TOEg0YpsFlv+mcmAhvqqOHjBFhRyefzH3CYO4+7ExQy5ReECWlwQmmXpKBaj2etA1DVy4599wlVw41cRJ3DAo71iYKxy4WBp8X0zJQua+TavDvKxUZdkM9nVEk0rAxwskozlVPxRvPH0cjBlNA7o0hWemxqKNOM1j6jJXoNLCCSnTieejiLTHC7YKw8jOigWI8EkSYklWkjMFkAbA4zZbeRCVD/+ogHmHumTh/2bLzJ+4ZFwTh/iYD+aKlFKdQk6yskbddfSXefqqD9R6AmurUShyk+1EaZU3jK45cdIbrM1W7Ais/rEitXJFdXecZw8RlUK74KdC/9OrbIyMjKxctWtPYeKa1uXW9ujISyFKVOllHMcqAvEcawWQIRyJ1RruiTI0lwCGbiREArGE75wJVAZ05dg4xRffIPnAGmwzVGP8USo/IIZGVa+5ubXdYdXg9FLNUJSY1rR0kpOyRxq6uCAqnVJrNHGFb42s6wjockBJVni2qDILZz9XZw7XVBgPxTa7U671BW8hkcpnJI6qugdy77yVOjFJvKVKl0cjC0v0yBo+7pkYrii6CyVVjpjidbrfHAjFgz9c3Q7N155qd1mZHMADlqqwutlTQ6vWboGCP0vws8FgsMDkWC2pLSov23HXmvhDk1rW363Rvn+kAaM61FJJjZT1WiXzX08OueOCy1Gtl6hEn7DZvXraHvNVGcaflsI3QE/TrEDKJ8JHFbGydC81gcentvXpZWQyiKyBqFczkYVCaW6sgBlwuzx7sQJ5nca3T6e49U0chK9ERYLW2y/2xACrzzfIY6P1JyhC2chRXWjpbHPPBXb/+lcYz70bjnFnYcghGOxfA6nCcUNDe3tp6SE5WSBnZJKVNuehDmfwgFZPf2ti4Zue9c06igc/RHXVUayv+gWNnzdU52g8tA/9USoa7ULk7FM84vBE5mn08dBfVPg6Hbs6hKtW8udY56Rl5Tu9/UdZnYavC7kwZ5Yg5+cfSvBwyE+PO9AQG+jjvgCO3L0nZN2DN7eJsA+vM2fFPH+Yf13i4fMKiqvT459aOdt2Ao7lZpxuoQZxU6SFvn7Hq2sGxXudonVuu+h/MmosrgM6B2dDpgECVQMAmq4O+WCd9vPoPhumB3HmlMigAAAAASUVORK5CYII=)}.monsterinsights-quick-links-open .monsterinsights-bg-img.monsterinsights-quick-links-mascot{-webkit-transform:rotate(-15deg);-ms-transform:rotate(-15deg);transform:rotate(-15deg)}.monsterinsights-quick-links-menu{position:absolute;bottom:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse;left:6px;margin-bottom:10px}.monsterinsights-quick-links-menu .monsterinsights-quick-links-menu-item{display:block;width:48px;height:48px;background:#509fe2;border-radius:50%;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);-webkit-transition:-webkit-transform .2s;transition:-webkit-transform .2s;transition:transform .2s;transition:transform .2s,-webkit-transform .2s;position:relative;-webkit-box-shadow:0 0 10px 0 #ababab;box-shadow:0 0 10px 0 #ababab;margin-bottom:6px;color:#fff;text-decoration:none;text-align:center;font-size:18px;line-height:48px}.monsterinsights-quick-links-menu .monsterinsights-quick-links-menu-item:hover{color:#fff;background:#50abee;-webkit-box-shadow:0 0 15px 2px #ababab;box-shadow:0 0 15px 2px #ababab}.monsterinsights-quick-links-menu .monsterinsights-quick-links-menu-item.monsterinsights-show{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.monsterinsights-quick-links-menu .monsterinsights-quick-links-menu-item.monsterinsights-quick-links-item-upgrade{background:#704cbc}.monsterinsights-quick-links-menu .monsterinsights-quick-links-menu-item.monsterinsights-quick-links-item-upgrade:hover{background:#509fe2}.monsterinsights-quick-link-title{position:absolute;left:100%;margin-left:10px;font-size:13px;color:#fff;background:#595959;border-radius:5px;white-space:nowrap;padding:6px 8px;display:block;top:50%;margin-top:-12px;line-height:1;-webkit-transition:opacity .2s ease;transition:opacity .2s ease;outline:none}@font-face{font-family:Lato;src:url(../fonts/lato-regular-webfont.woff) format("woff"),url(../fonts/lato-regular-webfont.woff2) format("woff2");font-weight:400;font-style:normal}@font-face{font-family:Lato;src:url(../fonts/lato-bold-webfont.woff) format("woff"),url(../fonts/lato-bold-webfont.woff2) format("woff2");font-weight:700;font-style:normal}@font-face{font-family:text-security-disc;src:url(data:font/woff2;base64,d09GMgABAAAAAAjoAAsAAAAAMGgAAAidAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHFQGVgDWYgpQdQE2AiQDCAsGAAQgBYUOBy4bvi8lYxtWw7BxAPB87x5FmeAMlf3/96RzDN74RcXUcjTKmrJ3T2VDSShiPhfiIJxxS7DiLkHFfQV33CM4427mAred74pWur/J3dyVsKy7coREA8fzvPvpfUk+tB3R8YTCzE0SCLepejmJ2u1yqp+kC7W4Rc/tDTs3GpNJ8ttRPOSTPhsXlwbi4kVYWQmAcXmlrqYHMMsBwP/zHMz7fkF1gijOKuFQIxjwlGa2lkARhYaBxFHT54IOgBMQADi3LipIMAA3geO41EUkBTCO2gkxnOwnKYBx1E6p5WS+QUCMq50rNch6MwUCAAiAcdgttYVSIfPJ5kn6ApRFQ6I88BxLvvIC/maHUHS3TIoKiwLbbM8nEFWgE1oDz3woSxpagWbBXcQWhKtPeIlg6tK+7vX57QOszwU3sGUJrA7h2Mx1IWCNr9BKxsYo+pzS/OCO0OG9mwBkx337+lcuSxRdBcc+fJxlcAjK/zCfdgtBzuxQcTqfY4Yn6EB/Az3JS/RMu5f6B8wrn55S0IxdlLn+4Yb/ctIT+ocWYPcGAOvxSjEjpSiVMqSgFWVjzpCCXjAIRirTABpEQ2gYjaBRNIbG0QSaRFNoGs2gWTSH5tECWkRLaBmtoFW0htbRBtpEW2gb7aBdtIf20QE6REdFDlkZEh2jE3SKztA5ukCX6Apdoxt0i+7QPXpAj+gJPaMX9Ire0Dv6QJ/oC/qKvqHv6Af6iX6h3+gP+ov+of+I+ECMxETMiDmxIJbEilgTG2JL7Ig9cSCOxIk4ExfiStyIO/EgnsSLeBMf4kv8iD/taQANoiE0jEbQKBpD42gCTaIpNI1m0CyaQ/NoAS2iJbSMVtAqWkPraANtoi20jXbQLtpD++gAHaIjdIxO0Ck6Q+foAl2iK3SNbtAtukP36AE9oif0jF7QK3pD79B79AF9RJ/QZ/QFfUXf0Hf0A/1Ev9Bv9Af9Rf/Qf9DQABpEQ2gYjaBRNIbG0QSaRFNoGs2gWTSH5tECWkRLaBmtoFW0htbRBtpEW2gb7aBdtIf20QE6REfoGJ2gU3SGztEFukRX6BrdoFt0h+7RA3pET+gZvaBX9Aa9Re/Qe/QBfUSf0Gf0BX1F39B39AP9RL/Qb/QH/UX/0P8l9vq9gXwDIUCliyAhRAgTIoQoIUaIExKEJCFFSBMyhCwhR8gTCoQioUQoEyqEKqFGqBMahCahRWgTOoQuoUfoEwaEIWFEGBMmhClhRpgTFoQlYUVYEzaELWFH2BMOhGPCCeGUcEY4J1wQLglXhGvCDeGWcEe4JzwQHglPhGfCC+GV8EZ4J3wQPglfhG/CD+GX8Ef4p9sdgoQQIUyIEKKEGCFOSBCShBQhTcgQsoQcIU8oEIqEEqFMqBCqhBqhTmgkNBGaCS2EVkIboZ3QQegkdBG6CT2EXkIfoZ8wQBgkDBGGCSOEUcIYYZwwQZgkTBGmCTOEWcIcYZ6wQFgkLBGWCSuEVcIaYZ2wQdgkbBG2CTuEXcIeYZ9wQDgkHBGOCSeEU8IZ4ZxwQbgkXBGuCTeEW8Id4Z7wQHgkPBGeCS+EV8Ib4Z3wQfgkfBG+CT+EX8If4Z8AZpAQIoQJEUKUECPECQlCkpAipAkZQpaQI+QJBUKRUCKUCRVClVAj1AkNQpPQIrQJHUKX0CP0CQPCkDAijAkTwpQwI8wJC8KSsCKsCRvClrAj7AkHwpFwIpwJF8IV4ZpwQ7gl3BHuCQ+ER8IT4ZnwQnglvBHeCR+ET8IX4ZvwQ/gl/BH+lzv+AmMkTYAmSBOiCdNEaKI0MZo4TYImSZOiSdNkaLI0OZo8TYGmSFOiKdNUaKo0NZo6TYOmSdOiadN0aLo0PZo+zYBmSDOiGdNMaKY0M5o5zYJmSbOiWdNsaLY0O5o9zYHmmOaE5pTmjOac5oLmkuaK5prmhuaW5o7mnuaB5pHmieaZ5oXmleaN5p3mg+aT5ovmm+aH5pfmj2ZRAqCCoEKgwqAioKKgYqDioBKgkqBSoNKgMqCyoHKg8qAKoIqgSqDKoCqgqqBqoOqgGkE1gWoG1QKqFVQbqHZQHaA6QXWB6gbVA6oXVB+oflADoAZBDYH+uxaEWDBiIYiFIhaGWDhiEYhFIhaFWDRiMYjFIhaHWDxiCYglIpaEWDJiKYilIpaGWDpiGYhlIpaFWDZiOYjlIpaHWD5iBYgVIlaEWDFiJYiVIlaGWDliFYhVIlaFWDViNYjVIlaHWD1iDYg1ItaEWDNiLYi1ItaGWDtiHYh1ItaFWDdiPYj1ItaHWD9iA4gNIjaE2DBiI4iNIjaG2DhiE4hNIjaF2DRiM4jNIjaH2DxiC4gtIraE2DJiK4itIraG2DpiG4htIraF2DZiO4jtIraH2D5iB4gdInaE2DFiJ4idInaG2DliF4hdInaF2DViN4jdInaH2D1iD4g9IvaE2DNiL4i9IvaG2DvE3iP2AbGPiH1C7DNiXxD7itg3xL4j9gOxn4j9Quw3Yn8Q+4vYP8T+M6cIDBz9EXfeUHR1JyygPL/++I3R1cRvdDr+E12Jfh3Q0EN/fHn2mXptpJxUkIqu/Cs2egM33OjSLcT33I82+B9nP37X/c0W52623s45CYCo03QIBCVrAFAycnSYSqvO4YJt/NP73YqA/giNZhJ6sBbmql+0SQZaxNOZudJbc2nqxNvpM+veq7Sz2LUgFEu+VLs+Ay3yp7MVertp6i23v2Rmv5gmHDhSQ6t5GmTaqTsqhpWwmbOk3uKJrNOmwSSMC17jghqygilDOUU3KlLmHHNrajw3DVNVGWytGZDisM/cbkdRnvfIUJkaGJlgAYcoQ5bGptTmGc1R7pBC3XhFsLXnXR54qrMc+dGNBkqE4laBi4KmZYGom8vIy0lTyBkppBjLoTndMmrofIRORirsNlCbXzCgulmo36KztS2iV8rrNoRUL5VdkMSGoSXroC1KOQAA) format("woff2"),url(data:font/woff;base64,d09GRgABAAAAAAusAAsAAAAAMGgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPgAAAFZjRmM5Y21hcAAAAYQAAAgCAAArYmjjYVVnbHlmAAAJiAAAAEEAAABQiOYj2mhlYWQAAAnMAAAALgAAADYR8XmmaGhlYQAACfwAAAAcAAAAJAqNAyNobXR4AAAKGAAAAAgAAAAIAyAAAGxvY2EAAAogAAAABgAAAAYAKAAAbWF4cAAACigAAAAeAAAAIAEOACJuYW1lAAAKSAAAAUIAAAKOcN63t3Bvc3QAAAuMAAAAHQAAAC5lhHRpeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGScwDiBgZWBgSGVtYKBgVECQjMfYEhiYmFgYGJgZWbACgLSXFMYHIAq/rNfAHK3gEmgASACAIekCT4AAHic7dhl0zDVmUXh5+XFHYK7E0IguFtwt4QQgmtwd3d3d7cED+4SXIO7u7vbsNfaUzU1fyGcu66u1adOf+6uHhgYGGpgYGDwL37/iyEHBoZZcWDQLzUw9NK/7A5if/DA8OwPOfQknBky+0P8/PPPOcd1UJ785frr/Dq/zq/z6/w3zsCgoX/xX74GRsxbcYpRB1iDB/7PGvT/DFGDenBwe8hKD1XpoSs9TKWHrfRwlR6+0iNUesRKj1TpkSs9SqVHrfRolR690r+p9BiVHrPSY1V67EqPU+lxKz1epcev9ASVnrDSE1V64kpPUulJKz1ZpSev9BSVnrLSU1V66kr/ttLTVPp3lZ62/KJSerpKT1/pP1R6hkrPWOmZKj1zpWep9KyVnq3Ss1d6jkrPWem5Kj13peep9LyVnq/S81d6gUr/sdILVnqhSi9c6UUqvWilF6v04pVeotJLVnqpSi9d6WUqvWyll6v08pVeodIrVvpPlf5zpVeq9F8qvXKl/1rpVSr9t0qvWunVKr16pdeo9JqVXqvSa1d6nUqvW+n1Kr1+pTeo9N8rvWGlN6r0xpXepNKbVnqzSm9e6S0qvWWlt6r01pXeptLbVnq7Sm9f6R0qvWOld6r0zpXepdK7Vnq3Su9e6T0qvWel96r03pXep9L7Vnq/Su9f6QMqfWClD6r0wZU+pNKHVvqwSh9e6SMqfWSlj6r00ZU+ptLHVvq4Sh9f6RMqfWKlT6r0yZU+pdKnVvq0Sp9e6TMqfWalz6r02ZU+p9LnVvq8Sp9f6QsqfWGl/1Hpf1b6okpfXOlLKn1ppS+r9OWVvqLS/6r0lZW+qtJXV/qaSl9b6esqfX2lb6j0jZW+qdI3V/qWSt9a6dsqfXul76j0vyt9Z6XvqvTdlb6n0vdW+r5K31/pByr9YKUfqvTDlX6k0v+p9KOVfqzSj1f6iUo/WemnKv10pZ+p9LOVfq7Sz1f6hUq/WOmXKv1ypV+p9KuVfq3Sr1f6jUq/Wem3Kv12pd+p9LuVfq/S71f6g0p/WOmPKv1xpT+p9KeV/qzSn1f6i0p/WemvKv11pb+p9LeV/q7S31f6h0r/WOmfKv1zDfI26KKHED1Y9JCihxI9tOhhRA8rejjRw4seQfSIokcSPbLoUUSPKno00aOL/o3oMUSPKXos0WOLHkf0uKLHEz2+6AlETyh6ItETi55E9KSiJxM9uegpRE8peirRU4v+rehpRP9O9LSify96OtHTi/6D6BlEzyh6JtEzi55F9KyiZxM9u+g5RM8pei7Rc4ueR/S8oucTPb/oBUT/UfSCohcSvbDoRUQvKnox0YuLXkL0kqKXEr206GVELyt6OdHLi15B9Iqi/yT6z6JXEv0X0SuL/qvoVUT/TfSqolcTvbroNUSvKXot0WuLXkf0uqLXE72+6A1E/130hqI3Er2x6E1Ebyp6M9Gbi95C9JaitxK9tehtRG8rejvR24veQfSOoncSvbPoXUTvKno30buL3kP0nqL3Er236H1E7yt6P9H7iz5A9IGiDxJ9sOhDRB8q+jDRh4s+QvSRoo8SfbToY0QfK/o40ceLPkH0iaJPEn2y6FNEnyr6NNGniz5D9JmizxJ9tuhzRJ8r+jzR54u+QPSFov8h+p+iLxJ9sehLRF8q+jLRl4u+QvS/RF8p+irRV4u+RvS1oq8Tfb3oG0TfKPom0TeLvkX0raJvE3276DtE/1v0naLvEn236HtE3yv6PtH3i35A9IOiHxL9sOhHRP9H9KOiHxP9uOgnRD8p+inRT4t+RvSzop8T/bzoF0S/KPol0S+LfkX0q6JfE/266DdEvyn6LdFvi35H9Lui3xP9vugPRH8o+iPRH4v+RPSnoj8T/bnoL0R/Kfor0V+L/kb0t6K/E/296B9E/yj6J9E/K/2/v/npoocQPVj0kKKHEj206GFEDyt6ONHDix5B9IiiRxI9suhRRI8qejTRo4v+jegxRI8peizRY4seR/S4oscTPb7oCURPKHoi0ROLnkT0pKInEz256ClETyl6KtFTi/6t6GlE/070tKJ/L3o60dOL/oPoGUTPKHom0TOLnkX0rKJnEz276DlEzyl6LtFzi55H9Lyi5xM9v+gFRP9R9IKiFxK9sOhFRC8qejHRi4teQvSSopcSvbToZUQvK3o50cuLXkH0iqL/JPrPolcS/RfRK4v+q+hVRP9N9KqiVxO9uug1RK8pei3Ra4teR/S6otcTvb7oDUT/XfSGojcSvbHoTURvKnoz0ZuL3kL0lqK3Er216G1Ebyt6O9Hbi95B9I6idxK9s+hdRO8qejfRu4veQ/SeovcSvbfofUTvK3o/0fuLPkD0gaIPEn2w6ENEHyr6MNGHiz5C9JGijxJ9tOhjRB8r+jjRx4s+QfSJok8SfbLoU0SfKvo00aeLPkP0maLPEn226HNEnyv6PNHni75A9IWi/yH6n6IvEn2x6EtEXyr6MtGXi75C9L9EXyn6KtFXi75G9LWirxN9vegbRN8o+ibRN4u+RfStom8TfbvoO0T/W/Sdou8Sfbfoe0TfK/o+0feLfkD0g6IfEv2w6EdE/0f0o6IfE/246CdEPyn6KdFPi35G9LOinxP9vOgXRL8o+iXRL4t+RfSrol8T/broN0S/Kfot0W+Lfkf0u6LfE/2+6A9Efyj6I9Efi/5E9KeiPxP9uegvRH8p+ivRX4v+RvS3or8T/b3oH0T/KPon0T9rYND/AOaSEScAAHicY2BiAAKmPSy+QEqUgYFRUURcTFzMyNzM3MxEXU1dTYmdjZ2NccK/K5oaLm6L3Fw0NOEMZoVAFD6IAQD4PA9iAAAAeJxjYGRgYADilrme/fH8Nl8ZuNkvAEUYbnDPcEOmmfaw+AIpDgYmEA8AHMMJGAAAeJxjYGRgYL/AAATMCiCSaQ8DIwMqYAIAK/QBvQAAAAADIAAAAAAAAAAoAAB4nGNgZGBgYGIQA2IGMIuBgQsIGRj+g/kMAArUATEAAHicjY69TsMwFIWP+4doJYSKhMTmoUJIqOnPWIm1ZWDq0IEtTZw2VRpHjlu1D8A7MPMczAw8DM/AifFEl9qS9d1zzr3XAK7xBYHqCHTdW50aLlj9cZ1057lBfvTcRAdPnlvUnz23mXj13MEN3jhBNC6p9PDuuYYrfHquU//23CD/eG7iVnQ9t9ATD57bWIgXzx3ciw+rDrZfqmhnUnvsx2kZzdVql4Xm1DhVFsqUqc7lKBiemjOVKxNaFcvlUZb71djaRCZGb+VU51ZlmZaF0RsV2WBtbTEZDBKvB5HewkLhwLePkhRhB4OU9ZFKTCqpzems6GQI6Z7TcU5mQceQUmjkkBghwPCszhmd3HWHLh+ze8mEpLvnT8dULRLWCTMaW9LUbanSGa+mUjhv47ZY7l67rgITDHiTf/mAKU76BTuXfk8AAHicY2BigAARBuyAiZGJkZmBJSWzOJmBAQALQwHHAAAA) format("woff"),url(../fonts/text-security-disc.ttf) format("truetype")}@font-face{font-family:Misettings;src:url(../fonts/icons.woff2) format("woff2"),url(../fonts/icons.woff) format("woff"),url(../fonts/icons.ttf) format("truetype"),url(../fonts/icons.otf) format("opentype");font-weight:400;font-style:normal}[class*=monstericon-]:before,body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before,body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before,body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.monstericon-times-circle:before{content:"\f01b"}.monstericon-times:before{content:"\f021"}.monstericon-info-circle-regular:before{content:"\f01e"}.monstericon-arrow{-webkit-transition:-webkit-transform .5s ease;transition:-webkit-transform .5s ease;transition:transform .5s ease;transition:transform .5s ease,-webkit-transform .5s ease;-webkit-transform:rotate(-180deg);-ms-transform:rotate(-180deg);transform:rotate(-180deg);display:inline-block}.monstericon-arrow.monstericon-down{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0)}.monstericon-arrow:before{content:"\f01f"}.monstericon-check:before{content:"\f015"}.monstericon-warning-triangle:before{content:"\f020"}.monstericon-star:before{content:"\f025"}.monstericon-files:before{content:"\f028"}.monstericon-search:before{content:"\f029"}.monstericon-user:before{content:"\f02a"}.monstericon-eye:before{content:"\f02b"}.monstericon-cog:before{content:"\f02c"}.monstericon-expand:before{content:"\f02d"}.monstericon-compress:before{content:"\f02f"}.monstericon-life-ring:before{content:"\f030"}.monstericon-wpbeginner:before{content:"\f031"}.monstericon-lightbulb:before{content:"\f032"}.monstericon-shopping-cart:before{content:"\f033"}.monstericon-calendar-alt:before{content:"\f04e"}.monstericon-long-arrow-right-light:before{content:"\f06a"}.monstericon-download:before{content:"\0046"}@media (max-width:782px){.monsterinsights-notices-area{margin-right:10px;margin-left:10px}}.monsterinsights-notice{position:relative;color:#444}.monsterinsights-notice .monsterinsights-notice-inner{margin-top:25px;padding:20px;background:#fff;border-right:3px solid;line-height:1.5;font-size:14px}.monsterinsights-notice .monsterinsights-notice-inner .notice-title{color:#393f4c;font-weight:700;display:block;margin:0 0 6px;padding:0}@media (max-width:782px){.monsterinsights-notice .monsterinsights-notice-inner{padding:10px}}.monsterinsights-notice.monsterinsights-notice-error .monsterinsights-notice-inner{border-right-color:#ea4e64}.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-notice-inner{border-right-color:#f5c953}.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-notice-inner{border-right-color:#509fe2}.monsterinsights-notice.monsterinsights-notice-info-xl .monsterinsights-notice-inner{border:1px solid #509fe2;border-right-width:3px;color:#777}.monsterinsights-notice.monsterinsights-notice-info-xl .monsterinsights-notice-inner .monsterinsights-button{color:#fff;margin:15px 0 0}.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-notice-inner{border-right-color:#5cc0a5}.monsterinsights-notice .notice-content{margin-left:20px}.monsterinsights-notice .notice-content a{color:#444}.monsterinsights-notice .dismiss-notice{border:none;background:none;padding:0;margin:0;display:inline-block;cursor:pointer;color:#acbdc9;position:relative;float:left}.monsterinsights-notice .dismiss-notice:focus,.monsterinsights-notice .dismiss-notice:hover{color:#444}.monsterinsights-notice.monsterinsights-notice-info .notice-content,.monsterinsights-notice.monsterinsights-notice-success .notice-content,.monsterinsights-notice.monsterinsights-notice-warning .notice-content{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:425px){.monsterinsights-notice.monsterinsights-notice-info .notice-content,.monsterinsights-notice.monsterinsights-notice-success .notice-content,.monsterinsights-notice.monsterinsights-notice-warning .notice-content{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}}.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-notice-button{-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;margin-left:-20px;margin-right:auto}@media (max-width:782px){.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-notice-button{margin-right:0}}.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-button{margin-top:0;padding:10px 16px 8px;line-height:1;font-size:14px;font-weight:600}@media (max-width:782px){.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-button{margin-top:10px;margin-right:0}}.monsterinsights-notice.monsterinsights-notice-error .monsterinsights-button{margin-top:10px;margin-right:0;color:#fff}body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-end,body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-right{top:32px}@media screen and (max-width:767px){body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-end,body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-right{top:42px;left:auto;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast{border-radius:0;padding:9px;border-right:3px solid #fff}@media screen and (max-width:767px){body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast{width:80vw}}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast.mi-success{border-right-color:#5cc0a5}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast.mi-info{border-right-color:#509fe2}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast.mi-error{border-right-color:#ea4e64}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-title{color:#393f4c;font-size:13px;font-weight:400}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-close{font-size:15px;width:10px;height:10px;line-height:10px}@media screen and (max-width:767px){body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-close{padding:9px;line-height:0}}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon{width:14px;height:14px;min-width:14px;margin:0;border:0}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info{border:none;position:relative}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before{content:"\f01e";position:absolute;top:-1px;right:0;color:#509fe2;line-height:1}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info .swal2-icon-text{display:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error{border:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before{content:"\f023";position:absolute;top:-1px;right:0;color:#ea4e64;line-height:1}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error .swal2-x-mark *{display:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon [class^=-ring]{width:14px;height:14px;top:0;right:0}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:14px;height:14px;top:0;right:0;border:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring:before{content:"\f027";position:absolute;top:-1px;right:0;color:#5cc0a5;line-height:1}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success [class^=swal2-success-line]{display:none}@-webkit-keyframes swal2-show{0%{-webkit-transform:scale(.7);transform:scale(.7)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes swal2-show{0%{-webkit-transform:scale(.7);transform:scale(.7)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}to{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes swal2-hide{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}to{-webkit-transform:scale(.5);transform:scale(.5);opacity:0}}@keyframes swal2-hide{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}to{-webkit-transform:scale(.5);transform:scale(.5);opacity:0}}@-webkit-keyframes swal2-animate-success-line-tip{0%{top:1.1875em;right:.0625em;width:0}54%{top:1.0625em;right:.125em;width:0}70%{top:2.1875em;right:-.375em;width:3.125em}84%{top:3em;right:1.3125em;width:1.0625em}to{top:2.8125em;right:.875em;width:1.5625em}}@keyframes swal2-animate-success-line-tip{0%{top:1.1875em;right:.0625em;width:0}54%{top:1.0625em;right:.125em;width:0}70%{top:2.1875em;right:-.375em;width:3.125em}84%{top:3em;right:1.3125em;width:1.0625em}to{top:2.8125em;right:.875em;width:1.5625em}}@-webkit-keyframes swal2-animate-success-line-long{0%{top:3.375em;left:2.875em;width:0}65%{top:3.375em;left:2.875em;width:0}84%{top:2.1875em;left:0;width:3.4375em}to{top:2.375em;left:.5em;width:2.9375em}}@keyframes swal2-animate-success-line-long{0%{top:3.375em;left:2.875em;width:0}65%{top:3.375em;left:2.875em;width:0}84%{top:2.1875em;left:0;width:3.4375em}to{top:2.375em;left:.5em;width:2.9375em}}@-webkit-keyframes swal2-rotate-success-circular-line{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg)}5%{-webkit-transform:rotate(45deg);transform:rotate(45deg)}12%{-webkit-transform:rotate(405deg);transform:rotate(405deg)}to{-webkit-transform:rotate(405deg);transform:rotate(405deg)}}@keyframes swal2-rotate-success-circular-line{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg)}5%{-webkit-transform:rotate(45deg);transform:rotate(45deg)}12%{-webkit-transform:rotate(405deg);transform:rotate(405deg)}to{-webkit-transform:rotate(405deg);transform:rotate(405deg)}}@-webkit-keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}@-webkit-keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}}@keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}}.monsterinsights_page body.swal2-toast-shown .swal2-container,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-shown{background-color:rgba(0,0,0,0)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top{top:0;left:auto;bottom:auto;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-end,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-right{top:0;left:0;bottom:auto;right:auto}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-left,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-start{top:0;left:auto;bottom:auto;right:0}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center-left,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center-start{top:50%;left:auto;bottom:auto;right:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center{top:50%;left:auto;bottom:auto;right:50%;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center-end,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center-right{top:50%;left:0;bottom:auto;right:auto;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-left,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-start{top:auto;left:auto;bottom:0;right:0}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom{top:auto;left:auto;bottom:0;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-end,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-right{top:auto;left:0;bottom:0;right:auto}.monsterinsights_page body.swal2-toast-column .swal2-toast{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-actions{-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-item-align:stretch;align-self:stretch;height:2.2em;margin-top:.3125em}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-loading{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-input{height:2em;margin:.3125em auto;font-size:1em}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-validation-message{font-size:1em}.monsterinsights_page .swal2-popup.swal2-toast{-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:auto;padding:.625em;-webkit-box-shadow:0 0 .625em #d9d9d9;box-shadow:0 0 .625em #d9d9d9;overflow-y:hidden}.monsterinsights_page .swal2-popup.swal2-toast,.monsterinsights_page .swal2-popup.swal2-toast .swal2-header{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.monsterinsights_page .swal2-popup.swal2-toast .swal2-title{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;margin:0 .6em;font-size:1em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-footer{margin:.5em 0 0;padding:.5em 0 0;font-size:.8em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-close{position:static;width:.8em;height:.8em;line-height:.8}.monsterinsights_page .swal2-popup.swal2-toast .swal2-content{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;font-size:1em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon{width:2em;min-width:2em;height:2em;margin:0}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon-text{font-size:2em;font-weight:700;line-height:1em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:2em;height:2em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line]{top:.875em;width:1.375em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{right:.3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{left:.3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-actions{height:auto;margin:0 .3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-styled{margin:0 .3125em;padding:.3125em .625em;font-size:1em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-styled:focus{-webkit-box-shadow:0 0 0 .0625em #fff,0 0 0 .125em rgba(50,100,150,.4);box-shadow:0 0 0 .0625em #fff,0 0 0 .125em rgba(50,100,150,.4)}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success{border-color:#a5dc86}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line]{position:absolute;width:2em;height:2.8125em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);border-radius:50%}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.25em;right:-.9375em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transform-origin:2em 2em;-ms-transform-origin:2em 2em;transform-origin:2em 2em;border-radius:0 4em 4em 0}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.25em;right:.9375em;-webkit-transform-origin:100% 2em;-ms-transform-origin:100% 2em;transform-origin:100% 2em;border-radius:4em 0 0 4em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success .swal2-success-ring{width:2em;height:2em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success .swal2-success-fix{top:0;right:.4375em;width:.4375em;height:2.6875em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line]{height:.3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip]{top:1.125em;right:.1875em;width:.75em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long]{top:.9375em;left:.1875em;width:1.375em}.monsterinsights_page .swal2-popup.swal2-toast.swal2-show{-webkit-animation:showSweetToast .5s;animation:showSweetToast .5s}.monsterinsights_page .swal2-popup.swal2-toast.swal2-hide{-webkit-animation:hideSweetToast .2s forwards;animation:hideSweetToast .2s forwards}.monsterinsights_page .swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:animate-toast-success-tip .75s;animation:animate-toast-success-tip .75s}.monsterinsights_page .swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:animate-toast-success-long .75s;animation:animate-toast-success-long .75s}@-webkit-keyframes showSweetToast{0%{-webkit-transform:translateY(-.625em) rotate(-2deg);transform:translateY(-.625em) rotate(-2deg);opacity:0}33%{-webkit-transform:translateY(0) rotate(2deg);transform:translateY(0) rotate(2deg);opacity:.5}66%{-webkit-transform:translateY(.3125em) rotate(-2deg);transform:translateY(.3125em) rotate(-2deg);opacity:.7}to{-webkit-transform:translateY(0) rotate(0);transform:translateY(0) rotate(0);opacity:1}}@keyframes showSweetToast{0%{-webkit-transform:translateY(-.625em) rotate(-2deg);transform:translateY(-.625em) rotate(-2deg);opacity:0}33%{-webkit-transform:translateY(0) rotate(2deg);transform:translateY(0) rotate(2deg);opacity:.5}66%{-webkit-transform:translateY(.3125em) rotate(-2deg);transform:translateY(.3125em) rotate(-2deg);opacity:.7}to{-webkit-transform:translateY(0) rotate(0);transform:translateY(0) rotate(0);opacity:1}}@-webkit-keyframes hideSweetToast{0%{opacity:1}33%{opacity:.5}to{-webkit-transform:rotate(-1deg);transform:rotate(-1deg);opacity:0}}@keyframes hideSweetToast{0%{opacity:1}33%{opacity:.5}to{-webkit-transform:rotate(-1deg);transform:rotate(-1deg);opacity:0}}@-webkit-keyframes animate-toast-success-tip{0%{top:.5625em;right:.0625em;width:0}54%{top:.125em;right:.125em;width:0}70%{top:.625em;right:-.25em;width:1.625em}84%{top:1.0625em;right:.75em;width:.5em}to{top:1.125em;right:.1875em;width:.75em}}@keyframes animate-toast-success-tip{0%{top:.5625em;right:.0625em;width:0}54%{top:.125em;right:.125em;width:0}70%{top:.625em;right:-.25em;width:1.625em}84%{top:1.0625em;right:.75em;width:.5em}to{top:1.125em;right:.1875em;width:.75em}}@-webkit-keyframes animate-toast-success-long{0%{top:1.625em;left:1.375em;width:0}65%{top:1.25em;left:.9375em;width:0}84%{top:.9375em;left:0;width:1.125em}to{top:.9375em;left:.1875em;width:1.375em}}@keyframes animate-toast-success-long{0%{top:1.625em;left:1.375em;width:0}65%{top:1.25em;left:.9375em;width:0}84%{top:.9375em;left:0;width:1.125em}to{top:.9375em;left:.1875em;width:1.375em}}.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow:hidden}.monsterinsights_page body.swal2-height-auto{height:auto!important}.monsterinsights_page body.swal2-no-backdrop .swal2-shown{top:auto;left:auto;bottom:auto;right:auto;background-color:rgba(0,0,0,0)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown>.swal2-modal{-webkit-box-shadow:0 0 10px rgba(0,0,0,.4);box-shadow:0 0 10px rgba(0,0,0,.4)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top{top:0;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-left,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-start{top:0;right:0}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-end,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-right{top:0;left:0}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center{top:50%;right:50%;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center-left,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center-start{top:50%;right:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center-end,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center-right{top:50%;left:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom{bottom:0;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-left,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-start{bottom:0;right:0}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-end,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-right{left:0;bottom:0}.monsterinsights_page .swal2-container{display:-webkit-box;display:-ms-flexbox;display:flex;position:fixed;top:0;left:0;bottom:0;right:0;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:10px;background-color:rgba(0,0,0,0);z-index:1060;overflow-x:hidden;-webkit-overflow-scrolling:touch}.monsterinsights_page .swal2-container.swal2-top{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.monsterinsights_page .swal2-container.swal2-top-left,.monsterinsights_page .swal2-container.swal2-top-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.monsterinsights_page .swal2-container.swal2-top-end,.monsterinsights_page .swal2-container.swal2-top-right{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.monsterinsights_page .swal2-container.swal2-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights_page .swal2-container.swal2-center-left,.monsterinsights_page .swal2-container.swal2-center-start{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.monsterinsights_page .swal2-container.swal2-center-end,.monsterinsights_page .swal2-container.swal2-center-right{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.monsterinsights_page .swal2-container.swal2-bottom{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.monsterinsights_page .swal2-container.swal2-bottom-left,.monsterinsights_page .swal2-container.swal2-bottom-start{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.monsterinsights_page .swal2-container.swal2-bottom-end,.monsterinsights_page .swal2-container.swal2-bottom-right{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.monsterinsights_page .swal2-container.swal2-grow-fullscreen>.swal2-modal{-ms-flex:1;flex:1;-ms-flex-item-align:stretch;align-self:stretch;-ms-flex-pack:center}.monsterinsights_page .swal2-container.swal2-grow-fullscreen>.swal2-modal,.monsterinsights_page .swal2-container.swal2-grow-row>.swal2-modal{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-flex:1;-webkit-box-pack:center;justify-content:center}.monsterinsights_page .swal2-container.swal2-grow-row>.swal2-modal{-ms-flex:1;flex:1;-ms-flex-line-pack:center;align-content:center;-ms-flex-pack:center}.monsterinsights_page .swal2-container.swal2-grow-column{-webkit-box-flex:1;-ms-flex:1;flex:1;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-left,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-start,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-left,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-start,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-left,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-end,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-right,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-end,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-right,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-end,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-right{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.monsterinsights_page .swal2-container.swal2-grow-column>.swal2-modal{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-line-pack:center;align-content:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights_page .swal2-container:not(.swal2-top):not(.swal2-top-start):not(.swal2-top-end):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-start):not(.swal2-center-end):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-start):not(.swal2-bottom-end):not(.swal2-bottom-left):not(.swal2-bottom-right):not(.swal2-grow-fullscreen)>.swal2-modal{margin:auto}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.monsterinsights_page .swal2-container .swal2-modal{margin:0!important}}.monsterinsights_page .swal2-container.swal2-fade{-webkit-transition:background-color .1s;transition:background-color .1s}.monsterinsights_page .swal2-container.swal2-shown{background-color:rgba(0,0,0,.4)}.monsterinsights_page .swal2-popup{display:none;position:relative;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:32em;max-width:100%;padding:1.25em;border-radius:.3125em;background:#fff;font-family:inherit;font-size:1rem;-webkit-box-sizing:border-box;box-sizing:border-box;right:0;top:0}.monsterinsights_page .swal2-popup:focus{outline:0}.monsterinsights_page .swal2-popup.swal2-loading{overflow-y:hidden}.monsterinsights_page .swal2-popup .swal2-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights_page .swal2-popup .swal2-title{display:block;position:relative;max-width:100%;margin:0 0 .4em;padding:0;color:#595959;font-size:1.875em;font-weight:600;text-align:center;text-transform:none;word-wrap:break-word}.monsterinsights_page .swal2-popup .swal2-actions{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:1.25em auto 0;z-index:1}.monsterinsights_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled[disabled]{opacity:.4}.monsterinsights_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:hover{background-image:-webkit-gradient(linear,right top,right bottom,from(rgba(0,0,0,.1)),to(rgba(0,0,0,.1)));background-image:linear-gradient(rgba(0,0,0,.1),rgba(0,0,0,.1))}.monsterinsights_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:active{background-image:-webkit-gradient(linear,right top,right bottom,from(rgba(0,0,0,.2)),to(rgba(0,0,0,.2)));background-image:linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.2))}.monsterinsights_page .swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-confirm{width:2.5em;height:2.5em;margin:.46875em;padding:0;border-radius:100%;border:.25em solid rgba(0,0,0,0);background-color:rgba(0,0,0,0)!important;color:rgba(0,0,0,0);cursor:default;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.monsterinsights_page .swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-cancel{margin-left:30px;margin-right:30px}.monsterinsights_page .swal2-popup .swal2-actions.swal2-loading :not(.swal2-styled).swal2-confirm:after{display:inline-block;width:15px;height:15px;margin-right:5px;border-radius:50%;border:3px solid #999;border-left-color:rgba(0,0,0,0);-webkit-box-shadow:-1px 1px 1px #fff;box-shadow:-1px 1px 1px #fff;content:"";-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal}.monsterinsights_page .swal2-popup .swal2-styled{margin:.3125em;padding:.625em 2em;font-weight:500;-webkit-box-shadow:none;box-shadow:none}.monsterinsights_page .swal2-popup .swal2-styled:not([disabled]){cursor:pointer}.monsterinsights_page .swal2-popup .swal2-styled.swal2-confirm{border:0;border-radius:.25em;background:initial;background-color:#3085d6;color:#fff;font-size:1.0625em}.monsterinsights_page .swal2-popup .swal2-styled.swal2-cancel{border:0;border-radius:.25em;background:initial;background-color:#aaa;color:#fff;font-size:1.0625em}.monsterinsights_page .swal2-popup .swal2-styled:focus{outline:0;-webkit-box-shadow:0 0 0 2px #fff,0 0 0 4px rgba(50,100,150,.4);box-shadow:0 0 0 2px #fff,0 0 0 4px rgba(50,100,150,.4)}.monsterinsights_page .swal2-popup .swal2-styled::-moz-focus-inner{border:0}.monsterinsights_page .swal2-popup .swal2-footer{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:1.25em 0 0;padding:1em 0 0;border-top:1px solid #eee;color:#545454;font-size:1em}.monsterinsights_page .swal2-popup .swal2-image{max-width:100%;margin:1.25em auto}.monsterinsights_page .swal2-popup .swal2-close{position:absolute;top:0;left:0;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:1.2em;height:1.2em;padding:0;-webkit-transition:color .1s ease-out;transition:color .1s ease-out;border:none;border-radius:0;outline:initial;background:100% 0;color:#ccc;font-family:serif;font-size:2.5em;line-height:1.2;cursor:pointer;overflow:hidden}.monsterinsights_page .swal2-popup .swal2-close:hover{-webkit-transform:none;-ms-transform:none;transform:none;color:#f27474}.monsterinsights_page .swal2-popup>.swal2-checkbox,.monsterinsights_page .swal2-popup>.swal2-file,.monsterinsights_page .swal2-popup>.swal2-input,.monsterinsights_page .swal2-popup>.swal2-radio,.monsterinsights_page .swal2-popup>.swal2-select,.monsterinsights_page .swal2-popup>.swal2-textarea{display:none}.monsterinsights_page .swal2-popup .swal2-content{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:0;padding:0;color:#545454;font-size:1.125em;font-weight:300;line-height:normal;z-index:1;word-wrap:break-word}.monsterinsights_page .swal2-popup #swal2-content{text-align:center}.monsterinsights_page .swal2-popup .swal2-checkbox,.monsterinsights_page .swal2-popup .swal2-file,.monsterinsights_page .swal2-popup .swal2-input,.monsterinsights_page .swal2-popup .swal2-radio,.monsterinsights_page .swal2-popup .swal2-select,.monsterinsights_page .swal2-popup .swal2-textarea{margin:1em auto}.monsterinsights_page .swal2-popup .swal2-file,.monsterinsights_page .swal2-popup .swal2-input,.monsterinsights_page .swal2-popup .swal2-textarea{width:100%;-webkit-transition:border-color .3s,-webkit-box-shadow .3s;transition:border-color .3s,-webkit-box-shadow .3s;transition:border-color .3s,box-shadow .3s;transition:border-color .3s,box-shadow .3s,-webkit-box-shadow .3s;border:1px solid #d9d9d9;border-radius:.1875em;font-size:1.125em;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.06);box-shadow:inset 0 1px 1px rgba(0,0,0,.06);-webkit-box-sizing:border-box;box-sizing:border-box}.monsterinsights_page .swal2-popup .swal2-file.swal2-inputerror,.monsterinsights_page .swal2-popup .swal2-input.swal2-inputerror,.monsterinsights_page .swal2-popup .swal2-textarea.swal2-inputerror{border-color:#f27474!important;-webkit-box-shadow:0 0 2px #f27474!important;box-shadow:0 0 2px #f27474!important}.monsterinsights_page .swal2-popup .swal2-file:focus,.monsterinsights_page .swal2-popup .swal2-input:focus,.monsterinsights_page .swal2-popup .swal2-textarea:focus{border:1px solid #b4dbed;outline:0;-webkit-box-shadow:0 0 3px #c4e6f5;box-shadow:0 0 3px #c4e6f5}.monsterinsights_page .swal2-popup .swal2-file::-webkit-input-placeholder,.monsterinsights_page .swal2-popup .swal2-input::-webkit-input-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::-webkit-input-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file::-moz-placeholder,.monsterinsights_page .swal2-popup .swal2-input::-moz-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::-moz-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file:-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-input:-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea:-ms-input-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file::-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-input::-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::-ms-input-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file::placeholder,.monsterinsights_page .swal2-popup .swal2-input::placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-range input{width:80%}.monsterinsights_page .swal2-popup .swal2-range output{width:20%;font-weight:600;text-align:center}.monsterinsights_page .swal2-popup .swal2-range input,.monsterinsights_page .swal2-popup .swal2-range output{height:2.625em;margin:1em auto;padding:0;font-size:1.125em;line-height:2.625em}.monsterinsights_page .swal2-popup .swal2-input{height:2.625em;padding:0 .75em}.monsterinsights_page .swal2-popup .swal2-input[type=number]{max-width:10em}.monsterinsights_page .swal2-popup .swal2-file{font-size:1.125em}.monsterinsights_page .swal2-popup .swal2-textarea{height:6.75em;padding:.75em}.monsterinsights_page .swal2-popup .swal2-select{min-width:50%;max-width:100%;padding:.375em .625em;color:#545454;font-size:1.125em}.monsterinsights_page .swal2-popup .swal2-checkbox,.monsterinsights_page .swal2-popup .swal2-radio{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights_page .swal2-popup .swal2-checkbox label,.monsterinsights_page .swal2-popup .swal2-radio label{margin:0 .6em;font-size:1.125em}.monsterinsights_page .swal2-popup .swal2-checkbox input,.monsterinsights_page .swal2-popup .swal2-radio input{margin:0 .4em}.monsterinsights_page .swal2-popup .swal2-validation-message{display:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:.625em;background:#f0f0f0;color:#666;font-size:1em;font-weight:300;overflow:hidden}.monsterinsights_page .swal2-popup .swal2-validation-message:before{display:inline-block;width:1.5em;min-width:1.5em;height:1.5em;margin:0 .625em;border-radius:50%;background-color:#f27474;color:#fff;font-weight:600;line-height:1.5em;text-align:center;content:"!";zoom:normal}@supports (-ms-accelerator:true){.monsterinsights_page .swal2-range input{width:100%!important}.monsterinsights_page .swal2-range output{display:none}}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.monsterinsights_page .swal2-range input{width:100%!important}.monsterinsights_page .swal2-range output{display:none}}@-moz-document url-prefix(){.monsterinsights_page .swal2-close:focus{outline:2px solid rgba(50,100,150,.4)}}.monsterinsights_page .swal2-icon{position:relative;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:5em;height:5em;margin:1.25em auto 1.875em;border:.25em solid rgba(0,0,0,0);border-radius:50%;line-height:5em;cursor:default;-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;zoom:normal}.monsterinsights_page .swal2-icon-text{font-size:3.75em}.monsterinsights_page .swal2-icon.swal2-error{border-color:#f27474}.monsterinsights_page .swal2-icon.swal2-error .swal2-x-mark{position:relative;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.monsterinsights_page .swal2-icon.swal2-error [class^=swal2-x-mark-line]{display:block;position:absolute;top:2.3125em;width:2.9375em;height:.3125em;border-radius:.125em;background-color:#f27474}.monsterinsights_page .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{right:1.0625em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.monsterinsights_page .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{left:1em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.monsterinsights_page .swal2-icon.swal2-warning{border-color:#facea8;color:#f8bb86}.monsterinsights_page .swal2-icon.swal2-info{border-color:#9de0f6;color:#3fc3ee;font-size:1rem}.monsterinsights_page .swal2-icon.swal2-question{border-color:#c9dae1;color:#87adbd}.monsterinsights_page .swal2-icon.swal2-success{border-color:#a5dc86}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-circular-line]{position:absolute;width:3.75em;height:7.5em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);border-radius:50%}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.4375em;right:-2.0635em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transform-origin:3.75em 3.75em;-ms-transform-origin:3.75em 3.75em;transform-origin:3.75em 3.75em;border-radius:0 7.5em 7.5em 0}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.6875em;right:1.875em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transform-origin:100% 3.75em;-ms-transform-origin:100% 3.75em;transform-origin:100% 3.75em;border-radius:7.5em 0 0 7.5em}.monsterinsights_page .swal2-icon.swal2-success .swal2-success-ring{position:absolute;top:-.25em;right:-.25em;width:100%;height:100%;border:.25em solid rgba(165,220,134,.3);border-radius:50%;z-index:2;-webkit-box-sizing:content-box;box-sizing:content-box}.monsterinsights_page .swal2-icon.swal2-success .swal2-success-fix{position:absolute;top:.5em;right:1.625em;width:.4375em;height:5.625em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);z-index:1}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-line]{display:block;position:absolute;height:.3125em;border-radius:.125em;background-color:#a5dc86;z-index:2}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-line][class$=tip]{top:2.875em;right:.875em;width:1.5625em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-line][class$=long]{top:2.375em;left:.5em;width:2.9375em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.monsterinsights_page .swal2-progresssteps{-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:0 0 1.25em;padding:0;font-weight:600}.monsterinsights_page .swal2-progresssteps li{display:inline-block;position:relative}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle{width:2em;height:2em;border-radius:2em;background:#3085d6;color:#fff;line-height:2em;text-align:center;z-index:20}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle:first-child{margin-right:0}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle:last-child{margin-left:0}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep{background:#3085d6}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progresscircle,.monsterinsights_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progressline{background:#add8e6}.monsterinsights_page .swal2-progresssteps .swal2-progressline{width:2.5em;height:.4em;margin:0 -1px;background:#3085d6;z-index:10}.monsterinsights_page [class^=swal2]{-webkit-tap-highlight-color:transparent}.monsterinsights_page .swal2-show{-webkit-animation:swal2-show .3s;animation:swal2-show .3s}.monsterinsights_page .swal2-show.swal2-noanimation{-webkit-animation:none;animation:none}.monsterinsights_page .swal2-hide{-webkit-animation:swal2-hide .15s forwards;animation:swal2-hide .15s forwards}.monsterinsights_page .swal2-hide.swal2-noanimation{-webkit-animation:none;animation:none}.monsterinsights_page .swal2-rtl .swal2-close{left:auto;right:0}.monsterinsights_page .swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:swal2-animate-success-line-tip .75s;animation:swal2-animate-success-line-tip .75s}.monsterinsights_page .swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:swal2-animate-success-line-long .75s;animation:swal2-animate-success-line-long .75s}.monsterinsights_page .swal2-animate-success-icon .swal2-success-circular-line-right{-webkit-animation:swal2-rotate-success-circular-line 4.25s ease-in;animation:swal2-rotate-success-circular-line 4.25s ease-in}.monsterinsights_page .swal2-animate-error-icon{-webkit-animation:swal2-animate-error-icon .5s;animation:swal2-animate-error-icon .5s}.monsterinsights_page .swal2-animate-error-icon .swal2-x-mark{-webkit-animation:swal2-animate-error-x-mark .5s;animation:swal2-animate-error-x-mark .5s}@-webkit-keyframes swal2-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}@keyframes swal2-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}@media print{.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow-y:scroll!important}.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown)>[aria-hidden=true]{display:none}.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container{position:static!important}}.monsterinsights-notifications-display{background:#fff;border-right:3px solid #509fe2;padding:20px;border-radius:0 3px 3px 0;margin-bottom:50px;position:relative}.monsterinsights-settings-content .monsterinsights-notifications-display{margin-top:20px;margin-bottom:20px}.monsterinsights-notifications-display h3{margin:0 0 4px;font-size:16px;line-height:20px}.monsterinsights-notifications-display p{margin-top:4px;margin-bottom:12px;font-size:14px;line-height:18px}.monsterinsights-notifications-display .monsterinsights-notification{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-notifications-display .monsterinsights-notification .monsterinsights-notifications-indicator{padding-top:10px}.monsterinsights-notifications-display .monsterinsights-notification .monsterinsights-notifications-indicator a{position:relative}.monsterinsights-notifications-display .monsterinsights-notification-inner{margin-right:25px}.monsterinsights-notifications-display .monsterinsights-button{margin-left:15px}.monsterinsights-notifications-display .monsterinsights-notification-navigation{position:absolute;left:0;top:100%}.monsterinsights-notifications-display .monsterinsights-notification-navigation button{background:#fff;border:none;border-radius:0 0 3px 3px;margin:0;padding:5px 8px 7px;color:#a8aebd;cursor:pointer}.monsterinsights-notifications-display .monsterinsights-notification-navigation button:focus,.monsterinsights-notifications-display .monsterinsights-notification-navigation button:hover{color:#509fe2}.monsterinsights-notifications-display .monsterinsights-notification-navigation button .monstericon-arrow{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);font-size:10px}.monsterinsights-notifications-display .monsterinsights-notification-navigation button.monsterinsights-notification-previous{margin-left:2px}.monsterinsights-notifications-display .monsterinsights-notification-navigation button.monsterinsights-notification-previous .monstericon-arrow{-webkit-transform:rotate(-270deg);-ms-transform:rotate(-270deg);transform:rotate(-270deg)}.monsterinsights-notifications-display .monsterinsights-notification-dismiss{border:none;background:none;color:#a8aebd;position:absolute;left:12px;top:9px;padding:0;margin:0;font-size:16px;cursor:pointer}.monsterinsights-notifications-display .monsterinsights-notifications-unread{min-width:10px;height:16px;background:#c84b29;border:1.72823px solid #f9fbff;position:absolute;bottom:12px;right:18px;border-radius:20px;line-height:16px;color:#fff;font-weight:700;text-align:center;display:inline-block;padding:0 3px}.monsterinsights-report .monsterinsights-notifications-display .monsterinsights-notifications-unread{min-width:16px;height:16px;background:#c84b29;border:1.72823px solid #f9fbff;position:absolute;bottom:4px;border-radius:20px;line-height:1;color:#fff;font-weight:700;text-align:center;padding:0 2px;right:20px}.monsterinsights-admin-page.monsterinsights-path-about-us .monsterinsights-notificationsv3-container,.monsterinsights-admin-page.monsterinsights-path-addons .monsterinsights-notificationsv3-container,.monsterinsights-admin-page.monsterinsights-path-tools-import-export .monsterinsights-notificationsv3-container,.monsterinsights-admin-page.monsterinsights-path-tools-url-builder .monsterinsights-notificationsv3-container,.monsterinsights-admin-page.monsterinsights-reports-page .monsterinsights-notificationsv3-container{margin-left:0}.monsterinsights-admin-page .monsterinsights-notificationsv3-container{display:inline-block;margin-left:20px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-number{position:absolute;top:-11px;min-width:20px;height:20px;line-height:20px;display:block;background:#eb5757;border-radius:20px;font-size:12px;color:#fff;font-weight:700;text-align:center;padding:0 6px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-number.number-greater-than-10{left:-13px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-number.number-less-than-10{left:-10px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-dismissed-number{min-width:24px;height:24px;background:#7c869d;border-radius:20px;display:inline-block;text-align:center;vertical-align:middle;line-height:24px;color:#fff;font-size:14px;font-weight:700;padding:0 8px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-no-notifications{text-align:center;position:absolute;top:50%;margin-top:-69px;width:100%}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-no-notifications h4{font-size:16px;color:#7c869d}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button{position:relative}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button{position:absolute;top:21px;left:15px}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button{background:#f0f2f4;border-radius:3px;padding:11px 7px;line-height:0;vertical-align:middle;margin-top:-2px;border:solid #d3d7de;border-width:1px 1px 2px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button{display:inline-block}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button:hover{background:#e7eaec;border-color:#d3d7de;outline:none}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-notificationsv3-inbox-number{cursor:pointer}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar{width:440px;position:fixed;top:32px;left:0;background:#fff;z-index:1001;overflow:scroll;height:100%;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-fill-mode:both;animation-fill-mode:both}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar{top:46px;width:300px}}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(-50px)}to{opacity:1;-webkit-transform:translateX(0)}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(-50px);transform:translateX(-50px)}to{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar.monsterinsights-notificationsv3-sidebar-in{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-single-notification{padding:0 16px;overflow:hidden}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top{background:#2679c1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:50px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-title{width:50%}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-title svg{margin-left:10px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-title h3{display:inline-block;color:#fff;font-size:18px;font-weight:700}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions{width:50%;text-align:left}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button{color:#fff;text-decoration:underline;border:0;padding:0;background:rgba(0,0,0,0);border-radius:0}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button{display:inline-block}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button:hover{color:#efe5e5}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button:focus{outline:none}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-notificationsv3-sidebar-close{margin-right:12px;vertical-align:bottom}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-notificationsv3-sidebar-close:active svg path,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-notificationsv3-sidebar-close:focus svg path,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-notificationsv3-sidebar-close:hover svg path{fill:#efe5e5}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:60px;border-bottom:1px solid #e2e4e9;margin:0 16px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-notifications-count{width:50%}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-notifications-count .monsterinsights-notificationsv3-inbox-number{position:relative;display:inline-block;top:inherit;left:inherit;min-width:24px;height:24px;line-height:24px;margin-left:8px;padding:0 8px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-notifications-count .monsterinsights-notificationsv3-dismissed-number{margin-left:8px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-notifications-count h4{display:inline-block}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions{width:50%;text-align:left}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions span{text-decoration:underline;color:#99a1b3;cursor:pointer}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions span:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions span:focus,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions span:hover{color:#a9b1c3}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications{display:block;margin-bottom:32px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications{margin-bottom:46px}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification{border-bottom:1px solid #e2e4e9;padding-bottom:24px;display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-icon{width:54px;float:right;text-align:center;padding-top:24px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-icon{float:none;margin:0 auto}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details{float:right;width:354px;padding-top:20px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details{width:260px}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-title h5{margin-top:0;margin-bottom:0;color:#393f4c;font-size:13px;font-weight:700;width:70%;display:inline-block}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-title h5{width:65%}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-title span{color:#7f899f;font-size:13px;float:left}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-content p{color:#393f4c;font-size:13px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-top:2px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions .monsterinsights-button{display:block;background:#f0f2f4;border:1px solid #d3d7de;border-radius:3px;font-weight:500;font-size:13px;color:#393f4c;letter-spacing:.02em;padding:6px 11px;margin-left:10px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions .monsterinsights-button:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions .monsterinsights-button:hover{background:#d3d7de}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions span{font-size:13px;color:#7f899f;cursor:pointer}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions span:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions span:focus,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions span:hover{color:#a9b1c3}.monsterinsights-tooltip{display:block!important;z-index:10000;max-width:350px}.monsterinsights-tooltip .monsterinsights-tooltip-inner{background:#5f6197;color:#fff;border-radius:5px;padding:16px 20px;font-size:14px;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}.monsterinsights-tooltip .monsterinsights-tooltip-inner a{color:#fff;font-weight:700}.monsterinsights-tooltip .monsterinsights-tooltip-arrow{width:0;height:0;border-style:solid;position:absolute;margin:5px;border-color:#5f6197;z-index:1}.monsterinsights-tooltip[x-placement^=top]{padding-bottom:5px}.monsterinsights-tooltip[x-placement^=top] .monsterinsights-tooltip-arrow{border-width:5px 5px 0;border-right-color:rgba(0,0,0,0)!important;border-left-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;bottom:0;right:calc(50% - 5px);margin-top:0;margin-bottom:0}.monsterinsights-tooltip[x-placement^=bottom]{padding-top:5px}.monsterinsights-tooltip[x-placement^=bottom] .monsterinsights-tooltip-arrow{border-width:0 5px 5px;border-right-color:rgba(0,0,0,0)!important;border-left-color:rgba(0,0,0,0)!important;border-top-color:rgba(0,0,0,0)!important;top:0;right:calc(50% - 5px);margin-top:0;margin-bottom:0}.monsterinsights-tooltip[x-placement^=right]{padding-right:5px}.monsterinsights-tooltip[x-placement^=right] .monsterinsights-tooltip-arrow{border-width:5px 0 5px 5px;border-right-color:rgba(0,0,0,0)!important;border-top-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;right:0;top:calc(50% - 5px);margin-right:0;margin-left:0}.monsterinsights-tooltip[x-placement^=left]{padding-left:5px}.monsterinsights-tooltip[x-placement^=left] .monsterinsights-tooltip-arrow{border-width:5px 5px 5px 0;border-top-color:rgba(0,0,0,0)!important;border-left-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;left:0;top:calc(50% - 5px);margin-right:0;margin-left:0}.monsterinsights-tooltip.popover .popover-inner{background:#fff;color:#5f6197;padding:24px;border-radius:5px;-webkit-box-shadow:0 5px 30px rgba(0,0,0,.1);box-shadow:0 5px 30px rgba(0,0,0,.1)}.monsterinsights-tooltip.popover .popover-arrow{border-color:#fff}.monsterinsights-tooltip[aria-hidden=true]{visibility:hidden;opacity:0;-webkit-transition:opacity .15s,visibility .15s;transition:opacity .15s,visibility .15s}.monsterinsights-tooltip[aria-hidden=false]{visibility:visible;opacity:1;-webkit-transition:opacity .15s;transition:opacity .15s}.monsterinsights-conditional-logic-container button:focus{outline:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-header{margin-bottom:30px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-header .monsterinsights-conditional-rule-sets-number{float:left}.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator{text-align:center;font-weight:700;display:block;margin:0 auto 20px;position:relative}.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator:after,.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator:before{content:"";position:absolute;top:45%;width:45%;height:2px;background:#d6e2ed;margin-top:-1px}.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator:before{right:0}.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator:after{left:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:24px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column{width:100%;margin-left:18px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field{text-transform:capitalize;width:100%;height:38px;min-height:38px;line-height:38px;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field.text-input{padding:0 8px;border-color:#ddd;text-transform:none;border-radius:5px;-webkit-box-sizing:border-box;box-sizing:border-box;height:38px;margin-top:0;line-height:38px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field input[type=text]{padding-top:5px;padding-bottom:5px;height:inherit}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field.multiselect--active .multiselect__tags .multiselect__spinner{z-index:1}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags{padding:0;height:38px;min-height:38px;border-color:#ddd;margin-top:0;-webkit-box-sizing:border-box;box-sizing:border-box}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags input[type=text]{border:0;height:36px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags .multiselect__single{margin-bottom:0;padding:0 8px;line-height:36px;font-size:14px;white-space:pre}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags .multiselect__placeholder{display:block;margin-bottom:0;line-height:36px;padding:0 8px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags .multiselect__spinner{width:35px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .add-new-condition{padding:6px 12px;margin:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .add-new-condition:focus{outline:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .remove-condition{border:0;padding:0;margin:0;background:rgba(0,0,0,0)}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .remove-condition:focus{outline:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .remove-condition .monstericon-times-circle{color:#dc3232;cursor:pointer;padding:0;margin:0 15px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .remove-condition .monstericon-times-circle:focus{outline:0}.monsterinsights-upload-media-wrapper .monsterinsights-dark{display:block}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media-label{margin-bottom:0}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media{display:block;width:100%;margin-top:20px;position:relative;max-width:300px}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media .monsterinsights-uploaded-media-overlay{display:none;background:rgba(0,0,0,.7);width:100%;position:absolute;top:0;right:0;height:100%;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media .monsterinsights-uploaded-media-overlay .monsterinsights-remove-uploaded-media{color:#fff;text-decoration:underline;margin-right:auto;cursor:pointer;padding:0 0 10px 10px}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media .monsterinsights-uploaded-media-overlay .monsterinsights-remove-uploaded-media:hover{text-decoration:none}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media:hover .monsterinsights-uploaded-media-overlay{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media img{max-width:100%;display:inline-block}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media{overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;margin-top:20px}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-input{width:73%;margin-left:2%;float:right;position:relative}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-button{width:25%;float:right;font-size:15px}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-button:active,.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-button:focus,.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-button:hover{outline:none}.monsterinsights-email-summaries-settings a{color:#509fe2!important}.monsterinsights-email-summaries-settings a:focus,.monsterinsights-email-summaries-settings a:hover{color:#393f4c!important}.monsterinsights-email-summaries-settings .monsterinsights-dark{display:block}.monsterinsights-email-summaries-settings .inline-field .monsterinsights-button:first-child{margin-right:0}.monsterinsights-email-summaries-settings .monsterinsights-settings-input-repeater{margin-bottom:18px}.monsterinsights-email-summaries-settings .monsterinsights-button.monsterinsights-button-disabled{cursor:not-allowed;background:#39967e!important;border-color:#4ab99b!important}.monsterinsights-accordion .monsterinsights-accordion{padding:0;border:1px solid #e0e0e0}.monsterinsights-accordion .monsterinsights-accordion div:not(:last-child){border-bottom:1px solid rgba(10,10,10,.1)}.monsterinsights-accordion .monsterinsights-accordion div:last-child .monsterinsights-accordion-item-details{border-radius:5px}.monsterinsights-accordion .monsterinsights-accordion dd{margin-right:0;margin-bottom:0}.monsterinsights-accordion .monsterinsights-accordion-item-trigger{cursor:pointer;outline:none}.monsterinsights-accordion .monsterinsights-accordion-item-details-inner,.monsterinsights-accordion .monsterinsights-accordion-item-trigger{padding:0 20px 30px}.monsterinsights-accordion .monsterinsights-accordion-item.is-active .monsterinsights-accordion-item-title{border-bottom:1px solid #e0e0e0}.monsterinsights-accordion .monsterinsights-accordion-item-title{position:relative;background-color:#fff;cursor:pointer}.monsterinsights-accordion .monsterinsights-accordion-item-title h4.monsterinsights-accordion-item-title-text{font-size:20px;margin-bottom:0;padding-left:1.25rem}.monsterinsights-accordion .monsterinsights-accordion-item-title h4.monsterinsights-accordion-item-title-text .title{padding-right:15px}.monsterinsights-accordion .monsterinsights-accordion-item-trigger{width:100%;text-align:right;background-color:rgba(0,0,0,0);border:none}.monsterinsights-accordion .monsterinsights-accordion-item-trigger-icon{display:block;position:absolute;top:0;left:1.5rem;bottom:0;margin:auto;width:8px;height:8px;border-left:2px solid #363636;border-bottom:2px solid #363636;-webkit-transform:translateY(-2px) rotate(-45deg);-ms-transform:translateY(-2px) rotate(-45deg);transform:translateY(-2px) rotate(-45deg);-webkit-transition:-webkit-transform .2s ease;transition:-webkit-transform .2s ease;transition:transform .2s ease;transition:transform .2s ease,-webkit-transform .2s ease}.monsterinsights-accordion .monsterinsights-accordion-item-trigger-icon.is-active{-webkit-transform:translateY(2px) rotate(-225deg);-ms-transform:translateY(2px) rotate(-225deg);transform:translateY(2px) rotate(-225deg)}.monsterinsights-accordion .monsterinsights-accordion-item-details{overflow:hidden;background-color:#fff;padding-top:15px}.monsterinsights-accordion .monsterinsights-accordion-item-details p,.monsterinsights-accordion .monsterinsights-accordion-item-details ul{font-size:1.2em;line-height:1.8}.monsterinsights-accordion .monsterinsights-accordion-item-enter-active,.monsterinsights-accordion .monsterinsights-accordion-item-leave-active{will-change:height;-webkit-transition:height .2s ease;transition:height .2s ease}.monsterinsights-accordion .monsterinsights-accordion-item-enter,.monsterinsights-accordion .monsterinsights-accordion-item-leave-to{height:0!important}body{background:#f3f6ff;margin:0}.monsterinsights-admin-page,.monsterinsights-admin-page *{-webkit-box-sizing:border-box;box-sizing:border-box;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}#wpcontent,.auto-fold #wpcontent{padding-right:0}.monsterinsights-highlighted-text{color:#64bfa5;font-weight:700}.monsterinsights-bold{font-weight:700}.monsterinsights-bg-img{width:100%;padding-top:66%;position:relative}.monsterinsights-bg-img:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;background-repeat:no-repeat;background-size:contain}.monsterinsights-header{padding:20px 10px;background-color:#f9fbff;min-height:85px}.monsterinsights-settings-panel-network>.monsterinsights-header{background-color:rgba(0,0,0,0)}.monsterinsights-logo-area{float:right;max-width:calc(100vw - 170px)}.monsterinsights-logo-area img{display:block;max-width:100%}@media (max-width:782px){.monsterinsights-logo-area{text-align:center;margin:0 auto;float:none}.monsterinsights-logo-area img{display:inline-block;max-height:35px}}@media (max-width:782px){.monsterinsights-header .monsterinsights-container,.monsterinsights-navigation-bar .monsterinsights-container{padding:0;width:100%}}.monsterinsights-navigation-bar{width:100%;background:#fff;border-top:1px solid #d5e2ed;border-bottom:1px solid #d5e2ed;padding:0 10px}@media (max-width:782px){.monsterinsights-navigation-bar{padding:0;border:0}}@media (max-width:750px){.monsterinsights-navigation-bar{background:none}}.monsterinsights-admin-page{position:relative}.monsterinsights-admin-page .monsterinsights-blocked{position:absolute;top:0;bottom:0;left:0;right:0;background:hsla(0,0%,100%,.5);z-index:999}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-header{padding-bottom:5px}.monsterinsights-admin-page .monsterinsights-header .monsterinsights-button{display:none}}.swal2-popup .swal2-title{line-height:1.2}#footer-left{color:#393f4c}#footer-left .monsterinsights-no-text-decoration{text-decoration:none;color:#fdb72c;font-size:14px}#footer-left a{color:#509fe1}#wpfooter{position:relative}#wpfooter:before{right:20px;left:20px;height:1px;background:#d6e2ed;content:"";position:absolute;top:-12px}.monsterinsights-container{margin:0 auto;max-width:100%;width:750px}.monsterinsights-admin-page .monsterinsights-navigation-tab-link{text-decoration:none;padding:17px 0 15px;border-bottom:2px solid #fff;font-size:14px;color:#393f4c;display:inline-block;margin-left:25px;line-height:1;outline:none;font-family:Lato,sans-serif}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.router-link-exact-active,.monsterinsights-admin-page .monsterinsights-navigation-tab-link:focus,.monsterinsights-admin-page .monsterinsights-navigation-tab-link:hover{color:#509fe2;border-bottom-color:#509fe2;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.router-link-exact-active{font-weight:700}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.monsterinsights-navigation-tab-disabled:focus,.monsterinsights-admin-page .monsterinsights-navigation-tab-link.monsterinsights-navigation-tab-disabled:hover{border-bottom-color:rgba(0,0,0,0);color:#393f4c;cursor:default}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.year-in-review{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAANCAYAAACdKY9CAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAJKSURBVHgBjdJbSFMBHMfx/7lMT7qdk5s7IsvWdIqZ6UFNJC+Yl4EGQUkYItHN8NZl7KESohUUVKCst8QoYkTFlLzlhWHZispSK7NWyjbdZmPJ5tbuLk9ZBD0U+H35v3xe/vADAEDgr15nZ3PgPymLi3E0o9F4XJim5P7GtfEpvIJHNYrJE6UXDXF/4MdKec3qrU2pakNS6+YuhULhQL98z3tvR26C58OKgY7aVJjWd/bUT8OuwtGsvSXJuICKQPEyLJZpTvjutI4UURqgiNm7NqE+I1EvXNDu60rShr2mM5K8etOK22H2OrCsCXUbGnD0PgD8a2B0uvKKTySBzVJqC8IsHR3cVhHNCgia3F2N0wKxnuUR4wiCsL8eLj8wxuyM0Q3l5nTTfDwIQhcNVL4HXK6Aqq9Dfu/2xpJoHhmViaEIiTyT1dMzQl0yKjqoI9e5kbStQ0ByMfBhcaCeqQO3n5i1hxgVB/NP8jiRDtzjXIoUb6fPR0h6EONwA9gIHsQXDQNfhMMR8j5Q9nHpp88uN8rEmJjSt1bMshDrSywoa0mNnxKI06fAZZEBTuwCPrMIaMQiPNEavvnZ5fl0WaqnKUnEYK3XhIVBc4GCR6yHDdIvkFw+BwSXghc3xOGBnonOEVdmg+Ly41uNEg7fGeKb8ahIulqSpwH7Ozl4pTtg2aOBN7rWO2NW69UuatrC4qFsJbSjKE5wM5sGX0H7oZu2+f7DbNBSFXqqOj3QnK7M+dcsjOc6Tz6sOEbCy+v7W56runvVF8rzYQ39AJVT15Tcu/1IAAAAAElFTkSuQmCC);background-repeat:no-repeat;background-position:100% 50%;padding-right:18px;font-weight:700}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-navigation-tab-link{width:100%;text-align:center;padding:10px;color:#509fe2;font-size:16px;background:#fff;border:none}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.router-link-exact-active{display:none}.monsterinsights-admin-page .monsterinsights-navigation-tab-link:focus{color:#393f4c;text-decoration:underline}}.monsterinsights-admin-page .monsterinsights-button{background:#509fe2;border:solid #2e7fbe;border-width:1px 1px 2px;border-radius:3px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:10px 20px;text-decoration:none}.monsterinsights-admin-page .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-button:hover{background-color:#3a93dd;border-color:#2971a9;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-disabled{background:#f3f6ff;border-color:#d6e2eb;color:#8ba4b7}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary{background:#8da4b5;border-color:#6f8ca0;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary:hover{background-color:#7e98ab;border-color:#627f94;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green{background:#5cc0a5;border-color:#40a88d;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green:hover{background-color:#4ab99b;border-color:#39967e;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-gray{background:#8ea4b4;border-color:#738ea1;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-gray:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-gray:hover{background-color:#596771;border-color:#738ea1}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-gray.monsterinsights-button-disabled{pointer-events:none}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-text{background:rgba(0,0,0,0);border:none;color:#509fe2;padding:0;border-radius:0;text-decoration:underline}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-text:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-text:hover{background:rgba(0,0,0,0);color:#393f4c}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-red{background:#ea4e64;border-color:#d21933;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-large{font-size:16px;padding:14px 27px}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-small{font-size:13px;line-height:20px;padding:5px 10px}.monsterinsights-green-text{color:#5cc0a5;font-weight:700}@media (max-width:782px){.wp-responsive-open #wpbody{margin-right:-18px}}.monsterinsights-mobile-nav-trigger{color:#393f4c;font-size:16px;font-weight:500;width:100%;display:block;border-color:#d6e2ed;border-style:solid;border-width:1px 0;background:#fff;padding:15px 10px;line-height:1;margin:0}@media (min-width:783px){.monsterinsights-mobile-nav-trigger{display:none}}.monsterinsights-mobile-nav-trigger i{color:#acbdc9;margin-right:10px;vertical-align:middle}@media (max-width:782px){.monsterinsights-main-navigation{ba